| Index: source/libvpx/vp9/encoder/vp9_temporal_filter.c
|
| ===================================================================
|
| --- source/libvpx/vp9/encoder/vp9_temporal_filter.c (revision 254565)
|
| +++ source/libvpx/vp9/encoder/vp9_temporal_filter.c (working copy)
|
| @@ -20,7 +20,6 @@
|
| #include "vp9/encoder/vp9_firstpass.h"
|
| #include "vp9/encoder/vp9_mcomp.h"
|
| #include "vp9/encoder/vp9_onyx_int.h"
|
| -#include "vp9/encoder/vp9_psnr.h"
|
| #include "vp9/encoder/vp9_quantize.h"
|
| #include "vp9/encoder/vp9_ratectrl.h"
|
| #include "vp9/encoder/vp9_segmentation.h"
|
| @@ -125,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;
|
| @@ -268,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
|
|
|