Searched defs:startTimeUs (Results 1 - 13 of 13) sorted by relevance

/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.cpp67 int64_t *startTimeUs,
72 status_t err = getText(options, &text, startTimeUs, endTimeUs);
77 CHECK_GE(*startTimeUs, 0);
78 extractAndAppendLocalDescriptions(*startTimeUs, text, parcel);
88 int64_t startTimeUs; local
93 status_t err = getNextSubtitleInfo(&offset, &startTimeUs, &info);
96 mTextVector.add(startTimeUs, info);
127 off64_t *offset, int64_t *startTimeUs, TextInfo *info) {
151 *startTimeUs = ((hour1 * 3600 + min1 * 60 + sec1) * 1000 + msec1) * 1000ll;
153 if (info->endTimeUs <= *startTimeUs) {
66 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
126 getNextSubtitleInfo( off64_t *offset, int64_t *startTimeUs, TextInfo *info) argument
214 getText( const MediaSource::ReadOptions *options, AString *text, int64_t *startTimeUs, int64_t *endTimeUs) argument
287 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...]
/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp625 int64_t startTimeUs = ALooper::GetNowUs(); local
632 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
H A Dcodec.cpp135 int64_t startTimeUs = ALooper::GetNowUs(); local
285 int64_t elapsedTimeUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libstagefright/
H A DAudioSource.cpp117 int64_t startTimeUs; local
118 if (params && params->findInt64(kKeyTime, &startTimeUs)) {
119 mStartTimeUs = startTimeUs;
H A DSurfaceMediaSource.cpp146 int64_t startTimeUs; local
149 if (params->findInt64(kKeyTime, &startTimeUs)) {
150 mStartTimeNs = startTimeUs * 1000;
H A DCameraSource.cpp617 int64_t startTimeUs; local
618 if (meta->findInt64(kKeyTime, &startTimeUs)) {
619 mStartTimeUs = startTimeUs;
H A DOMXCodec.cpp3621 int64_t startTimeUs = 0; local
3624 startTimeUs = timeUs;
3626 params->setInt64(kKeyTime, startTimeUs);
H A DMPEG4Writer.cpp1592 int64_t startTimeUs; local
1593 if (params == NULL || !params->findInt64(kKeyTime, &startTimeUs)) {
1594 startTimeUs = 0;
1596 mStartTimeRealUs = startTimeUs;
1628 startTimeUs += startTimeOffsetUs;
1632 meta->setInt64(kKeyTime, startTimeUs);
/frameworks/av/media/libstagefright/chromium_http/
H A DChromiumHTTPDataSource.cpp197 int64_t startTimeUs = ALooper::GetNowUs(); local
210 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.cpp1533 void StagefrightRecorder::setupMPEG4MetaData(int64_t startTimeUs, int32_t totalBitRate, argument
1535 (*meta)->setInt64(kKeyTime, startTimeUs);
1559 int64_t startTimeUs = systemTime() / 1000; local
1561 setupMPEG4MetaData(startTimeUs, totalBitRate, &meta);

Completed in 1381 milliseconds