An error occurred fetching the project authors.
  1. 12 Mar, 2008 1 commit
  2. 29 Feb, 2008 1 commit
  3. 26 Feb, 2008 1 commit
    • Pierre d'Herbemont's avatar
      misc/objects.c: Don't rely on vlc_object_destroy() to destroy objects, but... · a78e273e
      Pierre d'Herbemont authored
      misc/objects.c: Don't rely on vlc_object_destroy() to destroy objects, but expects vlc_object_release to do it when the refcount goes to zero.
      * Meaning, that when created objects gets a refcount to 1.
      * Destroying is instantaneous and we don't have to poll for a few secondss or so to wait until the object's refcount reach 0.
      * We now track vlc_object_t's mem leaks when libvlc_global is released (Hard error for now, so they don't get unoticed)
      * We fail hard if an object is released with a refcount of 1 without being detached from its parent and its children, to make sure such cases don't go unoticed.
      (make test or make check still pass after that one. VLC is known to leak one object when no module is loaded, this must be fixed).
      
      a78e273e
  4. 29 Jan, 2008 1 commit
    • Rafaël Carré's avatar
      stream_out: fix warnings · 52e95c97
      Rafaël Carré authored
          rtp: add the prototype for rtp_packetize_h264_nal()
          transcode: transcode_{spu,audio}_close(): removes unused argument
          mosaic_bridge: video_del_buffer(): removes unused argument
      
      52e95c97
  5. 23 Jan, 2008 1 commit
  6. 16 Jan, 2008 2 commits
  7. 15 Dec, 2007 1 commit
  8. 04 Sep, 2007 1 commit
  9. 20 Aug, 2007 2 commits
  10. 16 Aug, 2007 1 commit
  11. 04 Aug, 2007 1 commit
  12. 25 Jul, 2007 1 commit
  13. 24 Jul, 2007 1 commit
  14. 20 May, 2007 1 commit
  15. 15 Apr, 2007 1 commit
    • Antoine Cellerier's avatar
      * mosaic_bridge.c: - Add "vfilters" option to apply video filters on the · ce0e4fb0
      Antoine Cellerier authored
                            image before sending it to the mosaic.
                          - Add option ("chroma") to force the image chroma
                          - Remove alpha mask code
       * mosaic.c: - Remove bluescreen code
                   - Misc cosmetics changes
       * bluescreen.c: New bluescreen filter (mostly cut & paste from mosaic.c)
       * alphamask.c: New alpha mask filter (mostly cut & paste from mosaic_bridge.c)
       * invert.c: don't invert the alpha plane for YUVA images (We also need to
                   prevent that for RGBA images ... but that's not really used
                   currently)
       * configure.ac, video_filter/Modules.am: add alphamask and bluescreen
      ce0e4fb0
  16. 07 Apr, 2007 1 commit
  17. 04 Apr, 2007 3 commits
    • Antoine Cellerier's avatar
      2ac7392d
    • Antoine Cellerier's avatar
      Remove mask picture_t leak. · 6b1af002
      Antoine Cellerier authored
      6b1af002
    • Antoine Cellerier's avatar
      Add new "mask" option to the mosaic_bridge module. This makes it possible to... · 89d87da5
      Antoine Cellerier authored
      Add new "mask" option to the mosaic_bridge module. This makes it possible to define a transparency mask used during mosaic blending. Example usage follows:
      
      ./vlc -I telnet --color -vvv --vlm-conf mosaic.vlm --mosaic-width 360 --mosaic-height 270 --mosaic-rows 6 --mosaic-cols 6 --mosaic-keep-picture --fake-file ~/images/mire.jpg --fake-width 360 --fake-height 270 --no-audio --sub-filter mosaic
      
      And the vlm config:
      
      new channel0 broadcast enabled
      setup channel0 input /home/dionoea/media/redefined-nintendo.mpg
      setup channel0 output #duplicate{dst=mosaic-bridge{id=0,height=270,width=360,mask=/home/dionoea/images/cone_360x270.png},select=video,dst=bridge-out{id=0},select=audio}
      
      new background broadcast enabled
      setup background input fake:
      #setup background output #bridge-in:display
      control background play
      
      control channel0 play
      
      The files used are available on http://people.videolan.org/~dionoea/mosaic/ if you want to test. (This will blend the redefined nintendo video in a cone like region)
      
      
      89d87da5
  18. 02 Apr, 2007 1 commit
  19. 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
  20. 08 Oct, 2006 1 commit
  21. 01 Oct, 2006 1 commit
  22. 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
  23. 23 Aug, 2006 1 commit
  24. 25 Mar, 2006 1 commit
  25. 12 Jan, 2006 1 commit
  26. 23 Nov, 2005 2 commits
  27. 08 Aug, 2005 1 commit
  28. 15 Jul, 2005 1 commit
  29. 09 Jul, 2005 1 commit
  30. 08 Jul, 2005 1 commit
  31. 07 Jun, 2005 1 commit
  32. 31 May, 2005 2 commits
  33. 20 May, 2005 1 commit
  34. 15 Apr, 2005 1 commit