- 25 May, 2006 5 commits
-
-
Clément Stenac authored
-
Clément Stenac authored
-
Clément Stenac authored
* Disable interaction in WX until it's fixed
-
Clément Stenac authored
* Fix some debug
-
Clément Stenac authored
* Remove some debug
-
- 20 May, 2006 1 commit
-
-
Jean-Paul Saman authored
-
- 14 May, 2006 1 commit
-
-
Clément Stenac authored
What is currently broken: * Some playlist demuxers (shout, dvb and pls) * DAAP * BeOS playlist * GPE playlist, I suppose What has some trouble: * Meta handling in several demuxers (most notably TS) * Skins2 playlist (doesn't refresh correctly) * OS X playlist (see bigben's latest commits)
-
- 01 Apr, 2006 1 commit
-
-
Felix Paul Kühne authored
-
- 21 Jan, 2006 1 commit
-
-
Clément Stenac authored
-
- 12 Jan, 2006 1 commit
-
-
Antoine Cellerier authored
-
- 11 Jan, 2006 1 commit
-
-
Clément Stenac authored
-
- 11 Jul, 2005 1 commit
-
-
Sam Hocevar authored
-
- 09 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- 12 Apr, 2005 1 commit
-
-
Gildas Bazin authored
-
- 10 Apr, 2005 1 commit
-
-
Sigmund Augdal Helberg authored
playlist/item-ext.c: O(log(N)) playlist_GetItemById()
-
- 01 Mar, 2005 1 commit
-
-
Clément Stenac authored
Remove extra SAP debug
-
- 16 Jan, 2005 1 commit
-
-
Clément Stenac authored
Remove playlist info accessors (as they now belong to input_item) and use vlc_input_item_AddInfo and vlc_input_item_GetInfo instead
-
- 11 Jan, 2005 1 commit
-
-
Clément Stenac authored
Fix autoswitching to category view
-
- 20 Dec, 2004 1 commit
-
-
Clément Stenac authored
-
- 10 Dec, 2004 1 commit
-
-
Clément Stenac authored
-
- 17 Nov, 2004 1 commit
-
-
Clément Stenac authored
* Fix locking issues in services discovery * Add playlist_Replace function * Beginning of playlist_TreeMove * Fix some warnings * Doxygen update
-
- 12 Nov, 2004 1 commit
-
-
Gildas Bazin authored
-
- 10 Nov, 2004 1 commit
-
-
Clément Stenac authored
* Fix playlist release bug * Add sdp and rtp as network type items
-
- 07 Nov, 2004 1 commit
-
-
Clément Stenac authored
* Autodelete items played by the SDP demuxer * Added playlist_CopyParents facility, for modules that use ItemToNode
-
- 06 Nov, 2004 1 commit
-
-
Clément Stenac authored
-
- 22 Sep, 2004 1 commit
-
-
Gildas Bazin authored
* src/playlist/item.c: fixed recent playlist item initialization bug which was screwing up things like doing random autodeletions, etc...
-
- 19 Sep, 2004 1 commit
-
-
Gildas Bazin authored
-
- 18 Jun, 2004 1 commit
-
-
Sigmund Augdal Helberg authored
-
- 23 Apr, 2004 2 commits
-
-
Gildas Bazin authored
-
Gildas Bazin authored
-
- 03 Apr, 2004 1 commit
-
-
Cyril Deguet authored
already been played (check the i_nb_played variable) * item.c: initialize i_nb_played to 0
-
- 31 Mar, 2004 1 commit
-
-
Gildas Bazin authored
* src/input/input.c: + introduced input_item_t that is shared between the playlist/vlm and the input thread (contains input name, options, infos, etc...). + changed prototype of input_CreateThread() to input_thread_t *input_CreateThread( vlc_object_t *, input_item_t * ). * ALL: use input_item_t and INPUT_ADD_INFO when necessary.
-
- 14 Mar, 2004 1 commit
-
-
Clément Stenac authored
-
- 28 Feb, 2004 1 commit
-
-
Gildas Bazin authored
* src/playlist/*: portability fixes, moved playlist_AddOption() to item-ext.c.
-
- 08 Feb, 2004 1 commit
-
-
Gildas Bazin authored
* src/playlist/*: fixed complete fuckage of playlist_ItemAddOption() and moved it to item.c. * modules/gui/wxwindows/open.cpp: cleanup.
-
- 29 Jan, 2004 1 commit
-
-
Clément Stenac authored
much memory, and was inconsistent, especially with input_CreateThread taking an array of options * Revert to using array of options * To add an item with options: - either use playlist_ItemNew, ItemAddOption, and then AddItem (useful if you don't have all your options in an array) - either use playlist_AddExt (use this if all your options are already in an array) * To add an item without options: use playlist_Add You can still add options after an item has been added by using either playlist_AddOption or playlist_ItemAddOption * Attempt to improve API and solve thread safety issues. - playlist_Item* functions allow to touch items only. p_item->lock must be used when needed (playlist_ItemNew, playlist_ItemDelete, playlist_Item*Info, playlist_ItemSet* ) - playlist_ItemGetById and ItemGetByPos give you playlist_items for GetByPos, you should have the playlist lock At the moment, the playlist_Set* and playlist_*Info functions are kept (they work with position) but should be avoided.
-
- 17 Jan, 2004 1 commit
-
-
Sigmund Augdal Helberg authored
* Updated documentation on playlist_Add* (they return a id, not the position)
-
- 06 Jan, 2004 1 commit
-
-
Clément Stenac authored
check that command line parsing still works for items and options? ) - src/libvlc.c include/vlc/vlc.h : New libvlc functions to get playlist status and clear the playlist Patch by Tong Ka Man - src/playlist/* : Update copyrights - src/playlist/playlist.c: -When a user explicitely asks for an item, do play it, even if random mode -Do not stop playlist upon deletion of an autodelete item -playlist_Clear (Patch by Tong Ka Man)
-
- 05 Jan, 2004 1 commit
-
-
Clément Stenac authored
* src/playlist/item.c src/playlist/info.c src/playlist/item-ext.c src/playlist/group.c src/playlist/sort.c src/playlist/loadsave.c include/vlc_playlist.h - New playlist_info structures and accessors It works pretty like the old input_info (with categories) It provides modularity to the playlist - Removed ppsz_options and i_options from playlist_item (we use the special category Options) - Added a unique id to each playlist_item to be able to track the items accross playlist reorders - Simplified adding of items. - playlist_AddExt is removed - playlist_AddItem is still here and exported but should not be used - use playlist_Add( p_playlist, uri, name, duration, mode, pos ) and use the accessors for all other things - Added setters for fields of the playlist_item structure - Introduced "item-change" and "playlist-current" playlist variables to give more flexibility than only intf-change At the moment, duration is still in the structure (easier to use, IMHO) * src/input/input.c src/libvlc.c : playlist item options parsing changed * include/vlc_common.h : added playlist_info structures
-