mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
avformat/vobsub: use av_make_q().
This commit is contained in:
parent
6a3a7d7af1
commit
b7dd250b75
@ -757,7 +757,7 @@ static int vobsub_read_header(AVFormatContext *s)
|
||||
break;
|
||||
}
|
||||
timestamp = (hh*3600LL + mm*60LL + ss) * 1000LL + ms + delay;
|
||||
timestamp = av_rescale_q(timestamp, (AVRational){1,1000}, st->time_base);
|
||||
timestamp = av_rescale_q(timestamp, av_make_q(1, 1000), st->time_base);
|
||||
|
||||
sub = ff_subtitles_queue_insert(&vobsub->q[s->nb_streams - 1], "", 0, 0);
|
||||
if (!sub) {
|
||||
|
Loading…
Reference in New Issue
Block a user