HomeSort by relevance Sort by last modified time
    Searched refs:timeUs (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerDecoderPassThrough.cpp 181 int64_t timeUs;
183 bool smallTimestampValid = accessUnit->meta()->findInt64("timeUs", &timeUs);
184 bool bigTimestampValid = mAggregateBuffer->meta()->findInt64("timeUs", &dummy);
200 mAggregateBuffer->meta()->setInt64("timeUs", timeUs);
270 CHECK(accessUnit->meta()->findInt64("timeUs", &mediaTimeUs));
317 int64_t timeUs = 0;
318 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
    [all...]
HTTPLiveSource.h 46 virtual status_t selectTrack(size_t trackIndex, bool select, int64_t timeUs);
NuPlayerCCDecoder.cpp 188 int64_t timeUs;
189 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
274 mCCMap.add(timeUs, ccBuf);
323 void NuPlayer::CCDecoder::display(int64_t timeUs) {
329 ssize_t index = mCCMap.indexOfKey(timeUs);
331 ALOGV("cc for timestamp %" PRId64 " not found", timeUs);
343 ccBuf->meta()->setInt64("timeUs", timeUs);
352 // remove all entries before timeUs
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 107 discontinuity->meta()->setInt64("timeUs", -1);
134 int64_t timeUs;
137 && extra->findInt64("timeUs", &timeUs)) {
139 mLastSeekTimeUs = timeUs;
277 int64_t timeUs;
279 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs));
287 if (timeUs > strm.mLastDequeuedTimeUs) {
288 durUs = timeUs - strm.mLastDequeuedTimeUs
    [all...]
  /frameworks/av/media/libstagefright/timedtext/
TimedTextPlayer.cpp 70 void TimedTextPlayer::seekToAsync(int64_t timeUs) {
72 msg->setInt64("seekTimeUs", timeUs);
260 void TimedTextPlayer::postTextEvent(const sp<ParcelEvent>& parcel, int64_t timeUs) {
261 int64_t delayUs = delayUsFromCurrentTime(timeUs);
267 msg->setInt64("fireTimeUs", timeUs);
TimedText3GPPSource.cpp 66 int64_t timeUs, const MediaBuffer *textBuffer, Parcel *parcel) {
82 (const uint8_t *)data, size, flag, timeUs / 1000, parcel);
TimedTextDriver.cpp 166 status_t TimedTextDriver::seekToAsync(int64_t timeUs) {
173 mPlayer->seekToAsync(timeUs);
178 mPlayer->seekToAsync(timeUs);
182 mPlayer->seekToAsync(timeUs);
  /frameworks/av/media/libmedia/
mediametadataretriever.cpp 132 sp<IMemory> MediaMetadataRetriever::getFrameAtTime(int64_t timeUs, int option)
134 ALOGV("getFrameAtTime: time(%" PRId64 " us) option(%d)", timeUs, option);
140 return mRetriever->getFrameAtTime(timeUs, option);
  /frameworks/av/media/libstagefright/rtsp/
rtp_test.cpp 213 int64_t timeUs;
214 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
217 buffer->range_length(), timeUs / 1E6);
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 165 int64_t timeUs;
166 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
174 accessUnit->meta()->setInt64("timeUs", timeUs);
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 212 int64_t timeUs;
213 CHECK(packet->meta()->findInt64("timeUs", &timeUs));
227 uint32_t rtpTime = (timeUs * 9) / 100ll;
252 int64_t timeUs;
253 CHECK(tsPackets->meta()->findInt64("timeUs", &timeUs));
301 timeUs);
313 int64_t timeUs;
314 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs))
    [all...]
  /frameworks/av/include/media/
mediametadataretriever.h 77 sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
  /frameworks/av/include/media/stagefright/
AudioSource.h 99 void queueInputBuffer_l(MediaBuffer *buffer, int64_t timeUs);
MediaMuxer.h 110 * @param timeUs the buffer's time stamp.
116 int64_t timeUs, uint32_t flags) ;
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 49 status_t seekToAsync(int64_t timeUs);
  /frameworks/av/media/libmediaplayerservice/
MetadataRetrieverClient.h 52 virtual sp<IMemory> getFrameAtTime(int64_t timeUs, int option);
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 244 out->meta()->setInt64("timeUs", 0ll);
264 int64_t timeUs;
265 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
266 copy->meta()->setInt64("timeUs", timeUs);
295 int64_t timeUs;
296 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
298 mAACBuffer->meta()->setInt64("timeUs", timeUs);
453 int64_t timeUs;
    [all...]
AVIExtractor.cpp 175 int64_t timeUs;
177 mTrackIndex, mSampleIndex, &offset, &size, &isKey, &timeUs);
196 out->meta_data()->setInt64(kKeyTime, timeUs);
353 int64_t timeUs = mBaseTimeUs + (mNumSamplesRead * 1000000ll) / sampleRate;
356 mbuf->meta_data()->setInt64(kKeyTime, timeUs);
848 int64_t timeUs;
849 status_t err = getSampleInfo(0, 0, &offset, &size, &isKey, &timeUs);
853 err = getSampleInfo(0, 0, &offset, &size, &isKey, &timeUs);
1005 int64_t timeUs;
1007 getSampleInfo(trackIndex, 0, &offset, &size, &isKey, &timeUs);
    [all...]
OggExtractor.cpp 77 status_t seekToTime(int64_t timeUs);
195 int64_t timeUs;
196 if (packet->meta_data()->findInt64(kKeyTime, &timeUs)) {
197 ALOGI("found time = %lld us", timeUs);
317 status_t MyVorbisExtractor::seekToTime(int64_t timeUs) {
321 off64_t pos = timeUs * approxBitrate() / 8000000ll;
334 if (timeUs < entry.mTimeUs) {
336 } else if (timeUs > entry.mTimeUs) {
464 int64_t timeUs = -1;
533 timeUs = mCurrentPage.mPrevPacketPos * 1000000ll / mVi.rate
    [all...]
StagefrightMetadataRetriever.cpp 241 int64_t timeUs;
242 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
244 if (timeUs != thumbNailTime) {
248 ALOGV("thumbNailTime = %" PRId64 " us, timeUs = %" PRId64 " us, mime = %s",
249 thumbNailTime, timeUs, mime);
329 int64_t timeUs, int option) {
331 ALOGV("getFrameAtTime: %" PRId64 " us option: %d", timeUs, option);
390 timeUs, option);
397 timeUs, option);
XINGSeeker.cpp 46 bool XINGSeeker::getOffsetForTime(int64_t *timeUs, off64_t *pos) {
51 float percent = (float)(*timeUs) * 100 / mDurationUs;
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.h 54 status_t nextBufferTime(int64_t *timeUs);
ESQueue.h 48 status_t appendData(const void *data, size_t size, int64_t timeUs);
  /frameworks/av/media/libstagefright/codecs/aacenc/
AACEncoder.cpp 260 int64_t timeUs;
261 if (mInputBuffer->meta_data()->findInt64(kKeyDriftTime, &timeUs)) {
262 wallClockTimeUs = timeUs;
264 if (mInputBuffer->meta_data()->findInt64(kKeyAnchorTime, &timeUs)) {
265 mAnchorTimeUs = timeUs;
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 226 public void onTimedEvent(long timeUs) {
227 if (DEBUG) Log.d(TAG, "onTimedEvent " + timeUs);
229 long timeMs = timeUs / 1000;
241 public void onSeek(long timeUs) {
242 if (DEBUG) Log.d(TAG, "onSeek " + timeUs);
244 long timeMs = timeUs / 1000;

Completed in 631 milliseconds

12 3 4 5