aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2015-03-10 12:14:16 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2015-03-10 15:00:08 +0100
commitc43e5faf039313f1a749f4537ada14077928c758 (patch)
treeff10083d785e80c734b2548d7fc0d4d3a31ee07d
parent876d2d8db8ed672e2e785c540aaece0b21b7231f (diff)
downloadffmpeg-c43e5faf039313f1a749f4537ada14077928c758.tar.gz
lavc/hevcdsp: Fix compilation for arm with --disable-neon.
(cherry picked from commit 1d523ea89ab93eadd153983f3aefdcfcdede3c9a)
-rw-r--r--libavcodec/hevcdsp.c2
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);
}