From c0205ebfb416c58ad4e5c84220b8644cf3469b3e Mon Sep 17 00:00:00 2001 From: Yaowu Xu Date: Sun, 2 Mar 2014 20:42:29 -0800 Subject: [PATCH] temporal_filter_find_matching_mb_c(): remove a param There is one parameter that is never used, therefore is removed. Change-Id: I595722e7c5731534c72831315359e4dce9c21763 --- vp9/encoder/vp9_temporal_filter.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vp9/encoder/vp9_temporal_filter.c b/vp9/encoder/vp9_temporal_filter.c index 502e4b678..623311659 100644 --- a/vp9/encoder/vp9_temporal_filter.c +++ b/vp9/encoder/vp9_temporal_filter.c @@ -124,8 +124,7 @@ void vp9_temporal_filter_apply_c(uint8_t *frame1, 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 @@ static void temporal_filter_iterate_c(VP9_COMP *cpi, (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 -- 2.40.0