- 28 Feb, 2008 4 commits
-
-
Felix Paul Kühne authored
-
Jean-Paul Saman authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
Compile XvMC. Disabled the subtitles part for that. Commented a few things. This can't be good, but at least it compiles (not link yet).
-
- 27 Feb, 2008 21 commits
-
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
control/media_instance.c: Avoid multiple libvlc_MediaInstanceReachedEnd, by providing different events for pausable and seekable state changes. (Thanks to Jacques Boileau).
-
Pierre d'Herbemont authored
-
Felix Paul Kühne authored
* coding style fixes (please don't do [NSString string], but use an empty constant. It's faster and nicer)
-
Felix Paul Kühne authored
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Christophe Mutricy authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
misc/objects.c: Make sure vlc_object_get won't return free-ed objects, by doing an atomic refcount decrease and object removal from the object list bank.
-
Jean-Baptiste Kempf authored
-
Faustino Osuna authored
contribs/extras: Compensate for shortfalls in ffmpeg's svn repository. Will submit shortfalls as bugs + patch back to ffmpeg dev team.
-
Faustino Osuna authored
cmake: Try to compensate for new ffmpeg directory structure by setting HAVE_LIBSWSCALE_TREE if swscale.his found.
-
Faustino Osuna authored
-
Faustino Osuna authored
-
Faustino Osuna authored
-
Pierre d'Herbemont authored
misc/objects.c: Print more info about what was the parent or what were the children if vlc_object_destroy() failed.
-
- 26 Feb, 2008 15 commits
-
-
Faustino Osuna authored
-
Faustino Osuna authored
-
Rémi Duraffort authored
-
Rémi Duraffort authored
-
Faustino Osuna authored
contrib/src/Makefile: Checkout CMake project into 'cmake' subdirectory, set up code for downloading cmake directly from archive for future use.
-
Faustino Osuna authored
-
Christophe Mutricy authored
-
Rémi Duraffort authored
-
Rémi Duraffort authored
-
Ilkka Ollakka authored
fix that flv muxing issue, and doesn't seem to cause regression. fixes #1285. Please notify if you notice something broken after this.
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
src/playlist: Fix a rare memleak that could happen when the interaction is created earlier than expected. (Fix vlc_object mem leak that happen when no module is loaded).
-
Pierre d'Herbemont authored
-
Pierre d'Herbemont authored
-
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).
-