With row-tile enabled, the encoder test driver needs to configure the
decoder in order to decode all tiles correctly.
Change-Id: I8b00a766cf5e41255625846f92fd71915c614ec1
void EncoderTest::RunLoop(VideoSource *video) {
vpx_codec_dec_cfg_t dec_cfg = vpx_codec_dec_cfg_t();
+#if CONFIG_ROW_TILE
+ // Decode all tiles.
+ dec_cfg.tile_col = -1;
+ dec_cfg.tile_row = -1;
+#endif // CONFIG_ROW_TILE
+
stats_.Reset();
ASSERT_TRUE(passes_ == 1 || passes_ == 2);
int subsampling_col, int subsampling_row,
int x_scale, int y_scale) {
double H[9];
- vp9_convert_params_to_rotzoom(gm, H);
int i, j;
int64_t sumerr = 0;
if (projectPoints == NULL)
return -1;
+ vp9_convert_params_to_rotzoom(gm, H);
for (i = p_row; i < p_row + p_height; ++i) {
for (j = p_col; j < p_col + p_width; ++j) {
double in[2], out[2];