summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2002-10-31 08:34:53 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2002-10-31 08:34:53 +0000
commita54cde1dbc2dcda6ab7f956b6aef9ebf78df31eb (patch)
treed619b3748b3b21dd443869657870ed5ba375fc05
parent20125cf1bf028e138cc8da0edead6998eccd4fa9 (diff)
downloadgstreamer-plugins-bad-a54cde1dbc2dcda6ab7f956b6aef9ebf78df31eb.tar.gz
output fixes
Original commit message from CVS: output fixes
-rw-r--r--gst/mixmatrix/mixmatrix.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c
index a8d5279f4..12e6c1d69 100644
--- a/gst/mixmatrix/mixmatrix.c
+++ b/gst/mixmatrix/mixmatrix.c
@@ -176,14 +176,14 @@ mixmatrix_alloc_matrix (int x,int y)
{
gfloat **matrix;
int i;
- fprintf(stderr,"allocating a %dx%d matrix of floats\n",x,y);
+ GST_DEBUG(0,"mixmatrix: allocating a %dx%d matrix of floats\n",x,y);
matrix = g_new(gfloat *,x);
- fprintf(stderr,"%p: ",matrix);
+ GST_DEBUG(0,"mixmatrix: %p: ",matrix);
for (i=0;i<x;i++) {
matrix[i] = g_new(gfloat,y);
- fprintf(stderr,"%p, ",matrix[i]);
+ GST_DEBUG(0,"%p, ",matrix[i]);
}
- fprintf(stderr,"\n");
+ GST_DEBUG(0,"\n");
return matrix;
}
@@ -237,7 +237,7 @@ mixmatrix_resize(GstMixMatrix *mix, int sinkpads, int srcpads)
gfloat **newmatrix;
int i;
- fprintf(stderr,"resizing matrix!!!!\n");
+ GST_DEBUG(0,"mixmatrix: resizing matrix!!!!\n");
// check the sinkpads list
if (sinkresize) {