]> granicus.if.org Git - libvpx/commitdiff
Removing unused coefband_trans_8x8plus array from VP9Decompressor.
authorDmitry Kovalev <dkovalev@google.com>
Thu, 14 Nov 2013 21:37:18 +0000 (13:37 -0800)
committerDmitry Kovalev <dkovalev@google.com>
Thu, 14 Nov 2013 21:37:18 +0000 (13:37 -0800)
Change-Id: Ic1367d767705377402ebfec0705f9f553a834400

vp9/decoder/vp9_decodframe.c
vp9/decoder/vp9_onyxd_int.h

index efa7df90313670ffe3c1b6ee643661396cbb21e1..2d9b8f31ca633f3909049058897e59eed6f3200c 100644 (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;
index e29b453ff66046496dbcb2a90e7b4c0642dfd6f8..d3d29e98dedc1086cd7894c55a5e4e43084e796d 100644 (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_