summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrank Galligan <fgalligan@google.com>2012-12-03 10:20:11 -0800
committerFrank Galligan <fgalligan@google.com>2012-12-03 10:26:15 -0800
commit3e0ea7f6e1cec3c785312a140a72b120ff831ff0 (patch)
tree466bfdf9e3293800fd8c61bc220ed83cbec8c192
parent271d635ce7af3cb8869b90d5809ecb70c3f909fe (diff)
downloadlibvpx-3e0ea7f6e1cec3c785312a140a72b120ff831ff0.tar
libvpx-3e0ea7f6e1cec3c785312a140a72b120ff831ff0.tar.gz
libvpx-3e0ea7f6e1cec3c785312a140a72b120ff831ff0.tar.bz2
libvpx-3e0ea7f6e1cec3c785312a140a72b120ff831ff0.zip
vp9: Remove superfluous command.
- vpx_calloc is called on arf_not_zz above. - Note The removed vpx_memset call had an issue with sizeof. Change-Id: I86fd7a167d0a042e581e613e2a6c0b5e63073fc6
-rw-r--r--vp9/encoder/vp9_mbgraph.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp9/encoder/vp9_mbgraph.c b/vp9/encoder/vp9_mbgraph.c
index 059572e24..8511bc572 100644
--- a/vp9/encoder/vp9_mbgraph.c
+++ b/vp9/encoder/vp9_mbgraph.c
@@ -367,8 +367,6 @@ static void separate_arf_mbs(VP9_COMP *cpi) {
CHECK_MEM_ERROR(arf_not_zz,
vpx_calloc(cm->mb_rows * cm->mb_cols * sizeof(*arf_not_zz), 1));
- vpx_memset(arf_not_zz, 0, sizeof(arf_not_zz));
-
// We are not interested in results beyond the alt ref itself.
if (n_frames > cpi->frames_till_gf_update_due)
n_frames = cpi->frames_till_gf_update_due;