diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-02-21 20:35:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-02-21 20:35:18 +0000 |
commit | 5427e24291e6264b7c2104f9f4ce89236158b5df (patch) | |
tree | fc2b64e0be29d79403a423ba910d843618c67a75 /postproc/rgb2rgb.h | |
parent | 5d5fef0af19156972a8283baa8e7970df3199f46 (diff) | |
download | ffmpeg-5427e24291e6264b7c2104f9f4ce89236158b5df.tar.gz |
yuv2rgb brightness/contrast/saturation/different colorspaces support finished
yuv2rgb deglobalize
yuv2rgb optimizations / cleanup
bugs?
Originally committed as revision 9477 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r-- | postproc/rgb2rgb.h | 12 |
1 files changed, 7 insertions, 5 deletions
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 |