]> granicus.if.org Git - libvpx/commitdiff
Initialize postproc buffer to resolve valgrind warnings
authorDeb Mukherjee <debargha@google.com>
Fri, 23 Mar 2012 00:42:41 +0000 (17:42 -0700)
committerDeb Mukherjee <debargha@google.com>
Fri, 23 Mar 2012 00:42:41 +0000 (17:42 -0700)
Change-Id: I9a7d40b0eac7200796dbe62e75776b2eb77dfdf6

vp8/common/alloccommon.c
vp8/common/postproc.c

index a6ccfd272f78037f7825e788451ab8de2fd4130d..919ef499a5e6a1db6b015e77ce29ef64c7357593 100644 (file)
@@ -106,8 +106,8 @@ int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height)
     }
 
     oci->post_proc_buffer_int_used = 0;
-
     vpx_memset(&oci->postproc_state, 0, sizeof(oci->postproc_state));
+    vpx_memset((&oci->post_proc_buffer)->buffer_alloc,128,(&oci->post_proc_buffer)->frame_size);
 #endif
 
     oci->mb_rows = height >> 4;
index 225c8726851bdf3bec2c70208caa7c207aa962ca..50ed5430918acc6fa504d511c383b6e26ff9ae2e 100644 (file)
@@ -737,7 +737,7 @@ int vp8_post_proc_frame(VP8_COMMON *oci, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t
 
             // insure that postproc is set to all 0's so that post proc
             // doesn't pull random data in from edge
-            vpx_memset((&oci->post_proc_buffer_int)->buffer_alloc,126,(&oci->post_proc_buffer)->frame_size);
+            vpx_memset((&oci->post_proc_buffer_int)->buffer_alloc,128,(&oci->post_proc_buffer)->frame_size);
 
         }
     }