From ebba06ccd222756ef7e4cc6efba25f363e3c398e Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 21 Mar 2001 23:59:09 +0000 Subject: [PATCH] I'm too lazy to comment this Original commit message from CVS: Added the FLX decoder of Sepp Wijnands --- configure.in | 1 + libs/colorspace/rgb2rgb.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/configure.in b/configure.in index 31ece16824..137fce6651 100644 --- a/configure.in +++ b/configure.in @@ -738,6 +738,7 @@ plugins/au/Makefile plugins/audioscale/Makefile plugins/avi/Makefile plugins/avi/wincodec/Makefile +plugins/flx/Makefile plugins/jpeg/Makefile plugins/mp3decode/Makefile plugins/mp3decode/types/Makefile diff --git a/libs/colorspace/rgb2rgb.c b/libs/colorspace/rgb2rgb.c index 7459785a8d..09f7f8aff5 100644 --- a/libs/colorspace/rgb2rgb.c +++ b/libs/colorspace/rgb2rgb.c @@ -90,6 +90,9 @@ GstColorSpaceConvertFunction gst_colorspace_rgb2rgb_get_converter(GstColorSpaceC case GST_COLORSPACE_BGR565: space->outsize = space->width*space->height*2; return gst_colorspace_bgr32_to_bgr565; + case GST_COLORSPACE_RGB565: + space->outsize = space->width*space->height*2; + return gst_colorspace_bgr32_to_bgr565; default: break; }