This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.1 in repository ffmpeg.
commit 68a3f37058168009e06248d51283cc9ea0a78b86 Author: Michael Niedermayer <[email protected]> AuthorDate: Sun Jun 14 21:35:25 2026 +0200 Commit: Michael Niedermayer <[email protected]> CommitDate: Mon Jun 15 23:57:23 2026 +0200 avfilter/avf_showcwt: fix DIRECTION_RL EOF fill clearing the wrong columns Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 5f13df1b518203036c9c3436a64eb70c8d409e7c) Signed-off-by: Michael Niedermayer <[email protected]> --- libavfilter/avf_showcwt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/avf_showcwt.c b/libavfilter/avf_showcwt.c index a4cdc6be5a..6ddeff6753 100644 --- a/libavfilter/avf_showcwt.c +++ b/libavfilter/avf_showcwt.c @@ -1141,7 +1141,7 @@ static int output_frame(AVFilterContext *ctx) case DIRECTION_RL: for (int p = 0; p < nb_planes; p++) { ptrdiff_t linesize = s->outpicref->linesize[p]; - const int size = s->w - s->pos; + const int size = FFMIN(s->pos + 1, s->sono_size); const int fill = p > 0 && p < 3 ? 128 : 0; for (int y = 0; y < s->h; y++) { _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
