Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 179899
Collapse All | Expand All

(-)xine-lib-1.1.4.orig/configure.ac (+7 lines)
Lines 1275-1280 Link Here
1275
1275
1276
  if test "x$have_a52" = "xno"; then
1276
  if test "x$have_a52" = "xno"; then
1277
    AC_MSG_RESULT([*** no usable version of a52dec found, using internal copy ***])
1277
    AC_MSG_RESULT([*** no usable version of a52dec found, using internal copy ***])
1278
  else
1279
    dnl check for djbttf
1280
    AC_ARG_ENABLE([djbfft],
1281
        [  --enable-djbfft         make a version using djbfft])
1282
    if test x"$enable_djbfft" = x"yes"; then
1283
        AC_DEFINE([HAVE_DJBFFT],,[liba52 djbfft support])
1284
    fi
1278
  fi
1285
  fi
1279
else
1286
else
1280
  AC_MSG_RESULT([Use included a52dec support])
1287
  AC_MSG_RESULT([Use included a52dec support])
(-)xine-lib-1.1.4.orig/src/xine-utils/cpu_accel.c (+10 lines)
Lines 324-329 Link Here
324
#else
324
#else
325
    accel |= MM_ACCEL_MLIB;
325
    accel |= MM_ACCEL_MLIB;
326
#endif
326
#endif
327
#elif defined(HAVE_DJBFFT)
328
    /*
329
     * HAVE_DJBFFT will be defined only if we are using an external
330
     * liba52 and --enable-djbfft was passed to configure.  External 
331
     * versions of liba52 use MM_ACCEL_DJBFFT in place of MM_ACCEL_MLIB
332
     * although they are both #defined to be 0x00000001.  What we are 
333
     * actually saying here is:
334
     *         accel |= MM_ACCEL_DJBFFT
335
     */
336
    accel |= MM_ACCEL_MLIB;
327
#endif
337
#endif
328
338
329
#if defined(ARCH_X86) || defined(ARCH_X86_64) || (defined(ARCH_PPC) && defined(ENABLE_ALTIVEC)) || (defined(ARCH_SPARC) && defined(ENABLE_VIS))
339
#if defined(ARCH_X86) || defined(ARCH_X86_64) || (defined(ARCH_PPC) && defined(ENABLE_ALTIVEC)) || (defined(ARCH_SPARC) && defined(ENABLE_VIS))

Return to bug 179899