HomeSort by relevance Sort by last modified time
    Searched defs:timeUs (Results 1 - 25 of 46) sorted by null

1 2

  /frameworks/av/media/libmediaplayerservice/nuplayer/
StreamingSource.cpp 153 int64_t timeUs;
154 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs));
155 ALOGV("dequeueAccessUnit timeUs=%lld us", timeUs);
GenericSource.cpp 230 int64_t timeUs;
231 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
233 buffer->meta()->setInt64("timeUs", timeUs);
236 *actualTimeUs = timeUs;
  /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);
ARTPWriter.cpp 574 int64_t timeUs;
575 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
577 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
669 int64_t timeUs;
670 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
672 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
754 int64_t timeUs;
755 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
756 uint32_t rtpTime = mRTPTimeBase + (timeUs / (isWide ? 250 : 125));
MyTransmitter.h 638 int64_t timeUs;
639 CHECK(mediaBuf->meta_data()->findInt64(kKeyTime, &timeUs));
641 uint32_t rtpTime = mRTPTimeBase + (timeUs * 9 / 100ll);
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.cpp 113 int64_t timeUs;
114 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
118 mediaBuffer->meta_data()->setInt64(kKeyTime, timeUs);
144 int64_t timeUs;
145 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
146 ALOGV("queueAccessUnit timeUs=%lld us (%.2f secs)", timeUs, timeUs / 1E6)
    [all...]
MPEG2PSExtractor.cpp 634 int64_t timeUs;
636 timeUs = (PTS * 100) / 9;
638 timeUs = 0;
641 status_t err = mQueue->appendData(data, size, timeUs);
ESQueue.cpp 124 const void *data, size_t size, int64_t timeUs) {
286 info.mTimestampUs = timeUs;
291 ALOGI("size = %d, timeUs = %.2f secs", size, timeUs / 1E6);
310 accessUnit->meta()->setInt64("timeUs", info.mTimestampUs);
377 int64_t timeUs = fetchTimestamp(payloadSize + 4);
378 CHECK_GE(timeUs, 0ll);
379 accessUnit->meta()->setInt64("timeUs", timeUs);
397 int64_t timeUs;
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
MediaPuller.cpp 144 int64_t timeUs;
145 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs));
153 accessUnit->meta()->setInt64("timeUs", timeUs);
Converter.cpp 416 int64_t timeUs;
417 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
420 timeUs += copyUs;
421 buffer->meta()->setInt64("timeUs", timeUs);
462 int64_t timeUs;
463 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
465 partialAudioAU->meta()->setInt64("timeUs", timeUs)
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorSRC.cpp 170 int64_t timeUs = mInitialTimeStampUs + totalOutDurationUs;
171 to->setInt64(kKeyTime, timeUs);
NativeWindowRenderer.cpp 382 int64_t timeUs;
383 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
384 native_window_set_buffers_timestamp(anw, timeUs * 1000);
  /frameworks/av/media/libmedia/
IMediaMetadataRetriever.cpp 118 sp<IMemory> getFrameAtTime(int64_t timeUs, int option)
120 ALOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
123 data.writeInt64(timeUs);
208 int64_t timeUs = data.readInt64();
210 ALOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option);
214 sp<IMemory> bitmap = getFrameAtTime(timeUs, option);
  /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/av/cmds/stagefright/
SimplePlayer.cpp 490 int64_t timeUs;
491 CHECK_EQ(mExtractor->getSampleTime(&timeUs), (status_t)OK);
497 timeUs,
codec.cpp 175 int64_t timeUs;
176 err = extractor->getSampleTime(&timeUs);
185 timeUs,
211 0ll /* timeUs */,
sf2.cpp 432 outBuffer->meta()->setInt64("timeUs", 0);
482 int64_t timeUs;
483 CHECK(inBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
485 outBuffer->meta()->setInt64("timeUs", timeUs);
  /frameworks/av/media/libstagefright/
AudioSource.cpp 237 int64_t timeUs;
238 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
239 int64_t elapsedTimeUs = timeUs - mStartTimeUs;
275 int64_t timeUs = systemTime() / 1000ll;
277 ALOGV("dataCallbackTimestamp: %lld us", timeUs);
285 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) {
287 ALOGV("Drop audio data at %lld/%lld us", timeUs, mStartTimeUs);
292 mInitialReadTimeUs = timeUs;
295 mStartTimeUs = timeUs - mStartTimeUs;
330 queueInputBuffer_l(lostAudioBuffer, timeUs);
    [all...]
FragmentedMP4Extractor.cpp 279 int64_t timeUs;
280 CHECK(meta->findInt64("timeUs", &timeUs));
281 buffer->meta_data()->setInt64(kKeyTime, timeUs);
CameraSource.cpp 844 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs);
845 mFrameTimes.push_back(timeUs);
847 mStartTimeUs, timeUs);
StagefrightMetadataRetriever.cpp 234 int64_t timeUs;
235 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
237 if (timeUs != thumbNailTime) {
241 ALOGV("thumbNailTime = %lld us, timeUs = %lld us, mime = %s",
242 thumbNailTime, timeUs, mime);
322 int64_t timeUs, int option) {
324 ALOGV("getFrameAtTime: %lld us option: %d", timeUs, option);
386 timeUs, option);
393 timeUs, option);
FLACExtractor.cpp 647 int64_t timeUs = (1000000LL * sampleNumber) / getSampleRate();
648 buffer->meta_data()->setInt64(kKeyTime, timeUs);
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...]
MediaCodec.cpp 193 msg->setInt64("timeUs", presentationTimeUs);
224 msg->setInt64("timeUs", presentationTimeUs);
268 CHECK(response->findInt64("timeUs", presentationTimeUs));
420 int64_t timeUs;
421 CHECK(buffer->meta()->findInt64("timeUs", &timeUs));
423 response->setInt64("timeUs", timeUs);
    [all...]
  /frameworks/av/media/libstagefright/httplive/
LiveSession.cpp 98 void LiveSession::seekTo(int64_t timeUs) {
103 msg->setInt64("timeUs", timeUs);
919 int64_t timeUs;
920 CHECK(msg->findInt64("timeUs", &timeUs));
922 mSeekTimeUs = timeUs;

Completed in 173 milliseconds

1 2