[FFmpeg-soc] [soc]: r5627 - libavfilter/vf_rotate.c

stefano subversion at mplayerhq.hu
Sun Feb 21 11:28:28 CET 2010


Author: stefano
Date: Sun Feb 21 11:28:27 2010
New Revision: 5627

Log:
Make it output slices with the correct size of pad->output_h.

Modified:
   libavfilter/vf_rotate.c

Modified: libavfilter/vf_rotate.c
==============================================================================
--- libavfilter/vf_rotate.c	Sun Feb 21 01:14:39 2010	(r5626)
+++ libavfilter/vf_rotate.c	Sun Feb 21 11:28:27 2010	(r5627)
@@ -154,7 +154,7 @@ static void end_frame(AVFilterLink *link
             }
 
     avfilter_unref_pic(in);
-    avfilter_draw_slice(link->dst->outputs[0], 0, rot->output_w, 1);
+    avfilter_draw_slice(link->dst->outputs[0], 0, rot->output_h, 1);
     avfilter_end_frame(link->dst->outputs[0]);
     avfilter_unref_pic(out);
 }


More information about the FFmpeg-soc mailing list