/external/libvpx/libvpx/vp9/common/ |
D | vp9_idct.c | 21 int tx_type) { in vp9_iht4x4_16_add_c() argument 36 IHT_4[tx_type].rows(input, outptr); in vp9_iht4x4_16_add_c() 45 IHT_4[tx_type].cols(temp_in, temp_out); in vp9_iht4x4_16_add_c() 61 int tx_type) { in vp9_iht8x8_64_add_c() argument 66 const transform_2d ht = IHT_8[tx_type]; in vp9_iht8x8_64_add_c() 95 int tx_type) { in vp9_iht16x16_256_add_c() argument 100 const transform_2d ht = IHT_16[tx_type]; in vp9_iht16x16_256_add_c() 182 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht4x4_add() argument 184 if (tx_type == DCT_DCT) in vp9_iht4x4_add() 187 vp9_iht4x4_16_add(input, dest, stride, tx_type); in vp9_iht4x4_add() [all …]
|
D | vp9_idct.h | 52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 70 void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, 72 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, 74 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input,
|
/external/libvpx/config/mips32-dspr2/ |
D | vp9_rtcd.h | 50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 75 void vp9_iht16x16_256_add_dspr2(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 78 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 79 void vp9_iht4x4_16_add_dspr2(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 82 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 83 void vp9_iht8x8_64_add_dspr2(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/config/x86/ |
D | vp9_rtcd.h | 56 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 60 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 61 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 64 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 65 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 87 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 88 void vp9_iht16x16_256_add_sse2(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 91 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 92 void vp9_iht4x4_16_add_sse2(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); [all …]
|
/external/libvpx/config/x86_64/ |
D | vp9_rtcd.h | 56 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 57 void vp9_fht16x16_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 60 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 61 void vp9_fht4x4_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 64 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 65 void vp9_fht8x8_sse2(const int16_t *input, tran_low_t *output, int stride, int tx_type); 88 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 89 void vp9_iht16x16_256_add_sse2(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 92 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 93 void vp9_iht4x4_16_add_sse2(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); [all …]
|
/external/libvpx/config/arm64/ |
D | vp9_rtcd.h | 53 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 59 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 77 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 80 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 81 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 84 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 85 void vp9_iht8x8_64_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/config/arm-neon/ |
D | vp9_rtcd.h | 53 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 59 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 77 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 80 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 81 void vp9_iht4x4_16_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 84 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 85 void vp9_iht8x8_64_add_neon(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/libvpx/vp9/common/x86/ |
D | vp9_idct_intrin_sse2.c | 16 int tx_type) { in vp9_iht4x4_16_add_sse2() argument 24 switch (tx_type) { in vp9_iht4x4_16_add_sse2() 81 int tx_type) { in vp9_iht8x8_64_add_sse2() argument 96 switch (tx_type) { in vp9_iht8x8_64_add_sse2() 148 int stride, int tx_type) { in vp9_iht16x16_256_add_sse2() argument 155 switch (tx_type) { in vp9_iht16x16_256_add_sse2()
|
/external/libvpx/config/mips32/ |
D | vp9_rtcd.h | 50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/config/generic/ |
D | vp9_rtcd.h | 50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/config/mips64/ |
D | vp9_rtcd.h | 50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/config/arm/ |
D | vp9_rtcd.h | 50 void vp9_fht16x16_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 53 void vp9_fht4x4_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 56 void vp9_fht8x8_c(const int16_t *input, tran_low_t *output, int stride, int tx_type); 74 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *output, int pitch, int tx_type); 77 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type); 80 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int dest_stride, int tx_type);
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodemb.c | 776 TX_TYPE tx_type = DCT_DCT; in vp9_encode_block_intra() local 792 tx_type = get_tx_type_4x4(get_plane_type(plane), xd, block); in vp9_encode_block_intra() 793 scan_order = &vp9_scan_orders[TX_4X4][tx_type]; in vp9_encode_block_intra() 800 tx_type = get_tx_type(get_plane_type(plane), xd); in vp9_encode_block_intra() 801 scan_order = &vp9_scan_orders[tx_size][tx_type]; in vp9_encode_block_intra() 830 if (tx_type == DCT_DCT) in vp9_encode_block_intra() 833 vp9_highbd_fht16x16(src_diff, coeff, diff_stride, tx_type); in vp9_encode_block_intra() 840 vp9_highbd_iht16x16_add(tx_type, dqcoeff, dst, dst_stride, in vp9_encode_block_intra() 848 if (tx_type == DCT_DCT) in vp9_encode_block_intra() 851 vp9_highbd_fht8x8(src_diff, coeff, diff_stride, tx_type); in vp9_encode_block_intra() [all …]
|
D | vp9_dct.c | 531 int stride, int tx_type) { in vp9_fht4x4_c() argument 532 if (tx_type == DCT_DCT) { in vp9_fht4x4_c() 538 const transform_2d ht = FHT_4[tx_type]; in vp9_fht4x4_c() 675 int stride, int tx_type) { in vp9_fht8x8_c() argument 676 if (tx_type == DCT_DCT) { in vp9_fht8x8_c() 682 const transform_2d ht = FHT_8[tx_type]; in vp9_fht8x8_c() 761 int stride, int tx_type) { in vp9_fht16x16_c() argument 762 if (tx_type == DCT_DCT) { in vp9_fht16x16_c() 768 const transform_2d ht = FHT_16[tx_type]; in vp9_fht16x16_c() 792 int stride, int tx_type) { in vp9_highbd_fht4x4_c() argument [all …]
|
/external/libvpx/libvpx/test/ |
D | vp9_quantize_test.cc | 102 const TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); in TEST_P() local 103 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; in TEST_P() 161 const TX_TYPE tx_type = (TX_TYPE)(i % 4); in TEST_P() local 162 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; in TEST_P() 220 TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); in TEST_P() local 221 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; in TEST_P() 284 TX_TYPE tx_type = (TX_TYPE)(i % 4); in TEST_P() local 285 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type]; in TEST_P()
|
D | fdct4x4_test.cc | 35 int tx_type); 37 int tx_type); 43 int tx_type) { in fdct4x4_ref() argument 47 void fht4x4_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht4x4_ref() argument 48 vp9_fht4x4_c(in, out, stride, tx_type); in fht4x4_ref() 52 int tx_type) { in fwht4x4_ref() argument 65 void iht4x4_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht4x4_10() argument 66 vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 10); in iht4x4_10() 69 void iht4x4_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht4x4_12() argument 70 vp9_highbd_iht4x4_16_add_c(in, out, stride, tx_type, 12); in iht4x4_12()
|
D | dct16x16_test.cc | 240 int tx_type); 242 int tx_type); 260 int tx_type) { in fht16x16_ref() argument 261 vp9_fht16x16_c(in, out, stride, tx_type); in fht16x16_ref() 265 int tx_type) { in iht16x16_ref() argument 266 vp9_iht16x16_256_add_c(in, dest, stride, tx_type); in iht16x16_ref() 279 int tx_type) { in idct16x16_10_ref() argument 284 int tx_type) { in idct16x16_12_ref() argument 288 void iht16x16_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht16x16_10() argument 289 vp9_highbd_iht16x16_256_add_c(in, out, stride, tx_type, 10); in iht16x16_10() [all …]
|
D | fdct8x8_test.cc | 42 int tx_type); 44 int tx_type); 85 void fdct8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fdct8x8_ref() argument 89 void fht8x8_ref(const int16_t *in, tran_low_t *out, int stride, int tx_type) { in fht8x8_ref() argument 90 vp9_fht8x8_c(in, out, stride, tx_type); in fht8x8_ref() 102 void iht8x8_10(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_10() argument 103 vp9_highbd_iht8x8_64_add_c(in, out, stride, tx_type, 10); in iht8x8_10() 106 void iht8x8_12(const tran_low_t *in, uint8_t *out, int stride, int tx_type) { in iht8x8_12() argument 107 vp9_highbd_iht8x8_64_add_c(in, out, stride, tx_type, 12); in iht8x8_12()
|
/external/libvpx/libvpx/vp9/common/mips/msa/ |
D | vp9_idct16x16_msa.c | 17 int32_t dst_stride, int32_t tx_type) { in vp9_iht16x16_256_add_msa() argument 22 switch (tx_type) { in vp9_iht16x16_256_add_msa()
|
D | vp9_idct4x4_msa.c | 17 int32_t dst_stride, int32_t tx_type) { in vp9_iht4x4_16_add_msa() argument 24 switch (tx_type) { in vp9_iht4x4_16_add_msa()
|
D | vp9_idct8x8_msa.c | 17 int32_t dst_stride, int32_t tx_type) { in vp9_iht8x8_64_add_msa() argument 26 switch (tx_type) { in vp9_iht8x8_64_add_msa()
|
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
D | vp9_itrans4_dspr2.c | 25 int dest_stride, int tx_type) { in vp9_iht4x4_16_add_dspr2() argument 39 switch (tx_type) { in vp9_iht4x4_16_add_dspr2()
|
D | vp9_itrans8_dspr2.c | 24 int dest_stride, int tx_type) { in vp9_iht8x8_64_add_dspr2() argument 38 switch (tx_type) { in vp9_iht8x8_64_add_dspr2()
|
D | vp9_itrans16_dspr2.c | 25 int pitch, int tx_type) { in vp9_iht16x16_256_add_dspr2() argument 39 switch (tx_type) { in vp9_iht16x16_256_add_dspr2()
|
/external/libvpx/libvpx/vp9/encoder/mips/msa/ |
D | vp9_fdct4x4_msa.c | 49 int32_t tx_type) { in vp9_fht4x4_msa() argument 68 switch (tx_type) { in vp9_fht4x4_msa()
|