- 21 Jan, 2013 3 commits
-
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
- 20 Jan, 2013 3 commits
-
-
Rafaël Carré authored
-
Frédéric Yhuel authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Jean-Baptiste Kempf authored
-
- 19 Jan, 2013 11 commits
-
-
Rafaël Carré authored
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
This can often catch bugs in the plugin descriptors and modules core.
-
Rémi Denis-Courmont authored
-
Felix Paul Kühne authored
audioqueue: don't use the main CFRunLoop for the (empty) data callback, but one of AudioQueue's internal threads Otherwise, we will encounter delays of up to 10 secs when stopping the AudioQueue
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
This is mainly intended to be used as a slave input, e.g.: # vlc video.mkv --input-slave timecode:// --timecode-fps 30/1001
-
Rémi Denis-Courmont authored
-
Mario Speiß authored
ConfigLoadString allocates memory for 'size' bytes and copys a NULL terminated string to this buffer. ConfigSaveString instead expects the buffer to be NULL terminated but: - the 'size' saved to the cache is the char count - the string is written without terminating NULL. So obviously ConfigLoadString does not match the behaviour of ConfigSaveString. It seems to me that the cached module configuration is not working at all due to comparing the module file names within CacheFind - this should never have found a match. I think this would need some more testing. Regards, Mario Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
- 18 Jan, 2013 5 commits
-
-
Francois Cartegnie authored
-
Rémi Denis-Courmont authored
-
Francois Cartegnie authored
-
Francois Cartegnie authored
-
Felix Paul Kühne authored
-
- 17 Jan, 2013 5 commits
-
-
Rafaël Carré authored
Split it in several functions
-
Nickolai Zeldovich authored
After OpenDemux reads data using stream_Read(), it writes a '\0' to the buffer after the newly-read data, but if the stream returned exactly i_read_max bytes, this '\0' will end up just past the end of the allocated psz_sdp array (see the call to realloc at the beginning of the loop). Adjust the realloc call to allocate this one extra byte. Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-
Rafaël Carré authored
merge declaration and initial assignement
-
Jean-Baptiste Kempf authored
-
Rafaël Carré authored
Replace macro with static inline and use bounds checking
-
- 16 Jan, 2013 2 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 15 Jan, 2013 11 commits
-
-
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
While useful, this is not permitted by the standard specification. This patch will waste a little bit of memory in affected allocations...
-
Felix Paul Kühne authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
This reverts commit 5086a9ed.
-
Rémi Denis-Courmont authored
-
Devin Heitmueller authored
When we moved the code to use the legacy method *or* the new method, we lost the functionality that actually initialized the memory allocated for the entire subpicture region (including the part where captions weren't being rendered. This was most obvious when regression testing on OSX, where it resulted in old captions continuing to appear on screen even after being cleared, or garbage in the render buffer. Add a line that effectively zeros out the buffer prior to use. Signed-off-by: Rafaël Carré <funman@videolan.org>
-