Commit 6369638b authored by Aurelien Jacobs's avatar Aurelien Jacobs

loosen dependencies over allformats.h

Originally committed as revision 10513 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 84a72b16
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
*/ */
#include "avformat.h" #include "avformat.h"
#include "allformats.h"
#include "bitstream.h" #include "bitstream.h"
#include "fifo.h" #include "fifo.h"
#include "mpeg.h" #include "mpeg.h"
...@@ -77,6 +76,11 @@ typedef struct { ...@@ -77,6 +76,11 @@ typedef struct {
} MpegMuxContext; } MpegMuxContext;
extern AVOutputFormat mpeg1vcd_muxer;
extern AVOutputFormat mpeg2dvd_muxer;
extern AVOutputFormat mpeg2svcd_muxer;
extern AVOutputFormat mpeg2vob_muxer;
static int put_pack_header(AVFormatContext *ctx, static int put_pack_header(AVFormatContext *ctx,
uint8_t *buf, int64_t timestamp) uint8_t *buf, int64_t timestamp)
{ {
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "avformat.h" #include "avformat.h"
#include "crc.h" #include "crc.h"
#include "mpegts.h" #include "mpegts.h"
#include "allformats.h"
//#define DEBUG_SI //#define DEBUG_SI
//#define DEBUG_SEEK //#define DEBUG_SEEK
...@@ -145,6 +144,8 @@ struct PESContext { ...@@ -145,6 +144,8 @@ struct PESContext {
uint8_t header[MAX_PES_HEADER_SIZE]; uint8_t header[MAX_PES_HEADER_SIZE];
}; };
extern AVInputFormat mpegts_demuxer;
/** /**
* Assembles PES packets out of TS packets, and then calls the "section_cb" * Assembles PES packets out of TS packets, and then calls the "section_cb"
* function when they are complete. * function when they are complete.
......
...@@ -22,7 +22,6 @@ ...@@ -22,7 +22,6 @@
#include "avformat.h" #include "avformat.h"
#include "avcodec.h" #include "avcodec.h"
#include "riff.h" #include "riff.h"
#include "allformats.h" // for asf_muxer
/* Note: when encoding, the first matching tag is used, so order is /* Note: when encoding, the first matching tag is used, so order is
important if multiple tags possible for a given codec. */ important if multiple tags possible for a given codec. */
......
...@@ -21,7 +21,6 @@ ...@@ -21,7 +21,6 @@
#include "avformat.h" #include "avformat.h"
#include "allformats.h"
typedef struct ThpDemuxContext { typedef struct ThpDemuxContext {
int version; int version;
......
...@@ -19,7 +19,6 @@ ...@@ -19,7 +19,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "avformat.h" #include "avformat.h"
#include "allformats.h"
#include "opt.h" #include "opt.h"
#include "avstring.h" #include "avstring.h"
#include "riff.h" #include "riff.h"
...@@ -468,7 +467,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename, ...@@ -468,7 +467,7 @@ int av_open_input_file(AVFormatContext **ic_ptr, const char *filename,
/* XXX: suppress this hack for redirectors */ /* XXX: suppress this hack for redirectors */
#ifdef CONFIG_REDIR_DEMUXER #ifdef CONFIG_REDIR_DEMUXER
if (fmt == &redir_demuxer) { if (!strcmp(fmt->name, "redir")) {
int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f); int redir_open(AVFormatContext **ic_ptr, ByteIOContext *f);
err = redir_open(ic_ptr, pb); err = redir_open(ic_ptr, pb);
url_fclose(pb); url_fclose(pb);
......
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
*/ */
#include "avformat.h" #include "avformat.h"
#include "allformats.h"
#include "bswap.h" #include "bswap.h"
// specs say that maximum block size is 1Mb // specs say that maximum block size is 1Mb
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment