]> git.sesse.net Git - vlc/blob - src/video_output/window.c
Modified vout_window_t to be completly independant of vout.
[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_plugin.h>
34 #include <vlc_vout_window.h>
35
36 vout_window_t *vout_window_New(vlc_object_t *obj,
37                                const char *module,
38                                const vout_window_cfg_t *cfg)
39 {
40     vout_window_t *window = vlc_object_create(obj, sizeof(*window));
41
42     window->cfg = cfg;
43     memset(&window->handle, 0, sizeof(window->handle));
44     window->control = NULL;
45     window->sys = NULL;
46
47     vlc_object_attach(window, obj);
48
49     window->module = module_need(window, "vout window",
50                                  module, module && *module != '\0');
51     if (!window->module) {
52         vlc_object_detach(window);
53         vlc_object_release(window);
54         return NULL;
55     }
56     return window;
57 }
58
59 void vout_window_Delete(vout_window_t *window)
60 {
61     if (!window)
62         return;
63
64     vlc_object_detach(window);
65
66     module_unneed(window, window->module);
67
68     vlc_object_release(window);
69 }
70
71 int vout_window_Control(vout_window_t *window, int query, ...)
72 {
73     va_list args;
74     va_start(args, query);
75     int ret = window->control(window, query, args);
76     va_end(args);
77
78     return ret;
79 }
80