- Feb 08, 2015
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This potentially allows generating the plugins cache on-the-go - there is no more need to know the total number of plugins ahead of time.
-
Rémi Denis-Courmont authored
Also fix module cache loading if int and uint32_t have different sizes.
-
Rémi Denis-Courmont authored
(as opposed to reaching premature end-of-file)
-
Rémi Denis-Courmont authored
To initialize logging, we typically need configuration and command line parameters. And using modules would also be nice. But we also want to emit log messages while initializing the configuration and the modules bank. This is a catch-22. To work around the problem, we store the early log messages in a temporary list, and drain the list later once logging is configured. (Also fix a minor integer overflow involving atoi().)
-
Jean-Baptiste Kempf authored
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
-
- Feb 07, 2015
-
-
François Cartegnie authored
-
Jean-Baptiste Kempf authored
There are too many files in the wild with this...
-
Jean-Baptiste Kempf authored
Close #13744
-
Rémi Denis-Courmont authored
"drawable-hwnd" is a configuration item; there is need to create the variable explicitly anymore.
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Rémi Denis-Courmont authored
-
- Feb 06, 2015
-
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
This proved to be more natural for on-screen navigation
-
Jean-Baptiste Kempf authored
-
strtoi(3) is a function in the Standard C Library of NetBSD. Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
- Feb 05, 2015
-
-
In Lua 5.3.0, luaL_checkint was deprecated. This patch fixes this build error with Lua 5.3.0. lua/demux.c: In function ‘vlclua_demux_peek’: lua/demux.c:55:5: error: implicit declaration of function ‘luaL_checkint’ [-Werror=implicit-function-declaration] int n = luaL_checkint( L, 1 ); ^ Signed-off-by:
Vinson Lee <vlee@freedesktop.org> Signed-off-by:
Jean-Baptiste Kempf <jb@videolan.org>
-
Tristan Matthews authored
-
François Cartegnie authored
refs issues/TS/IMAX.Blue.Planet.ts
-
François Cartegnie authored
refs issues/TS/IMAX.Blue.Planet.ts
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
snprintf() always adds a nul terminator (unless the buffer has zero bytes, obviously).
-
Rémi Denis-Courmont authored
An input thread always has a valid input item even if it is dead. If not, the code would have had a ToCToU bug anyway.
-
Rémi Denis-Courmont authored
vlc_object_alive(p_intf) is always true.
-
Rémi Denis-Courmont authored
If the input is dead, the source stream (demux_t.s) return an error. There is no point checking that the demux is dead separately. In fact, there is even a race where the stream will be dead but the demux will not.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
Video output are always "alive", the predicate is always false.
-