diff options
author | Zane van Iperen <zane@zanevaniperen.com> | 2020-11-02 15:47:32 +1000 |
---|---|---|
committer | Zane van Iperen <zane@zanevaniperen.com> | 2020-11-09 14:58:38 +1000 |
commit | a2fea0f4690e4f11ba093f14509643c44a485165 (patch) | |
tree | b67e49c86328905af491b4c0de83282049488b12 /libavformat/allformats.c | |
parent | 555f5c1fc5ae0c4e7b0431dc3166c3fcf3f4e979 (diff) | |
download | ffmpeg-a2fea0f4690e4f11ba093f14509643c44a485165.tar.gz |
avformat: add amv muxer
AMV is a hard-coded (and broken) subset of AVI. It's not worth sullying
the existing AVI muxer with its filth.
Fixes ticket #747.
Signed-off-by: Zane van Iperen <zane@zanevaniperen.com>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index 9b1b611a49..53e5374255 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -54,6 +54,7 @@ extern AVInputFormat ff_amr_demuxer; extern AVOutputFormat ff_amr_muxer; extern AVInputFormat ff_amrnb_demuxer; extern AVInputFormat ff_amrwb_demuxer; +extern AVOutputFormat ff_amv_muxer; extern AVInputFormat ff_anm_demuxer; extern AVInputFormat ff_apc_demuxer; extern AVInputFormat ff_ape_demuxer; |