Searched refs:stopTimeUs (Results 1 - 21 of 21) sorted by relevance

/frameworks/av/media/libmedia/aidl/android/
H A DIGraphicBufferSource.aidl33 void setStopTimeUs(long stopTimeUs);
/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/include/media/stagefright/omx/
H A DBWGraphicBufferSource.h55 Status setStopTimeUs(int64_t stopTimeUs) override;
H A DGraphicBufferSource.h134 // timestamp is greater or equal than stopTimeUs. We need to submit an empty
173 status_t setStopTimeUs(int64_t stopTimeUs);
176 // time and the stopTimeUs. If stop time is not set, INVALID_OPERATION will be returned.
179 // larger than 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/include/media/stagefright/
H A DAudioSource.h56 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DMediaCodecSource.h63 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DCameraSource.h101 virtual status_t setStopTimeUs(int64_t stopTimeUs);
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DAudioSource.h56 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DMediaCodecSource.h63 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DCameraSource.h101 virtual status_t setStopTimeUs(int64_t stopTimeUs);
/frameworks/av/media/libmedia/include/media/omx/1.0/
H A DWGraphicBufferSource.h76 BnStatus setStopTimeUs(int64_t stopTimeUs) override;
/frameworks/av/media/libstagefright/omx/
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...]
H A DBWGraphicBufferSource.cpp157 int64_t stopTimeUs) {
158 return Status::fromStatusT(mBase->setStopTimeUs(stopTimeUs));
156 setStopTimeUs( int64_t stopTimeUs) argument
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/
H A DWGraphicBufferSource.h83 Return<Status> setStopTimeUs(int64_t stopTimeUs) override;
/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/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)) {
/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");

Completed in 360 milliseconds