ref: 386265fd2b0f3aaa4563ce89f1ed9a4d911ab237
parent: c703400bd49e0b03dfbf42c101929b2f171f2973
parent: c0205ebfb416c58ad4e5c84220b8644cf3469b3e
author: Yaowu Xu <yaowu@google.com>
date: Mon Mar 3 03:24:39 EST 2014
Merge "temporal_filter_find_matching_mb_c(): remove a param"
--- a/vp9/encoder/vp9_temporal_filter.c
+++ b/vp9/encoder/vp9_temporal_filter.c
@@ -124,8 +124,7 @@
static int temporal_filter_find_matching_mb_c(VP9_COMP *cpi,
uint8_t *arf_frame_buf,
uint8_t *frame_ptr_buf,
- int stride,
- int error_thresh) {
+ int stride) {
MACROBLOCK *x = &cpi->mb;
MACROBLOCKD* const xd = &x->e_mbd;
int step_param;
@@ -267,8 +266,7 @@
(cpi,
cpi->frames[alt_ref_index]->y_buffer + mb_y_offset,
cpi->frames[frame]->y_buffer + mb_y_offset,
- cpi->frames[frame]->y_stride,
- THRESH_LOW);
+ cpi->frames[frame]->y_stride);
#endif
// Assign higher weight to matching MB if it's error
// score is lower. If not applying MC default behavior
--
⑨