OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
77
cpi->rtcd.fdct.short4x4 =
vp8_short_fdct4x4_c
;
79
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
.
/external/libvpx/vp8/encoder/arm/armv6/
vp8_fast_fdct4x4_armv6.asm
18
; void
vp8_short_fdct4x4_c
(short *input, short *output, int pitch)
Completed in 3155 milliseconds