Home
last modified time | relevance | path

Searched refs:m_pSegment (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/third_party/libwebm/mkvparser/
Dmkvparser.cc1482 : m_pSegment(pSegment), in SeekHead()
1498 IMkvReader* const pReader = m_pSegment->m_pReader; in Parse()
1823 : m_pSegment(pSegment), in Cues()
1868 IMkvReader* const pReader = m_pSegment->m_pReader; in Init()
1951 IMkvReader* const pReader = m_pSegment->m_pReader; in LoadCuePoint()
2019 if (time_ns <= pCP->GetTime(m_pSegment)) { in Find()
2038 const long long t = pCP->GetTime(m_pSegment); in Find()
2054 if (pCP == NULL || pCP->GetTime(m_pSegment) > time_ns) in Find()
2133 return m_pSegment->GetBlock(*pCP, *pTP); in GetBlock()
3224 : m_pSegment(pSegment), in Chapters()
[all …]
Dmkvparser.h310 Segment* const m_pSegment; variable
571 Segment* const m_pSegment;
603 Segment* const m_pSegment;
724 Segment* const m_pSegment;
803 Segment* const m_pSegment;
835 Segment* const m_pSegment;
938 Segment* const m_pSegment;
977 Segment* const m_pSegment;
/external/libvpx/libwebm/mkvparser/
Dmkvparser.cc1482 : m_pSegment(pSegment), in SeekHead()
1498 IMkvReader* const pReader = m_pSegment->m_pReader; in Parse()
1823 : m_pSegment(pSegment), in Cues()
1868 IMkvReader* const pReader = m_pSegment->m_pReader; in Init()
1951 IMkvReader* const pReader = m_pSegment->m_pReader; in LoadCuePoint()
2019 if (time_ns <= pCP->GetTime(m_pSegment)) { in Find()
2038 const long long t = pCP->GetTime(m_pSegment); in Find()
2054 if (pCP == NULL || pCP->GetTime(m_pSegment) > time_ns) in Find()
2133 return m_pSegment->GetBlock(*pCP, *pTP); in GetBlock()
3224 : m_pSegment(pSegment), in Chapters()
[all …]
Dmkvparser.h310 Segment* const m_pSegment; variable
571 Segment* const m_pSegment;
603 Segment* const m_pSegment;
724 Segment* const m_pSegment;
803 Segment* const m_pSegment;
835 Segment* const m_pSegment;
938 Segment* const m_pSegment;
977 Segment* const m_pSegment;
/external/libaom/libaom/third_party/libwebm/mkvparser/
Dmkvparser.cc1482 : m_pSegment(pSegment), in SeekHead()
1498 IMkvReader* const pReader = m_pSegment->m_pReader; in Parse()
1823 : m_pSegment(pSegment), in Cues()
1868 IMkvReader* const pReader = m_pSegment->m_pReader; in Init()
1951 IMkvReader* const pReader = m_pSegment->m_pReader; in LoadCuePoint()
2019 if (time_ns <= pCP->GetTime(m_pSegment)) { in Find()
2038 const long long t = pCP->GetTime(m_pSegment); in Find()
2054 if (pCP == NULL || pCP->GetTime(m_pSegment) > time_ns) in Find()
2133 return m_pSegment->GetBlock(*pCP, *pTP); in GetBlock()
3224 : m_pSegment(pSegment), in Chapters()
[all …]
Dmkvparser.h310 Segment* const m_pSegment; variable
571 Segment* const m_pSegment;
603 Segment* const m_pSegment;
724 Segment* const m_pSegment;
803 Segment* const m_pSegment;
835 Segment* const m_pSegment;
938 Segment* const m_pSegment;
977 Segment* const m_pSegment;
/external/pdfium/core/fxcodec/jbig2/
DJBig2_Context.cpp79 if (!m_pSegment) { in decodeSequential()
80 m_pSegment = pdfium::MakeUnique<CJBig2_Segment>(); in decodeSequential()
81 nRet = parseSegmentHeader(m_pSegment.get()); in decodeSequential()
83 m_pSegment.reset(); in decodeSequential()
88 nRet = parseSegmentData(m_pSegment.get(), pPause); in decodeSequential()
95 m_pSegment.reset(); in decodeSequential()
99 m_pSegment.reset(); in decodeSequential()
102 if (m_pSegment->m_dwData_length != 0xffffffff) { in decodeSequential()
103 m_dwOffset += m_pSegment->m_dwData_length; in decodeSequential()
111 m_SegmentList.push_back(std::move(m_pSegment)); in decodeSequential()
DJBig2_Context.h103 std::unique_ptr<CJBig2_Segment> m_pSegment; variable