summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-01-06 23:44:48 +0000
committerDiego Biurrun <diego@biurrun.de>2007-01-06 23:44:48 +0000
commit3ffab3613915854694dd7711c00f2f8a2fa39b8d (patch)
tree599b43ceaf4ad942fd5a5698ac921939665edc58
parentf8904fd959c01fe0798ce587e216bd1fe057a8e7 (diff)
variable renaming: dts --> libdts
Originally committed as revision 7415 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-xconfigure14
-rw-r--r--libavcodec/Makefile2
-rw-r--r--libavcodec/allcodecs.c2
3 files changed, 9 insertions, 9 deletions
diff --git a/configure b/configure
index 669797b19e..b3ddeebb53 100755
--- a/configure
+++ b/configure
@@ -76,7 +76,7 @@ show_help(){
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 @@ CONFIG_LIST='
beos_netserver
bktr
dc1394
- dts
dv1394
faac
faad
@@ -429,6 +428,7 @@ CONFIG_LIST='
ipv6
liba52
liba52bin
+ libdts
libgsm
libnut
libogg
@@ -594,6 +594,7 @@ liba52="no"
liba52bin="no"
libgsm="no"
mp3lame="no"
+libdts="no"
libnut="no"
libogg="no"
libvorbis="no"
@@ -602,7 +603,6 @@ faadbin="no"
faac="no"
xvid="no"
x264="no"
-dts="no"
pp="no"
mingw32="no"
wince="no"
@@ -938,7 +938,7 @@ for opt do
;;
--enable-a52bin) liba52bin="yes"
;;
- --enable-dts) dts="yes"
+ --enable-dts) libdts="yes"
;;
--enable-pp) pp="yes"
;;
@@ -1144,7 +1144,7 @@ if test "$gpl" != "yes"; then
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 @@ if enabled pthreads; then
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 "Sun medialib support $mlib"
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"
diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index a3f5baa51b..7ee2e866d7 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -264,7 +264,7 @@ OBJS-$(CONFIG_LIBA52)$(CONFIG_LIBA52BIN) += liba52/bit_allocate.o \
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 \
diff --git a/libavcodec/allcodecs.c b/libavcodec/allcodecs.c
index cf1863139c..f211a1a270 100644
--- a/libavcodec/allcodecs.c
+++ b/libavcodec/allcodecs.c
@@ -177,7 +177,7 @@ void avcodec_register_all(void)
#endif
REGISTER_DECODER(COOK, cook);
REGISTER_DECODER(DSICINAUDIO, dsicinaudio);
-#ifdef CONFIG_DTS
+#ifdef CONFIG_LIBDTS
REGISTER_DECODER(DTS, dts);
#endif
#ifdef CONFIG_FAAC