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
6edaeb5f
Commit
6edaeb5f
authored
Nov 02, 2003
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed debug messages
parent
63beb0fd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
src/playlist/playlist.c
src/playlist/playlist.c
+1
-5
No files found.
src/playlist/playlist.c
View file @
6edaeb5f
...
...
@@ -2,7 +2,7 @@
* playlist.c : Playlist management functions
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: playlist.c,v 1.6
2 2003/10/29 17:32:55
zorglub Exp $
* $Id: playlist.c,v 1.6
3 2003/11/02 23:13:30
zorglub Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -91,7 +91,6 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
playlist_CreateGroup
(
p_playlist
,
strdup
(
"Normal"
)
);
msg_Dbg
(
p_playlist
,
"pouet"
);
if
(
vlc_thread_create
(
p_playlist
,
"playlist"
,
RunThread
,
VLC_THREAD_PRIORITY_LOW
,
VLC_TRUE
)
)
{
...
...
@@ -100,7 +99,6 @@ playlist_t * __playlist_Create ( vlc_object_t *p_parent )
return
NULL
;
}
msg_Dbg
(
p_playlist
,
"pouet2"
);
/* The object has been initialized, now attach it */
vlc_object_attach
(
p_playlist
,
p_parent
);
...
...
@@ -274,8 +272,6 @@ static void RunThread ( playlist_t *p_playlist )
/* Tell above that we're ready */
vlc_thread_ready
(
p_playlist
);
msg_Dbg
(
p_playlist
,
"pouet3"
);
while
(
!
p_playlist
->
b_die
)
{
vlc_mutex_lock
(
&
p_playlist
->
object_lock
);
...
...
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