An error occurred fetching the project authors.
  1. 19 Oct, 2009 1 commit
    • Rémi Denis-Courmont's avatar
      HAVE_FPU: make constant · 145903d0
      Rémi Denis-Courmont authored
      Currently, we do not have any architecture where this would not be
      a build-time constant. Constancy helps fixing a few issues in the audio
      path.
      145903d0
  2. 30 Sep, 2009 1 commit
  3. 27 Sep, 2009 1 commit
    • Rémi Denis-Courmont's avatar
      Convert audio output core to audio filter2 · 9d9577f0
      Rémi Denis-Courmont authored
      audio filter plugins are now useless.
      This breaks visual (needs to be ported to filter_t) and will likely
      expose bugs in under-used audio filter2 infrastructure.
      
      TODO: use filter chain instead of custom filter handling in core.
      9d9577f0
  4. 23 Sep, 2009 2 commits
  5. 22 Sep, 2009 2 commits
  6. 03 Sep, 2009 1 commit
    • Rafaël Carré's avatar
      aout_BufferAlloc() : remove stack allocation · f7650038
      Rafaël Carré authored
      alloca() was not used anyway on OSX and BSD, due to smaller stack sizes,
      and we can't assume a default stack size anyway
      
      I expect the performance loss to be minimal, but worth the code
      simplification anyway (i didn't benchmark)
      
      aout_BufferAlloc() is moved into its own function in a .c file instead
      of being a macro
      
      Since there is now 2 types of allocations (HEAP and NONE), make
      i_alloc_type a boolean (true = HEAP alloc, false = NO alloc)
      
      make aout_BufferFree() a static inline function in the same process.
      Prototype doesn't change since the provided buffer doesn't need to be
      set to NULL (I checked all the callers)
      f7650038
  7. 25 Aug, 2009 1 commit
  8. 13 May, 2009 1 commit
  9. 13 Dec, 2008 1 commit
  10. 18 Oct, 2008 1 commit
  11. 16 Oct, 2008 1 commit
  12. 21 Sep, 2008 1 commit
  13. 15 Aug, 2008 1 commit
  14. 31 May, 2008 1 commit
  15. 01 May, 2008 1 commit
  16. 14 Apr, 2008 1 commit
  17. 23 Jan, 2008 1 commit
  18. 20 Aug, 2007 1 commit
  19. 12 Jun, 2007 1 commit
  20. 19 May, 2007 1 commit
  21. 12 May, 2007 1 commit
  22. 26 Nov, 2006 1 commit
    • Clément Stenac's avatar
      A bit of headers cleanup · d3fe7f28
      Clément Stenac authored
      * Headers in include must contain the structures and prototypes needed
        by the plugins and should be named vlc_*.
      * Headers in include/vlc must contain the structures and prototypes
        needed by external libvlc clients
      
      * Moved and renamed some things in headers. 
         - Removed vlc_cpu.h, vlc_error.h (merged in vlc_common)
         - Removed snapshot.h (merged in vlc_vout.h)
         - Removed vlc_spu.h (merged in vlc_osd.h)
         - Removed intf_eject.h and vlc_interaction.h (merged in vlc_interface)
         - Moved all internal headers to src
         - Merged vlc_video.h and video_output.h and move private things to src
         - Removed vlc/intf.h, vlc/aout.h, vlc/vout.h, vlc/decoder.h and vlc/input.h
           (meta headers for use in modules, and often implying too large 
           dependencies)
      * Removed some useless dependencies
      * Unexported a bunch of functions and structures used only in src/
        (--> Still some work here)
      * Finally made input_thread_t and input_source_t (mostly) private. 
        Added input_GetItem to fetch the input_item of an input_thread
      * Cleaned up deprecated entries in vlc_symbols.h and bumped up symbol 
        prefix
      
      This commit has a 99% probability of breaking the build, 0.1% of killing
      your cat and 0% of getting you hot chicks.
      d3fe7f28
  23. 05 Oct, 2006 1 commit
  24. 15 Sep, 2006 1 commit
    • Clément Stenac's avatar
      For consistency, remove references to vlc from libvlc · f485214f
      Clément Stenac authored
      Also, make it clearer what is shared and instance-specific
      
      So,
      libvlc_t ==> libvlc_global_t
      vlc_t ==> libvlc_int_t (internal instance)
      
      p_object->p_libvlc ==> p_object->p_libvlc_globale
      p_object->p_vlc ==> p_object->p_libvlc
      
      VLC_OBJECT_VLC ==> VLC_OBJECT_LIBVLC
      
      And by the way, there is some cleanup required :) (ie, some things are created in the global object instead of the instance-specific one)
      
      f485214f
  25. 28 Mar, 2006 1 commit
  26. 12 Jan, 2006 1 commit
  27. 02 Nov, 2005 1 commit
  28. 25 Sep, 2005 1 commit
    • Boris Dorès's avatar
      - the creation of the audio filter pipeline when specifying user audio · 036c9c52
      Boris Dorès authored
        channel mixers was broken (again) in 0.8.1 and 0.8.2; hopefully this
        will fix it for good, by allowing audio filters to request a specific
        format rather than imposing them an arbitrary one
      - various other small fixes in the audio output core
      - option to force detection of Dolby Surround
      - simple module to decode Dolby Surround
      - increase spatialization with two center speakers and fix channel
        order for 7.1 streams in the headphone channel mixer
      036c9c52
  29. 09 Jul, 2005 1 commit
  30. 08 Jul, 2005 1 commit
  31. 20 Jan, 2005 1 commit
  32. 21 Aug, 2004 2 commits
  33. 23 Jun, 2004 1 commit
  34. 03 Mar, 2004 1 commit
    • Gildas Bazin's avatar
      · c87d50dd
      Gildas Bazin authored
      * ALL: changed the prototype of module_Need() to accept a "strict" boolean argument.
      If "strict" is true and a module name is provided then module_Need() will only look for the specified module
      If "strict" is false, then module_Need() will first look for the specified module and if it wasn't found, will continue with the other modules with the same "capability".
      c87d50dd
  35. 26 Jan, 2004 1 commit
  36. 06 Jan, 2004 1 commit
  37. 09 Jul, 2003 1 commit
    • Gildas Bazin's avatar
      · 4faf2cab
      Gildas Bazin authored
      * modules/gui/wxwindows/interface.cpp: resume after pause was broken recently.
      * src/audio_output/output.c: reverted a recent change that was screwing up the proper scheduling of audio samples after a starvation. That should improve the heavy resampling we currently have after a pause.
      * modules/audio_output/alsa.c: improvements and fixes to the alsa audio output.
      4faf2cab