mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 01:25:25 +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
|
#endif
|
||||||
s->qscale = get_bits(&s->gb, 5);
|
s->qscale = get_bits(&s->gb, 5);
|
||||||
|
if(s->qscale==0){
|
||||||
|
fprintf(stderr, "invalid qscale\n");
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
if (s->pict_type == I_TYPE) {
|
if (s->pict_type == I_TYPE) {
|
||||||
code = get_bits(&s->gb, 5);
|
code = get_bits(&s->gb, 5);
|
||||||
|
Loading…
Reference in New Issue
Block a user