Removing unused coefband_trans_8x8plus array from VP9Decompressor.

Change-Id: Ic1367d767705377402ebfec0705f9f553a834400
This commit is contained in:
Dmitry Kovalev 2013-11-14 13:37:18 -08:00
parent f16cde998b
commit e6b72d0119
2 changed files with 0 additions and 8 deletions

View File

@ -1304,13 +1304,6 @@ int vp9_decode_frame(VP9D_COMP *pbi, const uint8_t **p_data_end) {
const int tile_cols = 1 << cm->log2_tile_cols;
YV12_BUFFER_CONFIG *const new_fb = get_frame_new_buffer(cm);
vpx_memset(pbi->coefband_trans_8x8plus,
(COEF_BANDS - 1),
sizeof(pbi->coefband_trans_8x8plus));
vpx_memcpy(pbi->coefband_trans_8x8plus,
vp9_coefband_trans_8x8plus,
sizeof(vp9_coefband_trans_8x8plus));
if (!first_partition_size) {
// showing a frame directly
*p_data_end = data + 1;

View File

@ -55,7 +55,6 @@ typedef struct VP9Decompressor {
PARTITION_CONTEXT *above_seg_context;
DECLARE_ALIGNED(16, uint8_t, token_cache[1024]);
DECLARE_ALIGNED(16, uint8_t, coefband_trans_8x8plus[1024]);
} VP9D_COMP;
#endif // VP9_DECODER_VP9_ONYXD_INT_H_