diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-09-01 17:20:49 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-09-01 17:20:49 +0000 |
commit | bdf6972c4b7b2c60a8824e47b9b64e95686abbb6 (patch) | |
tree | d86339663e851af9a2b4454391caf25ad40980b8 /libavformat | |
parent | 23cdcb22a3ab0d7aa84b0fea3e23538c9532a5c4 (diff) | |
download | ffmpeg-bdf6972c4b7b2c60a8824e47b9b64e95686abbb6.tar.gz |
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
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/raw.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |