summaryrefslogtreecommitdiff
path: root/src/video_out/yuv2rgb.h
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-07-17 19:37:21 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-07-17 19:37:21 +0000
commitd433cfadf1ec1a6f042727d3818d86aecd513586 (patch)
tree47ce7536357ae6544efa5049aa7661a3ce92cb70 /src/video_out/yuv2rgb.h
parentf071561aa3974d8d7ceba6fdab13668e92f624fd (diff)
downloadxine-lib-d433cfadf1ec1a6f042727d3818d86aecd513586.tar.gz
xine-lib-d433cfadf1ec1a6f042727d3818d86aecd513586.tar.bz2
yuy2 -> rgb conversion routines in C (no mlib/mmx yet)
CVS patchset: 299 CVS date: 2001/07/17 19:37:21
Diffstat (limited to 'src/video_out/yuv2rgb.h')
-rw-r--r--src/video_out/yuv2rgb.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/video_out/yuv2rgb.h b/src/video_out/yuv2rgb.h
index 8ff6fbc9c..6e84bd923 100644
--- a/src/video_out/yuv2rgb.h
+++ b/src/video_out/yuv2rgb.h
@@ -27,6 +27,11 @@ struct yuv2rgb_s {
void (*yuv2rgb_fun) (yuv2rgb_t *this, uint8_t * image, uint8_t * py,
uint8_t * pu, uint8_t * pv) ;
+ /*
+ * this is the function to call for the yuy2->rgb and scaling process
+ */
+ void (*yuy22rgb_fun) (yuv2rgb_t *this, uint8_t * image, uint8_t * p);
+
/* private stuff below */
uint32_t matrix_coefficients;