X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fvideo_filter%2Fchain.c;h=d56f67e5e85e77b9d9cb03b9e423e11bb6d6b984;hb=afead23d452824a1e5ae0f61716c6a6ed22ebc8e;hp=1c295bba856d842c800c93b2bf8f014177a23150;hpb=db9c722322fa9ed556368366566d119a5b04cc92;p=vlc diff --git a/modules/video_filter/chain.c b/modules/video_filter/chain.c index 1c295bba85..d56f67e5e8 100644 --- a/modules/video_filter/chain.c +++ b/modules/video_filter/chain.c @@ -39,11 +39,11 @@ static int Activate ( vlc_object_t * ); static void Destroy ( vlc_object_t * ); -vlc_module_begin(); - set_description( N_("Video filtering using a chain of video filter modules") ); - set_capability( "video filter2", 1 ); - set_callbacks( Activate, Destroy ); -vlc_module_end(); +vlc_module_begin () + set_description( N_("Video filtering using a chain of video filter modules") ) + set_capability( "video filter2", 1 ) + set_callbacks( Activate, Destroy ) +vlc_module_end () /***************************************************************************** * Local prototypes. @@ -182,13 +182,13 @@ static int BuildChromaChain( filter_t *p_filter ) if( var_Create( p_filter, MODULE_STRING"-level", VLC_VAR_INTEGER | (b_first ? VLC_VAR_DOINHERIT : 0 ) ) ) { - msg_Err( p_filter, "Failed to create %s variable\n", psz_option ); + msg_Err( p_filter, "Failed to create %s variable", psz_option ); return VLC_EGENERIC; } int i_level = var_GetInteger( p_filter, psz_option ); if( i_level >= CHAIN_LEVEL_MAX ) { - msg_Err( p_filter, "Too high level of recursion (%d)\n", i_level ); + msg_Err( p_filter, "Too high level of recursion (%d)", i_level ); return VLC_EGENERIC; } var_SetInteger( p_filter, psz_option, i_level + 1 );