- 07 Dec, 2009 19 commits
-
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
-
Rafaël Carré authored
refs #3135
-
Rafaël Carré authored
refs #3135
-
Rafaël Carré authored
refs #3135
-
Rafaël Carré authored
refs #3135
-
Rafaël Carré authored
refs #3135
-
Rafaël Carré authored
refs #3135
-
- 06 Dec, 2009 16 commits
-
-
Mindaugas Baranauskas authored
Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
-
Mike Schrag authored
Signed-off-by: Pierre d'Herbemont <pdherbemont@free.fr>
-
Pierre Ynard authored
This adds support for the rtptime parameter in the RTP-Info RTSP header. It is needed by RealPlayer, otherwise it will start playing the stream or not depending on the time of the day.
-
Éric Lassauge authored
Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
-
Gilles Chanteperdrix authored
Since at least vlc 1.0.2, compiling vlc with a static version of a recent version of the live555media library (the version released on 2009/11/12 for instance) results in the following warning while loading the liblive555_plugin.so module: [0x1901090] main libvlc warning: cannot load module `/usr/local/lib/vlc/demux/liblive555_plugin.so' (/usr/local/lib/vlc/demux/liblive555_plugin.so: undefined symbol: _ZTI9HashTable) This warning is due to an error in the link order of the live555_plugin, fixed by the following patch. Signed-off-by: Christophe Mutricy <xtophe@videolan.org>
-
Rémi Denis-Courmont authored
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
It seems that .mtv files don't work though
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This reverts commit 59b025e3.
-
Rémi Denis-Courmont authored
Those functions automatically abort if allocation fails (which is not quite the same as calling assert()). Avoid these functions in new code.
-
Rémi Denis-Courmont authored
Those are the same as the Linux kernel macros, and probably a bunch of other projects. Usage: if (likely(condition)) branch_likely_taken(); if (unlikely(condition)) branch_unlikely_taken(); Attention: those two macros convert the predicate to a boolean value. Therefore you generally cannot use them for assignments like this: void *p_sys = likely (malloc (sizeof (*p_sys))); if (!p_sys) return VLC_ENOMEM; Instead you can do this: void *p_sys = malloc (sizeof (*p_sys)); if (unlikely (!p_sys)) return VLC_ENOMEM;
-
Pierre Ynard authored
-
- 05 Dec, 2009 5 commits
-
-
JP Dinger authored
-
JP Dinger authored
-
JP Dinger authored
Replace argument = realloc( argument, size ); with realloc_or_free() in modules/*, and while at it add assert( argument ) to mark unhandled ENOMEM conditions, also for malloc().
-
JP Dinger authored
Introduce realloc_or_free() to src/*, and add assert() to mark unhandled ENOMEM error conditions. Allocation shrinking or otherwise handled allocations don't need realloc_or_free.
-
JP Dinger authored
Introduce realloc_or_free(), which does what realloc() does but will free the argument if the reallocation fails. This is useful in some, but not all, use cases of realloc().
-