]> git.sesse.net Git - vlc/blob - src/video_output/video_output.c
Cosmetics (vout).
[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
48 #include <libvlc.h>
49 #include <vlc_input.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     vout_Destructor(vlc_object_t *);
60
61 /* Object variables callbacks */
62 static int FilterCallback( vlc_object_t *, char const *,
63                            vlc_value_t, vlc_value_t, void * );
64 static int VideoFilter2Callback( vlc_object_t *, char const *,
65                                  vlc_value_t, vlc_value_t, void * );
66
67 /* */
68 static void PrintVideoFormat(vout_thread_t *, const char *, const video_format_t *);
69
70 /* Maximum delay between 2 displayed pictures.
71  * XXX it is needed for now but should be removed in the long term.
72  */
73 #define VOUT_REDISPLAY_DELAY (INT64_C(80000))
74
75 /**
76  * Late pictures having a delay higher than this value are thrashed.
77  */
78 #define VOUT_DISPLAY_LATE_THRESHOLD (INT64_C(20000))
79
80 /* Better be in advance when awakening than late... */
81 #define VOUT_MWAIT_TOLERANCE (INT64_C(1000))
82
83 /*****************************************************************************
84  * Video Filter2 functions
85  *****************************************************************************/
86 static picture_t *video_new_buffer_filter( filter_t *p_filter )
87 {
88     vout_thread_t *p_vout = (vout_thread_t*)p_filter->p_owner;
89     return picture_pool_Get(p_vout->p->private_pool);
90 }
91
92 static void video_del_buffer_filter( filter_t *p_filter, picture_t *p_pic )
93 {
94     VLC_UNUSED(p_filter);
95     picture_Release(p_pic);
96 }
97
98 static int video_filter_buffer_allocation_init( filter_t *p_filter, void *p_data )
99 {
100     p_filter->pf_video_buffer_new = video_new_buffer_filter;
101     p_filter->pf_video_buffer_del = video_del_buffer_filter;
102     p_filter->p_owner = p_data; /* p_vout */
103     return VLC_SUCCESS;
104 }
105
106 #undef vout_Request
107 /*****************************************************************************
108  * vout_Request: find a video output thread, create one, or destroy one.
109  *****************************************************************************
110  * This function looks for a video output thread matching the current
111  * properties. If not found, it spawns a new one.
112  *****************************************************************************/
113 vout_thread_t *vout_Request( vlc_object_t *p_this, vout_thread_t *p_vout,
114                              video_format_t *p_fmt )
115 {
116     if( !p_fmt )
117     {
118         /* Video output is no longer used.
119          * TODO: support for reusing video outputs with proper _thread-safe_
120          * reference handling. */
121         if( p_vout )
122             vout_CloseAndRelease( p_vout );
123         return NULL;
124     }
125
126     /* If a video output was provided, lock it, otherwise look for one. */
127     if( p_vout )
128     {
129         vlc_object_hold( p_vout );
130     }
131
132     /* TODO: find a suitable unused video output */
133
134     /* If we now have a video output, check it has the right properties */
135     if( p_vout )
136     {
137         vlc_mutex_lock( &p_vout->p->change_lock );
138
139         if( !video_format_IsSimilar( &p_vout->p->original, p_fmt ) )
140         {
141             vlc_mutex_unlock( &p_vout->p->change_lock );
142
143             /* We are not interested in this format, close this vout */
144             vout_CloseAndRelease( p_vout );
145             vlc_object_release( p_vout );
146             p_vout = NULL;
147         }
148         else
149         {
150             /* This video output is cool! Hijack it. */
151             vlc_mutex_unlock( &p_vout->p->change_lock );
152
153             vlc_object_release( p_vout );
154         }
155
156         if( p_vout )
157         {
158             msg_Dbg( p_this, "reusing provided vout" );
159
160             spu_Attach( p_vout->p->p_spu, VLC_OBJECT(p_vout), false );
161             vlc_object_detach( p_vout );
162
163             vlc_object_attach( p_vout, p_this );
164             spu_Attach( p_vout->p->p_spu, VLC_OBJECT(p_vout), true );
165         }
166     }
167
168     if( !p_vout )
169     {
170         msg_Dbg( p_this, "no usable vout present, spawning one" );
171
172         p_vout = vout_Create( p_this, p_fmt );
173     }
174
175     return p_vout;
176 }
177
178 /*****************************************************************************
179  * vout_Create: creates a new video output thread
180  *****************************************************************************
181  * This function creates a new video output thread, and returns a pointer
182  * to its description. On error, it returns NULL.
183  *****************************************************************************/
184 vout_thread_t * (vout_Create)( vlc_object_t *p_parent, video_format_t *p_fmt )
185 {
186     vout_thread_t  *p_vout;                            /* thread descriptor */
187     vlc_value_t     text;
188
189
190     config_chain_t *p_cfg;
191     char *psz_parser;
192     char *psz_name;
193
194     if( p_fmt->i_width <= 0 || p_fmt->i_height <= 0 )
195         return NULL;
196     const vlc_fourcc_t i_chroma = vlc_fourcc_GetCodec( VIDEO_ES, p_fmt->i_chroma );
197
198     vlc_ureduce( &p_fmt->i_sar_num, &p_fmt->i_sar_den,
199                  p_fmt->i_sar_num, p_fmt->i_sar_den, 50000 );
200     if( p_fmt->i_sar_num <= 0 || p_fmt->i_sar_den <= 0 )
201         return NULL;
202
203     /* Allocate descriptor */
204     static const char typename[] = "video output";
205     p_vout = vlc_custom_create( p_parent, sizeof( *p_vout ), VLC_OBJECT_VOUT,
206                                 typename );
207     if( p_vout == NULL )
208         return NULL;
209
210     /* */
211     p_vout->p = calloc( 1, sizeof(*p_vout->p) );
212     if( !p_vout->p )
213     {
214         vlc_object_release( p_vout );
215         return NULL;
216     }
217
218     /* */
219     p_vout->p->original = *p_fmt;   /* FIXME palette */
220     p_vout->p->original.i_chroma = i_chroma;
221     video_format_FixRgb( &p_vout->p->original );
222
223     /* Initialize misc stuff */
224     vout_control_Init( &p_vout->p->control );
225     vout_chrono_Init( &p_vout->p->render, 5, 10000 ); /* Arbitrary initial time */
226     vout_statistic_Init( &p_vout->p->statistic );
227     p_vout->p->i_par_num =
228     p_vout->p->i_par_den = 1;
229     p_vout->p->displayed.date = VLC_TS_INVALID;
230     p_vout->p->displayed.decoded = NULL;
231     p_vout->p->displayed.timestamp = VLC_TS_INVALID;
232     p_vout->p->displayed.qtype = QTYPE_NONE;
233     p_vout->p->displayed.is_interlaced = false;
234
235     p_vout->p->step.last         = VLC_TS_INVALID;
236     p_vout->p->step.timestamp    = VLC_TS_INVALID;
237
238     p_vout->p->pause.is_on  = false;
239     p_vout->p->pause.date   = VLC_TS_INVALID;
240
241     p_vout->p->decoder_fifo = picture_fifo_New();
242     p_vout->p->decoder_pool = NULL;
243
244     vlc_mouse_Init( &p_vout->p->mouse );
245
246     vout_snapshot_Init( &p_vout->p->snapshot );
247
248     p_vout->p->vfilter_chain =
249         filter_chain_New( p_vout, "video filter2", false,
250                           video_filter_buffer_allocation_init, NULL, p_vout );
251
252     /* Initialize locks */
253     vlc_mutex_init( &p_vout->p->picture_lock );
254     vlc_mutex_init( &p_vout->p->change_lock );
255     vlc_mutex_init( &p_vout->p->vfilter_lock );
256
257     /* Mouse coordinates */
258     var_Create( p_vout, "mouse-button-down", VLC_VAR_INTEGER );
259     var_Create( p_vout, "mouse-moved", VLC_VAR_COORDS );
260     var_Create( p_vout, "mouse-clicked", VLC_VAR_COORDS );
261     /* Mouse object (area of interest in a video filter) */
262     var_Create( p_vout, "mouse-object", VLC_VAR_BOOL );
263
264     /* Attach the new object now so we can use var inheritance below */
265     vlc_object_attach( p_vout, p_parent );
266
267     /* Initialize subpicture unit */
268     p_vout->p->p_spu = spu_Create( p_vout );
269
270     /* */
271     spu_Init( p_vout->p->p_spu );
272
273     spu_Attach( p_vout->p->p_spu, VLC_OBJECT(p_vout), true );
274
275     p_vout->p->is_late_dropped = var_InheritBool( p_vout, "drop-late-frames" );
276
277     /* Take care of some "interface/control" related initialisations */
278     vout_IntfInit( p_vout );
279
280     /* Look for the default filter configuration */
281     p_vout->p->psz_filter_chain =
282         var_CreateGetStringCommand( p_vout, "vout-filter" );
283
284     /* Apply video filter2 objects on the first vout */
285     var_Create( p_vout, "video-filter",
286                 VLC_VAR_STRING | VLC_VAR_DOINHERIT | VLC_VAR_ISCOMMAND );
287     var_AddCallback( p_vout, "video-filter", VideoFilter2Callback, NULL );
288     var_TriggerCallback( p_vout, "video-filter" );
289
290     /* Choose the video output module */
291     if( !p_vout->p->psz_filter_chain || !*p_vout->p->psz_filter_chain )
292     {
293         psz_parser = NULL;
294     }
295     else
296     {
297         psz_parser = strdup( p_vout->p->psz_filter_chain );
298         p_vout->p->title.show = false;
299     }
300
301     /* Create the vout thread */
302     char *psz_tmp = config_ChainCreate( &psz_name, &p_cfg, psz_parser );
303     free( psz_parser );
304     free( psz_tmp );
305     p_vout->p->p_cfg = p_cfg;
306
307     /* Create a few object variables for interface interaction */
308     var_Create( p_vout, "vout-filter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
309     text.psz_string = _("Filters");
310     var_Change( p_vout, "vout-filter", VLC_VAR_SETTEXT, &text, NULL );
311     var_AddCallback( p_vout, "vout-filter", FilterCallback, NULL );
312
313     /* */
314     vout_InitInterlacingSupport( p_vout, p_vout->p->displayed.is_interlaced );
315
316     if( p_vout->p->psz_filter_chain && *p_vout->p->psz_filter_chain )
317     {
318         char *psz_tmp;
319         if( asprintf( &psz_tmp, "%s,none", psz_name ) < 0 )
320             psz_tmp = strdup( "" );
321         free( psz_name );
322         psz_name = psz_tmp;
323     }
324     p_vout->p->psz_module_name = psz_name;
325
326     /* */
327     vlc_object_set_destructor( p_vout, vout_Destructor );
328
329     /* */
330     vlc_cond_init( &p_vout->p->change_wait );
331     if( vlc_clone( &p_vout->p->thread, Thread, p_vout,
332                    VLC_THREAD_PRIORITY_OUTPUT ) )
333     {
334         spu_Attach( p_vout->p->p_spu, VLC_OBJECT(p_vout), false );
335         spu_Destroy( p_vout->p->p_spu );
336         p_vout->p->p_spu = NULL;
337         vlc_object_release( p_vout );
338         return NULL;
339     }
340
341     vlc_mutex_lock( &p_vout->p->change_lock );
342     while( !p_vout->p->b_ready )
343     {   /* We are (ab)using the same condition in opposite directions for
344          * b_ready and b_done. This works because of the strict ordering. */
345         assert( !p_vout->p->b_done );
346         vlc_cond_wait( &p_vout->p->change_wait, &p_vout->p->change_lock );
347     }
348     vlc_mutex_unlock( &p_vout->p->change_lock );
349
350     if( p_vout->p->b_error )
351     {
352         msg_Err( p_vout, "video output creation failed" );
353         vout_CloseAndRelease( p_vout );
354         return NULL;
355     }
356
357     return p_vout;
358 }
359
360 /*****************************************************************************
361  * vout_Close: Close a vout created by vout_Create.
362  *****************************************************************************
363  * You HAVE to call it on vout created by vout_Create before vlc_object_release.
364  * You should NEVER call it on vout not obtained through vout_Create
365  * (like with vout_Request or vlc_object_find.)
366  * You can use vout_CloseAndRelease() as a convenience method.
367  *****************************************************************************/
368 void vout_Close( vout_thread_t *p_vout )
369 {
370     assert( p_vout );
371
372     vlc_mutex_lock( &p_vout->p->change_lock );
373     p_vout->p->b_done = true;
374     vlc_cond_signal( &p_vout->p->change_wait );
375     vlc_mutex_unlock( &p_vout->p->change_lock );
376
377     vout_snapshot_End( &p_vout->p->snapshot );
378
379     vlc_join( p_vout->p->thread, NULL );
380 }
381
382 /* */
383 static void vout_Destructor( vlc_object_t * p_this )
384 {
385     vout_thread_t *p_vout = (vout_thread_t *)p_this;
386
387     /* Make sure the vout was stopped first */
388     //assert( !p_vout->p_module );
389
390     free( p_vout->p->psz_module_name );
391
392     /* */
393     if( p_vout->p->p_spu )
394         spu_Destroy( p_vout->p->p_spu );
395
396     vout_chrono_Clean( &p_vout->p->render );
397
398     if( p_vout->p->decoder_fifo )
399         picture_fifo_Delete( p_vout->p->decoder_fifo );
400     assert( !p_vout->p->decoder_pool );
401
402     /* Destroy the locks */
403     vlc_cond_destroy( &p_vout->p->change_wait );
404     vlc_mutex_destroy( &p_vout->p->picture_lock );
405     vlc_mutex_destroy( &p_vout->p->change_lock );
406     vlc_mutex_destroy( &p_vout->p->vfilter_lock );
407     vout_control_Clean( &p_vout->p->control );
408
409     /* */
410     vout_statistic_Clean( &p_vout->p->statistic );
411
412     /* */
413     vout_snapshot_Clean( &p_vout->p->snapshot );
414
415     /* */
416     free( p_vout->p->psz_filter_chain );
417
418     config_ChainDestroy( p_vout->p->p_cfg );
419
420     free( p_vout->p );
421
422 }
423
424 /* */
425 void vout_ChangePause(vout_thread_t *vout, bool is_paused, mtime_t date)
426 {
427     vout_control_cmd_t cmd;
428     vout_control_cmd_Init(&cmd, VOUT_CONTROL_PAUSE);
429     cmd.u.pause.is_on = is_paused;
430     cmd.u.pause.date  = date;
431     vout_control_Push(&vout->p->control, &cmd);
432
433     vout_control_WaitEmpty(&vout->p->control);
434 }
435
436 void vout_GetResetStatistic( vout_thread_t *p_vout, int *pi_displayed, int *pi_lost )
437 {
438     vout_statistic_GetReset( &p_vout->p->statistic,
439                              pi_displayed, pi_lost );
440 }
441
442 void vout_Flush(vout_thread_t *vout, mtime_t date)
443 {
444     vout_control_PushTime(&vout->p->control, VOUT_CONTROL_FLUSH, date);
445     vout_control_WaitEmpty(&vout->p->control);
446 }
447
448 void vout_Reset(vout_thread_t *vout)
449 {
450     vout_control_PushVoid(&vout->p->control, VOUT_CONTROL_RESET);
451     vout_control_WaitEmpty(&vout->p->control);
452 }
453
454 bool vout_IsEmpty(vout_thread_t *vout)
455 {
456     vlc_mutex_lock(&vout->p->picture_lock);
457
458     picture_t *picture = picture_fifo_Peek(vout->p->decoder_fifo);
459     if (picture)
460         picture_Release(picture);
461
462     vlc_mutex_unlock(&vout->p->picture_lock);
463
464     return !picture;
465 }
466
467 void vout_FixLeaks( vout_thread_t *vout )
468 {
469     vlc_mutex_lock(&vout->p->picture_lock);
470
471     picture_t *picture = picture_fifo_Peek(vout->p->decoder_fifo);
472     if (!picture) {
473         picture = picture_pool_Get(vout->p->decoder_pool);
474     }
475
476     if (picture) {
477         picture_Release(picture);
478         /* Not all pictures has been displayed yet or some are
479          * free */
480         vlc_mutex_unlock(&vout->p->picture_lock);
481         return;
482     }
483
484     /* There is no reason that no pictures are available, force one
485      * from the pool, becarefull with it though */
486     msg_Err(vout, "pictures leaked, trying to workaround");
487
488     /* */
489     picture_pool_NonEmpty(vout->p->decoder_pool, false);
490
491     vlc_mutex_unlock(&vout->p->picture_lock);
492 }
493 void vout_NextPicture(vout_thread_t *vout, mtime_t *duration)
494 {
495     vout_control_cmd_t cmd;
496     vout_control_cmd_Init(&cmd, VOUT_CONTROL_STEP);
497     cmd.u.time_ptr = duration;
498
499     vout_control_Push(&vout->p->control, &cmd);
500     vout_control_WaitEmpty(&vout->p->control);
501 }
502
503 void vout_DisplayTitle(vout_thread_t *vout, const char *title)
504 {
505     assert(title);
506     vout_control_PushString(&vout->p->control, VOUT_CONTROL_OSD_TITLE, title);
507 }
508
509 spu_t *vout_GetSpu( vout_thread_t *p_vout )
510 {
511     return p_vout->p->p_spu;
512 }
513
514 /* vout_Control* are usable by anyone at anytime */
515 void vout_ControlChangeFullscreen(vout_thread_t *vout, bool fullscreen)
516 {
517     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_FULLSCREEN,
518                           fullscreen);
519 }
520 void vout_ControlChangeOnTop(vout_thread_t *vout, bool is_on_top)
521 {
522     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_ON_TOP,
523                           is_on_top);
524 }
525 void vout_ControlChangeDisplayFilled(vout_thread_t *vout, bool is_filled)
526 {
527     vout_control_PushBool(&vout->p->control, VOUT_CONTROL_DISPLAY_FILLED,
528                           is_filled);
529 }
530 void vout_ControlChangeZoom(vout_thread_t *vout, int num, int den)
531 {
532     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_ZOOM,
533                           num, den);
534 }
535 void vout_ControlChangeSampleAspectRatio(vout_thread_t *vout,
536                                          unsigned num, unsigned den)
537 {
538     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_ASPECT_RATIO,
539                           num, den);
540 }
541 void vout_ControlChangeCropRatio(vout_thread_t *vout,
542                                  unsigned num, unsigned den)
543 {
544     vout_control_PushPair(&vout->p->control, VOUT_CONTROL_CROP_RATIO,
545                           num, den);
546 }
547 void vout_ControlChangeCropWindow(vout_thread_t *vout,
548                                   int x, int y, int width, int height)
549 {
550     vout_control_cmd_t cmd;
551     vout_control_cmd_Init(&cmd, VOUT_CONTROL_CROP_WINDOW);
552     cmd.u.window.x      = x;
553     cmd.u.window.y      = y;
554     cmd.u.window.width  = width;
555     cmd.u.window.height = height;
556
557     vout_control_Push(&vout->p->control, &cmd);
558 }
559 void vout_ControlChangeCropBorder(vout_thread_t *vout,
560                                   int left, int top, int right, int bottom)
561 {
562     vout_control_cmd_t cmd;
563     vout_control_cmd_Init(&cmd, VOUT_CONTROL_CROP_BORDER);
564     cmd.u.border.left   = left;
565     cmd.u.border.top    = top;
566     cmd.u.border.right  = right;
567     cmd.u.border.bottom = bottom;
568
569     vout_control_Push(&vout->p->control, &cmd);
570 }
571
572 /*****************************************************************************
573  * InitThread: initialize video output thread
574  *****************************************************************************
575  * This function is called from Thread and performs the second step of the
576  * initialization. It returns 0 on success. Note that the thread's flag are not
577  * modified inside this function.
578  * XXX You have to enter it with change_lock taken.
579  *****************************************************************************/
580 static int ThreadInit(vout_thread_t *vout)
581 {
582     /* Initialize output method, it allocates direct buffers for us */
583     if (vout_InitWrapper(vout))
584         return VLC_EGENERIC;
585     assert(vout->p->decoder_pool);
586
587     vout->p->displayed.decoded = NULL;
588
589     /* print some usefull debug info about different vout formats
590      */
591     PrintVideoFormat(vout, "pic render", &vout->p->original);
592     return VLC_SUCCESS;
593 }
594
595 static int ThreadDisplayPicture(vout_thread_t *vout,
596                                 bool now, mtime_t *deadline)
597 {
598     vout_display_t *vd = vout->p->display.vd;
599     int displayed_count = 0;
600     int lost_count = 0;
601
602     for (;;) {
603         const mtime_t date = mdate();
604         const bool is_paused = vout->p->pause.is_on;
605         bool redisplay = is_paused && !now && vout->p->displayed.decoded;
606         bool is_forced;
607
608         /* FIXME/XXX we must redisplay the last decoded picture (because
609          * of potential vout updated, or filters update or SPU update)
610          * For now a high update period is needed but it coulmd be removed
611          * if and only if:
612          * - vout module emits events from theselves.
613          * - *and* SPU is modified to emit an event or a deadline when needed.
614          *
615          * So it will be done latter.
616          */
617         if (!redisplay) {
618             picture_t *peek = picture_fifo_Peek(vout->p->decoder_fifo);
619             if (peek) {
620                 is_forced = peek->b_force || is_paused || now;
621                 *deadline = (is_forced ? date : peek->date) - vout_chrono_GetHigh(&vout->p->render);
622                 picture_Release(peek);
623             } else {
624                 redisplay = true;
625             }
626         }
627         if (redisplay) {
628              /* FIXME a better way for this delay is needed */
629             const mtime_t date_update = vout->p->displayed.date + VOUT_REDISPLAY_DELAY;
630             if (date_update > date || !vout->p->displayed.decoded) {
631                 *deadline = vout->p->displayed.decoded ? date_update : VLC_TS_INVALID;
632                 break;
633             }
634             /* */
635             is_forced = true;
636             *deadline = date - vout_chrono_GetHigh(&vout->p->render);
637         }
638         if (*deadline > VOUT_MWAIT_TOLERANCE)
639             *deadline -= VOUT_MWAIT_TOLERANCE;
640
641         /* If we are too early and can wait, do it */
642         if (date < *deadline && !now)
643             break;
644
645         picture_t *decoded;
646         if (redisplay) {
647             decoded = vout->p->displayed.decoded;
648             vout->p->displayed.decoded = NULL;
649         } else {
650             decoded = picture_fifo_Pop(vout->p->decoder_fifo);
651             assert(decoded);
652             if (!is_forced && !vout->p->is_late_dropped) {
653                 const mtime_t predicted = date + vout_chrono_GetLow(&vout->p->render);
654                 const mtime_t late = predicted - decoded->date;
655                 if (late > 0) {
656                     msg_Dbg(vout, "picture might be displayed late (missing %d ms)", (int)(late/1000));
657                     if (late > VOUT_DISPLAY_LATE_THRESHOLD) {
658                         msg_Warn(vout, "rejected picture because of render time");
659                         /* TODO */
660                         picture_Release(decoded);
661                         lost_count++;
662                         break;
663                     }
664                 }
665             }
666
667             vout->p->displayed.is_interlaced = !decoded->b_progressive;
668             vout->p->displayed.qtype         = decoded->i_qtype;
669         }
670         vout->p->displayed.timestamp = decoded->date;
671
672         /* */
673         if (vout->p->displayed.decoded)
674             picture_Release(vout->p->displayed.decoded);
675         picture_Hold(decoded);
676         vout->p->displayed.decoded = decoded;
677
678         /* */
679         vout_chrono_Start(&vout->p->render);
680
681         picture_t *filtered = NULL;
682         if (decoded) {
683             vlc_mutex_lock(&vout->p->vfilter_lock);
684             filtered = filter_chain_VideoFilter(vout->p->vfilter_chain, decoded);
685             //assert(filtered == decoded); // TODO implement
686             vlc_mutex_unlock(&vout->p->vfilter_lock);
687             if (!filtered)
688                 continue;
689         }
690
691         /*
692          * Check for subpictures to display
693          */
694         const bool do_snapshot = vout_snapshot_IsRequested(&vout->p->snapshot);
695         mtime_t spu_render_time = is_forced ? mdate() : filtered->date;
696         if (vout->p->pause.is_on)
697             spu_render_time = vout->p->pause.date;
698         else
699             spu_render_time = filtered->date > 1 ? filtered->date : mdate();
700
701         subpicture_t *subpic = spu_SortSubpictures(vout->p->p_spu,
702                                                    spu_render_time,
703                                                    do_snapshot);
704         /*
705          * Perform rendering
706          *
707          * We have to:
708          * - be sure to end up with a direct buffer.
709          * - blend subtitles, and in a fast access buffer
710          */
711         picture_t *direct = NULL;
712         if (filtered &&
713             (vout->p->decoder_pool != vout->p->display_pool || subpic)) {
714             picture_t *render;
715             if (vout->p->is_decoder_pool_slow)
716                 render = picture_NewFromFormat(&vd->source);
717             else if (vout->p->decoder_pool != vout->p->display_pool)
718                 render = picture_pool_Get(vout->p->display_pool);
719             else
720                 render = picture_pool_Get(vout->p->private_pool);
721
722             if (render) {
723                 picture_Copy(render, filtered);
724
725                 spu_RenderSubpictures(vout->p->p_spu,
726                                       render, &vd->source,
727                                       subpic, &vd->source, spu_render_time);
728             }
729             if (vout->p->is_decoder_pool_slow) {
730                 direct = picture_pool_Get(vout->p->display_pool);
731                 if (direct)
732                     picture_Copy(direct, render);
733                 picture_Release(render);
734
735             } else {
736                 direct = render;
737             }
738             picture_Release(filtered);
739             filtered = NULL;
740         } else {
741             direct = filtered;
742         }
743
744         /*
745          * Take a snapshot if requested
746          */
747         if (direct && do_snapshot)
748             vout_snapshot_Set(&vout->p->snapshot, &vd->source, direct);
749
750         /* Render the direct buffer returned by vout_RenderPicture */
751         if (direct) {
752             vout_RenderWrapper(vout, direct);
753
754             vout_chrono_Stop(&vout->p->render);
755 #if 0
756             {
757             static int i = 0;
758             if (((i++)%10) == 0)
759                 msg_Info(vout, "render: avg %d ms var %d ms",
760                          (int)(vout->p->render.avg/1000), (int)(vout->p->render.var/1000));
761             }
762 #endif
763         }
764
765         /* Wait the real date (for rendering jitter) */
766         if (!is_forced)
767             mwait(decoded->date);
768
769         /* Display the direct buffer returned by vout_RenderPicture */
770         vout->p->displayed.date = mdate();
771         if (direct)
772             vout_DisplayWrapper(vout, direct);
773
774         displayed_count++;
775         break;
776     }
777
778     vout_statistic_Update(&vout->p->statistic, displayed_count, lost_count);
779     if (displayed_count <= 0)
780         return VLC_EGENERIC;
781     return VLC_SUCCESS;
782 }
783
784 static int ThreadManage(vout_thread_t *vout,
785                         mtime_t *deadline,
786                         vout_interlacing_support_t *interlacing,
787                         vout_postprocessing_support_t *postprocessing)
788 {
789     vlc_mutex_lock(&vout->p->picture_lock);
790
791     *deadline = VLC_TS_INVALID;
792     ThreadDisplayPicture(vout, false, deadline);
793
794     const int  picture_qtype      = vout->p->displayed.qtype;
795     const bool picture_interlaced = vout->p->displayed.is_interlaced;
796
797     vlc_mutex_unlock(&vout->p->picture_lock);
798
799     /* Post processing */
800     vout_SetPostProcessingState(vout, postprocessing, picture_qtype);
801
802     /* Deinterlacing */
803     vout_SetInterlacingState(vout, interlacing, picture_interlaced);
804
805     if (vout_ManageWrapper(vout)) {
806         /* A fatal error occurred, and the thread must terminate
807          * immediately, without displaying anything - setting b_error to 1
808          * causes the immediate end of the main while() loop. */
809         // FIXME pf_end
810         return VLC_EGENERIC;
811     }
812     return VLC_SUCCESS;
813 }
814
815 static void ThreadDisplayOsdTitle(vout_thread_t *vout, const char *string)
816 {
817     if (!vout->p->title.show)
818         return;
819
820     vlc_assert_locked(&vout->p->change_lock);
821
822     vout_OSDText(vout, SPU_DEFAULT_CHANNEL,
823                  vout->p->title.position, INT64_C(1000) * vout->p->title.timeout,
824                  string);
825 }
826
827 static void ThreadChangeFilters(vout_thread_t *vout, const char *filters)
828 {
829     es_format_t fmt;
830     es_format_Init(&fmt, VIDEO_ES, vout->p->original.i_chroma);
831     fmt.video = vout->p->original;
832
833     vlc_mutex_lock(&vout->p->vfilter_lock);
834
835     filter_chain_Reset(vout->p->vfilter_chain, &fmt, &fmt);
836     if (filter_chain_AppendFromString(vout->p->vfilter_chain,
837                                       filters) < 0)
838         msg_Err(vout, "Video filter chain creation failed");
839
840     vlc_mutex_unlock(&vout->p->vfilter_lock);
841 }
842
843 static void ThreadChangePause(vout_thread_t *vout, bool is_paused, mtime_t date)
844 {
845     vlc_assert_locked(&vout->p->change_lock);
846     assert(!vout->p->pause.is_on || !is_paused);
847
848     if (vout->p->pause.is_on) {
849         const mtime_t duration = date - vout->p->pause.date;
850
851         if (vout->p->step.timestamp > VLC_TS_INVALID)
852             vout->p->step.timestamp += duration;
853         if (vout->p->step.last > VLC_TS_INVALID)
854             vout->p->step.last += duration;
855         picture_fifo_OffsetDate(vout->p->decoder_fifo, duration);
856         if (vout->p->displayed.decoded)
857             vout->p->displayed.decoded->date += duration;
858
859         spu_OffsetSubtitleDate(vout->p->p_spu, duration);
860     } else {
861         vout->p->step.timestamp = VLC_TS_INVALID;
862         vout->p->step.last      = VLC_TS_INVALID;
863     }
864     vout->p->pause.is_on = is_paused;
865     vout->p->pause.date  = date;
866 }
867
868 static void ThreadFlush(vout_thread_t *vout, bool below, mtime_t date)
869 {
870     vout->p->step.timestamp = VLC_TS_INVALID;
871     vout->p->step.last      = VLC_TS_INVALID;
872
873     picture_t *last = vout->p->displayed.decoded;
874     if (last) {
875         if (( below && last->date <= date) ||
876             (!below && last->date >= date)) {
877             picture_Release(last);
878
879             vout->p->displayed.decoded   = NULL;
880             vout->p->displayed.date      = VLC_TS_INVALID;
881             vout->p->displayed.timestamp = VLC_TS_INVALID;
882         }
883     }
884     picture_fifo_Flush(vout->p->decoder_fifo, date, below);
885 }
886
887 static void ThreadReset(vout_thread_t *vout)
888 {
889     ThreadFlush(vout, true, INT64_MAX);
890     if (vout->p->decoder_pool)
891         picture_pool_NonEmpty(vout->p->decoder_pool, true);
892     vout->p->pause.is_on = false;
893     vout->p->pause.date  = mdate();
894 }
895
896 static void ThreadStep(vout_thread_t *vout, mtime_t *duration)
897 {
898     *duration = 0;
899
900     if (vout->p->step.last <= VLC_TS_INVALID)
901         vout->p->step.last = vout->p->displayed.timestamp;
902
903     mtime_t dummy;
904     if (ThreadDisplayPicture(vout, true, &dummy))
905         return;
906
907     vout->p->step.timestamp = vout->p->displayed.timestamp;
908
909     if (vout->p->step.last > VLC_TS_INVALID &&
910         vout->p->step.timestamp > vout->p->step.last) {
911         *duration = vout->p->step.timestamp - vout->p->step.last;
912         vout->p->step.last = vout->p->step.timestamp;
913         /* TODO advance subpicture by the duration ... */
914     }
915 }
916
917 static void ThreadChangeFullscreen(vout_thread_t *vout, bool fullscreen)
918 {
919     /* FIXME not sure setting "fullscreen" is good ... */
920     var_SetBool(vout, "fullscreen", fullscreen);
921     vout_SetDisplayFullscreen(vout->p->display.vd, fullscreen);
922 }
923
924 static void ThreadChangeOnTop(vout_thread_t *vout, bool is_on_top)
925 {
926     vout_SetWindowState(vout->p->display.vd,
927                         is_on_top ? VOUT_WINDOW_STATE_ABOVE :
928                                     VOUT_WINDOW_STATE_NORMAL);
929 }
930
931 static void ThreadChangeDisplayFilled(vout_thread_t *vout, bool is_filled)
932 {
933     vout_SetDisplayFilled(vout->p->display.vd, is_filled);
934 }
935
936 static void ThreadChangeZoom(vout_thread_t *vout, int num, int den)
937 {
938     if (num * 10 < den) {
939         num = den;
940         den *= 10;
941     } else if (num > den * 10) {
942         num = den * 10;
943     }
944
945     vout_SetDisplayZoom(vout->p->display.vd, num, den);
946 }
947
948 static void ThreadChangeAspectRatio(vout_thread_t *vout,
949                                     unsigned num, unsigned den)
950 {
951     const video_format_t *source = &vout->p->original;
952
953     if (num > 0 && den > 0) {
954         num *= source->i_visible_height;
955         den *= source->i_visible_width;
956         vlc_ureduce(&num, &den, num, den, 0);
957     }
958     vout_SetDisplayAspect(vout->p->display.vd, num, den);
959 }
960
961
962 static void ThreadExecuteCropWindow(vout_thread_t *vout,
963                                     unsigned crop_num, unsigned crop_den,
964                                     unsigned x, unsigned y,
965                                     unsigned width, unsigned height)
966 {
967     const video_format_t *source = &vout->p->original;
968
969     vout_SetDisplayCrop(vout->p->display.vd,
970                         crop_num, crop_den,
971                         source->i_x_offset + x,
972                         source->i_y_offset + y,
973                         width, height);
974 }
975 static void ThreadExecuteCropBorder(vout_thread_t *vout,
976                                     unsigned left, unsigned top,
977                                     unsigned right, unsigned bottom)
978 {
979     const video_format_t *source = &vout->p->original;
980     ThreadExecuteCropWindow(vout, 0, 0,
981                             left,
982                             top,
983                             /* At worst, it becomes < 0 (but unsigned) and will be rejected */
984                             source->i_visible_width  - (left + right),
985                             source->i_visible_height - (top  + bottom));
986 }
987
988 static void ThreadExecuteCropRatio(vout_thread_t *vout,
989                                    unsigned num, unsigned den)
990 {
991     const video_format_t *source = &vout->p->original;
992
993     int x, y;
994     int width, height;
995     if (num <= 0 || den <= 0) {
996         num = 0;
997         den = 0;
998         x   = 0;
999         y   = 0;
1000         width  = source->i_visible_width;
1001         height = source->i_visible_height;
1002     } else {
1003         unsigned scaled_width  = (uint64_t)source->i_visible_height * num * source->i_sar_den / den / source->i_sar_num;
1004         unsigned scaled_height = (uint64_t)source->i_visible_width  * den * source->i_sar_num / num / source->i_sar_den;
1005
1006         if (scaled_width < source->i_visible_width) {
1007             x      = (source->i_visible_width - scaled_width) / 2;
1008             y      = 0;
1009             width  = scaled_width;
1010             height = source->i_visible_height;
1011         } else {
1012             x      = 0;
1013             y      = (source->i_visible_height - scaled_height) / 2;
1014             width  = source->i_visible_width;
1015             height = scaled_height;
1016         }
1017     }
1018     ThreadExecuteCropWindow(vout, num, den, x, y, width, height);
1019 }
1020
1021 static void ThreadClean(vout_thread_t *vout)
1022 {
1023     /* Destroy translation tables */
1024     if (!vout->p->b_error) {
1025         ThreadFlush(vout, true, INT64_MAX);
1026         vout_EndWrapper(vout);
1027     }
1028 }
1029
1030 /*****************************************************************************
1031  * Thread: video output thread
1032  *****************************************************************************
1033  * Video output thread. This function does only returns when the thread is
1034  * terminated. It handles the pictures arriving in the video heap and the
1035  * display device events.
1036  *****************************************************************************/
1037 static void *Thread(void *object)
1038 {
1039     vout_thread_t *vout = object;
1040     bool          has_wrapper;
1041
1042     /*
1043      * Initialize thread
1044      */
1045     has_wrapper = !vout_OpenWrapper(vout, vout->p->psz_module_name);
1046
1047     vlc_mutex_lock(&vout->p->change_lock);
1048
1049     if (has_wrapper)
1050         vout->p->b_error = ThreadInit(vout);
1051     else
1052         vout->p->b_error = true;
1053
1054     /* signal the creation of the vout */
1055     vout->p->b_ready = true;
1056     vlc_cond_signal(&vout->p->change_wait);
1057
1058     if (vout->p->b_error)
1059         goto exit_thread;
1060
1061     /* */
1062     vout_interlacing_support_t interlacing = {
1063         .is_interlaced = false,
1064         .date = mdate(),
1065     };
1066     vout_postprocessing_support_t postprocessing = {
1067         .qtype = QTYPE_NONE,
1068     };
1069
1070     /*
1071      * Main loop - it is not executed if an error occurred during
1072      * initialization
1073      */
1074     mtime_t deadline = VLC_TS_INVALID;
1075     while (!vout->p->b_done && !vout->p->b_error) {
1076         vout_control_cmd_t cmd;
1077
1078         vlc_mutex_unlock(&vout->p->change_lock);
1079         /* FIXME remove thoses ugly timeouts
1080          */
1081         while (!vout_control_Pop(&vout->p->control, &cmd, deadline, 100000)) {
1082             /* TODO remove the lock when possible (ie when
1083              * vout->p->fmt_* are not protected by it anymore) */
1084             vlc_mutex_lock(&vout->p->change_lock);
1085             switch(cmd.type) {
1086             case VOUT_CONTROL_OSD_TITLE:
1087                 ThreadDisplayOsdTitle(vout, cmd.u.string);
1088                 break;
1089             case VOUT_CONTROL_CHANGE_FILTERS:
1090                 ThreadChangeFilters(vout, cmd.u.string);
1091                 break;
1092             case VOUT_CONTROL_PAUSE:
1093                 ThreadChangePause(vout, cmd.u.pause.is_on, cmd.u.pause.date);
1094                 break;
1095             case VOUT_CONTROL_FLUSH:
1096                 ThreadFlush(vout, false, cmd.u.time);
1097                 break;
1098             case VOUT_CONTROL_RESET:
1099                 ThreadReset(vout);
1100                 break;
1101             case VOUT_CONTROL_STEP:
1102                 ThreadStep(vout, cmd.u.time_ptr);
1103                 break;
1104             case VOUT_CONTROL_FULLSCREEN:
1105                 ThreadChangeFullscreen(vout, cmd.u.boolean);
1106                 break;
1107             case VOUT_CONTROL_ON_TOP:
1108                 ThreadChangeOnTop(vout, cmd.u.boolean);
1109                 break;
1110             case VOUT_CONTROL_DISPLAY_FILLED:
1111                 ThreadChangeDisplayFilled(vout, cmd.u.boolean);
1112                 break;
1113             case VOUT_CONTROL_ZOOM:
1114                 ThreadChangeZoom(vout, cmd.u.pair.a, cmd.u.pair.b);
1115                 break;
1116             case VOUT_CONTROL_ASPECT_RATIO:
1117                 ThreadChangeAspectRatio(vout, cmd.u.pair.a, cmd.u.pair.b);
1118                 break;
1119            case VOUT_CONTROL_CROP_RATIO:
1120                 ThreadExecuteCropRatio(vout, cmd.u.pair.a, cmd.u.pair.b);
1121                 break;
1122             case VOUT_CONTROL_CROP_WINDOW:
1123                 ThreadExecuteCropWindow(vout, 0, 0,
1124                                         cmd.u.window.x, cmd.u.window.y,
1125                                         cmd.u.window.width, cmd.u.window.height);
1126                 break;
1127             case VOUT_CONTROL_CROP_BORDER:
1128                 ThreadExecuteCropBorder(vout,
1129                                         cmd.u.border.left,  cmd.u.border.top,
1130                                         cmd.u.border.right, cmd.u.border.bottom);
1131                 break;
1132             default:
1133                 break;
1134             }
1135             vlc_mutex_unlock(&vout->p->change_lock);
1136             vout_control_cmd_Clean(&cmd);
1137         }
1138         vlc_mutex_lock(&vout->p->change_lock);
1139
1140         /* */
1141         if (ThreadManage(vout, &deadline,
1142                          &interlacing, &postprocessing)) {
1143             vout->p->b_error = true;
1144             break;
1145         }
1146     }
1147
1148     /*
1149      * Error loop - wait until the thread destruction is requested
1150      *
1151      * XXX I wonder if we should periodically clean the decoder_fifo
1152      * or have a way to prevent it filling up.
1153      */
1154     while (vout->p->b_error && !vout->p->b_done)
1155         vlc_cond_wait(&vout->p->change_wait, &vout->p->change_lock);
1156
1157     /* Clean thread */
1158     ThreadClean(vout);
1159
1160 exit_thread:
1161     /* Detach subpicture unit from both input and vout */
1162     spu_Attach(vout->p->p_spu, VLC_OBJECT(vout), false);
1163     vlc_object_detach(vout->p->p_spu);
1164
1165     vlc_mutex_unlock(&vout->p->change_lock);
1166
1167     if (has_wrapper)
1168         vout_CloseWrapper(vout);
1169     vout_control_Dead(&vout->p->control);
1170
1171     /* Destroy the video filters2 */
1172     filter_chain_Delete(vout->p->vfilter_chain);
1173
1174     return NULL;
1175 }
1176
1177 /*****************************************************************************
1178  * object variables callbacks: a bunch of object variables are used by the
1179  * interfaces to interact with the vout.
1180  *****************************************************************************/
1181 static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd,
1182                        vlc_value_t oldval, vlc_value_t newval, void *p_data )
1183 {
1184     vout_thread_t *p_vout = (vout_thread_t *)p_this;
1185     input_thread_t *p_input;
1186     (void)psz_cmd; (void)oldval; (void)p_data;
1187
1188     p_input = (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
1189                                                  FIND_PARENT );
1190     if (!p_input)
1191     {
1192         msg_Err( p_vout, "Input not found" );
1193         return VLC_EGENERIC;
1194     }
1195
1196     /* Modify input as well because the vout might have to be restarted */
1197     var_Create( p_input, "vout-filter", VLC_VAR_STRING );
1198     var_SetString( p_input, "vout-filter", newval.psz_string );
1199
1200     /* Now restart current video stream */
1201     input_Control( p_input, INPUT_RESTART_ES, -VIDEO_ES );
1202     vlc_object_release( p_input );
1203
1204     return VLC_SUCCESS;
1205 }
1206
1207 /*****************************************************************************
1208  * Video Filter2 stuff
1209  *****************************************************************************/
1210 static int VideoFilter2Callback(vlc_object_t *object, char const *cmd,
1211                                 vlc_value_t oldval, vlc_value_t newval,
1212                                 void *data)
1213 {
1214     vout_thread_t *vout = (vout_thread_t *)object;
1215     (void)cmd; (void)oldval; (void)data;
1216
1217     vout_control_PushString(&vout->p->control, VOUT_CONTROL_CHANGE_FILTERS,
1218                             newval.psz_string);
1219     return VLC_SUCCESS;
1220 }
1221
1222 /* */
1223 static void PrintVideoFormat(vout_thread_t *vout,
1224                              const char *description,
1225                              const video_format_t *fmt)
1226 {
1227     msg_Dbg(vout, "%s sz %ix%i, of (%i,%i), vsz %ix%i, 4cc %4.4s, sar %i:%i, msk r0x%x g0x%x b0x%x",
1228             description,
1229             fmt->i_width, fmt->i_height, fmt->i_x_offset, fmt->i_y_offset,
1230             fmt->i_visible_width, fmt->i_visible_height,
1231             (char*)&fmt->i_chroma,
1232             fmt->i_sar_num, fmt->i_sar_den,
1233             fmt->i_rmask, fmt->i_gmask, fmt->i_bmask);
1234 }
1235