HomeSort by relevance Sort by last modified time
    Searched refs:DCT_MAX_VALUE (Results 1 - 6 of 6) sorted by null

  /external/libvpx/libvpx/vp8/common/
entropy.h 56 #define DCT_MAX_VALUE 2048
  /external/libvpx/libvpx/vp9/common/
vp9_entropy.h 78 #define DCT_MAX_VALUE 16384
  /external/libvpx/libvpx/test/
dct32x32_test.cc 231 EXPECT_GE(4 * DCT_MAX_VALUE << (bit_depth_ - 8), abs(output_ref_block[j]))
232 << "Error: 32x32 FDCT C has coefficient larger than 4*DCT_MAX_VALUE";
233 EXPECT_GE(4 * DCT_MAX_VALUE << (bit_depth_ - 8), abs(output_block[j]))
235 << "4*DCT_MAX_VALUE";
fdct4x4_test.cc 211 EXPECT_GE(4 * DCT_MAX_VALUE << (bit_depth_ - 8), abs(output_block[j]))
212 << "Error: 4x4 FDCT has coefficient larger than 4*DCT_MAX_VALUE";
dct16x16_test.cc 427 EXPECT_GE(4 * DCT_MAX_VALUE << (bit_depth_ - 8), abs(output_block[j]))
428 << "Error: 16x16 FDCT has coefficient larger than 4*DCT_MAX_VALUE";
  /external/libvpx/libvpx/vp8/encoder/
tokenize.c 33 dct_value_tokens + DCT_MAX_VALUE;
34 const short *const vp8_dct_value_cost_ptr = dct_value_cost + DCT_MAX_VALUE;
46 TOKENVALUE *t = dct_value_tokens + DCT_MAX_VALUE;
49 int i = -DCT_MAX_VALUE;
92 dct_value_cost[i + DCT_MAX_VALUE] = cost;
98 while (++i < DCT_MAX_VALUE);
100 vp8_dct_value_tokens_ptr = dct_value_tokens + DCT_MAX_VALUE;
101 vp8_dct_value_cost_ptr = dct_value_cost + DCT_MAX_VALUE;

Completed in 361 milliseconds