diff options
author | Niklas Haas <git@haasn.dev> | 2025-08-11 15:54:55 +0200 |
---|---|---|
committer | Niklas Haas <ffmpeg@haasn.dev> | 2025-08-12 09:01:39 +0000 |
commit | 7751f261deb36ff96978b44c545b279e2587e5ca (patch) | |
tree | a0e613361e3a84bc588564a1f7197e6d78c23c98 | |
parent | dee56511b051e8177164e04ed5b044d8e7d0dc1e (diff) | |
download | ffmpeg-7751f261deb36ff96978b44c545b279e2587e5ca.tar.gz |
avfilter/vf_scdet: use AVFilterContext for logging
-rw-r--r-- | libavfilter/vf_scdet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_scdet.c b/libavfilter/vf_scdet.c index 8aa2f0a73b..6b1de13610 100644 --- a/libavfilter/vf_scdet.c +++ b/libavfilter/vf_scdet.c @@ -164,7 +164,7 @@ static int activate(AVFilterContext *ctx) set_meta(s, frame, "lavfi.scd.score", buf); if (s->scene_score >= s->threshold) { - av_log(s, AV_LOG_INFO, "lavfi.scd.score: %.3f, lavfi.scd.time: %s\n", + av_log(ctx, AV_LOG_INFO, "lavfi.scd.score: %.3f, lavfi.scd.time: %s\n", s->scene_score, av_ts2timestr(frame->pts, &inlink->time_base)); set_meta(s, frame, "lavfi.scd.time", av_ts2timestr(frame->pts, &inlink->time_base)); |