HomeSort by relevance Sort by last modified time
    Searched refs:frameLength (Results 1 - 25 of 35) sorted by null

1 2

  /external/aac/libAACdec/src/
ldfiltbank.h 105 const int frameLength
  /external/aac/libAACenc/src/
bandwidth.h 102 INT frameLength,
transform.h 108 * \param frameLength length of the block.
118 const INT frameLength,
transform.cpp 107 const INT frameLength,
134 tl = frameLength;
140 int offset = (windowShape == LOL_WINDOW) ? ((frameLength * 3)>>2) : 0;
141 fl = frameLength - offset;
142 fr = frameLength - offset;
146 fl = frameLength >> 3;
147 fr = frameLength;
150 fl = frameLength;
151 fr = frameLength >> 3;
154 fl = fr = frameLength >> 3
    [all...]
bandwidth.cpp 197 const INT frameLength,
206 switch (frameLength) {
254 switch (frameLength) {
290 INT frameLength,
361 frameLength,
metadata_main.h 140 * \param frameLength Number of samples to be processes within one frame.
155 const UINT frameLength,
aacenc.h 201 INT framelength; /* used frame size */ member in struct:AACENC_CONFIG
236 * \param frameLength Number of audio samples in one frame.
243 const INT frameLength,
251 * \param frameLength Number of audio samples in one frame.
258 const INT frameLength,
266 * \param frameLength the frameLength to be used for the AAC encoder
279 INT frameLength,
aacenc.cpp 112 const INT frameLength,
117 while ((frameLength & ~((1 << (shift + 1)) - 1)) == frameLength
123 return (bitRate*(frameLength>>shift)) / (samplingRate>>shift);
128 const INT frameLength,
133 while ((frameLength & ~((1 << (shift + 1)) - 1)) == frameLength
139 return (bitsPerFrame * (samplingRate>>shift)) / ( frameLength>>shift) ;
144 INT framelength,
152 INT frameLength,
    [all...]
metadata_main.cpp 406 const UINT frameLength,
422 for (nFrames=0, delay=audioDelay-frameLength; delay>0; delay-=frameLength, nFrames++);
469 frameLength,
  /external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
WebSocketReader.java 72 private long frameLength;
138 frameLength = b1 & B1_MASK_LENGTH;
139 if (frameLength == PAYLOAD_SHORT) {
140 frameLength = source.readShort() & 0xffffL; // Value is unsigned.
141 } else if (frameLength == PAYLOAD_LONG) {
142 frameLength = source.readLong();
143 if (frameLength < 0) {
145 "Frame length 0x" + Long.toHexString(frameLength) + " > 0x7FFFFFFFFFFFFFFF");
150 if (isControlFrame && frameLength > PAYLOAD_BYTE_MAX) {
162 if (frameBytesRead < frameLength) {
    [all...]
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_audio_alac.h 25 uint32_t frameLength;
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_audio_alac.h 10 uint32_t frameLength;
  /hardware/qcom/msm8998/kernel-headers/linux/
msm_audio_alac.h 25 uint32_t frameLength;
  /hardware/qcom/msm8998/original-kernel-headers/linux/
msm_audio_alac.h 10 uint32_t frameLength;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TypesLengths.java 116 private static int frameLength;
183 return frameLength;
278 frameLength = typeLength;
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 74 EAS_U32 frameLength;
  /frameworks/av/media/libstagefright/include/media/stagefright/
AACWriter.h 69 status_t writeAdtsHeader(uint32_t frameLength);
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.cpp 95 unsigned frameLength = nal->size() + 7;
106 dst[3] = ((channelConfig & 3) << 6) | (frameLength >> 11);
108 dst[4] = (frameLength >> 3) & 0xff;
109 dst[5] = (frameLength & 7) << 5;
  /frameworks/wilhelm/tools/permute/
permute.c 79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget)
81 if (frameLength <= 0)
84 if ((frameLength <= s->mMinSegmentLengthFrames*2) || (segmentBudget <= 1)) {
88 seg->mFrameLength = frameLength;
93 unsigned slop = frameLength - s->mMinSegmentLengthFrames*2;
102 assert(leftLength + rightLength == frameLength);
  /external/aac/libAACenc/include/
aacenc_lib.h     [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/include/
isacfix.h 349 * - frameLength : Length of frame in packet (in samples)
355 size_t* frameLength);
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/include/
isac.h 311 * - frameLength : Length of frame in packet (in samples)
318 int16_t* frameLength);
623 * - frameLength : Length of frame in packet (in samples)
  /frameworks/av/media/libstagefright/
AACWriter.cpp 238 status_t AACWriter::writeAdtsHeader(uint32_t frameLength) {
264 const uint32_t kFrameLength = frameLength;
  /external/aac/libSBRenc/include/
sbr_encoder.h 327 * \param frameLength Input: Encoder frameLength. output core encoder frameLength.
346 INT *frameLength,
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 203 const uint8_t *ptr, size_t size, size_t *frameLength) {
233 *frameLength = frameLengthInHeader;
361 size_t frameLength;
364 &ptr[i], size - i, &frameLength)) {
380 if (frameLength != size - startOffset) {
383 frameLength, size - startOffset);
    [all...]

Completed in 3526 milliseconds

1 2