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

  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.idl 35 readonly attribute TextTrackCueList cues;
TextTrack.h 95 TextTrackCueList* cues();
TextTrack.cpp 174 // If mode changes to disabled, remove this track's cues from the client
175 // because they will no longer be accessible from the cues() function.
189 TextTrackCueList* TextTrack::cues() function in class:WebCore::TextTrack
192 // then the cues attribute must return a live TextTrackCueList object ...
195 // http://www.whatwg.org/specs/web-apps/current-work/#dom-texttrack-cues
243 // 1. If the given cue is in a text track list of cues, then remove cue from that text track
244 // list of cues.
249 // 2. Add cue to the method's TextTrack object's text track's text track list of cues.
267 // object's text track's text track list of cues, then throw a NotFoundError exception.
273 // 2. Remove cue from the method's TextTrack object's text track's text track list of cues
    [all...]
TextTrackCue.cpp 485 m_cueIndex = track()->cues()->getCueIndex(this);
534 // When a TextTrack's mode is disabled: no cues are active, no events fired.
    [all...]
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 88 * @param runID mostly-unique ID for this run of data. Subtitle cues
90 * display. Cues with runID of ~0 are discarded
91 * only at the deletion of the track object. Cues
94 * any of its cues (with this runID).
113 * Called when the active cues have changed, and the contents of the subtitle
122 // out-of-order times mean seeking or new active cues being added
134 // remove past cues
141 // add new cues
183 /* remove all cues (untangle all cross-links) */
198 if (DEBUG) Log.v(TAG, "Clearing " + mActiveCues.size() + " active cues");
388 Vector<Cue> cues = mCues.get(timeMs); local
402 Vector<Cue> cues = mCues.get(timeMs); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTrackElement.cpp 333 void HTMLTrackElement::textTrackAddCues(TextTrack* track, const TextTrackCueList* cues)
336 return parent->textTrackAddCues(track, cues);
339 void HTMLTrackElement::textTrackRemoveCues(TextTrack* track, const TextTrackCueList* cues)
342 return parent->textTrackRemoveCues(track, cues);
HTMLMediaElement.cpp 2597 TextTrackCueList* cues = track->cues(); local
    [all...]
  /external/libvpx/libvpx/
webmenc.h 59 unsigned int cues; member in struct:EbmlGlobal
webmenc.c 130 write_webm_seek_element(ebml, Cues, ebml->cue_pos);
256 (glob->cues + 1) * sizeof(struct cue_entry));
262 cue = &glob->cue_list[glob->cues];
265 glob->cues++;
302 Ebml_StartSubElement(glob, &start_cues, Cues);
304 for (i = 0; i < glob->cues; i++) {
  /external/libvpx/libvpx/nestegg/src/
nestegg.c 84 /* Cues Elements */
249 struct cues { struct
258 struct cues cues; member in struct:segment
430 E_MASTER(ID_CUE_POINT, TYPE_MASTER, struct cues, cue_point),
439 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
    [all...]

Completed in 358 milliseconds