ffmpeg | branch: master | Limin Wang <lance.lmw...@gmail.com> | Tue Aug 24 18:10:19 2021 +0800| [38052757f52c9a5590472ed1fa1e53ae76c356fc] | committer: Limin Wang
avformat: add raw avs3 muxer Signed-off-by: Limin Wang <lance.lmw...@gmail.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=38052757f52c9a5590472ed1fa1e53ae76c356fc --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/rawenc.c | 14 ++++++++++++++ 3 files changed, 16 insertions(+) diff --git a/libavformat/Makefile b/libavformat/Makefile index 8a1b40aafe..3d6c8ef8f5 100644 --- a/libavformat/Makefile +++ b/libavformat/Makefile @@ -130,6 +130,7 @@ OBJS-$(CONFIG_AVS_DEMUXER) += avs.o voc_packet.o voc.o OBJS-$(CONFIG_AVS2_DEMUXER) += avs2dec.o rawdec.o OBJS-$(CONFIG_AVS2_MUXER) += rawenc.o OBJS-$(CONFIG_AVS3_DEMUXER) += avs3dec.o rawdec.o +OBJS-$(CONFIG_AVS3_MUXER) += rawenc.o OBJS-$(CONFIG_BETHSOFTVID_DEMUXER) += bethsoftvid.o OBJS-$(CONFIG_BFI_DEMUXER) += bfi.o OBJS-$(CONFIG_BINK_DEMUXER) += bink.o diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 889cfcc2c9..cbfadcb639 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -88,6 +88,7 @@ extern const AVInputFormat ff_avs_demuxer; extern const AVInputFormat ff_avs2_demuxer; extern const AVOutputFormat ff_avs2_muxer; extern const AVInputFormat ff_avs3_demuxer; +extern const AVOutputFormat ff_avs3_muxer; extern const AVInputFormat ff_bethsoftvid_demuxer; extern const AVInputFormat ff_bfi_demuxer; extern const AVInputFormat ff_bintext_demuxer; diff --git a/libavformat/rawenc.c b/libavformat/rawenc.c index ad29e71099..15e7051873 100644 --- a/libavformat/rawenc.c +++ b/libavformat/rawenc.c @@ -142,6 +142,20 @@ const AVOutputFormat ff_avs2_muxer = { }; #endif +#if CONFIG_AVS3_MUXER +const AVOutputFormat ff_avs3_muxer = { + .name = "avs3", + .long_name = NULL_IF_CONFIG_SMALL("AVS3-P2/IEEE1857.10"), + .extensions = "avs3", + .audio_codec = AV_CODEC_ID_NONE, + .video_codec = AV_CODEC_ID_AVS3, + .init = force_one_stream, + .write_packet = ff_raw_write_packet, + .flags = AVFMT_NOTIMESTAMPS, +}; +#endif + + #if CONFIG_CAVSVIDEO_MUXER const AVOutputFormat ff_cavsvideo_muxer = { .name = "cavsvideo", _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".