1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-01 16:59:58 +02:00

Reindent after r23716.

Originally committed as revision 23717 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2010-06-22 19:17:41 +00:00
parent 3ad289fca7
commit a815602aa3
2 changed files with 5 additions and 5 deletions

View File

@ -47,7 +47,7 @@ static void ff_h264_pred_init_neon(H264PredContext *h, int codec_id)
h->pred8x8[VERT_PRED8x8 ] = ff_pred8x8_vert_neon;
h->pred8x8[HOR_PRED8x8 ] = ff_pred8x8_hor_neon;
if (codec_id != CODEC_ID_VP8)
h->pred8x8[PLANE_PRED8x8 ] = ff_pred8x8_plane_neon;
h->pred8x8[PLANE_PRED8x8] = ff_pred8x8_plane_neon;
h->pred8x8[DC_128_PRED8x8 ] = ff_pred8x8_128_dc_neon;
if (codec_id != CODEC_ID_RV40 && codec_id != CODEC_ID_VP8) {
h->pred8x8[DC_PRED8x8 ] = ff_pred8x8_dc_neon;

View File

@ -1194,8 +1194,8 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){
h->pred4x4[VERT_PRED ]= pred4x4_vertical_vp8_c;
h->pred4x4[HOR_PRED ]= pred4x4_horizontal_vp8_c;
} else {
h->pred4x4[VERT_PRED ]= pred4x4_vertical_c;
h->pred4x4[HOR_PRED ]= pred4x4_horizontal_c;
h->pred4x4[VERT_PRED ]= pred4x4_vertical_c;
h->pred4x4[HOR_PRED ]= pred4x4_horizontal_c;
}
h->pred4x4[DC_PRED ]= pred4x4_dc_c;
if(codec_id == CODEC_ID_SVQ3)
@ -1208,7 +1208,7 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){
if (codec_id == CODEC_ID_VP8) {
h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_vp8_c;
} else
h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_c;
h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_c;
h->pred4x4[HOR_UP_PRED ]= pred4x4_horizontal_up_c;
h->pred4x4[LEFT_DC_PRED ]= pred4x4_left_dc_c;
h->pred4x4[TOP_DC_PRED ]= pred4x4_top_dc_c;
@ -1249,7 +1249,7 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){
h->pred8x8[VERT_PRED8x8 ]= pred8x8_vertical_c;
h->pred8x8[HOR_PRED8x8 ]= pred8x8_horizontal_c;
if (codec_id != CODEC_ID_VP8) {
h->pred8x8[PLANE_PRED8x8 ]= pred8x8_plane_c;
h->pred8x8[PLANE_PRED8x8]= pred8x8_plane_c;
} else
h->pred8x8[PLANE_PRED8x8]= pred8x8_tm_vp8_c;
if(codec_id != CODEC_ID_RV40 && codec_id != CODEC_ID_VP8){