torc-master
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
torc::bitstream::Virtex5::FrameRowDesignator Struct Reference

Frame row designator: top/bottom flag and row index. More...

#include <Virtex5.hpp>

Public Member Functions

 FrameRowDesignator (void)
 Default constructor. More...
 
 FrameRowDesignator (EFarTopBottom inTopBottom, uint32_t inFrameRow, uint32_t inXdlBaseRow)
 Constructor. More...
 
bool operator< (const FrameRowDesignator &rhs) const
 Comparison operator (for map operations). More...
 

Data Fields

EFarTopBottom mTopBottom
 Top/bottom flag. More...
 
uint32_t mFrameRow
 Frame row. More...
 
uint32_t mXdlBaseRow
 Base XDL row. More...
 

Detailed Description

Frame row designator: top/bottom flag and row index.

Definition at line 331 of file Virtex5.hpp.

Constructor & Destructor Documentation

torc::bitstream::Virtex5::FrameRowDesignator::FrameRowDesignator ( void  )
inline

Default constructor.

Definition at line 339 of file Virtex5.hpp.

torc::bitstream::Virtex5::FrameRowDesignator::FrameRowDesignator ( EFarTopBottom  inTopBottom,
uint32_t  inFrameRow,
uint32_t  inXdlBaseRow 
)
inline

Constructor.

Definition at line 341 of file Virtex5.hpp.

342  : mTopBottom(inTopBottom), mFrameRow(inFrameRow),
343  mXdlBaseRow(inXdlBaseRow) {}
EFarTopBottom mTopBottom
Top/bottom flag.
Definition: Virtex5.hpp:333

Member Function Documentation

bool torc::bitstream::Virtex5::FrameRowDesignator::operator< ( const FrameRowDesignator rhs) const
inline

Comparison operator (for map operations).

Definition at line 345 of file Virtex5.hpp.

345  {
346  if(mTopBottom < rhs.mTopBottom) return true;
347  return mFrameRow < rhs.mFrameRow;
348  }
EFarTopBottom mTopBottom
Top/bottom flag.
Definition: Virtex5.hpp:333

Field Documentation

uint32_t torc::bitstream::Virtex5::FrameRowDesignator::mFrameRow

Frame row.

Definition at line 335 of file Virtex5.hpp.

EFarTopBottom torc::bitstream::Virtex5::FrameRowDesignator::mTopBottom

Top/bottom flag.

Definition at line 333 of file Virtex5.hpp.

uint32_t torc::bitstream::Virtex5::FrameRowDesignator::mXdlBaseRow

Base XDL row.

Definition at line 337 of file Virtex5.hpp.


The documentation for this struct was generated from the following file: