/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.h | 15 void vp9_fht4x4(TX_TYPE tx_type, const int16_t *input, int16_t *output, 18 void vp9_fht8x8(TX_TYPE tx_type, const int16_t *input, int16_t *output, 21 void vp9_fht16x16(TX_TYPE tx_type, const int16_t *input, int16_t *output,
|
vp9_dct.c | 155 int stride, int tx_type) { 160 const transform_2d ht = FHT_4[tx_type]; 563 int stride, int tx_type) { 568 const transform_2d ht = FHT_8[tx_type]; 956 int stride, int tx_type) { 961 const transform_2d ht = FHT_16[tx_type]; [all...] |
vp9_encodemb.c | 533 TX_TYPE tx_type; local 577 tx_type = get_tx_type_16x16(pd->plane_type, xd); 578 scan = get_scan_16x16(tx_type); 579 iscan = get_iscan_16x16(tx_type); 592 vp9_fht16x16(tx_type, src_diff, coeff, bw * 4); 598 vp9_iht16x16_add(tx_type, dqcoeff, dst, pd->dst.stride, *eob); 601 tx_type = get_tx_type_8x8(pd->plane_type, xd); 602 scan = get_scan_8x8(tx_type); 603 iscan = get_iscan_8x8(tx_type); [all...] |
vp9_rdopt.c | 1078 TX_TYPE tx_type; local 1110 dst, pd->dst.stride, tx_type); local [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_scan.h | 73 static INLINE const int16_t* get_scan_4x4(TX_TYPE tx_type) { 74 switch (tx_type) { 84 static INLINE void get_scan_nb_4x4(TX_TYPE tx_type, 86 switch (tx_type) { 102 static INLINE const int16_t* get_iscan_4x4(TX_TYPE tx_type) { 103 switch (tx_type) { 113 static INLINE const int16_t* get_scan_8x8(TX_TYPE tx_type) [all...] |
vp9_idct.h | 99 void vp9_iht4x4_add(TX_TYPE tx_type, const int16_t *input, uint8_t *dest, 101 void vp9_iht8x8_add(TX_TYPE tx_type, const int16_t *input, uint8_t *dest, 103 void vp9_iht16x16_add(TX_TYPE tx_type, const int16_t *input, uint8_t *dest,
|
vp9_enums.h | 77 } TX_TYPE;
|
vp9_blockd.h | 234 extern const TX_TYPE mode2txfm_map[MB_MODE_COUNT]; 236 static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type, 250 static INLINE TX_TYPE get_tx_type_8x8(PLANE_TYPE plane_type, 256 static INLINE TX_TYPE get_tx_type_16x16(PLANE_TYPE plane_type,
|
vp9_idct.c | 284 int tx_type) { 299 IHT_4[tx_type].rows(input, outptr); 308 IHT_4[tx_type].cols(temp_in, temp_out); 399 int tx_type) { 404 const transform_2d ht = IHT_8[tx_type]; 817 int tx_type) { 822 const transform_2d ht = IHT_16[tx_type]; [all...] |
vp9_reconintra.c | 21 const TX_TYPE mode2txfm_map[MB_MODE_COUNT] = {
|
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodframe.c | 249 TX_TYPE tx_type; local 257 tx_type = get_tx_type_4x4(plane_type, xd, block); 258 if (tx_type == DCT_DCT) 261 vp9_iht4x4_16_add(dqcoeff, dst, stride, tx_type); 264 tx_type = get_tx_type_8x8(plane_type, xd); 265 vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); 268 tx_type = get_tx_type_16x16(plane_type, xd); 269 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob); 272 tx_type = DCT_DCT [all...] |