summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2010-05-29 22:59:31 -0700
committerYaowu Xu <yaowu@google.com>2010-05-29 22:59:31 -0700
commit66f9864a381673b9bacd94de242f97c522ebd54c (patch)
tree657088d5fe22b83af2c90058c8e16725b4fe01a9
parenta7bb3360bcac5aee2071028c50678c7a4e1700e9 (diff)
downloadlibvpx-66f9864a381673b9bacd94de242f97c522ebd54c.tar
libvpx-66f9864a381673b9bacd94de242f97c522ebd54c.tar.gz
libvpx-66f9864a381673b9bacd94de242f97c522ebd54c.tar.bz2
libvpx-66f9864a381673b9bacd94de242f97c522ebd54c.zip
Remove un-necessary memory initialization
The intra prediction needs one line above at the top edge.
-rw-r--r--vp8/common/setupintrarecon.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/vp8/common/setupintrarecon.c b/vp8/common/setupintrarecon.c
index dcaafe6c6..38bfae822 100644
--- a/vp8/common/setupintrarecon.c
+++ b/vp8/common/setupintrarecon.c
@@ -16,21 +16,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 - 2 * ybf->y_stride, 127, ybf->y_width + 5);
vpx_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 - 2 * ybf->uv_stride, 127, ybf->uv_width + 5);
vpx_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 - 2 * ybf->uv_stride, 127, ybf->uv_width + 5);
vpx_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;