ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinha...@outlook.com> | Sun Mar 2 00:12:05 2025 +0100| [49c38761f14b2abcc549bcf658778e0aa5cf890b] | committer: Andreas Rheinhardt
avcodec/speedhqenc: Don't log to the private context Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=49c38761f14b2abcc549bcf658778e0aa5cf890b --- libavcodec/speedhqenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/speedhqenc.c b/libavcodec/speedhqenc.c index ac40fd6e75..dda5444434 100644 --- a/libavcodec/speedhqenc.c +++ b/libavcodec/speedhqenc.c @@ -100,13 +100,13 @@ av_cold int ff_speedhq_encode_init(MpegEncContext *s) static AVOnce init_static_once = AV_ONCE_INIT; if (s->width > 65500 || s->height > 65500) { - av_log(s, AV_LOG_ERROR, "SpeedHQ does not support resolutions above 65500x65500\n"); + av_log(s->avctx, AV_LOG_ERROR, "SpeedHQ does not support resolutions above 65500x65500\n"); return AVERROR(EINVAL); } // border is not implemented correctly at the moment, see ticket #10078 if (s->width % 16) { - av_log(s, AV_LOG_ERROR, "width must be a multiple of 16\n"); + av_log(s->avctx, AV_LOG_ERROR, "width must be a multiple of 16\n"); return AVERROR_PATCHWELCOME; } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".