/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));
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
StreamingSource.cpp | 176 int64_t timeUs; 177 CHECK((*accessUnit)->meta()->findInt64("timeUs", &timeUs)); 178 ALOGV("dequeueAccessUnit timeUs=%lld us", timeUs);
|
GenericSource.cpp | 254 int64_t timeUs; 255 CHECK(mbuf->meta_data()->findInt64(kKeyTime, &timeUs)); 257 buffer->meta()->setInt64("timeUs", timeUs); 260 *actualTimeUs = timeUs;
|
HTTPLiveSource.cpp | 176 int64_t timeUs, baseUs, durationUs, delayUs; 178 CHECK(buffer->meta()->findInt64("timeUs", &timeUs)); 180 delayUs = baseUs + timeUs - ALooper::GetNowUs();
|
/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);
|
Converter.cpp | 555 int64_t timeUs; 556 CHECK(buffer->meta()->findInt64("timeUs", &timeUs)); 559 timeUs += copyUs; 560 buffer->meta()->setInt64("timeUs", timeUs); 601 int64_t timeUs; 602 CHECK(buffer->meta()->findInt64("timeUs", &timeUs)); 604 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 | 119 sp<IMemory> getFrameAtTime(int64_t timeUs, int option) 121 ALOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option); 124 data.writeInt64(timeUs); 223 int64_t timeUs = data.readInt64(); 225 ALOGV("getTimeAtTime: time(%lld us) and option(%d)", timeUs, option); 229 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/media/libstagefright/mpeg2ts/ |
AnotherPacketSource.cpp | 156 int64_t timeUs; 157 CHECK(buffer->meta()->findInt64("timeUs", &timeUs)); 161 mediaBuffer->meta_data()->setInt64(kKeyTime, timeUs); 187 CHECK(buffer->meta()->findInt64("timeUs", &lastQueuedTimeUs)); 189 ALOGV("queueAccessUnit timeUs=%lld us (%.2f secs)", mLastQueuedTimeUs, mLastQueuedTimeUs / 1E6); 199 CHECK(mLatestEnqueuedMeta->findInt64("timeUs", &latestTimeUs)); 282 int64_t timeUs; 283 if (buffer->meta()->findInt64("timeUs", &timeUs)) { [all...] |
MPEG2PSExtractor.cpp | 634 int64_t timeUs; 636 timeUs = (PTS * 100) / 9; 638 timeUs = 0; 641 status_t err = mQueue->appendData(data, size, timeUs);
|
/frameworks/av/media/libstagefright/wifi-display/ |
MediaSender.cpp | 233 int64_t timeUs; 235 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs)); 237 if (minTrackIndex < 0 || timeUs < minTimeUs) { 239 minTimeUs = timeUs; 260 int64_t timeUs; 261 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs)); 262 tsPackets->meta()->setInt64("timeUs", timeUs); [all...] |
/frameworks/av/cmds/stagefright/ |
SimplePlayer.cpp | 492 int64_t timeUs; 493 CHECK_EQ(mExtractor->getSampleTime(&timeUs), (status_t)OK); 499 timeUs,
|
codec.cpp | 176 int64_t timeUs; 177 err = extractor->getSampleTime(&timeUs); 186 timeUs, 212 0ll /* timeUs */,
|
muxer.cpp | 158 int64_t timeUs; 159 err = extractor->getSampleTime(&timeUs); 173 if (enableTrim && timeUs > trimStartTimeUs && 174 timeUs <= trimEndTimeUs) { 176 trimOffsetTimeUs = timeUs; 182 if (enableTrim && timeUs > trimEndTimeUs) { 189 timeUs - trimOffsetTimeUs, sampleFlags);
|
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 | 232 int64_t timeUs; 233 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs)); 234 int64_t elapsedTimeUs = timeUs - mStartTimeUs; 270 int64_t timeUs = systemTime() / 1000ll; 272 ALOGV("dataCallbackTimestamp: %lld us", timeUs); 280 if (mNumFramesReceived == 0 && timeUs < mStartTimeUs) { 282 ALOGV("Drop audio data at %lld/%lld us", timeUs, mStartTimeUs); 287 mInitialReadTimeUs = timeUs; 290 mStartTimeUs = timeUs - mStartTimeUs; 325 queueInputBuffer_l(lostAudioBuffer, timeUs); [all...] |
CameraSource.cpp | 855 int64_t timeUs = mStartTimeUs + (timestampUs - mFirstFrameTimeUs); 856 mFrameTimes.push_back(timeUs); 858 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 | 674 int64_t timeUs = (1000000LL * sampleNumber) / getSampleRate(); 675 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...] |
/frameworks/av/media/libstagefright/omx/ |
GraphicBufferSource.cpp | 549 int64_t timeUs = item.mTimestamp / 1000; 560 int64_t originalTimeUs = timeUs; 569 timeUs = (timestampGapUs < mMaxTimestampGapUs ? 573 mPrevModifiedTimeUs = timeUs; 574 mOriginalTimeUs.add(timeUs, originalTimeUs); 575 ALOGV("IN timestamp: %lld -> %lld", originalTimeUs, timeUs); 578 return timeUs; 585 int64_t timeUs = getTimestamp(item); 586 if (timeUs < 0ll) { 605 timeUs); [all...] |
/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...] |