mirror of https://git.ffmpeg.org/ffmpeg.git
concatdec: fix file_start_time calculation regression
Fixes ticket #4924. Found-by: Jaroslav Šnajdr <jsnajdr@gmail.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
01790484c1
commit
df239b7619
|
@ -314,7 +314,7 @@ static int open_file(AVFormatContext *avf, unsigned fileno)
|
||||||
file->start_time = !fileno ? 0 :
|
file->start_time = !fileno ? 0 :
|
||||||
cat->files[fileno - 1].start_time +
|
cat->files[fileno - 1].start_time +
|
||||||
cat->files[fileno - 1].duration;
|
cat->files[fileno - 1].duration;
|
||||||
file->file_start_time = (avf->start_time == AV_NOPTS_VALUE) ? 0 : avf->start_time;
|
file->file_start_time = (cat->avf->start_time == AV_NOPTS_VALUE) ? 0 : cat->avf->start_time;
|
||||||
file->file_inpoint = (file->inpoint == AV_NOPTS_VALUE) ? file->file_start_time : file->inpoint;
|
file->file_inpoint = (file->inpoint == AV_NOPTS_VALUE) ? file->file_start_time : file->inpoint;
|
||||||
if ((ret = match_streams(avf)) < 0)
|
if ((ret = match_streams(avf)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
Loading…
Reference in New Issue