Re: [FFmpeg-devel] [PATCH 2/4] avfilter/vf_rotate: correct log message

2015-11-03 Thread Ganesh Ajjanagadde
On Sun, Nov 1, 2015 at 6:38 PM, Michael Niedermayer
 wrote:
> On Sat, Oct 31, 2015 at 10:47:55AM -0400, Ganesh Ajjanagadde wrote:
>> There seems to be some typos in the log messages that are fixed by this.
>
> probably ok

Been 2 days and no objections, pushed.
Thanks.

>
> [...]
> --
> Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
>
> He who knows, does not speak. He who speaks, does not know. -- Lao Tsu
>
> ___
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


Re: [FFmpeg-devel] [PATCH 2/4] avfilter/vf_rotate: correct log message

2015-11-01 Thread Michael Niedermayer
On Sat, Oct 31, 2015 at 10:47:55AM -0400, Ganesh Ajjanagadde wrote:
> There seems to be some typos in the log messages that are fixed by this.

probably ok

[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

He who knows, does not speak. He who speaks, does not know. -- Lao Tsu


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH 2/4] avfilter/vf_rotate: correct log message

2015-10-31 Thread Ganesh Ajjanagadde
There seems to be some typos in the log messages that are fixed by this.

Signed-off-by: Ganesh Ajjanagadde 
---
 libavfilter/vf_rotate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vf_rotate.c b/libavfilter/vf_rotate.c
index d5e01e2..33acea6 100644
--- a/libavfilter/vf_rotate.c
+++ b/libavfilter/vf_rotate.c
@@ -238,12 +238,12 @@ static int config_props(AVFilterLink *outlink)
 SET_SIZE_EXPR(outw, "out_w");
 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;
 
-- 
2.6.2

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel