summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2007-08-07 00:02:29 +0000
committerJustin Ruggles <justin.ruggles@gmail.com>2007-08-07 00:02:29 +0000
commit6ea67bbb60e54ffd1f9dbb4cc7636b83181fba5e (patch)
tree3a99234005a3cd5bb4a71bba06b4763e1fb187a5 /configure
parent5eac5f29e3677e9ba260c3acf8197cab540bbcde (diff)
enable the native AC-3 decoder
Originally committed as revision 9968 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure b/configure
index 9a8feec758..0933d66ac3 100755
--- a/configure
+++ b/configure
@@ -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