summaryrefslogtreecommitdiff
path: root/vp8/encoder/onyx_if.c
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2011-01-27 08:12:22 -0800
committerCode Review <code-review@webmproject.org>2011-01-27 08:12:22 -0800
commit8a5c255b3d019fff6c5943362a0f5b874e7b7eae (patch)
tree1535cc58c9443eb385dee717552be9e89fa3f15c /vp8/encoder/onyx_if.c
parentbb30ffc4dca93d23200202845f606df3dfc48440 (diff)
parentc4887da39c9153151598d6a050debb11fe1f9888 (diff)
downloadlibvpx-8a5c255b3d019fff6c5943362a0f5b874e7b7eae.tar
libvpx-8a5c255b3d019fff6c5943362a0f5b874e7b7eae.tar.gz
libvpx-8a5c255b3d019fff6c5943362a0f5b874e7b7eae.tar.bz2
libvpx-8a5c255b3d019fff6c5943362a0f5b874e7b7eae.zip
Merge "Removed unused members from VP8_COMP"
Diffstat (limited to 'vp8/encoder/onyx_if.c')
-rw-r--r--vp8/encoder/onyx_if.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 93d2501fe..92b2f6fc5 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2187,7 +2187,6 @@ VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf)
cpi->common.error.setjmp = 1;
- CHECK_MEM_ERROR(cpi->rdtok, vpx_calloc(256 * 3 / 2, sizeof(TOKENEXTRA)));
CHECK_MEM_ERROR(cpi->mb.ss, vpx_calloc(sizeof(search_site), (MAX_MVSEARCH_STEPS * 8) + 1));
vp8_create_common(&cpi->common);
@@ -2697,7 +2696,6 @@ void vp8_remove_compressor(VP8_PTR *ptr)
vp8_dealloc_compressor_data(cpi);
vpx_free(cpi->mb.ss);
vpx_free(cpi->tok);
- vpx_free(cpi->rdtok);
vpx_free(cpi->cyclic_refresh_map);
vp8_remove_common(&cpi->common);