diff options
-rw-r--r-- | src/post/goom/xine_goom.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fftgraph.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fftscope.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/fooviz.c | 4 | ||||
-rw-r--r-- | src/post/visualizations/oscope.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/post/goom/xine_goom.c b/src/post/goom/xine_goom.c index 53348c994..0bf8305a5 100644 --- a/src/post/goom/xine_goom.c +++ b/src/post/goom/xine_goom.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_goom.c,v 1.42 2003/11/20 00:42:14 tmattern Exp $ + * $Id: xine_goom.c,v 1.43 2003/11/26 19:30:14 mroi Exp $ * * GOOM post plugin. * @@ -259,7 +259,7 @@ static post_plugin_t *goom_open_plugin(post_class_t *class_gen, int inputs, this->class = class; class->ip = this; - this->metronom = _x_metronom_init(0, 1, class->xine); + this->metronom = _x_metronom_init(1, 0, class->xine); lprintf("goom: goom_open_plugin\n"); diff --git a/src/post/visualizations/fftgraph.c b/src/post/visualizations/fftgraph.c index 50d4293e4..1953563b7 100644 --- a/src/post/visualizations/fftgraph.c +++ b/src/post/visualizations/fftgraph.c @@ -20,7 +20,7 @@ * FftGraph Visualization Post Plugin For xine * by Thibaut Mattern (tmattern@noos.fr) * - * $Id: fftgraph.c,v 1.6 2003/11/20 00:42:14 tmattern Exp $ + * $Id: fftgraph.c,v 1.7 2003/11/26 19:30:17 mroi Exp $ * */ @@ -467,7 +467,7 @@ static post_plugin_t *fftgraph_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; diff --git a/src/post/visualizations/fftscope.c b/src/post/visualizations/fftscope.c index 58e9c5e1f..d349f8603 100644 --- a/src/post/visualizations/fftscope.c +++ b/src/post/visualizations/fftscope.c @@ -22,7 +22,7 @@ * * FFT code by Steve Haehnichen, originally licensed under GPL v1 * - * $Id: fftscope.c,v 1.20 2003/11/20 00:42:14 tmattern Exp $ + * $Id: fftscope.c,v 1.21 2003/11/26 19:30:17 mroi Exp $ * */ @@ -506,7 +506,7 @@ static post_plugin_t *fftscope_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; 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; diff --git a/src/post/visualizations/oscope.c b/src/post/visualizations/oscope.c index 2c28e7de3..ee3c905d1 100644 --- a/src/post/visualizations/oscope.c +++ b/src/post/visualizations/oscope.c @@ -20,7 +20,7 @@ * Basic Oscilloscope Visualization Post Plugin For xine * by Mike Melanson (melanson@pcisys.net) * - * $Id: oscope.c,v 1.13 2003/11/20 00:42:14 tmattern Exp $ + * $Id: oscope.c,v 1.14 2003/11/26 19:30:17 mroi Exp $ * */ @@ -373,7 +373,7 @@ static post_plugin_t *oscope_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; |