Commit c266eb19 authored by Michael Niedermayer's avatar Michael Niedermayer

arm: Fix 10l typo

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 23a5bf9d
...@@ -125,10 +125,10 @@ void ff_vp8_h_loop_filter16_simple_ ## opt(uint8_t *dst, ptrdiff_t stride, int f ...@@ -125,10 +125,10 @@ void ff_vp8_h_loop_filter16_simple_ ## opt(uint8_t *dst, ptrdiff_t stride, int f
simple_lf_funcs(neon); simple_lf_funcs(neon);
simple_lf_funcs(armv6); simple_lf_funcs(armv6);
#define VP8_MC(n) \ #define VP8_MC_OPT(n, opt) \
void ff_put_vp8_##n##_neon(uint8_t *dst, ptrdiff_t dststride, \ void ff_put_vp8_##n##_##opt(uint8_t *dst, ptrdiff_t dststride, \
uint8_t *src, ptrdiff_t srcstride, \ uint8_t *src, ptrdiff_t srcstride, \
int h, int x, int y) int h, int x, int y)
#define VP8_MC(n) \ #define VP8_MC(n) \
VP8_MC_OPT(n, neon) VP8_MC_OPT(n, neon)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment