Home | History | Annotate | Download | only in libwebm

Lines Matching refs:pCP

2364         CuePoint* const pCP = *p++;

2365 assert(pCP);
2367 delete pCP;
2458 CuePoint* const pCP = new CuePoint(m_preload_count, pos);
2459 m_cue_points[m_preload_count++] = pCP;
2506 CuePoint* const pCP = m_cue_points[m_count];
2507 assert(pCP);
2508 assert((pCP->GetTimeCode() >= 0) || (-pCP->GetTimeCode() == idpos));
2510 pCP->Load(pReader);
2528 const CuePoint*& pCP,
2546 pCP = *i;
2547 assert(pCP);
2549 if (time_ns <= pCP->GetTime(m_pSegment))
2551 pTP = pCP->Find(pTrack);
2567 CuePoint* const pCP = *k;
2568 assert(pCP);
2570 pCP->Load(pReader);
2572 const long long t = pCP->GetTime(m_pSegment);
2586 pCP = *--i;
2587 assert(pCP);
2588 assert(pCP->GetTime(m_pSegment) <= time_ns);
2602 pCP = *i;
2603 assert(pCP);
2605 if (time_ns <= pCP->GetTime(m_pSegment))
2607 pTP = pCP->Find(pTrack);
2621 CuePoint* const pCP = *k;
2622 assert(pCP);
2624 const long long t = pCP->GetTime(m_pSegment);
2638 pCP = *--i;
2639 assert(pCP);
2640 assert(pCP->GetTime(m_pSegment) <= time_ns);
2647 long index = pCP->GetIndex();
2649 pTP = pCP->Find(pTrack);
2651 pCP = m_cue_points[index--];
2663 const CuePoint*& pCP,
2666 pCP = 0;
2690 pCP = *k;
2691 assert(pCP);
2693 const long long t = pCP->GetTime(m_pSegment);
2709 pCP = *i;
2710 assert(pCP);
2711 assert(pCP->GetTime(m_pSegment) > time_ns);
2713 pTP = pCP->Find(pTrack);
2739 CuePoint* const pCP = pp[0];
2740 assert(pCP);
2741 assert(pCP->GetTimeCode() >= 0);
2743 return pCP;
2768 CuePoint* const pCP = pp[index];
2769 assert(pCP);
2771 pCP->Load(m_pSegment->m_pReader);
2772 assert(pCP->GetTimeCode() >= 0);
2779 CuePoint* const pCP = pp[index];
2780 assert(pCP);
2781 assert(pCP->GetTimeCode() >= 0);
2784 return pCP;
2839 const CuePoint* pCP,
2842 if (pCP == NULL)
2848 return m_pSegment->GetBlock(*pCP, *pTP);
4176 const CuePoint*& pCP,
4185 if (!m_pCues->Find(time_ns, pTrack, pCP, pTP))
4188 assert(pCP);
4196 return GetCluster(pCP, pTP, pCluster, pBlockEntry);