[FFmpeg-soc] [soc]: r317 - in libavfilter: vf_crop.c vo_sdl.c

koorogi subversion at mplayerhq.hu
Thu Jul 5 23:07:56 CEST 2007


Author: koorogi
Date: Thu Jul  5 23:07:55 2007
New Revision: 317

Log:
cosmetic: vertical alignment



Modified:
   libavfilter/vf_crop.c
   libavfilter/vo_sdl.c

Modified: libavfilter/vf_crop.c
==============================================================================
--- libavfilter/vf_crop.c	(original)
+++ libavfilter/vf_crop.c	Thu Jul  5 23:07:55 2007
@@ -26,7 +26,7 @@
 
 typedef struct
 {
-    int x, y, w, h;
+    int  x,  y,  w,  h;
     int cx, cy, cw, ch;
 } CropContext;
 

Modified: libavfilter/vo_sdl.c
==============================================================================
--- libavfilter/vo_sdl.c	(original)
+++ libavfilter/vo_sdl.c	Thu Jul  5 23:07:55 2007
@@ -121,11 +121,11 @@ AVFilter vo_sdl =
     .init      = init,
     .uninit    = uninit,
 
-    .inputs    = (AVFilterPad[]) {{ .name        = "default",
-                                    .type        = AV_PAD_VIDEO,
-                                    .start_frame = start_frame,
-                                    .end_frame   = end_frame,
-                                    .draw_slice  = draw_slice,
+    .inputs    = (AVFilterPad[]) {{ .name          = "default",
+                                    .type          = AV_PAD_VIDEO,
+                                    .start_frame   = start_frame,
+                                    .end_frame     = end_frame,
+                                    .draw_slice    = draw_slice,
                                     .query_formats = query_formats,
                                     .config_props  = config_props, },
                                   { .name = NULL}},



More information about the FFmpeg-soc mailing list