diff options
author | Pierre Lombard | 2003-09-20 11:57:42 +0000 |
---|---|---|
committer | Pierre Lombard | 2003-09-20 11:57:42 +0000 |
commit | b9ebf325c6baf50f595966c2ae9e9d112e83531d (patch) | |
tree | b83c1a7879a5dbaf3fe1c92be1f270520fc58985 | |
parent | 773159ed275994b4fed5b0eaa64b4fece9342f26 (diff) |
printf() requires stdio.h
Originally committed as revision 10891 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
-rw-r--r-- | postproc/rgb2rgb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index f5cb903026..c92d7273db 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -9,6 +9,8 @@ #ifndef RGB2RGB_INCLUDED #define RGB2RGB_INCLUDED +#include <stdio.h> + /* A full collection of rgb to rgb(bgr) convertors */ extern void (*rgb24to32)(const uint8_t *src,uint8_t *dst,unsigned src_size); extern void (*rgb24to16)(const uint8_t *src,uint8_t *dst,unsigned src_size); |