a52dec: Allow liba52 to use djbfft based IMDCT transform
authorMart Raudsepp <leio@gentoo.org>
Sun, 23 Aug 2009 11:34:32 +0000 (13:34 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Sun, 23 Aug 2009 11:34:32 +0000 (13:34 +0200)
commitebfe6c07467c67c82cdd199903ddd36097564ed5
treee6417ada54f60cd84d79cb3eeade714d5913a519
parentbd8df13ab02c38bb7a12e0ee07b16b05ff75f546
a52dec: Allow liba52 to use djbfft based IMDCT transform

liba52 in a52dec-0.7.4 does not have any MMX, MMXEXT or 3DNOW based
IMDCT transform acceleration. It does however have a software based
acceleration using the djbfft library (D.J. Bernstein's library for
fourier transforms - Extremely fast library for floating-point
convolution). So allow liba52 to use it through the MM_ACCEL_DJBFFT
flag.
The liba52 copy in MPlayer sources does have SSE, 3dnowext, 3dnow
and AltiVec implementations, but those are checked for first, and
djbfft is chosen only if none of those is available - good in the
case of some distributions including a port of the MPlayer changes
in their system a52dec library.

The down and upmix code in liba52 doesn't seem to be disturbed by
this additional MM_ACCEL flag and will still use MMX, SSE or 3DNOW
versions if passed from oil_cpu_get_flags (SSE currently is not).

Fixes bug #592787.
ext/a52dec/gsta52dec.c