From bdf6972c4b7b2c60a8824e47b9b64e95686abbb6 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Mon, 1 Sep 2008 17:20:49 +0000 Subject: [PATCH] change back to using CONFIG_*_DEMUXER for ac3_eac3_probe(), but use it correctly this time. Originally committed as revision 15147 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/raw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/raw.c b/libavformat/raw.c index 9e3d8d2c65..05c93ac338 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -487,7 +487,7 @@ static int dirac_probe(AVProbeData *p) } #endif -#if (ENABLE_AC3_DEMUXER || ENABLE_EAC3_DEMUXER) +#if defined(CONFIG_AC3_DEMUXER) || defined(CONFIG_EAC3_DEMUXER) static int ac3_eac3_probe(AVProbeData *p, enum CodecID expected_codec_id) { int max_frames, first_frames = 0, frames;