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

  /external/libvpx/libvpx/vp9/common/
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
    [all...]
vp9_enums.h 98 } TX_TYPE;
vp9_idct.c 21 int tx_type) {
36 IHT_4[tx_type].rows(input, outptr);
44 IHT_4[tx_type].cols(temp_in, temp_out);
60 int tx_type) {
65 const transform_2d ht = IHT_8[tx_type];
93 int tx_type) {
98 const transform_2d ht = IHT_16[tx_type];
180 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
182 if (tx_type == DCT_DCT
    [all...]
vp9_blockd.h 207 extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
209 static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type,
219 static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type,
vp9_reconintra.c 24 const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES] = {
  /external/linux-kselftest/tools/testing/selftests/networking/timestamping/
hwtstamp_config.c 46 #define TX_TYPE(name) [HWTSTAMP_TX_ ## name] = #name
47 TX_TYPE(OFF),
48 TX_TYPE(ON),
49 TX_TYPE(ONESTEP_SYNC)
50 #undef TX_TYPE
77 fputs("Usage: hwtstamp_config if_name [tx_type rx_filter]\n"
78 "tx_type is any of (case-insensitive):\n",
99 config.tx_type = lookup_value(tx_types, N_TX_TYPES, argv[2]);
101 if (config.tx_type < 0 || config.rx_filter < 0) {
122 name = lookup_name(tx_types, N_TX_TYPES, config.tx_type);
    [all...]
  /external/libvpx/libvpx/test/
vp9_quantize_test.cc 101 const TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3); local
102 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
159 const TX_TYPE tx_type = (TX_TYPE)(i % 4); local
160 const scan_order *scan_order = &vp9_scan_orders[sz][tx_type];
217 TX_TYPE tx_type = (TX_TYPE)((i >> 2) % 3) local
280 TX_TYPE tx_type = (TX_TYPE)(i % 4); local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 762 TX_TYPE tx_type = DCT_DCT; local
784 tx_type = get_tx_type_4x4(get_plane_type(plane), xd, block);
785 scan_order = &vp9_scan_orders[TX_4X4][tx_type];
792 tx_type = get_tx_type(get_plane_type(plane), xd);
793 scan_order = &vp9_scan_orders[tx_size][tx_type];
827 if (tx_type == DCT_DCT)
830 vp9_highbd_fht16x16(src_diff, coeff, diff_stride, tx_type);
840 vp9_highbd_iht16x16_add(tx_type, dqcoeff, dst16, dst_stride, *eob,
848 if (tx_type == DCT_DCT
    [all...]
vp9_rdopt.c 1033 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
1133 const TX_TYPE tx_type = get_tx_type_4x4(PLANE_TYPE_Y, xd, block); local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 252 const TX_TYPE tx_type,
266 vp9_highbd_iht4x4_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
269 vp9_highbd_iht8x8_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
272 vp9_highbd_iht16x16_add(tx_type, dqcoeff, dst16, stride, eob, xd->bd);
285 case TX_4X4: vp9_iht4x4_add(tx_type, dqcoeff, dst, stride, eob); break;
286 case TX_8X8: vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); break;
288 vp9_iht16x16_add(tx_type, dqcoeff, dst, stride, eob);
300 case TX_4X4: vp9_iht4x4_add(tx_type, dqcoeff, dst, stride, eob); break;
301 case TX_8X8: vp9_iht8x8_add(tx_type, dqcoeff, dst, stride, eob); break
340 const TX_TYPE tx_type = local
    [all...]

Completed in 104 milliseconds