]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_showinfo.c
Merge commit '3f5c99fcbb2c366d7bdef8500c19f43a33bdb6b9'
[ffmpeg] / libavfilter / vf_showinfo.c
index 5125944798489a9a8bfafd3909ac169302b7d169..464d92daac3c6325524095bd813b9db46acdeb45 100644 (file)
@@ -166,10 +166,9 @@ static int config_props(AVFilterContext *ctx, AVFilterLink *link, int is_out)
 {
 
     av_log(ctx, AV_LOG_INFO, "config %s time_base: %d/%d, frame_rate: %d/%d\n",
-           is_out ? "out" :"in",
+           is_out ? "out" : "in",
            link->time_base.num, link->time_base.den,
-           link->frame_rate.num, link->frame_rate.den
-    );
+           link->frame_rate.num, link->frame_rate.den);
 
     return 0;
 }
@@ -188,10 +187,10 @@ static int config_props_out(AVFilterLink *link)
 
 static const AVFilterPad avfilter_vf_showinfo_inputs[] = {
     {
-        .name         = "default",
-        .type         = AVMEDIA_TYPE_VIDEO,
-        .filter_frame = filter_frame,
-        .config_props  = config_props_in,
+        .name             = "default",
+        .type             = AVMEDIA_TYPE_VIDEO,
+        .filter_frame     = filter_frame,
+        .config_props     = config_props_in,
     },
     { NULL }
 };