diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -1,8 +1,23 @@ +/* + * OSD Picture in Picture plugin for the Video Disk Recorder + * + * See the README file for copyright information and how to reach the author. + */ + #ifndef VDR_OSDPIP_SETUP_H #define VDR_OSDPIP_SETUP_H #include <vdr/plugin.h> +const int kDepthGrey16 = 0; +const int kDepthGrey128 = 1; +const int kDepthColor256fix = 2; +const int kDepthColor128var = 3; + +const int kFrameModeI = 0; +const int kFrameModeIP = 1; +const int kFrameModeIPB = 2; + struct cOsdPipSetup { cOsdPipSetup(void); @@ -14,8 +29,11 @@ struct cOsdPipSetup { int CropRight; int CropTop; int CropBottom; - int ZoomFactor; int ColorDepth; + int Size; + int FrameMode; + int FrameDrop; + int SwapFfmpeg; }; extern cOsdPipSetup OsdPipSetup; |