3 * @brief Legacy monolithic LibVLC video window provider
5 /*****************************************************************************
6 * Copyright © 2009 Rémi Denis-Courmont
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 ****************************************************************************/
30 #include <vlc_common.h>
31 #include <vlc_plugin.h>
32 #include <vlc_vout_window.h>
34 static int Open (vlc_object_t *);
35 static void Close(vlc_object_t *);
41 set_shortname (N_("Drawable"))
42 set_description (N_("Embedded window video"))
43 set_category (CAT_VIDEO)
44 set_subcategory (SUBCAT_VIDEO_VOUT)
45 set_capability ("vout window hwnd", 70)
46 set_callbacks (Open, Close)
49 static int Control (vout_window_t *, int, va_list);
51 static vlc_mutex_t serializer = VLC_STATIC_MUTEX;
54 * Find the drawable set by libvlc application.
56 static int Open (vlc_object_t *obj)
58 vout_window_t *wnd = (vout_window_t *)obj;
62 if (var_Create (obj->p_libvlc, "hwnd-in-use", VLC_VAR_ADDRESS)
63 || var_Create (obj, "drawable-hwnd", VLC_VAR_DOINHERIT | VLC_VAR_ADDRESS))
66 val = var_GetAddress (obj, "drawable-hwnd");
67 var_Destroy (obj, "drawable-hwnd");
69 /* Keep a list of busy drawables, so we don't overlap videos if there are
70 * more than one video track in the stream. */
71 vlc_mutex_lock (&serializer);
72 /* TODO: per-type list of busy drawables */
73 used = var_GetAddress (obj->p_libvlc, "drawables-in-use");
76 while (used[n] != NULL)
84 used = realloc (used, sizeof (*used) * (n + 2));
89 var_SetAddress (obj->p_libvlc, "hwnd-in-use", used);
94 msg_Warn (wnd, "HWND %p is busy", val);
97 vlc_mutex_unlock (&serializer);
102 wnd->handle.hwnd = val;
103 wnd->control = Control;
109 * Release the drawable.
111 static void Close (vlc_object_t *obj)
113 vout_window_t *wnd = (vout_window_t *)obj;
114 void **used, *val = wnd->sys;
117 /* Remove this drawable from the list of busy ones */
118 vlc_mutex_lock (&serializer);
119 used = var_GetAddress (obj->p_libvlc, "hwnd-in-use");
121 while (used[n] != val)
127 used[n] = used[n + 1];
128 while (used[++n] != NULL);
131 var_SetAddress (obj->p_libvlc, "hwnd-in-use", NULL);
132 vlc_mutex_unlock (&serializer);
136 /* Variables are reference-counted... */
137 var_Destroy (obj->p_libvlc, "hwnd-in-use");
141 static int Control (vout_window_t *wnd, int query, va_list ap)
147 case VOUT_WINDOW_SET_SIZE: /* not allowed */
148 case VOUT_WINDOW_SET_STATE: /* not allowed either, would be ugly */
151 msg_Warn (wnd, "unsupported control query %d", query);