Searched defs:endTimeUs (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.h40 int64_t *endTimeUs,
53 int64_t endTimeUs; member in struct:android::TimedTextSRTSource::TextInfo
69 AString *text, int64_t *startTimeUs, int64_t *endTimeUs);
75 // [endTimeUs of the previous subtitle, endTimeUs of current subtitle).
H A DTimedText3GPPSource.cpp42 int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel,
54 // endTimeUs is a dummy parameter for 3gpp timed text format.
56 *endTimeUs = -1;
41 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
H A DTimedTextPlayer.cpp227 int64_t endTimeUs = 0; local
230 status_t err = mSource->read(&startTimeUs, &endTimeUs,
251 if (endTimeUs > 0) {
252 CHECK_GE(endTimeUs, startTimeUs);
255 postTextEvent(NULL, endTimeUs);
H A DTimedTextSRTSource.cpp67 int64_t *endTimeUs,
71 status_t err = getText(options, &text, startTimeUs, endTimeUs);
151 info->endTimeUs = ((hour2 * 3600 + min2 * 60 + sec2) * 1000 + msec2) * 1000ll;
152 if (info->endTimeUs <= *startTimeUs) {
215 AString *text, int64_t *startTimeUs, int64_t *endTimeUs) {
224 mTextVector.valueAt(mTextVector.size() - 1).endTimeUs;
256 *endTimeUs = info.endTimeUs;
285 int64_t endTimeUs = mTextVector.valueAt(index).endTimeUs; local
65 read( int64_t *startTimeUs, int64_t *endTimeUs, Parcel *parcel, const MediaSource::ReadOptions *options) argument
213 getText( const MediaSource::ReadOptions *options, AString *text, int64_t *startTimeUs, int64_t *endTimeUs) argument
[all...]
/frameworks/av/media/libstagefright/timedtext/test/
H A DTimedTextSRTSource_test.cpp112 int64_t endTimeUs; 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);
161 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
165 err = mSource->read(&startTimeUs, &endTimeUs, &parcel, &options);
173 err = mSource->read(&startTimeUs, &endTimeUs,
[all...]

Completed in 216 milliseconds