Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH v2] mpegtsenc: Add SYNC KLV metadata descriptors (MISB ST1402)
@ 2025-07-02 22:58 Caleb Sawyer
  0 siblings, 0 replies; only message in thread
From: Caleb Sawyer @ 2025-07-02 22:58 UTC (permalink / raw)
  To: ffmpeg-devel

Added metadata_descriptor and metadata_std_descriptor to the PMT for synchronous KLV streams. Asynchronous KLV streams remain as they were. The descriptors are required by MISB ST-1402.2 and are in accordance with ISO/IEC 13818-1.

Apologies for the previous version. The instructions at "https://ffmpeg.org/developer.html#toc-Submitting-patches-1" "Sending patches from email clients" no longer appears to work with outlook.

Signed-off-by: Caleb Sawyer
---
libavformat/mpegtsenc.c | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 6935b71cfe..e99e189299 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -814,7 +814,28 @@ static int mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
break;
case AVMEDIA_TYPE_DATA:
if (codec_id == AV_CODEC_ID_SMPTE_KLV) {
- put_registration_descriptor(&q, MKTAG('K', 'L', 'V', 'A'));
+ if (st->codecpar->profile == AV_PROFILE_KLVA_SYNC) {
+ const char *fmtIdent = "KLVA";
+ *q++ = METADATA_DESCRIPTOR;
+ *q++ = 9; /* descriptor length */
+ put16(&q, 0x0100); /* metadata_application_format */
+ *q++ = 0xff; /* metadata_format */
+ putbuf(&q, fmtIdent, 4); /* KLVA */
+ *q++ = 0x00; /* metadata_service_id */
+ *q++ = 0x0f; /* decoder_config_flags, DSM-CC_flat, reserved */
+ *q++ = METADATA_STD_DESCRIPTOR;
+ *q++ = 9; /* descriptor length */
+ *q++ = 0xc0;
+ put16(&q, 0x0000); /* reserved, metadata_input_leak_rate 0x01c4 */
+ *q++ = 0xc0;
+ put16(&q, 0x0000); /* reserved, metadata_buffer_size 0x0400 */
+ *q++ = 0xc0;
+ put16(&q, 0x0000); /* reserved, metadata_output_leak_rate */
+ } else {
+ put_registration_descriptor(&q, MKTAG('K', 'L', 'V', 'A'));
+ }
+ } else if (codec_id == AV_CODEC_ID_SMPTE_2038) {
+ put_registration_descriptor(&q, MKTAG('V', 'A', 'N', 'C'));
} else if (codec_id == AV_CODEC_ID_SMPTE_2038) {
put_registration_descriptor(&q, MKTAG('V', 'A', 'N', 'C'));
} else if (codec_id == AV_CODEC_ID_TIMED_ID3) {
--
2.47.1.windows.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".

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2025-07-02 22:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-07-02 22:58 [FFmpeg-devel] [PATCH v2] mpegtsenc: Add SYNC KLV metadata descriptors (MISB ST1402) Caleb Sawyer

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