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
This commit is contained in:
Diego Biurrun
2008-09-02 22:45:13 +00:00
parent c184318852
commit 8212568a1c
9 changed files with 18 additions and 20 deletions

View File

@ -30,7 +30,7 @@ Only mono files are supported.
static const char AMR_header [] = "#!AMR\n";
static const char AMRWB_header [] = "#!AMR-WB\n";
#ifdef CONFIG_MUXERS
#ifdef CONFIG_AMR_MUXER
static int amr_write_header(AVFormatContext *s)
{
ByteIOContext *pb = s->pb;
@ -60,7 +60,7 @@ static int amr_write_packet(AVFormatContext *s, AVPacket *pkt)
put_flush_packet(s->pb);
return 0;
}
#endif /* CONFIG_MUXERS */
#endif /* CONFIG_AMR_MUXER */
static int amr_probe(AVProbeData *p)
{