diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-09-01 15:28:15 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-09-01 15:28:15 +0000 |
commit | 4d951ef86d86418e667c36fe5a375f50a74ad410 (patch) | |
tree | 84e5ef68811081134cd3a7b5feaab0079dd81c90 | |
parent | 2988c93d94d857da609f366db82b624a91ff9b4c (diff) | |
download | ffmpeg-4d951ef86d86418e667c36fe5a375f50a74ad410.tar.gz |
check ENABLE_*_DEMUXER instead of CONFIG_*_DEMUXER
Originally committed as revision 15144 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 c065785bb1..b5a52583ab 100644 --- a/libavformat/raw.c +++ b/libavformat/raw.c @@ -487,7 +487,7 @@ static int dirac_probe(AVProbeData *p) } #endif -#if (CONFIG_AC3_DEMUXER || CONFIG_EAC3_DEMUXER) +#if (ENABLE_AC3_DEMUXER || ENABLE_EAC3_DEMUXER) static int ac3_eac3_probe(AVProbeData *p, int *codec_id) { int max_frames, first_frames = 0, frames; |