Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
456
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
8e081cf1
Commit
8e081cf1
authored
17 years ago
by
Rafaël Carré
Browse files
Options
Downloads
Patches
Plain Diff
Reenables media library loading
Uses --no-media-library if you don't want to use it (see
#1047
)
parent
66b4033b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/playlist/loadsave.c
+2
-10
2 additions, 10 deletions
src/playlist/loadsave.c
with
2 additions
and
10 deletions
src/playlist/loadsave.c
+
2
−
10
View file @
8e081cf1
...
...
@@ -86,10 +86,6 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
int
playlist_MLLoad
(
playlist_t
*
p_playlist
)
{
#if 0
FIXME: this code breaks streaming output (or streaming output breaks this,
whichever you prefer).
const
char
*
psz_homedir
=
p_playlist
->
p_libvlc
->
psz_homedir
;
char
*
psz_uri
=
NULL
;
input_item_t
*
p_input
;
...
...
@@ -113,8 +109,8 @@ int playlist_MLLoad( playlist_t *p_playlist )
if
(
p_input
==
NULL
)
goto
error
;
p_
playlist
->p_ml_onelevel->p_input =
p_playlist->p_ml_category->p_input = p_input
;
playlist
_AddInput
(
p_playlist
,
p_input
,
PLAYLIST_APPEND
,
0
,
VLC_FALSE
,
VLC_FALSE
)
;
p_playlist
->
b_doing_ml
=
VLC_TRUE
;
stats_TimerStart
(
p_playlist
,
"ML Load"
,
STATS_TIMER_ML_LOAD
);
...
...
@@ -128,10 +124,6 @@ int playlist_MLLoad( playlist_t *p_playlist )
error:
free
(
psz_uri
);
return
VLC_ENOMEM
;
#else
msg_Err
(
p_playlist
,
"Reloading playlist not implemented."
);
return
VLC_EGENERIC
;
#endif
}
int
playlist_MLDump
(
playlist_t
*
p_playlist
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment