mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user