diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-26 19:30:14 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-11-26 19:30:14 +0000 |
commit | e88efd011e303cbb7a84f6402eb1e5fe574e0514 (patch) | |
tree | 7d2ae805700e5d28c7dbe2b9c56e08a99208d8eb /src/post/visualizations/fooviz.c | |
parent | fab64a64c480ed6714d55919c1a667e0d03a60d8 (diff) | |
download | xine-lib-e88efd011e303cbb7a84f6402eb1e5fe574e0514.tar.gz xine-lib-e88efd011e303cbb7a84f6402eb1e5fe574e0514.tar.bz2 |
the viz plugins are feeding their private metronom with video only data, so
have_video=1, have_audio=0 seems more logical
CVS patchset: 5791
CVS date: 2003/11/26 19:30:14
Diffstat (limited to 'src/post/visualizations/fooviz.c')
-rw-r--r-- | src/post/visualizations/fooviz.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/post/visualizations/fooviz.c b/src/post/visualizations/fooviz.c index f9485a6d9..a6ba782a7 100644 --- a/src/post/visualizations/fooviz.c +++ b/src/post/visualizations/fooviz.c @@ -23,7 +23,7 @@ * process. It simply paints the screen a solid color and rotates through * colors on each iteration. * - * $Id: fooviz.c,v 1.15 2003/11/20 00:42:14 tmattern Exp $ + * $Id: fooviz.c,v 1.16 2003/11/26 19:30:17 mroi Exp $ * */ @@ -303,7 +303,7 @@ static post_plugin_t *fooviz_open_plugin(post_class_t *class_gen, int inputs, return NULL; } - this->metronom = _x_metronom_init(0, 1, class->xine); + this->metronom = _x_metronom_init(1, 0, class->xine); this->sample_counter = 0; this->stream = NULL; |