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

diego subversion
Sun Jan 7 00:33:43 CET 2007


Author: diego
Date: Sun Jan  7 00:33:43 2007
New Revision: 7414

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

Log:
Rename variables: a52 --> liba52, a52bin --> liba52bin


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Sun Jan  7 00:33:43 2007
@@ -74,7 +74,7 @@
   echo "  --enable-x264            enable H.264 encoding via x264 [default=no]"
   echo "  --enable-mingw32         enable MinGW native/cross Windows compile"
   echo "  --enable-mingwce         enable MinGW native/cross WinCE compile"
-  echo "  --enable-a52             enable GPLed A52 support [default=no]"
+  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-pp              enable GPLed postprocessing support [default=no]"
@@ -407,8 +407,6 @@
     parsers
     muxers
     demuxers
-    a52
-    a52bin
     amr
     amr_nb
     amr_nb_fixed
@@ -429,6 +427,8 @@
     ffserver
     gpl
     ipv6
+    liba52
+    liba52bin
     libgsm
     libnut
     libogg
@@ -590,6 +590,8 @@
 network="yes"
 ipv6="yes"
 zlib="yes"
+liba52="no"
+liba52bin="no"
 libgsm="no"
 mp3lame="no"
 libnut="no"
@@ -600,8 +602,6 @@
 faac="no"
 xvid="no"
 x264="no"
-a52="no"
-a52bin="no"
 dts="no"
 pp="no"
 mingw32="no"
@@ -934,9 +934,9 @@
   ;;
   --disable-zlib) zlib="no"
   ;;
-  --enable-a52) a52="yes"
+  --enable-a52) liba52="yes"
   ;;
-  --enable-a52bin) a52bin="yes"
+  --enable-a52bin) liba52bin="yes"
   ;;
   --enable-dts) dts="yes"
   ;;
@@ -1132,7 +1132,7 @@
         die "The Postprocessing code is under GPL and --enable-gpl is not specified."
     fi
 
-    if test "$a52" != "no" -o "$a52bin" != "no"; then
+    if test "$liba52" != "no" -o "$liba52bin" != "no"; then
         die "liba52 is under GPL and --enable-gpl is not specified."
     fi
 
@@ -1550,7 +1550,7 @@
     vhook="$dlopen"
 fi
 
-if enabled_any vhook a52bin faadbin; then
+if enabled_any vhook liba52bin faadbin; then
     add_extralibs $ldl
 fi
 
@@ -1792,8 +1792,8 @@
 fi
 echo "Sun medialib support      $mlib"
 echo "AVISynth enabled          $avisynth"
-echo "liba52 support            $a52"
-echo "liba52 dlopened           $a52bin"
+echo "liba52 support            $liba52"
+echo "liba52 dlopened           $liba52bin"
 echo "libdts support            $dts"
 echo "libfaac enabled           $faac"
 echo "libfaad enabled           $faad"

Modified: trunk/libavcodec/Makefile
==============================================================================
--- trunk/libavcodec/Makefile	(original)
+++ trunk/libavcodec/Makefile	Sun Jan  7 00:33:43 2007
@@ -252,10 +252,10 @@
 OBJS-$(CONFIG_LIBGSM)                  += libgsm.o
 
 # currently using liba52 for ac3 decoding
-OBJS-$(CONFIG_A52)                     += a52dec.o
+OBJS-$(CONFIG_LIBA52)                  += a52dec.o
 
 # using builtin liba52 or runtime linked liba52.so.0
-OBJS-$(CONFIG_A52)$(CONFIG_A52BIN)     += liba52/bit_allocate.o \
+OBJS-$(CONFIG_LIBA52)$(CONFIG_LIBA52BIN)  += liba52/bit_allocate.o \
                                           liba52/bitstream.o    \
                                           liba52/downmix.o      \
                                           liba52/imdct.o        \

Modified: trunk/libavcodec/a52dec.c
==============================================================================
--- trunk/libavcodec/a52dec.c	(original)
+++ trunk/libavcodec/a52dec.c	Sun Jan  7 00:33:43 2007
@@ -27,7 +27,7 @@
 #include "avcodec.h"
 #include "liba52/a52.h"
 
-#ifdef CONFIG_A52BIN
+#ifdef CONFIG_LIBA52BIN
 #include <dlfcn.h>
 static const char* liba52name = "liba52.so.0";
 #endif
@@ -70,7 +70,7 @@
 
 } AC3DecodeState;
 
-#ifdef CONFIG_A52BIN
+#ifdef CONFIG_LIBA52BIN
 static void* dlsymm(void* handle, const char* symbol)
 {
     void* f = dlsym(handle, symbol);
@@ -84,7 +84,7 @@
 {
     AC3DecodeState *s = avctx->priv_data;
 
-#ifdef CONFIG_A52BIN
+#ifdef CONFIG_LIBA52BIN
     s->handle = dlopen(liba52name, RTLD_LAZY);
     if (!s->handle)
     {
@@ -239,7 +239,7 @@
 {
     AC3DecodeState *s = avctx->priv_data;
     s->a52_free(s->state);
-#ifdef CONFIG_A52BIN
+#ifdef CONFIG_LIBA52BIN
     dlclose(s->handle);
 #endif
     return 0;

Modified: trunk/libavcodec/allcodecs.c
==============================================================================
--- trunk/libavcodec/allcodecs.c	(original)
+++ trunk/libavcodec/allcodecs.c	Sun Jan  7 00:33:43 2007
@@ -164,7 +164,7 @@
     REGISTER_DECODER(AAC, aac);
     REGISTER_DECODER(MPEG4AAC, mpeg4aac);
 #endif
-#ifdef CONFIG_A52
+#ifdef CONFIG_LIBA52
     REGISTER_DECODER(AC3, ac3);
 #endif
     REGISTER_ENCODER(AC3, ac3);




More information about the ffmpeg-cvslog mailing list