summaryrefslogtreecommitdiff
path: root/vp9/decoder
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@google.com>2013-02-15 12:09:18 -0800
committerRonald S. Bultje <rbultje@google.com>2013-02-15 14:06:30 -0800
commit6cde1c58d74a649671859ccafe736bb8b940c010 (patch)
treee961ce34746ce1ee6d39eec27244d368d0215935 /vp9/decoder
parent3af36ea8cc2e532c648e1d76d9aac96a0d612e1f (diff)
downloadlibvpx-6cde1c58d74a649671859ccafe736bb8b940c010.tar
libvpx-6cde1c58d74a649671859ccafe736bb8b940c010.tar.gz
libvpx-6cde1c58d74a649671859ccafe736bb8b940c010.tar.bz2
libvpx-6cde1c58d74a649671859ccafe736bb8b940c010.zip
Remove some unused structs and members from the decoder.
Change-Id: Ie309cb1f683a51c5dfac405fb32e8e2d6ee143ed
Diffstat (limited to 'vp9/decoder')
-rw-r--r--vp9/decoder/vp9_onyxd_int.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/vp9/decoder/vp9_onyxd_int.h b/vp9/decoder/vp9_onyxd_int.h
index ddb01feed..8c1f76e73 100644
--- a/vp9/decoder/vp9_onyxd_int.h
+++ b/vp9/decoder/vp9_onyxd_int.h
@@ -18,41 +18,6 @@
// #define DEC_DEBUG
-typedef struct {
- int ithread;
- void *ptr1;
- void *ptr2;
-} DECODETHREAD_DATA;
-
-typedef struct {
- MACROBLOCKD mbd;
- int mb_row;
- int current_mb_col;
- short *coef_ptr;
-} MB_ROW_DEC;
-
-typedef struct {
- int const *scan;
- int const *scan_8x8;
- uint8_t const *ptr_block2leftabove;
- vp9_tree_index const *vp9_coef_tree_ptr;
- unsigned char *norm_ptr;
- uint8_t *ptr_coef_bands_x;
- uint8_t *ptr_coef_bands_x_8x8;
-
- ENTROPY_CONTEXT_PLANES *A;
- ENTROPY_CONTEXT_PLANES *L;
-
- int16_t *qcoeff_start_ptr;
-
- vp9_prob const *coef_probs_4x4[BLOCK_TYPES_4X4];
- vp9_prob const *coef_probs_8x8[BLOCK_TYPES_8X8];
- vp9_prob const *coef_probs_16X16[BLOCK_TYPES_16X16];
-
- uint8_t eob[24];
-
-} DETOK;
-
typedef struct VP9Decompressor {
DECLARE_ALIGNED(16, MACROBLOCKD, mb);
@@ -68,8 +33,6 @@ typedef struct VP9Decompressor {
int64_t last_time_stamp;
int ready_for_new_data;
- DETOK detoken;
-
int refresh_frame_flags;
vp9_prob prob_skip_false;