diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2007-08-07 00:02:29 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2007-08-07 00:02:29 +0000 |
commit | 6ea67bbb60e54ffd1f9dbb4cc7636b83181fba5e (patch) | |
tree | 3a99234005a3cd5bb4a71bba06b4763e1fb187a5 /configure | |
parent | 5eac5f29e3677e9ba260c3acf8197cab540bbcde (diff) | |
download | ffmpeg-6ea67bbb60e54ffd1f9dbb4cc7636b83181fba5e.tar.gz |
enable the native AC-3 decoder
Originally committed as revision 9968 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -719,6 +719,7 @@ mmx_deps="x86" ssse3_deps="x86" # decoders / encoders +ac3_decoder_deps="gpl" dxa_decoder_deps="zlib" flashsv_decoder_deps="zlib" flashsv_encoder_deps="zlib" @@ -1592,6 +1593,9 @@ enabled libfaac && require2 libfaac "stdint.h faac.h" faacEncGetVersion -lfaa enabled libfaad && require2 libfaad faad.h faacDecOpen -lfaad enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lvfw32 +# disable the native AC-3 decoder if liba52 is enabled +enabled liba52 && disable ac3_decoder + _restrict= for restrict_keyword in restrict __restrict__ __restrict; do check_cc <<EOF && _restrict=$restrict_keyword && break |