From 20b290cd040b5b0faef546fb3ba2aff3ed70b36c Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 22 Nov 2003 16:15:24 +0000 Subject: [PATCH] don't print to stderr, use debug messages Original commit message from CVS: don't print to stderr, use debug messages --- ext/alsa/gstalsasink.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/alsa/gstalsasink.c b/ext/alsa/gstalsasink.c index f2683e4119..fed961916e 100644 --- a/ext/alsa/gstalsasink.c +++ b/ext/alsa/gstalsasink.c @@ -385,8 +385,8 @@ no_difference: int samples = MIN (bytes, sample_diff) * (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", - size, MIN (bytes, sample_diff), this->transmitted, samplestamp); + GST_INFO_OBJECT (this, "Allocating %d bytes (%ld samples) now to resync: sample %ld expected, but got %ld\n", + size, MIN (bytes, sample_diff), this->transmitted, samplestamp); sink->data[i] = g_try_malloc (size); if (!sink->data[i]) { GST_WARNING_OBJECT (this, "error allocating %d bytes, buffers unsynced now.", size);