This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

The following commit(s) were added to refs/heads/master by this push:
     new 107a309f3c fftools/ffmpeg_filter: fix the incomplete printing of 
reason for video filter graph reconfiguration
107a309f3c is described below

commit 107a309f3cfa83b2958367295ce74f7f969f9374
Author:     nyanmisaka <[email protected]>
AuthorDate: Wed Mar 25 14:54:12 2026 +0800
Commit:     Marton Balint <[email protected]>
CommitDate: Sun Mar 29 09:34:23 2026 +0000

    fftools/ffmpeg_filter: fix the incomplete printing of reason for video 
filter graph reconfiguration
    
    "Reconfiguring filter graph because video parameters changed to 
yuv420p10le(pc, bt709), 1920x1080, unspecified alph"
    
    Fixup f07573f
    
    Adding a missing space fixed this.
---
 fftools/ffmpeg_filter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c
index d6c479dc11..e8ae021cc0 100644
--- a/fftools/ffmpeg_filter.c
+++ b/fftools/ffmpeg_filter.c
@@ -3181,7 +3181,7 @@ static int send_frame(FilterGraph *fg, FilterGraphThread 
*fgt,
                 const char *color_space_name = 
av_color_space_name(frame->colorspace);
                 const char *color_range_name = 
av_color_range_name(frame->color_range);
                 const char *alpha_mode = av_alpha_mode_name(frame->alpha_mode);
-                av_bprintf(&reason, "video parameters changed to %s(%s, %s), 
%dx%d, %s alpha,",
+                av_bprintf(&reason, "video parameters changed to %s(%s, %s), 
%dx%d, %s alpha, ",
                         unknown_if_null(pixel_format_name), 
unknown_if_null(color_range_name),
                         unknown_if_null(color_space_name), frame->width, 
frame->height,
                         unknown_if_null(alpha_mode));

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to