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

  /frameworks/av/media/libstagefright/
AMRWriter.cpp 228 int64_t timestampUs;
229 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
230 if (timestampUs > mEstimatedDurationUs) {
231 mEstimatedDurationUs = timestampUs;
234 previousPausedDurationUs += (timestampUs - maxTimestampUs - 20000);
237 timestampUs -= previousPausedDurationUs;
239 timestampUs, previousPausedDurationUs);
240 if (timestampUs > maxTimestampUs) {
241 maxTimestampUs = timestampUs;
AACWriter.cpp 341 int64_t timestampUs;
342 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
343 if (timestampUs > mEstimatedDurationUs) {
344 mEstimatedDurationUs = timestampUs;
347 previousPausedDurationUs += (timestampUs - maxTimestampUs - mFrameDurationUs);
350 timestampUs -= previousPausedDurationUs;
352 timestampUs, previousPausedDurationUs);
353 if (timestampUs > maxTimestampUs) {
354 maxTimestampUs = timestampUs;
AudioSource.cpp 345 const int64_t timestampUs =
356 mPrevSampleTimeUs = timestampUs;
MPEG4Writer.cpp 65 void bufferChunk(int64_t timestampUs);
    [all...]
OMXCodec.cpp     [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/common/
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/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);

Completed in 206 milliseconds