[FFmpeg-cvslog] fftools/ffmpeg: do not log to the decoder context

Anton Khirnov git at videolan.org
Thu Jul 28 18:02:04 EEST 2022


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Mon Jun 20 09:53:58 2022 +0200| [ecfdab20e4acd7697f7f37f73b42de3622305aa4] | committer: Anton Khirnov

fftools/ffmpeg: do not log to the decoder context

That should only be done from inside the decoder. Log to NULL instead,
as is the current convention in ffmpeg.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ecfdab20e4acd7697f7f37f73b42de3622305aa4
---

 fftools/ffmpeg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c
index 30df93de2c..4746742c02 100644
--- a/fftools/ffmpeg.c
+++ b/fftools/ffmpeg.c
@@ -259,7 +259,7 @@ void sub2video_update(InputStream *ist, int64_t heartbeat_pts, AVSubtitle *sub)
         num_rects = 0;
     }
     if (sub2video_get_blank_frame(ist) < 0) {
-        av_log(ist->dec_ctx, AV_LOG_ERROR,
+        av_log(NULL, AV_LOG_ERROR,
                "Impossible to get a blank canvas.\n");
         return;
     }
@@ -2324,7 +2324,7 @@ static int transcode_subtitles(InputStream *ist, AVPacket *pkt, int *got_output,
             end = av_rescale(subtitle.pts - ist->prev_sub.subtitle.pts,
                              1000, AV_TIME_BASE);
             if (end < ist->prev_sub.subtitle.end_display_time) {
-                av_log(ist->dec_ctx, AV_LOG_DEBUG,
+                av_log(NULL, AV_LOG_DEBUG,
                        "Subtitle duration reduced from %"PRId32" to %d%s\n",
                        ist->prev_sub.subtitle.end_display_time, end,
                        end <= 0 ? ", dropping it" : "");



More information about the ffmpeg-cvslog mailing list