Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debayer.h « libredcode « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43564240cc2a5c337e303a46612d03ceb9437bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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