comparison h264pred.c @ 10623:f52d07b169b4 libavcodec

ARM: NEON optimised H264 16x16, 8x8 pred
author mru
date Wed, 02 Dec 2009 14:56:45 +0000
parents 350827602d26
children 7dd2a45249a9
comparison
equal deleted inserted replaced
10622:2474aceea736 10623:f52d07b169b4
1170 h->pred8x8l_add [ HOR_PRED ]= pred8x8l_horizontal_add_c; 1170 h->pred8x8l_add [ HOR_PRED ]= pred8x8l_horizontal_add_c;
1171 h->pred8x8_add [VERT_PRED8x8]= pred8x8_vertical_add_c; 1171 h->pred8x8_add [VERT_PRED8x8]= pred8x8_vertical_add_c;
1172 h->pred8x8_add [ HOR_PRED8x8]= pred8x8_horizontal_add_c; 1172 h->pred8x8_add [ HOR_PRED8x8]= pred8x8_horizontal_add_c;
1173 h->pred16x16_add[VERT_PRED8x8]= pred16x16_vertical_add_c; 1173 h->pred16x16_add[VERT_PRED8x8]= pred16x16_vertical_add_c;
1174 h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c; 1174 h->pred16x16_add[ HOR_PRED8x8]= pred16x16_horizontal_add_c;
1175 } 1175
1176 if (ARCH_ARM) ff_h264_pred_init_arm(h, codec_id);
1177 }