diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2015-05-10 23:22:17 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-05-31 12:07:11 +0200 |
commit | da60b99a8857d5ca236f32c1799a066e0135a866 (patch) | |
tree | b5af7af3af176f5d481970b9137fc6eefad4a5ab /libavcodec/ppc/fft_init.c | |
parent | f22ebd2555d15b59e109a5b630dd71374b076d0b (diff) | |
download | ffmpeg-da60b99a8857d5ca236f32c1799a066e0135a866.tar.gz |
ppc: Restrict some Altivec implementations to Big Endian
In Little Endian the vec_ld/vec_st operations work as
expected only for byte-vectors.
Diffstat (limited to 'libavcodec/ppc/fft_init.c')
-rw-r--r-- | libavcodec/ppc/fft_init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ppc/fft_init.c b/libavcodec/ppc/fft_init.c index 8fcc033b53..9e79f70ed0 100644 --- a/libavcodec/ppc/fft_init.c +++ b/libavcodec/ppc/fft_init.c @@ -39,7 +39,7 @@ void ff_fft_calc_altivec(FFTContext *s, FFTComplex *z); void ff_fft_calc_interleave_altivec(FFTContext *s, FFTComplex *z); -#if HAVE_GNU_AS && HAVE_ALTIVEC +#if HAVE_GNU_AS && HAVE_ALTIVEC && HAVE_BIGENDIAN static void imdct_half_altivec(FFTContext *s, FFTSample *output, const FFTSample *input) { int j, k; @@ -143,7 +143,7 @@ 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 HAVE_GNU_AS && HAVE_ALTIVEC && HAVE_BIGENDIAN if (!PPC_ALTIVEC(av_get_cpu_flags())) return; |