/external/libvpx/libvpx/third_party/libwebm/ |
RELEASE.TXT | 8 * Made Cues member variables mutables
16 * Parsed SeekHead to find cues
18 * Added not to attempt to reparse cues element
20 * Marked position of cues without parsing cues element
23 * Merged Cues::LoadCuePoint into Cues::Find
24 * Lazy init cues
28 * added support for Cues element
|
mkvmuxer.hpp | 130 // Class to hold one cue point in a Cues element. 179 // Cues element. 180 class Cues { 182 Cues(); 183 ~Cues(); 185 // Adds a cue point to the Cues element. Returns true on success. 192 // Returns the total size of the Cues element 195 // Output the Cues element to the writer. Returns true on success. 218 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cues); 707 // the cues element [all...] |
mkvparser.hpp | 673 class Cues; 675 friend class Cues; 712 class Cues { 715 Cues(Segment*, long long start, long long size, long long element_start, 717 ~Cues(); 719 Cues(const Cues&); 720 Cues& operator=(const Cues&); 844 friend class Cues; [all...] |
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...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/ |
RELEASE.TXT | 8 * Made Cues member variables mutables
16 * Parsed SeekHead to find cues
18 * Added not to attempt to reparse cues element
20 * Marked position of cues without parsing cues element
23 * Merged Cues::LoadCuePoint into Cues::Find
24 * Lazy init cues
28 * added support for Cues element
|
mkvmuxer.hpp | 131 // Class to hold one cue point in a Cues element. 180 // Cues element. 181 class Cues { 183 Cues(); 184 ~Cues(); 186 // Adds a cue point to the Cues element. Returns true on success. 193 // Returns the total size of the Cues element 196 // Output the Cues element to the writer. Returns true on success. 219 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cues); 714 // the cues element [all...] |
mkvparser.hpp | 768 class Cues; 771 friend class Cues; 811 class Cues 815 Cues( 821 ~Cues(); 823 Cues(const Cues&); 824 Cues& operator=(const Cues&); 965 friend class Cues; [all...] |
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...] |
/frameworks/base/media/java/android/media/ |
SubtitleTrack.java | 97 * @param runID mostly-unique ID for this run of data. Subtitle cues 99 * display. Cues with runID of ~0 are discarded 100 * only at the deletion of the track object. Cues 103 * any of its cues (with this runID). 120 * Called when the active cues have changed, and the contents of the subtitle 129 // out-of-order times mean seeking or new active cues being added 141 // remove past cues 148 // add new cues 190 /* remove all cues (untangle all cross-links) */ 205 if (DEBUG) Log.v(TAG, "Clearing " + mActiveCues.size() + " active cues"); 401 Vector<Cue> cues = mCues.get(timeMs); local 415 Vector<Cue> cues = mCues.get(timeMs); local [all...] |
WebVttRenderer.java | [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/ |
TODO | 11 - Avoid reparsing Cues and ignore any SeekHead at end of file. 13 - Support seeking without Cues.
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
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++) {
|
webmenc.h | 63 unsigned int cues; member in struct:EbmlGlobal
|
/frameworks/av/media/libstagefright/webm/ |
WebmWriter.cpp | 198 " bit rate: %d bps and the estimated cues size %" PRId64 " bytes", 276 sp<WebmElement> cues = new WebmMaster(kMkvCues, mCuePoints); local 277 uint64_t cuesSize = cues->totalSize(); 278 // TRICKY Even when the cues do fit in the space we reserved, if they do not fit 283 cues->write(mFd, cuesSize); 287 cues->write(mFd, cuesSize); 428 sp<WebmElement> ebml, segment, info, seekHead, tracks, cues; local 443 cues = NULL; 451 cues = new EbmlVoid(mEstimatedCuesSize); 454 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),
|
WebmFrameThread.h | 64 List<sp<WebmElement> >& cues); 71 List<sp<WebmElement> >& cues);
|
/frameworks/base/docs/html/training/accessibility/ |
index.jd | 26 pay attention to accessibility in your Android application. Cues in your user
|
accessible-app.jd | 49 cues are needed.</p> 92 application and listen for the audible cues provided by TalkBack.</p> 197 navigate without any visual cues. Fix problem areas as they appear, and you'll
|
/external/libvpx/libwebm/ |
mkvparser.hpp | 673 class Cues; 675 friend class Cues; 712 class Cues { 715 Cues(Segment*, long long start, long long size, long long element_start, 717 ~Cues(); 719 Cues(const Cues&); 720 Cues& operator=(const Cues&); 844 friend class Cues; [all...] |
/frameworks/av/media/libstagefright/matroska/ |
MatroskaExtractor.cpp | 164 // This function does exactly the same as mkvparser::Cues::Find, except that it 180 // Binary searches through relevant cues; assumes cues are ordered by timecode. 181 // If we do detect out-of-order cues, return NULL. 371 // Special case the 0 seek to avoid loading Cues when the application 385 // If the Cues have not been located then find them. 386 const mkvparser::Cues* pCues = pSegment->GetCues(); 391 ALOGV("No Cues yet"); 396 if (pEntry->id == 0x0C53BB6B) { // Cues ID 400 ALOGV("Cues found") [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/ |
mkvparser.hpp | 588 class Cues;
591 friend class Cues;
632 class Cues
636 Cues(
642 ~Cues();
644 Cues(const Cues&);
645 Cues& operator=(const Cues&);
784 friend class 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...] |
/frameworks/base/docs/html/training/animation/ |
index.jd | 40 Animations can add subtle visual cues that notify users about what's going on in your app and
|
/frameworks/base/docs/html/training/transitions/ |
overview.jd | 18 highlight changes and provide visual cues that help users learn how your app works.</p> 44 <strong>Figure 1.</strong> Visual cues using user interface animation.</p> 59 <p>The example in Figure 1 shows how an animation provides visual cues to help the user. As the
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/nestegg/include/nestegg/ |
nestegg.h | 190 @param cluster_num Zero-based cluster number; order they appear in cues. 334 /** Query the presence of cues. 336 @retval 0 The media has no cues. 337 @retval 1 The media has cues. */
|