- 17 Mar, 2008 1 commit
-
-
Rémi Denis-Courmont authored
-
- 12 Mar, 2008 1 commit
-
-
Rémi Duraffort 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
-
- 27 Jan, 2008 2 commits
-
-
Rémi Denis-Courmont authored
-
Rafaël Carré authored
-
- 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 Dec, 2007 1 commit
-
-
Jean-Paul Saman authored
-
- 01 Nov, 2007 1 commit
-
-
Rémi Denis-Courmont authored
Patch by Brian C. Wiles
-
- 26 Oct, 2007 1 commit
-
-
Jean-Paul Saman authored
-
- 30 Sep, 2007 1 commit
-
-
Rémi Denis-Courmont authored
Good news is, no plugins used it anyway. Bad news is, some parts of libvlc still use which is wrong (i_refcount is protected by the "structure lock", meaning only misc/objects.c functions can use it safely).
-
- 10 Sep, 2007 1 commit
-
-
Rafaël Carré authored
-
- 01 Sep, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 22 Aug, 2007 1 commit
-
-
Rafaël Carré authored
Enforce access to input_item_t through input_item_{G,S}et*() Unlock mutexes before calling these functions Free strings returned by input_item_Get*() New functions added: char * input_item_GetURI( input_item_t * ) void input_item_SetURI( input_item_t * , char * ) mtime_t input_item_GetDuration( input_item_t * ) void input_item_SetDuration( input_item_t * , mtime_t ) to access input_item_t->psz_uri and input_item_t->i_duration
-
- 20 Aug, 2007 1 commit
-
-
Rémi Denis-Courmont authored
(which includes config.h which defines the platform feature macros) Also remember stdio, string and stdlib are included implicitly
-
- 16 Aug, 2007 1 commit
-
-
Rémi Denis-Courmont authored
-
- 19 May, 2007 1 commit
-
-
Rémi Denis-Courmont authored
This also seems to make the pre-existing Qt4 crash more obvious.
-
- 04 May, 2007 2 commits
-
-
Antoine Cellerier authored
-
Antoine Cellerier authored
-
- 08 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 07 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 02 Mar, 2007 1 commit
-
-
Laurent Aimar authored
You have to use sout-keep option on your broadcast media using > setup your_media option sout-keep The default value is no-sout-keep and command line option --sout-keep will not activate it (on purpose).
-
- 01 Mar, 2007 1 commit
-
-
Laurent Aimar authored
-
- 28 Feb, 2007 1 commit
-
-
Laurent Aimar authored
work again yet )
-
- 26 Feb, 2007 1 commit
-
-
Laurent Aimar authored
Fixed race condition with sout-keep. Fixed broken sout-keep behaviour (currently active sout can be used twice or destroyed..., it might fixed segfaults reported by xxcv))
-
- 25 Feb, 2007 2 commits
-
-
Antoine Cellerier authored
-
Laurent Aimar authored
-
- 22 Feb, 2007 1 commit
-
-
Antoine Cellerier authored
-
- 21 Feb, 2007 3 commits
-
-
Laurent Aimar authored
(This way it matches input_CreateThread and fixes a memleak) Control variables are now created even for preparse, only callback are not added. (This fix use of uninitialized variables)
-
Christophe Mutricy authored
-
Antoine Cellerier authored
-
- 06 Dec, 2006 1 commit
-
-
Marian Durkovic authored
-
- 04 Dec, 2006 1 commit
-
-
Marian Durkovic authored
-
- 03 Dec, 2006 6 commits
-
-
Marian Durkovic authored
-
Antoine Cellerier authored
-
Rémi Denis-Courmont authored
- move vlm to input/ - remove unused libvlc export
-
Rémi Denis-Courmont authored
- Remove opening and closing quote when unescaping
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
- Do not validate quotes recursively (there is no reason to do that) and it is really unlike anything else. - Do not allow escaping non-ASCII (to avoid UTF-8 breakages) or non-printable characters. [1] we don't support every features of C escaping though
-
- 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.
-