Browse Source

avfilter/vf_rotate: correct log message

There seems to be some typos in the log messages that are fixed by this.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Ganesh Ajjanagadde <gajjanagadde@gmail.com>
tags/n3.0
Ganesh Ajjanagadde 10 years ago
parent
commit
03f5bcd921
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavfilter/vf_rotate.c

+ 2
- 2
libavfilter/vf_rotate.c View File

@@ -239,12 +239,12 @@ static int config_props(AVFilterLink *outlink)
func1_names, func1, NULL, NULL, rot, 0, ctx);
rot->var_values[VAR_OUT_W] = rot->var_values[VAR_OW] = res;
rot->outw = res + 0.5;
SET_SIZE_EXPR(outh, "out_w");
SET_SIZE_EXPR(outh, "out_h");
rot->var_values[VAR_OUT_H] = rot->var_values[VAR_OH] = res;
rot->outh = res + 0.5;

/* evaluate the width again, as it may depend on the evaluated output height */
SET_SIZE_EXPR(outw, "out_h");
SET_SIZE_EXPR(outw, "out_w");
rot->var_values[VAR_OUT_W] = rot->var_values[VAR_OW] = res;
rot->outw = res + 0.5;



Loading…
Cancel
Save