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
8e081cf1
Commit
8e081cf1
authored
Aug 30, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reenables media library loading
Uses --no-media-library if you don't want to use it (see #1047)
parent
66b4033b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
10 deletions
+2
-10
src/playlist/loadsave.c
src/playlist/loadsave.c
+2
-10
No files found.
src/playlist/loadsave.c
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
;
p
laylist_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
)
...
...
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