Searched refs:stopTimeUs (Results 1 - 23 of 23) 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/include/media/stagefright/
H A DRemoteMediaSource.h41 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DAudioSource.h60 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DMediaCodecSource.h62 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 DRemoteMediaSource.h41 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DAudioSource.h60 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DMediaCodecSource.h62 virtual status_t setStopTimeUs(int64_t stopTimeUs);
H A DCameraSource.h101 virtual status_t setStopTimeUs(int64_t stopTimeUs);
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
H A DBWGraphicBufferSource.h55 Status setStopTimeUs(int64_t stopTimeUs) override;
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp299 status_t AudioSource::setStopTimeUs(int64_t stopTimeUs) { argument
301 ALOGV("Set stoptime: %lld us", (long long)stopTimeUs);
303 if (stopTimeUs < -1) {
304 ALOGE("Invalid stop time %lld us", (long long)stopTimeUs);
306 } else if (stopTimeUs == -1) {
310 mStopSystemTimeUs = stopTimeUs;
H A DMediaCodecSource.cpp61 status_t setStopTimeUs(int64_t stopTimeUs);
169 status_t MediaCodecSource::Puller::setStopTimeUs(int64_t stopTimeUs) { argument
171 msg->setInt64("stop-time-us", stopTimeUs);
268 int64_t stopTimeUs; local
269 CHECK(msg->findInt64("stop-time-us", &stopTimeUs));
270 status_t err = mSource->setStopTimeUs(stopTimeUs);
392 status_t MediaCodecSource::setStopTimeUs(int64_t stopTimeUs) { argument
394 msg->setInt64("stop-time-us", stopTimeUs);
1114 int64_t stopTimeUs; local
1115 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.cpp7315 int64_t stopTimeUs; local
7316 if (params->findInt64("stop-time-us", &stopTimeUs)) {
7323 mGraphicBufferSource->setStopTimeUs(stopTimeUs));
/frameworks/av/media/libmedia/include/media/omx/1.0/
H A DWGraphicBufferSource.h76 BnStatus setStopTimeUs(int64_t stopTimeUs) override;
/frameworks/av/media/libstagefright/bqhelper/
H A DGraphicBufferSource.cpp1247 status_t GraphicBufferSource::setStopTimeUs(int64_t stopTimeUs) { argument
1248 ALOGV("setStopTimeUs: %lld us", (long long)stopTimeUs);
1256 // stopTimeUs must be smaller or equal to current systemTime.
1258 if (stopTimeUs > currentSystemTimeUs) {
1260 (long long)stopTimeUs, (long long)currentSystemTimeUs);
1263 if (mLastActionTimeUs != -1 && stopTimeUs < mLastActionTimeUs) {
1265 (long long)stopTimeUs, (long long)mLastActionTimeUs);
1268 mLastActionTimeUs = stopTimeUs;
1271 action.mActionTimeUs = stopTimeUs;
1273 mStopTimeUs = stopTimeUs;
[all...]
/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/omx/
H A DBWGraphicBufferSource.cpp157 int64_t stopTimeUs) {
158 return Status::fromStatusT(mBase->setStopTimeUs(stopTimeUs));
156 setStopTimeUs( int64_t stopTimeUs) argument
/frameworks/av/media/libstagefright/bqhelper/include/media/stagefright/bqhelper/
H A DGraphicBufferSource.h127 // timestamp is greater or equal than stopTimeUs. We need to submit an empty
180 status_t setStopTimeUs(int64_t stopTimeUs);
183 // time and the stopTimeUs. If stop time is not set, INVALID_OPERATION will be returned.
186 // larger than stopTimeUs.
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp1881 int64_t stopTimeUs; local
1884 || !mStopParams->findInt64(key, &stopTimeUs)
1886 && timeUs >= stopTimeUs)) {
2176 int64_t stopTimeUs; local
2179 || !mStopParams->findInt64("timeUsAudio", &stopTimeUs)
2180 || (discontinuitySeq == mDiscontinuitySeq && unitTimeUs >= stopTimeUs)) {
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp2036 int64_t stopTimeUs = systemTime() / 1000; local
2038 if (source != nullptr && OK != source->setStopTimeUs(stopTimeUs)) {
2040 (long long)stopTimeUs, source->isVideo() ? "Video" : "Audio");
2052 int64_t additive = stopTimeUs - mPauseStartTimeUs;
2057 int64_t additive = stopTimeUs - mStartedRecordingUs;

Completed in 90 milliseconds