diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-06-21 09:53:01 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2007-06-21 09:53:01 +0000 |
commit | 5d38574617cf53eb9f39e4c221921421325e153b (patch) | |
tree | 437957ceca0b1209f7ee385848f6f6aba68bcbd8 /libavformat/mpegenc.c | |
parent | c4f27438efb4cd6b52ddeb620ab0fe3c3fe0ef4b (diff) | |
download | ffmpeg-5d38574617cf53eb9f39e4c221921421325e153b.tar.gz |
use allformats.h
Originally committed as revision 9384 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegenc.c')
-rw-r--r-- | libavformat/mpegenc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c index c862074a51..377fc4240d 100644 --- a/libavformat/mpegenc.c +++ b/libavformat/mpegenc.c @@ -20,6 +20,7 @@ */ #include "avformat.h" +#include "allformats.h" #include "bitstream.h" #include "fifo.h" #include "mpeg.h" @@ -76,12 +77,6 @@ typedef struct { } MpegMuxContext; -AVOutputFormat mpeg1system_muxer; -AVOutputFormat mpeg1vcd_muxer; -AVOutputFormat mpeg2vob_muxer; -AVOutputFormat mpeg2svcd_muxer; -AVOutputFormat mpeg2dvd_muxer; - static int put_pack_header(AVFormatContext *ctx, uint8_t *buf, int64_t timestamp) { |