diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-12-29 21:23:31 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-12-29 21:23:31 +0000 |
commit | 916393da24307ef7d72f93008dba6ffeef404e32 (patch) | |
tree | 36eda8154a6292b4b62a6f0de70f6c86c75a03b1 /libavcodec/h264pred.c | |
parent | 42a59278cf288ff9a8652a2f34d85a924ffa53f0 (diff) | |
download | ffmpeg-916393da24307ef7d72f93008dba6ffeef404e32.tar.gz |
Whitespace cosmetics.
Originally committed as revision 26153 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r-- | libavcodec/h264pred.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 05a5899979..7edb97192a 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -1264,9 +1264,9 @@ void ff_h264_pred_init(H264PredContext *h, int codec_id){ h->pred4x4[VERT_LEFT_PRED ]= pred4x4_vertical_left_c; h->pred4x4[HOR_UP_PRED ]= pred4x4_horizontal_up_c; if(codec_id != CODEC_ID_VP8) { - h->pred4x4[LEFT_DC_PRED ]= pred4x4_left_dc_c; - h->pred4x4[TOP_DC_PRED ]= pred4x4_top_dc_c; - h->pred4x4[DC_128_PRED ]= pred4x4_128_dc_c; + h->pred4x4[LEFT_DC_PRED ]= pred4x4_left_dc_c; + h->pred4x4[TOP_DC_PRED ]= pred4x4_top_dc_c; + h->pred4x4[DC_128_PRED ]= pred4x4_128_dc_c; } else { h->pred4x4[TM_VP8_PRED ]= pred4x4_tm_vp8_c; h->pred4x4[DC_127_PRED ]= pred4x4_127_dc_c; |