[vlc-devel] vlc: svn commit r22663 (funman)
Subversion daemon
svn at videolan.org
Thu Oct 18 17:34:01 CEST 2007
r22663 | funman | 2007-10-18 17:34:01 +0200 (Thu, 18 Oct 2007) | 7 lines
Changed paths:
M /trunk/include/vlc_playlist.h
M /trunk/modules/access/directory.c
M /trunk/modules/gui/macosx/playlist.m
M /trunk/modules/gui/wxwidgets/dialogs/playlist.cpp
M /trunk/modules/services_discovery/upnp_cc.cpp
M /trunk/modules/services_discovery/upnp_intel.cpp
M /trunk/src/playlist/engine.c
M /trunk/src/playlist/services_discovery.c
M /trunk/src/playlist/tree.c
playlist_CreateNode(): add an argument to specify an input_item_t to be linked with the node, rather than creating a new input.
Setting that argument to NULL will make playlist_CreateNode() behave like previously.
That way we can create only one input per pair of node (for local playlist, media library, and service discovery)
Previous behaviour was to create 2 inputs with the same i_id member, but we would store both input in a binary search tree (sorted by i_id), and that kind of tree MUST NOT have 2 items with the same key, else we will get some bad memory corruption when the wrong input is removed from the tree (the other being left in the tree while the memory referred by it was freed).
Note that this breaks ABI
> http://trac.videolan.org/vlc/changeset/22663
More information about the vlc-devel
mailing list