List which devices are inputs and outputs in "console list devices"

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@99009 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2008-01-17 23:21:30 +00:00
parent d09fdcf61d
commit 30de4fc350
1 changed files with 3 additions and 1 deletions

View File

@ -801,7 +801,9 @@ static char *cli_list_devices(struct ast_cli_entry *e, int cmd, struct ast_cli_a
const PaDeviceInfo *dev = Pa_GetDeviceInfo(index);
if (!dev)
continue;
ast_cli(a->fd, "Device Name: %s\n", dev->name);
ast_cli(a->fd, "Device Name: %s %s %s\n", dev->name,
dev->maxInputChannels ? "(Input)" : "",
dev->maxOutputChannels ? "(Output)" : "");
if (index == def_input)
ast_cli(a->fd, " ---> Default Input Device\n");
if (index == def_output)