[vlc-commits] XCB/XVideo: missing break

Rémi Denis-Courmont git at videolan.org
Tue Apr 22 23:28:47 CEST 2014


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Wed Apr 23 00:28:37 2014 +0300| [28d74c660f0aaff9ff9d21c495dd2bed6d83f414] | committer: Rémi Denis-Courmont

XCB/XVideo: missing break

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=28d74c660f0aaff9ff9d21c495dd2bed6d83f414
---

 modules/video_output/xcb/xvideo.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/video_output/xcb/xvideo.c b/modules/video_output/xcb/xvideo.c
index 21b383f..ec50ccb 100644
--- a/modules/video_output/xcb/xvideo.c
+++ b/modules/video_output/xcb/xvideo.c
@@ -172,6 +172,7 @@ static vlc_fourcc_t ParseFormat (vlc_object_t *obj,
                     return VLC_CODEC_RGBA16;
                 if (f->bpp == 16 && f->depth == 12)
                     return VLC_CODEC_RGB12;
+                break;
               case 8:
                 if (f->bpp == 8 && f->depth == 8)
                     return VLC_CODEC_RGB8;



More information about the vlc-commits mailing list