1#ifndef VISTLE_RHR_PREDICT_H
2#define VISTLE_RHR_PREDICT_H
8void transform_predict(
unsigned char *output,
const float *input,
unsigned width,
unsigned height,
unsigned stride);
9void transform_unpredict(
float *output,
const unsigned char *input,
unsigned width,
unsigned height,
unsigned stride);
15template<
int planes,
bool planar = true,
bool rgba = false>
16void transform_predict(
unsigned char *output,
const unsigned char *input,
unsigned width,
unsigned height,
18template<
int planes,
bool planar = true,
bool rgba = false>
19void transform_unpredict(
unsigned char *output,
const unsigned char *input,
unsigned width,
unsigned height,
void transform_unpredict(float *output, const unsigned char *input, unsigned width, unsigned height, unsigned stride)
Definition: predict.cpp:43
void transform_unpredict_planar(float *output, const unsigned char *input, unsigned width, unsigned height, unsigned stride)
Definition: predict.cpp:101
void transform_predict(unsigned char *output, const float *input, unsigned width, unsigned height, unsigned stride)
Definition: predict.cpp:14
void transform_predict_planar(unsigned char *output, const float *input, unsigned width, unsigned height, unsigned stride)
Definition: predict.cpp:68