This is the seventh release of the 1.1.x branch of VLC. This is a minor release, focused on minor features, bugfixes and security issues: - Various security issues in Real demuxer, CDG and subtitle decoders, transcode - Important Visualisation improvements, notably in projectM and goom - Faster Webm/VP8 decoding - Fixes in WMV seeking, Icy metadata, freetype, XDG screensaver and KDE solid - Fixes and improvements on PulseAudio output - MPC SV7/SV8 support on Windows/MacOS X, Midi on MacOS X - Support for audio/L24 in RTP - Fix for Audio CD playback on Windows - Qt4 and Media Keys processing improvementsel8
parent
e8babba12a
commit
ea22c34433
@ -1 +1 @@
|
|||||||
vlc-1.1.5.tar.bz2
|
vlc-1.1.6.tar.bz2
|
||||||
|
@ -1 +1 @@
|
|||||||
fdc23693351ed57af9f4c85ea885b536 vlc-1.1.5.tar.bz2
|
c47f3ebc886f2aff8c95b98c564d1759 vlc-1.1.6.tar.bz2
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
diff -up vlc-1.1.4/modules/visualization/projectm.cpp.hardcode vlc-1.1.4/modules/visualization/projectm.cpp
|
diff -up vlc-1.1.6/modules/visualization/projectm.cpp.hardode_path vlc-1.1.6/modules/visualization/projectm.cpp
|
||||||
--- vlc-1.1.4/modules/visualization/projectm.cpp.hardcode 2010-04-13 02:22:27.000000000 +0200
|
--- vlc-1.1.6/modules/visualization/projectm.cpp.hardode_path 2011-01-17 17:30:54.000000000 +0100
|
||||||
+++ vlc-1.1.4/modules/visualization/projectm.cpp 2010-11-10 22:52:59.496688406 +0100
|
+++ vlc-1.1.6/modules/visualization/projectm.cpp 2011-01-25 10:55:30.791607002 +0100
|
||||||
@@ -75,9 +75,9 @@ vlc_module_begin ()
|
@@ -89,9 +89,9 @@ vlc_module_begin ()
|
||||||
#else
|
add_directory( "projectm-preset-path", "/usr/share/projectM/presets", NULL,
|
||||||
add_file( "projectm-preset-path", "/usr/share/projectM/presets", NULL,
|
#endif
|
||||||
PRESET_PATH_TXT, PRESET_PATH_LONGTXT, true )
|
PRESET_PATH_TXT, PRESET_PATH_LONGTXT, true )
|
||||||
- add_file( "projectm-title-font", "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf", NULL,
|
- add_file( "projectm-title-font", "/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf", NULL,
|
||||||
+ add_file( "projectm-title-font", "/usr/share/fonts/dejavu/DejaVuSans.ttf", NULL,
|
+ add_file( "projectm-title-font", "/usr/share/fonts/dejavu/DejaVuSans.ttf", NULL,
|
||||||
TITLE_FONT_TXT, TITLE_FONT_LONGTXT, true )
|
TITLE_FONT_TXT, TITLE_FONT_LONGTXT, true )
|
@ -0,0 +1,30 @@
|
|||||||
|
commit 942ab6c31026a84e4c5503cb8e68a5135dfc2f2b
|
||||||
|
Author: Pierre Ynard <linkfanel@yahoo.fr>
|
||||||
|
Date: Sun Jan 23 18:19:05 2011 +0100
|
||||||
|
|
||||||
|
lirc: build fix
|
||||||
|
|
||||||
|
diff --git a/modules/control/lirc.c b/modules/control/lirc.c
|
||||||
|
index aee33c3..e8c4780 100644
|
||||||
|
--- a/modules/control/lirc.c
|
||||||
|
+++ b/modules/control/lirc.c
|
||||||
|
@@ -25,6 +25,7 @@
|
||||||
|
* Preamble
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
+#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_CONFIG_H
|
||||||
|
@@ -154,10 +155,12 @@ static void Run( intf_thread_t *p_intf )
|
||||||
|
/* Wait for data */
|
||||||
|
struct pollfd ufd = { .fd = p_sys->i_fd, .events = POLLIN, .revents = 0
|
||||||
|
if( poll( &ufd, 1, -1 ) == -1 )
|
||||||
|
+ {
|
||||||
|
if( errno == EINTR )
|
||||||
|
continue;
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
/* Process */
|
Loading…
Reference in new issue