Made getcluster call const

As Inherited from the super class this call should also be const.
This commit is contained in:
Ryan Thompson
2010-11-08 16:14:04 -05:00
parent 6c9f4d11a1
commit 14e42cf98b
2 changed files with 2 additions and 2 deletions

View File

@@ -3193,7 +3193,7 @@ bool Track::EOSBlock::EOS() const
}
Cluster* Track::EOSBlock::GetCluster() const
const Cluster* Track::EOSBlock::GetCluster() const
{
return NULL;
}

View File

@@ -254,7 +254,7 @@ protected:
EOSBlock();
bool EOS() const;
Cluster* GetCluster() const;
const Cluster* GetCluster() const;
size_t GetIndex() const;
const Block* GetBlock() const;
bool IsBFrame() const;