]> git.sesse.net Git - vlc/commitdiff
iOS: no tabs, in source-code
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 9 Feb 2013 15:23:52 +0000 (16:23 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 9 Feb 2013 15:23:52 +0000 (16:23 +0100)
modules/video_output/ios.m

index 69b586bb853da36be8ff5ef853a4b8df3b712938..b513911ebdab63c39315f6f7693e6c2462a7b2aa 100644 (file)
@@ -157,11 +157,11 @@ static int Open(vlc_object_t *this)
     sys->gl.lock = OpenglClean; // We don't do locking, but sometimes we need to cleanup the framebuffer
     sys->gl.unlock = NULL;
     sys->gl.swap = OpenglSwap;
-       sys->gl.getProcAddress = OurGetProcAddress;
+    sys->gl.getProcAddress = OurGetProcAddress;
     sys->gl.sys = sys;
 
-       sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl);
-       if (!sys->vgl)
+    sys->vgl = vout_display_opengl_New(&vd->fmt, NULL, &sys->gl);
+    if (!sys->vgl)
     {
         sys->gl.sys = NULL;
         goto error;
@@ -242,7 +242,7 @@ static void PictureDisplay(vout_display_t *vd, picture_t *pic, subpicture_t *sub
     vout_display_opengl_Display(sys->vgl, &vd->fmt );
     picture_Release (pic);
     sys->has_first_frame = true;
-       (void)subpicture;
+    (void)subpicture;
 }
 
 static int Control (vout_display_t *vd, int query, va_list ap)