Searched refs:timeUs (Results 1 - 25 of 128) sorted by path

123456

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp494 int64_t timeUs; local
495 CHECK_EQ(mExtractor->getSampleTime(&timeUs), (status_t)OK);
501 timeUs,
H A Dcodec.cpp184 int64_t timeUs; local
185 err = extractor->getSampleTime(&timeUs);
194 timeUs,
220 0ll /* timeUs */,
H A Dmediafilter.cpp219 int64_t timeUs; local
220 CHECK(srcBuffer->meta()->findInt64("timeUs", &timeUs));
221 destBuffer->meta()->setInt64("timeUs", timeUs);
232 timeUs, frame.flags);
243 timeUs, frame.flags);
542 int64_t timeUs; local
543 err = extractor->getSampleTime(&timeUs);
550 timeUs, bufferFlag
[all...]
H A Dmuxer.cpp179 int64_t timeUs; local
180 err = extractor->getSampleTime(&timeUs);
194 if (enableTrim && timeUs > trimStartTimeUs &&
195 timeUs <= trimEndTimeUs) {
197 trimOffsetTimeUs = timeUs;
203 if (enableTrim && timeUs > trimEndTimeUs) {
210 timeUs - trimOffsetTimeUs, sampleFlags);
H A Dstagefright.cpp588 int64_t timeUs; local
589 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
592 seekTimeUs, timeUs, seekTimeUs - timeUs);
/frameworks/av/include/media/
H A DIMediaMetadataRetriever.h45 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
H A DMediaMetadataRetrieverInterface.h45 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
57 virtual VideoFrame* getFrameAtTime(int64_t /*timeUs*/, int /*option*/) { return NULL; }
H A Dmediametadataretriever.h80 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
/frameworks/av/include/media/omx/1.0/
H A DWGraphicBufferSource.h71 BnStatus setSuspend(bool suspend, int64_t timeUs) override;
/frameworks/av/include/media/stagefright/
H A DAVIExtractor.h106 int64_t timeUs, MediaSource::ReadOptions::SeekMode mode,
H A DAudioSource.h106 void queueInputBuffer_l(MediaBuffer *buffer, int64_t timeUs);
H A DMP3Seeker.h31 // Given a request seek time in "*timeUs", find the byte offset closest
32 // to that position and return it in "*pos". Update "*timeUs" to reflect
34 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos) = 0;
H A DMPEG4Writer.h127 void setStartTimestampUs(int64_t timeUs);
141 Chunk(Track *track, int64_t timeUs, List<MediaBuffer *> samples) argument
142 : mTrack(track), mTimeStampUs(timeUs), mSamples(samples) {
215 void trackProgressStatus(size_t trackId, int64_t timeUs, status_t err = OK);
H A DMediaMuxer.h110 * @param timeUs the buffer's time stamp.
116 int64_t timeUs, uint32_t flags) ;
H A DNuMediaExtractor.h78 int64_t timeUs,
H A DStagefrightMetadataRetriever.h43 virtual VideoFrame *getFrameAtTime(int64_t timeUs, int option);
H A DVBRISeeker.h34 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos);
H A DXINGSeeker.h32 virtual bool getOffsetForTime(int64_t *timeUs, off64_t *pos);
/frameworks/av/include/media/stagefright/foundation/
H A DANetworkSession.h78 bool timeValid = false, int64_t timeUs = -1ll);
/frameworks/av/media/libmedia/
H A DIMediaMetadataRetriever.cpp139 sp<IMemory> getFrameAtTime(int64_t timeUs, int option) argument
141 ALOGV("getTimeAtTime: time(%" PRId64 " us) and option(%d)", timeUs, option);
144 data.writeInt64(timeUs);
267 int64_t timeUs = data.readInt64(); local
269 ALOGV("getTimeAtTime: time(%" PRId64 " us) and option(%d)", timeUs, option);
273 sp<IMemory> bitmap = getFrameAtTime(timeUs, option);
H A Dmediametadataretriever.cpp144 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option) argument
146 ALOGV("getFrameAtTime: time(%" PRId64 " us) option(%d)", timeUs, option);
152 return mRetriever->getFrameAtTime(timeUs, option);
/frameworks/av/media/libmedia/include/media/
H A DIMediaMetadataRetriever.h45 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option) = 0;
H A DMediaMetadataRetrieverInterface.h45 virtual VideoFrame* getFrameAtTime(int64_t timeUs, int option) = 0;
57 virtual VideoFrame* getFrameAtTime(int64_t /*timeUs*/, int /*option*/) { return NULL; }
H A Dmediametadataretriever.h80 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
/frameworks/av/media/libmedia/omx/1.0/
H A DWGraphicBufferSource.cpp42 bool suspend, int64_t timeUs) {
43 return toBinderStatus(mBase->setSuspend(suspend, timeUs));
41 setSuspend( bool suspend, int64_t timeUs) argument

Completed in 636 milliseconds

123456