diff options
author | Anton Khirnov <anton@khirnov.net> | 2023-12-13 20:10:38 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2023-12-14 20:16:54 +0100 |
commit | 2305091a3a7b3b48a044b975880a6375de4baecc (patch) | |
tree | d016ca9ddbc4ae2b6e330d1ae624628886e5488a /fftools/ffmpeg.c | |
parent | 98d706b8185432294617ca5b1024ea73bc248607 (diff) | |
download | ffmpeg-2305091a3a7b3b48a044b975880a6375de4baecc.tar.gz |
fftools/ffmpeg: update the reported timestamp at the end
Reported-by: microchip
Diffstat (limited to 'fftools/ffmpeg.c')
-rw-r--r-- | fftools/ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 1b2a15750b..53df200d1a 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -941,7 +941,7 @@ static int transcode(Scheduler *sch) print_report(0, timer_start, cur_time, transcode_ts); } - ret = sch_stop(sch); + ret = sch_stop(sch, &transcode_ts); /* write the trailer if needed */ for (i = 0; i < nb_output_files; i++) { |