VideoCodec/Data/StreamHeader.h

#ifndef STREAMHEADER_H_ #define STREAMHEADER_H_ #include "Types.h" namespace VideoCodec {    // Encapsulates information about the file stream.    typedef struct    {       FrameCount frameCount;       BlockCount blockColumns;       BlockCount blockRows;       bool mv4;       bool halfPixel;    } StreamHeader; } #endif /*STREAMHEADER_H_*/