comparison arm/h264pred_init_arm.c @ 11919:f021be0e837c libavcodec

Reindent after r23716.
author rbultje
date Tue, 22 Jun 2010 19:17:41 +0000
parents 823f332655e8
children
comparison
equal deleted inserted replaced
11918:823f332655e8 11919:f021be0e837c
45 static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id) 45 static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id)
46 { 46 {
47 h->pred8x8[VERT_PRED8x8 ] = ff_pred8x8_vert_neon; 47 h->pred8x8[VERT_PRED8x8 ] = ff_pred8x8_vert_neon;
48 h->pred8x8[HOR_PRED8x8 ] = ff_pred8x8_hor_neon; 48 h->pred8x8[HOR_PRED8x8 ] = ff_pred8x8_hor_neon;
49 if (codec_id != CODEC_ID_VP8) 49 if (codec_id != CODEC_ID_VP8)
50 h->pred8x8[PLANE_PRED8x8 ] = ff_pred8x8_plane_neon; 50 h->pred8x8[PLANE_PRED8x8] = ff_pred8x8_plane_neon;
51 h->pred8x8[DC_128_PRED8x8 ] = ff_pred8x8_128_dc_neon; 51 h->pred8x8[DC_128_PRED8x8 ] = ff_pred8x8_128_dc_neon;
52 if (codec_id != CODEC_ID_RV40 && codec_id != CODEC_ID_VP8) { 52 if (codec_id != CODEC_ID_RV40 && codec_id != CODEC_ID_VP8) {
53 h->pred8x8[DC_PRED8x8 ] = ff_pred8x8_dc_neon; 53 h->pred8x8[DC_PRED8x8 ] = ff_pred8x8_dc_neon;
54 h->pred8x8[LEFT_DC_PRED8x8] = ff_pred8x8_left_dc_neon; 54 h->pred8x8[LEFT_DC_PRED8x8] = ff_pred8x8_left_dc_neon;
55 h->pred8x8[TOP_DC_PRED8x8 ] = ff_pred8x8_top_dc_neon; 55 h->pred8x8[TOP_DC_PRED8x8 ] = ff_pred8x8_top_dc_neon;