Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
14246592
Commit
14246592
authored
Apr 15, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print error message when loading the playlist fails
(which is always)
parent
975c0e3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
9 deletions
+26
-9
src/playlist/loadsave.c
src/playlist/loadsave.c
+26
-9
No files found.
src/playlist/loadsave.c
View file @
14246592
...
...
@@ -86,10 +86,12 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
int
playlist_MLLoad
(
playlist_t
*
p_playlist
)
{
#ifndef THIS_PIECE_OF_CODE_IS_FIXED // see #1047 and possibly others
(
void
)
p_playlist
;
#else
char
*
psz_uri
,
*
psz_homedir
=
p_playlist
->
p_libvlc
->
psz_homedir
;
#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;
if( !config_GetInt( p_playlist, "media-library") ) return VLC_SUCCESS;
...
...
@@ -98,13 +100,21 @@ int playlist_MLLoad( playlist_t *p_playlist )
msg_Err( p_playlist, "no home directory, cannot load media library") ;
return VLC_EGENERIC;
}
asprintf
(
&
psz_uri
,
"file/xspf-open://%s"
DIR_SEP
CONFIG_DIR
DIR_SEP
"ml.xsp"
,
psz_homedir
);
if( asprintf( &psz_uri, "file/xspf-open://%s" DIR_SEP CONFIG_DIR DIR_SEP
"ml.xsp", psz_homedir ) == -1 )
{
psz_uri = NULL;
goto error;
}
p_input = input_ItemNewExt( p_playlist, psz_uri,
_("Media Library"), 0, NULL, -1 );
p_playlist
->
p_ml_category
->
p_input
=
p_input
;
p_playlist
->
p_ml_onelevel
->
p_input
=
p_input
;
if( p_input == NULL )
goto error;
p_playlist->p_ml_onelevel->p_input =
p_playlist->p_ml_category->p_input = p_input;
p_playlist->b_doing_ml = VLC_TRUE;
stats_TimerStart( p_playlist, "ML Load", STATS_TIMER_ML_LOAD );
...
...
@@ -113,8 +123,15 @@ int playlist_MLLoad( playlist_t *p_playlist )
p_playlist->b_doing_ml = VLC_FALSE;
free( psz_uri );
#endif
return VLC_SUCCESS;
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