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
59198c7d
Commit
59198c7d
authored
Oct 03, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: fix media library loading, fix #1320.
parent
2f9a9c57
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
3 deletions
+21
-3
src/playlist/loadsave.c
src/playlist/loadsave.c
+21
-3
No files found.
src/playlist/loadsave.c
View file @
59198c7d
...
...
@@ -22,6 +22,7 @@
*****************************************************************************/
#include <vlc/vlc.h>
#include <vlc_playlist.h>
#include <vlc_events.h>
#include "playlist_internal.h"
#include "modules/configuration.h"
#include <vlc_charset.h>
...
...
@@ -87,6 +88,18 @@ int playlist_Export( playlist_t * p_playlist, const char *psz_filename ,
return
VLC_SUCCESS
;
}
/*****************************************************************************
* A subitem has been added to the Media Library (Event Callback)
*****************************************************************************/
static
void
input_item_subitem_added
(
const
vlc_event_t
*
p_event
,
void
*
user_data
)
{
playlist_t
*
p_playlist
=
user_data
;
input_item_t
*
p_item
=
p_event
->
u
.
input_item_subitem_added
.
p_new_child
;
playlist_AddInput
(
p_playlist
,
p_item
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
VLC_FALSE
,
VLC_FALSE
);
}
int
playlist_MLLoad
(
playlist_t
*
p_playlist
)
{
const
char
*
psz_datadir
=
p_playlist
->
p_libvlc
->
psz_datadir
;
...
...
@@ -127,9 +140,11 @@ int playlist_MLLoad( playlist_t *p_playlist )
if
(
p_input
==
NULL
)
goto
error
;
/* FIXME [21574] pdherbemont do we need *install_input_item_observer ? */
playlist_AddInput
(
p_playlist
,
p_input
,
PLAYLIST_APPEND
,
0
,
VLC_FALSE
,
VLC_FALSE
);
p_playlist
->
p_ml_onelevel
->
p_input
=
p_playlist
->
p_ml_category
->
p_input
=
p_input
;
vlc_event_attach
(
&
p_input
->
event_manager
,
vlc_InputItemSubItemAdded
,
input_item_subitem_added
,
p_playlist
);
p_playlist
->
b_doing_ml
=
VLC_TRUE
;
stats_TimerStart
(
p_playlist
,
"ML Load"
,
STATS_TIMER_ML_LOAD
);
...
...
@@ -137,6 +152,9 @@ int playlist_MLLoad( playlist_t *p_playlist )
stats_TimerStop
(
p_playlist
,
STATS_TIMER_ML_LOAD
);
p_playlist
->
b_doing_ml
=
VLC_FALSE
;
vlc_event_detach
(
&
p_input
->
event_manager
,
vlc_InputItemSubItemAdded
,
input_item_subitem_added
,
p_playlist
);
free
(
psz_uri
);
return
VLC_SUCCESS
;
...
...
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