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

  /frameworks/av/media/libstagefright/
AMRWriter.cpp 230 int64_t timestampUs;
231 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
232 if (timestampUs > mEstimatedDurationUs) {
233 mEstimatedDurationUs = timestampUs;
236 previousPausedDurationUs += (timestampUs - maxTimestampUs - 20000);
239 timestampUs -= previousPausedDurationUs;
241 timestampUs, previousPausedDurationUs);
242 if (timestampUs > maxTimestampUs) {
243 maxTimestampUs = timestampUs;
AACWriter.cpp 344 int64_t timestampUs;
345 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
346 if (timestampUs > mEstimatedDurationUs) {
347 mEstimatedDurationUs = timestampUs;
350 previousPausedDurationUs += (timestampUs - maxTimestampUs - mFrameDurationUs);
353 timestampUs -= previousPausedDurationUs;
355 timestampUs, previousPausedDurationUs);
356 if (timestampUs > maxTimestampUs) {
357 maxTimestampUs = timestampUs;
AudioSource.cpp 349 const int64_t timestampUs =
360 mPrevSampleTimeUs = timestampUs;
MPEG4Writer.cpp 79 void bufferChunk(int64_t timestampUs);
    [all...]
OMXCodec.cpp     [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 222 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
224 timestampUs, memoryInfo);
246 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
248 timestampUs, memoryInfo);
270 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
276 savePerfString(name, id, type, timestampUs, memInfo);
285 * @param timestampUs The time stamp at which this event was recorded
289 private static void savePerfString(String name, long id, EventType type, long timestampUs,
294 traceObj.put("ts", timestampUs);
  /frameworks/av/media/libstagefright/webm/
WebmFrameThread.cpp 325 int64_t timestampUs = 0xdeadbeef;
343 CHECK(md->findInt64(kKeyTime, &timestampUs));
345 mStartTimeUs = timestampUs;
347 timestampUs -= mStartTimeUs;
350 lastDurationUs = timestampUs - lastTimestampUs;
351 lastTimestampUs = timestampUs;
360 int64_t durExcludingEarlierPausesUs = timestampUs - previousPausedDurationUs;
367 timestampUs -= previousPausedDurationUs;
368 CHECK_GE(timestampUs, 0ll);
375 timestampUs * 1000 / mTimeCodeScale
    [all...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
MediaCodecVideoDecoder.java 56 public long timestampUs;
58 Frame(ByteBuffer buffer, long timestampUs) {
60 this.timestampUs = timestampUs;
296 frame.timestampUs, flags);
  /frameworks/av/cmds/stagefright/
stagefright.cpp 243 int64_t timestampUs;
244 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
249 int64_t diff = timestampUs - seekTimeUs;
256 || (gReproduceBug == 5 && timestampUs < 0)) {
258 seekTimeUs / 1E6, timestampUs / 1E6);
266 timestampUs, timestampUs / 1E6);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 616 long timestampUs = mediaExtractor.getSampleTime();
619 || timestampUs == lastBufferTimestampUs;
623 timestampUs,
    [all...]

Completed in 1641 milliseconds