[vlc-devel] commit: Compilation fix. (Laurent Aimar )
git version control
git at videolan.org
Wed May 13 21:50:37 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed May 13 21:50:19 2009 +0200| [de7979be1748716f5c5a6482d33faf9c3421ce1d] | committer: Laurent Aimar
Compilation fix.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=de7979be1748716f5c5a6482d33faf9c3421ce1d
---
modules/video_output/snapshot.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/video_output/snapshot.c b/modules/video_output/snapshot.c
index 49bf815..0dedf12 100644
--- a/modules/video_output/snapshot.c
+++ b/modules/video_output/snapshot.c
@@ -193,19 +193,19 @@ static int Init( vout_thread_t *p_vout )
/* Define the bitmasks */
switch( i_chroma )
{
- case VLC_CODEC_RGB15;
+ case VLC_CODEC_RGB15:
p_vout->output.i_rmask = 0x001f;
p_vout->output.i_gmask = 0x03e0;
p_vout->output.i_bmask = 0x7c00;
break;
- case VLC_CODEC_RGB16;
+ case VLC_CODEC_RGB16:
p_vout->output.i_rmask = 0x001f;
p_vout->output.i_gmask = 0x07e0;
p_vout->output.i_bmask = 0xf800;
break;
- case VLC_CODEC_RGB24;
+ case VLC_CODEC_RGB24:
p_vout->output.i_rmask = 0xff0000;
p_vout->output.i_gmask = 0x00ff00;
p_vout->output.i_bmask = 0x0000ff;
More information about the vlc-devel
mailing list