Commit 1aeb890f authored by aurel's avatar aurel

theoradec: cosmetics: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15167 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5eed38de
...@@ -1051,15 +1051,15 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb) ...@@ -1051,15 +1051,15 @@ static int unpack_vectors(Vp3DecodeContext *s, GetBitContext *gb)
if (s->coded_fragment_list[l] == s->macroblock_fragments[6*current_macroblock + k]) if (s->coded_fragment_list[l] == s->macroblock_fragments[6*current_macroblock + k])
break; break;
if (l < s->coded_fragment_list_index) { if (l < s->coded_fragment_list_index) {
if (coding_mode == 0) { if (coding_mode == 0) {
motion_x[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)]; 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)]; motion_y[k] = motion_vector_table[get_vlc2(gb, s->motion_vector_vlc.table, 6, 2)];
} else { } else {
motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)]; motion_x[k] = fixed_motion_vector_table[get_bits(gb, 6)];
motion_y[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_x = motion_x[k];
last_motion_y = motion_y[k]; last_motion_y = motion_y[k];
} else { } else {
motion_x[k] = 0; motion_x[k] = 0;
motion_y[k] = 0; motion_y[k] = 0;
......
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