mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/jacosubdec: Check timeres
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 51f0ab8b12
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
4b257fba50
commit
61af3a5f2a
|
@ -229,14 +229,17 @@ static int jacosub_read_header(AVFormatContext *s)
|
|||
}
|
||||
av_bprintf(&header, "#S %s", p);
|
||||
break;
|
||||
case 'T': // ...but must be placed after TIMERES
|
||||
jacosub->timeres = strtol(p, NULL, 10);
|
||||
if (!jacosub->timeres)
|
||||
case 'T': { // ...but must be placed after TIMERES
|
||||
int64_t timeres = strtol(p, NULL, 10);
|
||||
if (timeres <= 0 || timeres > UINT32_MAX) {
|
||||
jacosub->timeres = 30;
|
||||
else
|
||||
} else {
|
||||
jacosub->timeres = timeres;
|
||||
av_bprintf(&header, "#T %s", p);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* general/essential directives in the extradata */
|
||||
|
|
Loading…
Reference in New Issue