Commit 956c4746 authored by michael's avatar michael

1/0 fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@7658 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1046f91b
...@@ -729,7 +729,7 @@ retry: ...@@ -729,7 +729,7 @@ retry:
decode_slice(s); decode_slice(s);
while(s->mb_y<s->mb_height){ while(s->mb_y<s->mb_height){
if(s->msmpeg4_version){ if(s->msmpeg4_version){
if(s->mb_x!=0 || (s->mb_y%s->slice_height)!=0 || get_bits_count(&s->gb) > s->gb.size_in_bits) if(s->slice_height==0 || s->mb_x!=0 || (s->mb_y%s->slice_height)!=0 || get_bits_count(&s->gb) > s->gb.size_in_bits)
break; break;
}else{ }else{
if(ff_h263_resync(s)<0) if(ff_h263_resync(s)<0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment