Changeset e41147c8740c66f2787012d819ffa19a917fc929
- 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
| rd1d3dc1 |
re41147c |
|
| 507 | 507 | |
|---|
| 508 | 508 | if( ( p_sys->rtsp = RTSPClient::createNew( *p_sys->env, |
|---|
| 509 | | p_demux->p_libvlc->i_verbose > 1, |
|---|
| | 509 | var_CreateGetInteger( p_demux, "verbose" ) > 1, |
|---|
| 510 | 510 | "VLC media player", i_http_port ) ) == NULL ) |
|---|
| 511 | 511 | { |
|---|
| r97897ee |
re41147c |
|
| 306 | 306 | /* Flush the queue and unsubscribe from the message queue */ |
|---|
| 307 | 307 | 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" ) ); |
|---|
| 309 | 310 | msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub ); |
|---|
| 310 | 311 | |
|---|
| … | … | |
| 344 | 345 | { |
|---|
| 345 | 346 | 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" ) ); |
|---|
| 348 | 349 | if( p_intf->p_sys->p_rrd ) |
|---|
| 349 | 350 | DoRRD( p_intf ); |
|---|