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: b58c7678671acf79fc27bb0479b6bbfc000af0ad (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __redcode_debayer_h_included__
#define __redcode_debayer_h_included__ 1

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