Mixer: Include all outputs in autoconnect wildcard group.

pull/116/head
Jonathan Moore Liles 2013-09-09 23:12:36 -07:00
parent eb482d3a36
commit 758f7b86b4
1 changed files with 13 additions and 1 deletions

View File

@ -803,12 +803,24 @@ Chain::get_output_ports ( std::list<std::string> &sl)
char *s;
asprintf( &s, "%s/%s",
strip()->group()->single() ? "*" : strip()->group()->name(),
"*",
m->aux_audio_output[j].jack_port()->name() );
sl.push_back( s );
free(s);
if ( ! strip()->group()->single() )
{
asprintf( &s, "%s/%s",
strip()->group()->name(),
m->aux_audio_output[j].jack_port()->name() );
sl.push_back( s );
free(s);
}
}
}
}