| Index: source/libvpx/vp8/common/setupintrarecon.c
|
| diff --git a/source/libvpx/vp8/common/setupintrarecon.c b/source/libvpx/vp8/common/setupintrarecon.c
|
| index 60afe519f565df5bf757adc9b645edbb7afcd287..669564db42b253ffad1793eac0d285018e8131c4 100644
|
| --- a/source/libvpx/vp8/common/setupintrarecon.c
|
| +++ b/source/libvpx/vp8/common/setupintrarecon.c
|
| @@ -17,15 +17,15 @@ void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf)
|
| int i;
|
|
|
| /* set up frame new frame for intra coded blocks */
|
| - vpx_memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
|
| + memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
|
| for (i = 0; i < ybf->y_height; i++)
|
| ybf->y_buffer[ybf->y_stride *i - 1] = (unsigned char) 129;
|
|
|
| - vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| + memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| for (i = 0; i < ybf->uv_height; i++)
|
| ybf->u_buffer[ybf->uv_stride *i - 1] = (unsigned char) 129;
|
|
|
| - vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| + memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| for (i = 0; i < ybf->uv_height; i++)
|
| ybf->v_buffer[ybf->uv_stride *i - 1] = (unsigned char) 129;
|
|
|
| @@ -33,7 +33,7 @@ void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf)
|
|
|
| void vp8_setup_intra_recon_top_line(YV12_BUFFER_CONFIG *ybf)
|
| {
|
| - vpx_memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
|
| - vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| - vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| + memset(ybf->y_buffer - 1 - ybf->y_stride, 127, ybf->y_width + 5);
|
| + memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| + memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
|
| }
|
|
|