diff options
author | Stefan Gehrer <stefan.gehrer@gmx.de> | 2009-02-10 20:51:35 +0000 |
---|---|---|
committer | Stefan Gehrer <stefan.gehrer@gmx.de> | 2009-02-10 20:51:35 +0000 |
commit | b9fce052053b230745c7a4dd097e93b03f94af71 (patch) | |
tree | 83d3082931ec848efd8d0b9b8d5ac575cf6b80a4 /libavcodec/cavsdec.c | |
parent | 4ca6f4b29c23747a6ea9b3e6151f254d0fa2d0d9 (diff) | |
download | ffmpeg-b9fce052053b230745c7a4dd097e93b03f94af71.tar.gz |
fix multiple slices per frame
Originally committed as revision 17137 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cavsdec.c')
-rw-r--r-- | libavcodec/cavsdec.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/libavcodec/cavsdec.c b/libavcodec/cavsdec.c index 9e49589156..5f274a4446 100644 --- a/libavcodec/cavsdec.c +++ b/libavcodec/cavsdec.c @@ -415,6 +415,9 @@ static inline int decode_slice_header(AVSContext *h, GetBitContext *gb) { if(h->stc > 0xAF) av_log(h->s.avctx, AV_LOG_ERROR, "unexpected start code 0x%02x\n", h->stc); h->mby = h->stc; + + /* mark top macroblocks as unavailable */ + h->flags &= ~(B_AVAIL|C_AVAIL); if((h->mby == 0) && (!h->qp_fixed)){ h->qp_fixed = get_bits1(gb); h->qp = get_bits(gb,6); @@ -431,6 +434,9 @@ static inline int decode_slice_header(AVSContext *h, GetBitContext *gb) { static inline void check_for_slice(AVSContext *h) { GetBitContext *gb = &h->s.gb; int align; + + if(h->mbx) + return; align = (-get_bits_count(gb)) & 7; if((show_bits_long(gb,24+align) & 0xFFFFFF) == 0x000001) { skip_bits_long(gb,24+align); @@ -525,13 +531,14 @@ static int decode_pic(AVSContext *h) { } else { h->alpha_offset = h->beta_offset = 0; } - check_for_slice(h); if(h->pic_type == FF_I_TYPE) { do { + check_for_slice(h); decode_mb_i(h, 0); } while(ff_cavs_next_mb(h)); } else if(h->pic_type == FF_P_TYPE) { do { + check_for_slice(h); if(h->skip_mode_flag) { skip_count = get_ue_golomb(&s->gb); while(skip_count--) { @@ -539,6 +546,7 @@ static int decode_pic(AVSContext *h) { if(!ff_cavs_next_mb(h)) goto done; } + check_for_slice(h); mb_type = get_ue_golomb(&s->gb) + P_16X16; } else mb_type = get_ue_golomb(&s->gb) + P_SKIP; @@ -549,6 +557,7 @@ static int decode_pic(AVSContext *h) { } while(ff_cavs_next_mb(h)); } else { /* FF_B_TYPE */ do { + check_for_slice(h); if(h->skip_mode_flag) { skip_count = get_ue_golomb(&s->gb); while(skip_count--) { @@ -556,6 +565,7 @@ static int decode_pic(AVSContext *h) { if(!ff_cavs_next_mb(h)) goto done; } + check_for_slice(h); mb_type = get_ue_golomb(&s->gb) + B_DIRECT; } else mb_type = get_ue_golomb(&s->gb) + B_SKIP; |