mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
don't print to stderr, use debug messages
Original commit message from CVS: don't print to stderr, use debug messages
This commit is contained in:
parent
d54200bb4d
commit
20b290cd04
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue