mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/jacosubdec: Check timeres
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
32447b149f
commit
51f0ab8b12
@ -227,15 +227,18 @@ 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 */
|
||||
ret = ff_bprint_to_codecpar_extradata(st->codecpar, &header);
|
||||
|
Loading…
Reference in New Issue
Block a user