lib/libcoolstream/video_cs.h: sync header

This commit is contained in:
[CST] Focus
2013-03-08 17:33:28 +04:00
parent a22dc19e9d
commit 30d650999d

View File

@@ -11,6 +11,7 @@
#include <cs_vfd.h> #include <cs_vfd.h>
#include <control.h> #include <control.h>
#include <dmx_cs.h>
#include "cs_types.h" #include "cs_types.h"
@@ -152,12 +153,14 @@ private:
analog_mode_t analog_mode_cinch; analog_mode_t analog_mode_cinch;
analog_mode_t analog_mode_scart; analog_mode_t analog_mode_scart;
vfd_icon mode_icon; vfd_icon mode_icon;
unsigned int unit;
cDemux *demux;
// //
int SelectAutoFormat(); int SelectAutoFormat();
void ScalePic(); void ScalePic();
public: public:
/* constructor & destructor */ /* constructor & destructor */
cVideo(int mode, void * hChannel, void * hBuffer); cVideo(int mode, void * hChannel, void * hBuffer, unsigned int Unit = 0);
~cVideo(void); ~cVideo(void);
void * GetDRM(void); void * GetDRM(void);
@@ -231,6 +234,7 @@ public:
int StartVBI(unsigned short pid); int StartVBI(unsigned short pid);
int StopVBI(void); int StopVBI(void);
bool GetScreenImage(unsigned char * &data, int &xres, int &yres, bool get_video = true, bool get_osd = false, bool scale_to_video = false); bool GetScreenImage(unsigned char * &data, int &xres, int &yres, bool get_video = true, bool get_osd = false, bool scale_to_video = false);
void SetDemux(cDemux *Demux);
}; };
#endif // __VIDEO_CS_H_ #endif // __VIDEO_CS_H_