Home | History | Annotate | Download | only in dsp

Lines Matching defs:row_start

599   const int row_start = tile_y << bits;
601 const int max_y = GetMin(tile_size, height - row_start);
615 const int row = row_start + y;
647 const int row_start = tile_y << bits;
649 const int max_y = GetMin(tile_size, height - row_start);
657 const int row = row_start + y;
1236 int row_start, int row_end,
1239 assert(row_start < row_end);
1243 VP8LAddGreenToBlueAndRed(out, (row_end - row_start) * width);
1246 PredictorInverseTransform(transform, row_start, row_end, out);
1250 memcpy(out - width, out + (row_end - row_start - 1) * width,
1255 ColorSpaceInverseTransform(transform, row_start, row_end, out);
1264 const int out_stride = (row_end - row_start) * width;
1265 const int in_stride = (row_end - row_start) *
1269 ColorIndexInverseTransform(transform, row_start, row_end, src, out);
1271 ColorIndexInverseTransform(transform, row_start, row_end, in, out);