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

  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrack.idl 41 readonly attribute TextTrackCueList cues;
TextTrackCue.cpp 127 m_cueIndex = track()->cues()->getCueIndex(this);
139 // When a TextTrack's mode is disabled: no cues are active, no events fired.
TextTrack.h 80 TextTrackCueList* cues();
TextTrack.cpp 171 // If mode changes to disabled, remove this track's cues from the client
172 // because they will no longer be accessible from the cues() function.
186 TextTrackCueList* TextTrack::cues() function in class:blink::TextTrack
189 // then the cues attribute must return a live TextTrackCueList object ...
192 // http://www.whatwg.org/specs/web-apps/current-work/#dom-texttrack-cues
240 // 1. If the given cue is in a text track list of cues, then remove cue from that text track
241 // list of cues.
246 // 2. Add cue to the method's TextTrack object's text track's text track list of cues.
264 // object's text track's text track list of cues, then throw a NotFoundError exception.
266 exceptionState.throwDOMException(NotFoundError, "The specified cue is not listed in the TextTrack's list of cues.")
    [all...]
  /frameworks/base/media/java/android/media/
SubtitleTrack.java 96 * @param runID mostly-unique ID for this run of data. Subtitle cues
98 * display. Cues with runID of ~0 are discarded
99 * only at the deletion of the track object. Cues
102 * any of its cues (with this runID).
119 * Called when the active cues have changed, and the contents of the subtitle
128 // out-of-order times mean seeking or new active cues being added
140 // remove past cues
147 // add new cues
189 /* remove all cues (untangle all cross-links) */
204 if (DEBUG) Log.v(TAG, "Clearing " + mActiveCues.size() + " active cues");
400 Vector<Cue> cues = mCues.get(timeMs); local
414 Vector<Cue> cues = mCues.get(timeMs); local
    [all...]
  /frameworks/av/media/libstagefright/webm/
WebmFrameThread.h 64 List<sp<WebmElement> >& cues);
71 List<sp<WebmElement> >& cues);
WebmWriter.cpp 230 " bit rate: %d bps and the estimated cues size %" PRId64 " bytes",
308 sp<WebmElement> cues = new WebmMaster(kMkvCues, mCuePoints); local
309 uint64_t cuesSize = cues->totalSize();
310 // TRICKY Even when the cues do fit in the space we reserved, if they do not fit
315 cues->write(mFd, cuesSize);
319 cues->write(mFd, cuesSize);
461 sp<WebmElement> ebml, segment, info, seekHead, tracks, cues; local
476 cues = NULL;
484 cues = new EbmlVoid(mEstimatedCuesSize);
487 sp<WebmElement> elems[] = { ebml, segment, seekHead, info, tracks, cues };
    [all...]
WebmFrameThread.cpp 69 List<sp<WebmElement> >& cues)
74 mCues(cues),
83 List<sp<WebmElement> >& cues)
88 mCues(cues),
  /external/libvpx/libvpx/
webmenc.h 63 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++) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
webmenc.h 63 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/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
earcons_background.js 7 * auditory cues.
  /external/libvpx/libvpx/third_party/nestegg/src/
nestegg.c 88 /* Cues Elements */
258 struct cues { struct
267 struct cues cues; member in struct:segment
446 E_MASTER(ID_CUE_POINT, TYPE_MASTER, struct cues, cue_point),
455 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/src/
nestegg.c 88 /* Cues Elements */
258 struct cues { struct
267 struct cues cues; member in struct:segment
446 E_MASTER(ID_CUE_POINT, TYPE_MASTER, struct cues, cue_point),
455 E_SINGLE_MASTER(ID_CUES, TYPE_MASTER, struct segment, cues),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLMediaElement.cpp     [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvmuxer.cpp 243 // Cues Class
245 Cues::Cues()
251 Cues::~Cues() {
261 bool Cues::AddCue(CuePoint* cue) {
273 CuePoint** const cues = local
275 if (!cues)
279 cues[i] = cue_entries_[i];
284 cue_entries_ = cues;
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvmuxer.cpp 249 // Cues Class
251 Cues::Cues()
258 Cues::~Cues() {
268 bool Cues::AddCue(CuePoint* cue) {
280 CuePoint** const cues = local
282 if (!cues)
286 cues[i] = cue_entries_[i];
291 cue_entries_ = cues;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvmuxer.cpp 249 // Cues Class
251 Cues::Cues()
258 Cues::~Cues() {
268 bool Cues::AddCue(CuePoint* cue) {
280 CuePoint** const cues = local
282 if (!cues)
286 cues[i] = cue_entries_[i];
291 cue_entries_ = cues;
    [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 320 milliseconds