Skip to content
Snippets Groups Projects

Estimated frames

Merged Joan Vallvé Navarro requested to merge feature/estimated_frames into devel
1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
@@ -74,6 +74,7 @@ class FrameBase : public NodeBase, public std::enable_shared_from_this<FrameBase
// get type
bool isKey() const;
bool isAuxiliary() const;
bool isEstimated() const;
// set type
@@ -177,6 +178,11 @@ inline bool FrameBase::isKey() const
return (type_ == KEY);
}
inline bool FrameBase::isAuxiliary() const
{
return (type_ == AUXILIARY);
}
inline bool FrameBase::isEstimated() const
{
return (type_ == KEY || type_ == AUXILIARY);
Loading