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

  /external/libvpx/vp8/encoder/
dct.h 26 #define vp8_fdct_short4x4 vp8_short_fdct4x4_c
37 #define vp8_fdct_fast4x4 vp8_short_fdct4x4_c
dct.c 14 void vp8_short_fdct4x4_c(short *input, short *output, int pitch) function
60 vp8_short_fdct4x4_c(input, output, pitch);
61 vp8_short_fdct4x4_c(input + 4, output + 16, pitch);
  /external/libvpx/vp8/encoder/generic/
csystemdependent.c 79 cpi->rtcd.fdct.short4x4 = vp8_short_fdct4x4_c;
81 cpi->rtcd.fdct.fast4x4 = vp8_short_fdct4x4_c;
  /external/libvpx/vp8/encoder/x86/
x86_csystemdependent.c 21 vp8_short_fdct4x4_c(input, output, pitch);
22 vp8_short_fdct4x4_c(input + 4, output + 16, pitch);
258 cpi->rtcd.fdct.short4x4 = vp8_short_fdct4x4_c;
260 cpi->rtcd.fdct.fast4x4 = vp8_short_fdct4x4_c;
  /external/libvpx/vp8/encoder/arm/neon/
fastfdct4x4_neon.asm 27 ;But, VP8 encoder only uses vp8_short_fdct4x4_c for 25th block, not vp8_fast_fdct4x4_c. That makes
28 ;it ok for assuming *input in [-255, 255] in vp8_fast_fdct4x4_c, but not ok in vp8_short_fdct4x4_c.
fastfdct8x4_neon.asm 27 ;But, VP8 encoder only uses vp8_short_fdct4x4_c for 25th block, not vp8_fast_fdct4x4_c. That makes
28 ;it ok for assuming *input in [-255, 255] in vp8_fast_fdct4x4_c, but not ok in vp8_short_fdct4x4_c.

Completed in 46 milliseconds