diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-12-03 13:22:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-12-04 02:35:42 +0100 |
commit | a27401a05ba31fe4a8f7824d376c1d48d2e571a9 (patch) | |
tree | 130760407361cc9c2174a51e3fc4ace54d3c3523 /libavcodec/mips | |
parent | eb3628d87f67b35e8dd354a466028e93bdd7f9c0 (diff) | |
download | ffmpeg-a27401a05ba31fe4a8f7824d376c1d48d2e571a9.tar.gz |
mips: rename mipsdspr1 to mipsdsp
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/mips')
-rw-r--r-- | libavcodec/mips/Makefile | 4 | ||||
-rw-r--r-- | libavcodec/mips/ac3dsp_mips.c | 4 | ||||
-rw-r--r-- | libavcodec/mips/mpegaudiodsp_mips_fixed.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/mips/Makefile b/libavcodec/mips/Makefile index 2e8b1ee479..f66017abc5 100644 --- a/libavcodec/mips/Makefile +++ b/libavcodec/mips/Makefile @@ -8,7 +8,7 @@ MIPSFPU-OBJS-$(CONFIG_AMRWB_DECODER) += mips/acelp_filters_mips.o \ mips/celp_math_mips.o \ mips/acelp_vectors_mips.o MIPSFPU-OBJS-$(CONFIG_MPEGAUDIODSP) += mips/mpegaudiodsp_mips_float.o -MIPSDSPR1-OBJS-$(CONFIG_MPEGAUDIODSP) += mips/mpegaudiodsp_mips_fixed.o +MIPSDSP-OBJS-$(CONFIG_MPEGAUDIODSP) += mips/mpegaudiodsp_mips_fixed.o MIPSFPU-OBJS-$(CONFIG_FFT) += mips/fft_mips.o MIPSFPU-OBJS-$(CONFIG_FMTCONVERT) += mips/fmtconvert_mips.o OBJS-$(CONFIG_AC3DSP) += mips/ac3dsp_mips.o @@ -16,7 +16,7 @@ OBJS-$(CONFIG_AAC_DECODER) += mips/aacdec_mips.o \ mips/aacsbr_mips.o \ mips/sbrdsp_mips.o \ mips/aacpsdsp_mips.o -MIPSDSPR1-OBJS-$(CONFIG_AAC_ENCODER) += mips/aaccoder_mips.o +MIPSDSP-OBJS-$(CONFIG_AAC_ENCODER) += mips/aaccoder_mips.o MIPSFPU-OBJS-$(CONFIG_AAC_ENCODER) += mips/iirfilter_mips.o OBJS-$(CONFIG_HEVC_DECODER) += mips/hevcdsp_init_mips.o \ mips/hevcpred_init_mips.o diff --git a/libavcodec/mips/ac3dsp_mips.c b/libavcodec/mips/ac3dsp_mips.c index 01c7de57a0..da4919f6eb 100644 --- a/libavcodec/mips/ac3dsp_mips.c +++ b/libavcodec/mips/ac3dsp_mips.c @@ -59,7 +59,7 @@ #include "libavutil/mips/asmdefs.h" #if HAVE_INLINE_ASM -#if HAVE_MIPSDSPR1 +#if HAVE_MIPSDSP static void ac3_bit_alloc_calc_bap_mips(int16_t *mask, int16_t *psd, int start, int end, int snr_offset, int floor, @@ -400,7 +400,7 @@ static void ac3_downmix_mips(float **samples, float (*matrix)[2], void ff_ac3dsp_init_mips(AC3DSPContext *c, int bit_exact) { #if HAVE_INLINE_ASM -#if HAVE_MIPSDSPR1 +#if HAVE_MIPSDSP c->bit_alloc_calc_bap = ac3_bit_alloc_calc_bap_mips; c->update_bap_counts = ac3_update_bap_counts_mips; #endif diff --git a/libavcodec/mips/mpegaudiodsp_mips_fixed.c b/libavcodec/mips/mpegaudiodsp_mips_fixed.c index 86ea13d8d6..92d260b85f 100644 --- a/libavcodec/mips/mpegaudiodsp_mips_fixed.c +++ b/libavcodec/mips/mpegaudiodsp_mips_fixed.c @@ -901,7 +901,7 @@ static void ff_imdct36_blocks_mips_fixed(int *out, int *buf, int *in, } } -void ff_mpadsp_init_mipsdspr1(MPADSPContext *s) +void ff_mpadsp_init_mipsdsp(MPADSPContext *s) { s->apply_window_fixed = ff_mpadsp_apply_window_mips_fixed; s->imdct36_blocks_fixed = ff_imdct36_blocks_mips_fixed; |