]> git.sesse.net Git - vlc/blob - src/video_output/video_output.c
0c72b2d353722877aced1211f322f621e40c43ac
[vlc] / src / video_output / video_output.c
1 /*****************************************************************************
2  * video_output.c : video output thread
3  *
4  * This module describes the programming interface for video output threads.
5  * It includes functions allowing to open a new thread, send pictures to a
6  * thread, and destroy a previously oppened video output thread.
7  *****************************************************************************
8  * Copyright (C) 2000-2007 the VideoLAN team
9  * $Id$
10  *
11  * Authors: Vincent Seguin <seguin@via.ecp.fr>
12  *          Gildas Bazin <gbazin@videolan.org>
13  *          Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
28  *****************************************************************************/
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #ifdef HAVE_CONFIG_H
34 # include "config.h"
35 #endif
36
37 #include <vlc_common.h>
38
39 #include <stdlib.h>                                                /* free() */
40 #include <string.h>
41 #include <assert.h>
42
43 #include <vlc_vout.h>
44
45 #include <vlc_filter.h>
46 #include <vlc_vout_osd.h>
47 #include <vlc_image.h>
48
49 #include <libvlc.h>
50 #include "vout_internal.h"
51 #include "interlacing.h"
52 #include "postprocessing.h"
53 #include "display.h"
54
55 /*****************************************************************************
56  * Local prototypes
57  *****************************************************************************/
58 static void *Thread(void *);
59 static void VoutDestructor(vlc_object_t *);
60
61 /* Maximum delay between 2 displayed pictures.
62  * XXX it is needed for now but should be removed in the long term.
63  */
64 #define VOUT_REDISPLAY_DELAY (INT64_C(80000))
65
66 /**
67  * Late pictures having a delay higher than this value are thrashed.
68  */
69 #define VOUT_DISPLAY_LATE_THRESHOLD (INT64_C(20000))
70
71 /* Better be in advance when awakening than late... */
72 #define VOUT_MWAIT_TOLERANCE (INT64_C(4000))
73
74 /* */
75 static int VoutValidateFormat(video_format_t *dst,
76                               const video_format_t *src)
77 {
78     if (src->i_width <= 0 || src->i_height <= 0)
79         return VLC_EGENERIC;
80     if (src->i_sar_num <= 0 || src->i_sar_den <= 0)
81         return VLC_EGENERIC;
82
83     /* */
84     video_format_Copy(dst, src);
85     dst->i_chroma = vlc_fourcc_GetCodec(VIDEO_ES, src->i_chroma);
86     vlc_ureduce( &dst->i_sar_num, &dst->i_sar_den,
87                  src->i_sar_num,  src->i_sar_den, 50000 );
88     if (dst->i_sar_num <= 0 || dst->i_sar_den <= 0) {
89         dst->i_sar_num = 1;
90         dst->i_sar_den = 1;
91     }
92     video_format_FixRgb(dst);
93     return VLC_SUCCESS;
94 }
95 static void VideoFormatCopyCropAr(video_format_t *dst,
96                                   const video_format_t *src)
97 {
98     video_format_CopyCrop(dst, src);
99     dst->i_sar_num = src->i_sar_num;
100     dst->i_sar_den = src->i_sar_den;
101 }
102 static bool VideoFormatIsCropArEqual(video_format_t *dst,
103                                      const video_format_t *src)
104 {
105     return dst->i_sar_num * src->i_sar_den == dst->i_sar_den * src->i_sar_num &&
106            dst->i_x_offset       == src->i_x_offset &&
107            dst->i_y_offset       == src->i_y_offset &&
108            dst->i_visible_width  == src->i_visible_width &&
109            dst->i_visible_height == src->i_visible_height;
110 }
111
112 static vout_thread_t *VoutCreate(vlc_object_t *object,
113                                  const vout_configuration_t *cfg)
114 {
115     video_format_t original;
116     if (VoutValidateFormat(&original, cfg->fmt))
117         return NULL;
118
119     /* Allocate descriptor */
120     vout_thread_t *vout = vlc_custom_create(object,
121                                             sizeof(*vout) + sizeof(*vout->p),
122                                             VLC_OBJECT_VOUT, "video output");
123     if (!vout) {
124         video_format_Clean(&original);
125         return NULL;
126     }
127
128     /* */
129     vout->p = (vout_thread_sys_t*)&vout[1];
130
131     vout->p->original = original;
132     vout->p->dpb_size = cfg->dpb_size;
133
134     vout_control_Init(&vout->p->control);
135     vout_control_PushVoid(&vout->p->control, VOUT_CONTROL_INIT);
136
137     vout_statistic_Init(&vout->p->statistic);
138
139     vout_snapshot_Init(&vout->p->snapshot);
140
141     /* Initialize locks */
142     vlc_mutex_init(&vout->p->picture_lock);
143     vlc_mutex_init(&vout->p->filter.lock);
144     vlc_mutex_init(&vout->p->spu_lock);
145
146     /* Attach the new object now so we can use var inheritance below */
147     vlc_object_attach(vout, object);
148
149     /* Initialize subpicture unit */
150     vout->p->spu = spu_Create(vout);
151
152     /* Take care of some "interface/control" related initialisations */
153     vout_IntfInit(vout);
154
155     vout->p->title.show     = var_GetBool(vout, "video-title-show");
156     vout->p->title.timeout  = var_GetInteger(vout, "video-title-timeout");
157     vout->p->title.position = var_GetInteger(vout, "video-title-position");
158
159     /* Get splitter name if present */
160     char *splitter_name = var_InheritString(vout, "video-splitter");
161     if (splitter_name && *splitter_name) {
162         vout->p->splitter_name = splitter_name;
163     } else {
164         free(splitter_name);
165     }
166
167     /* */
168     vout_InitInterlacingSupport(vout, vout->p->displayed.is_interlaced);
169
170     /* */
171     vlc_object_set_destructor(vout, VoutDestructor);
172
173     /* */
174     if (vlc_clone(&vout->p->thread, Thread, vout,
175                   VLC_THREAD_PRIORITY_OUTPUT)) {
176         spu_Destroy(vout->p->spu);
177         vlc_object_release(vout);
178         return NULL;
179     }
180
181     vout_control_WaitEmpty(&vout->p->control);
182
183     if (vout->p->dead) {
184         msg_Err(vout, "video output creation failed");
185         vout_CloseAndRelease(vout);
186         return NULL;
187     }
188
189     vout->p->input = cfg->input;
190     if (vout->p->input)
191         spu_Attach(vout->p->spu, vout->p->input, true);
192
193     return vout;
194 }
195
196 vout_thread_t *(vout_Request)(vlc_object_t *object,
197                               const vout_configuration_t *cfg)
198 {
199     vout_thread_t *vout = cfg->vout;
200     if (cfg->change_fmt && !cfg->fmt) {
201         if (vout)
202             vout_CloseAndRelease(vout);
203         return NULL;
204     }
205
206     /* If a vout is provided, try reusing it */
207     if (vout) {
208         if (vout->p->input != cfg->input) {
209             if (vout->p->input)
210                 spu_Attach(vout->p->spu, vout->p->input, false);
211             vout->p->input = cfg->input;
212             if (vout->p->input)
213                 spu_Attach(vout->p->spu, vout->p->input, true);
214         }
215
216         if (cfg->change_fmt) {
217             vout_control_cmd_t cmd;
218             vout_control_cmd_Init(&cmd, VOUT_CONTROL_REINIT);
219             cmd.u.cfg = cfg;
220
221             vout_control_Push(&vout->p->control, &cmd);
222             vout_control_WaitEmpty(&vout->p->control);
223         }
224
225         if (!vout->p->dead) {
226             msg_Dbg(object, "reusing provided vout");
227             return vout;
228         }
229         vout_CloseAndRelease(vout);
230
231         msg_Warn(object, "cannot reuse provided vout");
232     }
233     return VoutCreate(object, cfg);
234 }
235
236 void vout_Close(vout_thread_t *vout)
237 {
238     assert(vout);
239
240     if (vout->p->input)
241         spu_Attach(vout->p->spu, vout->p->input, false);
242
243     vout_snapshot_End(&vout->p->snapshot);
244
245     vout_control_PushVoid(&vout->p->control, VOUT_CONTROL_CLEAN);
246     vlc_join(vout->p->thread, NULL);
247
248     vlc_mutex_lock(&vout->p->spu_lock);
249     spu_Destroy(vout->p->spu);
250     vout->p->spu = NULL;
251     vlc_mutex_unlock(&vout->p->spu_lock);
252 }
253
254 /* */
255 static void VoutDestructor(vlc_object_t *object)
256 {
257     vout_thread_t *vout = (vout_thread_t *)object;
258
259     /* Make sure the vout was stopped first */
260     //assert(!vout->p_module);
261
262     free(vout->p->splitter_name);
263
264     /* Destroy the locks */
265     vlc_mutex_destroy(&vout->p->spu_lock);
266     vlc_mutex_destroy(&vout->p->picture_lock);
267     vlc_mutex_destroy(&vout->p->filter.lock);
268     vout_control_Clean(&vout->p->control);
269
270     /* */
271     vout_statistic_Clean(&vout->p->statistic);
272
273     /* */
274     vout_snapshot_Clean(&vout->p->snapshot);
275
276     video_format_Clean(&vout->p->original);
277 }
278
279 /* */
280 void vout_ChangePause(vout_thread_t *vout, bool is_paused, mtime_t date)
281 {
282     vout_control_cmd_t cmd;
283     vout_control_cmd_Init(&cmd, VOUT_CONTROL_PAUSE);
284     cmd.u.pause.is_on = is_paused;
285     cmd.u.pause.date  = date;
286     vout_control_Push(&vout->p->control, &cmd);
287
288     vout_control_WaitEmpty(&vout->p->control);
289 }
290
291 void vout_GetResetStatistic(vout_thread_t *vout, int *displayed, int *lost)
292 {
293     vout_statistic_GetReset( &vout->p->statistic, displayed, lost );
294 }
295
296 void vout_Flush(vout_thread_t *vout, mtime_t date)
297 {
298     vout_control_PushTime(&vout->p->control, VOUT_CONTROL_FLUSH, date);
299     vout_control_WaitEmpty(&vout->p->control);
300 }
301
302 void vout_Reset(vout_thread_t *vout)
303 {
304     vout_control_PushVoid(&vout->p->control, VOUT_CONTROL_RESET);
305     vout_control_WaitEmpty(&vout->p->control);
306 }
307
308 bool vout_IsEmpty(vout_thread_t *vout)
309 {
310     vlc_mutex_lock(&vout->p->picture_lock);
311
312     picture_t *picture = picture_fifo_Peek(vout->p->decoder_fifo);
313     if (picture)
314         picture_Release(picture);
315
316     vlc_mutex_unlock(&vout->p->picture_lock);
317
318     return !picture;
319 }
320
321 void vout_FixLeaks( vout_thread_t *vout )
322 {
323     vlc_mutex_lock(&vout->p->picture_lock);
324
325     picture_t *picture = picture_fifo_Peek(vout->p->decoder_fifo);
326     if (!picture) {
327         picture = picture_pool_Get(vout->p->decoder_pool);
328     }
329
330     if (picture) {
331         picture_Release(picture);
332         /* Not all pictures has been displayed yet or some are
333          * free */
334         vlc_mutex_unlock(&vout->p->picture_lock);
335         return;
336     }
337
338     /* There is no reason that no pictures are available, force one
339      * from the pool, becarefull with it though */
340     msg_Err(vout, "pictures leaked, trying to workaround");
341
342     /* */
343     picture_pool_NonEmpty(vout->p->decoder_pool, false);
344
345     vlc_mutex_unlock(&vout->p->picture_lock);
346 }
347 void vout_NextPicture(vout_thread_t *vout, mtime_t *duration)
348 {
349     vout_control_cmd_t cmd;
350     vout_control_cmd_Init(&cmd, VOUT_CONTROL_STEP);
351     cmd.u.time_ptr = duration;
352
353     vout_control_Push(&vout->p->control, &cmd);
354     vout_control_WaitEmpty(&vout->p->control);
355 }
356
357 void vout_DisplayTitle(vout_thread_t *vout, const char *title)
358 {
359     assert(title);
360     vout_control_PushString(&vout->p->control, VOUT_CONTROL_OSD_TITLE, title);
361 }
362
363 void vout_PutSubpicture( vout_thread_t *vout, subpicture_t *subpic )
364 {
365     vout_control_cmd_t cmd;
366     vout_control_cmd_Init(&cmd, VOUT_CONTROL_SUBPICTURE);
367     cmd.u.subpicture = subpic;
368
369     vout_control_Push(&vout->p->control, &cmd);
370 }
371 int vout_RegisterSubpictureChannel( vout_thread_t *vout )
372 {
373     int channel = SPU_DEFAULT_CHANNEL;
374
375     vlc_mutex_lock(&vout->p->spu_lock);
376     if (vout->p->spu)
377         channel = spu_RegisterChannel(vout->p->spu);
378     vlc_mutex_unlock(&vout->p->spu_lock);
379
380     return channel;
381 }
382 void vout_FlushSubpictureChannel( vout_thread_t *vout, int channel )
383 {
384     vout_control_PushInteger(&vout->p->control, VOUT_CONTROL_FLUSH_SUBPICTURE,
385                              channel);
386 }
387
388 /**
389  * It retreives a picture from the vout or NULL if no pictures are
390  * available yet.
391  *
392  * You MUST call vout_PutPicture or vout_ReleasePicture on it.
393  *
394  * You may use vout_HoldPicture(paired with vout_ReleasePicture) to keep a
395  * read-only reference.
396  */
397 picture_t *vout_GetPicture(vout_thread_t *vout)
398 {
399     /* Get lock */
400     vlc_mutex_lock(&vout->p->picture_lock);
401     picture_t *picture = picture_pool_Get(vout->p->decoder_pool);
402     if (picture) {
403         picture_Reset(picture);
404         VideoFormatCopyCropAr(&picture->format, &vout->p->original);
405     }
406     vlc_mutex_unlock(&vout->p->picture_lock);
407
408     return picture;
409 }
410
411 /**
412  * It gives to the vout a picture to be displayed.
413  *
414  * The given picture MUST comes from vout_GetPicture.
415  *
416  * Becareful, after vout_PutPicture is called, picture_t::p_next cannot be
417  * read/used.
418  */
419 void vout_PutPicture(vout_thread_t *vout, picture_t *picture)
420 {
421     vlc_mutex_lock(&vout->p->picture_lock);
422
423     picture->p_next = NULL;
424     picture_fifo_Push(vout->p->decoder_fifo, picture);
425
426     vlc_mutex_unlock(&vout->p->picture_lock);
427
428     vout_control_Wake(&vout->p->control);
429 }
430
431 /**
432  * It releases a picture retreived by vout_GetPicture.
433  */
434 void vout_ReleasePicture(vout_thread_t *vout, picture_t *picture)
435 {
436     vlc_mutex_lock(&vout->p->picture_lock);
437
438     picture_Release(picture);
439
440     vlc_mutex_unlock(&vout->p->picture_lock);
441
442     vout_control_Wake(&vout->p->control);
443 }
444
445 /**
446  * It increment the reference counter of a picture retreived by
447  * vout_GetPicture.
448  */
449 void vout_HoldPicture(vout_thread_t *vout, picture_t *picture)
450 {
451     vlc_mutex_lock(&vout->p->picture_lock);
452
453     picture_Hold(picture);
454
455     vlc_mutex_unlock(&vout->p->picture_lock);
456 }
457
458 /* */
459 int vout_GetSnapshot(vout_thread_t *vout,
460                      block_t **image_dst, picture_t **picture_dst,
461                      video_format_t *fmt,
462                      const char *type, mtime_t timeout)
463 {
464     picture_t *picture = vout_snapshot_Get(&vout->p->snapshot, timeout);
465     if (!picture) {
466         msg_Err(vout, "Failed to grab a snapshot");
467         return VLC_EGENERIC;
468     }
469
470     if (image_dst) {
471         vlc_fourcc_t codec = VLC_CODEC_PNG;
472         if (type && image_Type2Fourcc(type))
473             codec = image_Type2Fourcc(type);
474
475         const int override_width  = var_GetInteger(vout, "snapshot-width");
476         const int override_height = var_GetInteger(vout, "snapshot-height");
477
478         if (picture_Export(VLC_OBJECT(vout), image_dst, fmt,
479                            picture, codec, override_width, override_height)) {
480             msg_Err(vout, "Failed to convert image for snapshot");
481             picture_Release(picture);
482             return VLC_EGENERIC;
483         }
484     }
485     if (picture_dst)
486         *picture_dst = picture;
487     else
488         picture_Release(picture);
489     return VLC_SUCCESS;
490 }
491
492 /* vout_Control* are usable by anyone at anytime */
493 void vout_ControlChangeFullscreen(vout_thread_t *vout, bool fullscreen)
494 {
495     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_FULLSCREEN,
496                           fullscreen);
497 }
498 void vout_ControlChangeOnTop(vout_thread_t *vout, bool is_on_top)
499 {
500     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_ON_TOP,
501                           is_on_top);
502 }
503 void vout_ControlChangeDisplayFilled(vout_thread_t *vout, bool is_filled)
504 {
505     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_DISPLAY_FILLED,
506                           is_filled);
507 }
508 void vout_ControlChangeZoom(vout_thread_t *vout, int num, int den)
509 {
510     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_ZOOM,
511                           num, den);
512 }
513 void vout_ControlChangeSampleAspectRatio(vout_thread_t *vout,
514                                          unsigned num, unsigned den)
515 {
516     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_ASPECT_RATIO,
517                           num, den);
518 }
519 void vout_ControlChangeCropRatio(vout_thread_t *vout,
520                                  unsigned num, unsigned den)
521 {
522     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_CROP_RATIO,
523                           num, den);
524 }
525 void vout_ControlChangeCropWindow(vout_thread_t *vout,
526                                   int x, int y, int width, int height)
527 {
528     vout_control_cmd_t cmd;
529     vout_control_cmd_Init(&cmd, VOUT_CONTROL_CROP_WINDOW);
530     cmd.u.window.x      = __MAX(x, 0);
531     cmd.u.window.y      = __MAX(y, 0);
532     cmd.u.window.width  = __MAX(width, 0);
533     cmd.u.window.height = __MAX(height, 0);
534
535     vout_control_Push(&vout->p->control, &cmd);
536 }
537 void vout_ControlChangeCropBorder(vout_thread_t *vout,
538                                   int left, int top, int right, int bottom)
539 {
540     vout_control_cmd_t cmd;
541     vout_control_cmd_Init(&cmd, VOUT_CONTROL_CROP_BORDER);
542     cmd.u.border.left   = __MAX(left, 0);
543     cmd.u.border.top    = __MAX(top, 0);
544     cmd.u.border.right  = __MAX(right, 0);
545     cmd.u.border.bottom = __MAX(bottom, 0);
546
547     vout_control_Push(&vout->p->control, &cmd);
548 }
549 void vout_ControlChangeFilters(vout_thread_t *vout, const char *filters)
550 {
551     vout_control_PushString(&vout->p->control, VOUT_CONTROL_CHANGE_FILTERS,
552                             filters);
553 }
554 void vout_ControlChangeSubFilters(vout_thread_t *vout, const char *filters)
555 {
556     vout_control_PushString(&vout->p->control, VOUT_CONTROL_CHANGE_SUB_FILTERS,
557                             filters);
558 }
559 void vout_ControlChangeSubMargin(vout_thread_t *vout, int margin)
560 {
561     vout_control_PushInteger(&vout->p->control, VOUT_CONTROL_CHANGE_SUB_MARGIN,
562                              margin);
563 }
564
565 /* */
566 static void VoutGetDisplayCfg(vout_thread_t *vout, vout_display_cfg_t *cfg, const char *title)
567 {
568     /* Load configuration */
569     cfg->is_fullscreen = var_CreateGetBool(vout, "fullscreen");
570     cfg->display.title = title;
571     const int display_width = var_CreateGetInteger(vout, "width");
572     const int display_height = var_CreateGetInteger(vout, "height");
573     cfg->display.width   = display_width > 0  ? display_width  : 0;
574     cfg->display.height  = display_height > 0 ? display_height : 0;
575     cfg->is_display_filled  = var_CreateGetBool(vout, "autoscale");
576     unsigned msar_num, msar_den;
577     if (var_InheritURational(vout, &msar_num, &msar_den, "monitor-par") ||
578         msar_num <= 0 || msar_den <= 0) {
579         msar_num = 1;
580         msar_den = 1;
581     }
582     cfg->display.sar.num = msar_num;
583     cfg->display.sar.den = msar_den;
584     unsigned zoom_den = 1000;
585     unsigned zoom_num = zoom_den * var_CreateGetFloat(vout, "scale");
586     vlc_ureduce(&zoom_num, &zoom_den, zoom_num, zoom_den, 0);
587     cfg->zoom.num = zoom_num;
588     cfg->zoom.den = zoom_den;
589     cfg->align.vertical = VOUT_DISPLAY_ALIGN_CENTER;
590     cfg->align.horizontal = VOUT_DISPLAY_ALIGN_CENTER;
591     const int align_mask = var_CreateGetInteger(vout, "align");
592     if (align_mask & 0x1)
593         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_LEFT;
594     else if (align_mask & 0x2)
595         cfg->align.horizontal = VOUT_DISPLAY_ALIGN_RIGHT;
596     if (align_mask & 0x4)
597         cfg->align.vertical = VOUT_DISPLAY_ALIGN_TOP;
598     else if (align_mask & 0x8)
599         cfg->align.vertical = VOUT_DISPLAY_ALIGN_BOTTOM;
600 }
601
602 vout_window_t * vout_NewDisplayWindow(vout_thread_t *vout, vout_display_t *vd,
603                                       const vout_window_cfg_t *cfg)
604 {
605     VLC_UNUSED(vd);
606     vout_window_cfg_t cfg_override = *cfg;
607
608     if (!var_InheritBool( vout, "embedded-video"))
609         cfg_override.is_standalone = true;
610
611     if (vout->p->window.is_unused && vout->p->window.object) {
612         assert(!vout->p->splitter_name);
613         if (!cfg_override.is_standalone == !vout->p->window.cfg.is_standalone &&
614             cfg_override.type           == vout->p->window.cfg.type) {
615             /* Reuse the stored window */
616             msg_Dbg(vout, "Reusing previous vout window");
617             vout_window_t *window = vout->p->window.object;
618             if (cfg_override.width  != vout->p->window.cfg.width ||
619                 cfg_override.height != vout->p->window.cfg.height)
620                 vout_window_SetSize(window,
621                                     cfg_override.width, cfg_override.height);
622             vout->p->window.is_unused = false;
623             vout->p->window.cfg       = cfg_override;
624             return window;
625         }
626
627         vout_window_Delete(vout->p->window.object);
628         vout->p->window.is_unused = true;
629         vout->p->window.object    = NULL;
630     }
631
632     vout_window_t *window = vout_window_New(VLC_OBJECT(vout), "$window",
633                                             &cfg_override);
634     if (!window)
635         return NULL;
636     if (!vout->p->splitter_name) {
637         vout->p->window.is_unused = false;
638         vout->p->window.cfg       = cfg_override;
639         vout->p->window.object    = window;
640     }
641     return window;
642 }
643
644 void vout_DeleteDisplayWindow(vout_thread_t *vout, vout_display_t *vd,
645                               vout_window_t *window)
646 {
647     VLC_UNUSED(vd);
648     if (!vout->p->window.is_unused && vout->p->window.object == window) {
649         vout->p->window.is_unused = true;
650     } else if (vout->p->window.is_unused && vout->p->window.object && !window) {
651         vout_window_Delete(vout->p->window.object);
652         vout->p->window.is_unused = true;
653         vout->p->window.object    = NULL;
654     } else if (window) {
655         vout_window_Delete(window);
656     }
657 }
658
659 /* */
660 static picture_t *VoutVideoFilterInteractiveNewPicture(filter_t *filter)
661 {
662     vout_thread_t *vout = (vout_thread_t*)filter->p_owner;
663
664     picture_t *picture = picture_pool_Get(vout->p->private_pool);
665     if (picture) {
666         picture_Reset(picture);
667         VideoFormatCopyCropAr(&picture->format, &filter->fmt_out.video);
668     }
669     return picture;
670 }
671 static picture_t *VoutVideoFilterStaticNewPicture(filter_t *filter)
672 {
673     vout_thread_t *vout = (vout_thread_t*)filter->p_owner;
674
675     vlc_assert_locked(&vout->p->filter.lock);
676     if (filter_chain_GetLength(vout->p->filter.chain_interactive) == 0)
677         return VoutVideoFilterInteractiveNewPicture(filter);
678
679     return picture_NewFromFormat(&filter->fmt_out.video);
680 }
681 static void VoutVideoFilterDelPicture(filter_t *filter, picture_t *picture)
682 {
683     VLC_UNUSED(filter);
684     picture_Release(picture);
685 }
686 static int VoutVideoFilterStaticAllocationSetup(filter_t *filter, void *data)
687 {
688     filter->pf_video_buffer_new = VoutVideoFilterStaticNewPicture;
689     filter->pf_video_buffer_del = VoutVideoFilterDelPicture;
690     filter->p_owner             = data; /* vout */
691     return VLC_SUCCESS;
692 }
693 static int VoutVideoFilterInteractiveAllocationSetup(filter_t *filter, void *data)
694 {
695     filter->pf_video_buffer_new = VoutVideoFilterInteractiveNewPicture;
696     filter->pf_video_buffer_del = VoutVideoFilterDelPicture;
697     filter->p_owner             = data; /* vout */
698     return VLC_SUCCESS;
699 }
700 static void ThreadFilterFlush(vout_thread_t *vout, bool is_locked)
701 {
702     if (vout->p->displayed.current)
703         picture_Release( vout->p->displayed.current );
704     vout->p->displayed.current = NULL;
705
706     if (vout->p->displayed.next)
707         picture_Release( vout->p->displayed.next );
708     vout->p->displayed.next = NULL;
709
710     if (!is_locked)
711         vlc_mutex_lock(&vout->p->filter.lock);
712     filter_chain_VideoFlush(vout->p->filter.chain_static);
713     filter_chain_VideoFlush(vout->p->filter.chain_interactive);
714     if (!is_locked)
715         vlc_mutex_unlock(&vout->p->filter.lock);
716 }
717
718 typedef struct {
719     char           *name;
720     config_chain_t *cfg;
721 } vout_filter_t;
722
723 static void ThreadChangeFilters(vout_thread_t *vout,
724                                 const video_format_t *source,
725                                 const char *filters,
726                                 bool is_locked)
727 {
728     ThreadFilterFlush(vout, is_locked);
729
730     vlc_array_t array_static;
731     vlc_array_t array_interactive;
732
733     vlc_array_init(&array_static);
734     vlc_array_init(&array_interactive);
735     char *current = filters ? strdup(filters) : NULL;
736     while (current) {
737         config_chain_t *cfg;
738         char *name;
739         char *next = config_ChainCreate(&name, &cfg, current);
740
741         if (name && *name) {
742             vout_filter_t *e = xmalloc(sizeof(*e));
743             e->name = name;
744             e->cfg  = cfg;
745             if (!strcmp(e->name, "deinterlace") ||
746                 !strcmp(e->name, "postproc")) {
747                 vlc_array_append(&array_static, e);
748             } else {
749                 vlc_array_append(&array_interactive, e);
750             }
751         } else {
752             if (cfg)
753                 config_ChainDestroy(cfg);
754             free(name);
755         }
756         free(current);
757         current = next;
758     }
759
760     if (!is_locked)
761         vlc_mutex_lock(&vout->p->filter.lock);
762
763     es_format_t fmt_target;
764     es_format_InitFromVideo(&fmt_target, source ? source : &vout->p->filter.format);
765
766     es_format_t fmt_current = fmt_target;
767
768     for (int a = 0; a < 2; a++) {
769         vlc_array_t    *array = a == 0 ? &array_static :
770                                          &array_interactive;
771         filter_chain_t *chain = a == 0 ? vout->p->filter.chain_static :
772                                          vout->p->filter.chain_interactive;
773
774         filter_chain_Reset(chain, &fmt_current, &fmt_current);
775         for (int i = 0; i < vlc_array_count(array); i++) {
776             vout_filter_t *e = vlc_array_item_at_index(array, i);
777             msg_Dbg(vout, "Adding '%s' as %s", e->name, a == 0 ? "static" : "interactive");
778             if (!filter_chain_AppendFilter(chain, e->name, e->cfg, NULL, NULL)) {
779                 msg_Err(vout, "Failed to add filter '%s'", e->name);
780                 config_ChainDestroy(e->cfg);
781             }
782             free(e->name);
783             free(e);
784         }
785         fmt_current = *filter_chain_GetFmtOut(chain);
786         vlc_array_clear(array);
787     }
788     VideoFormatCopyCropAr(&fmt_target.video, &fmt_current.video);
789     if (!es_format_IsSimilar(&fmt_current, &fmt_target)) {
790         msg_Dbg(vout, "Adding a filter to compensate for format changes");
791         if (!filter_chain_AppendFilter(vout->p->filter.chain_interactive, NULL, NULL,
792                                        &fmt_current, &fmt_target)) {
793             msg_Err(vout, "Failed to compensate for the format changes, removing all filters");
794             filter_chain_Reset(vout->p->filter.chain_static,      &fmt_target, &fmt_target);
795             filter_chain_Reset(vout->p->filter.chain_interactive, &fmt_target, &fmt_target);
796         }
797     }
798
799     if (vout->p->filter.configuration != filters) {
800         free(vout->p->filter.configuration);
801         vout->p->filter.configuration = filters ? strdup(filters) : NULL;
802     }
803     if (source) {
804         video_format_Clean(&vout->p->filter.format);
805         video_format_Copy(&vout->p->filter.format, source);
806     }
807
808     if (!is_locked)
809         vlc_mutex_unlock(&vout->p->filter.lock);
810 }
811
812
813 /* */
814 static int ThreadDisplayPreparePicture(vout_thread_t *vout, bool reuse, bool is_late_dropped)
815 {
816     int lost_count = 0;
817
818     vlc_mutex_lock(&vout->p->filter.lock);
819
820     picture_t *picture = filter_chain_VideoFilter(vout->p->filter.chain_static, NULL);
821     assert(!reuse || !picture);
822
823     while (!picture) {
824         picture_t *decoded;
825         if (reuse && vout->p->displayed.decoded) {
826             decoded = picture_Hold(vout->p->displayed.decoded);
827         } else {
828             decoded = picture_fifo_Pop(vout->p->decoder_fifo);
829             if (is_late_dropped && decoded && !decoded->b_force) {
830                 const mtime_t predicted = mdate() + 0; /* TODO improve */
831                 const mtime_t late = predicted - decoded->date;
832                 if (late > VOUT_DISPLAY_LATE_THRESHOLD) {
833                     msg_Warn(vout, "picture is too late to be displayed (missing %d ms)", (int)(late/1000));
834                     picture_Release(decoded);
835                     lost_count++;
836                     continue;
837                 } else if (late > 0) {
838                     msg_Dbg(vout, "picture might be displayed late (missing %d ms)", (int)(late/1000));
839                 }
840             }
841             if (decoded &&
842                 !VideoFormatIsCropArEqual(&decoded->format, &vout->p->filter.format))
843                 ThreadChangeFilters(vout, &decoded->format, vout->p->filter.configuration, true);
844         }
845         if (!decoded)
846             break;
847         reuse = false;
848
849         if (vout->p->displayed.decoded)
850             picture_Release(vout->p->displayed.decoded);
851
852         vout->p->displayed.decoded       = picture_Hold(decoded);
853         vout->p->displayed.timestamp     = decoded->date;
854         vout->p->displayed.is_interlaced = !decoded->b_progressive;
855         vout->p->displayed.qtype         = decoded->i_qtype;
856
857         picture = filter_chain_VideoFilter(vout->p->filter.chain_static, decoded);
858     }
859
860     vlc_mutex_unlock(&vout->p->filter.lock);
861
862     vout_statistic_Update(&vout->p->statistic, 0, lost_count);
863     if (!picture)
864         return VLC_EGENERIC;
865
866     assert(!vout->p->displayed.next);
867     if (!vout->p->displayed.current)
868         vout->p->displayed.current = picture;
869     else
870         vout->p->displayed.next    = picture;
871     return VLC_SUCCESS;
872 }
873
874 static int ThreadDisplayRenderPicture(vout_thread_t *vout, bool is_forced)
875 {
876     vout_display_t *vd = vout->p->display.vd;
877
878     picture_t *torender = picture_Hold(vout->p->displayed.current);
879
880     vout_chrono_Start(&vout->p->render);
881
882     vlc_mutex_lock(&vout->p->filter.lock);
883     picture_t *filtered = filter_chain_VideoFilter(vout->p->filter.chain_interactive, torender);
884     vlc_mutex_unlock(&vout->p->filter.lock);
885
886     if (!filtered)
887         return VLC_EGENERIC;
888
889     if (filtered->date != vout->p->displayed.current->date)
890         msg_Warn(vout, "Unsupported timestamp modifications done by chain_interactive");
891
892     /*
893      * Get the subpicture to be displayed
894      */
895     const bool do_snapshot = vout_snapshot_IsRequested(&vout->p->snapshot);
896     mtime_t render_subtitle_date;
897     if (vout->p->pause.is_on)
898         render_subtitle_date = vout->p->pause.date;
899     else
900         render_subtitle_date = filtered->date > 1 ? filtered->date : mdate();
901     mtime_t render_osd_date = mdate(); /* FIXME wrong */
902
903     subpicture_t *subpic = spu_Render(vout->p->spu, NULL, &vd->source, &vd->source,
904                                       render_subtitle_date, render_osd_date,
905                                       do_snapshot);
906
907     /*
908      * Perform rendering
909      *
910      * We have to:
911      * - be sure to end up with a direct buffer.
912      * - blend subtitles, and in a fast access buffer
913      */
914     picture_t *direct = NULL;
915     if (filtered &&
916         (vout->p->decoder_pool != vout->p->display_pool || subpic)) {
917         picture_t *render;
918         if (vout->p->is_decoder_pool_slow)
919             render = picture_NewFromFormat(&vd->source);
920         else if (vout->p->decoder_pool != vout->p->display_pool)
921             render = picture_pool_Get(vout->p->display_pool);
922         else
923             render = picture_pool_Get(vout->p->private_pool);
924
925         if (render) {
926             picture_Copy(render, filtered);
927
928             if (vout->p->spu_blend && subpic)
929                 picture_BlendSubpicture(render, vout->p->spu_blend, subpic);
930         }
931         if (vout->p->is_decoder_pool_slow) {
932             direct = picture_pool_Get(vout->p->display_pool);
933             if (direct)
934                 picture_Copy(direct, render);
935             picture_Release(render);
936
937         } else {
938             direct = render;
939         }
940         VideoFormatCopyCropAr(&direct->format, &filtered->format);
941         picture_Release(filtered);
942         filtered = NULL;
943     } else {
944         direct = filtered;
945     }
946     if (subpic)
947         subpicture_Delete(subpic);
948
949     if (!direct)
950         return VLC_EGENERIC;
951
952     /*
953      * Take a snapshot if requested
954      */
955     if (do_snapshot)
956         vout_snapshot_Set(&vout->p->snapshot, &vd->source, direct);
957
958     /* Render the direct buffer returned by vout_RenderPicture */
959     vout_RenderWrapper(vout, direct, NULL);
960
961     vout_chrono_Stop(&vout->p->render);
962 #if 0
963         {
964         static int i = 0;
965         if (((i++)%10) == 0)
966             msg_Info(vout, "render: avg %d ms var %d ms",
967                      (int)(vout->p->render.avg/1000), (int)(vout->p->render.var/1000));
968         }
969 #endif
970
971     /* Wait the real date (for rendering jitter) */
972 #if 0
973     mtime_t delay = direct->date - mdate();
974     if (delay < 1000)
975         msg_Warn(vout, "picture is late (%lld ms)", delay / 1000);
976 #endif
977     if (!is_forced)
978         mwait(direct->date);
979
980     /* Display the direct buffer returned by vout_RenderPicture */
981     vout->p->displayed.date = mdate();
982
983     vout_DisplayWrapper(vout, direct, NULL);
984
985     vout_statistic_Update(&vout->p->statistic, 1, 0);
986
987     return VLC_SUCCESS;
988 }
989
990 static int ThreadDisplayPicture(vout_thread_t *vout,
991                                 bool now, mtime_t *deadline)
992 {
993     bool is_late_dropped = vout->p->is_late_dropped && !vout->p->pause.is_on && !now;
994     bool first = !vout->p->displayed.current;
995     if (first && ThreadDisplayPreparePicture(vout, true, is_late_dropped)) /* FIXME not sure it is ok */
996         return VLC_EGENERIC;
997     if (!vout->p->pause.is_on || now) {
998         while (!vout->p->displayed.next) {
999             if (ThreadDisplayPreparePicture(vout, false, is_late_dropped)) {
1000                 break;
1001             }
1002         }
1003     }
1004
1005     const mtime_t date = mdate();
1006     const mtime_t render_delay = vout_chrono_GetHigh(&vout->p->render) + VOUT_MWAIT_TOLERANCE;
1007
1008     mtime_t date_next = VLC_TS_INVALID;
1009     if (!vout->p->pause.is_on && vout->p->displayed.next)
1010         date_next = vout->p->displayed.next->date - render_delay;
1011
1012     /* FIXME/XXX we must redisplay the last decoded picture (because
1013      * of potential vout updated, or filters update or SPU update)
1014      * For now a high update period is needed but it coulmd be removed
1015      * if and only if:
1016      * - vout module emits events from theselves.
1017      * - *and* SPU is modified to emit an event or a deadline when needed.
1018      *
1019      * So it will be done latter.
1020      */
1021     mtime_t date_refresh = VLC_TS_INVALID;
1022     if (vout->p->displayed.date > VLC_TS_INVALID)
1023         date_refresh = vout->p->displayed.date + VOUT_REDISPLAY_DELAY - render_delay;
1024
1025     bool drop = now;
1026     if (date_next != VLC_TS_INVALID)
1027         drop |= date_next + 0 <= date;
1028
1029     bool refresh = false;
1030     if (date_refresh > VLC_TS_INVALID)
1031         refresh = date_refresh <= date;
1032
1033     if (!first && !refresh && !drop) {
1034         if (date_next != VLC_TS_INVALID && date_refresh != VLC_TS_INVALID)
1035             *deadline = __MIN(date_next, date_refresh);
1036         else if (date_next != VLC_TS_INVALID)
1037             *deadline = date_next;
1038         else if (date_refresh != VLC_TS_INVALID)
1039             *deadline = date_refresh;
1040         return VLC_EGENERIC;
1041     }
1042
1043     if (drop) {
1044         picture_Release(vout->p->displayed.current);
1045         vout->p->displayed.current = vout->p->displayed.next;
1046         vout->p->displayed.next    = NULL;
1047     }
1048     if (!vout->p->displayed.current)
1049         return VLC_EGENERIC;
1050
1051     bool is_forced = now || (!drop && refresh) || vout->p->displayed.current->b_force;
1052     return ThreadDisplayRenderPicture(vout, is_forced);
1053 }
1054
1055 static void ThreadManage(vout_thread_t *vout,
1056                          mtime_t *deadline,
1057                          vout_interlacing_support_t *interlacing,
1058                          vout_postprocessing_support_t *postprocessing)
1059 {
1060     vlc_mutex_lock(&vout->p->picture_lock);
1061
1062     *deadline = VLC_TS_INVALID;
1063     for (;;) {
1064         if (ThreadDisplayPicture(vout, false, deadline))
1065             break;
1066     }
1067
1068     const int  picture_qtype      = vout->p->displayed.qtype;
1069     const bool picture_interlaced = vout->p->displayed.is_interlaced;
1070
1071     vlc_mutex_unlock(&vout->p->picture_lock);
1072
1073     /* Post processing */
1074     vout_SetPostProcessingState(vout, postprocessing, picture_qtype);
1075
1076     /* Deinterlacing */
1077     vout_SetInterlacingState(vout, interlacing, picture_interlaced);
1078
1079     vout_ManageWrapper(vout);
1080 }
1081
1082 static void ThreadDisplaySubpicture(vout_thread_t *vout,
1083                                     subpicture_t *subpicture)
1084 {
1085     spu_PutSubpicture(vout->p->spu, subpicture);
1086 }
1087
1088 static void ThreadFlushSubpicture(vout_thread_t *vout, int channel)
1089 {
1090     spu_ClearChannel(vout->p->spu, channel);
1091 }
1092
1093 static void ThreadDisplayOsdTitle(vout_thread_t *vout, const char *string)
1094 {
1095     if (!vout->p->title.show)
1096         return;
1097
1098     vout_OSDText(vout, SPU_DEFAULT_CHANNEL,
1099                  vout->p->title.position, INT64_C(1000) * vout->p->title.timeout,
1100                  string);
1101 }
1102
1103 static void ThreadChangeSubFilters(vout_thread_t *vout, const char *filters)
1104 {
1105     spu_ChangeFilters(vout->p->spu, filters);
1106 }
1107 static void ThreadChangeSubMargin(vout_thread_t *vout, int margin)
1108 {
1109     spu_ChangeMargin(vout->p->spu, margin);
1110 }
1111
1112 static void ThreadChangePause(vout_thread_t *vout, bool is_paused, mtime_t date)
1113 {
1114     assert(!vout->p->pause.is_on || !is_paused);
1115
1116     if (vout->p->pause.is_on) {
1117         const mtime_t duration = date - vout->p->pause.date;
1118
1119         if (vout->p->step.timestamp > VLC_TS_INVALID)
1120             vout->p->step.timestamp += duration;
1121         if (vout->p->step.last > VLC_TS_INVALID)
1122             vout->p->step.last += duration;
1123         picture_fifo_OffsetDate(vout->p->decoder_fifo, duration);
1124         if (vout->p->displayed.decoded)
1125             vout->p->displayed.decoded->date += duration;
1126         spu_OffsetSubtitleDate(vout->p->spu, duration);
1127
1128         ThreadFilterFlush(vout, false);
1129     } else {
1130         vout->p->step.timestamp = VLC_TS_INVALID;
1131         vout->p->step.last      = VLC_TS_INVALID;
1132     }
1133     vout->p->pause.is_on = is_paused;
1134     vout->p->pause.date  = date;
1135 }
1136
1137 static void ThreadFlush(vout_thread_t *vout, bool below, mtime_t date)
1138 {
1139     vout->p->step.timestamp = VLC_TS_INVALID;
1140     vout->p->step.last      = VLC_TS_INVALID;
1141
1142     ThreadFilterFlush(vout, false); /* FIXME too much */
1143
1144     picture_t *last = vout->p->displayed.decoded;
1145     if (last) {
1146         if (( below && last->date <= date) ||
1147             (!below && last->date >= date)) {
1148             picture_Release(last);
1149
1150             vout->p->displayed.decoded   = NULL;
1151             vout->p->displayed.date      = VLC_TS_INVALID;
1152             vout->p->displayed.timestamp = VLC_TS_INVALID;
1153         }
1154     }
1155
1156     picture_fifo_Flush(vout->p->decoder_fifo, date, below);
1157 }
1158
1159 static void ThreadReset(vout_thread_t *vout)
1160 {
1161     ThreadFlush(vout, true, INT64_MAX);
1162     if (vout->p->decoder_pool)
1163         picture_pool_NonEmpty(vout->p->decoder_pool, true);
1164     vout->p->pause.is_on = false;
1165     vout->p->pause.date  = mdate();
1166 }
1167
1168 static void ThreadStep(vout_thread_t *vout, mtime_t *duration)
1169 {
1170     *duration = 0;
1171
1172     if (vout->p->step.last <= VLC_TS_INVALID)
1173         vout->p->step.last = vout->p->displayed.timestamp;
1174
1175     mtime_t dummy;
1176     if (ThreadDisplayPicture(vout, true, &dummy))
1177         return;
1178
1179     vout->p->step.timestamp = vout->p->displayed.timestamp;
1180
1181     if (vout->p->step.last > VLC_TS_INVALID &&
1182         vout->p->step.timestamp > vout->p->step.last) {
1183         *duration = vout->p->step.timestamp - vout->p->step.last;
1184         vout->p->step.last = vout->p->step.timestamp;
1185         /* TODO advance subpicture by the duration ... */
1186     }
1187 }
1188
1189 static void ThreadChangeFullscreen(vout_thread_t *vout, bool fullscreen)
1190 {
1191     /* FIXME not sure setting "fullscreen" is good ... */
1192     var_SetBool(vout, "fullscreen", fullscreen);
1193     vout_SetDisplayFullscreen(vout->p->display.vd, fullscreen);
1194 }
1195
1196 static void ThreadChangeOnTop(vout_thread_t *vout, bool is_on_top)
1197 {
1198     vout_SetWindowState(vout->p->display.vd,
1199                         is_on_top ? VOUT_WINDOW_STATE_ABOVE :
1200                                     VOUT_WINDOW_STATE_NORMAL);
1201 }
1202
1203 static void ThreadChangeDisplayFilled(vout_thread_t *vout, bool is_filled)
1204 {
1205     vout_SetDisplayFilled(vout->p->display.vd, is_filled);
1206 }
1207
1208 static void ThreadChangeZoom(vout_thread_t *vout, int num, int den)
1209 {
1210     if (num * 10 < den) {
1211         num = den;
1212         den *= 10;
1213     } else if (num > den * 10) {
1214         num = den * 10;
1215     }
1216
1217     vout_SetDisplayZoom(vout->p->display.vd, num, den);
1218 }
1219
1220 static void ThreadChangeAspectRatio(vout_thread_t *vout,
1221                                     unsigned num, unsigned den)
1222 {
1223     vout_SetDisplayAspect(vout->p->display.vd, num, den);
1224 }
1225
1226
1227 static void ThreadExecuteCropWindow(vout_thread_t *vout,
1228                                     unsigned x, unsigned y,
1229                                     unsigned width, unsigned height)
1230 {
1231     vout_SetDisplayCrop(vout->p->display.vd, 0, 0,
1232                         x, y, width, height);
1233 }
1234 static void ThreadExecuteCropBorder(vout_thread_t *vout,
1235                                     unsigned left, unsigned top,
1236                                     unsigned right, unsigned bottom)
1237 {
1238     msg_Err(vout, "ThreadExecuteCropBorder %d.%d %dx%d", left, top, right, bottom);
1239     vout_SetDisplayCrop(vout->p->display.vd, 0, 0,
1240                         left, top, -(int)right, -(int)bottom);
1241 }
1242
1243 static void ThreadExecuteCropRatio(vout_thread_t *vout,
1244                                    unsigned num, unsigned den)
1245 {
1246     vout_SetDisplayCrop(vout->p->display.vd, num, den,
1247                         0, 0, 0, 0);
1248 }
1249
1250 static int ThreadStart(vout_thread_t *vout, const vout_display_state_t *state)
1251 {
1252     vlc_mouse_Init(&vout->p->mouse);
1253     vout->p->decoder_fifo = picture_fifo_New();
1254     vout->p->decoder_pool = NULL;
1255     vout->p->display_pool = NULL;
1256     vout->p->private_pool = NULL;
1257
1258     vout->p->filter.configuration = NULL;
1259     video_format_Copy(&vout->p->filter.format, &vout->p->original);
1260     vout->p->filter.chain_static =
1261         filter_chain_New( vout, "video filter2", true,
1262                           VoutVideoFilterStaticAllocationSetup, NULL, vout);
1263     vout->p->filter.chain_interactive =
1264         filter_chain_New( vout, "video filter2", true,
1265                           VoutVideoFilterInteractiveAllocationSetup, NULL, vout);
1266
1267     vout_display_state_t state_default;
1268     if (!state) {
1269         VoutGetDisplayCfg(vout, &state_default.cfg, vout->p->display.title);
1270         state_default.wm_state = var_CreateGetBool(vout, "video-on-top") ? VOUT_WINDOW_STATE_ABOVE :
1271                                                                            VOUT_WINDOW_STATE_NORMAL;
1272         state_default.sar.num = 0;
1273         state_default.sar.den = 0;
1274
1275         state = &state_default;
1276     }
1277
1278     if (vout_OpenWrapper(vout, vout->p->splitter_name, state))
1279         return VLC_EGENERIC;
1280     if (vout_InitWrapper(vout))
1281         return VLC_EGENERIC;
1282     assert(vout->p->decoder_pool);
1283
1284     vout->p->displayed.current       = NULL;
1285     vout->p->displayed.next          = NULL;
1286     vout->p->displayed.decoded       = NULL;
1287     vout->p->displayed.date          = VLC_TS_INVALID;
1288     vout->p->displayed.timestamp     = VLC_TS_INVALID;
1289     vout->p->displayed.qtype         = QTYPE_NONE;
1290     vout->p->displayed.is_interlaced = false;
1291
1292     vout->p->step.last               = VLC_TS_INVALID;
1293     vout->p->step.timestamp          = VLC_TS_INVALID;
1294
1295
1296     vout->p->spu_blend = filter_NewBlend(VLC_OBJECT(vout), &vout->p->original);
1297     if (!vout->p->spu_blend)
1298         msg_Err(vout, "Failed to create blending filter, OSD/Subtitles will not work");
1299
1300     video_format_Print(VLC_OBJECT(vout), "original format", &vout->p->original);
1301     return VLC_SUCCESS;
1302 }
1303
1304 static void ThreadStop(vout_thread_t *vout, vout_display_state_t *state)
1305 {
1306     if (vout->p->spu_blend)
1307         filter_DeleteBlend(vout->p->spu_blend);
1308
1309     /* Destroy translation tables */
1310     if (vout->p->display.vd) {
1311         if (vout->p->decoder_pool) {
1312             ThreadFlush(vout, true, INT64_MAX);
1313             vout_EndWrapper(vout);
1314         }
1315         vout_CloseWrapper(vout, state);
1316     }
1317
1318     /* Destroy the video filters2 */
1319     filter_chain_Delete(vout->p->filter.chain_interactive);
1320     filter_chain_Delete(vout->p->filter.chain_static);
1321     video_format_Clean(&vout->p->filter.format);
1322     free(vout->p->filter.configuration);
1323
1324     if (vout->p->decoder_fifo)
1325         picture_fifo_Delete(vout->p->decoder_fifo);
1326     assert(!vout->p->decoder_pool);
1327 }
1328
1329 static void ThreadInit(vout_thread_t *vout)
1330 {
1331     vout->p->window.is_unused = true;
1332     vout->p->window.object    = NULL;
1333     vout->p->dead             = false;
1334     vout->p->is_late_dropped  = var_InheritBool(vout, "drop-late-frames");
1335     vout->p->pause.is_on      = false;
1336     vout->p->pause.date       = VLC_TS_INVALID;
1337
1338     vout_chrono_Init(&vout->p->render, 5, 10000); /* Arbitrary initial time */
1339 }
1340
1341 static void ThreadClean(vout_thread_t *vout)
1342 {
1343     if (vout->p->window.object) {
1344         assert(vout->p->window.is_unused);
1345         vout_window_Delete(vout->p->window.object);
1346     }
1347     vout_chrono_Clean(&vout->p->render);
1348     vout->p->dead = true;
1349     vout_control_Dead(&vout->p->control);
1350 }
1351
1352 static int ThreadReinit(vout_thread_t *vout,
1353                         const vout_configuration_t *cfg)
1354 {
1355     video_format_t original;
1356     if (VoutValidateFormat(&original, cfg->fmt)) {
1357         ThreadStop(vout, NULL);
1358         ThreadClean(vout);
1359         return VLC_EGENERIC;
1360     }
1361     /* We ignore crop/ar changes at this point, they are dynamically supported */
1362     VideoFormatCopyCropAr(&vout->p->original, &original);
1363     if (video_format_IsSimilar(&original, &vout->p->original)) {
1364         if (cfg->dpb_size <= vout->p->dpb_size)
1365             return VLC_SUCCESS;
1366         msg_Warn(vout, "DPB need to be increased");
1367     }
1368
1369     vout_display_state_t state;
1370     memset(&state, 0, sizeof(state));
1371
1372     ThreadStop(vout, &state);
1373
1374     if (!state.cfg.is_fullscreen) {
1375         state.cfg.display.width  = 0;
1376         state.cfg.display.height = 0;
1377     }
1378     state.sar.num = 0;
1379     state.sar.den = 0;
1380     /* FIXME current vout "variables" are not in sync here anymore
1381      * and I am not sure what to do */
1382
1383     vout->p->original = original;
1384     vout->p->dpb_size = cfg->dpb_size;
1385     if (ThreadStart(vout, &state)) {
1386         ThreadClean(vout);
1387         return VLC_EGENERIC;
1388     }
1389     return VLC_SUCCESS;
1390 }
1391
1392 /*****************************************************************************
1393  * Thread: video output thread
1394  *****************************************************************************
1395  * Video output thread. This function does only returns when the thread is
1396  * terminated. It handles the pictures arriving in the video heap and the
1397  * display device events.
1398  *****************************************************************************/
1399 static void *Thread(void *object)
1400 {
1401     vout_thread_t *vout = object;
1402
1403     vout_interlacing_support_t interlacing = {
1404         .is_interlaced = false,
1405         .date = mdate(),
1406     };
1407     vout_postprocessing_support_t postprocessing = {
1408         .qtype = QTYPE_NONE,
1409     };
1410
1411     mtime_t deadline = VLC_TS_INVALID;
1412     for (;;) {
1413         vout_control_cmd_t cmd;
1414
1415         /* FIXME remove thoses ugly timeouts
1416          */
1417         while (!vout_control_Pop(&vout->p->control, &cmd, deadline, 100000)) {
1418             switch(cmd.type) {
1419             case VOUT_CONTROL_INIT:
1420                 ThreadInit(vout);
1421                 if (ThreadStart(vout, NULL)) {
1422                     ThreadStop(vout, NULL);
1423                     ThreadClean(vout);
1424                     return NULL;
1425                 }
1426                 break;
1427             case VOUT_CONTROL_CLEAN:
1428                 ThreadStop(vout, NULL);
1429                 ThreadClean(vout);
1430                 return NULL;
1431             case VOUT_CONTROL_REINIT:
1432                 if (ThreadReinit(vout, cmd.u.cfg))
1433                     return NULL;
1434                 break;
1435             case VOUT_CONTROL_SUBPICTURE:
1436                 ThreadDisplaySubpicture(vout, cmd.u.subpicture);
1437                 cmd.u.subpicture = NULL;
1438                 break;
1439             case VOUT_CONTROL_FLUSH_SUBPICTURE:
1440                 ThreadFlushSubpicture(vout, cmd.u.integer);
1441                 break;
1442             case VOUT_CONTROL_OSD_TITLE:
1443                 ThreadDisplayOsdTitle(vout, cmd.u.string);
1444                 break;
1445             case VOUT_CONTROL_CHANGE_FILTERS:
1446                 ThreadChangeFilters(vout, NULL, cmd.u.string, false);
1447                 break;
1448             case VOUT_CONTROL_CHANGE_SUB_FILTERS:
1449                 ThreadChangeSubFilters(vout, cmd.u.string);
1450                 break;
1451             case VOUT_CONTROL_CHANGE_SUB_MARGIN:
1452                 ThreadChangeSubMargin(vout, cmd.u.integer);
1453                 break;
1454             case VOUT_CONTROL_PAUSE:
1455                 ThreadChangePause(vout, cmd.u.pause.is_on, cmd.u.pause.date);
1456                 break;
1457             case VOUT_CONTROL_FLUSH:
1458                 ThreadFlush(vout, false, cmd.u.time);
1459                 break;
1460             case VOUT_CONTROL_RESET:
1461                 ThreadReset(vout);
1462                 break;
1463             case VOUT_CONTROL_STEP:
1464                 ThreadStep(vout, cmd.u.time_ptr);
1465                 break;
1466             case VOUT_CONTROL_FULLSCREEN:
1467                 ThreadChangeFullscreen(vout, cmd.u.boolean);
1468                 break;
1469             case VOUT_CONTROL_ON_TOP:
1470                 ThreadChangeOnTop(vout, cmd.u.boolean);
1471                 break;
1472             case VOUT_CONTROL_DISPLAY_FILLED:
1473                 ThreadChangeDisplayFilled(vout, cmd.u.boolean);
1474                 break;
1475             case VOUT_CONTROL_ZOOM:
1476                 ThreadChangeZoom(vout, cmd.u.pair.a, cmd.u.pair.b);
1477                 break;
1478             case VOUT_CONTROL_ASPECT_RATIO:
1479                 ThreadChangeAspectRatio(vout, cmd.u.pair.a, cmd.u.pair.b);
1480                 break;
1481            case VOUT_CONTROL_CROP_RATIO:
1482                 ThreadExecuteCropRatio(vout, cmd.u.pair.a, cmd.u.pair.b);
1483                 break;
1484             case VOUT_CONTROL_CROP_WINDOW:
1485                 ThreadExecuteCropWindow(vout,
1486                                         cmd.u.window.x, cmd.u.window.y,
1487                                         cmd.u.window.width, cmd.u.window.height);
1488                 break;
1489             case VOUT_CONTROL_CROP_BORDER:
1490                 ThreadExecuteCropBorder(vout,
1491                                         cmd.u.border.left,  cmd.u.border.top,
1492                                         cmd.u.border.right, cmd.u.border.bottom);
1493                 break;
1494             default:
1495                 break;
1496             }
1497             vout_control_cmd_Clean(&cmd);
1498         }
1499
1500         ThreadManage(vout, &deadline, &interlacing, &postprocessing);
1501     }
1502 }
1503