[FFmpeg-cvslog] r17680 - trunk/libavcodec/svq3.c
mru
subversion
Sun Mar 1 13:11:07 CET 2009
Author: mru
Date: Sun Mar 1 13:11:07 2009
New Revision: 17680
Log:
SVQ3: Fix decoding with A32_BITSTREAM_READER
svq3_decode_slice_header() modifies the buffer used by the bitstream
reader. Some of the bitstream readers cache a few bytes of data, which
must be flushed after such a modification. Calling skip_bits_long(gb, 0)
achieves this.
Modified:
trunk/libavcodec/svq3.c
Modified: trunk/libavcodec/svq3.c
==============================================================================
--- trunk/libavcodec/svq3.c Sun Mar 1 13:11:02 2009 (r17679)
+++ trunk/libavcodec/svq3.c Sun Mar 1 13:11:07 2009 (r17680)
@@ -724,6 +724,7 @@ static int svq3_decode_slice_header(H264
memcpy((uint8_t *) &s->gb.buffer[get_bits_count(&s->gb) >> 3],
&s->gb.buffer[s->gb.size_in_bits >> 3], (length - 1));
}
+ skip_bits_long(&s->gb, 0);
}
if ((i = svq3_get_ue_golomb(&s->gb)) == INVALID_VLC || i >= 3){
More information about the ffmpeg-cvslog
mailing list