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 C945545818 for ; Wed, 22 Feb 2023 20:41:47 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 8653868C047; Wed, 22 Feb 2023 22:41:44 +0200 (EET) Received: from mail-yw1-f179.google.com (mail-yw1-f179.google.com [209.85.128.179]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 0486868BFC8 for ; Wed, 22 Feb 2023 22:41:37 +0200 (EET) Received: by mail-yw1-f179.google.com with SMTP id 00721157ae682-536bbef1c5eso140310447b3.9 for ; Wed, 22 Feb 2023 12:41:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=KLkfteXZnP2sJWc3O4Y1JYme9ZA1tyWMCOc8BgeEzDA=; b=PgM43E2LdKRc5wllS7sFMKqyfX2WevcxYzFC8ENQ9a+FfV+y/ZCf4LC1LapJUEmAok hVLFiEEu17EIpgJDljF65SmW/Xc0v+T6gODtViQcXbqeEY/7iyx58u8BwdYDGe/7AKeV hmmPZtfTTG79znmBwrhBmG1gY6gYma406vxFV6s88AyJr13TmMfRzuM4MUtkPSoA7jkW gaRTsf+S4jDJmd6D3ctdvAdMxCOu4cW4H85zMHYS/SoA+ozEBsLx3w3R14FUqDvVWQb2 TvPkM8CBx7gwa/NaHgrm+a7kZrvebM5iE9jCxVejwCAPPTQev6083gwblmWQ6hUNUnPs B9Iw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=KLkfteXZnP2sJWc3O4Y1JYme9ZA1tyWMCOc8BgeEzDA=; b=DM6NN7xL5f4wqBdyc3etPFswGVFENAbU3phDrsYcEkq1Z8idaEgWayy2FFf14+tgen z0jLBEiS3LWqwfTl92qbO3p3JaCsjlDro+vS+G6w+Lf2r+RulibyOWes8jEGmCOu8bZp EDfsmBySI6b5L1vYQ6XywCR+04a5nlD4swPcK+vY1z5lm4lYqO+0JHRnx92oZU8ZVVsy mfH9fiaHCmxv5fyzagtSMbBJe5HZ9At6m9YeLR70EUlFiopdnJr3/oGyq7FMFJd2kUr0 kY1G5Omz1MTUlSOy82lxyC65qwhbE75BUGu7s0jyCcR2tm9hycMaOPaZze2QkBu8COfw wXvA== X-Gm-Message-State: AO0yUKUyYbAc0lM7OyWIhkNRoxqRUihV7FnRSUKE66Y6LOJIVGOs1BNK vogxywfe5HiLiKQOtfKxhpSzUw+CthqAZruIevWX5dV47eguIA== X-Google-Smtp-Source: AK7set+q0epUJG3u2NMNiWApz56M7Xvk8Dssgeh02ugJpfu5n0CgdJuflyLDykHpkX5BiVIIT/+Z7NHvwH3qkXFwzHc= X-Received: by 2002:a25:8e0b:0:b0:86f:211e:5e74 with SMTP id p11-20020a258e0b000000b0086f211e5e74mr913112ybl.3.1677098495982; Wed, 22 Feb 2023 12:41:35 -0800 (PST) MIME-Version: 1.0 From: Drew Abbott Date: Wed, 22 Feb 2023 14:41:25 -0600 Message-ID: To: ffmpeg-devel@ffmpeg.org Subject: [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-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: 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? Thanks, Drew _______________________________________________ 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".