summaryrefslogtreecommitdiff
path: root/libavformat/mpegenc.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-09-16 23:00:44 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-09-16 23:00:44 +0000
commit6369638bf0440b10cb9c545e6f7a8903b683c21f (patch)
tree44de3be302967fd52e79e1771b4b45d41dd2f81f /libavformat/mpegenc.c
parent84a72b167526dd645ff68046ae3233b108cb8679 (diff)
loosen dependencies over allformats.h
Originally committed as revision 10513 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegenc.c')
-rw-r--r--libavformat/mpegenc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libavformat/mpegenc.c b/libavformat/mpegenc.c
index 2c304da94a..36b4cf1676 100644
--- a/libavformat/mpegenc.c
+++ b/libavformat/mpegenc.c
@@ -20,7 +20,6 @@
*/
#include "avformat.h"
-#include "allformats.h"
#include "bitstream.h"
#include "fifo.h"
#include "mpeg.h"
@@ -77,6 +76,11 @@ typedef struct {
} MpegMuxContext;
+extern AVOutputFormat mpeg1vcd_muxer;
+extern AVOutputFormat mpeg2dvd_muxer;
+extern AVOutputFormat mpeg2svcd_muxer;
+extern AVOutputFormat mpeg2vob_muxer;
+
static int put_pack_header(AVFormatContext *ctx,
uint8_t *buf, int64_t timestamp)
{