[FFmpeg-cvslog] fftools/ffmpeg: update the reported timestamp at the end
Anton Khirnov
git at videolan.org
Thu Dec 14 21:23:15 EET 2023
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Dec 13 20:10:38 2023 +0100| [2305091a3a7b3b48a044b975880a6375de4baecc] | committer: Anton Khirnov
fftools/ffmpeg: update the reported timestamp at the end
Reported-by: microchip
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2305091a3a7b3b48a044b975880a6375de4baecc
---
fftools/ffmpeg.c | 2 +-
fftools/ffmpeg_sched.c | 13 ++++++++-----
fftools/ffmpeg_sched.h | 2 +-
3 files changed, 10 insertions(+), 7 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++) {
diff --git a/fftools/ffmpeg_sched.c b/fftools/ffmpeg_sched.c
index f17d5768c3..ca440035e2 100644
--- a/fftools/ffmpeg_sched.c
+++ b/fftools/ffmpeg_sched.c
@@ -423,7 +423,7 @@ static void task_init(Scheduler *sch, SchTask *task, enum SchedulerNodeType type
task->func_arg = func_arg;
}
-static int64_t trailing_dts(const Scheduler *sch)
+static int64_t trailing_dts(const Scheduler *sch, int count_finished)
{
int64_t min_dts = INT64_MAX;
@@ -433,7 +433,7 @@ static int64_t trailing_dts(const Scheduler *sch)
for (unsigned j = 0; j < mux->nb_streams; j++) {
const SchMuxStream *ms = &mux->streams[j];
- if (ms->source_finished)
+ if (ms->source_finished && !count_finished)
continue;
if (ms->last_dts == AV_NOPTS_VALUE)
return AV_NOPTS_VALUE;
@@ -445,7 +445,7 @@ static int64_t trailing_dts(const Scheduler *sch)
return min_dts == INT64_MAX ? AV_NOPTS_VALUE : min_dts;
}
-int sch_stop(Scheduler *sch)
+int sch_stop(Scheduler *sch, int64_t *finish_ts)
{
int ret = 0, err;
@@ -492,6 +492,9 @@ int sch_stop(Scheduler *sch)
ret = err_merge(ret, err);
}
+ if (finish_ts)
+ *finish_ts = trailing_dts(sch, 1);
+
return ret;
}
@@ -502,7 +505,7 @@ void sch_free(Scheduler **psch)
if (!sch)
return;
- sch_stop(sch);
+ sch_stop(sch, NULL);
for (unsigned i = 0; i < sch->nb_demux; i++) {
SchDemux *d = &sch->demux[i];
@@ -1200,7 +1203,7 @@ static void schedule_update_locked(Scheduler *sch)
if (atomic_load(&sch->terminate))
return;
- dts = trailing_dts(sch);
+ dts = trailing_dts(sch, 0);
atomic_store(&sch->last_dts, dts);
diff --git a/fftools/ffmpeg_sched.h b/fftools/ffmpeg_sched.h
index 94bbd30e98..b167d8d158 100644
--- a/fftools/ffmpeg_sched.h
+++ b/fftools/ffmpeg_sched.h
@@ -127,7 +127,7 @@ Scheduler *sch_alloc(void);
void sch_free(Scheduler **sch);
int sch_start(Scheduler *sch);
-int sch_stop(Scheduler *sch);
+int sch_stop(Scheduler *sch, int64_t *finish_ts);
/**
* Wait until transcoding terminates or the specified timeout elapses.
More information about the ffmpeg-cvslog
mailing list