Home
last modified time | relevance | path

Searched refs:frameLength (Results 1 – 7 of 7) sorted by relevance

/frameworks/av/media/libeffects/lvm/tests/
Dlvmtest.cpp86 int frameLength = 256; member
619 const int frameLength = plvmConfigParams->frameLength; in lvmExecute() local
624 (LVM_UINT16)frameLength, /* Number of samples to read */ in lvmExecute()
640 const int frameLength = plvmConfigParams->frameLength; in lvmMainProcess() local
654 std::vector<short> in(frameLength * maxChannelCount); in lvmMainProcess()
655 std::vector<short> out(frameLength * maxChannelCount); in lvmMainProcess()
656 std::vector<float> floatIn(frameLength * channelCount); in lvmMainProcess()
657 std::vector<float> floatOut(frameLength * memAllocChCount); in lvmMainProcess()
660 while (fread(in.data(), ioFrameSize, frameLength, finp) == (size_t)frameLength) { in lvmMainProcess()
663 sizeof(short), frameLength * ioFrameSize); in lvmMainProcess()
[all …]
/frameworks/av/media/libstagefright/rtsp/
DARTPAssembler.cpp95 unsigned frameLength = nal->size() + 7; in MakeADTSCompoundFromAACFrames() local
106 dst[3] = ((channelConfig & 3) << 6) | (frameLength >> 11); in MakeADTSCompoundFromAACFrames()
108 dst[4] = (frameLength >> 3) & 0xff; in MakeADTSCompoundFromAACFrames()
109 dst[5] = (frameLength & 7) << 5; in MakeADTSCompoundFromAACFrames()
/frameworks/wilhelm/tools/permute/
Dpermute.c79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget) in split() argument
81 if (frameLength <= 0) in split()
84 if ((frameLength <= s->mMinSegmentLengthFrames*2) || (segmentBudget <= 1)) { in split()
88 seg->mFrameLength = frameLength; in split()
93 unsigned slop = frameLength - s->mMinSegmentLengthFrames*2; in split()
102 assert(leftLength + rightLength == frameLength); in split()
/frameworks/av/media/libstagefright/include/media/stagefright/
DAACWriter.h68 status_t writeAdtsHeader(uint32_t frameLength);
/frameworks/av/media/libstagefright/
DAACWriter.cpp238 status_t AACWriter::writeAdtsHeader(uint32_t frameLength) { in writeAdtsHeader() argument
264 const uint32_t kFrameLength = frameLength; in writeAdtsHeader()
/frameworks/av/media/libstagefright/mpeg2ts/
DESQueue.cpp363 const uint8_t *ptr, size_t size, size_t *frameLength) { in IsSeeminglyValidADTSHeader() argument
393 *frameLength = frameLengthInHeader; in IsSeeminglyValidADTSHeader()
522 size_t frameLength; in appendData() local
525 &ptr[i], size - i, &frameLength)) { in appendData()
541 if (frameLength != size - startOffset) { in appendData()
544 frameLength, size - startOffset); in appendData()
/frameworks/av/media/codec2/components/aac/
DC2SoftAacEnc.cpp353 mNumBytesPerInputFrame = encInfo.frameLength * channelCount * sizeof(int16_t); in process()