An error occurred fetching the project authors.
- 12 Mar, 2008 1 commit
-
-
Rémi Duraffort authored
-
- 29 Feb, 2008 1 commit
-
-
Jean-Paul Saman authored
-
- 26 Feb, 2008 1 commit
-
-
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).
-
- 29 Jan, 2008 1 commit
-
-
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
-
- 23 Jan, 2008 1 commit
-
-
Rémi Denis-Courmont authored
Missing some cases that I could not test. Also ffmpeg/chroma.c is locked, so I can but leave it broken. Fix is for the remaining modules is obvious and the issue is easy to detect.
-
- 16 Jan, 2008 2 commits
-
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
-
- 15 Dec, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 04 Sep, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 20 Aug, 2007 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 16 Aug, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 04 Aug, 2007 1 commit
-
-
Rémi Denis-Courmont authored
By the way, I am VERY suspicious about the use of libvlc_global for mosaic and bridge locks
-
- 25 Jul, 2007 1 commit
-
-
Antoine Cellerier authored
Revert part of the previous commit which was wrong. (Looks like the leak is in ConvertImage when the input and output formats are the same ... fix comming)
-
- 24 Jul, 2007 1 commit
-
-
Antoine Cellerier authored
Check some function error codes Remove a few printfs
-
- 20 May, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 15 Apr, 2007 1 commit
-
-
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
-
- 07 Apr, 2007 1 commit
-
-
Antoine Cellerier authored
-
- 04 Apr, 2007 3 commits
-
-
Antoine Cellerier authored
-
Antoine Cellerier authored
-
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)
-
- 02 Apr, 2007 1 commit
-
-
Antoine Cellerier authored
Use I420 image buffers instead of YUVA for mosaic bridge. Impact on CPU usage for test case (http://people.videolan.org/~dionoea/mosaic/ basically a 6x5 mosaic displayed locally) is 155% -> 85% if alpha == 255, 166% -> 110% if alpha == 128.
-
- 26 Nov, 2006 1 commit
-
-
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.
-
- 08 Oct, 2006 1 commit
-
-
Jean-Paul Saman authored
-
- 01 Oct, 2006 1 commit
-
-
Antoine Cellerier authored
-
- 15 Sep, 2006 1 commit
-
-
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)
-
- 23 Aug, 2006 1 commit
-
-
Jean-Paul Saman authored
-
- 25 Mar, 2006 1 commit
-
-
Clément Stenac authored
Strings review in stream_out (Refs:#438). Please review these once more as I changed some quite heavily
-
- 12 Jan, 2006 1 commit
-
-
Antoine Cellerier authored
-
- 23 Nov, 2005 2 commits
-
-
Christophe Massiot authored
-
Christophe Massiot authored
ratio. Fix a critical memory leak when closing the module.
-
- 08 Aug, 2005 1 commit
-
-
Antoine Cellerier authored
-
- 15 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 09 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
-
- 08 Jul, 2005 1 commit
-
-
Rémi Denis-Courmont authored
(da big courmischage)
-
- 07 Jun, 2005 1 commit
-
-
Christophe Massiot authored
-
- 31 May, 2005 2 commits
-
-
Christophe Massiot authored
are not multithreaded.
-
Christophe Massiot authored
parameter to specify the sample aspect ratio of the destination background. In this case, one of {width, height} can be omitted (set to 0) and it will be calculated based on the PAR of the source and the SAR of the background.
-
- 20 May, 2005 1 commit
-
-
Christophe Massiot authored
* modules/stream_out/mosaic_bridge.c: Fixed potential segfault. * modules/video_filter/mosaic.c: Run the mosaic thread in a higher priority.
-
- 15 Apr, 2005 1 commit
-
-
Christophe Massiot authored
module "mosaic-bridge".
-