summaryrefslogtreecommitdiffstats
path: root/postproc
diff options
context:
space:
mode:
authorpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-20 11:57:42 +0000
committerpl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-20 11:57:42 +0000
commit3633450622441ef3d5caf195280749ab6116db5f (patch)
tree193c2ea295fd9ac1899d5de949aba244624492e3 /postproc
parent00dc6152fc6e91ce13246925a00362428f13dd8c (diff)
downloadmpv-3633450622441ef3d5caf195280749ab6116db5f.tar.bz2
mpv-3633450622441ef3d5caf195280749ab6116db5f.tar.xz
printf() requires stdio.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10891 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r--postproc/rgb2rgb.h2
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);