Browse Source

ppc: Add missing AltiVec cpuflag detection invocations

tags/n2.1
Diego Biurrun 11 years ago
parent
commit
6af2c351b3
3 changed files with 12 additions and 0 deletions
  1. +4
    -0
      libavcodec/ppc/fft_altivec.c
  2. +4
    -0
      libavcodec/ppc/fmtconvert_altivec.c
  3. +4
    -0
      libavcodec/ppc/mpegaudiodsp_altivec.c

+ 4
- 0
libavcodec/ppc/fft_altivec.c View File

@@ -21,6 +21,7 @@
*/

#include "config.h"
#include "libavutil/cpu.h"
#include "libavutil/ppc/types_altivec.h"
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/fft.h"
@@ -142,6 +143,9 @@ static void imdct_calc_altivec(FFTContext *s, FFTSample *output, const FFTSample
av_cold void ff_fft_init_ppc(FFTContext *s)
{
#if HAVE_GNU_AS && HAVE_ALTIVEC
if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC))
return;

s->fft_calc = ff_fft_calc_interleave_altivec;
if (s->mdct_bits >= 5) {
s->imdct_calc = imdct_calc_altivec;


+ 4
- 0
libavcodec/ppc/fmtconvert_altivec.c View File

@@ -20,6 +20,7 @@

#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/mem.h"
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/fmtconvert.h"
@@ -164,6 +165,9 @@ av_cold void ff_fmt_convert_init_ppc(FmtConvertContext *c,
AVCodecContext *avctx)
{
#if HAVE_ALTIVEC
if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC))
return;

c->int32_to_float_fmul_scalar = int32_to_float_fmul_scalar_altivec;
if (!(avctx->flags & CODEC_FLAG_BITEXACT)) {
c->float_to_int16 = float_to_int16_altivec;


+ 4
- 0
libavcodec/ppc/mpegaudiodsp_altivec.c View File

@@ -21,6 +21,7 @@

#include "config.h"
#include "libavutil/attributes.h"
#include "libavutil/cpu.h"
#include "libavutil/internal.h"
#include "libavutil/ppc/util_altivec.h"
#include "libavcodec/mpegaudiodsp.h"
@@ -132,6 +133,9 @@ static void apply_window_mp3(float *in, float *win, int *unused, float *out,
av_cold void ff_mpadsp_init_ppc(MPADSPContext *s)
{
#if HAVE_ALTIVEC
if (!(av_get_cpu_flags() & AV_CPU_FLAG_ALTIVEC))
return;

s->apply_window_float = apply_window_mp3;
#endif /* HAVE_ALTIVEC */
}

Loading…
Cancel
Save