Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
fc3d65f7
Commit
fc3d65f7
authored
Mar 17, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Src: more comprehensible debug messages
parent
913ab9c0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
src/input/input.c
src/input/input.c
+2
-0
src/input/stream.c
src/input/stream.c
+2
-2
src/playlist/thread.c
src/playlist/thread.c
+2
-2
No files found.
src/input/input.c
View file @
fc3d65f7
...
...
@@ -809,7 +809,9 @@ static void MainLoop( input_thread_t *p_input, bool b_interactive )
break
;
}
#ifndef NDEBUG
msg_Dbg
(
p_input
,
"control type=%d"
,
i_type
);
#endif
if
(
Control
(
p_input
,
i_type
,
val
)
)
{
...
...
src/input/stream.c
View file @
fc3d65f7
...
...
@@ -384,7 +384,7 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
if
(
p_sys
->
method
==
STREAM_METHOD_BLOCK
)
{
msg_Dbg
(
s
,
"Using
AStream*Block
"
);
msg_Dbg
(
s
,
"Using
block method for AStream*
"
);
s
->
pf_read
=
AStreamReadBlock
;
s
->
pf_peek
=
AStreamPeekBlock
;
...
...
@@ -411,7 +411,7 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
assert
(
p_sys
->
method
==
STREAM_METHOD_STREAM
);
msg_Dbg
(
s
,
"Using
AStream*Stream
"
);
msg_Dbg
(
s
,
"Using
stream method for AStream*
"
);
s
->
pf_read
=
AStreamReadStream
;
s
->
pf_peek
=
AStreamPeekStream
;
...
...
src/playlist/thread.c
View file @
fc3d65f7
...
...
@@ -72,7 +72,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
/* */
playlist_private_t
*
p_sys
=
pl_priv
(
p_playlist
);
msg_Dbg
(
p_playlist
,
"
Deactivate
"
);
msg_Dbg
(
p_playlist
,
"
deactivating the playlist
"
);
PL_LOCK
;
vlc_object_kill
(
p_playlist
);
...
...
@@ -103,7 +103,7 @@ void playlist_Deactivate( playlist_t *p_playlist )
PL_UNLOCK
;
msg_Dbg
(
p_playlist
,
"
D
eactivated"
);
msg_Dbg
(
p_playlist
,
"
playlist correctly d
eactivated"
);
}
/* */
...
...
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