From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id C42054581B for ; Wed, 22 Feb 2023 22:38:44 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id A435768C078; Thu, 23 Feb 2023 00:38:40 +0200 (EET) Received: from btbn.de (btbn.de [136.243.74.85]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 50FF6680229 for ; Thu, 23 Feb 2023 00:38:34 +0200 (EET) Received: from [authenticated] by btbn.de (Postfix) with ESMTPSA id 06B071BC6D5 for ; Wed, 22 Feb 2023 23:38:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rothenpieler.org; s=mail; t=1677105513; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=LHJHGh3C+/uYJMBuV2+uorWq4xJ+/C0y8CKdCOHXaYc=; b=hJPZd7kZ9RgzQdFAKoI6nF7h6oeTfMBEHD+sknbT6gBVvro48ELWwUoSibGw8ACRRW55aQ ZqraDbvp3hn73oneQDpghEfbJ/MmhLCPU7pCAOw8lHBFOFJ5+jyCcZaCY7/8vDOmxuQn7A Iuc2YWW6w+AAHNMUqY7ba15QRm8AvrOT4qpPd6CWFtkNB/LnFLxJa/XnQo492HizQJph3f jkEB7b5kcU5NzSQY6yBZEJ6DSwafaALxWyjPneDrZbLXInpX1VPASVnWr079tRu0eiN9r1 gRO3OWboX/eJWhNTWHEfxtD6h+DsMag4aHQm2XuiK5wVWmBi49w/fDTwDzKimw== Message-ID: <055f5d97-e43e-de94-2e81-6952e1a7bca0@rothenpieler.org> Date: Wed, 22 Feb 2023 23:38:31 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Content-Language: en-US To: ffmpeg-devel@ffmpeg.org References: From: Timo Rothenpieler In-Reply-To: Subject: Re: [FFmpeg-devel] Chromium 110 and ffmpeg 5.1.2 X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: On 22.02.2023 21:41, Drew Abbott wrote: > Hello, > > I am trying to build Chromium 110 with ffmpeg version 5.1.2. One of > the errors I get while building has to do with the API for accessing > first_dts. It looks like previously it was just a member of AVStream, > but now it can only be accessed with av_stream_get_first_dts: > https://github.com/chromium/chromium/commit/b94755e4633045be96ab5e0bdde0db7e16a804bd > I can see now first_dts is a member of FFStream, but I don't know how > to go from an AVStream to an FFStream without using internals of > libavformat, if that is even possible. How was first_dts accessed in > 5.1.2 from an AVStream? first_dts is a purely internal field of libavformat, you can't access it from outside of it. av_stream_get_first_dts() is not a function I see anywhere in the ffmpeg codebase. _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".