robot36/yuv.h

10 lines
183 B
C
Raw Normal View History

2011-09-08 14:31:11 +02:00
#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