diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2012-09-17 16:16:16 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-10-23 11:17:03 +0300 |
commit | e01fba5562133ac56a4f44c6f214a80ee33cb388 (patch) | |
tree | fced967deec0ecfc967424c9a0110826118fd86a /libavformat/allformats.c | |
parent | b3be41ca82529d60f90107d4e0d5b59daab00920 (diff) | |
download | ffmpeg-e01fba5562133ac56a4f44c6f214a80ee33cb388.tar.gz |
movenc: Add an F4V muxer
F4V is Adobe's mp4/iso media variant, with the most significant
addition/change being supporting other flash codecs than just
aac/h264.
Signed-off-by: Martin Storsjö <martin@martin.st>
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 585cf43f5b..36a782be8e 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -100,6 +100,7 @@ void av_register_all(void) REGISTER_DEMUXER (EA, ea); REGISTER_DEMUXER (EA_CDATA, ea_cdata); REGISTER_MUXDEMUX(EAC3, eac3); + REGISTER_MUXER (F4V, f4v); REGISTER_MUXDEMUX(FFM, ffm); REGISTER_MUXDEMUX(FFMETADATA, ffmetadata); REGISTER_MUXDEMUX(FILMSTRIP, filmstrip); |