Home
last modified time | relevance | path

Searched refs:CuePoint (Results 1 – 6 of 6) sorted by relevance

/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.h887 class CuePoint {
890 CuePoint(long, long long);
891 ~CuePoint();
893 CuePoint(const CuePoint&);
894 CuePoint& operator=(const CuePoint&);
943 long long time_ns, const Track*, const CuePoint*&,
944 const CuePoint::TrackPosition*&) const;
946 const CuePoint* GetFirst() const;
947 const CuePoint* GetLast() const;
948 const CuePoint* GetNext(const CuePoint*) const;
[all …]
Dmkvparser.cc1833 CuePoint** p = m_cue_points; in ~Cues()
1834 CuePoint** const q = p + n; in ~Cues()
1837 CuePoint* const pCP = *p++; in ~Cues()
1911 CuePoint** const qq = new (std::nothrow) CuePoint*[n]; in PreloadCuePoint()
1915 CuePoint** q = qq; // beginning of target in PreloadCuePoint()
1917 CuePoint** p = m_cue_points; // beginning of source in PreloadCuePoint()
1918 CuePoint** const pp = p + m_preload_count; // end of source in PreloadCuePoint()
1929 CuePoint* const pCP = new (std::nothrow) CuePoint(m_preload_count, pos); in PreloadCuePoint()
1980 CuePoint* const pCP = m_cue_points[m_count]; in LoadCuePoint()
2001 bool Cues::Find(long long time_ns, const Track* pTrack, const CuePoint*& pCP, in Find()
[all …]
/external/libvpx/libwebm/mkvparser/
Dmkvparser.h854 class CuePoint {
857 CuePoint(long, long long);
858 ~CuePoint();
860 CuePoint(const CuePoint&);
861 CuePoint& operator=(const CuePoint&);
910 long long time_ns, const Track*, const CuePoint*&,
911 const CuePoint::TrackPosition*&) const;
913 const CuePoint* GetFirst() const;
914 const CuePoint* GetLast() const;
915 const CuePoint* GetNext(const CuePoint*) const;
[all …]
Dmkvparser.cc1841 CuePoint** p = m_cue_points; in ~Cues()
1842 CuePoint** const q = p + n; in ~Cues()
1845 CuePoint* const pCP = *p++; in ~Cues()
1919 CuePoint** const qq = new (std::nothrow) CuePoint*[n]; in PreloadCuePoint()
1923 CuePoint** q = qq; // beginning of target in PreloadCuePoint()
1925 CuePoint** p = m_cue_points; // beginning of source in PreloadCuePoint()
1926 CuePoint** const pp = p + m_preload_count; // end of source in PreloadCuePoint()
1937 CuePoint* const pCP = new (std::nothrow) CuePoint(m_preload_count, pos); in PreloadCuePoint()
1988 CuePoint* const pCP = m_cue_points[m_count]; in LoadCuePoint()
2009 bool Cues::Find(long long time_ns, const Track* pTrack, const CuePoint*& pCP, in Find()
[all …]
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
Dmkvmuxer.h183 class CuePoint {
185 CuePoint();
186 ~CuePoint();
227 LIBWEBM_DISALLOW_COPY_AND_ASSIGN(CuePoint);
238 bool AddCue(CuePoint* cue);
242 CuePoint* GetCueByIndex(int32_t index) const;
264 CuePoint** cue_entries_;
Dmkvmuxer.cc283 CuePoint::CuePoint() in CuePoint() function in mkvmuxer::CuePoint
290 CuePoint::~CuePoint() {} in ~CuePoint()
292 bool CuePoint::Write(IMkvWriter* writer) const { in Write()
347 uint64_t CuePoint::PayloadSize() const { in PayloadSize()
363 uint64_t CuePoint::Size() const { in Size()
382 CuePoint* const cue = cue_entries_[i]; in ~Cues()
389 bool Cues::AddCue(CuePoint* cue) { in AddCue()
401 CuePoint** const cues = in AddCue()
402 new (std::nothrow) CuePoint*[new_capacity]; // NOLINT in AddCue()
421 CuePoint* Cues::GetCueByIndex(int32_t index) const { in GetCueByIndex()
[all …]