| Index: source/libvpx/vp8/encoder/picklpf.c
|
| diff --git a/source/libvpx/vp8/encoder/picklpf.c b/source/libvpx/vp8/encoder/picklpf.c
|
| index f0c8f28fc96877f453da331c8e5eb438d2ddc002..890053dcfdc5a8c753aade8a8864871398bd18b8 100644
|
| --- a/source/libvpx/vp8/encoder/picklpf.c
|
| +++ b/source/libvpx/vp8/encoder/picklpf.c
|
| @@ -49,7 +49,7 @@ static void yv12_copy_partial_frame(YV12_BUFFER_CONFIG *src_ybc,
|
| src_y = src_ybc->y_buffer + yoffset;
|
| dst_y = dst_ybc->y_buffer + yoffset;
|
|
|
| - vpx_memcpy(dst_y, src_y, ystride * linestocopy);
|
| + memcpy(dst_y, src_y, ystride * linestocopy);
|
| }
|
|
|
| static int calc_partial_ssl_err(YV12_BUFFER_CONFIG *source,
|
| @@ -142,7 +142,7 @@ void vp8cx_pick_filter_level_fast(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
|
| int min_filter_level = get_min_filter_level(cpi, cm->base_qindex);
|
| int max_filter_level = get_max_filter_level(cpi, cm->base_qindex);
|
| int filt_val;
|
| - int best_filt_val = cm->filter_level;
|
| + int best_filt_val;
|
| YV12_BUFFER_CONFIG * saved_frame = cm->frame_to_show;
|
|
|
| /* Replace unfiltered frame buffer with a new one */
|
| @@ -274,8 +274,7 @@ void vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
|
|
|
| int filter_step;
|
| int filt_high = 0;
|
| - /* Start search at previous frame filter level */
|
| - int filt_mid = cm->filter_level;
|
| + int filt_mid;
|
| int filt_low = 0;
|
| int filt_best;
|
| int filt_direction = 0;
|
| @@ -287,7 +286,7 @@ void vp8cx_pick_filter_level(YV12_BUFFER_CONFIG *sd, VP8_COMP *cpi)
|
|
|
| YV12_BUFFER_CONFIG * saved_frame = cm->frame_to_show;
|
|
|
| - vpx_memset(ss_err, 0, sizeof(ss_err));
|
| + memset(ss_err, 0, sizeof(ss_err));
|
|
|
| /* Replace unfiltered frame buffer with a new one */
|
| cm->frame_to_show = &cpi->pick_lf_lvl_frame;
|
|
|