Searched refs:endTimeUs (Results 1 - 9 of 9) sorted by relevance

/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...]
/frameworks/av/media/libstagefright/timedtext/
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...]
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.h37 int64_t *endTimeUs,
H A DTimedTextPlayer.cpp228 int64_t endTimeUs = 0; local
231 status_t err = mSource->read(&startTimeUs, &endTimeUs,
252 if (endTimeUs > 0) {
253 CHECK_GE(endTimeUs, startTimeUs);
256 postTextEvent(NULL, endTimeUs);
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 DTimedTextSource.h47 int64_t *endTimeUs,
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp374 int64_t endTimeUs; local
375 buffer->meta()->findInt64("timeUs", &endTimeUs);
376 if (endTimeUs < 0) {
381 if (endTimeUs > startTimeUs) {
382 diffUs = endTimeUs - startTimeUs;
384 diffUs = startTimeUs - endTimeUs;
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java663 private List<TtmlNode> getActiveNodes(long startTimeUs, long endTimeUs) { argument
667 if (node.isActive(startTimeUs, endTimeUs)) {

Completed in 138 milliseconds