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 323AE49164 for ; Sun, 4 Feb 2024 15:21:11 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id B497768D124; Sun, 4 Feb 2024 17:21:09 +0200 (EET) Received: from iq.passwd.hu (iq.passwd.hu [217.27.212.140]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 15D9C68CF80 for ; Sun, 4 Feb 2024 17:21:04 +0200 (EET) Received: from localhost (localhost [127.0.0.1]) by iq.passwd.hu (Postfix) with ESMTP id CEA71E9E8C for ; Sun, 4 Feb 2024 16:21:03 +0100 (CET) X-Virus-Scanned: amavisd-new at passwd.hu Received: from iq.passwd.hu ([127.0.0.1]) by localhost (iq.passwd.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id P7LEL5gdomPa for ; Sun, 4 Feb 2024 16:21:02 +0100 (CET) Received: from iq (iq [217.27.212.140]) by iq.passwd.hu (Postfix) with ESMTPS id 0C91CE9E1A for ; Sun, 4 Feb 2024 16:21:02 +0100 (CET) Date: Sun, 4 Feb 2024 16:21:01 +0100 (CET) From: Marton Balint To: Cosmin Stejerean via ffmpeg-devel In-Reply-To: <0101018d74af1fbe-f83033cd-38a7-448a-ab20-a948c3c63553-000000@us-west-2.amazonses.com> Message-ID: References: <20240204151404.28289-1-cosmin@cosmin.at> <20240204151404.28289-2-cosmin@cosmin.at> <0101018d74af1fbe-f83033cd-38a7-448a-ab20-a948c3c63553-000000@us-west-2.amazonses.com> MIME-Version: 1.0 Subject: Re: [FFmpeg-devel] [PATCH v4 1/3] avcodec: add ambient viewing environment packet side data. 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 Sun, 4 Feb 2024, Cosmin Stejerean via ffmpeg-devel wrote: > From: Damiano Galassi > > --- > doc/APIchanges | 3 +++ > fftools/ffprobe.c | 3 +++ > libavcodec/avpacket.c | 1 + > libavcodec/decode.c | 1 + > libavcodec/packet.h | 9 ++++++++- > libavcodec/version.h | 2 +- > 6 files changed, 17 insertions(+), 2 deletions(-) > > int ff_decode_frame_props_from_pkt(const AVCodecContext *avctx, > diff --git a/libavcodec/packet.h b/libavcodec/packet.h > index 2c57d262c6..bb28e7d62a 100644 > --- a/libavcodec/packet.h > +++ b/libavcodec/packet.h > @@ -331,7 +331,14 @@ enum AVPacketSideDataType { > * If its value becomes huge, some code using it > * needs to be updated as it assumes it to be smaller than other limits. > */ > - AV_PKT_DATA_NB > + AV_PKT_DATA_NB, > + > + /** > + * Ambient viewing environment metadata, as defined by H.274.. This metadata > + * should be associated with a video stream and contains data in the form > + * of the AVAmbientViewingEnvironment struct. > + */ > + AV_PKT_DATA_AMBIENT_VIEWING_ENVIRONMENT > }; AV_PKT_DATA_NB has to be kept the last. Regards, Marton _______________________________________________ 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".