1 /*****************************************************************************
2 * video_output.c : video output thread
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
11 * Authors: Vincent Seguin <seguin@via.ecp.fr>
12 * Gildas Bazin <gbazin@videolan.org>
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with this program; if not, write to the Free Software
26 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
27 *****************************************************************************/
29 /*****************************************************************************
31 *****************************************************************************/
36 #include <vlc_common.h>
38 #include <stdlib.h> /* free() */
42 #ifdef HAVE_SYS_TIMES_H
43 # include <sys/times.h>
48 #include <vlc_filter.h>
52 #if defined( __APPLE__ )
53 /* Include darwin_specific.h here if needed */
56 /** FIXME This is quite ugly but needed while we don't have counters
58 //#include "input/input_internal.h"
61 #include <vlc_input.h>
62 #include "vout_pictures.h"
63 #include "vout_internal.h"
65 /*****************************************************************************
67 *****************************************************************************/
68 static int InitThread ( vout_thread_t * );
69 static void* RunThread ( vlc_object_t * );
70 static void ErrorThread ( vout_thread_t * );
71 static void CleanThread ( vout_thread_t * );
72 static void EndThread ( vout_thread_t * );
74 static void AspectRatio ( int, int *, int * );
76 static void VideoFormatImportRgb( video_format_t *, const picture_heap_t * );
77 static void PictureHeapFixRgb( picture_heap_t * );
79 static void vout_Destructor ( vlc_object_t * p_this );
81 /* Object variables callbacks */
82 static int DeinterlaceCallback( vlc_object_t *, char const *,
83 vlc_value_t, vlc_value_t, void * );
84 static int FilterCallback( vlc_object_t *, char const *,
85 vlc_value_t, vlc_value_t, void * );
86 static int VideoFilter2Callback( vlc_object_t *, char const *,
87 vlc_value_t, vlc_value_t, void * );
89 /* From vout_intf.c */
90 int vout_Snapshot( vout_thread_t *, picture_t * );
92 /* Display media title in OSD */
93 static void DisplayTitleOnOSD( vout_thread_t *p_vout );
96 static void DropPicture( vout_thread_t *p_vout, picture_t *p_picture );
98 /*****************************************************************************
99 * Video Filter2 functions
100 *****************************************************************************/
101 static picture_t *video_new_buffer_filter( filter_t *p_filter )
103 vout_thread_t *p_vout = (vout_thread_t*)p_filter->p_owner;
104 picture_t *p_picture = vout_CreatePicture( p_vout, 0, 0, 0 );
106 p_picture->i_status = READY_PICTURE;
111 static void video_del_buffer_filter( filter_t *p_filter, picture_t *p_pic )
113 vout_thread_t *p_vout = (vout_thread_t*)p_filter->p_owner;
115 DropPicture( p_vout, p_pic );
118 static int video_filter_buffer_allocation_init( filter_t *p_filter, void *p_data )
120 p_filter->pf_vout_buffer_new = video_new_buffer_filter;
121 p_filter->pf_vout_buffer_del = video_del_buffer_filter;
122 p_filter->p_owner = p_data; /* p_vout */
126 /*****************************************************************************
127 * vout_Request: find a video output thread, create one, or destroy one.
128 *****************************************************************************
129 * This function looks for a video output thread matching the current
130 * properties. If not found, it spawns a new one.
131 *****************************************************************************/
132 vout_thread_t *__vout_Request( vlc_object_t *p_this, vout_thread_t *p_vout,
133 video_format_t *p_fmt )
135 const bool b_vout_provided = p_vout != NULL;
138 /* Video output is no longer used.
139 * TODO: support for reusing video outputs with proper _thread-safe_
140 * reference handling. */
142 vout_CloseAndRelease( p_vout );
146 /* If a video output was provided, lock it, otherwise look for one. */
149 vlc_object_hold( p_vout );
152 /* TODO: find a suitable unused video output */
154 /* If we now have a video output, check it has the right properties */
157 char *psz_filter_chain;
160 vlc_mutex_lock( &p_vout->change_lock );
162 /* We don't directly check for the "vout-filter" variable for obvious
163 * performance reasons. */
164 if( p_vout->p->b_filter_change )
166 var_Get( p_vout, "vout-filter", &val );
167 psz_filter_chain = val.psz_string;
169 if( psz_filter_chain && !*psz_filter_chain )
171 free( psz_filter_chain );
172 psz_filter_chain = NULL;
174 if( p_vout->p->psz_filter_chain && !*p_vout->p->psz_filter_chain )
176 free( p_vout->p->psz_filter_chain );
177 p_vout->p->psz_filter_chain = NULL;
180 if( !psz_filter_chain && !p_vout->p->psz_filter_chain )
182 p_vout->p->b_filter_change = false;
185 free( psz_filter_chain );
188 if( p_vout->fmt_render.i_chroma != p_fmt->i_chroma ||
189 p_vout->fmt_render.i_width != p_fmt->i_width ||
190 p_vout->fmt_render.i_height != p_fmt->i_height ||
191 p_vout->p->b_filter_change )
193 vlc_mutex_unlock( &p_vout->change_lock );
195 /* We are not interested in this format, close this vout */
196 vout_CloseAndRelease( p_vout );
197 vlc_object_release( p_vout );
202 /* This video output is cool! Hijack it. */
203 if( p_vout->fmt_render.i_aspect != p_fmt->i_aspect )
205 /* Correct aspect ratio on change
206 * FIXME factorize this code with other aspect ration related code */
207 unsigned int i_sar_num;
208 unsigned int i_sar_den;
209 unsigned int i_aspect;
211 i_aspect = p_fmt->i_aspect;
212 vlc_ureduce( &i_sar_num, &i_sar_den,
213 p_fmt->i_sar_num, p_fmt->i_sar_den, 50000 );
215 /* What's that, it does not seems to be used correcly everywhere
216 * beside the previous p_vout->fmt_render.i_aspect != p_fmt->i_aspect
217 * should be fixed to use it too then */
218 if( p_vout->i_par_num > 0 && p_vout->i_par_den > 0 )
220 i_sar_num *= p_vout->i_par_den;
221 i_sar_den *= p_vout->i_par_num;
222 i_aspect = i_aspect * p_vout->i_par_den / p_vout->i_par_num;
226 if( i_sar_num > 0 && i_sar_den > 0 && i_aspect > 0 )
228 p_vout->fmt_in.i_sar_num = i_sar_num;
229 p_vout->fmt_in.i_sar_den = i_sar_den;
230 p_vout->fmt_in.i_aspect = i_aspect;
232 p_vout->fmt_render.i_sar_num = i_sar_num;
233 p_vout->fmt_render.i_sar_den = i_sar_den;
234 p_vout->fmt_render.i_aspect = i_aspect;
236 p_vout->render.i_aspect = i_aspect;
238 p_vout->i_changes |= VOUT_ASPECT_CHANGE;
242 vlc_mutex_unlock( &p_vout->change_lock );
244 vlc_object_release( p_vout );
249 msg_Dbg( p_this, "reusing provided vout" );
251 spu_Attach( p_vout->p_spu, p_this, true );
253 vlc_object_detach( p_vout );
254 vlc_object_attach( p_vout, p_this );
256 /* Display title if we are not using the vout given to vout_Request.
257 * XXX for now b_vout_provided is always true at this stage */
258 if( p_vout->p->b_title_show && !b_vout_provided )
259 DisplayTitleOnOSD( p_vout );
265 msg_Dbg( p_this, "no usable vout present, spawning one" );
267 p_vout = vout_Create( p_this, p_fmt );
273 /*****************************************************************************
274 * vout_Create: creates a new video output thread
275 *****************************************************************************
276 * This function creates a new video output thread, and returns a pointer
277 * to its description. On error, it returns NULL.
278 *****************************************************************************/
279 vout_thread_t * __vout_Create( vlc_object_t *p_parent, video_format_t *p_fmt )
281 vout_thread_t * p_vout; /* thread descriptor */
282 int i_index; /* loop variable */
283 vlc_value_t val, text;
285 unsigned int i_width = p_fmt->i_width;
286 unsigned int i_height = p_fmt->i_height;
287 vlc_fourcc_t i_chroma = p_fmt->i_chroma;
288 unsigned int i_aspect = p_fmt->i_aspect;
290 config_chain_t *p_cfg;
294 if( i_width <= 0 || i_height <= 0 || i_aspect <= 0 )
297 vlc_ureduce( &p_fmt->i_sar_num, &p_fmt->i_sar_den,
298 p_fmt->i_sar_num, p_fmt->i_sar_den, 50000 );
299 if( p_fmt->i_sar_num <= 0 || p_fmt->i_sar_den <= 0 )
302 /* Allocate descriptor */
303 static const char typename[] = "video output";
304 p_vout = vlc_custom_create( p_parent, sizeof( *p_vout ), VLC_OBJECT_VOUT,
310 p_vout->p = calloc( 1, sizeof(*p_vout->p) );
313 vlc_object_release( p_vout );
317 /* Initialize pictures - translation tables and functions
318 * will be initialized later in InitThread */
319 for( i_index = 0; i_index < 2 * VOUT_MAX_PICTURES + 1; i_index++)
321 p_vout->p_picture[i_index].pf_lock = NULL;
322 p_vout->p_picture[i_index].pf_unlock = NULL;
323 p_vout->p_picture[i_index].i_status = FREE_PICTURE;
324 p_vout->p_picture[i_index].i_type = EMPTY_PICTURE;
325 p_vout->p_picture[i_index].b_slow = 0;
328 /* No images in the heap */
329 p_vout->i_heap_size = 0;
331 /* Initialize the rendering heap */
332 I_RENDERPICTURES = 0;
334 p_vout->fmt_render = *p_fmt; /* FIXME palette */
335 p_vout->fmt_in = *p_fmt; /* FIXME palette */
337 p_vout->render.i_width = i_width;
338 p_vout->render.i_height = i_height;
339 p_vout->render.i_chroma = i_chroma;
340 p_vout->render.i_aspect = i_aspect;
342 p_vout->render.i_rmask = p_fmt->i_rmask;
343 p_vout->render.i_gmask = p_fmt->i_gmask;
344 p_vout->render.i_bmask = p_fmt->i_bmask;
346 p_vout->render.i_last_used_pic = -1;
347 p_vout->render.b_allow_modify_pics = 1;
349 /* Zero the output heap */
350 I_OUTPUTPICTURES = 0;
351 p_vout->output.i_width = 0;
352 p_vout->output.i_height = 0;
353 p_vout->output.i_chroma = 0;
354 p_vout->output.i_aspect = 0;
356 p_vout->output.i_rmask = 0;
357 p_vout->output.i_gmask = 0;
358 p_vout->output.i_bmask = 0;
360 /* Initialize misc stuff */
361 p_vout->i_changes = 0;
363 p_vout->b_fullscreen = 0;
364 p_vout->i_alignment = 0;
365 p_vout->p->render_time = 10;
366 p_vout->p->c_fps_samples = 0;
367 p_vout->p->i_picture_lost = 0;
368 p_vout->p->i_picture_displayed = 0;
369 p_vout->p->b_filter_change = 0;
370 p_vout->p->b_paused = false;
371 p_vout->p->i_pause_date = 0;
372 p_vout->pf_control = NULL;
373 p_vout->p_window = NULL;
374 p_vout->p->i_par_num =
375 p_vout->p->i_par_den = 1;
377 /* Initialize locks */
378 vlc_mutex_init_recursive( &p_vout->picture_lock );
379 vlc_mutex_init( &p_vout->change_lock );
380 vlc_mutex_init( &p_vout->p->vfilter_lock );
382 /* Mouse coordinates */
383 var_Create( p_vout, "mouse-x", VLC_VAR_INTEGER );
384 var_Create( p_vout, "mouse-y", VLC_VAR_INTEGER );
385 var_Create( p_vout, "mouse-button-down", VLC_VAR_INTEGER );
386 var_Create( p_vout, "mouse-moved", VLC_VAR_BOOL );
387 var_Create( p_vout, "mouse-clicked", VLC_VAR_INTEGER );
389 /* Initialize subpicture unit */
390 p_vout->p_spu = spu_Create( p_vout );
391 spu_Attach( p_vout->p_spu, p_parent, true );
393 /* Attach the new object now so we can use var inheritance below */
394 vlc_object_attach( p_vout, p_parent );
396 spu_Init( p_vout->p_spu );
398 /* Take care of some "interface/control" related initialisations */
399 vout_IntfInit( p_vout );
401 /* If the parent is not a VOUT object, that means we are at the start of
402 * the video output pipe */
403 if( p_parent->i_object_type != VLC_OBJECT_VOUT )
405 /* Look for the default filter configuration */
406 p_vout->p->psz_filter_chain =
407 var_CreateGetStringCommand( p_vout, "vout-filter" );
409 /* Apply video filter2 objects on the first vout */
411 var_CreateGetStringCommand( p_vout, "video-filter" );
415 /* continue the parent's filter chain */
418 /* Ugly hack to jump to our configuration chain */
419 p_vout->p->psz_filter_chain
420 = ((vout_thread_t *)p_parent)->p->psz_filter_chain;
421 p_vout->p->psz_filter_chain
422 = config_ChainCreate( &psz_tmp, &p_cfg, p_vout->p->psz_filter_chain );
423 config_ChainDestroy( p_cfg );
426 /* Create a video filter2 var ... but don't inherit values */
427 var_Create( p_vout, "video-filter",
428 VLC_VAR_STRING | VLC_VAR_ISCOMMAND );
429 p_vout->p->psz_vf2 = var_GetString( p_vout, "video-filter" );
432 var_AddCallback( p_vout, "video-filter", VideoFilter2Callback, NULL );
433 p_vout->p->p_vf2_chain = filter_chain_New( p_vout, "video filter2",
434 false, video_filter_buffer_allocation_init, NULL, p_vout );
436 /* Choose the video output module */
437 if( !p_vout->p->psz_filter_chain || !*p_vout->p->psz_filter_chain )
439 var_Create( p_vout, "vout", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
440 var_Get( p_vout, "vout", &val );
441 psz_parser = val.psz_string;
445 psz_parser = strdup( p_vout->p->psz_filter_chain );
446 p_vout->p->b_title_show = false;
449 /* Create the vout thread */
450 char* psz_tmp = config_ChainCreate( &psz_name, &p_cfg, psz_parser );
453 p_vout->p_cfg = p_cfg;
454 p_vout->p_module = module_need( p_vout,
455 ( p_vout->p->psz_filter_chain && *p_vout->p->psz_filter_chain ) ?
456 "video filter" : "video output", psz_name, p_vout->p->psz_filter_chain && *p_vout->p->psz_filter_chain );
459 if( p_vout->p_module == NULL )
461 msg_Err( p_vout, "no suitable vout module" );
462 vlc_object_set_destructor( p_vout, vout_Destructor );
463 vlc_object_release( p_vout );
467 /* Create a few object variables for interface interaction */
468 var_Create( p_vout, "deinterlace", VLC_VAR_STRING | VLC_VAR_HASCHOICE );
469 text.psz_string = _("Deinterlace");
470 var_Change( p_vout, "deinterlace", VLC_VAR_SETTEXT, &text, NULL );
471 val.psz_string = (char *)""; text.psz_string = _("Disable");
472 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
473 val.psz_string = (char *)"discard"; text.psz_string = _("Discard");
474 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
475 val.psz_string = (char *)"blend"; text.psz_string = _("Blend");
476 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
477 val.psz_string = (char *)"mean"; text.psz_string = _("Mean");
478 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
479 val.psz_string = (char *)"bob"; text.psz_string = _("Bob");
480 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
481 val.psz_string = (char *)"linear"; text.psz_string = _("Linear");
482 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
483 val.psz_string = (char *)"x"; text.psz_string = (char *)"X";
484 var_Change( p_vout, "deinterlace", VLC_VAR_ADDCHOICE, &val, &text );
486 if( var_Get( p_vout, "deinterlace-mode", &val ) == VLC_SUCCESS )
488 var_Set( p_vout, "deinterlace", val );
489 free( val.psz_string );
491 var_AddCallback( p_vout, "deinterlace", DeinterlaceCallback, NULL );
493 var_Create( p_vout, "vout-filter", VLC_VAR_STRING | VLC_VAR_DOINHERIT );
494 text.psz_string = _("Filters");
495 var_Change( p_vout, "vout-filter", VLC_VAR_SETTEXT, &text, NULL );
496 var_AddCallback( p_vout, "vout-filter", FilterCallback, NULL );
498 if( vlc_thread_create( p_vout, "video output", RunThread,
499 VLC_THREAD_PRIORITY_OUTPUT, true ) )
501 module_unneed( p_vout, p_vout->p_module );
502 p_vout->p_module = NULL;
503 vlc_object_set_destructor( p_vout, vout_Destructor );
504 vlc_object_release( p_vout );
508 vlc_object_set_destructor( p_vout, vout_Destructor );
510 if( p_vout->b_error )
512 msg_Err( p_vout, "video output creation failed" );
513 vout_CloseAndRelease( p_vout );
520 /*****************************************************************************
521 * vout_Close: Close a vout created by vout_Create.
522 *****************************************************************************
523 * You HAVE to call it on vout created by vout_Create before vlc_object_release.
524 * You should NEVER call it on vout not obtained through vout_Create
525 * (like with vout_Request or vlc_object_find.)
526 * You can use vout_CloseAndRelease() as a convenient method.
527 *****************************************************************************/
528 void vout_Close( vout_thread_t *p_vout )
532 vlc_object_kill( p_vout );
533 vlc_thread_join( p_vout );
534 module_unneed( p_vout, p_vout->p_module );
535 p_vout->p_module = NULL;
539 static void vout_Destructor( vlc_object_t * p_this )
541 vout_thread_t *p_vout = (vout_thread_t *)p_this;
543 /* Make sure the vout was stopped first */
544 assert( !p_vout->p_module );
547 spu_Destroy( p_vout->p_spu );
549 /* Destroy the locks */
550 vlc_mutex_destroy( &p_vout->picture_lock );
551 vlc_mutex_destroy( &p_vout->change_lock );
552 vlc_mutex_destroy( &p_vout->p->vfilter_lock );
554 free( p_vout->p->psz_filter_chain );
556 config_ChainDestroy( p_vout->p_cfg );
561 vout_thread_t *p_another_vout;
563 /* This is a dirty hack mostly for Linux, where there is no way to get the
564 * GUI back if you closed it while playing video. This is solved in
565 * Mac OS X, where we have this novelty called menubar, that will always
566 * allow you access to the applications main functionality. They should try
567 * that on linux sometime. */
568 p_another_vout = vlc_object_find( p_this->p_libvlc,
569 VLC_OBJECT_VOUT, FIND_ANYWHERE );
570 if( p_another_vout == NULL )
571 var_SetBool( p_this->p_libvlc, "intf-show", true );
573 vlc_object_release( p_another_vout );
578 void vout_ChangePause( vout_thread_t *p_vout, bool b_paused, mtime_t i_date )
580 vlc_object_lock( p_vout );
582 assert( !p_vout->p->b_paused || !b_paused );
583 if( p_vout->p->b_paused )
585 const mtime_t i_duration = i_date - p_vout->p->i_pause_date;
587 for( int i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
589 picture_t *p_pic = PP_RENDERPICTURE[i_index];
591 if( p_pic->i_status == READY_PICTURE )
592 p_pic->date += i_duration;
594 spu_OffsetSubtitleDate( p_vout->p_spu, i_duration );
596 p_vout->p->b_paused = b_paused;
597 p_vout->p->i_pause_date = i_date;
599 vlc_object_unlock( p_vout );
601 void vout_GetResetStatistic( vout_thread_t *p_vout, int *pi_displayed, int *pi_lost )
603 vlc_object_lock( p_vout );
605 *pi_displayed = p_vout->p->i_picture_displayed;
606 *pi_lost = p_vout->p->i_picture_lost;
608 p_vout->p->i_picture_displayed = 0;
609 p_vout->p->i_picture_lost = 0;
611 vlc_object_unlock( p_vout );
613 void vout_Flush( vout_thread_t *p_vout, mtime_t i_date )
615 vlc_mutex_lock( &p_vout->picture_lock );
616 for( int i = 0; i < p_vout->render.i_pictures; i++ )
618 picture_t *p_pic = p_vout->render.pp_picture[i];
620 if( p_pic->i_status == READY_PICTURE ||
621 p_pic->i_status == DISPLAYED_PICTURE )
623 /* We cannot change picture status if it is in READY_PICTURE state,
624 * Just make sure they won't be displayed */
625 if( p_pic->date > i_date )
626 p_pic->date = i_date;
629 vlc_mutex_unlock( &p_vout->picture_lock );
631 void vout_FixLeaks( vout_thread_t *p_vout, bool b_forced )
633 int i_pic, i_ready_pic;
635 vlc_mutex_lock( &p_vout->picture_lock );
637 for( i_pic = 0, i_ready_pic = 0; i_pic < p_vout->render.i_pictures && !b_forced; i_pic++ )
639 const picture_t *p_pic = p_vout->render.pp_picture[i_pic];
641 if( p_pic->i_status == READY_PICTURE )
644 /* If we have at least 2 ready pictures, wait for the vout thread to
646 if( i_ready_pic >= 2 )
652 if( p_pic->i_status == DISPLAYED_PICTURE )
654 /* If at least one displayed picture is not referenced
655 * let vout free it */
656 if( p_pic->i_refcount == 0 )
660 if( i_pic < p_vout->render.i_pictures && !b_forced )
662 vlc_mutex_unlock( &p_vout->picture_lock );
666 /* Too many pictures are still referenced, there is probably a bug
667 * with the decoder */
669 msg_Err( p_vout, "pictures leaked, resetting the heap" );
671 /* Just free all the pictures */
672 for( i_pic = 0; i_pic < p_vout->render.i_pictures; i_pic++ )
674 picture_t *p_pic = p_vout->render.pp_picture[i_pic];
676 if( p_pic->i_status == RESERVED_PICTURE )
677 vout_DestroyPicture( p_vout, p_pic );
678 if( p_pic->i_refcount > 0 )
679 vout_UnlinkPicture( p_vout, p_pic );
681 vlc_mutex_unlock( &p_vout->picture_lock );
684 /*****************************************************************************
685 * InitThread: initialize video output thread
686 *****************************************************************************
687 * This function is called from RunThread and performs the second step of the
688 * initialization. It returns 0 on success. Note that the thread's flag are not
689 * modified inside this function.
690 * XXX You have to enter it with change_lock taken.
691 *****************************************************************************/
692 static int ChromaCreate( vout_thread_t *p_vout );
693 static void ChromaDestroy( vout_thread_t *p_vout );
695 static bool ChromaIsEqual( const picture_heap_t *p_output, const picture_heap_t *p_render )
697 if( !vout_ChromaCmp( p_output->i_chroma, p_render->i_chroma ) )
700 if( p_output->i_chroma != FOURCC_RV15 &&
701 p_output->i_chroma != FOURCC_RV16 &&
702 p_output->i_chroma != FOURCC_RV24 &&
703 p_output->i_chroma != FOURCC_RV32 )
706 return p_output->i_rmask == p_render->i_rmask &&
707 p_output->i_gmask == p_render->i_gmask &&
708 p_output->i_bmask == p_render->i_bmask;
711 static int InitThread( vout_thread_t *p_vout )
713 int i, i_aspect_x, i_aspect_y;
715 /* Initialize output method, it allocates direct buffers for us */
716 if( p_vout->pf_init( p_vout ) )
719 if( !I_OUTPUTPICTURES )
721 msg_Err( p_vout, "plugin was unable to allocate at least "
722 "one direct buffer" );
723 p_vout->pf_end( p_vout );
727 if( I_OUTPUTPICTURES > VOUT_MAX_PICTURES )
729 msg_Err( p_vout, "plugin allocated too many direct buffers, "
730 "our internal buffers must have overflown." );
731 p_vout->pf_end( p_vout );
735 msg_Dbg( p_vout, "got %i direct buffer(s)", I_OUTPUTPICTURES );
737 AspectRatio( p_vout->fmt_render.i_aspect, &i_aspect_x, &i_aspect_y );
739 msg_Dbg( p_vout, "picture in %ix%i (%i,%i,%ix%i), "
740 "chroma %4.4s, ar %i:%i, sar %i:%i",
741 p_vout->fmt_render.i_width, p_vout->fmt_render.i_height,
742 p_vout->fmt_render.i_x_offset, p_vout->fmt_render.i_y_offset,
743 p_vout->fmt_render.i_visible_width,
744 p_vout->fmt_render.i_visible_height,
745 (char*)&p_vout->fmt_render.i_chroma,
746 i_aspect_x, i_aspect_y,
747 p_vout->fmt_render.i_sar_num, p_vout->fmt_render.i_sar_den );
749 AspectRatio( p_vout->fmt_in.i_aspect, &i_aspect_x, &i_aspect_y );
751 msg_Dbg( p_vout, "picture user %ix%i (%i,%i,%ix%i), "
752 "chroma %4.4s, ar %i:%i, sar %i:%i",
753 p_vout->fmt_in.i_width, p_vout->fmt_in.i_height,
754 p_vout->fmt_in.i_x_offset, p_vout->fmt_in.i_y_offset,
755 p_vout->fmt_in.i_visible_width,
756 p_vout->fmt_in.i_visible_height,
757 (char*)&p_vout->fmt_in.i_chroma,
758 i_aspect_x, i_aspect_y,
759 p_vout->fmt_in.i_sar_num, p_vout->fmt_in.i_sar_den );
761 if( !p_vout->fmt_out.i_width || !p_vout->fmt_out.i_height )
763 p_vout->fmt_out.i_width = p_vout->fmt_out.i_visible_width =
764 p_vout->output.i_width;
765 p_vout->fmt_out.i_height = p_vout->fmt_out.i_visible_height =
766 p_vout->output.i_height;
767 p_vout->fmt_out.i_x_offset = p_vout->fmt_out.i_y_offset = 0;
769 p_vout->fmt_out.i_aspect = p_vout->output.i_aspect;
770 p_vout->fmt_out.i_chroma = p_vout->output.i_chroma;
772 if( !p_vout->fmt_out.i_sar_num || !p_vout->fmt_out.i_sar_num )
774 p_vout->fmt_out.i_sar_num = p_vout->fmt_out.i_aspect *
775 p_vout->fmt_out.i_height;
776 p_vout->fmt_out.i_sar_den = VOUT_ASPECT_FACTOR *
777 p_vout->fmt_out.i_width;
780 vlc_ureduce( &p_vout->fmt_out.i_sar_num, &p_vout->fmt_out.i_sar_den,
781 p_vout->fmt_out.i_sar_num, p_vout->fmt_out.i_sar_den, 0 );
783 AspectRatio( p_vout->fmt_out.i_aspect, &i_aspect_x, &i_aspect_y );
785 msg_Dbg( p_vout, "picture out %ix%i (%i,%i,%ix%i), "
786 "chroma %4.4s, ar %i:%i, sar %i:%i",
787 p_vout->fmt_out.i_width, p_vout->fmt_out.i_height,
788 p_vout->fmt_out.i_x_offset, p_vout->fmt_out.i_y_offset,
789 p_vout->fmt_out.i_visible_width,
790 p_vout->fmt_out.i_visible_height,
791 (char*)&p_vout->fmt_out.i_chroma,
792 i_aspect_x, i_aspect_y,
793 p_vout->fmt_out.i_sar_num, p_vout->fmt_out.i_sar_den );
795 /* FIXME removed the need of both fmt_* and heap infos */
796 /* Calculate shifts from system-updated masks */
797 PictureHeapFixRgb( &p_vout->render );
798 VideoFormatImportRgb( &p_vout->fmt_render, &p_vout->render );
800 PictureHeapFixRgb( &p_vout->output );
801 VideoFormatImportRgb( &p_vout->fmt_out, &p_vout->output );
803 /* Check whether we managed to create direct buffers similar to
804 * the render buffers, ie same size and chroma */
805 if( ( p_vout->output.i_width == p_vout->render.i_width )
806 && ( p_vout->output.i_height == p_vout->render.i_height )
807 && ( ChromaIsEqual( &p_vout->output, &p_vout->render ) ) )
809 /* Cool ! We have direct buffers, we can ask the decoder to
810 * directly decode into them ! Map the first render buffers to
811 * the first direct buffers, but keep the first direct buffer
812 * for memcpy operations */
813 p_vout->p->b_direct = true;
815 for( i = 1; i < VOUT_MAX_PICTURES; i++ )
817 if( p_vout->p_picture[ i ].i_type != DIRECT_PICTURE &&
818 I_RENDERPICTURES >= VOUT_MIN_DIRECT_PICTURES - 1 &&
819 p_vout->p_picture[ i - 1 ].i_type == DIRECT_PICTURE )
821 /* We have enough direct buffers so there's no need to
822 * try to use system memory buffers. */
825 PP_RENDERPICTURE[ I_RENDERPICTURES ] = &p_vout->p_picture[ i ];
829 msg_Dbg( p_vout, "direct render, mapping "
830 "render pictures 0-%i to system pictures 1-%i",
831 VOUT_MAX_PICTURES - 2, VOUT_MAX_PICTURES - 1 );
835 /* Rats... Something is wrong here, we could not find an output
836 * plugin able to directly render what we decode. See if we can
837 * find a chroma plugin to do the conversion */
838 p_vout->p->b_direct = false;
840 if( ChromaCreate( p_vout ) )
842 p_vout->pf_end( p_vout );
846 msg_Dbg( p_vout, "indirect render, mapping "
847 "render pictures 0-%i to system pictures %i-%i",
848 VOUT_MAX_PICTURES - 1, I_OUTPUTPICTURES,
849 I_OUTPUTPICTURES + VOUT_MAX_PICTURES - 1 );
851 /* Append render buffers after the direct buffers */
852 for( i = I_OUTPUTPICTURES; i < 2 * VOUT_MAX_PICTURES; i++ )
854 PP_RENDERPICTURE[ I_RENDERPICTURES ] = &p_vout->p_picture[ i ];
857 /* Check if we have enough render pictures */
858 if( I_RENDERPICTURES == VOUT_MAX_PICTURES )
863 /* Link pictures back to their heap */
864 for( i = 0 ; i < I_RENDERPICTURES ; i++ )
866 PP_RENDERPICTURE[ i ]->p_heap = &p_vout->render;
869 for( i = 0 ; i < I_OUTPUTPICTURES ; i++ )
871 PP_OUTPUTPICTURE[ i ]->p_heap = &p_vout->output;
877 /*****************************************************************************
878 * RunThread: video output thread
879 *****************************************************************************
880 * Video output thread. This function does only returns when the thread is
881 * terminated. It handles the pictures arriving in the video heap and the
882 * display device events.
883 *****************************************************************************/
884 static void* RunThread( vlc_object_t *p_this )
886 vout_thread_t *p_vout = (vout_thread_t *)p_this;
887 int i_idle_loops = 0; /* loops without displaying a picture */
889 picture_t * p_last_picture = NULL; /* last picture */
891 subpicture_t * p_subpic = NULL; /* subpicture pointer */
895 int canc = vlc_savecancel();
900 vlc_mutex_lock( &p_vout->change_lock );
901 p_vout->b_error = InitThread( p_vout );
903 b_drop_late = var_CreateGetBool( p_vout, "drop-late-frames" );
905 /* signal the creation of the vout */
906 vlc_thread_ready( p_vout );
908 if( p_vout->b_error )
911 vlc_mutex_unlock( &p_vout->change_lock );
912 vlc_restorecancel( canc );
916 vlc_object_lock( p_vout );
918 if( p_vout->p->b_title_show )
919 DisplayTitleOnOSD( p_vout );
922 * Main loop - it is not executed if an error occurred during
925 while( vlc_object_alive( p_vout ) && !p_vout->b_error )
927 /* Initialize loop variables */
928 const mtime_t current_date = mdate();
929 picture_t *p_picture = NULL;
930 picture_t *p_filtered_picture;
931 mtime_t display_date = 0;
932 picture_t *p_directbuffer;
935 /* Find the picture to display (the one with the earliest date). */
936 vlc_mutex_lock( &p_vout->picture_lock );
938 for( i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
940 picture_t *p_pic = PP_RENDERPICTURE[i_index];
942 if( p_pic->i_status == READY_PICTURE &&
943 ( p_picture == NULL || p_pic->date < display_date ) )
946 display_date = p_picture->date;
949 if( p_vout->p->b_paused && p_last_picture != NULL )
952 if( p_last_picture->date == 1 )
954 for( i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
956 picture_t *p_pic = PP_RENDERPICTURE[i_index];
958 if( p_pic->i_status != READY_PICTURE )
960 if( p_pic->date <= p_last_picture->date && p_pic != p_last_picture )
962 DropPicture( p_vout, p_pic );
964 else if( p_pic->date > p_last_picture->date && ( p_picture == NULL || p_pic->date < display_date ) )
967 display_date = p_picture->date;
972 p_picture = p_last_picture;
977 /* If we met the last picture, parse again to see whether there is
978 * a more appropriate one. */
979 if( p_picture == p_last_picture && !p_vout->p->b_paused )
981 for( i_index = 0; i_index < I_RENDERPICTURES; i_index++ )
983 picture_t *p_pic = PP_RENDERPICTURE[i_index];
985 if( p_pic->i_status == READY_PICTURE &&
986 p_pic != p_last_picture &&
987 ( p_picture == p_last_picture || p_pic->date < display_date ) )
990 display_date = p_picture->date;
995 /* If we found better than the last picture, destroy it */
996 if( p_last_picture && p_picture != p_last_picture )
998 DropPicture( p_vout, p_last_picture );
999 p_last_picture = NULL;
1002 /* Compute FPS rate */
1003 p_vout->p->p_fps_sample[ p_vout->p->c_fps_samples++ % VOUT_FPS_SAMPLES ]
1006 if( !p_picture->b_force &&
1007 p_picture != p_last_picture &&
1008 display_date < current_date + p_vout->p->render_time &&
1011 /* Picture is late: it will be destroyed and the thread
1012 * will directly choose the next picture */
1013 DropPicture( p_vout, p_picture );
1014 p_vout->p->i_picture_lost++;
1015 msg_Warn( p_vout, "late picture skipped (%"PRId64")",
1016 current_date - display_date );
1017 vlc_mutex_unlock( &p_vout->picture_lock );
1021 if( display_date > current_date + VOUT_DISPLAY_DELAY )
1023 /* A picture is ready to be rendered, but its rendering date
1024 * is far from the current one so the thread will perform an
1025 * empty loop as if no picture were found. The picture state
1030 else if( p_picture == p_last_picture )
1032 /* We are asked to repeat the previous picture, but we first
1033 * wait for a couple of idle loops */
1034 if( i_idle_loops < 4 )
1041 /* We set the display date to something high, otherwise
1042 * we'll have lots of problems with late pictures */
1043 display_date = current_date + p_vout->p->render_time;
1047 vlc_mutex_unlock( &p_vout->picture_lock );
1049 if( p_picture == NULL )
1052 p_filtered_picture = NULL;
1054 p_filtered_picture = filter_chain_VideoFilter( p_vout->p->p_vf2_chain,
1057 /* FIXME it is a bit ugly that b_snapshot is not locked but I do not
1058 * know which lock to use (here and in the snapshot callback) */
1059 const bool b_snapshot = p_vout->p->b_snapshot;
1061 p_vout->p->b_snapshot = false;
1064 * Check for subpictures to display
1066 if( display_date > 0 )
1067 p_subpic = spu_SortSubpictures( p_vout->p_spu, display_date,
1068 p_vout->p->b_paused, b_snapshot );
1073 p_vout->p->i_picture_displayed++;
1074 p_directbuffer = vout_RenderPicture( p_vout, p_filtered_picture,
1075 p_subpic, p_vout->p->b_paused );
1078 * Take a snapshot if requested
1080 if( p_directbuffer && b_snapshot )
1081 vout_Snapshot( p_vout, p_directbuffer );
1084 * Call the plugin-specific rendering method if there is one
1086 if( p_filtered_picture != NULL && p_directbuffer != NULL && p_vout->pf_render )
1088 /* Render the direct buffer returned by vout_RenderPicture */
1089 p_vout->pf_render( p_vout, p_directbuffer );
1095 if( display_date != 0 && p_directbuffer != NULL )
1097 mtime_t current_render_time = mdate() - current_date;
1098 /* if render time is very large we don't include it in the mean */
1099 if( current_render_time < p_vout->p->render_time +
1100 VOUT_DISPLAY_DELAY )
1102 /* Store render time using a sliding mean weighting to
1103 * current value in a 3 to 1 ratio*/
1104 p_vout->p->render_time *= 3;
1105 p_vout->p->render_time += current_render_time;
1106 p_vout->p->render_time >>= 2;
1110 /* Give back change lock */
1111 vlc_mutex_unlock( &p_vout->change_lock );
1113 vlc_object_unlock( p_vout );
1115 /* Sleep a while or until a given date */
1116 if( display_date != 0 )
1118 /* If there are filters in the chain, better give them the picture
1120 if( !p_vout->p->psz_filter_chain || !*p_vout->p->psz_filter_chain )
1122 mwait( display_date - VOUT_MWAIT_TOLERANCE );
1127 msleep( VOUT_IDLE_SLEEP );
1130 /* On awakening, take back lock and send immediately picture
1132 vlc_object_lock( p_vout );
1133 /* Note: vlc_object_alive() could be false here, and we
1135 vlc_mutex_lock( &p_vout->change_lock );
1138 * Display the previously rendered picture
1140 if( p_filtered_picture != NULL && p_directbuffer != NULL )
1142 /* Display the direct buffer returned by vout_RenderPicture */
1143 if( p_vout->pf_display )
1144 p_vout->pf_display( p_vout, p_directbuffer );
1146 /* Tell the vout this was the last picture and that it does not
1147 * need to be forced anymore. */
1148 p_last_picture = p_picture;
1149 p_last_picture->b_force = false;
1152 /* Drop the filtered picture if created by video filters */
1153 if( p_filtered_picture != NULL && p_filtered_picture != p_picture )
1154 DropPicture( p_vout, p_filtered_picture );
1156 if( p_picture != NULL )
1158 /* Reinitialize idle loop count */
1163 * Check events and manage thread
1165 if( p_vout->pf_manage && p_vout->pf_manage( p_vout ) )
1167 /* A fatal error occurred, and the thread must terminate
1168 * immediately, without displaying anything - setting b_error to 1
1169 * causes the immediate end of the main while() loop. */
1171 p_vout->b_error = 1;
1175 if( p_vout->i_changes & VOUT_SIZE_CHANGE )
1177 /* this must only happen when the vout plugin is incapable of
1178 * rescaling the picture itself. In this case we need to destroy
1179 * the current picture buffers and recreate new ones with the right
1183 p_vout->i_changes &= ~VOUT_SIZE_CHANGE;
1185 assert( !p_vout->p->b_direct );
1187 ChromaDestroy( p_vout );
1189 vlc_mutex_lock( &p_vout->picture_lock );
1191 p_vout->pf_end( p_vout );
1193 for( i = 0; i < I_OUTPUTPICTURES; i++ )
1194 p_vout->p_picture[ i ].i_status = FREE_PICTURE;
1196 I_OUTPUTPICTURES = 0;
1198 if( p_vout->pf_init( p_vout ) )
1200 msg_Err( p_vout, "cannot resize display" );
1201 /* FIXME: pf_end will be called again in EndThread() */
1202 p_vout->b_error = 1;
1205 vlc_mutex_unlock( &p_vout->picture_lock );
1207 /* Need to reinitialise the chroma plugin. Since we might need
1208 * resizing too and it's not sure that we already had it,
1209 * recreate the chroma plugin chain from scratch. */
1211 if( ChromaCreate( p_vout ) )
1213 msg_Err( p_vout, "WOW THIS SUCKS BIG TIME!!!!!" );
1214 p_vout->b_error = 1;
1216 if( p_vout->b_error )
1220 if( p_vout->i_changes & VOUT_PICTURE_BUFFERS_CHANGE )
1222 /* This happens when the picture buffers need to be recreated.
1223 * This is useful on multimonitor displays for instance.
1225 * Warning: This only works when the vout creates only 1 picture
1227 p_vout->i_changes &= ~VOUT_PICTURE_BUFFERS_CHANGE;
1229 if( !p_vout->p->b_direct )
1230 ChromaDestroy( p_vout );
1232 vlc_mutex_lock( &p_vout->picture_lock );
1234 p_vout->pf_end( p_vout );
1236 I_OUTPUTPICTURES = I_RENDERPICTURES = 0;
1238 p_vout->b_error = InitThread( p_vout );
1239 if( p_vout->b_error )
1240 msg_Err( p_vout, "InitThread after VOUT_PICTURE_BUFFERS_CHANGE failed\n" );
1242 vlc_mutex_unlock( &p_vout->picture_lock );
1244 if( p_vout->b_error )
1248 /* Check for "video filter2" changes */
1249 vlc_mutex_lock( &p_vout->p->vfilter_lock );
1250 if( p_vout->p->psz_vf2 )
1254 es_format_Init( &fmt, VIDEO_ES, p_vout->fmt_render.i_chroma );
1255 fmt.video = p_vout->fmt_render;
1256 filter_chain_Reset( p_vout->p->p_vf2_chain, &fmt, &fmt );
1258 if( filter_chain_AppendFromString( p_vout->p->p_vf2_chain,
1259 p_vout->p->psz_vf2 ) < 0 )
1260 msg_Err( p_vout, "Video filter chain creation failed" );
1262 free( p_vout->p->psz_vf2 );
1263 p_vout->p->psz_vf2 = NULL;
1265 vlc_mutex_unlock( &p_vout->p->vfilter_lock );
1269 * Error loop - wait until the thread destruction is requested
1271 if( p_vout->b_error )
1272 ErrorThread( p_vout );
1275 CleanThread( p_vout );
1276 EndThread( p_vout );
1277 vlc_mutex_unlock( &p_vout->change_lock );
1279 vlc_object_unlock( p_vout );
1280 vlc_restorecancel( canc );
1284 /*****************************************************************************
1285 * ErrorThread: RunThread() error loop
1286 *****************************************************************************
1287 * This function is called when an error occurred during thread main's loop.
1288 * The thread can still receive feed, but must be ready to terminate as soon
1290 *****************************************************************************/
1291 static void ErrorThread( vout_thread_t *p_vout )
1293 /* Wait until a `die' order */
1294 while( vlc_object_alive( p_vout ) )
1295 vlc_object_wait( p_vout );
1298 /*****************************************************************************
1299 * CleanThread: clean up after InitThread
1300 *****************************************************************************
1301 * This function is called after a sucessful
1302 * initialization. It frees all resources allocated by InitThread.
1303 * XXX You have to enter it with change_lock taken.
1304 *****************************************************************************/
1305 static void CleanThread( vout_thread_t *p_vout )
1307 int i_index; /* index in heap */
1309 if( !p_vout->p->b_direct )
1310 ChromaDestroy( p_vout );
1312 /* Destroy all remaining pictures */
1313 for( i_index = 0; i_index < 2 * VOUT_MAX_PICTURES + 1; i_index++ )
1315 if ( p_vout->p_picture[i_index].i_type == MEMORY_PICTURE )
1317 free( p_vout->p_picture[i_index].p_data_orig );
1321 /* Destroy translation tables */
1322 if( !p_vout->b_error )
1323 p_vout->pf_end( p_vout );
1326 /*****************************************************************************
1327 * EndThread: thread destruction
1328 *****************************************************************************
1329 * This function is called when the thread ends.
1330 * It frees all resources not allocated by InitThread.
1331 * XXX You have to enter it with change_lock taken.
1332 *****************************************************************************/
1333 static void EndThread( vout_thread_t *p_vout )
1337 struct tms cpu_usage;
1338 times( &cpu_usage );
1340 msg_Dbg( p_vout, "cpu usage (user: %d, system: %d)",
1341 cpu_usage.tms_utime, cpu_usage.tms_stime );
1345 /* FIXME does that function *really* need to be called inside the thread ? */
1347 /* Destroy subpicture unit */
1348 spu_Attach( p_vout->p_spu, VLC_OBJECT(p_vout), false );
1350 /* Destroy the video filters2 */
1351 filter_chain_Delete( p_vout->p->p_vf2_chain );
1354 /* Thread helpers */
1355 static picture_t *ChromaGetPicture( filter_t *p_filter )
1357 picture_t *p_pic = (picture_t *)p_filter->p_owner;
1358 p_filter->p_owner = NULL;
1362 static int ChromaCreate( vout_thread_t *p_vout )
1364 static const char typename[] = "chroma";
1367 /* Choose the best module */
1368 p_chroma = p_vout->p->p_chroma =
1369 vlc_custom_create( p_vout, sizeof(filter_t), VLC_OBJECT_GENERIC,
1372 vlc_object_attach( p_chroma, p_vout );
1374 /* TODO: Set the fmt_in and fmt_out stuff here */
1375 p_chroma->fmt_in.video = p_vout->fmt_render;
1376 p_chroma->fmt_out.video = p_vout->fmt_out;
1377 VideoFormatImportRgb( &p_chroma->fmt_in.video, &p_vout->render );
1378 VideoFormatImportRgb( &p_chroma->fmt_out.video, &p_vout->output );
1380 p_chroma->p_module = module_need( p_chroma, "video filter2", NULL, 0 );
1382 if( p_chroma->p_module == NULL )
1384 msg_Err( p_vout, "no chroma module for %4.4s to %4.4s i=%dx%d o=%dx%d",
1385 (char*)&p_vout->render.i_chroma,
1386 (char*)&p_vout->output.i_chroma,
1387 p_chroma->fmt_in.video.i_width, p_chroma->fmt_in.video.i_height,
1388 p_chroma->fmt_out.video.i_width, p_chroma->fmt_out.video.i_height
1391 vlc_object_release( p_vout->p->p_chroma );
1392 p_vout->p->p_chroma = NULL;
1394 return VLC_EGENERIC;
1396 p_chroma->pf_vout_buffer_new = ChromaGetPicture;
1400 static void ChromaDestroy( vout_thread_t *p_vout )
1402 assert( !p_vout->p->b_direct );
1404 if( !p_vout->p->p_chroma )
1407 module_unneed( p_vout->p->p_chroma, p_vout->p->p_chroma->p_module );
1408 vlc_object_release( p_vout->p->p_chroma );
1409 p_vout->p->p_chroma = NULL;
1412 static void DropPicture( vout_thread_t *p_vout, picture_t *p_picture )
1414 vlc_mutex_lock( &p_vout->picture_lock );
1415 if( p_picture->i_refcount )
1417 /* Pretend we displayed the picture, but don't destroy
1418 * it since the decoder might still need it. */
1419 p_picture->i_status = DISPLAYED_PICTURE;
1423 /* Destroy the picture without displaying it */
1424 p_picture->i_status = DESTROYED_PICTURE;
1425 p_vout->i_heap_size--;
1426 picture_CleanupQuant( p_picture );
1428 vlc_mutex_unlock( &p_vout->picture_lock );
1433 /* following functions are local */
1435 static int ReduceHeight( int i_ratio )
1437 int i_dummy = VOUT_ASPECT_FACTOR;
1445 /* VOUT_ASPECT_FACTOR is (2^7 * 3^3 * 5^3), we just check for 2, 3 and 5 */
1446 while( !(i_ratio & 1) && !(i_dummy & 1) )
1453 while( !(i_ratio % 3) && !(i_dummy % 3) )
1460 while( !(i_ratio % 5) && !(i_dummy % 5) )
1470 static void AspectRatio( int i_aspect, int *i_aspect_x, int *i_aspect_y )
1472 unsigned int i_pgcd = ReduceHeight( i_aspect );
1473 *i_aspect_x = i_aspect / i_pgcd;
1474 *i_aspect_y = VOUT_ASPECT_FACTOR / i_pgcd;
1478 * This function copies all RGB informations from a picture_heap_t into
1481 static void VideoFormatImportRgb( video_format_t *p_fmt, const picture_heap_t *p_heap )
1483 p_fmt->i_rmask = p_heap->i_rmask;
1484 p_fmt->i_gmask = p_heap->i_gmask;
1485 p_fmt->i_bmask = p_heap->i_bmask;
1486 p_fmt->i_rrshift = p_heap->i_rrshift;
1487 p_fmt->i_lrshift = p_heap->i_lrshift;
1488 p_fmt->i_rgshift = p_heap->i_rgshift;
1489 p_fmt->i_lgshift = p_heap->i_lgshift;
1490 p_fmt->i_rbshift = p_heap->i_rbshift;
1491 p_fmt->i_lbshift = p_heap->i_lbshift;
1495 * This funtion copes all RGB informations from a video_format_t into
1498 static void VideoFormatExportRgb( const video_format_t *p_fmt, picture_heap_t *p_heap )
1500 p_heap->i_rmask = p_fmt->i_rmask;
1501 p_heap->i_gmask = p_fmt->i_gmask;
1502 p_heap->i_bmask = p_fmt->i_bmask;
1503 p_heap->i_rrshift = p_fmt->i_rrshift;
1504 p_heap->i_lrshift = p_fmt->i_lrshift;
1505 p_heap->i_rgshift = p_fmt->i_rgshift;
1506 p_heap->i_lgshift = p_fmt->i_lgshift;
1507 p_heap->i_rbshift = p_fmt->i_rbshift;
1508 p_heap->i_lbshift = p_fmt->i_lbshift;
1512 * This function computes rgb shifts from masks
1514 static void PictureHeapFixRgb( picture_heap_t *p_heap )
1519 fmt.i_chroma = p_heap->i_chroma;
1520 VideoFormatImportRgb( &fmt, p_heap );
1523 video_format_FixRgb( &fmt );
1525 VideoFormatExportRgb( &fmt, p_heap );
1528 /*****************************************************************************
1529 * object variables callbacks: a bunch of object variables are used by the
1530 * interfaces to interact with the vout.
1531 *****************************************************************************/
1532 static int DeinterlaceCallback( vlc_object_t *p_this, char const *psz_cmd,
1533 vlc_value_t oldval, vlc_value_t newval, void *p_data )
1535 vout_thread_t *p_vout = (vout_thread_t *)p_this;
1536 input_thread_t *p_input;
1539 char *psz_mode = newval.psz_string;
1540 char *psz_filter, *psz_deinterlace = NULL;
1541 (void)psz_cmd; (void)oldval; (void)p_data;
1543 var_Get( p_vout, "vout-filter", &val );
1544 psz_filter = val.psz_string;
1545 if( psz_filter ) psz_deinterlace = strstr( psz_filter, "deinterlace" );
1547 if( !psz_mode || !*psz_mode )
1549 if( psz_deinterlace )
1551 char *psz_src = psz_deinterlace + sizeof("deinterlace") - 1;
1552 if( psz_src[0] == ':' ) psz_src++;
1553 memmove( psz_deinterlace, psz_src, strlen(psz_src) + 1 );
1556 else if( !psz_deinterlace )
1558 psz_filter = realloc( psz_filter, strlen( psz_filter ) +
1559 sizeof(":deinterlace") );
1563 strcat( psz_filter, ":" );
1564 strcat( psz_filter, "deinterlace" );
1568 p_input = (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
1573 return VLC_EGENERIC;
1576 if( psz_mode && *psz_mode )
1578 /* Modify input as well because the vout might have to be restarted */
1579 val.psz_string = psz_mode;
1580 var_Create( p_input, "deinterlace-mode", VLC_VAR_STRING );
1581 var_Set( p_input, "deinterlace-mode", val );
1583 vlc_object_release( p_input );
1586 var_Set( p_vout, "intf-change", val );
1588 val.psz_string = psz_filter;
1589 var_Set( p_vout, "vout-filter", val );
1595 static int FilterCallback( vlc_object_t *p_this, char const *psz_cmd,
1596 vlc_value_t oldval, vlc_value_t newval, void *p_data )
1598 vout_thread_t *p_vout = (vout_thread_t *)p_this;
1599 input_thread_t *p_input;
1601 (void)psz_cmd; (void)oldval; (void)p_data;
1603 p_input = (input_thread_t *)vlc_object_find( p_this, VLC_OBJECT_INPUT,
1607 msg_Err( p_vout, "Input not found" );
1608 return( VLC_EGENERIC );
1612 var_Set( p_vout, "intf-change", val );
1614 /* Modify input as well because the vout might have to be restarted */
1615 val.psz_string = newval.psz_string;
1616 var_Create( p_input, "vout-filter", VLC_VAR_STRING );
1618 var_Set( p_input, "vout-filter", val );
1620 /* Now restart current video stream */
1621 input_Control( p_input, INPUT_RESTART_ES, -VIDEO_ES );
1622 vlc_object_release( p_input );
1627 /*****************************************************************************
1628 * Video Filter2 stuff
1629 *****************************************************************************/
1630 static int VideoFilter2Callback( vlc_object_t *p_this, char const *psz_cmd,
1631 vlc_value_t oldval, vlc_value_t newval, void *p_data )
1633 vout_thread_t *p_vout = (vout_thread_t *)p_this;
1634 (void)psz_cmd; (void)oldval; (void)p_data;
1636 vlc_mutex_lock( &p_vout->p->vfilter_lock );
1637 p_vout->p->psz_vf2 = strdup( newval.psz_string );
1638 vlc_mutex_unlock( &p_vout->p->vfilter_lock );
1643 static void DisplayTitleOnOSD( vout_thread_t *p_vout )
1645 input_thread_t *p_input;
1646 mtime_t i_now, i_stop;
1648 if( !config_GetInt( p_vout, "osd" ) ) return;
1650 p_input = (input_thread_t *)vlc_object_find( p_vout,
1651 VLC_OBJECT_INPUT, FIND_ANYWHERE );
1655 i_stop = i_now + (mtime_t)(p_vout->p->i_title_timeout * 1000);
1656 char *psz_nowplaying =
1657 input_item_GetNowPlaying( input_GetItem( p_input ) );
1658 char *psz_artist = input_item_GetArtist( input_GetItem( p_input ) );
1659 char *psz_name = input_item_GetTitle( input_GetItem( p_input ) );
1660 if( EMPTY_STR( psz_name ) )
1663 psz_name = input_item_GetName( input_GetItem( p_input ) );
1665 if( !EMPTY_STR( psz_nowplaying ) )
1667 vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1668 psz_nowplaying, NULL,
1669 p_vout->p->i_title_position,
1670 30 + p_vout->fmt_in.i_width
1671 - p_vout->fmt_in.i_visible_width
1672 - p_vout->fmt_in.i_x_offset,
1673 20 + p_vout->fmt_in.i_y_offset,
1676 else if( !EMPTY_STR( psz_artist ) )
1678 char *psz_string = NULL;
1679 if( asprintf( &psz_string, "%s - %s", psz_name, psz_artist ) != -1 )
1681 vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1683 p_vout->p->i_title_position,
1684 30 + p_vout->fmt_in.i_width
1685 - p_vout->fmt_in.i_visible_width
1686 - p_vout->fmt_in.i_x_offset,
1687 20 + p_vout->fmt_in.i_y_offset,
1694 vout_ShowTextAbsolute( p_vout, DEFAULT_CHAN,
1696 p_vout->p->i_title_position,
1697 30 + p_vout->fmt_in.i_width
1698 - p_vout->fmt_in.i_visible_width
1699 - p_vout->fmt_in.i_x_offset,
1700 20 + p_vout->fmt_in.i_y_offset,
1703 vlc_object_release( p_input );
1706 free( psz_nowplaying );