[vlc-devel] commit: Oops, removed tabs from vlc_vout_opengl.h. (Laurent Aimar )
git version control
git at videolan.org
Mon Dec 7 21:36:43 CET 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Dec 7 21:36:07 2009 +0100| [e052ba3889ec987018aa4e68d85690b377275084] | committer: Laurent Aimar
Oops, removed tabs from vlc_vout_opengl.h.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e052ba3889ec987018aa4e68d85690b377275084
---
include/vlc_vout_opengl.h | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/include/vlc_vout_opengl.h b/include/vlc_vout_opengl.h
index 016ee9b..94c0915 100644
--- a/include/vlc_vout_opengl.h
+++ b/include/vlc_vout_opengl.h
@@ -33,23 +33,23 @@
typedef struct vout_opengl_t vout_opengl_t;
struct vout_opengl_t {
- /* */
- int (*lock)(vout_opengl_t *);
- void (*swap)(vout_opengl_t *);
- void (*unlock)(vout_opengl_t *);
+ /* */
+ int (*lock)(vout_opengl_t *);
+ void (*swap)(vout_opengl_t *);
+ void (*unlock)(vout_opengl_t *);
/* */
void *sys;
};
static inline int vout_opengl_Lock(vout_opengl_t *gl)
{
- if (!gl->lock)
- return VLC_SUCCESS;
+ if (!gl->lock)
+ return VLC_SUCCESS;
return gl->lock(gl);
}
static inline void vout_opengl_Unlock(vout_opengl_t *gl)
{
- if (gl->unlock)
+ if (gl->unlock)
gl->unlock(gl);
}
static inline void vout_opengl_Swap(vout_opengl_t *gl)
More information about the vlc-devel
mailing list