forked from bartvdbraak/blender
2b7ca2304a
without the underscores these clogged up the namespace for autocompleation which was annoying.
12 lines
317 B
C
12 lines
317 B
C
#ifndef __DEBAYER_H__
|
|
#define __DEBAYER_H__
|
|
|
|
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
|