1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-09 14:14:39 +02:00

lavc/hevcdsp: Fix compilation for arm with --disable-neon.

(cherry picked from commit 1d523ea89ab93eadd153983f3aefdcfcdede3c9a)
This commit is contained in:
Carl Eugen Hoyos 2015-03-10 12:14:16 +01:00
parent 876d2d8db8
commit c43e5faf03

View File

@ -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);
}