diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-03-10 12:14:16 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2015-03-10 12:14:16 +0100 |
commit | 1d523ea89ab93eadd153983f3aefdcfcdede3c9a (patch) | |
tree | 1d463bb6bb55a8120cb334fecd92624e119a4835 /libavcodec/hevcdsp.c | |
parent | 88bf16895a03e5b7e55b7e02231c25f8468fa245 (diff) | |
download | ffmpeg-1d523ea89ab93eadd153983f3aefdcfcdede3c9a.tar.gz |
lavc/hevcdsp: Fix compilation for arm with --disable-neon.
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 04af178e11..b7a4729c02 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 (ARCH_ARM) + if (HAVE_NEON) ff_hevcdsp_init_arm(hevcdsp, bit_depth); } |