* [FFmpeg-devel] [PATCH v2 1/3] avformat/movenc: Add AVS3 support
@ 2025-02-24 13:51 Zhao Zhili
2025-02-24 17:52 ` Michael Niedermayer
0 siblings, 1 reply; 2+ messages in thread
From: Zhao Zhili @ 2025-02-24 13:51 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Zhao Zhili
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 2412 bytes --]
From: Zhao Zhili <zhilizhao@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 | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 76dce9e6e5..a6fb48d4ad 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1540,6 +1540,37 @@ 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)
+{
+ if (len < 4)
+ return AVERROR_INVALIDDATA;
+
+ if (data[0] == 1) {
+ // In Avs3DecoderConfigurationRecord format
+ avio_write(pb, data, len);
+ return 0;
+ }
+
+ 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 +2769,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 +8679,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
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH v2 1/3] avformat/movenc: Add AVS3 support
2025-02-24 13:51 [FFmpeg-devel] [PATCH v2 1/3] avformat/movenc: Add AVS3 support Zhao Zhili
@ 2025-02-24 17:52 ` Michael Niedermayer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Niedermayer @ 2025-02-24 17:52 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 727 bytes --]
On Mon, Feb 24, 2025 at 09:51:32PM +0800, Zhao Zhili wrote:
> From: Zhao Zhili <zhilizhao@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 | 35 +++++++++++++++++++++++++++++++++++
> 1 file changed, 35 insertions(+)
theres something wierd with this mails character set, i cant apply this patch:
"error: cannot convert from y to UTF-8"
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
If a bugfix only changes things apparently unrelated to the bug with no
further explanation, that is a good sign that the bugfix is wrong.
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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] 2+ messages in thread
end of thread, other threads:[~2025-02-24 17:52 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-02-24 13:51 [FFmpeg-devel] [PATCH v2 1/3] avformat/movenc: Add AVS3 support Zhao Zhili
2025-02-24 17:52 ` Michael Niedermayer
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