Searched defs:startTimeUs (Results 1 - 14 of 14) sorted by path

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp627 int64_t startTimeUs = ALooper::GetNowUs(); local
634 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
H A Dcodec.cpp136 int64_t startTimeUs = ALooper::GetNowUs(); local
286 int64_t elapsedTimeUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1562 void StagefrightRecorder::setupMPEG4MetaData(int64_t startTimeUs, int32_t totalBitRate, argument
1564 (*meta)->setInt64(kKeyTime, startTimeUs);
1588 int64_t startTimeUs = systemTime() / 1000; local
1590 setupMPEG4MetaData(startTimeUs, totalBitRate, &meta);
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp113 int64_t startTimeUs; local
114 if (params && params->findInt64(kKeyTime, &startTimeUs)) {
115 mStartTimeUs = startTimeUs;
H A DCameraSource.cpp628 int64_t startTimeUs; local
629 if (meta->findInt64(kKeyTime, &startTimeUs)) {
630 mStartTimeUs = startTimeUs;
H A DMPEG4Writer.cpp1701 int64_t startTimeUs; local
1702 if (params == NULL || !params->findInt64(kKeyTime, &startTimeUs)) {
1703 startTimeUs = 0;
1705 mStartTimeRealUs = startTimeUs;
1729 startTimeUs += startTimeOffsetUs;
1733 meta->setInt64(kKeyTime, startTimeUs);
H A DOMXCodec.cpp3625 int64_t startTimeUs = 0; local
3628 startTimeUs = timeUs;
3630 params->setInt64(kKeyTime, startTimeUs);
H A DSurfaceMediaSource.cpp143 int64_t startTimeUs; local
146 if (params->findInt64(kKeyTime, &startTimeUs)) {
147 mStartTimeNs = startTimeUs * 1000;
/frameworks/av/media/libstagefright/chromium_http/
H A DChromiumHTTPDataSource.cpp202 int64_t startTimeUs = ALooper::GetNowUs(); local
215 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.cpp335 int64_t startTimeUs,
358 msg->setInt64("startTimeUs", startTimeUs);
449 int64_t startTimeUs; local
451 CHECK(msg->findInt64("startTimeUs", &startTimeUs));
483 mStartTimeUs = startTimeUs;
1119 int64_t startTimeUs; local
1121 && !mStartTimeUsNotify->findInt64(key, &startTimeUs)) {
331 startAsync( const sp<AnotherPacketSource> &audioSource, const sp<AnotherPacketSource> &videoSource, const sp<AnotherPacketSource> &subtitleSource, int64_t startTimeUs, int64_t minStartTimeUs, int32_t startSeqNumberHint) argument
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp42 int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel,
50 textBuffer->meta_data()->findInt64(kKeyTime, startTimeUs);
51 CHECK_GE(*startTimeUs, 0);
52 extractAndAppendLocalDescriptions(*startTimeUs, textBuffer, parcel);
41 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
H A DTimedTextPlayer.cpp226 int64_t startTimeUs = 0; local
230 status_t err = mSource->read(&startTimeUs, &endTimeUs,
250 postTextEvent(parcelEvent, startTimeUs);
252 CHECK_GE(endTimeUs, startTimeUs);
H A DTimedTextSRTSource.cpp66 int64_t *startTimeUs,
71 status_t err = getText(options, &text, startTimeUs, endTimeUs);
76 CHECK_GE(*startTimeUs, 0);
77 extractAndAppendLocalDescriptions(*startTimeUs, text, parcel);
87 int64_t startTimeUs; local
92 status_t err = getNextSubtitleInfo(&offset, &startTimeUs, &info);
95 mTextVector.add(startTimeUs, info);
126 off64_t *offset, int64_t *startTimeUs, TextInfo *info) {
150 *startTimeUs = ((hour1 * 3600 + min1 * 60 + sec1) * 1000 + msec1) * 1000ll;
152 if (info->endTimeUs <= *startTimeUs) {
65 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
125 getNextSubtitleInfo( off64_t *offset, int64_t *startTimeUs, TextInfo *info) argument
213 getText( const MediaSource::ReadOptions *options, AString *text, int64_t *startTimeUs, int64_t *endTimeUs) argument
286 int64_t startTimeUs = (index > 0) ? local
[all...]
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp111 int64_t startTimeUs; member in class:android::test::TimedTextSRTSourceTest
120 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
127 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
133 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
139 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
145 err = mSource->read(&startTimeUs, &endTimeUs, &parcel);
152 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
154 EXPECT_EQ(1 * kSecToUsec, startTimeUs);
161 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
165 err = mSource->read(&startTimeUs,
[all...]

Completed in 176 milliseconds