From: James Almer <jamrial@gmail.com> To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH v2 6/7] avformat/matroskaenc: support writing Dynamic HDR10+ packet side data Date: Fri, 24 Mar 2023 12:39:22 -0300 Message-ID: <7540009d-798e-9db4-841e-0e56491e202e@gmail.com> (raw) In-Reply-To: <816b6838-b1c3-9ecf-1c8a-2d5739ee681f@mediaarea.net> On 3/24/2023 12:11 PM, Jerome Martinez wrote: > On 24/03/2023 13:59, James Almer wrote: >> On 3/24/2023 8:58 AM, Anton Khirnov wrote: >>> Quoting James Almer (2023-03-24 12:50:40) >>>> On 3/24/2023 8:45 AM, Anton Khirnov wrote: >>>>> Quoting James Almer (2023-03-21 19:00:01) >>>>>> @@ -3095,6 +3153,12 @@ after_cues: >>>>>> avio_seek(mkv->track.bc, >>>>>> track->blockadditionmapping_offset, SEEK_SET); >>>>>> put_ebml_uint(mkv->track.bc, >>>>>> MATROSKA_ID_TRACKMAXBLKADDID, track->max_blockaddid); >>>>>> + if (track->max_blockaddid == 4) { // HDR10+ >>>>> >>>>> Maybe this magic 4 deserves a name too? >>>> >>>> Is has no name. See >>>> https://www.matroska.org/technical/codec_specs.html#itu-t35-metadata >>>> >>>> It only defines a name for the BlockAddIDType, which i used, and >>>> constricts the BlockAddIDValue to be used for it to 4. >>>> It's not necessarily HDR10+ (i can remove that comment if it makes it >>>> look like it should be named), it's potentially any ITU-T T35 >>>> payload of >>>> which we only care about HDR10+, so i can't name it that. It's >>>> simply 4. >>> >>> MATROSKA_BLOCKADDITIONAL_ITUT35_VAL then? >> >> 4 as BlockAddID is valid for any mapped BlockAddIDType value, not just >> MATROSKA_BLOCK_ADD_ID_TYPE_ITU_T_T35. >> But ok, i'll add a #define for it. If we ever start writing other >> types, like SMPTE ST 12-1 Timecode, we could just make sure to never >> use 4 for it. > > SMPTE ST 12-1 would have a BlockAddIDType of 121 [1] for differentiating > timecode streams from ITU T.35, true, but using 4 as BlockAddID for > something not ITU T.35 may create problems with some legacy decoders and > would not be recommended. > So IMO flagging 4 as MATROSKA_BLOCKADDITIONAL_ITUT35_VAL would make > sense there. > I suggested a patch to the Matroska spec for being explicit about this > value 4 in [2]. > > A small comment about "// HDR10+", as it is not only for HDR10+ (ITU > T.35 may contain lot of other things, depending on > itu_t_t35_terminal_provider_code etc), IMO it should be commented as "// > ITU T.35". > > By the way, it is great to see this patch, it is very useful and would > help in making a similar patch for SMPTE ST 12-1 timecode. > > [1] > https://github.com/ietf-wg-cellar/matroska-specification/blob/master/block_additional_mappings/smpte-st12-1-timecode.md Currently, the block_additional_mappings page only lists SMPTE ST 12-1 timecode. For the rest (ITU-T T.35, Dovi stuff, Opaque data, etc) you need to stumble upon them in https://www.matroska.org/technical/codec_specs.html#block-addition-mappings, which is confusing. Could these be added to the proper section too? > [2] https://github.com/ietf-wg-cellar/matroska-specification/pull/745 > _______________________________________________ > 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".
next prev parent reply other threads:[~2023-03-24 15:39 UTC|newest] Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-03-21 17:06 [FFmpeg-devel] [PATCH 1/7] avformat/matroskadec: support parsing more than one BlockMore element James Almer 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 2/7] avformat/matroskadec: set the default value for BlockAddIDType James Almer 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 3/7] avformat/matroskadec: export Dynamic HDR10+ packet side data James Almer 2023-03-24 11:18 ` Anton Khirnov 2023-03-24 11:28 ` James Almer 2023-03-24 11:40 ` Anton Khirnov 2023-03-24 12:34 ` James Almer 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 4/7] avformat/matroska: add a few more Block Addition ID Type enum values James Almer 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 5/7] avformat/matroskaenc: write a MaxBlockAdditionID element James Almer 2023-03-21 17:59 ` [FFmpeg-devel] [PATCH v2 " James Almer 2023-03-24 11:37 ` [FFmpeg-devel] [PATCH " Anton Khirnov 2023-03-24 11:41 ` James Almer 2023-03-24 11:43 ` Anton Khirnov 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 6/7] avformat/matroskaenc: support writing Dynamic HDR10+ packet side data James Almer 2023-03-21 18:00 ` [FFmpeg-devel] [PATCH v2 " James Almer 2023-03-24 11:45 ` Anton Khirnov 2023-03-24 11:50 ` James Almer 2023-03-24 11:58 ` Anton Khirnov 2023-03-24 12:59 ` James Almer 2023-03-24 15:11 ` Jerome Martinez 2023-03-24 15:39 ` James Almer [this message] 2023-03-21 17:06 ` [FFmpeg-devel] [PATCH 7/7] fate/matroska: add HDR10+ muxing tests James Almer 2023-03-21 18:00 ` [FFmpeg-devel] [PATCH v2 " James Almer
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=7540009d-798e-9db4-841e-0e56491e202e@gmail.com \ --to=jamrial@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ /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