FreeRDP
xf_video.h
1 
19 #ifndef CLIENT_X11_XF_VIDEO_H_
20 #define CLIENT_X11_XF_VIDEO_H_
21 
22 #include "xfreerdp.h"
23 
24 #include <freerdp/channels/geometry.h>
25 #include <freerdp/channels/video.h>
26 
27 void xf_video_control_init(xfContext* xfc, VideoClientContext* video);
28 void xf_video_control_uninit(xfContext* xfc, VideoClientContext* video);
29 
30 void xf_video_free(xfVideoContext* context);
31 
32 WINPR_ATTR_MALLOC(xf_video_free, 1)
33 xfVideoContext* xf_video_new(xfContext* xfc);
34 
35 #endif /* CLIENT_X11_XF_VIDEO_H_ */