From: Niklas Haas <ffmpeg@haasn.xyz> To: ffmpeg-devel@ffmpeg.org Cc: Niklas Haas <git@haasn.dev> Subject: [FFmpeg-devel] [PATCH 1/5] avutil/dovi_meta: add dv_md_compression to cfg record Date: Tue, 16 Jul 2024 13:23:13 +0200 Message-ID: <20240716112317.35745-1-ffmpeg@haasn.xyz> (raw) From: Niklas Haas <git@haasn.dev> This field is used to signal the compression method in use. --- doc/APIchanges | 3 +++ libavutil/dovi_meta.h | 9 +++++++++ libavutil/version.h | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index 5751216b24..80ab3012c3 100644 --- a/doc/APIchanges +++ b/doc/APIchanges @@ -2,6 +2,9 @@ The last version increases of all libraries were on 2024-03-07 API changes, most recent first: +2024-07-16 - xxxxxxxxxx - lavu 59.29.100 - dovi_meta.h + Add AVDOVIDecoderConfigurationRecord.dv_md_compression. + 2024-07-xx - xxxxxxxxxx - lavf 61 - avformat.h Deprecate avformat_transfer_internal_stream_timing_info() and av_stream_get_codec_timebase() without replacement. diff --git a/libavutil/dovi_meta.h b/libavutil/dovi_meta.h index e168075a24..c942d0e133 100644 --- a/libavutil/dovi_meta.h +++ b/libavutil/dovi_meta.h @@ -46,6 +46,7 @@ * uint8_t el_present_flag * uint8_t bl_present_flag * uint8_t dv_bl_signal_compatibility_id + * uint8_t dv_md_compression, the compression method in use * @endcode * * @note The struct must be allocated with av_dovi_alloc() and @@ -60,8 +61,16 @@ typedef struct AVDOVIDecoderConfigurationRecord { uint8_t el_present_flag; uint8_t bl_present_flag; uint8_t dv_bl_signal_compatibility_id; + uint8_t dv_md_compression; } AVDOVIDecoderConfigurationRecord; +enum AVDOVICompression { + AV_DOVI_COMPRESSION_NONE = 0, + AV_DOVI_COMPRESSION_LIMITED = 1, + AV_DOVI_COMPRESSION_RESERVED = 2, + AV_DOVI_COMPRESSION_EXTENDED = 3, +}; + /** * Allocate a AVDOVIDecoderConfigurationRecord structure and initialize its * fields to default values. diff --git a/libavutil/version.h b/libavutil/version.h index 814892a4d5..852eeef1d6 100644 --- a/libavutil/version.h +++ b/libavutil/version.h @@ -79,7 +79,7 @@ */ #define LIBAVUTIL_VERSION_MAJOR 59 -#define LIBAVUTIL_VERSION_MINOR 28 +#define LIBAVUTIL_VERSION_MINOR 29 #define LIBAVUTIL_VERSION_MICRO 100 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ -- 2.45.2 _______________________________________________ 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".
next reply other threads:[~2024-07-16 11:24 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-07-16 11:23 Niklas Haas [this message] 2024-07-16 11:23 ` [FFmpeg-devel] [PATCH 2/5] avformat/dovi_isom: implement dv_md_compression Niklas Haas [not found] ` <21B56119-B46F-409D-B398-746420438132@cosmin.at> 2024-07-16 11:40 ` Cosmin Stejerean via ffmpeg-devel 2024-07-16 11:23 ` [FFmpeg-devel] [PATCH 3/5] avformat/mpegts: " Niklas Haas [not found] ` <5F5C69A3-01BC-4F25-A69A-C397509AE652@cosmin.at> 2024-07-16 11:41 ` Cosmin Stejerean via ffmpeg-devel 2024-07-16 11:23 ` [FFmpeg-devel] [PATCH 4/5] avformat/dump: " Niklas Haas [not found] ` <FB82B6B8-716A-4F38-BD26-57AE355678D3@cosmin.at> 2024-07-16 11:41 ` Cosmin Stejerean via ffmpeg-devel 2024-07-16 11:23 ` [FFmpeg-devel] [PATCH 5/5] fftools/ffprobe: " Niklas Haas [not found] ` <157FF15A-BCC1-4BAC-9875-6E5CF4928FDC@cosmin.at> 2024-07-16 11:32 ` Cosmin Stejerean via ffmpeg-devel 2024-07-17 18:07 ` Michael Niedermayer 2024-07-18 10:52 ` Niklas Haas [not found] ` <71460422-4A3C-45F1-A588-3DCE4600AE51@cosmin.at> 2024-07-16 11:30 ` [FFmpeg-devel] [PATCH 1/5] avutil/dovi_meta: add dv_md_compression to cfg record Cosmin Stejerean via ffmpeg-devel
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20240716112317.35745-1-ffmpeg@haasn.xyz \ --to=ffmpeg@haasn.xyz \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=git@haasn.dev \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git