summaryrefslogtreecommitdiffstats
path: root/libavcodec/hevcdsp.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-24 19:10:22 -0300
committerJames Almer <jamrial@gmail.com>2017-10-24 19:10:22 -0300
commitc0683dce89eceaab8783b8b47dd2346afc0a9276 (patch)
treee3371ed39fef828d16303befe75fd025a0c914c4 /libavcodec/hevcdsp.c
parent59b00ffea3c90b41f6e83f8184068657fed112dc (diff)
parent0b9a237b2386ff84a6f99716bd58fa27a1b767e7 (diff)
downloadffmpeg-streaming-c0683dce89eceaab8783b8b47dd2346afc0a9276.zip
ffmpeg-streaming-c0683dce89eceaab8783b8b47dd2346afc0a9276.tar.gz
Merge commit '0b9a237b2386ff84a6f99716bd58fa27a1b767e7'
* commit '0b9a237b2386ff84a6f99716bd58fa27a1b767e7': hevc: Add NEON 4x4 and 8x8 IDCT [15:12:59] <@ubitux> hevc_idct_4x4_8_c: 389.1 [15:13:00] <@ubitux> hevc_idct_4x4_8_neon: 126.6 [15:13:02] <@ubitux> our ^ [15:13:06] <@ubitux> hevc_idct_4x4_8_c: 389.3 [15:13:08] <@ubitux> hevc_idct_4x4_8_neon: 107.8 [15:13:10] <@ubitux> hevc_idct_4x4_10_c: 418.6 [15:13:12] <@ubitux> hevc_idct_4x4_10_neon: 108.1 [15:13:14] <@ubitux> libav ^ [15:13:30] <@ubitux> so yeah, we can probably trash our versions here Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/hevcdsp.c')
-rw-r--r--libavcodec/hevcdsp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/hevcdsp.c b/libavcodec/hevcdsp.c
index e432aa3..957e40d 100644
--- a/libavcodec/hevcdsp.c
+++ b/libavcodec/hevcdsp.c
@@ -257,12 +257,12 @@ int i = 0;
break;
}
+ if (ARCH_ARM)
+ ff_hevc_dsp_init_arm(hevcdsp, bit_depth);
if (ARCH_PPC)
ff_hevc_dsp_init_ppc(hevcdsp, bit_depth);
if (ARCH_X86)
ff_hevc_dsp_init_x86(hevcdsp, bit_depth);
- if (ARCH_ARM)
- ff_hevcdsp_init_arm(hevcdsp, bit_depth);
if (ARCH_MIPS)
ff_hevc_dsp_init_mips(hevcdsp, bit_depth);
}
OpenPOWER on IntegriCloud