[Ffmpeg-cvslog] r7415 - in trunk: configure libavcodec/Makefile libavcodec/allcodecs.c

diego subversion
Sun Jan 7 00:44:48 CET 2007


Author: diego
Date: Sun Jan  7 00:44:48 2007
New Revision: 7415

Modified:
   trunk/configure
   trunk/libavcodec/Makefile
   trunk/libavcodec/allcodecs.c

Log:
variable renaming: dts --> libdts


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Jan  7 00:44:48 2007
@@ -76,7 +76,7 @@
   echo "  --enable-mingwce         enable MinGW native/cross WinCE compile"
   echo "  --enable-a52             enable GPLed liba52 support [default=no]"
   echo "  --enable-a52bin          open liba52.so.0 at runtime [default=no]"
-  echo "  --enable-dts             enable GPLed DTS support [default=no]"
+  echo "  --enable-dts             enable GPLed libdts support [default=no]"
   echo "  --enable-pp              enable GPLed postprocessing support [default=no]"
   echo "  --enable-static          build static libraries [default=yes]"
   echo "  --disable-static         do not build static libraries [default=no]"
@@ -417,7 +417,6 @@
     beos_netserver
     bktr
     dc1394
-    dts
     dv1394
     faac
     faad
@@ -429,6 +428,7 @@
     ipv6
     liba52
     liba52bin
+    libdts
     libgsm
     libnut
     libogg
@@ -594,6 +594,7 @@
 liba52bin="no"
 libgsm="no"
 mp3lame="no"
+libdts="no"
 libnut="no"
 libogg="no"
 libvorbis="no"
@@ -602,7 +603,6 @@
 faac="no"
 xvid="no"
 x264="no"
-dts="no"
 pp="no"
 mingw32="no"
 wince="no"
@@ -938,7 +938,7 @@
   ;;
   --enable-a52bin) liba52bin="yes"
   ;;
-  --enable-dts) dts="yes"
+  --enable-dts) libdts="yes"
   ;;
   --enable-pp) pp="yes"
   ;;
@@ -1144,7 +1144,7 @@
         die "x264 is under GPL and --enable-gpl is not specified."
     fi
 
-    if test "$dts" != "no"; then
+    if test "$libdts" != "no"; then
         die "libdts is under GPL and --enable-gpl is not specified."
     fi
 
@@ -1463,7 +1463,7 @@
 fi
 
 # these are off by default, so fail if requested and not available
-enabled dts     && require libdts dts.h dts_init -ldts -lm
+enabled libdts  && require libdts dts.h dts_init -ldts -lm
 enabled libgsm  && require libgsm gsm.h gsm_create -lgsm
 enabled mp3lame && require LAME lame/lame.h lame_init -lmp3lame -lm
 enabled libvorbis && require libvorbis vorbis/vorbisenc.h vorbis_info_init -lvorbis -lvorbisenc -logg
@@ -1794,7 +1794,7 @@
 echo "AVISynth enabled          $avisynth"
 echo "liba52 support            $liba52"
 echo "liba52 dlopened           $liba52bin"
-echo "libdts support            $dts"
+echo "libdts support            $libdts"
 echo "libfaac enabled           $faac"
 echo "libfaad enabled           $faad"
 echo "faadbin enabled           $faadbin"

Modified: trunk/libavcodec/Makefile
==============================================================================
--- trunk/libavcodec/Makefile	(original)
+++ trunk/libavcodec/Makefile	Sun Jan  7 00:44:48 2007
@@ -264,7 +264,7 @@
                                           liba52/resample.o
 
 # currently using libdts for dts decoding
-OBJS-$(CONFIG_DTS)                     += dtsdec.o
+OBJS-$(CONFIG_LIBDTS)                  += dtsdec.o
 
 OBJS-$(CONFIG_AMR)                     += amr.o
 OBJS-$(CONFIG_AMR_NB)                  += amr_float/sp_dec.o     \

Modified: trunk/libavcodec/allcodecs.c
==============================================================================
--- trunk/libavcodec/allcodecs.c	(original)
+++ trunk/libavcodec/allcodecs.c	Sun Jan  7 00:44:48 2007
@@ -177,7 +177,7 @@
 #endif
     REGISTER_DECODER(COOK, cook);
     REGISTER_DECODER(DSICINAUDIO, dsicinaudio);
-#ifdef CONFIG_DTS
+#ifdef CONFIG_LIBDTS
     REGISTER_DECODER(DTS, dts);
 #endif
 #ifdef CONFIG_FAAC




More information about the ffmpeg-cvslog mailing list