Searched defs:timeUs (Results 51 - 57 of 57) sorted by relevance

123

/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp381 status_t StagefrightRecorder::setParamMaxFileDurationUs(int64_t timeUs) { argument
382 ALOGV("setParamMaxFileDurationUs: %lld us", timeUs);
385 if (timeUs <= 0) {
386 ALOGW("Max file duration is not positive: %lld us. Disabling duration limit.", timeUs);
387 timeUs = 0; // Disable the duration limit for zero or negative values.
388 } else if (timeUs <= 100000LL) { // XXX: 100 milli-seconds
389 ALOGE("Max file duration is too short: %lld us", timeUs);
393 if (timeUs <= 15 * 1000000LL) {
394 ALOGW("Target duration (%lld us) too short to be respected", timeUs);
396 mMaxFileDurationUs = timeUs;
544 setParamTimeBetweenTimeLapseFrameCapture(int64_t timeUs) argument
[all...]
/frameworks/av/media/libstagefright/
H A DACodec.cpp157 int64_t timeUs,
2458 int64_t timeUs; local
2465 CHECK(msg->findInt64("timestamp", &timeUs));
2473 timeUs,
2620 int64_t timeUs; local
2621 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
2653 mCodec->mComponentName.c_str(), bufferID, timeUs);
2656 mCodec->mComponentName.c_str(), bufferID, timeUs);
2664 mCodec->mBufferStats.add(timeUs, stat
2752 onOMXFillBufferDone( IOMX::buffer_id bufferID, size_t rangeOffset, size_t rangeLength, OMX_U32 flags, int64_t timeUs, void *platformPrivate, void *dataPtr) argument
[all...]
H A DAwesomePlayer.cpp129 int64_t timeUs; local
130 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
131 native_window_set_buffers_timestamp(mNativeWindow.get(), timeUs * 1000);
1297 status_t AwesomePlayer::seekTo(int64_t timeUs) { argument
1302 return seekTo_l(timeUs);
1308 status_t AwesomePlayer::seekTo_l(int64_t timeUs) { argument
1324 mSeekTimeUs = timeUs;
1682 int64_t timeUs; local
1683 CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
1685 mLastVideoTimeUs = timeUs;
[all...]
H A DOMXCodec.cpp2067 int64_t timeUs = *it; local
2069 return timeUs;
3622 int64_t timeUs; local
3623 if (meta->findInt64(kKeyTime, &timeUs)) {
3624 startTimeUs = timeUs;
H A DMPEG4Writer.cpp280 void trackProgressStatus(int64_t timeUs, status_t err = OK);
1210 void MPEG4Writer::setStartTimestampUs(int64_t timeUs) { argument
1211 ALOGI("setStartTimestampUs: %lld", timeUs);
1212 CHECK_GE(timeUs, 0ll);
1214 if (mStartTimestampUs < 0 || mStartTimestampUs > timeUs) {
1215 mStartTimestampUs = timeUs;
1415 int64_t timeUs; local
1416 if (params && params->findInt64(kKeyTrackTimeStatus, &timeUs)) {
1417 ALOGV("Receive request to track progress status for every %lld us", timeUs);
1418 mTrackEveryTimeDurationUs = timeUs;
1961 int64_t timeUs = (driftTimeUs + prevDriftTimeUs) >> 1; local
2389 trackProgressStatus(int64_t timeUs, status_t err) argument
2400 trackProgressStatus( size_t trackId, int64_t timeUs, status_t err) argument
[all...]
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp287 status_t FragmentedMP4Parser::seekTo(bool wantAudio, int64_t timeUs) { argument
290 msg->setInt64("position", timeUs);
963 (*accessUnit)->meta()->setInt64("timeUs", presentationTimeUs);
1003 "timeUs", presentationTimeUs);
1343 csd->meta()->setInt64("timeUs", 0ll);
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h180 void seek(int64_t timeUs) { argument
182 msg->setInt64("time", timeUs);
895 int64_t timeUs; local
896 CHECK(msg->findInt64("time", &timeUs));
916 reply->setInt64("time", timeUs);
936 int64_t timeUs; local
937 CHECK(msg->findInt64("time", &timeUs));
949 "Range: npt=%lld-\r\n", timeUs / 1000000ll));
1478 accessUnit->meta()->setInt64("timeUs", mediaTimeUs);

Completed in 348 milliseconds

123