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/img2.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/img2.c')
-rw-r--r-- | libavformat/img2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/img2.c b/libavformat/img2.c index d3b7200ae9..c146d8a67a 100644 --- a/libavformat/img2.c +++ b/libavformat/img2.c @@ -303,7 +303,7 @@ static int img_read_packet(AVFormatContext *s1, AVPacket *pkt) } } -#ifdef CONFIG_MUXERS +#if defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) /******************************************************/ /* image output */ @@ -368,7 +368,7 @@ static int img_write_packet(AVFormatContext *s, AVPacket *pkt) return 0; } -#endif /* CONFIG_MUXERS */ +#endif /* defined(CONFIG_IMAGE2_MUXER) || defined(CONFIG_IMAGE2PIPE_MUXER) */ /* input */ #ifdef CONFIG_IMAGE2_DEMUXER |