From 8604fac13f3f64c2b55c6883809650b1f48a7622 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 2 Dec 2010 23:49:31 +0000 Subject: [PATCH] video: add missing break statement for the GST_VIDEO_FORMAT_RGB8_PALETTED case --- gst-libs/gst/video/video.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst-libs/gst/video/video.c b/gst-libs/gst/video/video.c index 68b1f31cff..6635125b2e 100644 --- a/gst-libs/gst/video/video.c +++ b/gst-libs/gst/video/video.c @@ -614,6 +614,7 @@ gst_video_format_new_caps (GstVideoFormat format, int width, bpp = 8; depth = 8; have_alpha = FALSE; + break; default: return NULL; }