From 702b5885a1eeb0121db004471909460c2f69528f Mon Sep 17 00:00:00 2001 From: Måns Rullgård Date: Wed, 2 Dec 2009 14:56:45 +0000 Subject: ARM: NEON optimised H264 16x16, 8x8 pred Originally committed as revision 20704 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264pred.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavcodec/h264pred.c') diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 23db23f09a..74085b929c 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -1172,4 +1172,6 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){ h->pred8x8_add [ HOR_PRED8x8]= pred8x8_horizontal_add_c; h->pred16x16_add[VERT_PRED8x8]= pred16x16_vertical_add_c; h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c; + + if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id); } -- cgit v1.2.3