/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
H A D | idct8x8_test.cc | 50 double temp_in[8], temp_out[8]; local 53 reference_dct_1d(temp_in, temp_out); 55 output[j*8 + i] = temp_out[j]; 59 double temp_in[8], temp_out[8]; local 62 reference_dct_1d(temp_in, temp_out); 64 output[j + i*8] = temp_out[j]; 88 double temp_in[8], temp_out[8]; local 91 reference_idct_1d(temp_in, temp_out); 93 out[j + i*8] = temp_out[j]; 97 double temp_in[8], temp_out[ local [all...] |
H A D | dct32x32_test.cc | 55 double temp_in[32], temp_out[32]; local 58 reference_32x32_dct_1d(temp_in, temp_out, 1); 60 output[j * 32 + i] = temp_out[j]; 64 double temp_in[32], temp_out[32]; local 67 reference_32x32_dct_1d(temp_in, temp_out, 1); 70 output[j + i * 32] = temp_out[j] / 4;
|
H A D | dct16x16_test.cc | 242 double temp_in[16], temp_out[16]; local 245 butterfly_16x16_dct_1d(temp_in, temp_out); 247 output[j * 16 + i] = temp_out[j]; 251 double temp_in[16], temp_out[16]; local 254 butterfly_16x16_dct_1d(temp_in, temp_out); 257 output[j + i * 16] = temp_out[j]/2;
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
H A D | vp9_itrans4_dspr2.c | 370 int16_t temp_in[4 * 4], temp_out[4]; local 391 iadst4_dspr2(outptr, temp_out); 395 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 425 iadst4_dspr2(temp_in, temp_out); 429 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4)
|
H A D | vp9_itrans8_dspr2.c | 554 int16_t temp_in[8 * 8], temp_out[8]; local 573 iadst8_dspr2(&out[i * 8], temp_out); 577 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) 606 iadst8_dspr2(temp_in, temp_out); 610 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5)
|
H A D | vp9_itrans16_dspr2.c | 1090 int16_t temp_out[16]; local 1111 iadst16(outptr, temp_out); 1115 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6) 1156 iadst16(temp_in, temp_out); 1159 clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 6)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
H A D | vp9_idct.c | 123 int16_t temp_in[4], temp_out[4]; local 136 idct4(temp_in, temp_out); 138 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 208 int16_t temp_in[8], temp_out[8]; local 221 idct8(temp_in, temp_out); 223 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 5) 295 int16_t temp_in[4], temp_out[4]; local 308 IHT_4[tx_type].cols(temp_in, temp_out); 310 dest[j * stride + i] = clip_pixel(ROUND_POWER_OF_TWO(temp_out[j], 4) 403 int16_t temp_in[8], temp_out[ local 428 int16_t temp_in[8], temp_out[8]; local 618 int16_t temp_in[16], temp_out[16]; local 821 int16_t temp_in[16], temp_out[16]; local 846 int16_t temp_in[16], temp_out[16]; local 1251 int16_t temp_in[32], temp_out[32]; local 1288 int16_t temp_in[32], temp_out[32]; local [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
H A D | vp9_dct.c | 166 int16_t temp_in[4], temp_out[4]; local 175 ht.cols(temp_in, temp_out); 177 outptr[j * 4 + i] = temp_out[j]; 184 ht.rows(temp_in, temp_out); 186 output[j + i * 4] = (temp_out[j] + 1) >> 2; 578 int16_t temp_in[8], temp_out[8]; local 585 ht.cols(temp_in, temp_out); 587 outptr[j * 8 + i] = temp_out[j]; 594 ht.rows(temp_in, temp_out); 596 output[j + i * 8] = (temp_out[ 975 int16_t temp_in[16], temp_out[16]; local 1338 int temp_in[32], temp_out[32]; local 1348 int temp_in[32], temp_out[32]; local 1366 int temp_in[32], temp_out[32]; local 1379 int temp_in[32], temp_out[32]; local [all...] |