summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2011-01-11 17:28:13 -0500
committerScott LaVarnway <slavarnway@google.com>2011-01-11 17:28:13 -0500
commit4a7b456a7b996b9309104a8894a7b7900f9a463e (patch)
tree5148d864c2d935802a6b349930de4452b98167d1
parentb095d9df3c7492e9ba031c4491a0a565f668c9e5 (diff)
downloadlibvpx-sandbox/slavarnway/test.tar.gz
Removed unused members from VP8_COMPsandbox/slavarnway/test
Change-Id: I230bca891fea26ee14a9196fa5fdf8f9c27e1679
-rw-r--r--vp8/encoder/onyx_if.c2
-rw-r--r--vp8/encoder/onyx_int.h9
2 files changed, 0 insertions, 11 deletions
diff --git a/vp8/encoder/onyx_if.c b/vp8/encoder/onyx_if.c
index 56f7ef6f8..5b14450ad 100644
--- a/vp8/encoder/onyx_if.c
+++ b/vp8/encoder/onyx_if.c
@@ -2158,7 +2158,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);
@@ -2666,7 +2665,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);
diff --git a/vp8/encoder/onyx_int.h b/vp8/encoder/onyx_int.h
index 2f9cc4776..22798e71b 100644
--- a/vp8/encoder/onyx_int.h
+++ b/vp8/encoder/onyx_int.h
@@ -308,8 +308,6 @@ typedef struct
YV12_BUFFER_CONFIG last_frame_uf;
- char *Dest;
-
TOKENEXTRA *tok;
unsigned int tok_count;
@@ -338,11 +336,6 @@ typedef struct
int RDMULT;
int RDDIV ;
- TOKENEXTRA *rdtok;
- vp8_writer rdbc;
- int intra_mode_costs[10];
-
-
CODING_CONTEXT coding_context;
// Rate targetting variables
@@ -551,8 +544,6 @@ typedef struct
int ref_frame_flags;
- int exp[512];
-
SPEED_FEATURES sf;
int error_bins[1024];