HomeSort by relevance Sort by last modified time
    Searched refs:seekTimeUs (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 71 msg->setInt64("seekTimeUs", timeUs);
107 int64_t seekTimeUs = positionMs * 1000ll;
111 doSeekAndRead(seekTimeUs);
121 int64_t seekTimeUs;
123 if (msg->findInt64("seekTimeUs", &seekTimeUs) &&
127 seekTimeUs,
136 int64_t seekTimeUs = kInvalidTimeUs;
139 msg->findInt64("seekTimeUs", &seekTimeUs);
    [all...]
TimedTextSRTSource.cpp 220 int64_t seekTimeUs;
222 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
225 if (seekTimeUs < 0) {
227 } else if (seekTimeUs >= lastEndTimeUs) {
237 int diff = compareExtendedRangeAndTime(mid, seekTimeUs);
TimedTextPlayer.h 72 void doSeekAndRead(int64_t seekTimeUs);
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 190 status_t NuPlayer::GenericSource::seekTo(int64_t seekTimeUs) {
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);
GenericSource.h 54 virtual status_t seekTo(int64_t seekTimeUs);
77 int64_t seekTimeUs = -1ll, int64_t *actualTimeUs = NULL);
RTSPSource.h 54 virtual status_t seekTo(int64_t seekTimeUs);
125 void performSeek(int64_t seekTimeUs);
HTTPLiveSource.h 46 virtual status_t seekTo(int64_t seekTimeUs);
NuPlayerSource.h 83 virtual status_t seekTo(int64_t seekTimeUs) {
NuPlayer.h 60 void seekToAsync(int64_t seekTimeUs);
179 void performSeek(int64_t seekTimeUs);
RTSPSource.cpp 304 status_t NuPlayer::RTSPSource::seekTo(int64_t seekTimeUs) {
307 msg->setInt64("timeUs", seekTimeUs);
313 void NuPlayer::RTSPSource::performSeek(int64_t seekTimeUs) {
319 mHandler->seek(seekTimeUs);
339 int64_t seekTimeUs;
340 CHECK(msg->findInt64("timeUs", &seekTimeUs));
342 performSeek(seekTimeUs);
NuPlayer.cpp 63 SeekAction(int64_t seekTimeUs)
64 : mSeekTimeUs(seekTimeUs) {
288 void NuPlayer::seekToAsync(int64_t seekTimeUs) {
290 msg->setInt64("seekTimeUs", seekTimeUs);
803 int64_t seekTimeUs;
804 CHECK(msg->findInt64("seekTimeUs", &seekTimeUs));
806 ALOGV("kWhatSeek seekTimeUs=%lld us", seekTimeUs);
    [all...]
HTTPLiveSource.cpp 146 status_t NuPlayer::HTTPLiveSource::seekTo(int64_t seekTimeUs) {
147 return mLiveSession->seekTo(seekTimeUs);
  /frameworks/av/libvideoeditor/lvpp/
DummyVideoSource.cpp 126 int64_t seekTimeUs;
128 if (options && options->getSeekTo(&seekTimeUs, &seekMode)) {
130 mImageSeekTime = seekTimeUs;
DummyAudioSource.cpp 123 int64_t seekTimeUs;
126 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
127 CHECK(seekTimeUs >= 0);
128 mTimeStampUs = seekTimeUs;
VideoEditorSRC.cpp 123 int64_t seekTimeUs;
125 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
126 ALOGV("read Seek %lld", seekTimeUs);
127 mSeekTimeUs = seekTimeUs;
  /frameworks/av/cmds/stagefright/
stagefright.cpp 227 int64_t seekTimeUs = -1;
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 = 0; seekTimeUs <= durationUs
    [all...]
  /frameworks/av/media/libstagefright/
JPEGSource.cpp 114 int64_t seekTimeUs;
116 if (options != NULL && options->getSeekTo(&seekTimeUs, &mode)) {
AMRExtractor.cpp 254 int64_t seekTimeUs;
256 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 int64_t seekFrame = seekTimeUs / 20000ll; // 20ms per frame.
AACExtractor.cpp 290 int64_t seekTimeUs;
292 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
294 int64_t seekFrame = seekTimeUs / mFrameDurationUs;
WAVExtractor.cpp 404 int64_t seekTimeUs;
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/
RepeaterSource.cpp 110 int64_t seekTimeUs;
112 CHECK(options == NULL || !options->getSeekTo(&seekTimeUs, &seekMode));
  /frameworks/av/include/media/stagefright/
NuMediaExtractor.h 106 int64_t seekTimeUs = -1ll,
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 98 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;
498 if (options && options->getSeekTo(&seekTimeUs, &mode)
506 mBlockIter.seek(seekTimeUs, mIsAudio, &actualFrameTimeUs);
  /frameworks/av/media/libstagefright/mpeg2ts/
MPEG2TSExtractor.cpp 88 int64_t seekTimeUs;
90 if (mSeekable && options && options->getSeekTo(&seekTimeUs, &seekMode)) {
  /frameworks/wilhelm/src/android/util/
AacAdtsExtractor.cpp 262 int64_t seekTimeUs;
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {

Completed in 509 milliseconds

1 2