mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
better padding bug detection
Originally committed as revision 1139 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
75460b0ce5
commit
8671359bfc
@ -251,7 +251,7 @@ static int decode_slice(MpegEncContext *s){
|
||||
|
||||
if(bits_left==0 || bits_left>8){
|
||||
s->padding_bug_score++;
|
||||
} else {
|
||||
} else if(bits_left != 1){
|
||||
int v= show_bits(&s->gb, 8);
|
||||
v|= 0x7F >> (7-(bits_count&7));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user