diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-12-18 11:01:38 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-12-18 11:01:38 +0000 |
commit | 2a5a9c28151dec148eb66c4c155ebbc462f61629 (patch) | |
tree | a2683f593a8577fc298f9a98dce49fa7e27c2769 /libavcodec | |
parent | 364df7b7b9082cd0aad937e656961f8b2e3153f4 (diff) | |
download | ffmpeg-2a5a9c28151dec148eb66c4c155ebbc462f61629.tar.gz |
10l, svq3 didnt set h->cbp, this broke decoding a little.
Originally committed as revision 16214 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/svq3.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index f6fe071657..20512253df 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -681,6 +681,7 @@ static int svq3_decode_mb(H264Context *h, unsigned int mb_type) } } + h->cbp= cbp; s->current_picture.mb_type[mb_xy] = mb_type; if (IS_INTRA(mb_type)) { |