]> git.sesse.net Git - vlc/blob - src/video_output/window.c
vout_window_t: privatize module pointer
[vlc] / src / video_output / window.c
1 /*****************************************************************************
2  * window.c: "vout window" managment
3  *****************************************************************************
4  * Copyright (C) 2009 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30 #include <assert.h>
31
32 #include <vlc_common.h>
33 #include <vlc_vout_window.h>
34 #include <libvlc.h>
35
36 typedef struct
37 {
38     vout_window_t wnd;
39     module_t *module;
40 } window_t;
41
42 vout_window_t *vout_window_New(vlc_object_t *obj,
43                                const char *module,
44                                const vout_window_cfg_t *cfg)
45 {
46     static char const name[] = "window";
47     window_t *w = vlc_custom_create(obj, sizeof(*w), VLC_OBJECT_GENERIC, name);
48     vout_window_t *window = &w->wnd;
49
50     window->cfg = cfg;
51     memset(&window->handle, 0, sizeof(window->handle));
52     window->control = NULL;
53     window->sys = NULL;
54
55     vlc_object_attach(window, obj);
56
57     const char *type;
58     switch (cfg->type) {
59     case VOUT_WINDOW_TYPE_HWND:
60         type = "vout window hwnd";
61         break;
62     case VOUT_WINDOW_TYPE_XID:
63         type = "vout window xid";
64         break;
65     default:
66         assert(0);
67     }
68
69     w->module = module_need(window, type, module, module && *module != '\0');
70     if (!w->module) {
71         vlc_object_detach(window);
72         vlc_object_release(window);
73         return NULL;
74     }
75     return window;
76 }
77
78 void vout_window_Delete(vout_window_t *window)
79 {
80     if (!window)
81         return;
82
83     window_t *w = (window_t *)window;
84     vlc_object_detach(window);
85
86     module_unneed(window, w->module);
87
88     vlc_object_release(window);
89 }
90
91 int vout_window_Control(vout_window_t *window, int query, ...)
92 {
93     va_list args;
94     va_start(args, query);
95     int ret = window->control(window, query, args);
96     va_end(args);
97
98     return ret;
99 }
100