Changeset e41147c8740c66f2787012d819ffa19a917fc929

Show
Ignore:
Timestamp:
05/05/08 09:51:07 (7 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1209973867 +0200
git-parent:

[99fec92fb8d61c7702006db41f5ab7dfd6111e5b]

git-author:
Rafaël Carré <funman@videolan.org> 1209973867 +0200
Message:

Use the verbose variable, over the private i_verbose member

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/live555.cpp

    rd1d3dc1 re41147c  
    507507 
    508508    if( ( p_sys->rtsp = RTSPClient::createNew( *p_sys->env, 
    509           p_demux->p_libvlc->i_verbose > 1, 
     509          var_CreateGetInteger( p_demux, "verbose" ) > 1, 
    510510          "VLC media player", i_http_port ) ) == NULL ) 
    511511    { 
  • modules/misc/logger.c

    r97897ee re41147c  
    306306    /* Flush the queue and unsubscribe from the message queue */ 
    307307    FlushQueue( p_intf->p_sys->p_sub, p_intf->p_sys->p_file, 
    308                 p_intf->p_sys->i_mode, p_intf->p_libvlc->i_verbose ); 
     308                p_intf->p_sys->i_mode, 
     309                var_CreateGetInteger( p_intf, "verbose" ) ); 
    309310    msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub ); 
    310311 
     
    344345    { 
    345346        FlushQueue( p_intf->p_sys->p_sub, p_intf->p_sys->p_file, 
    346                     p_intf->p_sys->i_mode, p_intf->p_libvlc->i_verbose ); 
    347  
     347                    p_intf->p_sys->i_mode, 
     348                    var_CreateGetInteger( p_intf, "verbose" ) ); 
    348349        if( p_intf->p_sys->p_rrd ) 
    349350            DoRRD( p_intf );