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

12

  /frameworks/av/media/libstagefright/wifi-display/source/
PlaybackSession.cpp 81 bool hasOutputBuffer(int64_t *timeUs) const;
265 int64_t *timeUs) const {
266 *timeUs = 0ll;
274 CHECK(outputBuffer->meta()->findInt64("timeUs", timeUs));
863 int64_t timeUs = ALooper::GetNowUs();
864 if (mPrevTimeUs < 0ll || mPrevTimeUs + 100000ll <= timeUs) {
868 mPrevTimeUs = timeUs;
927 int64_t timeUs;
928 if (track->hasOutputBuffer(&timeUs)) {
    [all...]
TSPacketizer.cpp 400 int64_t timeUs;
401 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
692 uint64_t PTS = (timeUs * 9ll) / 100ll;
853 int64_t timeUs;
854 CHECK(accessUnit->meta()->findInt64("timeUs", &timeUs));
858 accessUnit2->meta()->setInt64("timeUs", timeUs);
  /frameworks/base/media/jni/
android_media_MediaCodec.cpp 143 size_t offset, size_t size, int64_t timeUs, uint32_t flags,
146 index, offset, size, timeUs, flags, errorDetailMsg);
172 int64_t timeUs;
176 index, &offset, &size, &timeUs, &flags, timeoutUs)) != OK) {
183 env->CallVoidMethod(bufferInfo, method, offset, size, timeUs, flags);
  /frameworks/av/cmds/stagefright/
stagefright.cpp 575 int64_t timeUs;
576 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
578 printf("%lld\t%lld\t%lld\n", seekTimeUs, timeUs, seekTimeUs - timeUs);
    [all...]
  /frameworks/av/libvideoeditor/lvpp/
PreviewPlayer.cpp 676 status_t PreviewPlayer::seekTo(int64_t timeUs) {
679 return seekTo_l(timeUs);
899 int64_t timeUs;
900 CHECK(mVideoBuffer->meta_data()->findInt64(kKeyTime, &timeUs));
901 setPosition_l(timeUs);
904 int64_t playbackTimeRemaining = (mPlayEndTimeMsec * 1000LL) - timeUs;
915 finishSeekIfNecessary(timeUs);
936 mTimeSourceDeltaUs = ts->getRealTimeUs() - timeUs;
947 int64_t latenessUs = nowUs - timeUs;
954 ts->getRealTimeUs(),timeUs);
    [all...]
  /frameworks/av/media/libstagefright/
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 76 status_t seekToTime(int64_t timeUs);
190 int64_t timeUs;
191 if (packet->meta_data()->findInt64(kKeyTime, &timeUs)) {
192 ALOGI("found time = %lld us", timeUs);
312 status_t MyVorbisExtractor::seekToTime(int64_t timeUs) {
316 off64_t pos = timeUs * approxBitrate() / 8000000ll;
329 if (timeUs < entry.mTimeUs) {
331 } else if (timeUs > entry.mTimeUs) {
454 int64_t timeUs = -1;
496 timeUs = mCurrentPage.mGranulePosition * 1000000ll / mVi.rate
    [all...]
ACodec.cpp 157 int64_t timeUs,
    [all...]
AwesomePlayer.cpp 129 int64_t timeUs;
130 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
131 native_window_set_buffers_timestamp(mNativeWindow.get(), timeUs * 1000);
    [all...]
MPEG4Writer.cpp 280 void trackProgressStatus(int64_t timeUs, status_t err = OK);
    [all...]
OMXCodec.cpp     [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 465 int64_t timeUs = mBlockIter.blockTimeUs();
471 mbuf->meta_data()->setInt64(kKeyTime, timeUs);
599 int64_t timeUs;
600 CHECK(frame->meta_data()->findInt64(kKeyTime, &timeUs));
604 buffer->meta_data()->setInt64(kKeyTime, timeUs);
  /frameworks/av/media/libstagefright/mpeg2ts/
ATSParser.cpp 441 int64_t timeUs = (PTS * 100) / 9;
444 timeUs += mParser->mAbsoluteTimeAnchorUs;
447 return timeUs;
849 int64_t timeUs = 0ll; // no presentation timestamp available.
851 timeUs = mProgram->convertPTSToTimestamp(PTS);
854 status_t err = mQueue->appendData(data, size, timeUs);
933 int64_t timeUs;
934 CHECK(extra->findInt64("timeUs", &timeUs));
937 mAbsoluteTimeAnchorUs = timeUs;
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
MyHandler.h 180 void seek(int64_t timeUs) {
182 msg->setInt64("time", timeUs);
895 int64_t timeUs;
896 CHECK(msg->findInt64("time", &timeUs));
916 reply->setInt64("time", timeUs);
936 int64_t timeUs;
937 CHECK(msg->findInt64("time", &timeUs));
949 "Range: npt=%lld-\r\n", timeUs / 1000000ll));
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 328 milliseconds

12