Searched refs:startTimeUs (Results 1 - 17 of 17) sorted by relevance

/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/media/libstagefright/timedtext/
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...]
H A DTimedTextSRTSource.h39 int64_t *startTimeUs,
65 off64_t *offset, int64_t *startTimeUs, TextInfo *info);
69 AString *text, int64_t *startTimeUs, int64_t *endTimeUs);
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 DTimedText3GPPSource.h36 int64_t *startTimeUs,
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 DTimedTextSource.h46 int64_t *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.cpp628 int64_t startTimeUs; local
629 if (meta->findInt64(kKeyTime, &startTimeUs)) {
630 mStartTimeUs = startTimeUs;
H A DMPEG4Writer.cpp1699 int64_t startTimeUs; local
1700 if (params == NULL || !params->findInt64(kKeyTime, &startTimeUs)) {
1701 startTimeUs = 0;
1703 mStartTimeRealUs = startTimeUs;
1727 startTimeUs += startTimeOffsetUs;
1731 meta->setInt64(kKeyTime, startTimeUs);
H A DOMXCodec.cpp3627 int64_t startTimeUs = 0; local
3630 startTimeUs = timeUs;
3632 params->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/cmds/stagefright/
H A Dcodec.cpp136 int64_t startTimeUs = ALooper::GetNowUs(); local
286 int64_t elapsedTimeUs = ALooper::GetNowUs() - startTimeUs;
H A DSimplePlayer.cpp627 int64_t startTimeUs = ALooper::GetNowUs(); local
634 int64_t delayUs = ALooper::GetNowUs() - startTimeUs;
/frameworks/av/media/libmediaplayerservice/
H A DStagefrightRecorder.h133 void setupMPEG4MetaData(int64_t startTimeUs, int32_t totalBitRate,
H A DStagefrightRecorder.cpp1543 void StagefrightRecorder::setupMPEG4MetaData(int64_t startTimeUs, int32_t totalBitRate, argument
1545 (*meta)->setInt64(kKeyTime, startTimeUs);
1569 int64_t startTimeUs = systemTime() / 1000; local
1571 setupMPEG4MetaData(startTimeUs, totalBitRate, &meta);

Completed in 1320 milliseconds