summaryrefslogtreecommitdiff
path: root/vp9/common/vp9_idct.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-04-23 20:47:40 -0700
committerJames Zern <jzern@google.com>2015-04-28 20:00:59 -0700
commitf58011ada5e3d28d9acf078657f8117f0960d240 (patch)
tree70beff98e74f20148d562ec6e94020ca34175ab6 /vp9/common/vp9_idct.c
parentf274c2199beab8cd656efd0660222b1aa1864ce8 (diff)
downloadlibvpx-f58011ada5e3d28d9acf078657f8117f0960d240.tar
libvpx-f58011ada5e3d28d9acf078657f8117f0960d240.tar.gz
libvpx-f58011ada5e3d28d9acf078657f8117f0960d240.tar.bz2
libvpx-f58011ada5e3d28d9acf078657f8117f0960d240.zip
vpx_mem: remove vpx_memset
vestigial. replace instances with memset() which they already were being defined to. Change-Id: Ie030cfaaa3e890dd92cf1a995fcb1927ba175201
Diffstat (limited to 'vp9/common/vp9_idct.c')
-rw-r--r--vp9/common/vp9_idct.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/vp9/common/vp9_idct.c b/vp9/common/vp9_idct.c
index b48d52230..3b214371c 100644
--- a/vp9/common/vp9_idct.c
+++ b/vp9/common/vp9_idct.c
@@ -1276,7 +1276,7 @@ void vp9_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest,
if (zero_coeff[0] | zero_coeff[1])
idct32(input, outptr);
else
- vpx_memset(outptr, 0, sizeof(tran_low_t) * 32);
+ memset(outptr, 0, sizeof(tran_low_t) * 32);
input += 32;
outptr += 32;
}
@@ -1676,7 +1676,7 @@ static void highbd_iadst4(const tran_low_t *input, tran_low_t *output, int bd) {
(void) bd;
if (!(x0 | x1 | x2 | x3)) {
- vpx_memset(output, 0, 4 * sizeof(*output));
+ memset(output, 0, 4 * sizeof(*output));
return;
}
@@ -1752,7 +1752,7 @@ static void highbd_iadst8(const tran_low_t *input, tran_low_t *output, int bd) {
(void) bd;
if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7)) {
- vpx_memset(output, 0, 8 * sizeof(*output));
+ memset(output, 0, 8 * sizeof(*output));
return;
}
@@ -2095,7 +2095,7 @@ static void highbd_iadst16(const tran_low_t *input, tran_low_t *output,
if (!(x0 | x1 | x2 | x3 | x4 | x5 | x6 | x7 | x8
| x9 | x10 | x11 | x12 | x13 | x14 | x15)) {
- vpx_memset(output, 0, 16 * sizeof(*output));
+ memset(output, 0, 16 * sizeof(*output));
return;
}
@@ -2712,7 +2712,7 @@ void vp9_highbd_idct32x32_1024_add_c(const tran_low_t *input, uint8_t *dest8,
if (zero_coeff[0] | zero_coeff[1])
highbd_idct32(input, outptr, bd);
else
- vpx_memset(outptr, 0, sizeof(tran_low_t) * 32);
+ memset(outptr, 0, sizeof(tran_low_t) * 32);
input += 32;
outptr += 32;
}