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/aiff.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/aiff.c')
-rw-r--r-- | libavformat/aiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/aiff.c b/libavformat/aiff.c index 079e8b930d..41153553cf 100644 --- a/libavformat/aiff.c +++ b/libavformat/aiff.c @@ -166,7 +166,7 @@ static unsigned int get_aiff_header(ByteIOContext *pb, AVCodecContext *codec, return num_frames; } -#ifdef CONFIG_MUXERS +#ifdef CONFIG_AIFF_MUXER typedef struct { offset_t form; offset_t frames; @@ -289,7 +289,7 @@ static int aiff_write_trailer(AVFormatContext *s) return 0; } -#endif //CONFIG_MUXERS +#endif /* CONFIG_AIFF_MUXER */ static int aiff_probe(AVProbeData *p) { |