removed IsBFrame selector

Change-Id: Iae51165c318997a9131e9af5c667cfac1f37e773
This commit is contained in:
matthewjheaney 2010-10-28 17:28:59 -04:00
parent d7ce23a019
commit a01e568293
2 changed files with 11 additions and 11 deletions

View File

@ -4255,10 +4255,10 @@ const Block* SimpleBlock::GetBlock() const
}
bool SimpleBlock::IsBFrame() const
{
return false;
}
//bool SimpleBlock::IsBFrame() const
//{
// return false;
//}
BlockGroup::BlockGroup(
@ -4394,10 +4394,10 @@ short BlockGroup::GetNextTimeCode() const
}
bool BlockGroup::IsBFrame() const
{
return (m_nextTimeCode > 0);
}
//bool BlockGroup::IsBFrame() const
//{
// return (m_nextTimeCode > 0);
//}

View File

@ -105,7 +105,7 @@ public:
virtual Cluster* GetCluster() const = 0;
virtual size_t GetIndex() const = 0;
virtual const Block* GetBlock() const = 0;
virtual bool IsBFrame() const = 0;
//virtual bool IsBFrame() const = 0;
protected:
BlockEntry();
@ -125,7 +125,7 @@ public:
Cluster* GetCluster() const;
size_t GetIndex() const;
const Block* GetBlock() const;
bool IsBFrame() const;
//bool IsBFrame() const;
protected:
Cluster* const m_pCluster;
@ -148,7 +148,7 @@ public:
Cluster* GetCluster() const;
size_t GetIndex() const;
const Block* GetBlock() const;
bool IsBFrame() const;
//bool IsBFrame() const;
short GetPrevTimeCode() const; //relative to block's time
short GetNextTimeCode() const; //as above