1. 01 Feb, 2004 6 commits
  2. 31 Jan, 2004 11 commits
  3. 30 Jan, 2004 17 commits
  4. 29 Jan, 2004 6 commits
    • Gildas Bazin's avatar
      · 43ef6e10
      Gildas Bazin authored
      * modules/codec/speex.c, src/misc/win32_specific.c: compilation fixes.
      43ef6e10
    • Gildas Bazin's avatar
      · 2d9249bb
      Gildas Bazin authored
      * configure.ac: fixed typo.
      2d9249bb
    • Laurent Aimar's avatar
      * ps: fixed dts. · f16f6c66
      Laurent Aimar authored
      f16f6c66
    • Clément Stenac's avatar
      Use playlist_Item* functions · e4fe636a
      Clément Stenac authored
      e4fe636a
    • Clément Stenac's avatar
      Options as infos were bad in several ways: it broke PLAYLIST_GO, used · 499a3845
      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.
      499a3845
    • Laurent Aimar's avatar
      * demux2: mmh removed some shortcut. (easier than increasing · 6dc60921
      Laurent Aimar authored
       MODULE_SHORTCUT_MAX ;)
      6dc60921