Mercurial > libavcodec.hg
changeset 2378:1f56314b3770 libavcodec
rv10 thread safety fix / rv10 ffplay fix
author | michael |
---|---|
date | Mon, 06 Dec 2004 17:21:17 +0000 |
parents | 9214c91cdfb7 |
children | a9aae760463e |
files | rv10.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/rv10.c Sun Dec 05 23:26:43 2004 +0000 +++ b/rv10.c Mon Dec 06 17:21:17 2004 +0000 @@ -276,9 +276,8 @@ /* read RV 1.0 compatible frame header */ static int rv10_decode_picture_header(MpegEncContext *s) { - int mb_count, pb_frame, marker, full_frame, unk; + int mb_count, pb_frame, marker, unk, mb_xy; - full_frame= s->avctx->slice_count==1; //printf("ff:%d\n", full_frame); marker = get_bits(&s->gb, 1); @@ -321,7 +320,9 @@ } /* if multiple packets per frame are sent, the position at which to display the macro blocks is coded here */ - if ((!full_frame) || show_bits(&s->gb, 12)==0) { + + mb_xy= s->mb_x + s->mb_y*s->mb_width; + if(show_bits(&s->gb, 12)==0 || (mb_xy && mb_xy < s->mb_num)){ s->mb_x = get_bits(&s->gb, 6); /* mb_x */ s->mb_y = get_bits(&s->gb, 6); /* mb_y */ mb_count = get_bits(&s->gb, 12);