mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
check for qscale==0 (fixes 1/0 on one corrupted stream)
Originally committed as revision 1574 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
dce778e0ea
commit
ae2d2d6c41
@ -1228,6 +1228,10 @@ return -1;
|
||||
}
|
||||
#endif
|
||||
s->qscale = get_bits(&s->gb, 5);
|
||||
if(s->qscale==0){
|
||||
fprintf(stderr, "invalid qscale\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (s->pict_type == I_TYPE) {
|
||||
code = get_bits(&s->gb, 5);
|
||||
|
Loading…
Reference in New Issue
Block a user