mirror of https://git.ffmpeg.org/ffmpeg.git
concatdec: fix broken file_inpoint calculation
Should fix ticket #4765. Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
ef8e5a61c8
commit
0860016529
|
@ -315,7 +315,7 @@ static int open_file(AVFormatContext *avf, unsigned fileno)
|
|||
cat->files[fileno - 1].start_time +
|
||||
cat->files[fileno - 1].duration;
|
||||
file->file_start_time = (avf->start_time == AV_NOPTS_VALUE) ? 0 : avf->start_time;
|
||||
file->file_inpoint = (file->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)
|
||||
return ret;
|
||||
if (file->inpoint != AV_NOPTS_VALUE) {
|
||||
|
|
Loading…
Reference in New Issue