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
494ace96
Commit
494ace96
authored
Jul 21, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use pl_Locked and pl_Unlocked
parent
a518149f
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
37 additions
and
36 deletions
+37
-36
modules/access/cdda.c
modules/access/cdda.c
+3
-3
modules/access/cdda/info.c
modules/access/cdda/info.c
+2
-2
modules/access/directory.c
modules/access/directory.c
+3
-3
modules/control/dbus.c
modules/control/dbus.c
+1
-1
modules/gui/macosx/wizard.m
modules/gui/macosx/wizard.m
+1
-1
modules/gui/pda/pda_callbacks.c
modules/gui/pda/pda_callbacks.c
+2
-2
modules/gui/qt4/components/playlist/playlist_model.cpp
modules/gui/qt4/components/playlist/playlist_model.cpp
+14
-13
modules/gui/qt4/components/playlist/standardpanel.cpp
modules/gui/qt4/components/playlist/standardpanel.cpp
+1
-1
modules/gui/qt4/dialogs_provider.cpp
modules/gui/qt4/dialogs_provider.cpp
+1
-1
modules/gui/skins2/vars/playtree.cpp
modules/gui/skins2/vars/playtree.cpp
+1
-1
modules/services_discovery/upnp_intel.cpp
modules/services_discovery/upnp_intel.cpp
+1
-1
src/control/playlist.c
src/control/playlist.c
+1
-1
src/libvlc.c
src/libvlc.c
+2
-2
src/misc/win32_specific.c
src/misc/win32_specific.c
+1
-1
src/playlist/item.c
src/playlist/item.c
+3
-3
No files found.
modules/access/cdda.c
View file @
494ace96
...
@@ -201,7 +201,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -201,7 +201,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_playlist
->
status
.
p_item
->
p_input
==
p_current
)
if
(
p_playlist
->
status
.
p_item
->
p_input
==
p_current
)
p_item
=
p_playlist
->
status
.
p_item
;
p_item
=
p_playlist
->
status
.
p_item
;
else
else
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
p_current
,
false
);
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
p_current
,
pl_Unlocked
);
if
(
p_item
)
if
(
p_item
)
i_ret
=
GetTracks
(
p_access
,
p_playlist
,
p_item
);
i_ret
=
GetTracks
(
p_access
,
p_playlist
,
p_item
);
...
@@ -420,7 +420,7 @@ static int GetTracks( access_t *p_access,
...
@@ -420,7 +420,7 @@ static int GetTracks( access_t *p_access,
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_parent
,
false
);
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_parent
,
pl_Unlocked
);
playlist_ItemSetName
(
p_parent
,
"Audio CD"
);
playlist_ItemSetName
(
p_parent
,
"Audio CD"
);
var_SetInteger
(
p_playlist
,
"item-change"
,
p_parent
->
p_input
->
i_id
);
var_SetInteger
(
p_playlist
,
"item-change"
,
p_parent
->
p_input
->
i_id
);
...
@@ -495,7 +495,7 @@ static int GetTracks( access_t *p_access,
...
@@ -495,7 +495,7 @@ static int GetTracks( access_t *p_access,
int
i_ret
=
playlist_BothAddInput
(
p_playlist
,
p_input_item
,
int
i_ret
=
playlist_BothAddInput
(
p_playlist
,
p_input_item
,
p_item_in_category
,
p_item_in_category
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
NULL
,
NULL
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
NULL
,
NULL
,
false
);
pl_Unlocked
);
vlc_gc_decref
(
p_input_item
);
vlc_gc_decref
(
p_input_item
);
free
(
psz_uri
);
free
(
psz_opt
);
free
(
psz_name
);
free
(
psz_uri
);
free
(
psz_opt
);
free
(
psz_name
);
free
(
psz_first
);
free
(
psz_last
);
free
(
psz_first
);
free
(
psz_last
);
...
...
modules/access/cdda/info.c
View file @
494ace96
...
@@ -882,7 +882,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
...
@@ -882,7 +882,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
input_thread_t
*
p_input
=
(
input_thread_t
*
)
vlc_object_find
(
p_access
,
VLC_OBJECT_INPUT
,
FIND_PARENT
);
input_thread_t
*
p_input
=
(
input_thread_t
*
)
vlc_object_find
(
p_access
,
VLC_OBJECT_INPUT
,
FIND_PARENT
);
if
(
p_input
)
if
(
p_input
)
{
{
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
input_GetItem
(
p_input
),
false
);
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
input_GetItem
(
p_input
),
pl_Unlocked
);
if
(
p_item
==
p_playlist
->
status
.
p_item
&&
!
b_single_track
)
if
(
p_item
==
p_playlist
->
status
.
p_item
&&
!
b_single_track
)
b_play
=
true
;
b_play
=
true
;
...
@@ -924,7 +924,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
...
@@ -924,7 +924,7 @@ CDDAFixupPlaylist( access_t *p_access, cdda_data_t *p_cdda,
input_title_t
*
t
;
input_title_t
*
t
;
if
(
!
p_cdda
->
b_nav_mode
)
if
(
!
p_cdda
->
b_nav_mode
)
playlist_ItemToNode
(
p_playlist
,
p_item
,
false
);
playlist_ItemToNode
(
p_playlist
,
p_item
,
pl_Unlocked
);
for
(
i
=
0
;
i
<
p_cdda
->
i_tracks
;
i
++
)
for
(
i
=
0
;
i
<
p_cdda
->
i_tracks
;
i
++
)
{
{
...
...
modules/access/directory.c
View file @
494ace96
...
@@ -220,7 +220,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
...
@@ -220,7 +220,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
}
}
p_current_input
=
input_GetItem
(
p_input
);
p_current_input
=
input_GetItem
(
p_input
);
p_current
=
playlist_ItemGetByInput
(
p_playlist
,
p_current_input
,
false
);
p_current
=
playlist_ItemGetByInput
(
p_playlist
,
p_current_input
,
pl_Unlocked
);
if
(
!
p_current
)
if
(
!
p_current
)
{
{
...
@@ -254,7 +254,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
...
@@ -254,7 +254,7 @@ static ssize_t Read( access_t *p_access, uint8_t *p_buffer, size_t i_len)
p_current
->
p_input
->
i_type
=
ITEM_TYPE_DIRECTORY
;
p_current
->
p_input
->
i_type
=
ITEM_TYPE_DIRECTORY
;
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_current
,
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_current
,
false
);
pl_Unlocked
);
ReadDir
(
p_access
,
p_playlist
,
psz_name
,
i_mode
,
ReadDir
(
p_access
,
p_playlist
,
psz_name
,
i_mode
,
p_item_in_category
,
p_item_in_category
,
...
@@ -540,7 +540,7 @@ static int ReadDir( access_t *p_access, playlist_t *p_playlist,
...
@@ -540,7 +540,7 @@ static int ReadDir( access_t *p_access, playlist_t *p_playlist,
PLAYLIST_APPEND
|
PLAYLIST_PREPARSE
|
PLAYLIST_APPEND
|
PLAYLIST_PREPARSE
|
PLAYLIST_NO_REBUILD
,
PLAYLIST_NO_REBUILD
,
PLAYLIST_END
,
NULL
,
NULL
,
PLAYLIST_END
,
NULL
,
NULL
,
false
);
pl_Unlocked
);
vlc_gc_decref
(
p_input
);
vlc_gc_decref
(
p_input
);
if
(
i_ret
!=
VLC_SUCCESS
)
if
(
i_ret
!=
VLC_SUCCESS
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
...
...
modules/control/dbus.c
View file @
494ace96
...
@@ -877,7 +877,7 @@ static int TrackListChangeEmit( vlc_object_t *p_this, const char *psz_var,
...
@@ -877,7 +877,7 @@ static int TrackListChangeEmit( vlc_object_t *p_this, const char *psz_var,
playlist_t
*
p_playlist
=
(
playlist_t
*
)
p_this
;
playlist_t
*
p_playlist
=
(
playlist_t
*
)
p_this
;
playlist_add_t
*
p_add
=
newval
.
p_address
;
playlist_add_t
*
p_add
=
newval
.
p_address
;
playlist_item_t
*
p_item
;
playlist_item_t
*
p_item
;
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_node
,
false
);
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_node
,
pl_Unlocked
);
assert
(
p_item
);
assert
(
p_item
);
while
(
p_item
->
p_parent
)
while
(
p_item
->
p_parent
)
p_item
=
p_item
->
p_parent
;
p_item
=
p_item
->
p_parent
;
...
...
modules/gui/macosx/wizard.m
View file @
494ace96
...
@@ -1299,7 +1299,7 @@ static VLCWizard *_o_sharedInstance = nil;
...
@@ -1299,7 +1299,7 @@ static VLCWizard *_o_sharedInstance = nil;
if
(
x
==
0
)
if
(
x
==
0
)
{
{
/* play the first item and add the others afterwards */
/* play the first item and add the others afterwards */
playlist_item_t
*
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
p_input
,
true
);
playlist_item_t
*
p_item
=
playlist_ItemGetByInput
(
p_playlist
,
p_input
,
pl_Locked
);
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
true
,
NULL
,
playlist_Control
(
p_playlist
,
PLAYLIST_VIEWPLAY
,
true
,
NULL
,
p_item
);
p_item
);
}
}
...
...
modules/gui/pda/pda_callbacks.c
View file @
494ace96
...
@@ -138,7 +138,7 @@ static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options,
...
@@ -138,7 +138,7 @@ static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options,
PLAYLIST_APPEND
,
PLAYLIST_END
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
(
mtime_t
)
0
,
(
mtime_t
)
0
,
(
const
char
**
)
ppsz_options
,
i_pos
,
(
const
char
**
)
ppsz_options
,
i_pos
,
true
,
false
);
true
,
pl_Unlocked
);
}
}
/* Cleanup memory */
/* Cleanup memory */
...
@@ -165,7 +165,7 @@ void PlaylistRebuildListStore( intf_thread_t *p_intf,
...
@@ -165,7 +165,7 @@ void PlaylistRebuildListStore( intf_thread_t *p_intf,
vlc_object_lock
(
p_playlist
);
vlc_object_lock
(
p_playlist
);
for
(
i_dummy
=
0
;
i_dummy
<
playlist_CurrentSize
(
p_playlist
)
;
i_dummy
++
)
for
(
i_dummy
=
0
;
i_dummy
<
playlist_CurrentSize
(
p_playlist
)
;
i_dummy
++
)
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_dummy
,
true
);
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_dummy
,
pl_Locked
);
if
(
p_item
)
if
(
p_item
)
{
{
ppsz_text
[
0
]
=
p_item
->
p_input
->
psz_name
;
ppsz_text
[
0
]
=
p_item
->
p_input
->
psz_name
;
...
...
modules/gui/qt4/components/playlist/playlist_model.cpp
View file @
494ace96
...
@@ -168,9 +168,9 @@ bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
...
@@ -168,9 +168,9 @@ bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
PL_LOCK
;
PL_LOCK
;
playlist_item_t
*
p_target
=
playlist_item_t
*
p_target
=
playlist_ItemGetById
(
p_playlist
,
targetItem
->
i_id
,
playlist_ItemGetById
(
p_playlist
,
targetItem
->
i_id
,
true
);
pl_Locked
);
playlist_item_t
*
p_src
=
playlist_ItemGetById
(
p_playlist
,
srcId
,
playlist_item_t
*
p_src
=
playlist_ItemGetById
(
p_playlist
,
srcId
,
true
);
pl_Locked
);
if
(
!
p_target
||
!
p_src
)
if
(
!
p_target
||
!
p_src
)
{
{
...
@@ -183,7 +183,7 @@ bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
...
@@ -183,7 +183,7 @@ bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
assert
(
parentItem
);
assert
(
parentItem
);
playlist_item_t
*
p_parent
=
playlist_item_t
*
p_parent
=
playlist_ItemGetById
(
p_playlist
,
parentItem
->
i_id
,
playlist_ItemGetById
(
p_playlist
,
parentItem
->
i_id
,
true
);
pl_Locked
);
if
(
!
p_parent
)
if
(
!
p_parent
)
{
{
PL_UNLOCK
;
PL_UNLOCK
;
...
@@ -260,7 +260,7 @@ void PLModel::activateItem( const QModelIndex &index )
...
@@ -260,7 +260,7 @@ void PLModel::activateItem( const QModelIndex &index )
assert
(
item
);
assert
(
item
);
PL_LOCK
;
PL_LOCK
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
true
);
pl_Locked
);
activateItem
(
p_item
);
activateItem
(
p_item
);
PL_UNLOCK
;
PL_UNLOCK
;
}
}
...
@@ -548,7 +548,7 @@ void PLModel::ProcessItemAppend( playlist_add_t *p_add )
...
@@ -548,7 +548,7 @@ void PLModel::ProcessItemAppend( playlist_add_t *p_add )
PL_LOCK
;
PL_LOCK
;
if
(
!
nodeItem
)
goto
end
;
if
(
!
nodeItem
)
goto
end
;
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_item
,
true
);
p_item
=
playlist_ItemGetById
(
p_playlist
,
p_add
->
i_item
,
pl_Locked
);
if
(
!
p_item
||
p_item
->
i_flags
&
PLAYLIST_DBL_FLAG
)
goto
end
;
if
(
!
p_item
||
p_item
->
i_flags
&
PLAYLIST_DBL_FLAG
)
goto
end
;
if
(
i_depth
==
DEPTH_SEL
&&
p_item
->
p_parent
&&
if
(
i_depth
==
DEPTH_SEL
&&
p_item
->
p_parent
&&
p_item
->
p_parent
->
i_id
!=
rootItem
->
i_id
)
p_item
->
p_parent
->
i_id
!=
rootItem
->
i_id
)
...
@@ -617,7 +617,7 @@ void PLModel::rebuild( playlist_item_t *p_root )
...
@@ -617,7 +617,7 @@ void PLModel::rebuild( playlist_item_t *p_root )
void
PLModel
::
UpdateNodeChildren
(
PLItem
*
root
)
void
PLModel
::
UpdateNodeChildren
(
PLItem
*
root
)
{
{
playlist_item_t
*
p_node
=
playlist_ItemGetById
(
p_playlist
,
root
->
i_id
,
playlist_item_t
*
p_node
=
playlist_ItemGetById
(
p_playlist
,
root
->
i_id
,
true
);
pl_Locked
);
UpdateNodeChildren
(
p_node
,
root
);
UpdateNodeChildren
(
p_node
,
root
);
}
}
...
@@ -639,7 +639,7 @@ void PLModel::UpdateNodeChildren( playlist_item_t *p_node, PLItem *root )
...
@@ -639,7 +639,7 @@ void PLModel::UpdateNodeChildren( playlist_item_t *p_node, PLItem *root )
void
PLModel
::
UpdateTreeItem
(
PLItem
*
item
,
bool
signal
,
bool
force
)
void
PLModel
::
UpdateTreeItem
(
PLItem
*
item
,
bool
signal
,
bool
force
)
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
true
);
pl_Locked
);
UpdateTreeItem
(
p_item
,
item
,
signal
,
force
);
UpdateTreeItem
(
p_item
,
item
,
signal
,
force
);
}
}
...
@@ -699,7 +699,7 @@ void PLModel::doDeleteItem( PLItem *item, QModelIndexList *fullList )
...
@@ -699,7 +699,7 @@ void PLModel::doDeleteItem( PLItem *item, QModelIndexList *fullList )
PL_LOCK
;
PL_LOCK
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
item
->
i_id
,
true
);
pl_Locked
);
if
(
!
p_item
)
if
(
!
p_item
)
{
{
PL_UNLOCK
;
return
;
PL_UNLOCK
;
return
;
...
@@ -756,7 +756,7 @@ next:
...
@@ -756,7 +756,7 @@ next:
{
{
playlist_item_t
*
p_root
=
playlist_ItemGetById
(
p_playlist
,
playlist_item_t
*
p_root
=
playlist_ItemGetById
(
p_playlist
,
rootItem
->
i_id
,
rootItem
->
i_id
,
true
);
pl_Locked
);
if
(
p_root
)
if
(
p_root
)
{
{
playlist_RecursiveNodeSort
(
p_playlist
,
p_root
,
playlist_RecursiveNodeSort
(
p_playlist
,
p_root
,
...
@@ -777,7 +777,7 @@ void PLModel::search( QString search_text )
...
@@ -777,7 +777,7 @@ void PLModel::search( QString search_text )
{
{
playlist_item_t
*
p_root
=
playlist_ItemGetById
(
p_playlist
,
playlist_item_t
*
p_root
=
playlist_ItemGetById
(
p_playlist
,
rootItem
->
i_id
,
rootItem
->
i_id
,
true
);
pl_Locked
);
assert
(
p_root
);
assert
(
p_root
);
char
*
psz_name
=
search_text
.
toUtf8
().
data
();
char
*
psz_name
=
search_text
.
toUtf8
().
data
();
playlist_LiveSearchUpdate
(
p_playlist
,
p_root
,
psz_name
);
playlist_LiveSearchUpdate
(
p_playlist
,
p_root
,
psz_name
);
...
@@ -792,7 +792,7 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
...
@@ -792,7 +792,7 @@ void PLModel::popup( QModelIndex & index, QPoint &point, QModelIndexList list )
assert
(
index
.
isValid
()
);
assert
(
index
.
isValid
()
);
PL_LOCK
;
PL_LOCK
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
itemId
(
index
),
true
);
itemId
(
index
),
pl_Locked
);
if
(
p_item
)
if
(
p_item
)
{
{
i_popup_item
=
p_item
->
i_id
;
i_popup_item
=
p_item
->
i_id
;
...
@@ -870,7 +870,8 @@ void PLModel::popupPlay()
...
@@ -870,7 +870,8 @@ void PLModel::popupPlay()
PL_LOCK
;
PL_LOCK
;
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_popup_item
,
true
);
i_popup_item
,
pl_Locked
);
activateItem
(
p_item
);
activateItem
(
p_item
);
}
}
PL_UNLOCK
;
PL_UNLOCK
;
...
@@ -880,7 +881,7 @@ void PLModel::popupInfo()
...
@@ -880,7 +881,7 @@ void PLModel::popupInfo()
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_popup_item
,
i_popup_item
,
false
);
pl_Unlocked
);
if
(
p_item
)
if
(
p_item
)
{
{
MediaInfoDialog
*
mid
=
new
MediaInfoDialog
(
p_intf
,
p_item
->
p_input
);
MediaInfoDialog
*
mid
=
new
MediaInfoDialog
(
p_intf
,
p_item
->
p_input
);
...
...
modules/gui/qt4/components/playlist/standardpanel.cpp
View file @
494ace96
...
@@ -317,7 +317,7 @@ void StandardPLPanel::setRoot( int i_root_id )
...
@@ -317,7 +317,7 @@ void StandardPLPanel::setRoot( int i_root_id )
{
{
QPL_LOCK
;
QPL_LOCK
;
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
THEPL
,
i_root_id
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
THEPL
,
i_root_id
,
true
);
pl_Locked
);
assert
(
p_item
);
assert
(
p_item
);
p_item
=
playlist_GetPreferredNode
(
THEPL
,
p_item
);
p_item
=
playlist_GetPreferredNode
(
THEPL
,
p_item
);
assert
(
p_item
);
assert
(
p_item
);
...
...
modules/gui/qt4/dialogs_provider.cpp
View file @
494ace96
...
@@ -447,7 +447,7 @@ void DialogsProvider::streamingDialog( QWidget *parent, QString mrl,
...
@@ -447,7 +447,7 @@ void DialogsProvider::streamingDialog( QWidget *parent, QString mrl,
playlist_AddExt
(
THEPL
,
qtu
(
mrl
),
"Streaming"
,
playlist_AddExt
(
THEPL
,
qtu
(
mrl
),
"Streaming"
,
PLAYLIST_APPEND
|
PLAYLIST_GO
,
PLAYLIST_END
,
PLAYLIST_APPEND
|
PLAYLIST_GO
,
PLAYLIST_END
,
-
1
,
&
psz_option
,
1
,
true
,
false
);
-
1
,
&
psz_option
,
1
,
true
,
pl_Unlocked
);
}
}
}
}
...
...
modules/gui/skins2/vars/playtree.cpp
View file @
494ace96
...
@@ -175,7 +175,7 @@ void Playtree::onAppend( playlist_add_t *p_add )
...
@@ -175,7 +175,7 @@ void Playtree::onAppend( playlist_add_t *p_add )
if
(
item
==
end
()
)
if
(
item
==
end
()
)
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
m_pPlaylist
,
p_add
->
i_item
,
false
);
m_pPlaylist
,
p_add
->
i_item
,
pl_Unlocked
);
if
(
!
p_item
)
return
;
if
(
!
p_item
)
return
;
UString
*
pName
=
new
UString
(
getIntf
(),
UString
*
pName
=
new
UString
(
getIntf
(),
p_item
->
p_input
->
psz_name
);
p_item
->
p_input
->
psz_name
);
...
...
modules/services_discovery/upnp_intel.cpp
View file @
494ace96
...
@@ -881,7 +881,7 @@ void MediaServer::_buildPlaylist( Container* parent )
...
@@ -881,7 +881,7 @@ void MediaServer::_buildPlaylist( Container* parent )
/* FIXME: playlist_AddInput() can fail */
/* FIXME: playlist_AddInput() can fail */
playlist_BothAddInput
(
p_playlist
,
p_input
,
parentNode
,
playlist_BothAddInput
(
p_playlist
,
p_input
,
parentNode
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
&
i_cat
,
NULL
,
PLAYLIST_APPEND
,
PLAYLIST_END
,
&
i_cat
,
NULL
,
false
);
pl_Unlocked
);
vlc_gc_decref
(
p_input
);
vlc_gc_decref
(
p_input
);
/* TODO: do this better by storing ids */
/* TODO: do this better by storing ids */
playlist_item_t
*
p_node
=
playlist_ItemGetById
(
p_playlist
,
i_cat
,
false
);
playlist_item_t
*
p_node
=
playlist_ItemGetById
(
p_playlist
,
i_cat
,
false
);
...
...
src/control/playlist.c
View file @
494ace96
...
@@ -172,7 +172,7 @@ int libvlc_playlist_add_extended( libvlc_instance_t *p_instance,
...
@@ -172,7 +172,7 @@ int libvlc_playlist_add_extended( libvlc_instance_t *p_instance,
}
}
return
playlist_AddExt
(
PL
,
psz_uri
,
psz_name
,
return
playlist_AddExt
(
PL
,
psz_uri
,
psz_name
,
PLAYLIST_INSERT
,
PLAYLIST_END
,
-
1
,
ppsz_options
,
PLAYLIST_INSERT
,
PLAYLIST_END
,
-
1
,
ppsz_options
,
i_options
,
1
,
false
);
i_options
,
1
,
pl_Unlocked
);
}
}
...
...
src/libvlc.c
View file @
494ace96
...
@@ -962,7 +962,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
...
@@ -962,7 +962,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
{
{
playlist_t
*
p_playlist
=
pl_Yield
(
p_libvlc
);
playlist_t
*
p_playlist
=
pl_Yield
(
p_libvlc
);
playlist_AddExt
(
p_playlist
,
val
.
psz_string
,
NULL
,
PLAYLIST_INSERT
,
0
,
playlist_AddExt
(
p_playlist
,
val
.
psz_string
,
NULL
,
PLAYLIST_INSERT
,
0
,
-
1
,
NULL
,
0
,
true
,
false
);
-
1
,
NULL
,
0
,
true
,
pl_Unlocked
);
pl_Release
(
p_libvlc
);
pl_Release
(
p_libvlc
);
}
}
free
(
val
.
psz_string
);
free
(
val
.
psz_string
);
...
@@ -1295,7 +1295,7 @@ static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[
...
@@ -1295,7 +1295,7 @@ static int GetFilenames( libvlc_int_t *p_vlc, int i_argc, const char *ppsz_argv[
playlist_t
*
p_playlist
=
pl_Yield
(
p_vlc
);
playlist_t
*
p_playlist
=
pl_Yield
(
p_vlc
);
playlist_AddExt
(
p_playlist
,
ppsz_argv
[
i_opt
],
NULL
,
PLAYLIST_INSERT
,
playlist_AddExt
(
p_playlist
,
ppsz_argv
[
i_opt
],
NULL
,
PLAYLIST_INSERT
,
0
,
-
1
,
(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
0
,
-
1
,
(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
i_options
,
true
,
false
);
i_options
,
true
,
pl_Unlocked
);
pl_Release
(
p_vlc
);
pl_Release
(
p_vlc
);
}
}
...
...
src/misc/win32_specific.c
View file @
494ace96
...
@@ -336,7 +336,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
...
@@ -336,7 +336,7 @@ LRESULT CALLBACK WMCOPYWNDPROC( HWND hwnd, UINT uMsg, WPARAM wParam,
(
(
i_opt
||
p_data
->
enqueue
)
?
0
:
PLAYLIST_GO
),
(
(
i_opt
||
p_data
->
enqueue
)
?
0
:
PLAYLIST_GO
),
PLAYLIST_END
,
-
1
,
PLAYLIST_END
,
-
1
,
(
char
const
**
)(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
(
char
const
**
)(
i_options
?
&
ppsz_argv
[
i_opt
+
1
]
:
NULL
),
i_options
,
true
,
false
);
i_options
,
true
,
pl_Unlocked
);
i_opt
+=
i_options
;
i_opt
+=
i_options
;
}
}
...
...
src/playlist/item.c
View file @
494ace96
...
@@ -87,14 +87,14 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
...
@@ -87,14 +87,14 @@ static void input_item_subitem_added( const vlc_event_t * p_event,
if
(
p_item_in_category
->
i_children
==
-
1
)
if
(
p_item_in_category
->
i_children
==
-
1
)
{
{
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_item_in_category
=
playlist_ItemToNode
(
p_playlist
,
p_item_in_category
,
true
);
p_item_in_category
,
pl_Locked
);
p_item_in_category
->
p_input
->
i_type
=
ITEM_TYPE_PLAYLIST
;
p_item_in_category
->
p_input
->
i_type
=
ITEM_TYPE_PLAYLIST
;
}
}
int
i_ret
=
playlist_BothAddInput
(
p_playlist
,
p_child
,
int
i_ret
=
playlist_BothAddInput
(
p_playlist
,
p_child
,
p_item_in_category
,
p_item_in_category
,
PLAYLIST_APPEND
|
PLAYLIST_SPREPARSE
,
PLAYLIST_END
,
PLAYLIST_APPEND
|
PLAYLIST_SPREPARSE
,
PLAYLIST_END
,
NULL
,
NULL
,
true
);
NULL
,
NULL
,
pl_Locked
);
if
(
i_ret
==
VLC_SUCCESS
&&
b_play
)
if
(
i_ret
==
VLC_SUCCESS
&&
b_play
)
{
{
...
@@ -313,7 +313,7 @@ void playlist_Clear( playlist_t * p_playlist, bool b_locked )
...
@@ -313,7 +313,7 @@ void playlist_Clear( playlist_t * p_playlist, bool b_locked )
int
playlist_DeleteFromItemId
(
playlist_t
*
p_playlist
,
int
i_id
)
int
playlist_DeleteFromItemId
(
playlist_t
*
p_playlist
,
int
i_id
)
{
{
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_id
,
playlist_item_t
*
p_item
=
playlist_ItemGetById
(
p_playlist
,
i_id
,
true
);
pl_Locked
);
if
(
!
p_item
)
return
VLC_EGENERIC
;
if
(
!
p_item
)
return
VLC_EGENERIC
;
return
DeleteInner
(
p_playlist
,
p_item
,
true
);
return
DeleteInner
(
p_playlist
,
p_item
,
true
);
}
}
...
...
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