HomeSort by relevance Sort by last modified time
    Searched defs:samplesPerFrame (Results 1 - 12 of 12) sorted by null

  /frameworks/av/media/libaaudio/examples/utils/
AAudioSimpleRecorder.h 189 int32_t samplesPerFrame = AAudioStream_getChannelCount(mStream);
191 float zeros[numFrames * samplesPerFrame];
262 int32_t samplesPerFrame = AAudioStream_getChannelCount(stream);
270 sample = audioBuffer[frameIndex * samplesPerFrame] * (1.0/32768);
282 sample = audioBuffer[frameIndex * samplesPerFrame];
AAudioSimplePlayer.h 181 int32_t samplesPerFrame = AAudioStream_getChannelCount(mStream);
183 float zeros[numFrames * samplesPerFrame];
345 int32_t samplesPerFrame = AAudioStream_getChannelCount(stream);
348 int numActiveOscilators = (samplesPerFrame > MAX_CHANNELS) ? MAX_CHANNELS : samplesPerFrame;
353 sineData->sineOscillators[i].render(&audioBuffer[i], samplesPerFrame,
361 sineData->sineOscillators[i].render(&audioBuffer[i], samplesPerFrame,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
SyncSampleIntersectFinderImpl.java 104 long samplesPerFrame = sttsEntry.getDelta(); // Assuming all audio tracks have the same number of samples per frame, which they do for all known types
107 long start = (long) Math.ceil(stretch * (refSyncSamples[i] - 1) * samplesPerFrame);
117 long samplesPerFrame = sttsEntry.getDelta(); // Assuming all audio tracks have the same number of samples per frame, which they do for all known types
123 syncSamples[i] = (long) (1 + syncSamples[i] * factor / (double) samplesPerFrame);
  /frameworks/av/media/libaaudio/src/legacy/
AudioStreamRecord.cpp 61 int32_t samplesPerFrame = (getSamplesPerFrame() == AAUDIO_UNSPECIFIED)
63 audio_channel_mask_t channelMask = audio_channel_in_mask_from_count(samplesPerFrame);
104 && (samplesPerFrame <= 2) // FAST only for mono and stereo
AudioStreamTrack.cpp 64 int32_t samplesPerFrame = (getSamplesPerFrame() == AAUDIO_UNSPECIFIED)
66 audio_channel_mask_t channelMask = audio_channel_out_mask_from_count(samplesPerFrame);
  /hardware/interfaces/media/omx/1.0/vts/functional/audio/
VtsHalMediaOmxV1_0TargetAudioEncTest.cpp 310 int32_t samplesPerFrame, int32_t nChannels,
316 int bytesCount = samplesPerFrame * nChannels * 2;
318 (int)(((float)samplesPerFrame / nSampleRate) * 1000000);
420 int32_t samplesPerFrame = 1024;
426 samplesPerFrame = 160;
432 samplesPerFrame = 160;
438 samplesPerFrame = 1024;
444 samplesPerFrame = 1152;
470 128, samplesPerFrame, nChannels,
  /external/aac/libMpegTPEnc/src/
tpenc_asc.cpp 698 int samplesPerFrame = config->samplesPerFrame;
702 ((samplesPerFrame == 960 || samplesPerFrame == 480) ? 1 : 0),
745 switch (config->samplesPerFrame) {
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.h 272 EAS_INT samplesPerFrame;
  /cts/tests/tests/media/src/android/media/cts/
AudioTrackLatencyTest.java 125 public int samplesPerFrame = 2;
140 samplesPerFrame, 1, amplitude);
151 int smallBuffSizeInFrames = smallBufferSize / (samplesPerFrame * bytesPerSample);
167 int framesWrittenTotal = samplesWrittenTotal / samplesPerFrame;
184 int framesRemaining = samplesRemaining / samplesPerFrame;
  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 814 INT samplesPerFrame = hTp->asc->m_samplesPerFrame;
820 if ((samplesPerFrame == 0) || (samplingFrequency == 0)) {
825 maxAU = hTp->burstPeriod * samplingFrequency + (samplesPerFrame * 1000 - 1);
826 maxAU = maxAU / (samplesPerFrame * 1000);
830 avgBitsPerFrame = hTp->avgBitRate * samplesPerFrame + (samplingFrequency - 1);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 287 Int samplesPerFrame[30]; /* number of samples per frame, 30->30fps */
  /external/aac/libSYS/include/
FDK_audio.h 388 int samplesPerFrame; /**< Number of PCM samples per codec frame and audio
    [all...]

Completed in 471 milliseconds