Commit 14670f9c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

XCB/XVideo: implement pf_control: handle zoom and stay-on-top

parent 13ee24b3
...@@ -86,6 +86,7 @@ static int Init (vout_thread_t *); ...@@ -86,6 +86,7 @@ static int Init (vout_thread_t *);
static void Deinit (vout_thread_t *); static void Deinit (vout_thread_t *);
static void Display (vout_thread_t *, picture_t *); static void Display (vout_thread_t *, picture_t *);
static int Manage (vout_thread_t *); static int Manage (vout_thread_t *);
static int Control (vout_thread_t *, int, va_list);
int CheckError (vout_thread_t *vout, const char *str, xcb_void_cookie_t ck) int CheckError (vout_thread_t *vout, const char *str, xcb_void_cookie_t ck)
{ {
...@@ -208,6 +209,7 @@ static int Open (vlc_object_t *obj) ...@@ -208,6 +209,7 @@ static int Open (vlc_object_t *obj)
vout->pf_end = Deinit; vout->pf_end = Deinit;
vout->pf_display = Display; vout->pf_display = Display;
vout->pf_manage = Manage; vout->pf_manage = Manage;
vout->pf_control = Control;
return VLC_SUCCESS; return VLC_SUCCESS;
error: error:
...@@ -577,3 +579,8 @@ HandleParentStructure (vout_thread_t *vout, xcb_connection_t *conn, ...@@ -577,3 +579,8 @@ HandleParentStructure (vout_thread_t *vout, xcb_connection_t *conn,
vout->p_sys->width = width; vout->p_sys->width = width;
vout->p_sys->height = height; vout->p_sys->height = height;
} }
static int Control (vout_thread_t *vout, int query, va_list ap)
{
return vout_ControlWindow (vout->p_sys->embed, query, ap);
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment