Commit a566f379 authored by Jean-Paul Saman's avatar Jean-Paul Saman Committed by Jean-Paul Saman

Remove trailing whitespace.

parent c50f6910
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* transcode.c: transcoding stream output module * transcode.c: transcoding stream output module
***************************************************************************** *****************************************************************************
* Copyright (C) 2003-2004 the VideoLAN team * Copyright (C) 2003-2004 the VideoLAN team
* $Id$ * $Id: 28efd44af9b49d4254361f313c0bd87c46917d70 $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@videolan.org> * Gildas Bazin <gbazin@videolan.org>
...@@ -275,7 +275,7 @@ vlc_module_begin(); ...@@ -275,7 +275,7 @@ vlc_module_begin();
set_section( N_("On Screen Display"), NULL ); set_section( N_("On Screen Display"), NULL );
add_bool( SOUT_CFG_PREFIX "osd", 0, NULL, OSD_TEXT, add_bool( SOUT_CFG_PREFIX "osd", 0, NULL, OSD_TEXT,
OSD_LONGTEXT, VLC_FALSE ); OSD_LONGTEXT, VLC_FALSE );
set_section( N_("Miscellaneous"), NULL ); set_section( N_("Miscellaneous"), NULL );
add_integer( SOUT_CFG_PREFIX "threads", 0, NULL, THREADS_TEXT, add_integer( SOUT_CFG_PREFIX "threads", 0, NULL, THREADS_TEXT,
THREADS_LONGTEXT, VLC_TRUE ); THREADS_LONGTEXT, VLC_TRUE );
...@@ -401,7 +401,7 @@ struct sout_stream_sys_t ...@@ -401,7 +401,7 @@ struct sout_stream_sys_t
int i_canvas_width; int i_canvas_width;
int i_canvas_height; int i_canvas_height;
int i_canvas_aspect; int i_canvas_aspect;
/* Video, calculated */ /* Video, calculated */
int i_src_x_offset; int i_src_x_offset;
int i_src_y_offset; int i_src_y_offset;
......
...@@ -229,8 +229,8 @@ static int CreateFilter ( vlc_object_t *p_this ) ...@@ -229,8 +229,8 @@ static int CreateFilter ( vlc_object_t *p_this )
p_filter->p_sys->b_update = VLC_FALSE; p_filter->p_sys->b_update = VLC_FALSE;
p_filter->p_sys->b_visible = VLC_FALSE; p_filter->p_sys->b_visible = VLC_FALSE;
var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-update", OSDMenuUpdateEvent, p_filter ); var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-update", OSDMenuUpdateEvent, p_filter );
var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-visible", OSDMenuVisibleEvent, p_filter ); var_AddCallback( p_filter->p_sys->p_menu, "osd-menu-visible", OSDMenuVisibleEvent, p_filter );
/* Attach subpicture filter callback */ /* Attach subpicture filter callback */
p_filter->pf_sub_filter = Filter; p_filter->pf_sub_filter = Filter;
...@@ -238,7 +238,7 @@ static int CreateFilter ( vlc_object_t *p_this ) ...@@ -238,7 +238,7 @@ static int CreateFilter ( vlc_object_t *p_this )
es_format_Init( &p_filter->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) ); es_format_Init( &p_filter->fmt_out, SPU_ES, VLC_FOURCC( 's','p','u',' ' ) );
p_filter->fmt_out.i_priority = 0; p_filter->fmt_out.i_priority = 0;
msg_Dbg( p_filter, "successfully loaded osdmenu filter" ); msg_Dbg( p_filter, "successfully loaded osdmenu filter" );
return VLC_SUCCESS; return VLC_SUCCESS;
error: error:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment