Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnuradha Suraparaju <anuradha@rd.bbc.co.uk>2008-05-08 04:20:00 +0400
committerDiego Biurrun <diego@biurrun.de>2008-05-08 04:20:00 +0400
commit3f89d9c0000d313a0103a7d91fd9208e8744275b (patch)
tree6408fd2124b6b07d4fb786d39fe8f037d9f55bd9 /configure
parente680989d7b224bbf449892b230cb6682e2761838 (diff)
Disable libdirac decoder if the faster libschroedinger decoder is available.
patch by Anuradha Suraparaju, anuradha rd.bbc.co uk Originally committed as revision 13074 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure
index e13f1a02fd..7faf28134d 100755
--- a/configure
+++ b/configure
@@ -1653,6 +1653,9 @@ enabled mlib && require mediaLib mlib_types.h mlib_VectorSub_S16_U8_Mod -
# disable the native AC-3 decoder if liba52 is enabled
enabled liba52 && disable ac3_decoder
+# disable the slower libdirac decoder if libschroedinger is enabled
+enabled libschroedinger && enabled libdirac && disable libdirac_decoder
+
# libdc1394 check
if enabled libdc1394; then
{ check_lib dc1394/dc1394.h dc1394_new -ldc1394 -lraw1394 &&