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

  /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_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_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_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_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...]
  /external/libvpx/libvpx/test/
fdct4x4_test.cc 35 int tx_type);
37 int tx_type);
39 void fdct4x4_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
43 void fht4x4_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
44 vp9_short_fht4x4_c(in, out, stride, tx_type);
fdct8x8_test.cc 34 int tx_type);
36 int tx_type);
38 void fdct8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
42 void fht8x8_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
43 vp9_short_fht8x8_c(in, out, stride, tx_type);
dct16x16_test.cc 263 int tx_type);
265 int tx_type);
267 void fdct16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
271 void fht16x16_ref(const int16_t *in, int16_t *out, int stride, int tx_type) {
272 vp9_short_fht16x16_c(in, out, stride, tx_type);
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_itrans4_dspr2.c 366 int dest_stride, int tx_type) {
380 switch (tx_type) {
434 printf("vp9_short_iht4x4_add_dspr2 : Invalid tx_type\n");
vp9_itrans8_dspr2.c 550 int dest_stride, int tx_type) {
564 switch (tx_type) {
615 printf("vp9_short_iht8x8_add_dspr2 : Invalid tx_type\n");
    [all...]
vp9_itrans16_dspr2.c     [all...]
  /external/libvpx/armv7a-neon/
vp9_rtcd.h 291 void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
292 void vp9_iht4x4_16_add_neon(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
295 void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
296 void vp9_iht8x8_64_add_neon(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
299 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
  /external/libvpx/libvpx/vp9/common/arm/neon/
vp9_short_iht4x4_add_neon.asm 143 ; int dest_stride, int tx_type)
148 ; r3 int tx_type)
149 ; This function will only handle tx_type of 1,2,3.
vp9_short_iht8x8_add_neon.asm 563 ; int dest_stride, int tx_type)
568 ; r3 int tx_type)
569 ; This function will only handle tx_type of 1,2,3.
  /external/libvpx/mips-dspr2/
vp9_rtcd.h 300 void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
301 void vp9_iht4x4_16_add_dspr2(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
304 void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
305 void vp9_iht8x8_64_add_dspr2(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
308 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
309 void vp9_iht16x16_256_add_dspr2(const int16_t *input, uint8_t *output, int pitch, int tx_type);
  /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...]
  /external/libvpx/armv7a/
vp9_rtcd.h 267 void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
270 void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
273 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
  /external/libvpx/generic/
vp9_rtcd.h 267 void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
270 void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
273 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
  /external/libvpx/mips/
vp9_rtcd.h 267 void vp9_iht4x4_16_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
270 void vp9_iht8x8_64_add_c(const int16_t *input, uint8_t *dest, int dest_stride, int tx_type);
273 void vp9_iht16x16_256_add_c(const int16_t *input, uint8_t *output, int pitch, int tx_type);
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_sse2.c 248 int stride, int tx_type) {
251 switch (tx_type) {
    [all...]
  /external/libvpx/libvpx/vp9/common/x86/
vp9_idct_intrin_sse2.c 275 int tx_type) {
285 switch (tx_type) {
    [all...]
  /external/valgrind/main/include/vki/
vki-linux.h 2991 int tx_type; member in struct:vki_hwtstamp_config
    [all...]

Completed in 739 milliseconds