diff options
-rw-r--r-- | ponymix.1 | 4 | ||||
-rw-r--r-- | ponymix.c | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -12,11 +12,11 @@ perform many operations on both device and application sinks and source. Control input and output devices. .IP "\fB\-a\fR, \fB\-\-app\fR" Control the playback and recording streams. -.IP "\fB\-o\fR[\fR\fISINK\fR]\fR, \fB\-\-sink\fR[\fB=\fR\fISINK\fR]" +.IP "\fB\-o\fR[\fB=\fR\fISINK\fR]\fR, \fB\-\-sink\fR[\fB=\fR\fISINK\fR], \fB\-\-output\fR[\fB=\fR\fISINK\fR]" Specify the sink to control. If the argument is omitted, the default sink is used. \fISINK\fR must be the numeric index of the sink. -.IP "\fB\-i\fR[\fR\fISOURCE\fR]\fR, \fB\-\-source\fR[\fB=\fR\fISOURCE\fR]" +.IP "\fB\-i\fR[\fB=\fR\fISOURCE\fR]\fR, \fB\-\-source\fR[\fB=\fR\fISOURCE\fR], \fB\-\-input\fR[\fB=\fR\fISOURCE\fR]" Specify the source to control. If the argument is omitted, the default source is assumed. \fISOURCE\fR must be the numeric index of the source. @@ -828,7 +828,9 @@ int main(int argc, char *argv[]) { "device", no_argument, 0, 'd' }, { "help", no_argument, 0, 'h' }, { "sink", optional_argument, 0, 'o' }, + { "output", optional_argument, 0, 'o' }, { "source", optional_argument, 0, 'i' }, + { "input", optional_argument, 0, 'i' }, { 0, 0, 0, 0 }, }; |