ref: e6b72d0119041c60fb3baab67f963638b4cc6ed6
parent: f16cde998b3c43ccda202e463b0ff72e725e9829
author: Dmitry Kovalev <[email protected]>
date: Thu Nov 14 08:37:18 EST 2013
Removing unused coefband_trans_8x8plus array from VP9Decompressor. Change-Id: Ic1367d767705377402ebfec0705f9f553a834400
--- a/vp9/decoder/vp9_decodframe.c
+++ b/vp9/decoder/vp9_decodframe.c
@@ -1304,13 +1304,6 @@
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;
--- a/vp9/decoder/vp9_onyxd_int.h
+++ b/vp9/decoder/vp9_onyxd_int.h
@@ -55,7 +55,6 @@
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_