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

  /frameworks/av/media/libstagefright/
AMRWriter.cpp 217 int64_t timestampUs;
218 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
219 if (timestampUs > mEstimatedDurationUs) {
220 mEstimatedDurationUs = timestampUs;
223 previousPausedDurationUs += (timestampUs - maxTimestampUs - 20000);
226 timestampUs -= previousPausedDurationUs;
228 timestampUs, previousPausedDurationUs);
229 if (timestampUs > maxTimestampUs) {
230 maxTimestampUs = timestampUs;
CameraSourceTimeLapse.cpp 239 bool CameraSourceTimeLapse::skipCurrentFrame(int64_t /* timestampUs */) {
249 bool CameraSourceTimeLapse::skipFrameAndModifyTimeStamp(int64_t *timestampUs) {
253 // to current time (timestampUs) and save frame data.
256 mLastTimeLapseFrameRealTimestampUs = *timestampUs;
268 *timestampUs =
272 if (*timestampUs < mStartTimeUs) {
273 ALOGI("set timestampUs to start time stamp %" PRId64 " us", mStartTimeUs);
274 *timestampUs = mStartTimeUs;
283 if (mNumFramesEncoded >= 1 && *timestampUs <
293 // - Artificially modify timestampUs to be one frame time (1/framerate) ahea
    [all...]
SimpleDecodingSource.cpp 286 int64_t timestampUs = 0;
287 CHECK(in_buf->meta_data()->findInt64(kKeyTime, &timestampUs));
307 timestampUs, 0 /* flags */);
AACWriter.cpp 326 int64_t timestampUs;
327 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
328 if (timestampUs > mEstimatedDurationUs) {
329 mEstimatedDurationUs = timestampUs;
332 previousPausedDurationUs += (timestampUs - maxTimestampUs - mFrameDurationUs);
335 timestampUs -= previousPausedDurationUs;
337 timestampUs, previousPausedDurationUs);
338 if (timestampUs > maxTimestampUs) {
339 maxTimestampUs = timestampUs;
AudioSource.cpp 396 const int64_t timestampUs =
407 mPrevSampleTimeUs = timestampUs;
CameraSource.cpp     [all...]
MPEG4Writer.cpp 115 void bufferChunk(int64_t timestampUs);
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
PerfTraceEvent.java 225 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
227 timestampUs, memoryInfo);
249 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
251 timestampUs, memoryInfo);
273 long timestampUs = (System.nanoTime() - sBeginNanoTime) / 1000;
279 savePerfString(name, id, type, timestampUs, memInfo);
288 * @param timestampUs The time stamp at which this event was recorded
292 private static void savePerfString(String name, long id, EventType type, long timestampUs,
297 traceObj.put("ts", timestampUs);
  /frameworks/av/media/libstagefright/webm/
WebmFrameThread.cpp 331 int64_t timestampUs = 0xdeadbeef;
349 CHECK(md->findInt64(kKeyTime, &timestampUs));
351 mStartTimeUs = timestampUs;
353 timestampUs -= mStartTimeUs;
356 lastDurationUs = timestampUs - lastTimestampUs;
357 lastTimestampUs = timestampUs;
366 int64_t durExcludingEarlierPausesUs = timestampUs - previousPausedDurationUs;
373 timestampUs -= previousPausedDurationUs;
374 CHECK_GE(timestampUs, 0ll);
381 timestampUs * 1000 / mTimeCodeScale
    [all...]
  /hardware/interfaces/audio/2.0/default/
StreamOut.cpp 400 int64_t timestampUs = 0;
404 mStream->get_next_write_timestamp(mStream, &timestampUs));
406 _hidl_cb(retval, timestampUs);
  /hardware/interfaces/audio/2.0/vts/functional/
AudioPrimaryHidlHalTest.cpp     [all...]
  /hardware/interfaces/media/omx/1.0/vts/functional/audio/
VtsHalMediaOmxV1_0TargetAudioDecTest.cpp 210 timestampUs = 0;
234 EXPECT_GE(msg.data.extendedBufferData.timestampUs, timestampUs);
235 timestampUs = msg.data.extendedBufferData.timestampUs;
243 if (*it == timestampUs) {
304 uint64_t timestampUs;
    [all...]
  /hardware/interfaces/media/omx/1.0/vts/functional/video/
VtsHalMediaOmxV1_0TargetVideoDecTest.cpp 207 timestampUs = 0;
240 EXPECT_GE(msg.data.extendedBufferData.timestampUs, timestampUs);
241 timestampUs = msg.data.extendedBufferData.timestampUs;
249 if (*it == timestampUs) {
308 uint64_t timestampUs;
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 250 int64_t timestampUs;
251 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
256 int64_t diff = timestampUs - seekTimeUs;
263 || (gReproduceBug == 5 && timestampUs < 0)) {
265 seekTimeUs / 1E6, timestampUs / 1E6);
273 timestampUs, timestampUs / 1E6);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaSyncTest.java 754 long timestampUs = mExtractor.getSampleTime();
757 || timestampUs >= mLastBufferTimestampUs;
762 timestampUs,
MediaCodecTest.java     [all...]
  /packages/apps/TV/libs/
exoplayer.jar 

Completed in 816 milliseconds