diff options
author | James Almer <jamrial@gmail.com> | 2015-03-12 15:35:05 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-12 20:01:01 +0100 |
commit | d5addf1555024aebf13b37fbca9fb8d0f4f656ca (patch) | |
tree | 3e13ed47918a8dcc6accb1eeb948341440dd6118 /libavcodec/hevcdsp.c | |
parent | a251aa1a350a1b9d3af07a7948efcc0add8e68ff (diff) | |
download | ffmpeg-d5addf1555024aebf13b37fbca9fb8d0f4f656ca.tar.gz |
hevcdsp: fix compilation for arm and aarch64
Also add av_cold to ff_hevcdsp_init_arm.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevcdsp.c')
-rw-r--r-- | libavcodec/hevcdsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c index b7a4729c02..04af178e11 100644 --- a/libavcodec/hevcdsp.c +++ b/libavcodec/hevcdsp.c @@ -259,6 +259,6 @@ int i = 0; if (ARCH_X86) ff_hevc_dsp_init_x86(hevcdsp, bit_depth); - if (HAVE_NEON) + if (ARCH_ARM) ff_hevcdsp_init_arm(hevcdsp, bit_depth); } |