diff --git a/spa/plugins/audioconvert/channelmix.c b/spa/plugins/audioconvert/channelmix.c index b6634ce6a..7db152605 100644 --- a/spa/plugins/audioconvert/channelmix.c +++ b/spa/plugins/audioconvert/channelmix.c @@ -216,8 +216,11 @@ static int setup_convert(struct impl *this, if ((res = channelmix_init(&this->mix)) < 0) return res; - spa_log_info(this->log, NAME " %p: got channelmix features %08x:%08x", - this, this->cpu_flags, this->mix.cpu_flags); + spa_log_info(this->log, NAME " %p: got channelmix features %08x:%08x %d", + this, this->cpu_flags, this->mix.cpu_flags, + this->mix.is_identity); + + this->is_passthrough = this->mix.is_identity; return 0; }