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

12

  /frameworks/base/cmds/stagefright/
stagefright.cpp 578 int64_t timeUs;
579 CHECK(buffer->meta_data()->findInt64(kKeyTime, &timeUs));
581 printf("%lld\t%lld\t%lld\n", seekTimeUs, timeUs, seekTimeUs - timeUs);
  /frameworks/base/media/libstagefright/
ACodec.cpp 155 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);
847 int64_t timeUs;
848 status_t err = getSampleInfo(0, 0, &offset, &size, &isKey, &timeUs);
852 err = getSampleInfo(0, 0, &offset, &size, &isKey, &timeUs);
1004 int64_t timeUs;
1006 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 LOGI("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...]
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...]
OMXCodec.cpp     [all...]
  /frameworks/base/media/libstagefright/rtsp/
MyHandler.h 179 void seek(int64_t timeUs) {
181 msg->setInt64("time", timeUs);
895 int64_t timeUs;
896 CHECK(msg->findInt64("time", &timeUs));
916 reply->setInt64("time", timeUs);
935 int64_t timeUs;
936 CHECK(msg->findInt64("time", &timeUs));
948 "Range: npt=%lld-\r\n", timeUs / 1000000ll));
    [all...]
  /frameworks/media/libvideoeditor/lvpp/
PreviewPlayerBase.cpp 1098 status_t PreviewPlayerBase::seekTo(int64_t timeUs) {
1101 return seekTo_l(timeUs);
1107 status_t PreviewPlayerBase::seekTo_l(int64_t timeUs) {
1123 mSeekTimeUs = timeUs;
    [all...]
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/11/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/15/
android.jar 

Completed in 627 milliseconds

12