aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mips/hevc_mc_bi_msa.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2015-07-30 19:28:02 -0300
committerJames Almer <jamrial@gmail.com>2015-07-30 20:44:32 -0300
commita0092cea462ff4f203aaff09c42c6731c6516b44 (patch)
tree6dc34a631a931d49d99b2e783b0ce3c09ae18eb0 /libavcodec/mips/hevc_mc_bi_msa.c
parent9dcaae70f2f3ef27a2f0f8fee92114ea5e8847fb (diff)
downloadffmpeg-a0092cea462ff4f203aaff09c42c6731c6516b44.tar.gz
mips/hevcdsp: fix string concatenation on macros
Needed for old compilers like GCC 4.2 Tested by trac user brad. Fixes ticket #4745 Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/mips/hevc_mc_bi_msa.c')
-rw-r--r--libavcodec/mips/hevc_mc_bi_msa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mips/hevc_mc_bi_msa.c b/libavcodec/mips/hevc_mc_bi_msa.c
index 0709b40ccf..8208be327d 100644
--- a/libavcodec/mips/hevc_mc_bi_msa.c
+++ b/libavcodec/mips/hevc_mc_bi_msa.c
@@ -4369,7 +4369,7 @@ BI_MC_COPY(64);
#undef BI_MC_COPY
#define BI_MC(PEL, DIR, WIDTH, TAP, DIR1, FILT_DIR) \
-void ff_hevc_put_hevc_bi_##PEL##_##DIR####WIDTH##_8_msa(uint8_t *dst, \
+void ff_hevc_put_hevc_bi_##PEL##_##DIR##WIDTH##_8_msa(uint8_t *dst, \
ptrdiff_t dst_stride, \
uint8_t *src, \
ptrdiff_t src_stride, \
@@ -4423,7 +4423,7 @@ BI_MC(epel, v, 32, 4, vt, my);
#undef BI_MC
#define BI_MC_HV(PEL, DIR, WIDTH, TAP, DIR1) \
-void ff_hevc_put_hevc_bi_##PEL##_##DIR####WIDTH##_8_msa(uint8_t *dst, \
+void ff_hevc_put_hevc_bi_##PEL##_##DIR##WIDTH##_8_msa(uint8_t *dst, \
ptrdiff_t dst_stride, \
uint8_t *src, \
ptrdiff_t src_stride, \