Commit 2d0b4bc4 authored by Michael Niedermayer's avatar Michael Niedermayer

rv34: Fix check_slice_end() handling of 0 bits left case

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6c249392
......@@ -1337,7 +1337,7 @@ static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
if(r->s.mb_skip_run > 1)
return 0;
bits = get_bits_left(&s->gb);
if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
if(bits <= 0 || (bits < 8 && !show_bits(&s->gb, bits)))
return 1;
return 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