OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:kmaxnumsamplesperframe
(Results
1 - 6
of
6
) sorted by null
/frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h
54
kMaxNumSamplesPerFrame
= 1152,
55
kMaxInputBufferSize =
kMaxNumSamplesPerFrame
* sizeof(int16_t) * 2,
SoftFlacEncoder.cpp
70
mInputBufferPcm32 = (FLAC__int32*) malloc(sizeof(FLAC__int32) * 2 *
kMaxNumSamplesPerFrame
);
309
CHECK_LE(nbInputSamples, 2 *
kMaxNumSamplesPerFrame
);
/frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.h
45
kMaxNumSamplesPerFrame
= 16384,
SoftG711.cpp
89
def.nBufferSize =
kMaxNumSamplesPerFrame
* sizeof(int16_t);
214
if (inHeader->nFilledLen >
kMaxNumSamplesPerFrame
) {
/frameworks/av/media/libstagefright/codecs/gsm/dec/
SoftGSM.h
49
kMaxNumSamplesPerFrame
= 16384,
SoftGSM.cpp
87
def.nBufferSize =
kMaxNumSamplesPerFrame
* sizeof(int16_t);
204
if (inHeader->nFilledLen >
kMaxNumSamplesPerFrame
) {
Completed in 190 milliseconds