robot36/yuv.h

10 wiersze
183 B
C
Czysty Zwykły widok Historia

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