[FFmpeg-devel] [PATCH 1/3] avformat/movenc: Add AVS3 support
Zhao Zhili
quinkblack at foxmail.com
Tue Feb 18 13:24:48 EET 2025
From: Zhao Zhili <zhilizhao at tencent.com>
'avs3' is registered at mp4ra.org. The Avs3ConfigurationBox 'av3c'
inside 'avs3' hasn't been registered yet, but is specified by the
AVS3 spec.
---
libavformat/movenc.c | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 76dce9e6e5..5df33c6f72 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1540,6 +1540,28 @@ static int mov_write_avcc_tag(AVIOContext *pb, MOVTrack *track)
return update_size(pb, pos);
}
+/* AVS3 Intelligent Media Coding
+ * Information Technology – Intelligent Media Coding – Part 6: Intelligent Media Format
+ */
+static int mov_write_av3c(AVIOContext *pb, const uint8_t *data, int len)
+{
+ avio_w8(pb, 1); // version
+ avio_wb16(pb, len); // sequence_header_length
+ avio_write(pb, data, len); // sequence_header
+ avio_w8(pb, 0xFC); // Only support library_dependency_idc = 0
+
+ return 0;
+}
+
+static int mov_write_av3c_tag(AVIOContext *pb, MOVTrack *track)
+{
+ int64_t pos = avio_tell(pb);
+ avio_wb32(pb, 0);
+ ffio_wfourcc(pb, "av3c");
+ mov_write_av3c(pb, track->vos_data, track->vos_len);
+ return update_size(pb, pos);
+}
+
static int mov_write_vpcc_tag(AVFormatContext *s, AVIOContext *pb, MOVTrack *track)
{
int64_t pos = avio_tell(pb);
@@ -2738,6 +2760,8 @@ static int mov_write_video_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContex
} else if (track->par->codec_id == AV_CODEC_ID_R10K) {
if (track->par->codec_tag == MKTAG('R','1','0','k'))
mov_write_dpxe_tag(pb, track);
+ } else if (track->par->codec_id == AV_CODEC_ID_AVS3) {
+ mov_write_av3c_tag(pb, track);
} else if (track->vos_len > 0)
mov_write_glbl_tag(pb, track);
@@ -8646,6 +8670,8 @@ static const AVCodecTag codec_mp4_tags[] = {
{ AV_CODEC_ID_PCM_F64BE, MOV_MP4_FPCM_TAG },
{ AV_CODEC_ID_PCM_F64LE, MOV_MP4_FPCM_TAG },
+ { AV_CODEC_ID_AVS3, MKTAG('a', 'v', 's', '3') },
+
{ AV_CODEC_ID_NONE, 0 },
};
#if CONFIG_MP4_MUXER || CONFIG_PSP_MUXER
--
2.46.0
More information about the ffmpeg-devel
mailing list