diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-09-02 22:45:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-09-02 22:45:13 +0000 |
commit | 8212568a1c0a7cc9b2a2d589dd483135c6e7e02a (patch) | |
tree | baeb558a6d7d6e4f4c8bafabf17ffe7faaccd90f /libavformat/wav.c | |
parent | c184318852092d0b4bae4930b373c09b9ad0acf4 (diff) | |
download | ffmpeg-8212568a1c0a7cc9b2a2d589dd483135c6e7e02a.tar.gz |
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.c | 4 |
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 ? */ |