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

  /external/libaom/libaom/third_party/libwebm/mkvparser/
mkvparser.h 888 class Cues;
890 friend class Cues;
927 class Cues {
930 Cues(Segment*, long long start, long long size, long long element_start,
932 ~Cues();
934 Cues(const Cues&);
935 Cues& operator=(const Cues&);
1051 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...]
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvparser.h 888 class Cues;
890 friend class Cues;
927 class Cues {
930 Cues(Segment*, long long start, long long size, long long element_start,
932 ~Cues();
934 Cues(const Cues&);
935 Cues& operator=(const Cues&);
1051 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...]
  /external/libvpx/libwebm/mkvparser/
mkvparser.h 888 class Cues;
890 friend class Cues;
927 class Cues {
930 Cues(Segment*, long long start, long long size, long long element_start,
932 ~Cues();
934 Cues(const Cues&);
935 Cues& operator=(const Cues&);
1051 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...]
  /external/libaom/libaom/third_party/libwebm/mkvmuxer/
mkvmuxer.h 182 // Class to hold one cue point in a Cues element.
231 // Cues element.
232 class Cues {
234 Cues();
235 ~Cues();
237 // Adds a cue point to the Cues element. Returns true on success.
244 // Returns the total size of the Cues element
247 // Output the Cues element to the writer. Returns true on success.
270 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cues);
    [all...]
mkvmuxer.cc 373 // Cues Class
375 Cues::Cues()
381 Cues::~Cues() {
391 bool Cues::AddCue(CuePoint* cue) {
403 CuePoint** const cues = local
405 if (!cues)
409 cues[i] = cue_entries_[i];
414 cue_entries_ = cues;
    [all...]
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvmuxer.h 182 // Class to hold one cue point in a Cues element.
231 // Cues element.
232 class Cues {
234 Cues();
235 ~Cues();
237 // Adds a cue point to the Cues element. Returns true on success.
244 // Returns the total size of the Cues element
247 // Output the Cues element to the writer. Returns true on success.
270 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(Cues);
    [all...]
mkvmuxer.cc 373 // Cues Class
375 Cues::Cues()
381 Cues::~Cues() {
391 bool Cues::AddCue(CuePoint* cue) {
403 CuePoint** const cues = local
405 if (!cues)
409 cues[i] = cue_entries_[i];
414 cue_entries_ = cues;
    [all...]
  /frameworks/av/media/extractors/mkv/
MatroskaExtractor.cpp 190 // This function does exactly the same as mkvparser::Cues::Find, except that it
206 // Binary searches through relevant cues; assumes cues are ordered by timecode.
207 // If we do detect out-of-order cues, return NULL.
446 // Special case the 0 seek to avoid loading Cues when the application
460 // If the Cues have not been located then find them.
461 const mkvparser::Cues* pCues = pSegment->GetCues();
466 ALOGV("No Cues yet");
471 if (pEntry->id == libwebm::kMkvCues) { // Cues ID
475 ALOGV("Cues found")
    [all...]

Completed in 5322 milliseconds