vlc | branch: master | Rémi Duraffort <[email protected]> | Tue Dec 7 18:41:22 2010 +0100| [27eefb90fcc90240adaa1cfee81be68f8a727295] | committer: Rémi Duraffort
projectm: randomly choose the first preset or projectM will always take the same. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=27eefb90fcc90240adaa1cfee81be68f8a727295 --- modules/visualization/projectm.cpp | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/visualization/projectm.cpp b/modules/visualization/projectm.cpp index be2677f..10af481 100644 --- a/modules/visualization/projectm.cpp +++ b/modules/visualization/projectm.cpp @@ -34,6 +34,7 @@ #include <vlc_vout.h> #include <vlc_vout_wrapper.h> #include <vlc_filter.h> +#include <vlc_rand.h> #include <libprojectM/projectM.hpp> @@ -370,8 +371,8 @@ static void *Thread( void *p_data ) vlc_sem_post( &p_sys->ready ); - /* TODO: Give to projectm the name of the input - p_sys->p_projectm->projectM_setTitle( "" ); */ + /* Choose a preset randomly or projectM will always show the first one */ + p_sys->p_projectm->selectPreset( (unsigned)vlc_mrand48() % p_sys->p_projectm->getPlaylistSize() ); /* */ for( ;; ) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
