HomeSort by relevance Sort by last modified time
    Searched defs:timestampUs (Results 1 - 12 of 12) 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 279 int64_t timestampUs = 0;
280 CHECK(in_buf->meta_data()->findInt64(kKeyTime, &timestampUs));
291 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 382 const int64_t timestampUs =
393 mPrevSampleTimeUs = timestampUs;
CameraSource.cpp     [all...]
MPEG4Writer.cpp 103 void bufferChunk(int64_t timestampUs);
    [all...]
  /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...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 247 int64_t timestampUs;
248 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timestampUs));
253 int64_t diff = timestampUs - seekTimeUs;
260 || (gReproduceBug == 5 && timestampUs < 0)) {
262 seekTimeUs / 1E6, timestampUs / 1E6);
270 timestampUs, timestampUs / 1E6);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaSyncTest.java 753 long timestampUs = mExtractor.getSampleTime();
756 || timestampUs >= mLastBufferTimestampUs;
761 timestampUs,
MediaCodecTest.java     [all...]
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 

Completed in 215 milliseconds