From 8f4600fbffc7751d2fcdeb763dc81d20ddf49bd5 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 12 Nov 2003 02:49:30 +0000 Subject: [PATCH] use debugging macros for debugging (d'oh) Original commit message from CVS: use debugging macros for debugging (d'oh) --- ext/alsa/gstalsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/alsa/gstalsa.c b/ext/alsa/gstalsa.c index ad258aa952..1bd1baf5d0 100644 --- a/ext/alsa/gstalsa.c +++ b/ext/alsa/gstalsa.c @@ -744,7 +744,7 @@ no_difference: int samples = MIN (bytes, samplestamp - this->transmitted) * (element->numpads == 1 ? this->format->channels : 1); int size = samples * snd_pcm_format_physical_width (this->format->format) / 8; - g_printerr ("Allocating %d bytes (%ld samples) now to resync: sample %ld expected, but got %ld\n", + GST_INFO_OBJECT (this, "Allocating %d bytes (%ld samples) now to resync: sample %ld expected, but got %ld\n", size, MIN (bytes, samplestamp - this->transmitted), this->transmitted, samplestamp); sink->data[i] = g_try_malloc (size); if (!sink->data[i]) {