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

1 2 3 4 5 6 7 8 9

  /external/aac/libDRCdec/src/
drcGainDec_init.h 107 initGainDec(HANDLE_DRC_GAIN_DECODER hGainDec, const int frameSize,
110 void initDrcGainBuffers(const int frameSize, DRC_GAIN_BUFFERS* drcGainBuffers);
drcDec_reader.h 113 const int frameSize, const int deltaTminDefault,
118 HANDLE_UNI_DRC_CONFIG hUniDrcConfig, const int frameSize,
drcGainDec_init.cpp 187 initGainDec(HANDLE_DRC_GAIN_DECODER hGainDec, const int frameSize,
191 if (frameSize < 1) {
195 hGainDec->frameSize = frameSize;
197 if (hGainDec->frameSize * 1000 < sampleRate) {
202 if (hGainDec->deltaTminDefault > hGainDec->frameSize) {
229 void initDrcGainBuffers(const int frameSize, DRC_GAIN_BUFFERS* drcGainBuffers) {
242 frameSize - 1;
254 drcGainBuffers->dummyLnb.linearNode[i][0].time = frameSize - 1;
289 if (pCoef->drcFrameSize != hGainDec->frameSize) {
    [all...]
drcGainDec_process.cpp 202 const int frameSize, const GAIN_INTERPOLATION_TYPE gainInterpolationType,
223 if ((timePrev >= (frameSize - 1)) ||
236 stop = fMin(time, (SHORT)(frameSize - 1)) - timePrev + 1;
265 offset = hGainDec->frameSize;
270 hGainDec->frameSize) /* if delaySamples is too big, NUM_LNB_FRAMES
313 nodePrevious.time -= hGainDec->frameSize;
340 hGainDec->frameSize, pLnb->gainInterpolationType,
342 lnbPointerDiff * hGainDec->frameSize + delaySamples + offset, 1,
380 offset = hGainDec->frameSize;
385 hGainDec->frameSize) /* if delaySamples is too big, NUM_LNB_FRAME
    [all...]
drcDec_gainDecoder.cpp 173 drcDec_GainDecoder_Init(HANDLE_DRC_GAIN_DECODER hGainDec, const int frameSize,
177 err = initGainDec(hGainDec, frameSize, sampleRate);
180 initDrcGainBuffers(hGainDec->frameSize, &hGainDec->drcGainBuffers);
303 hUniDrcGain->gainNode[seq][0].time = hGainDec->frameSize - 1;
310 const int frameSize,
353 if (frameSize == 1024)
356 stepsize = (LONG)stepsize / frameSize;
361 n_min, frameSize);
363 for (i = 0; i < frameSize; i++) {
438 return hGainDec->frameSize;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcSubtarget.cpp 76 int SparcSubtarget::getAdjustedFrameSize(int frameSize) const {
81 frameSize += 128;
84 frameSize = alignTo(frameSize, 16);
93 frameSize += 92;
97 frameSize = alignTo(frameSize, 8);
99 return frameSize;
  /external/aac/libPCMutils/include/
pcm_utils.h 110 const UINT channels, const UINT frameSize,
113 const UINT channels, const UINT frameSize,
116 const UINT channels, const UINT frameSize,
120 const UINT channels, const UINT frameSize,
123 const UINT channels, const UINT frameSize,
126 const UINT channels, const UINT frameSize,
129 const UINT channels, const UINT frameSize,
  /external/aac/libPCMutils/src/
pcm_utils.cpp 110 const UINT channels, const UINT frameSize,
116 In += frameSize;
122 const UINT channels, const UINT frameSize,
128 In += frameSize;
134 const UINT channels, const UINT frameSize,
140 In += frameSize;
146 const UINT channels, const UINT frameSize,
151 for (UINT sample = 0; sample < frameSize; sample++) {
159 const UINT channels, const UINT frameSize,
164 for (UINT sample = 0; sample < frameSize; sample++)
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
IvfReader.java 108 int frameSize = mFrameSizes[frameIndex];
111 byte[] frame = new byte[frameSize];
170 int frameSize = changeEndianness(mIvfFile.readInt());
172 mFrameSizes[i] = frameSize;
174 frameHead += FRAME_HEADER_SIZE + frameSize;
  /frameworks/wilhelm/src/android/
AacBqToPcmCbRenderer.cpp 40 size_t frameSize = 0;
57 frameSize = (header[0] & 0x3) << 11 | header[1] << 3 | header[2] >> 5;
64 if (headSize > frameSize) {
65 SL_LOGE("AacBqToPcmCbRenderer::getAdtsFrameSize() returns 0 (frameSize %zu < headSize %zu)",
66 frameSize, headSize);
70 SL_LOGV("AacBqToPcmCbRenderer::getAdtsFrameSize() returns %u", frameSize);
72 return frameSize;
87 size_t frameSize = 0;
95 if ((frameSize = getAdtsFrameSize((uint8_t *)data, offset, size)) == 0) {
100 offset += frameSize;
    [all...]
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 50 size_t frameSize = 0;
75 frameSize = (header[0] & 0x3) << 11 | header[1] << 3 | header[2] >> 5;
82 if (headSize > frameSize) {
83 SL_LOGE("AacAdtsExtractor:: getFrameSize() returns 0 (frameSize %zu < headSize %zu)",
84 frameSize, headSize);
88 //SL_LOGV("AacAdtsExtractor:: getFrameSize() returns %u", frameSize);
90 return frameSize;
137 size_t frameSize;
138 if ((frameSize = getFrameSize(mDataSource, offset)) == 0) {
139 // Usually frameSize == 0 due to EOS is benign (and getFrameSize() doesn't SL_LOGE)
    [all...]
  /frameworks/av/media/libnbaio/
NBAIO.cpp 70 size_t frameSize = Format_frameSize(mFormat);
71 ALOG_ASSERT(frameSize > 0 && frameSize <= 8);
76 double buffer[((frameSize * block) + sizeof(double) - 1) / sizeof(double)];
106 size_t frameSize = Format_frameSize(mFormat);
107 ALOG_ASSERT(frameSize > 0 && frameSize <= 8);
112 double buffer[((frameSize * block) + sizeof(double) - 1) / sizeof(double)];
  /frameworks/av/media/extractors/amr/
AMRExtractor.cpp 93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
96 frameSize = (frameSize + 7) / 8 + 1;
98 return frameSize;
102 off64_t offset, bool isWide, size_t *frameSize) {
113 *frameSize = getFrameSize(isWide, FT);
114 if (*frameSize == 0) {
165 size_t frameSize, numFrames = 0;
170 status_t status = getFrameSizeByOffset(source, offset, mIsWide, &frameSize);
183 offset += frameSize;
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
EC3TrackImpl.java 31 int frameSize;
66 long skipped = inputStream.skip(bsi.frameSize);
67 assert skipped == bsi.frameSize;
109 frameSize += bsi.frameSize;
188 entry.frameSize = 2 * (frmsiz + 1);
218 entry.frameSize *= (6 / numberOfBlocksPerSyncFrame);
387 entry.bitrate = (int) (((double) entry.samplerate) / 1536.0 * entry.frameSize * 8);
393 int read = frameSize;
395 while (frameSize == read)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/test/
amrnbdec_test.cpp 119 int32_t frameSize = kFrameSizes[frameType];
120 bytesRead = fread(inputBuf, 1, frameSize, fpInput);
121 if (bytesRead != frameSize) break;
  /cts/apps/CtsVerifier/jni/audio_loopback/audio_utils/
fifo.h 52 // frameSize Size of each frame in bytes.
54 void audio_utils_fifo_init(struct audio_utils_fifo *fifo, size_t frameCount, size_t frameSize,
  /external/drrickorang/LoopbackApp/app/src/main/jni/audio_utils/
fifo.h 52 // frameSize Size of each frame in bytes.
54 void audio_utils_fifo_init(struct audio_utils_fifo *fifo, size_t frameCount, size_t frameSize,
  /external/libxcam/plugins/smart/dvs/libdvs/
libdvs.cpp 50 cv::Size frameSize;
51 frameSize.width = width;
52 frameSize.height = height;
64 _videoStab->setFrameSize(frameSize);
stabilizer.h 77 cv::Size trimedVideoSize(cv::Size frameSize);
80 void setFrameSize(cv::Size frameSize);
  /frameworks/av/media/libstagefright/rtsp/
AAMRAssembler.cpp 93 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT];
96 frameSize = (frameSize + 7) / 8 + 1;
98 return frameSize;
193 size_t frameSize = getFrameSize(mIsWide, (toc >> 3) & 0x0f);
195 if (offset + frameSize - 1 > buffer->size()) {
206 buffer->data() + offset, frameSize - 1);
208 offset += frameSize - 1;
209 dstOffset += frameSize - 1;
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
CachedFrameManager.java 101 int frameSize = frame.getFormat().getSize();
102 if (frameSize > mStorageCapacity) {
107 int newStorageSize = mStorageSize + frameSize;
110 newStorageSize = mStorageSize + frameSize;
  /frameworks/av/media/extractors/aac/
AACExtractor.cpp 100 size_t frameSize = 0;
121 frameSize = (header[0] & 0x3) << 11 | header[1] << 3 | header[2] >> 5;
125 if (headSize > frameSize) {
132 return frameSize;
157 size_t frameSize = 0;
162 if ((frameSize = getAdtsFrameLength(source, offset, NULL)) == 0) {
170 offset += frameSize;
293 size_t frameSize, frameSizeWithoutHeader, headerSize;
294 if ((frameSize = getAdtsFrameLength(mDataSource, mOffset, &headerSize)) == 0) {
304 frameSizeWithoutHeader = frameSize - headerSize
    [all...]
  /packages/apps/Camera2/src/com/android/camera/
PanoUtil.java 46 final int frameSize = width * height;
49 int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;
  /packages/apps/LegacyCamera/src/com/android/camera/panorama/
PanoUtil.java 46 final int frameSize = width * height;
49 int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;
  /frameworks/av/include/private/media/
AudioTrackShared.h 207 Proxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize, bool isOut,
240 ClientProxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize,
361 size_t frameSize, bool clientInServer = false)
362 : ClientProxy(cblk, buffers, frameCount, frameSize, true /*isOut*/,
418 size_t frameSize);
474 size_t frameSize)
475 : ClientProxy(cblk, buffers, frameCount, frameSize,
495 ServerProxy(audio_track_cblk_t* cblk, void *buffers, size_t frameCount, size_t frameSize,
571 size_t frameSize, bool clientInServer = false, uint32_t sampleRate = 0)
572 : ServerProxy(cblk, buffers, frameCount, frameSize, true /*isOut*/, clientInServer)
    [all...]

Completed in 821 milliseconds

1 2 3 4 5 6 7 8 9