robot36/yuv.h
2011-09-08 14:31:11 +02:00

10 lines
183 B
C

#ifndef YUV_H
#define YUV_H
#include <stdint.h>
uint8_t R_YUV(uint8_t, uint8_t, uint8_t);
uint8_t G_YUV(uint8_t, uint8_t, uint8_t);
uint8_t B_YUV(uint8_t, uint8_t, uint8_t);
#endif