diff options
author | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-10-31 00:38:30 -0400 |
---|---|---|
committer | Ganesh Ajjanagadde <gajjanagadde@gmail.com> | 2015-11-03 16:22:33 -0500 |
commit | 03f5bcd92123f632ef3f24f3acde050431423099 (patch) | |
tree | 19bc8a4abc2fc4b213064879d60d05ed2029a1c5 | |
parent | a97f1e7bd0850dd768516b44822bbdde709aa24e (diff) | |
download | ffmpeg-03f5bcd92123f632ef3f24f3acde050431423099.tar.gz |
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>
-rw-r--r-- | libavfilter/vf_rotate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_rotate.c b/libavfilter/vf_rotate.c index f12a103bf9..36c4a7a32b 100644 --- a/libavfilter/vf_rotate.c +++ b/libavfilter/vf_rotate.c @@ -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; |