Searched defs:stopTimeUs (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/media/libmedia/omx/1.0/
H A DWGraphicBufferSource.cpp66 int64_t stopTimeUs) {
67 return toBinderStatus(mBase->setStopTimeUs(stopTimeUs));
65 setStopTimeUs( int64_t stopTimeUs) argument
/frameworks/av/media/libstagefright/omx/
H A DBWGraphicBufferSource.cpp157 int64_t stopTimeUs) {
158 return Status::fromStatusT(mBase->setStopTimeUs(stopTimeUs));
156 setStopTimeUs( int64_t stopTimeUs) argument
H A DGraphicBufferSource.cpp1207 status_t GraphicBufferSource::setStopTimeUs(int64_t stopTimeUs) { argument
1208 ALOGV("setStopTimeUs: %lld us", (long long)stopTimeUs);
1216 // stopTimeUs must be smaller or equal to current systemTime.
1218 if (stopTimeUs > currentSystemTimeUs) {
1220 (long long)stopTimeUs, (long long)currentSystemTimeUs);
1223 if (mLastActionTimeUs != -1 && stopTimeUs < mLastActionTimeUs) {
1225 (long long)stopTimeUs, (long long)mLastActionTimeUs);
1228 mLastActionTimeUs = stopTimeUs;
1231 action.mActionTimeUs = stopTimeUs;
1233 mStopTimeUs = stopTimeUs;
[all...]
/frameworks/av/media/libstagefright/omx/1.0/
H A DWGraphicBufferSource.cpp215 Return<Status> TWGraphicBufferSource::setStopTimeUs(int64_t stopTimeUs) { argument
216 return toStatus(mBase->setStopTimeUs(stopTimeUs));
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp297 status_t AudioSource::setStopTimeUs(int64_t stopTimeUs) { argument
299 ALOGV("Set stoptime: %lld us", (long long)stopTimeUs);
301 if (stopTimeUs < -1) {
302 ALOGE("Invalid stop time %lld us", (long long)stopTimeUs);
304 } else if (stopTimeUs == -1) {
308 mStopSystemTimeUs = stopTimeUs;
H A DMediaCodecSource.cpp60 status_t setStopTimeUs(int64_t stopTimeUs);
168 status_t MediaCodecSource::Puller::setStopTimeUs(int64_t stopTimeUs) { argument
170 msg->setInt64("stop-time-us", stopTimeUs);
267 int64_t stopTimeUs; local
268 CHECK(msg->findInt64("stop-time-us", &stopTimeUs));
269 status_t err = mSource->setStopTimeUs(stopTimeUs);
391 status_t MediaCodecSource::setStopTimeUs(int64_t stopTimeUs) { argument
393 msg->setInt64("stop-time-us", stopTimeUs);
1101 int64_t stopTimeUs; local
1102 CHECK(msg->findInt64("stop-time-us", &stopTimeUs));
[all...]
H A DCameraSource.cpp1108 status_t CameraSource::setStopTimeUs(int64_t stopTimeUs) { argument
1110 ALOGV("Set stoptime: %lld us", (long long)stopTimeUs);
1112 if (stopTimeUs < -1) {
1113 ALOGE("Invalid stop time %lld us", (long long)stopTimeUs);
1115 } else if (stopTimeUs == -1) {
1119 mStopSystemTimeUs = stopTimeUs;
H A DACodec.cpp7264 int64_t stopTimeUs; local
7265 if (params->findInt64("stop-time-us", &stopTimeUs)) {
7272 mGraphicBufferSource->setStopTimeUs(stopTimeUs));
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1985 int64_t stopTimeUs = systemTime() / 1000; local
1987 if (source != nullptr && OK != source->setStopTimeUs(stopTimeUs)) {
1989 (long long)stopTimeUs, source->isVideo() ? "Video" : "Audio");
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1866 int64_t stopTimeUs; local
1869 || !mStopParams->findInt64(key, &stopTimeUs)
1871 && timeUs >= stopTimeUs)) {
2160 int64_t stopTimeUs; local
2163 || !mStopParams->findInt64("timeUsAudio", &stopTimeUs)
2164 || (discontinuitySeq == mDiscontinuitySeq && unitTimeUs >= stopTimeUs)) {

Completed in 367 milliseconds