diff mpegenc.c @ 2555:c226029c8df4 libavformat

loosen dependencies over allformats.h
author aurel
date Sun, 16 Sep 2007 23:00:44 +0000
parents eb2ffde46a50
children d52c718e83f9
line wrap: on
line diff
--- a/mpegenc.c	Sun Sep 16 19:51:10 2007 +0000
+++ b/mpegenc.c	Sun Sep 16 23:00:44 2007 +0000
@@ -20,7 +20,6 @@
  */
 
 #include "avformat.h"
-#include "allformats.h"
 #include "bitstream.h"
 #include "fifo.h"
 #include "mpeg.h"
@@ -77,6 +76,11 @@
 
 } 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)
 {