Skip to content

Commit

Permalink
Add param node name to upmix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ideoforms committed Mar 23, 2016
1 parent 37e2ce9 commit e0b5687
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions signal/graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ namespace libsignal
*-----------------------------------------------------------------------*/
if (param_node->channels_out < node->channels_in && !node->no_input_automix)
{
signal_debug("Upmixing %s (%s wants %d channels, I only produce %d)", param_node->name.c_str(),
node->name.c_str(), node->channels_in, param_node->channels_out);
signal_debug("Upmixing %s (%s wants %d channels, %s only produces %d)", param_node->name.c_str(),
node->name.c_str(), node->channels_in, param_node->name.c_str(), param_node->channels_out);

/*------------------------------------------------------------------------
* If we generate 2 channels but have 6 channels demanded, repeat
Expand Down

0 comments on commit e0b5687

Please sign in to comment.