From e6b72d0119041c60fb3baab67f963638b4cc6ed6 Mon Sep 17 00:00:00 2001 From: Dmitry Kovalev Date: Thu, 14 Nov 2013 13:37:18 -0800 Subject: [PATCH] Removing unused coefband_trans_8x8plus array from VP9Decompressor. Change-Id: Ic1367d767705377402ebfec0705f9f553a834400 --- vp9/decoder/vp9_decodframe.c | 7 ------- vp9/decoder/vp9_onyxd_int.h | 1 - 2 files changed, 8 deletions(-) diff --git a/vp9/decoder/vp9_decodframe.c b/vp9/decoder/vp9_decodframe.c index efa7df903..2d9b8f31c 100644 --- a/vp9/decoder/vp9_decodframe.c +++ b/vp9/decoder/vp9_decodframe.c @@ -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; diff --git a/vp9/decoder/vp9_onyxd_int.h b/vp9/decoder/vp9_onyxd_int.h index e29b453ff..d3d29e98d 100644 --- a/vp9/decoder/vp9_onyxd_int.h +++ b/vp9/decoder/vp9_onyxd_int.h @@ -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_ -- 2.40.0