Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
913ab9c0
Commit
913ab9c0
authored
Mar 17, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improved debug messages
parent
3a45efe2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/input/stream.c
src/input/stream.c
+2
-2
src/playlist/thread.c
src/playlist/thread.c
+3
-3
No files found.
src/input/stream.c
View file @
913ab9c0
...
...
@@ -667,7 +667,7 @@ static void AStreamPrebufferBlock( stream_t *s )
int64_t
i_first
=
0
;
int64_t
i_start
;
msg_Dbg
(
s
,
"
pre
buffering"
);
msg_Dbg
(
s
,
"
starting pre-
buffering"
);
i_start
=
mdate
();
for
(
;;
)
{
...
...
@@ -1420,7 +1420,7 @@ static void AStreamPrebufferStream( stream_t *s )
int64_t
i_first
=
0
;
int64_t
i_start
;
msg_Dbg
(
s
,
"
pre
buffering"
);
msg_Dbg
(
s
,
"
starting pre-
buffering"
);
i_start
=
mdate
();
for
(
;;
)
{
...
...
src/playlist/thread.c
View file @
913ab9c0
...
...
@@ -64,7 +64,7 @@ void playlist_Activate( playlist_t *p_playlist )
{
msg_Err
(
p_playlist
,
"cannot spawn playlist thread"
);
}
msg_Dbg
(
p_playlist
,
"
A
ctivated"
);
msg_Dbg
(
p_playlist
,
"
playlist threads correctly a
ctivated"
);
}
void
playlist_Deactivate
(
playlist_t
*
p_playlist
)
...
...
@@ -312,7 +312,7 @@ static playlist_item_t *NextItem( playlist_t *p_playlist )
{
p_new
=
p_sys
->
request
.
p_item
;
int
i_skip
=
p_sys
->
request
.
i_skip
;
PL_DEBUG
(
"processing request item
%s node %s skip
%i"
,
PL_DEBUG
(
"processing request item
: %s, node: %s, skip:
%i"
,
PLI_NAME
(
p_sys
->
request
.
p_item
),
PLI_NAME
(
p_sys
->
request
.
p_node
),
i_skip
);
...
...
@@ -543,7 +543,7 @@ static void LoopRequest( playlist_t *p_playlist )
playlist_item_t
*
p_item
=
NextItem
(
p_playlist
);
if
(
p_item
)
{
msg_Dbg
(
p_playlist
,
"starting
new
item"
);
msg_Dbg
(
p_playlist
,
"starting
playback of the new playlist
item"
);
PlayItem
(
p_playlist
,
p_item
);
return
;
}
...
...
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