This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/extern/libredcode/debayer.h

12 lines
353 B
C++
Raw Normal View History

#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