mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
I'm too lazy to comment this
Original commit message from CVS: Added the FLX decoder of Sepp Wijnands <mrrazz@garbage-coderz.net>
This commit is contained in:
parent
1d040471a4
commit
ebba06ccd2
2 changed files with 4 additions and 0 deletions
|
@ -738,6 +738,7 @@ plugins/au/Makefile
|
||||||
plugins/audioscale/Makefile
|
plugins/audioscale/Makefile
|
||||||
plugins/avi/Makefile
|
plugins/avi/Makefile
|
||||||
plugins/avi/wincodec/Makefile
|
plugins/avi/wincodec/Makefile
|
||||||
|
plugins/flx/Makefile
|
||||||
plugins/jpeg/Makefile
|
plugins/jpeg/Makefile
|
||||||
plugins/mp3decode/Makefile
|
plugins/mp3decode/Makefile
|
||||||
plugins/mp3decode/types/Makefile
|
plugins/mp3decode/types/Makefile
|
||||||
|
|
|
@ -90,6 +90,9 @@ GstColorSpaceConvertFunction gst_colorspace_rgb2rgb_get_converter(GstColorSpaceC
|
||||||
case GST_COLORSPACE_BGR565:
|
case GST_COLORSPACE_BGR565:
|
||||||
space->outsize = space->width*space->height*2;
|
space->outsize = space->width*space->height*2;
|
||||||
return gst_colorspace_bgr32_to_bgr565;
|
return gst_colorspace_bgr32_to_bgr565;
|
||||||
|
case GST_COLORSPACE_RGB565:
|
||||||
|
space->outsize = space->width*space->height*2;
|
||||||
|
return gst_colorspace_bgr32_to_bgr565;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue