From: Sam Hocevar Date: Tue, 11 Jul 2000 23:03:54 +0000 (+0000) Subject: . changement cosm�tique X-Git-Tag: 0.1.99e~6 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=b8397f8fc8e651c972be6e32e12aeae3090ae38e;p=vlc . changement cosm�tique --- diff --git a/include/config.h.in b/include/config.h.in index 9aa49cd2f6..519cf30225 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -44,7 +44,7 @@ /* "(" PROGRAM_BUILD ") (" PROGRAM_OPTIONS ")\n" */ \ "Copyright 1996-2000 VideoLAN\n" #define COPYRIGHT_MESSAGE "VideoLAN Client - version @VLC_VERSION@" \ - " @VLC_CODENAME@ - (c)1996-2000 VideoLAN" + " @VLC_CODENAME@ - (c)1996-2000 VideoLAN\n" #define VERSION "@VLC_VERSION@" diff --git a/src/interface/main.c b/src/interface/main.c index b991a4e896..bd50e63cbe 100644 --- a/src/interface/main.c +++ b/src/interface/main.c @@ -426,6 +426,8 @@ static int GetConfiguration( int i_argc, char *ppsz_argv[], char *ppsz_env[] ) p_main->ppsz_env = ppsz_env; SetDefaultConfiguration(); + intf_MsgImm( COPYRIGHT_MESSAGE "\n" ); + /* Parse command line options */ opterr = 0; while( ( c = getopt_long( i_argc, ppsz_argv, psz_shortopts, longopts, 0 ) ) != EOF ) @@ -547,8 +549,6 @@ static void Usage( int i_fashion ) return; } - intf_MsgImm( COPYRIGHT_MESSAGE "\n" ); - /* Options */ intf_Msg( "\n" "Options:\n" diff --git a/src/video_parser/vpar_synchro.c b/src/video_parser/vpar_synchro.c index c7ef44e1cd..b1b732df35 100644 --- a/src/video_parser/vpar_synchro.c +++ b/src/video_parser/vpar_synchro.c @@ -167,8 +167,8 @@ void vpar_SynchroUpdateStructures( vpar_thread_t * p_vpar, intf_ErrMsg( "P: %.2f/%i ", p_vpar->synchro.displayable_p, p_vpar->synchro.i_P_seen ); if( p_vpar->synchro.b_all_B ) - intf_ErrMsg( "B: %i/%i", p_vpar->synchro.displayable_b, - p_vpar->synchro.displayable_b ); + intf_ErrMsg( "B: %i/%i", p_vpar->synchro.i_B_seen, + p_vpar->synchro.i_B_seen ); else if( p_vpar->synchro.displayable_b > 0 ) intf_ErrMsg( "B: %.2f/%i", p_vpar->synchro.displayable_b, p_vpar->synchro.i_B_seen );