Commit 7a474950 authored by Kostya Shishkov's avatar Kostya Shishkov

cosmetics: reindent after last commit

Originally committed as revision 17585 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 77f7156d
...@@ -790,11 +790,11 @@ static int rv34_decode_mv(RV34DecContext *r, int block_type) ...@@ -790,11 +790,11 @@ static int rv34_decode_mv(RV34DecContext *r, int block_type)
if(IS_INTRA(next_bt)) if(IS_INTRA(next_bt))
fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4); fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
else else
for(j = 0; j < 2; j++) for(j = 0; j < 2; j++)
for(i = 0; i < 2; i++) for(i = 0; i < 2; i++)
for(k = 0; k < 2; k++) for(k = 0; k < 2; k++)
for(l = 0; l < 2; l++) for(l = 0; l < 2; l++)
s->current_picture_ptr->motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][k]); s->current_picture_ptr->motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][k]);
if(IS_16X16(next_bt)) //we can use whole macroblock MC if(IS_16X16(next_bt)) //we can use whole macroblock MC
rv34_mc_2mv(r, block_type); rv34_mc_2mv(r, block_type);
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment