• Home
  • Raw
  • Download

Lines Matching refs:CuePoint

1841   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()
2010 const CuePoint::TrackPosition*& pTP) const { in Find()
2014 CuePoint** const ii = m_cue_points; in Find()
2015 CuePoint** i = ii; in Find()
2017 CuePoint** const jj = ii + m_count; in Find()
2018 CuePoint** j = jj; in Find()
2035 CuePoint** const k = i + (j - i) / 2; in Find()
2039 CuePoint* const pCP = *k; in Find()
2074 const CuePoint* Cues::GetFirst() const { in GetFirst()
2078 CuePoint* const* const pp = m_cue_points; in GetFirst()
2082 CuePoint* const pCP = pp[0]; in GetFirst()
2089 const CuePoint* Cues::GetLast() const { in GetLast()
2095 CuePoint* const* const pp = m_cue_points; in GetLast()
2099 CuePoint* const pCP = pp[index]; in GetLast()
2106 const CuePoint* Cues::GetNext(const CuePoint* pCurr) const { in GetNext()
2116 CuePoint* const* const pp = m_cue_points; in GetNext()
2125 CuePoint* const pNext = pp[index]; in GetNext()
2133 const BlockEntry* Cues::GetBlock(const CuePoint* pCP, in GetBlock()
2134 const CuePoint::TrackPosition* pTP) const { in GetBlock()
2141 const BlockEntry* Segment::GetBlock(const CuePoint& cp, in GetBlock()
2142 const CuePoint::TrackPosition& tp) { in GetBlock()
2257 CuePoint::CuePoint(long idx, long long pos) in CuePoint() function in mkvparser::CuePoint
2267 CuePoint::~CuePoint() { delete[] m_track_positions; } in ~CuePoint()
2269 bool CuePoint::Load(IMkvReader* pReader) { in Load()
2390 bool CuePoint::TrackPosition::Parse(IMkvReader* pReader, long long start_, in Parse()
2436 const CuePoint::TrackPosition* CuePoint::Find(const Track* pTrack) const { in Find()
2454 long long CuePoint::GetTimeCode() const { return m_timecode; } in GetTimeCode()
2456 long long CuePoint::GetTime(const Segment* pSegment) const { in GetTime()
7355 const BlockEntry* Cluster::GetEntry(const CuePoint& cp, in GetEntry()
7356 const CuePoint::TrackPosition& tp) const { in GetEntry()