Home | History | Annotate | Download | only in mkvparser

Lines Matching refs:Block

1189   // status == 0 means "no block entries found"
1190 // status > 0 means "found at least one block entry"
1304 // status == 0 means "no block entries found"
1318 if (status == 0) // parsed a block
3029 if (status > 0) { // means "found at least one block entry"
3050 // status == 0 means "no block entries found"
4668 const Block* const pBlock = pBlockEntry->GetBlock();
4697 // NOTE: if we get here, it means that we didn't find a block with
4710 const Block* const pCurrBlock = pCurrEntry->GetBlock();
4726 const Block* const pNextBlock = pNextEntry->GetBlock();
4758 // block from this track. One way around this problem is for the
4760 // us back until you have a cluster that contains a block from this
4783 // NOTE: if we get here, it means that we didn't find a block with
4793 const Block* const pBlock = pBlockEntry->GetBlock();
4978 const Block* Track::EOSBlock::GetBlock() const { return NULL; }
6301 const Block* const pBlock = pLast->GetBlock();
6448 // parse sub-block element ID
6507 // pos now points to start of sub-block group payload
6528 pos += size; // consume sub-part of block group
6612 pos = block_stop; // consume block-part of block group
6981 const Block* const pBlock = pEntry->GetBlock();
6998 const Block* const pBlock = pEntry->GetBlock();
7093 if (bpos < 0) { // Block ID
7229 if (status > 0) // no new block
7321 const Block* const pBlock = pEntry->GetBlock();
7330 if (time_ns < 0) // just want first candidate block
7356 const long block = static_cast<long>(tp.m_block);
7357 const long index = block - 1;
7376 const Block* const pBlock = pEntry->GetBlock();
7408 const Block* const pBlock = pEntry->GetBlock();
7461 const Block* SimpleBlock::GetBlock() const { return &m_block; }
7484 const Block* BlockGroup::GetBlock() const { return &m_block; }
7489 Block::Block(long long start, long long size_, long long discard_padding)
7499 Block::~Block() { delete[] m_frames; }
7501 long Block::Parse(const Cluster* pCluster) {
7868 long long Block::GetTimeCode(const Cluster* pCluster) const {
7880 long long Block::GetTime(const Cluster* pCluster) const {
7897 long long Block::GetTrackNumber() const { return m_track; }
7899 bool Block::IsKey() const {
7903 void Block::SetKey(bool bKey) {
7910 bool Block::IsInvisible() const { return bool(int(m_flags & 0x08) != 0); }
7912 Block::Lacing Block::GetLacing() const {
7917 int Block::GetFrameCount() const { return m_frame_count; }
7919 const Block::Frame& Block::GetFrame(int idx) const {
7930 long Block::Frame::Read(IMkvReader* pReader, unsigned char* buf) const {
7938 long long Block::GetDiscardPadding() const { return m_discard_padding; }