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 4F90D48C8C for ; Thu, 23 May 2024 11:03:55 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 089F168D438; Thu, 23 May 2024 14:03:53 +0300 (EEST) Received: from haasn.dev (haasn.dev [78.46.187.166]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 0200268D2B3 for ; Thu, 23 May 2024 14:03:46 +0300 (EEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=haasn.xyz; s=mail; t=1716462226; bh=MWDQ05Lba5yiiW3W2NPIXjbjWYHK9yr0uTfb0Dod78I=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=S3h6tjreB8evnZEokTVTn/C2K52dXjT0pJ9UmwWa0idaLFP2ZXj+MigXpN1Lxmb5U /jjkmd8djxI3A/KX30E9u0z0mGBbcvx520EmoBB4YqkPLsJn9LS10OK1qGSwE8Oj3F cXNpFKkQctKe121Tj2d1Fi9LeGXfnw3+37gdyNBc= Received: from haasn.dev (unknown [10.30.0.2]) by haasn.dev (Postfix) with ESMTP id B7C6D417DE; Thu, 23 May 2024 13:03:46 +0200 (CEST) Date: Thu, 23 May 2024 13:03:46 +0200 Message-ID: <20240523130346.GD3903@haasn.xyz> From: Niklas Haas To: Cosmin Stejerean via ffmpeg-devel , "ffmpeg-devel@ffmpeg.org" In-Reply-To: <0101018fa0ff6506-a7840850-87e7-4b51-9ed3-a926167d34e0-000000@us-west-2.amazonses.com> References: <20240522155031.33491-1-cosmin@cosmin.at> <20240522155031.33491-2-cosmin@cosmin.at> <0101018fa0ff6506-a7840850-87e7-4b51-9ed3-a926167d34e0-000000@us-west-2.amazonses.com> MIME-Version: 1.0 Content-Disposition: inline Subject: Re: [FFmpeg-devel] [PATCH v3 1/2] lavu/dovi_meta - add fields for ext_mapping_idc 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 Cc: Cosmin Stejerean 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: On Wed, 22 May 2024 15:50:43 +0000 Cosmin Stejerean via ffmpeg-devel wrote: > From: Cosmin Stejerean > > --- > libavutil/dovi_meta.h | 2 ++ > libavutil/version.h | 2 +- > 2 files changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavutil/dovi_meta.h b/libavutil/dovi_meta.h > index e10332f8d7..e168075a24 100644 > --- a/libavutil/dovi_meta.h > +++ b/libavutil/dovi_meta.h > @@ -91,6 +91,8 @@ typedef struct AVDOVIRpuDataHeader { > uint8_t spatial_resampling_filter_flag; > uint8_t el_spatial_resampling_filter_flag; > uint8_t disable_residual_flag; > + uint8_t ext_mapping_idc_0_4; /* extended base layer inverse mapping indicator */ > + uint8_t ext_mapping_idc_5_7; /* reserved */ > } AVDOVIRpuDataHeader; What value ranges have you seen for this indicator? Is it possible that some values would extend the RPU in other ways, adding more bits that we need to parse? Maybe we should enforce this to be a well-known value just to be on the safe side, until we receive public documentation on its purpose. > > enum AVDOVIMappingMethod { > diff --git a/libavutil/version.h b/libavutil/version.h > index 3221c4c592..9c7146c228 100644 > --- a/libavutil/version.h > +++ b/libavutil/version.h > @@ -79,7 +79,7 @@ > */ > > #define LIBAVUTIL_VERSION_MAJOR 59 > -#define LIBAVUTIL_VERSION_MINOR 19 > +#define LIBAVUTIL_VERSION_MINOR 20 > #define LIBAVUTIL_VERSION_MICRO 100 > > #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ > -- > 2.42.1 > > > _______________________________________________ > 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". _______________________________________________ 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".