Searched refs:tiles_per_row (Results 1 – 2 of 2) sorted by relevance
320 const int tiles_per_row = VP8LSubSampleSize(width, bits); in GetBestPredictorForTile() local323 (modes[tile_y * tiles_per_row + tile_x - 1] >> 8) & 0xff : 0xff; in GetBestPredictorForTile()325 (modes[(tile_y - 1) * tiles_per_row + tile_x] >> 8) & 0xff : 0xff; in GetBestPredictorForTile()419 const int tiles_per_row = VP8LSubSampleSize(width, bits); in CopyImageWithPrediction() local459 (modes[(y >> bits) * tiles_per_row + (x >> bits)] >> 8) & 0xff; in CopyImageWithPrediction()479 const int tiles_per_row = VP8LSubSampleSize(width, bits); in VP8LResidualImage() local486 for (i = 0; i < tiles_per_row * tiles_per_col; ++i) { in VP8LResidualImage()493 for (tile_x = 0; tile_x < tiles_per_row; ++tile_x) { in VP8LResidualImage()497 image[tile_y * tiles_per_row + tile_x] = ARGB_BLACK | (pred << 8); in VP8LResidualImage()
212 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in GENERATE_PREDICTOR_ADD() local214 transform->data_ + (y >> transform->bits_) * tiles_per_row; in GENERATE_PREDICTOR_ADD()234 pred_mode_base += tiles_per_row; in GENERATE_PREDICTOR_ADD()295 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_); in ColorSpaceInverseTransform_C() local298 transform->data_ + (y >> transform->bits_) * tiles_per_row; in ColorSpaceInverseTransform_C()318 if ((y & mask) == 0) pred_row += tiles_per_row; in ColorSpaceInverseTransform_C()
Completed in 7 milliseconds