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

  /frameworks/av/media/libstagefright/codecs/g711/dec/
SoftG711.h 45 kMaxNumSamplesPerFrame = 16384,
SoftG711.cpp 89 def.nBufferSize = kMaxNumSamplesPerFrame * sizeof(int16_t);
221 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) {
  /frameworks/av/media/libstagefright/codecs/flac/enc/
SoftFlacEncoder.h 54 kMaxNumSamplesPerFrame = 1152,
55 kMaxInputBufferSize = kMaxNumSamplesPerFrame * sizeof(int16_t) * 2,
SoftFlacEncoder.cpp 76 mInputBufferPcm32 = (FLAC__int32*) malloc(sizeof(FLAC__int32) * 2 * kMaxNumSamplesPerFrame);
315 CHECK_LE(nbInputSamples, 2 * kMaxNumSamplesPerFrame);

Completed in 366 milliseconds