diff amr.c @ 3871:e6aeb2733e34 libavformat

Replace generic CONFIG_MUXERS preprocessor conditionals by more specific CONFIG_FOO_MUXER conditionals where appropriate.
author diego
date Tue, 02 Sep 2008 22:45:13 +0000
parents 7a0230981402
children c3102b189cb6
line wrap: on
line diff
--- a/amr.c	Tue Sep 02 22:31:41 2008 +0000
+++ b/amr.c	Tue Sep 02 22:45:13 2008 +0000
@@ -30,7 +30,7 @@
 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 @@
     put_flush_packet(s->pb);
     return 0;
 }
-#endif /* CONFIG_MUXERS */
+#endif /* CONFIG_AMR_MUXER */
 
 static int amr_probe(AVProbeData *p)
 {