summaryrefslogtreecommitdiff
path: root/vpx_mem
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-04-23 20:34:15 -0700
committerJames Zern <jzern@google.com>2015-04-28 19:59:40 -0700
commitfbd3b89488d48e4221b73d67eab3fdb25e2a6c57 (patch)
tree5e0b7fbae2512428a90c90f9028d0722e8c261ac /vpx_mem
parentccc9e1da8d1ef03a471ab227e1049cd55bebd806 (diff)
downloadlibvpx-fbd3b89488d48e4221b73d67eab3fdb25e2a6c57.tar
libvpx-fbd3b89488d48e4221b73d67eab3fdb25e2a6c57.tar.gz
libvpx-fbd3b89488d48e4221b73d67eab3fdb25e2a6c57.tar.bz2
libvpx-fbd3b89488d48e4221b73d67eab3fdb25e2a6c57.zip
vpx_mem: remove vpx_memmove
vestigial. replace instances with memmove() which they already were being defined to. Change-Id: If396d3f9e3cf79c0ee5d7429615ef3d6b2a34afa
Diffstat (limited to 'vpx_mem')
-rw-r--r--vpx_mem/vpx_mem.c4
-rw-r--r--vpx_mem/vpx_mem.h2
2 files changed, 0 insertions, 6 deletions
diff --git a/vpx_mem/vpx_mem.c b/vpx_mem/vpx_mem.c
index 0eb3f7a40..f944b1090 100644
--- a/vpx_mem/vpx_mem.c
+++ b/vpx_mem/vpx_mem.c
@@ -109,7 +109,3 @@ void *vpx_memset16(void *dest, int val, size_t length) {
return orig;
}
#endif // CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
-
-void *vpx_memmove(void *dest, const void *src, size_t count) {
- return memmove(dest, src, count);
-}
diff --git a/vpx_mem/vpx_mem.h b/vpx_mem/vpx_mem.h
index d404efa73..0aaadf52f 100644
--- a/vpx_mem/vpx_mem.h
+++ b/vpx_mem/vpx_mem.h
@@ -35,13 +35,11 @@ extern "C" {
#if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
void *vpx_memset16(void *dest, int val, size_t length);
#endif
- void *vpx_memmove(void *dest, const void *src, size_t count);
#ifndef __VPX_MEM_C__
# include <string.h>
# define vpx_memcpy memcpy
# define vpx_memset memset
-# define vpx_memmove memmove
#endif
#ifdef VPX_MEM_PLTFRM