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
d057b0df
Commit
d057b0df
authored
Jul 19, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
playlist: playlist_NodeAddInput was noted as deprecated in docs, remove it from exported symbols.
parent
0a1480ee
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
include/vlc_playlist.h
include/vlc_playlist.h
+0
-1
modules/gui/wxwidgets/dialogs/playlist.cpp
modules/gui/wxwidgets/dialogs/playlist.cpp
+2
-2
src/libvlccore.sym
src/libvlccore.sym
+0
-1
src/playlist/playlist_internal.h
src/playlist/playlist_internal.h
+3
-0
No files found.
include/vlc_playlist.h
View file @
d057b0df
...
...
@@ -368,7 +368,6 @@ VLC_EXPORT( int, playlist_ItemSetName, (playlist_item_t *, const char * ) );
VLC_EXPORT
(
int
,
playlist_Add
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_AddExt
,
(
playlist_t
*
,
const
char
*
,
const
char
*
,
int
,
int
,
mtime_t
,
const
char
*
const
*
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_AddInput
,
(
playlist_t
*
,
input_item_t
*
,
int
,
int
,
bool
,
bool
)
);
VLC_EXPORT
(
playlist_item_t
*
,
playlist_NodeAddInput
,
(
playlist_t
*
,
input_item_t
*
,
playlist_item_t
*
,
int
,
int
,
bool
)
);
VLC_EXPORT
(
int
,
playlist_BothAddInput
,
(
playlist_t
*
,
input_item_t
*
,
playlist_item_t
*
,
int
,
int
,
int
*
,
int
*
,
bool
)
);
/********************** Misc item operations **********************/
...
...
modules/gui/wxwidgets/dialogs/playlist.cpp
View file @
d057b0df
...
...
@@ -1287,8 +1287,8 @@ bool PlaylistFileDropTarget::OnDropFiles( wxCoord x, wxCoord y,
char
*
psz_utf8
=
wxDnDFromLocale
(
filenames
[
i
]
);
input_item_t
*
p_input
=
input_ItemNew
(
p
->
p_playlist
,
psz_utf8
,
psz_utf8
);
int
i_ret
=
(
playlist_
Node
AddInput
(
p
->
p_playlist
,
p_input
,
p_dest
,
PLAYLIST_PREPARSE
,
i_pos
,
false
)
!=
VLC_SUCCESS
);
int
i_ret
=
(
playlist_
Both
AddInput
(
p
->
p_playlist
,
p_input
,
p_dest
,
PLAYLIST_PREPARSE
,
i_pos
,
NULL
,
NULL
,
pl_Unlocked
)
!=
VLC_SUCCESS
);
vlc_gc_decref
(
p_input
);
wxDnDLocaleFree
(
psz_utf8
);
if
(
i_ret
!=
VLC_SUCCESS
)
...
...
src/libvlccore.sym
View file @
d057b0df
...
...
@@ -259,7 +259,6 @@ playlist_ItemNewWithType
playlist_ItemSetName
playlist_ItemToNode
playlist_LiveSearchUpdate
playlist_NodeAddInput
playlist_NodeAppend
playlist_NodeChildrenCount
playlist_NodeCreate
...
...
src/playlist/playlist_internal.h
View file @
d057b0df
...
...
@@ -98,6 +98,9 @@ int playlist_MLDump( playlist_t *p_playlist );
void
playlist_SendAddNotify
(
playlist_t
*
p_playlist
,
int
i_item_id
,
int
i_node_id
,
bool
b_signal
);
playlist_item_t
*
playlist_NodeAddInput
(
playlist_t
*
,
input_item_t
*
,
playlist_item_t
*
,
int
,
int
,
bool
);
/* Tree walking */
playlist_item_t
*
playlist_ItemFindFromInputAndRoot
(
playlist_t
*
p_playlist
,
int
i_input_id
,
playlist_item_t
*
p_root
,
...
...
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