[SCM] libav/experimental: theoradec: cosmetics: indentation
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:29:19 UTC 2013
The following commit has been merged in the experimental branch:
commit 4834eb191c21af057913955cd7d3f92a685219b9
Author: Aurelien Jacobs <aurel at gnuage.org>
Date: Wed Sep 3 00:19:08 2008 +0000
theoradec: cosmetics: indentation
Originally committed as revision 15167 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 4e077c4..ff0b5b6 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -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])
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;
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list