From ec889d3fbce5dc4f47d4c94ca4ae4b3df3964c41 Mon Sep 17 00:00:00 2001 From: Haihua Hu Date: Wed, 17 May 2017 16:26:38 +0800 Subject: [PATCH] glformat: Add missing GST_GL_RGB565 in some switch statement https://bugzilla.gnome.org/show_bug.cgi?id=782736 --- gst-libs/gst/gl/gstglformat.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst-libs/gst/gl/gstglformat.c b/gst-libs/gst/gl/gstglformat.c index 36aecf2..e449688 100644 --- a/gst-libs/gst/gl/gstglformat.c +++ b/gst-libs/gst/gl/gstglformat.c @@ -58,6 +58,7 @@ _gl_format_n_components (guint format) case GST_VIDEO_GL_TEXTURE_TYPE_RGB: case GST_VIDEO_GL_TEXTURE_TYPE_RGB16: case GST_GL_RGB: + case GST_GL_RGB565: return 3; case GST_VIDEO_GL_TEXTURE_TYPE_LUMINANCE_ALPHA: case GST_VIDEO_GL_TEXTURE_TYPE_RG: @@ -257,6 +258,7 @@ gst_gl_sized_gl_format_from_gl_format_type (GstGLContext * context, break; case GST_GL_RGBA8: case GST_GL_RGB8: + case GST_GL_RGB565: case GST_GL_RG8: case GST_GL_R8: case GST_GL_LUMINANCE: -- 2.7.4