summaryrefslogtreecommitdiff
path: root/libavformat/wav.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-09-02 22:45:13 +0000
committerDiego Biurrun <diego@biurrun.de>2008-09-02 22:45:13 +0000
commit8212568a1c0a7cc9b2a2d589dd483135c6e7e02a (patch)
treebaeb558a6d7d6e4f4c8bafabf17ffe7faaccd90f /libavformat/wav.c
parentc184318852092d0b4bae4930b373c09b9ad0acf4 (diff)
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
Diffstat (limited to 'libavformat/wav.c')
-rw-r--r--libavformat/wav.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wav.c b/libavformat/wav.c
index de88b46d55..bc6e31edc7 100644
--- a/libavformat/wav.c
+++ b/libavformat/wav.c
@@ -30,7 +30,7 @@ typedef struct {
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 @@ static int wav_write_trailer(AVFormatContext *s)
}
return 0;
}
-#endif //CONFIG_MUXERS
+#endif /* CONFIG_WAV_MUXER */
/* return the size of the found tag */
/* XXX: > 2GB ? */