diff --git a/lib/libcoolstream/video_cs.h b/lib/libcoolstream/video_cs.h index 251ec4058..47524c1b6 100644 --- a/lib/libcoolstream/video_cs.h +++ b/lib/libcoolstream/video_cs.h @@ -11,6 +11,7 @@ #include #include +#include #include "cs_types.h" @@ -152,12 +153,14 @@ private: analog_mode_t analog_mode_cinch; analog_mode_t analog_mode_scart; vfd_icon mode_icon; + unsigned int unit; + cDemux *demux; // int SelectAutoFormat(); void ScalePic(); public: /* constructor & destructor */ - cVideo(int mode, void * hChannel, void * hBuffer); + cVideo(int mode, void * hChannel, void * hBuffer, unsigned int Unit = 0); ~cVideo(void); void * GetDRM(void); @@ -231,6 +234,7 @@ public: int StartVBI(unsigned short pid); 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); + void SetDemux(cDemux *Demux); }; #endif // __VIDEO_CS_H_