Commit 8212568a authored by Diego Biurrun's avatar Diego Biurrun

Replace generic CONFIG_MUXERS preprocessor conditionals by more specific

CONFIG_FOO_MUXER conditionals where appropriate.

Originally committed as revision 15158 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c1843188
...@@ -166,7 +166,7 @@ static unsigned int get_aiff_header(ByteIOContext *pb, AVCodecContext *codec, ...@@ -166,7 +166,7 @@ static unsigned int get_aiff_header(ByteIOContext *pb, AVCodecContext *codec,
return num_frames; return num_frames;
} }
#ifdef CONFIG_MUXERS #ifdef CONFIG_AIFF_MUXER
typedef struct { typedef struct {
offset_t form; offset_t form;
offset_t frames; offset_t frames;
...@@ -289,7 +289,7 @@ static int aiff_write_trailer(AVFormatContext *s) ...@@ -289,7 +289,7 @@ static int aiff_write_trailer(AVFormatContext *s)
return 0; return 0;
} }
#endif //CONFIG_MUXERS #endif /* CONFIG_AIFF_MUXER */
static int aiff_probe(AVProbeData *p) static int aiff_probe(AVProbeData *p)
{ {
......
...@@ -30,7 +30,7 @@ Only mono files are supported. ...@@ -30,7 +30,7 @@ Only mono files are supported.
static const char AMR_header [] = "#!AMR\n"; static const char AMR_header [] = "#!AMR\n";
static const char AMRWB_header [] = "#!AMR-WB\n"; static const char AMRWB_header [] = "#!AMR-WB\n";
#ifdef CONFIG_MUXERS #ifdef CONFIG_AMR_MUXER
static int amr_write_header(AVFormatContext *s) static int amr_write_header(AVFormatContext *s)
{ {
ByteIOContext *pb = s->pb; ByteIOContext *pb = s->pb;
...@@ -60,7 +60,7 @@ static int amr_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -60,7 +60,7 @@ static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
put_flush_packet(s->pb); put_flush_packet(s->pb);
return 0; return 0;
} }
#endif /* CONFIG_MUXERS */ #endif /* CONFIG_AMR_MUXER */
static int amr_probe(AVProbeData *p) static int amr_probe(AVProbeData *p)
{ {
......
...@@ -47,7 +47,7 @@ static const AVCodecTag codec_au_tags[] = { ...@@ -47,7 +47,7 @@ static const AVCodecTag codec_au_tags[] = {
{ 0, 0 }, { 0, 0 },
}; };
#ifdef CONFIG_MUXERS #ifdef CONFIG_AU_MUXER
/* AUDIO_FILE header */ /* AUDIO_FILE header */
static int put_au_header(ByteIOContext *pb, AVCodecContext *enc) static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
{ {
...@@ -103,7 +103,7 @@ static int au_write_trailer(AVFormatContext *s) ...@@ -103,7 +103,7 @@ static int au_write_trailer(AVFormatContext *s)
return 0; return 0;
} }
#endif //CONFIG_MUXERS #endif /* CONFIG_AU_MUXER */
static int au_probe(AVProbeData *p) static int au_probe(AVProbeData *p)
{ {
......
...@@ -359,7 +359,7 @@ void dv_delete_mux(DVMuxContext *c) ...@@ -359,7 +359,7 @@ void dv_delete_mux(DVMuxContext *c)
av_fifo_free(&c->audio_data[i]); av_fifo_free(&c->audio_data[i]);
} }
#ifdef CONFIG_MUXERS #ifdef CONFIG_DV_MUXER
static int dv_write_header(AVFormatContext *s) static int dv_write_header(AVFormatContext *s)
{ {
if (!dv_init_mux(s)) { if (!dv_init_mux(s)) {
...@@ -397,9 +397,7 @@ static int dv_write_trailer(struct AVFormatContext *s) ...@@ -397,9 +397,7 @@ static int dv_write_trailer(struct AVFormatContext *s)
dv_delete_mux(s->priv_data); dv_delete_mux(s->priv_data);
return 0; return 0;
} }
#endif /* CONFIG_MUXERS */
#ifdef CONFIG_DV_MUXER
AVOutputFormat dv_muxer = { AVOutputFormat dv_muxer = {
"dv", "dv",
NULL_IF_CONFIG_SMALL("DV video format"), NULL_IF_CONFIG_SMALL("DV video format"),
...@@ -412,4 +410,4 @@ AVOutputFormat dv_muxer = { ...@@ -412,4 +410,4 @@ AVOutputFormat dv_muxer = {
dv_write_packet, dv_write_packet,
dv_write_trailer, dv_write_trailer,
}; };
#endif #endif /* CONFIG_DV_MUXER */
...@@ -303,7 +303,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) ...@@ -303,7 +303,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt)
} }
} }
#ifdef CONFIG_MUXERS #if defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER)
/******************************************************/ /******************************************************/
/* image output */ /* image output */
...@@ -368,7 +368,7 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -368,7 +368,7 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt)
return 0; return 0;
} }
#endif /* CONFIG_MUXERS */ #endif /* defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) */
/* input */ /* input */
#ifdef CONFIG_IMAGE2_DEMUXER #ifdef CONFIG_IMAGE2_DEMUXER
......
...@@ -44,7 +44,7 @@ static const AVCodecTag nut_tags[] = { ...@@ -44,7 +44,7 @@ static const AVCodecTag nut_tags[] = {
{ 0, 0 }, { 0, 0 },
}; };
#ifdef CONFIG_MUXERS #ifdef CONFIG_LIBNUT_MUXER
static int av_write(void * h, size_t len, const uint8_t * buf) { static int av_write(void * h, size_t len, const uint8_t * buf) {
ByteIOContext * bc = h; ByteIOContext * bc = h;
put_buffer(bc, buf, len); put_buffer(bc, buf, len);
...@@ -163,7 +163,7 @@ AVOutputFormat libnut_muxer = { ...@@ -163,7 +163,7 @@ AVOutputFormat libnut_muxer = {
nut_write_trailer, nut_write_trailer,
.flags = AVFMT_GLOBALHEADER, .flags = AVFMT_GLOBALHEADER,
}; };
#endif //CONFIG_MUXERS #endif /* CONFIG_LIBNUT_MUXER */
static int nut_probe(AVProbeData *p) { static int nut_probe(AVProbeData *p) {
if (!memcmp(p->buf, ID_STRING, ID_LENGTH)) return AVPROBE_SCORE_MAX; if (!memcmp(p->buf, ID_STRING, ID_LENGTH)) return AVPROBE_SCORE_MAX;
......
...@@ -36,7 +36,7 @@ static int mmf_rate(int code) ...@@ -36,7 +36,7 @@ static int mmf_rate(int code)
return mmf_rates[code]; return mmf_rates[code];
} }
#ifdef CONFIG_MUXERS #ifdef CONFIG_MMF_MUXER
static int mmf_rate_code(int rate) static int mmf_rate_code(int rate)
{ {
int i; int i;
...@@ -163,7 +163,7 @@ static int mmf_write_trailer(AVFormatContext *s) ...@@ -163,7 +163,7 @@ static int mmf_write_trailer(AVFormatContext *s)
} }
return 0; return 0;
} }
#endif //CONFIG_MUXERS #endif /* CONFIG_MMF_MUXER */
static int mmf_probe(AVProbeData *p) static int mmf_probe(AVProbeData *p)
{ {
......
...@@ -521,7 +521,7 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -521,7 +521,7 @@ static int mp3_read_packet(AVFormatContext *s, AVPacket *pkt)
return ret; return ret;
} }
#ifdef CONFIG_MUXERS #if defined(CONFIG_MP2_MUXER) || defined(CONFIG_MP3_MUXER)
static void id3v1_create_tag(AVFormatContext *s, uint8_t *buf) static void id3v1_create_tag(AVFormatContext *s, uint8_t *buf)
{ {
int v, i; int v, i;
...@@ -639,7 +639,7 @@ static int mp3_write_trailer(struct AVFormatContext *s) ...@@ -639,7 +639,7 @@ static int mp3_write_trailer(struct AVFormatContext *s)
} }
return 0; return 0;
} }
#endif //CONFIG_MUXERS #endif /* defined(CONFIG_MP2_MUXER) || defined(CONFIG_MP3_MUXER) */
#ifdef CONFIG_MP3_DEMUXER #ifdef CONFIG_MP3_DEMUXER
AVInputFormat mp3_demuxer = { AVInputFormat mp3_demuxer = {
......
...@@ -30,7 +30,7 @@ typedef struct { ...@@ -30,7 +30,7 @@ typedef struct {
int last_duration; int last_duration;
} WAVContext; } WAVContext;
#ifdef CONFIG_MUXERS #ifdef CONFIG_WAV_MUXER
static int wav_write_header(AVFormatContext *s) static int wav_write_header(AVFormatContext *s)
{ {
WAVContext *wav = s->priv_data; WAVContext *wav = s->priv_data;
...@@ -113,7 +113,7 @@ static int wav_write_trailer(AVFormatContext *s) ...@@ -113,7 +113,7 @@ static int wav_write_trailer(AVFormatContext *s)
} }
return 0; return 0;
} }
#endif //CONFIG_MUXERS #endif /* CONFIG_WAV_MUXER */
/* return the size of the found tag */ /* return the size of the found tag */
/* XXX: > 2GB ? */ /* XXX: > 2GB ? */
......
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