[FFmpeg-cvslog] lavc/hevcdsp: Fix compilation for arm with --disable-neon.
Carl Eugen Hoyos
git at videolan.org
Tue Mar 10 15:00:30 CET 2015
ffmpeg | branch: release/2.6 | Carl Eugen Hoyos <cehoyos at ag.or.at> | Tue Mar 10 12:14:16 2015 +0100| [c43e5faf039313f1a749f4537ada14077928c758] | committer: Carl Eugen Hoyos
lavc/hevcdsp: Fix compilation for arm with --disable-neon.
(cherry picked from commit 1d523ea89ab93eadd153983f3aefdcfcdede3c9a)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c43e5faf039313f1a749f4537ada14077928c758
---
libavcodec/hevcdsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c
index 04af178..b7a4729 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);
}
More information about the ffmpeg-cvslog
mailing list