HomeSort by relevance Sort by last modified time
    Searched refs:frameLength (Results 1 - 25 of 41) 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 196 INT framelength; /* used frame size */ member in struct:AACENC_CONFIG
229 * \param frameLength the frameLength to be used for the AAC encoder
242 INT frameLength,
metadata_main.cpp 406 const UINT frameLength,
422 for (nFrames=0, delay=audioDelay-frameLength; delay>0; delay-=frameLength, nFrames++);
469 frameLength,
aacenc.cpp 111 INT framelength,
119 INT frameLength,
131 while ( (frameLength & ~((1<<(shift+1))-1)) == frameLength
139 averageBitsPerFrame = (bitRate*(frameLength>>shift)) / (coreSamplingRate>>shift) / nSubFrames;
152 bitRate = FDKmax(bitRate, ((((40 * nChannels) + transportBits) * (coreSamplingRate)) / frameLength) );
155 bitRate = FDKmin(bitRate, ((nChannelsEff * MIN_BUFSIZE_PER_EFF_CHAN)*(coreSamplingRate>>shift)) / (frameLength>>shift)) ;
283 config->framelength = -1; /* Framesize not configured */
430 config->framelength,
451 switch (config->framelength)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
unit_test.cc 258 unsigned int frameLength = 0;
263 while (frameLength == 0)
283 frameLength = WaitForDecodedFrame();
288 EXPECT_TRUE(frameLength == _lengthSourceFrame);
327 int frameLength = WaitForDecodedFrame();
329 return ret == WEBRTC_VIDEO_CODEC_OK ? frameLength : ret;
346 unsigned int frameLength = WaitForDecodedFrame();
347 assert(ret == WEBRTC_VIDEO_CODEC_OK && (frameLength == 0 || frameLength
349 EXPECT_TRUE(ret == WEBRTC_VIDEO_CODEC_OK && (frameLength == 0 || frameLengt
    [all...]
  /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-fm-22k/lib_src/
eas_data.h 72 EAS_U32 frameLength;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_data.h 72 EAS_U32 frameLength;
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 74 EAS_U32 frameLength;
  /frameworks/av/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/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/interface/
isacfix.h 356 * - frameLength : Length of frame in packet (in samples)
361 int16_t* frameLength);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/interface/
isac.h 316 * - frameLength : Length of frame in packet (in samples)
323 int16_t* frameLength);
628 * - frameLength : Length of frame in packet (in samples)
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/interface/
isacfix.h 356 * - frameLength : Length of frame in packet (in samples)
361 WebRtc_Word16* frameLength);
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/interface/
isac.h 319 * - frameLength : Length of frame in packet (in samples)
326 WebRtc_Word16* frameLength);
639 * - frameLength : Length of frame in packet (in samples)
  /hardware/ti/omap3/omx/audio/src/openmax_il/g711_dec/src/
OMX_G711Dec_Utils.c     [all...]
  /external/aac/libSBRenc/include/
sbr_encoder.h 316 * \param frameLength Input: Encoder frameLength. output core encoder frameLength.
335 INT *frameLength,
  /frameworks/av/media/libstagefright/
AACWriter.cpp 255 status_t AACWriter::writeAdtsHeader(uint32_t frameLength) {
281 const uint32_t kFrameLength = frameLength;

Completed in 838 milliseconds

1 2