Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
e41147c8
Commit
e41147c8
authored
May 05, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the verbose variable, over the private i_verbose member
parent
99fec92f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-1
modules/misc/logger.c
modules/misc/logger.c
+4
-3
No files found.
modules/demux/live555.cpp
View file @
e41147c8
...
...
@@ -506,7 +506,7 @@ createnew:
i_http_port
=
var_CreateGetInteger
(
p_demux
,
"rtsp-http-port"
);
if
(
(
p_sys
->
rtsp
=
RTSPClient
::
createNew
(
*
p_sys
->
env
,
p_demux
->
p_libvlc
->
i_verbose
>
1
,
var_CreateGetInteger
(
p_demux
,
"verbose"
)
>
1
,
"VLC media player"
,
i_http_port
)
)
==
NULL
)
{
msg_Err
(
p_demux
,
"RTSPClient::createNew failed (%s)"
,
...
...
modules/misc/logger.c
View file @
e41147c8
...
...
@@ -305,7 +305,8 @@ static void Close( vlc_object_t *p_this )
/* Flush the queue and unsubscribe from the message queue */
FlushQueue
(
p_intf
->
p_sys
->
p_sub
,
p_intf
->
p_sys
->
p_file
,
p_intf
->
p_sys
->
i_mode
,
p_intf
->
p_libvlc
->
i_verbose
);
p_intf
->
p_sys
->
i_mode
,
var_CreateGetInteger
(
p_intf
,
"verbose"
)
);
msg_Unsubscribe
(
p_intf
,
p_intf
->
p_sys
->
p_sub
);
switch
(
p_intf
->
p_sys
->
i_mode
)
...
...
@@ -343,8 +344,8 @@ static void Run( intf_thread_t *p_intf )
while
(
!
p_intf
->
b_die
)
{
FlushQueue
(
p_intf
->
p_sys
->
p_sub
,
p_intf
->
p_sys
->
p_file
,
p_intf
->
p_sys
->
i_mode
,
p_intf
->
p_libvlc
->
i_verbose
);
p_intf
->
p_sys
->
i_mode
,
var_CreateGetInteger
(
p_intf
,
"verbose"
)
);
if
(
p_intf
->
p_sys
->
p_rrd
)
DoRRD
(
p_intf
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment