HomeSort by relevance Sort by last modified time
    Searched refs:cue (Results 1 - 15 of 15) sorted by null

  /frameworks/base/media/java/android/media/
SubtitleTrack.java 53 final protected Vector<Cue> mActiveCues = new Vector<Cue>();
125 public abstract void updateView(Vector<Cue> activeCues);
135 for(Iterator<Pair<Long, Cue> > it =
137 Pair<Long, Cue> event = it.next();
138 Cue cue = event.second; local
140 if (cue.mEndTimeMs == event.first) {
142 if (DEBUG) Log.v(TAG, "Removing " + cue);
143 mActiveCues.remove(cue);
172 Cue cue = run.mFirstCue; local
524 Cue cue = mLastEntry.second; local
    [all...]
SRTRenderer.java 86 TextTrackCue cue = new TextTrackCue(); local
87 cue.mStartTimeMs = data.getStartTimeUs() / 1000;
88 cue.mEndTimeMs = (data.getStartTimeUs() + data.getDurationUs()) / 1000;
93 cue.mLines = new TextTrackCueSpan[lines.length][];
100 cue.mLines[i++] = span;
103 addCue(cue);
124 TextTrackCue cue = new TextTrackCue(); local
126 cue.mStartTimeMs = parseMs(startEnd[0]);
127 cue.mEndTimeMs = parseMs(startEnd[1]);
136 cue.mLines = new TextTrackCueSpan[paragraph.size()][]
    [all...]
WebVttRenderer.java 77 // spans with timestamp will be enabled by Cue.onTime
152 // for politeness, finish last cue-line if it ends abruptly
166 * Tokenizer tokenizes the WebVTT Cue Text into tags and data
378 class TextTrackCue extends SubtitleTrack.Cue {
429 TextTrackCue cue = (TextTrackCue) o; local
430 boolean res = mId.equals(cue.mId) &&
431 mPauseOnExit == cue.mPauseOnExit &&
432 mWritingDirection == cue.mWritingDirection &&
433 mRegionId.equals(cue.mRegionId) &&
434 mSnapToLines == cue.mSnapToLines &
1241 final TextTrackCue cue = (TextTrackCue) activeCues.get(i); local
1400 final TextTrackCue cue = cueBox.getCue(); local
1472 final TextTrackCue cue = cueBox.getCue(); local
1762 final TextTrackCue cue = mCue; local
    [all...]
TtmlRenderer.java 273 * A container class which represents a cue in TTML.
276 class TtmlCue extends SubtitleTrack.Cue {
595 TtmlCue cue = null; local
596 while ((cue = getNextResult()) != null) {
597 addCue(cue);
605 public void updateView(Vector<SubtitleTrack.Cue> activeCues) {
733 public void setActiveCues(Vector<SubtitleTrack.Cue> activeCues) {
737 TtmlCue cue = (TtmlCue) activeCues.get(i); local
738 subtitleText += cue.mText + "\n";
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
webmenc.c 251 /* Save a cue point if this is a keyframe. */
253 struct cue_entry *cue, *new_cue_list; local
260 fatal("Failed to realloc cue list.");
262 cue = &glob->cue_list[glob->cues];
263 cue->time = glob->cluster_timecode;
264 cue->loc = glob->cluster_pos;
305 struct cue_entry *cue = &glob->cue_list[i]; local
307 Ebml_SerializeUnsigned(glob, CueTime, cue->time);
312 cue->loc - glob->position_reference);
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxer.cpp 254 CuePoint* const cue = cue_entries_[i]; local
255 delete cue;
261 bool Cues::AddCue(CuePoint* cue) {
262 if (!cue)
288 cue->set_output_block_number(output_block_number_);
289 cue_entries_[cue_entries_size_++] = cue;
317 const CuePoint* const cue = GetCueByIndex(i); local
319 if (!cue)
322 size += cue->Size();
333 const CuePoint* const cue = GetCueByIndex(i) local
2237 CuePoint* const cue = new (std::nothrow) CuePoint(); \/\/ NOLINT local
    [all...]
mkvmuxer.hpp 130 // Class to hold one cue point in a Cues element.
171 // If true the muxer will write out the block number for the cue if the
185 // Adds a cue point to the Cues element. Returns true on success.
186 bool AddCue(CuePoint* cue);
188 // Returns the cue point by index. Returns NULL if there is no cue point
214 // If true the muxer will write out the block number for the cue if the
536 // Cue Identifier line in WebVTT.)
630 // The string identifier for this chapter (corresponds to WebVTT cue
869 // The file position used for cue points
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxer.cpp 261 CuePoint* const cue = cue_entries_[i]; local
262 delete cue;
268 bool Cues::AddCue(CuePoint* cue) {
269 if (!cue)
295 cue->set_output_block_number(output_block_number_);
296 cue_entries_[cue_entries_size_++] = cue;
324 const CuePoint* const cue = GetCueByIndex(i); local
326 if (!cue)
329 size += cue->Size();
340 const CuePoint* const cue = GetCueByIndex(i) local
2352 CuePoint* const cue = new (std::nothrow) CuePoint(); \/\/ NOLINT local
    [all...]
mkvmuxer.hpp 131 // Class to hold one cue point in a Cues element.
172 // If true the muxer will write out the block number for the cue if the
186 // Adds a cue point to the Cues element. Returns true on success.
187 bool AddCue(CuePoint* cue);
189 // Returns the cue point by index. Returns NULL if there is no cue point
215 // If true the muxer will write out the block number for the cue if the
540 // Cue Identifier line in WebVTT.)
637 // The string identifier for this chapter (corresponds to WebVTT cue
903 // The file position used for cue points
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 488 Property cue = new Property(16, cueLiterals0, zeroFns); typedefs
489 builder.put("cue", cue);
    [all...]
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /build/tools/droiddoc/templates-ndk/assets/js/
docs.js 660 // if a video different from the one already playing was requested, cue it up
    [all...]
  /build/tools/droiddoc/templates-sdk-dev/assets/js/
docs.js 650 // if a video different from the one already playing was requested, cue it up
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 617 // if a video different from the one already playing was requested, cue it up
    [all...]

Completed in 256 milliseconds