Home | History | Annotate | Download | only in utils

Lines Matching refs:bpp

29   assert(bpp > 0);                                          \
30 assert(stride >= width * bpp);
46 int width, int height, int bpp, int stride, int inverse, uint8_t* out) {
55 memcpy((void*)out, (const void*)in, bpp);
57 PredictLine(in, preds - stride, out, bpp, inverse);
59 PredictLine(in + bpp, preds, out + bpp, bpp * (width - 1), inverse);
67 int bpp, int stride, uint8_t* filtered_data) {
68 DoHorizontalFilter(data, width, height, bpp, stride, 0, filtered_data);
72 int bpp, int stride, uint8_t* recon_data) {
73 DoHorizontalFilter(data, width, height, bpp, stride, 1, recon_data);
80 int width, int height, int bpp, int stride, int inverse, uint8_t* out) {
86 memcpy((void*)out, (const void*)in, bpp);
88 PredictLine(in + bpp, preds, out + bpp, bpp * (width - 1), inverse);
94 PredictLine(in, preds, out, bpp * width, inverse);
100 int bpp, int stride, uint8_t* filtered_data) {
101 DoVerticalFilter(data, width, height, bpp, stride, 0, filtered_data);
105 int bpp, int stride, uint8_t* recon_data) {
106 DoVerticalFilter(data, width, height, bpp, stride, 1, recon_data);
119 int bpp, int stride, int inverse, uint8_t* out) {
125 memcpy((void*)out, (const void*)in, bpp);
126 PredictLine(in + bpp, preds, out + bpp, bpp * (width - 1), inverse);
135 PredictLine(in, preds - stride, out, bpp, inverse);
136 for (w = bpp; w < width * bpp; ++w) {
137 const int pred = GradientPredictor(preds[w - bpp],
139 preds[w - stride - bpp]);
146 int bpp, int stride, uint8_t* filtered_data) {
147 DoGradientFilter(data, width, height, bpp, stride, 0, filtered_data);
151 int bpp, int stride, uint8_t* recon_data) {
152 DoGradientFilter(data, width, height, bpp, stride, 1, recon_data);