This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lavc/hevcdsp: Fix compilation for arm with --disable-neon.
tags/n2.7
Carl Eugen Hoyos
11 years ago
parent
88bf16895a
commit
1d523ea89a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/hevcdsp.c
+ 1
- 1
libavcodec/hevcdsp.c
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);
}
Write
Preview
Loading…
Cancel
Save