diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-20 21:48:29 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-04-30 16:10:06 +0200 |
commit | 7f75f2f2bd692857c1c1ca7f414eb30ece3de93d (patch) | |
tree | 1f9c027a64daa34de39b82874b783590fde89e51 /libavcodec/ppc/fft_altivec.c | |
parent | f2e9d44a5757c8fd8e3c38f460396462fd1bc603 (diff) | |
download | ffmpeg-7f75f2f2bd692857c1c1ca7f414eb30ece3de93d.tar.gz |
ppc: Drop unnecessary ff_ name prefixes from static functions
Diffstat (limited to 'libavcodec/ppc/fft_altivec.c')
-rw-r--r-- | libavcodec/ppc/fft_altivec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/ppc/fft_altivec.c b/libavcodec/ppc/fft_altivec.c index e3c848213d..b9dd4a2445 100644 --- a/libavcodec/ppc/fft_altivec.c +++ b/libavcodec/ppc/fft_altivec.c @@ -38,7 +38,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 -static void ff_imdct_half_altivec(FFTContext *s, FFTSample *output, const FFTSample *input) +static void imdct_half_altivec(FFTContext *s, FFTSample *output, const FFTSample *input) { int j, k; int n = 1 << s->mdct_bits; @@ -118,7 +118,7 @@ static void ff_imdct_half_altivec(FFTContext *s, FFTSample *output, const FFTSam } while(k >= 0); } -static void ff_imdct_calc_altivec(FFTContext *s, FFTSample *output, const FFTSample *input) +static void imdct_calc_altivec(FFTContext *s, FFTSample *output, const FFTSample *input) { int k; int n = 1 << s->mdct_bits; @@ -128,7 +128,7 @@ static void ff_imdct_calc_altivec(FFTContext *s, FFTSample *output, const FFTSam vec_u32 *p0 = (vec_u32*)(output+n4); vec_u32 *p1 = (vec_u32*)(output+n4*3); - ff_imdct_half_altivec(s, output+n4, input); + imdct_half_altivec(s, output + n4, input); for (k = 0; k < n16; k++) { vec_u32 a = p0[k] ^ sign; @@ -144,8 +144,8 @@ av_cold void ff_fft_init_ppc(FFTContext *s) #if HAVE_GNU_AS && HAVE_ALTIVEC s->fft_calc = ff_fft_calc_interleave_altivec; if (s->mdct_bits >= 5) { - s->imdct_calc = ff_imdct_calc_altivec; - s->imdct_half = ff_imdct_half_altivec; + s->imdct_calc = imdct_calc_altivec; + s->imdct_half = imdct_half_altivec; } #endif /* HAVE_GNU_AS && HAVE_ALTIVEC */ } |