ref: dc9a7f15784493958f89338edb66aac1dacada44
parent: e769aeee801a301018d7f5e610dab9d968dbdbc9
parent: 52416c3e17f19ae13d32e2fa672ddc7697182ade
author: Jingning Han <jingning@google.com>
date: Mon Jun 18 12:27:48 EDT 2018
Merge "Remove unneeded buffer restore calls"
--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -620,13 +620,6 @@
const int tile_cols = 1 << cm->log2_tile_cols;
const int tile_rows = 1 << cm->log2_tile_rows;
int tile_row, tile_col;
- MACROBLOCKD *mbd = &cpi->td.mb.e_mbd;
- // Save input state
- uint8_t *input_buffer[MAX_MB_PLANE];
- int i;
-
- for (i = 0; i < MAX_MB_PLANE; i++) input_buffer[i] = mbd->plane[i].pre[0].buf;
-
vp9_init_tile_data(cpi);
for (tile_row = 0; tile_row < tile_rows; ++tile_row) {
@@ -634,9 +627,6 @@
temporal_filter_iterate_tile_c(cpi, tile_row, tile_col);
}
}
-
- // Restore input state
- for (i = 0; i < MAX_MB_PLANE; i++) mbd->plane[i].pre[0].buf = input_buffer[i];
}
// Apply buffer limits and context specific adjustments to arnr filter.