FreeRDP
Loading...
Searching...
No Matches
xf_video.h
1
19#ifndef CLIENT_X11_XF_VIDEO_H_
20#define CLIENT_X11_XF_VIDEO_H_
21
22#include <freerdp/client/video.h>
23
24#include "xf_types.h"
25
26typedef struct s_xfVideoContext xfVideoContext;
27
28void xf_video_control_init(xfContext* xfc, VideoClientContext* video);
29void xf_video_control_uninit(xfContext* xfc, VideoClientContext* video);
30
31void xf_video_free(xfVideoContext* context);
32
33WINPR_ATTR_MALLOC(xf_video_free, 1)
34WINPR_ATTR_NODISCARD
35xfVideoContext* xf_video_new(xfContext* xfc);
36
37#endif /* CLIENT_X11_XF_VIDEO_H_ */