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
f9610dec
Commit
f9610dec
authored
Jul 24, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* input: release p_playlist.
parent
051cddc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
modules/misc/dummy/input.c
modules/misc/dummy/input.c
+9
-9
No files found.
modules/misc/dummy/input.c
View file @
f9610dec
...
...
@@ -201,6 +201,7 @@ static int Demux( demux_t *p_demux )
{
demux_sys_t
*
p_sys
=
p_demux
->
p_sys
;
playlist_t
*
p_playlist
;
vlc_bool_t
b_eof
=
VLC_FALSE
;
p_playlist
=
vlc_object_find
(
p_demux
,
VLC_OBJECT_PLAYLIST
,
FIND_PARENT
);
...
...
@@ -213,8 +214,8 @@ static int Demux( demux_t *p_demux )
switch
(
p_sys
->
i_command
)
{
case
COMMAND_QUIT
:
p_demux
->
p_vlc
->
b_die
=
1
;
return
0
;
b_eof
=
p_demux
->
p_vlc
->
b_die
=
VLC_TRUE
;
break
;
case
COMMAND_LOOP
:
playlist_Goto
(
p_playlist
,
0
);
...
...
@@ -222,20 +223,19 @@ static int Demux( demux_t *p_demux )
case
COMMAND_PAUSE
:
if
(
mdate
()
>=
p_sys
->
expiration
)
{
return
0
;
}
msleep
(
10000
);
b_eof
=
VLC_TRUE
;
else
msleep
(
10000
);
break
;
case
COMMAND_NOP
:
default:
return
0
;
b_eof
=
VLC_TRUE
;
break
;
}
vlc_object_release
(
p_playlist
);
return
1
;
return
b_eof
?
0
:
1
;
}
static
int
DemuxControl
(
demux_t
*
p_demux
,
int
i_query
,
va_list
args
)
...
...
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