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

  /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...]
mkvparser.cpp 991 else if (id == 0x0C53BB6B) //Cues ID
995 m_pCues = new (std::nothrow) Cues(
1175 if (id == 0x0C53BB6B) //Cues ID
1184 m_pCues = new Cues(this,
1239 //for the cluster (or cues) ID to terminate the parse.
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/
mkvparser.hpp 766 class Cues;
768 friend class Cues;
805 class Cues {
808 Cues(Segment*, long long start, long long size, long long element_start,
810 ~Cues();
812 Cues(const Cues&);
813 Cues& operator=(const Cues&);
929 friend class Cues;
    [all...]
mkvmuxer.hpp 160 // Class to hold one cue point in a Cues element.
209 // Cues element.
210 class Cues {
212 Cues();
213 ~Cues();
215 // Adds a cue point to the Cues element. Returns true on success.
222 // Returns the total size of the Cues element
225 // Output the Cues element to the writer. Returns true on success.
248 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cues);
855 // the cues element. |timecode_scale| is the timecode scale of the segment
    [all...]
mkvparser.cpp 964 Cues(this, pos, size, element_start, element_size);
1136 // Cues element of unknown size: Not supported.
1143 m_pCues = new (std::nothrow) Cues(this, pos, size, idpos, element_size);
1199 // for the cluster (or cues) ID to terminate the parse.
    [all...]
mkvmuxer.cpp 300 // Cues Class
302 Cues::Cues()
308 Cues::~Cues() {
318 bool Cues::AddCue(CuePoint* cue) {
330 CuePoint** const cues = local
332 if (!cues)
336 cues[i] = cue_entries_[i];
341 cue_entries_ = cues;
    [all...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.h 853 class Cues;
855 friend class Cues;
892 class Cues {
895 Cues(Segment*, long long start, long long size, long long element_start,
897 ~Cues();
899 Cues(const Cues&);
900 Cues& operator=(const Cues&);
1016 friend class Cues;
    [all...]
mkvparser.cc 963 Cues(this, pos, size, element_start, element_size);
1135 // Cues element of unknown size: Not supported.
1142 m_pCues = new (std::nothrow) Cues(this, pos, size, idpos, element_size);
1198 // for the cluster (or cues) ID to terminate the parse.
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
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.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...]
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...]
mkvparser.cpp 1001 else if (id == 0x0C53BB6B) //Cues ID
1005 m_pCues = new (std::nothrow) Cues(
1205 if (id == 0x0C53BB6B) //Cues ID
1214 m_pCues = new Cues(this,
1269 //for the cluster (or cues) ID to terminate the parse.
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libmkv/
EbmlIDs.h 164 Cues = 0x1C53BB6B,
  /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++) {
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 168 // This function does exactly the same as mkvparser::Cues::Find, except that it
184 // Binary searches through relevant cues; assumes cues are ordered by timecode.
185 // If we do detect out-of-order cues, return NULL.
384 // Special case the 0 seek to avoid loading Cues when the application
398 // If the Cues have not been located then find them.
399 const mkvparser::Cues* pCues = pSegment->GetCues();
404 ALOGV("No Cues yet");
409 if (pEntry->id == 0x0C53BB6B) { // Cues ID
413 ALOGV("Cues found")
    [all...]

Completed in 93 milliseconds