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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
FragmentedMp4Builder.java 137 long startSample = startSamples[cycle];
141 // if startSample == endSample the cycle is empty!
142 if (startSample != endSample) {
143 boxes.add(createMoof(startSample, endSample, track, sequence));
144 boxes.add(createMdat(startSample, endSample, track, sequence++));
172 protected Box createMdat(final long startSample, final long endSample, final Track track, final int i) {
187 for (ByteBuffer sample : getSamples(startSample, endSample, track, i)) {
198 List<ByteBuffer> bbs = getSamples(startSample, endSample, track, i);
238 protected Box createTfhd(long startSample, long endSample, Track track, int sequenceNumber) {
248 protected Box createMfhd(long startSample, long endSample, Track track, int sequenceNumber)
    [all...]
  /external/aac/libSBRdec/src/
lpp_tran.cpp 221 const int startSample,
228 for (i = 0; i < stopSample - startSample; i++) {
235 qmfBufferReal[i + startSample][hiBand] = accu1 + accu2;
294 int startSample;
306 startSample = firstSlotOffs * timeStep;
329 for (i = startSample; i < stopSampleClear; i++) {
334 for (i = startSample; i < stopSampleClear; i++) {
367 v_k_master0, startSample, stopSample);
749 for (i = startSample; i < stopSample; i++) {
767 for (i = startSample; i < stopSample; i++)
    [all...]
  /external/deqp/framework/common/
tcuTestLog.cpp 164 m_log->startSample();
498 void TestLog::startSample (void)
  /cts/tests/tests/media/src/android/media/cts/
DecoderTestAacDrc.java 220 final int startSample = 2 * 2048 * numChannels; // exclude signal on- & offset to
221 final int stopSample = decSamples.length - startSample; // ... measure only the stationary
224 double nrgFull = getEnergy(decSamples, startSample, stopSample);
235 double nrgHd = getEnergy(decSamples, startSample, stopSample);

Completed in 8094 milliseconds