Searched refs:seekTimeUs (Results 1 - 25 of 35) sorted by relevance

12

/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextPlayer.cpp71 msg->setInt64("seekTimeUs", timeUs);
107 int64_t seekTimeUs = positionMs * 1000ll; local
111 doSeekAndRead(seekTimeUs);
121 int64_t seekTimeUs; local
123 if (msg->findInt64("seekTimeUs", &seekTimeUs) &&
127 seekTimeUs,
136 int64_t seekTimeUs = kInvalidTimeUs; local
139 msg->findInt64("seekTimeUs", &seekTimeUs);
219 doSeekAndRead(int64_t seekTimeUs) argument
235 int64_t seekTimeUs = kInvalidTimeUs; local
[all...]
H A DTimedTextSRTSource.cpp220 int64_t seekTimeUs; local
222 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
225 if (seekTimeUs < 0) {
227 } else if (seekTimeUs >= lastEndTimeUs) {
237 int diff = compareExtendedRangeAndTime(mid, seekTimeUs);
H A DTimedTextPlayer.h72 void doSeekAndRead(int64_t seekTimeUs);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp190 status_t NuPlayer::GenericSource::seekTo(int64_t seekTimeUs) { argument
193 readBuffer(false /* audio */, seekTimeUs, &actualTimeUs);
195 seekTimeUs = actualTimeUs;
199 readBuffer(true /* audio */, seekTimeUs);
206 bool audio, int64_t seekTimeUs, int64_t *actualTimeUs) {
211 *actualTimeUs = seekTimeUs;
218 if (seekTimeUs >= 0) {
219 options.setSeekTo(seekTimeUs);
205 readBuffer( bool audio, int64_t seekTimeUs, int64_t *actualTimeUs) argument
H A DGenericSource.h54 virtual status_t seekTo(int64_t seekTimeUs);
77 int64_t seekTimeUs = -1ll, int64_t *actualTimeUs = NULL);
H A DRTSPSource.h54 virtual status_t seekTo(int64_t seekTimeUs);
125 void performSeek(int64_t seekTimeUs);
H A DHTTPLiveSource.h46 virtual status_t seekTo(int64_t seekTimeUs);
H A DNuPlayerSource.h83 virtual status_t seekTo(int64_t seekTimeUs) { argument
H A DNuPlayer.h60 void seekToAsync(int64_t seekTimeUs);
179 void performSeek(int64_t seekTimeUs);
H A DRTSPSource.cpp304 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) { argument
307 msg->setInt64("timeUs", seekTimeUs);
313 void NuPlayer::RTSPSource::performSeek(int64_t seekTimeUs) { argument
319 mHandler->seek(seekTimeUs);
339 int64_t seekTimeUs; local
340 CHECK(msg->findInt64("timeUs", &seekTimeUs));
342 performSeek(seekTimeUs);
H A DNuPlayer.cpp63 SeekAction(int64_t seekTimeUs) argument
64 : mSeekTimeUs(seekTimeUs) {
288 void NuPlayer::seekToAsync(int64_t seekTimeUs) { argument
290 msg->setInt64("seekTimeUs", seekTimeUs);
803 int64_t seekTimeUs; local
804 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
806 ALOGV("kWhatSeek seekTimeUs=%lld us", seekTimeUs);
1240 performSeek(int64_t seekTimeUs) argument
[all...]
H A DHTTPLiveSource.cpp146 status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) { argument
147 return mLiveSession->seekTo(seekTimeUs);
/frameworks/av/libvideoeditor/lvpp/
H A DDummyVideoSource.cpp126 int64_t seekTimeUs; local
128 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
130 mImageSeekTime = seekTimeUs;
H A DDummyAudioSource.cpp123 int64_t seekTimeUs; local
126 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
127 CHECK(seekTimeUs >= 0);
128 mTimeStampUs = seekTimeUs;
H A DVideoEditorSRC.cpp123 int64_t seekTimeUs; local
125 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
126 ALOGV("read Seek %lld", seekTimeUs);
127 mSeekTimeUs = seekTimeUs;
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp227 int64_t seekTimeUs = -1; local
248 if (seekTimeUs >= 0) {
249 int64_t diff = timestampUs - seekTimeUs;
258 seekTimeUs / 1E6, timestampUs / 1E6);
282 seekTimeUs = -1;
285 seekTimeUs = (rand() * (float)durationUs) / RAND_MAX;
286 options.setSeekTo(seekTimeUs);
289 seekTimeUs, seekTimeUs / 1E6);
540 for (int64_t seekTimeUs
[all...]
/frameworks/av/media/libstagefright/
H A DJPEGSource.cpp114 int64_t seekTimeUs; local
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
H A DAMRExtractor.cpp254 int64_t seekTimeUs; local
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 int64_t seekFrame = seekTimeUs / 20000ll; // 20ms per frame.
H A DAACExtractor.cpp290 int64_t seekTimeUs; local
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
294 int64_t seekFrame = seekTimeUs / mFrameDurationUs;
H A DWAVExtractor.cpp404 int64_t seekTimeUs; local
406 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
411 int64_t samplenumber = (seekTimeUs * mSampleRate) / 1000000;
415 pos = (seekTimeUs * mSampleRate) / 1000000 * mNumChannels * (mBitsPerSample >> 3);
/frameworks/av/media/libstagefright/wifi-display/source/
H A DRepeaterSource.cpp110 int64_t seekTimeUs; local
112 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h106 int64_t seekTimeUs = -1ll,
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp98 int64_t seekTimeUs, bool isAudio,
310 int64_t seekTimeUs, bool isAudio,
316 const int64_t seekTimeNs = seekTimeUs * 1000ll;
323 ALOGV("Seek to beginning: %lld", seekTimeUs);
332 ALOGV("Seeking to: %lld", seekTimeUs);
413 seekTimeUs, actualFrameTimeUs);
496 int64_t seekTimeUs; local
498 if (options && options->getSeekTo(&seekTimeUs, &mode)
506 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
309 seek( int64_t seekTimeUs, bool isAudio, int64_t *actualFrameTimeUs) argument
/frameworks/av/media/libstagefright/mpeg2ts/
H A DMPEG2TSExtractor.cpp88 int64_t seekTimeUs; local
90 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp262 int64_t seekTimeUs; local
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {

Completed in 279 milliseconds

12