mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
audioconvert: warn -> debug
This commit is contained in:
parent
48e11c6fe0
commit
14114a7386
1 changed files with 2 additions and 2 deletions
|
|
@ -2449,7 +2449,7 @@ static void free_tmp(struct impl *this)
|
||||||
{
|
{
|
||||||
uint32_t i;
|
uint32_t i;
|
||||||
|
|
||||||
spa_log_warn(this->log, "free tmp %d", this->empty_size);
|
spa_log_debug(this->log, "free tmp %d", this->empty_size);
|
||||||
|
|
||||||
free(this->empty);
|
free(this->empty);
|
||||||
this->empty = NULL;
|
this->empty = NULL;
|
||||||
|
|
@ -2471,7 +2471,7 @@ static int ensure_tmp(struct impl *this, uint32_t maxsize)
|
||||||
if (maxsize > this->empty_size) {
|
if (maxsize > this->empty_size) {
|
||||||
float *empty, *scratch, *tmp[2];
|
float *empty, *scratch, *tmp[2];
|
||||||
|
|
||||||
spa_log_warn(this->log, "resize tmp %d -> %d", this->empty_size, maxsize);
|
spa_log_debug(this->log, "resize tmp %d -> %d", this->empty_size, maxsize);
|
||||||
|
|
||||||
if ((empty = realloc(this->empty, maxsize + MAX_ALIGN)) != NULL)
|
if ((empty = realloc(this->empty, maxsize + MAX_ALIGN)) != NULL)
|
||||||
this->empty = empty;
|
this->empty = empty;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue