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
96f1226f
Commit
96f1226f
authored
Jun 22, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* all: rework of the input.
parent
51d78b67
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
7 deletions
+2
-7
src/playlist/loadsave.c
src/playlist/loadsave.c
+1
-3
src/playlist/playlist.c
src/playlist/playlist.c
+1
-4
No files found.
src/playlist/loadsave.c
View file @
96f1226f
...
...
@@ -27,14 +27,12 @@
#include <vlc/vlc.h>
#include <vlc/vout.h>
#include <vlc/sout.h>
#include <vlc/input.h>
#ifdef HAVE_ERRNO_H
# include <errno.h>
#endif
#include "stream_control.h"
#include "input_ext-intf.h"
#include "vlc_playlist.h"
#define PLAYLIST_FILE_HEADER "# vlc playlist file version 0.5"
...
...
src/playlist/playlist.c
View file @
96f1226f
...
...
@@ -29,9 +29,6 @@
#include <vlc/sout.h>
#include <vlc/input.h>
#include "stream_control.h"
#include "input_ext-intf.h"
#include "vlc_playlist.h"
#define PLAYLIST_FILE_HEADER_0_5 "# vlc playlist file version 0.5"
...
...
@@ -386,7 +383,7 @@ static void RunThread ( playlist_t *p_playlist )
}
continue
;
}
else
if
(
p_playlist
->
p_input
->
stream
.
control
.
i_status
!=
INIT_S
)
else
if
(
p_playlist
->
p_input
->
i_state
!=
INIT_S
)
{
vlc_mutex_unlock
(
&
p_playlist
->
object_lock
);
i_vout_destroyed_date
=
...
...
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