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 343 int64_t timestampUs;
344 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
345 if (timestampUs > mEstimatedDurationUs) {
346 mEstimatedDurationUs = timestampUs;
349 previousPausedDurationUs += (timestampUs - maxTimestampUs - mFrameDurationUs);
352 timestampUs -= previousPausedDurationUs;
354 timestampUs, previousPausedDurationUs);
355 if (timestampUs > maxTimestampUs) {
356 maxTimestampUs = timestampUs;
AudioSource.cpp 349 const int64_t timestampUs =
360 mPrevSampleTimeUs = timestampUs;
MPEG4Writer.cpp 74 void bufferChunk(int64_t timestampUs);
    [all...]
OMXCodec.cpp     [all...]
  /external/chromium_org/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 214 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
216 timestampUs, memoryInfo);
237 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
239 timestampUs, memoryInfo);
261 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
267 savePerfString(name, id, type, timestampUs, memInfo);
276 * @param timestampUs The time stamp at which this event was recorded
280 private static void savePerfString(String name, long id, EventType type, long timestampUs,
285 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 571 long timestampUs = mediaExtractor.getSampleTime();
574 || timestampUs == lastBufferTimestampUs;
578 timestampUs,
    [all...]

Completed in 275 milliseconds