diff options
Diffstat (limited to 'setup.h')
-rw-r--r-- | setup.h | 43 |
1 files changed, 22 insertions, 21 deletions
@@ -13,6 +13,7 @@ const int kDepthGrey16 = 0; const int kDepthGrey256 = 1; const int kDepthColor256fix = 2; const int kDepthColor128var = 3; +const int kDepthColor256dither = 4; const int kFrameModeI = 0; const int kFrameModeIP = 1; @@ -24,24 +25,24 @@ const int kInfoBottomLeft = 2; const int kInfoBottomRight = 3; struct cOsdPipSetup { - cOsdPipSetup(void); - - bool SetupParse(const char *Name, const char *Value); - - int XPosition; - int YPosition; - int CropLeft; - int CropRight; - int CropTop; - int CropBottom; - int ColorDepth; - int Size; - int FrameMode; - int FrameDrop; - int SwapFfmpeg; - int ShowInfo; - int InfoWidth; - int InfoPosition; + cOsdPipSetup(void); + + bool SetupParse(const char *Name, const char *Value); + + int XPosition; + int YPosition; + int CropLeft; + int CropRight; + int CropTop; + int CropBottom; + int ColorDepth; + int Size; + int FrameMode; + int FrameDrop; + int SwapFfmpeg; + int ShowInfo; + int InfoWidth; + int InfoPosition; }; extern cOsdPipSetup OsdPipSetup; @@ -51,11 +52,11 @@ private: cOsdPipSetup m_NewOsdPipSetup; protected: - virtual void Store(void); + virtual void Store(void); public: - cOsdPipSetupPage(void); - virtual ~cOsdPipSetupPage(); + cOsdPipSetupPage(void); + virtual ~cOsdPipSetupPage(); }; #endif // VDR_OSDPIP_SETUP_H |