2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __DEBAYER_H__
|
|
|
|
|
#define __DEBAYER_H__
|
2008-06-02 21:35:57 +00:00
|
|
|
|
|
|
|
|
void redcode_ycbcr2rgb_fullscale(
|
|
|
|
|
int ** planes, int width, int height, float * out);
|
|
|
|
|
void redcode_ycbcr2rgb_halfscale(
|
|
|
|
|
int ** planes, int width, int height, float * out);
|
|
|
|
|
void redcode_ycbcr2rgb_quarterscale(
|
|
|
|
|
int ** planes, int width, int height, float * out);
|
|
|
|
|
|
|
|
|
|
#endif
|