summaryrefslogtreecommitdiff
path: root/libavcodec/h264pred.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-06-22 19:17:41 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-06-22 19:17:41 +0000
commita815602aa38ca1a6df75c4fb13790a96306d5122 (patch)
treedc5337e29a8eec07f82f35784935ac237ff467f9 /libavcodec/h264pred.c
parent3ad289fca73f97940c4e3750557299ab5683165e (diff)
Reindent after r23716.
Originally committed as revision 23717 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r--libavcodec/h264pred.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index fa139cb58a..296e44b474 100644
--- a/libavcodec/h264pred.c
+++ b/libavcodec/h264pred.c
@@ -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){