diff wav.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 f062deeedb8d
children dfd3033e7de7
line wrap: on
line diff
--- a/wav.c	Tue Sep 02 22:31:41 2008 +0000
+++ b/wav.c	Tue Sep 02 22:45:13 2008 +0000
@@ -30,7 +30,7 @@
     int last_duration;
 } WAVContext;
 
-#ifdef CONFIG_MUXERS
+#ifdef CONFIG_WAV_MUXER
 static int wav_write_header(AVFormatContext *s)
 {
     WAVContext *wav = s->priv_data;
@@ -113,7 +113,7 @@
     }
     return 0;
 }
-#endif //CONFIG_MUXERS
+#endif /* CONFIG_WAV_MUXER */
 
 /* return the size of the found tag */
 /* XXX: > 2GB ? */