From 274db98899b16c07e70af7924a1b6933e765126f Mon Sep 17 00:00:00 2001 From: michael Date: Fri, 21 Feb 2003 20:35:18 +0000 Subject: yuv2rgb brightness/contrast/saturation/different colorspaces support finished yuv2rgb deglobalize yuv2rgb optimizations / cleanup bugs? git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9477 b3059339-0415-0410-9bf9-f77b7e298cf2 --- postproc/rgb2rgb.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'postproc/rgb2rgb.h') diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index 1a7720c7aa..c74a197bfa 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -84,13 +84,15 @@ extern void yvu9_to_yuy2(const uint8_t *src1, const uint8_t *src2, const uint8_t #define MODE_RGB 0x1 #define MODE_BGR 0x2 -typedef void (* yuv2rgb_fun) (uint8_t * image, uint8_t * py, +static void yuv2rgb(uint8_t * image, uint8_t * py, uint8_t * pu, uint8_t * pv, unsigned h_size, unsigned v_size, - int rgb_stride, int y_stride, int uv_stride); + int rgb_stride, int y_stride, int uv_stride){ +printf("broken, this should use the swscaler\n"); +} -extern yuv2rgb_fun yuv2rgb; - -void yuv2rgb_init (unsigned bpp, int mode); +static void yuv2rgb_init (unsigned bpp, int mode){ +printf("broken, this should use the swscaler\n"); +} #endif -- cgit v1.2.3