summaryrefslogtreecommitdiff
path: root/vp9/decoder/vp9_decoder.h
diff options
context:
space:
mode:
authorScott LaVarnway <slavarnway@google.com>2016-04-07 11:44:27 -0700
committerScott LaVarnway <slavarnway@google.com>2016-04-07 11:44:27 -0700
commit7cb4ab56eaa27b8b08b745dbc33d8c087050bd4e (patch)
treefe893748c6ba0349f4a449964d37cbdd02781fc0 /vp9/decoder/vp9_decoder.h
parentbfc2a7e3a04908e5d82f656bf1723ad4eddff986 (diff)
downloadlibvpx-7cb4ab56eaa27b8b08b745dbc33d8c087050bd4e.tar
libvpx-7cb4ab56eaa27b8b08b745dbc33d8c087050bd4e.tar.gz
libvpx-7cb4ab56eaa27b8b08b745dbc33d8c087050bd4e.tar.bz2
libvpx-7cb4ab56eaa27b8b08b745dbc33d8c087050bd4e.zip
VP9: Combine TileData with TileWorkerData
Change-Id: I83536734a54ef7b85f90f56a51878d94fac7ff22
Diffstat (limited to 'vp9/decoder/vp9_decoder.h')
-rw-r--r--vp9/decoder/vp9_decoder.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/vp9/decoder/vp9_decoder.h b/vp9/decoder/vp9_decoder.h
index afa400941..7111a36d3 100644
--- a/vp9/decoder/vp9_decoder.h
+++ b/vp9/decoder/vp9_decoder.h
@@ -27,15 +27,6 @@
extern "C" {
#endif
-// TODO(hkuang): combine this with TileWorkerData.
-typedef struct TileData {
- VP9_COMMON *cm;
- vpx_reader bit_reader;
- DECLARE_ALIGNED(16, MACROBLOCKD, xd);
- /* dqcoeff are shared by all the planes. So planes must be decoded serially */
- DECLARE_ALIGNED(16, tran_low_t, dqcoeff[32 * 32]);
-} TileData;
-
typedef struct TileBuffer {
const uint8_t *data;
size_t size;
@@ -74,8 +65,6 @@ typedef struct VP9Decoder {
TileWorkerData *tile_worker_data;
TileBuffer tile_buffers[64];
int num_tile_workers;
-
- TileData *tile_data;
int total_tiles;
VP9LfSync lf_row_sync;