[FFmpeg-soc] [soc]: r3868 - dirac/libavcodec/diracdec.c
conrad
subversion at mplayerhq.hu
Thu Dec 4 22:16:25 CET 2008
Author: conrad
Date: Thu Dec 4 22:16:25 2008
New Revision: 3868
Log:
Add missing byte align
Modified:
dirac/libavcodec/diracdec.c
Modified: dirac/libavcodec/diracdec.c
==============================================================================
--- dirac/libavcodec/diracdec.c (original)
+++ dirac/libavcodec/diracdec.c Thu Dec 4 22:16:25 2008
@@ -239,8 +239,10 @@ static void decode_component(DiracContex
/* Unpack all other subbands at all levels. */
for (level = 1; level <= s->decoding.wavelet_depth; level++) {
- for (orientation = 1; orientation <= subband_hh; orientation++)
+ for (orientation = 1; orientation <= subband_hh; orientation++) {
+ align_get_bits(gb);
subband(s, coeffs, level, orientation);
+ }
}
}
More information about the FFmpeg-soc
mailing list