]> git.sesse.net Git - vlc/blob - src/video_output/window.c
Cosmetic
[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     const char *type;
50     switch (cfg->type) {
51     case VOUT_WINDOW_TYPE_HWND:
52         type = "vout window hwnd";
53         break;
54     case VOUT_WINDOW_TYPE_XID:
55         type = "vout window xid";
56         break;
57     default:
58         assert(0);
59     }
60
61     window->module = module_need(window, type,
62                                  module, module && *module != '\0');
63     if (!window->module) {
64         vlc_object_detach(window);
65         vlc_object_release(window);
66         return NULL;
67     }
68     return window;
69 }
70
71 void vout_window_Delete(vout_window_t *window)
72 {
73     if (!window)
74         return;
75
76     vlc_object_detach(window);
77
78     module_unneed(window, window->module);
79
80     vlc_object_release(window);
81 }
82
83 int vout_window_Control(vout_window_t *window, int query, ...)
84 {
85     va_list args;
86     va_start(args, query);
87     int ret = window->control(window, query, args);
88     va_end(args);
89
90     return ret;
91 }
92