- 22 Jan, 2013 2 commits
-
-
Edward Wang authored
Signed-off-by: Rafaël Carré <funman@videolan.org>
-
Felix Paul Kühne authored
-
- 21 Jan, 2013 13 commits
-
-
Christophe Mutricy authored
pub 1024D/E58D1ADC 2013-01-21 [expires: 2014-02-03] Key fingerprint = 65F7 C6B4 206B D057 A7EB 7378 7180 713B E58D 1ADC uid VideoLAN Release Signing Key (2013)
-
Felix Paul Kühne authored
-
Rob Jonson authored
Use new function to declare user activity (from 10.7.3). This is the new official way to wake the display, rather than simply preventing display sleep. Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
-
Frédéric Yhuel authored
If we read all the stream but n bytes, 0 < n < 8, there's no point to try and read these n missing bytes. If we try to continue the parsing, MP4_ReadBoxCommon() would return 0, and VLC would fall back to avformat's demux while it is not necessary. Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Edward Wang authored
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
-
Felix Paul Kühne authored
-
Denis Charmet authored
-
Felix Paul Kühne authored
-
Felix Paul Kühne authored
-
David Fuhrmann authored
-
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 1 commit
-
-
Rémi Denis-Courmont authored
-