summaryrefslogtreecommitdiff
path: root/libavformat/mpegts.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/mpegts.c
parent84a72b167526dd645ff68046ae3233b108cb8679 (diff)
loosen dependencies over allformats.h
Originally committed as revision 10513 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mpegts.c')
-rw-r--r--libavformat/mpegts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index de38221b9c..d4e40b2adc 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -21,7 +21,6 @@
#include "avformat.h"
#include "crc.h"
#include "mpegts.h"
-#include "allformats.h"
//#define DEBUG_SI
//#define DEBUG_SEEK
@@ -145,6 +144,8 @@ struct PESContext {
uint8_t header[MAX_PES_HEADER_SIZE];
};
+extern AVInputFormat mpegts_demuxer;
+
/**
* Assembles PES packets out of TS packets, and then calls the "section_cb"
* function when they are complete.