Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
822485d5
Commit
822485d5
authored
Oct 14, 2006
by
Philippe Morin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a method to set playlist in loop mode.
parent
be639def
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/control/playlist.c
src/control/playlist.c
+7
-0
No files found.
src/control/playlist.c
View file @
822485d5
...
...
@@ -30,6 +30,13 @@
#define PL p_instance->p_libvlc_int->p_playlist
void
libvlc_playlist_loop
(
libvlc_instance_t
*
p_instance
,
vlc_bool_t
loop
,
libvlc_exception_t
*
p_e
)
{
assert
(
PL
);
var_SetBool
(
PL
,
"loop"
,
loop
);
}
void
libvlc_playlist_play
(
libvlc_instance_t
*
p_instance
,
int
i_id
,
int
i_options
,
char
**
ppsz_options
,
libvlc_exception_t
*
p_e
)
...
...
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