Unexported vlc_thread_set_priority().
[vlc/vlc-skelet.git] / modules / video_output / vmem.c
blobede49a4fde5e80d0b01e2838abe0440d67f34a0c
1 /*****************************************************************************
2 * vmem.c: memory video driver for vlc
3 *****************************************************************************
4 * Copyright (C) 2008 the VideoLAN team
5 * Copyrgiht (C) 2010 RĂ©mi Denis-Courmont
7 * Authors: Sam Hocevar <sam@zoy.org>
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.
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.
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 *****************************************************************************/
24 /*****************************************************************************
25 * Preamble
26 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <assert.h>
34 #include <vlc_common.h>
35 #include <vlc_plugin.h>
36 #include <vlc_vout_display.h>
37 #include <vlc_picture_pool.h>
39 /*****************************************************************************
40 * Module descriptor
41 *****************************************************************************/
42 #define T_WIDTH N_("Width")
43 #define LT_WIDTH N_("Video memory buffer width.")
45 #define T_HEIGHT N_("Height")
46 #define LT_HEIGHT N_("Video memory buffer height.")
48 #define T_PITCH N_("Pitch")
49 #define LT_PITCH N_("Video memory buffer pitch in bytes.")
51 #define T_CHROMA N_("Chroma")
52 #define LT_CHROMA N_("Output chroma for the memory image as a 4-character " \
53 "string, eg. \"RV32\".")
55 static int Open (vlc_object_t *);
56 static void Close(vlc_object_t *);
58 vlc_module_begin()
59 set_description(N_("Video memory output"))
60 set_shortname(N_("Video memory"))
62 set_category(CAT_VIDEO)
63 set_subcategory(SUBCAT_VIDEO_VOUT)
64 set_capability("vout display", 0)
66 add_integer("vmem-width", 320, T_WIDTH, LT_WIDTH, false)
67 change_private()
68 add_integer("vmem-height", 200, T_HEIGHT, LT_HEIGHT, false)
69 change_private()
70 add_integer("vmem-pitch", 640, T_PITCH, LT_PITCH, false)
71 change_private()
72 add_string("vmem-chroma", "RV16", T_CHROMA, LT_CHROMA, true)
73 change_private()
74 add_obsolete_string("vmem-lock") /* obsoleted since 1.1.1 */
75 add_obsolete_string("vmem-unlock") /* obsoleted since 1.1.1 */
76 add_obsolete_string("vmem-data") /* obsoleted since 1.1.1 */
78 set_callbacks(Open, Close)
79 vlc_module_end()
81 /*****************************************************************************
82 * Local prototypes
83 *****************************************************************************/
84 struct picture_sys_t {
85 vout_display_sys_t *sys;
86 void *id;
89 /* NOTE: the callback prototypes must match those of LibVLC */
90 struct vout_display_sys_t {
91 picture_pool_t *pool;
92 unsigned count;
94 void *opaque;
95 void *(*lock)(void *sys, void **plane);
96 void (*unlock)(void *sys, void *id, void *const *plane);
97 void (*display)(void *sys, void *id);
98 void (*cleanup)(void *sys);
100 unsigned pitches[PICTURE_PLANE_MAX];
101 unsigned lines[PICTURE_PLANE_MAX];
104 typedef unsigned (*vlc_format_cb)(void **, char *, unsigned *, unsigned *,
105 unsigned *, unsigned *);
107 static picture_pool_t *Pool (vout_display_t *, unsigned);
108 static void Display(vout_display_t *, picture_t *, subpicture_t *);
109 static int Control(vout_display_t *, int, va_list);
111 static int Lock(picture_t *);
112 static void Unlock(picture_t *);
114 /*****************************************************************************
115 * Open: allocates video thread
116 *****************************************************************************
117 * This function allocates and initializes a vout method.
118 *****************************************************************************/
119 static int Open(vlc_object_t *object)
121 vout_display_t *vd = (vout_display_t *)object;
122 vout_display_sys_t *sys = malloc(sizeof(*sys));
123 if (unlikely(!sys))
124 return VLC_ENOMEM;
126 /* Get the callbacks */
127 vlc_format_cb setup = var_InheritAddress(vd, "vmem-setup");
129 sys->lock = var_InheritAddress(vd, "vmem-lock");
130 if (sys->lock == NULL) {
131 msg_Err(vd, "missing lock callback");
132 free(sys);
133 return VLC_EGENERIC;
135 sys->unlock = var_InheritAddress(vd, "vmem-unlock");
136 sys->display = var_InheritAddress(vd, "vmem-display");
137 sys->cleanup = var_InheritAddress(vd, "vmem-cleanup");
138 sys->opaque = var_InheritAddress(vd, "vmem-data");
139 sys->pool = NULL;
141 /* Define the video format */
142 video_format_t fmt = vd->fmt;
144 if (setup != NULL) {
145 char chroma[5];
147 memcpy(chroma, &fmt.i_chroma, 4);
148 chroma[4] = '\0';
149 memset(sys->pitches, 0, sizeof(sys->pitches));
150 memset(sys->lines, 0, sizeof(sys->lines));
152 sys->count = setup(&sys->opaque, chroma, &fmt.i_width, &fmt.i_height,
153 sys->pitches, sys->lines);
154 if (sys->count == 0) {
155 msg_Err(vd, "video format setup failure (no pictures)");
156 free(sys);
157 return VLC_EGENERIC;
159 fmt.i_chroma = vlc_fourcc_GetCodecFromString(VIDEO_ES, chroma);
161 } else {
162 char *chroma = var_InheritString(vd, "vmem-chroma");
163 fmt.i_chroma = vlc_fourcc_GetCodecFromString(VIDEO_ES, chroma);
164 free(chroma);
166 fmt.i_width = var_InheritInteger(vd, "vmem-width");
167 fmt.i_height = var_InheritInteger(vd, "vmem-height");
168 sys->pitches[0] = var_InheritInteger(vd, "vmem-pitch");
169 sys->lines[0] = fmt.i_height;
170 for (size_t i = 1; i < PICTURE_PLANE_MAX; i++)
172 sys->pitches[i] = sys->pitches[0];
173 sys->lines[i] = sys->lines[0];
175 sys->count = 1;
176 sys->cleanup = NULL;
179 if (!fmt.i_chroma) {
180 msg_Err(vd, "vmem-chroma should be 4 characters long");
181 free(sys);
182 return VLC_EGENERIC;
185 /* Define the bitmasks */
186 switch (fmt.i_chroma)
188 case VLC_CODEC_RGB15:
189 fmt.i_rmask = 0x001f;
190 fmt.i_gmask = 0x03e0;
191 fmt.i_bmask = 0x7c00;
192 break;
193 case VLC_CODEC_RGB16:
194 fmt.i_rmask = 0x001f;
195 fmt.i_gmask = 0x07e0;
196 fmt.i_bmask = 0xf800;
197 break;
198 case VLC_CODEC_RGB24:
199 case VLC_CODEC_RGB32:
200 fmt.i_rmask = 0xff0000;
201 fmt.i_gmask = 0x00ff00;
202 fmt.i_bmask = 0x0000ff;
203 break;
204 default:
205 fmt.i_rmask = 0;
206 fmt.i_gmask = 0;
207 fmt.i_bmask = 0;
208 break;
211 /* */
212 vout_display_info_t info = vd->info;
213 info.has_hide_mouse = true;
215 /* */
216 vd->sys = sys;
217 vd->fmt = fmt;
218 vd->info = info;
219 vd->pool = Pool;
220 vd->prepare = NULL;
221 vd->display = Display;
222 vd->control = Control;
223 vd->manage = NULL;
225 /* */
226 vout_display_SendEventFullscreen(vd, false);
227 vout_display_SendEventDisplaySize(vd, fmt.i_width, fmt.i_height, false);
228 return VLC_SUCCESS;
231 static void Close(vlc_object_t *object)
233 vout_display_t *vd = (vout_display_t *)object;
234 vout_display_sys_t *sys = vd->sys;
236 if (sys->cleanup)
237 sys->cleanup(sys->opaque);
238 picture_pool_Delete(sys->pool);
239 free(sys);
242 /* */
243 static picture_pool_t *Pool(vout_display_t *vd, unsigned count)
245 vout_display_sys_t *sys = vd->sys;
247 if (sys->pool)
248 return sys->pool;
250 if (count > sys->count)
251 count = sys->count;
253 picture_t *pictures[count];
255 for (unsigned i = 0; i < count; i++) {
256 picture_resource_t rsc;
258 rsc.p_sys = malloc(sizeof(*rsc.p_sys));
259 if (unlikely(!rsc.p_sys)) {
260 count = i;
261 break;
264 rsc.p_sys->sys = sys;
265 rsc.p_sys->id = NULL;
267 for (unsigned i = 0; i < PICTURE_PLANE_MAX; i++) {
268 /* vmem-lock is responsible for the allocation */
269 rsc.p[i].p_pixels = NULL;
270 rsc.p[i].i_lines = sys->lines[i];
271 rsc.p[i].i_pitch = sys->pitches[i];
274 pictures[i] = picture_NewFromResource(&vd->fmt, &rsc);
275 if (!pictures[i]) {
276 free(rsc.p_sys);
277 count = i;
278 break;
282 /* */
283 picture_pool_configuration_t pool;
284 memset(&pool, 0, sizeof(pool));
285 pool.picture_count = count;
286 pool.picture = pictures;
287 pool.lock = Lock;
288 pool.unlock = Unlock;
289 sys->pool = picture_pool_NewExtended(&pool);
290 if (!sys->pool) {
291 for (unsigned i = 0; i < count; i++)
292 picture_Release(pictures[i]);
295 return sys->pool;
298 static void Display(vout_display_t *vd, picture_t *picture, subpicture_t *subpicture)
300 vout_display_sys_t *sys = vd->sys;
302 assert(!picture_IsReferenced(picture));
303 if (sys->display != NULL)
304 sys->display(sys->opaque, picture->p_sys->id);
305 picture_Release(picture);
306 VLC_UNUSED(subpicture);
309 static int Control(vout_display_t *vd, int query, va_list args)
311 switch (query) {
312 case VOUT_DISPLAY_CHANGE_FULLSCREEN:
313 case VOUT_DISPLAY_CHANGE_DISPLAY_SIZE: {
314 const vout_display_cfg_t *cfg = va_arg(args, const vout_display_cfg_t *);
315 if (cfg->display.width != vd->fmt.i_width ||
316 cfg->display.height != vd->fmt.i_height)
317 return VLC_EGENERIC;
318 if (cfg->is_fullscreen)
319 return VLC_EGENERIC;
320 return VLC_SUCCESS;
322 default:
323 return VLC_EGENERIC;
327 /* */
328 static int Lock(picture_t *picture)
330 picture_sys_t *picsys = picture->p_sys;
331 vout_display_sys_t *sys = picsys->sys;
332 void *planes[PICTURE_PLANE_MAX];
334 picsys->id = sys->lock(sys->opaque, planes);
336 for (int i = 0; i < picture->i_planes; i++)
337 picture->p[i].p_pixels = planes[i];
339 return VLC_SUCCESS;
342 static void Unlock(picture_t *picture)
344 picture_sys_t *picsys = picture->p_sys;
345 vout_display_sys_t *sys = picsys->sys;
347 void *planes[PICTURE_PLANE_MAX];
349 for (int i = 0; i < picture->i_planes; i++)
350 planes[i] = picture->p[i].p_pixels;
352 if (sys->unlock != NULL)
353 sys->unlock(sys->opaque, picsys->id, planes);