[FFmpeg-soc] [soc]: r4149 - libavfilter/vf_drawbox.c

stefano subversion at mplayerhq.hu
Mon Mar 2 23:19:01 CET 2009


Author: stefano
Date: Mon Mar  2 23:19:00 2009
New Revision: 4149

Log:
Apply whitespace cosmetics.

Modified:
   libavfilter/vf_drawbox.c

Modified: libavfilter/vf_drawbox.c
==============================================================================
--- libavfilter/vf_drawbox.c	Mon Mar  2 21:07:15 2009	(r4148)
+++ libavfilter/vf_drawbox.c	Mon Mar  2 23:19:00 2009	(r4149)
@@ -50,9 +50,9 @@ static box_color colors[] =
 
 typedef struct
 {
-    int x,y,w,h;
+    int x, y, w, h;
     box_color color;
-    int vsub,hsub;   //< chroma subsampling
+    int vsub, hsub;   //< chroma subsampling
 } BoxContext;
 
 static void box_strlwr(char *str)
@@ -126,7 +126,7 @@ static void start_frame(AVFilterLink *li
 
 static void draw_box(AVFilterPicRef *pic, BoxContext* context, box_color color)
 {
-    int x,y;
+    int x, y;
     int channel;
     unsigned char *row[4];
     int xb = context->x;
@@ -152,7 +152,7 @@ static void draw_box(AVFilterPicRef *pic
 static void end_frame(AVFilterLink *link)
 {
     BoxContext *context = link->dst->priv;
-    AVFilterLink* output = link->dst->outputs[0];
+    AVFilterLink *output = link->dst->outputs[0];
     AVFilterPicRef *pic = link->cur_pic;
 
     draw_box(pic,context,context->color);



More information about the FFmpeg-soc mailing list