Mercurial > libavcodec.hg
changeset 7779:5b54bcbae698 libavcodec
theoradec: cosmetics: indentation
author | aurel |
---|---|
date | Wed, 03 Sep 2008 00:19:08 +0000 |
parents | e31b0b920475 |
children | b35486af268e |
files | vp3.c |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/vp3.c Wed Sep 03 00:17:11 2008 +0000 +++ b/vp3.c Wed Sep 03 00:19:08 2008 +0000 @@ -1051,15 +1051,15 @@ if (s->coded_fragment_list[l] == s->macroblock_fragments[6*current_macroblock + k]) break; if (l < s->coded_fragment_list_index) { - if (coding_mode == 0) { - motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; - motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; - } else { - motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)]; - motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)]; - } - last_motion_x = motion_x[k]; - last_motion_y = motion_y[k]; + if (coding_mode == 0) { + motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; + motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; + } else { + motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)]; + motion_y[k] = fixed_motion_vector_table[get_bits(gb, 6)]; + } + last_motion_x = motion_x[k]; + last_motion_y = motion_y[k]; } else { motion_x[k] = 0; motion_y[k] = 0;