Improve help text about quality and jack

This commit is contained in:
Benoit Quiniou 2018-05-11 14:13:02 +02:00
parent e4cdf587f1
commit e7e617e766
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ Invoking vban_receptor or vban_emitter without any parameter will give hints on
-p, --port=PORT : MANDATORY. port to listen to
-s, --streamname=NAME : MANDATORY. streamname to play
-b, --backend=TYPE : audio backend to use. Available audio backends are: alsa pulseaudio jack pipe file . default is alsa.
-q, --quality=ID : network quality indicator from 0 (low latency) to 4. default is 1
-q, --quality=ID : network quality indicator from 0 (low latency) to 4. This also have interaction with jack buffer size. default is 1
-c, --channels=LIST : channels from the stream to use. LIST is of form x,y,z,... default is to forward the stream as it is
-o, --output=NAME : DEPRECATED. please use -d
-d, --device=NAME : Audio device name. This is file name for file backend, server name for jack backend, device for alsa, stream_name for pulseaudio.

View File

@ -57,7 +57,7 @@ void usage()
printf("-p, --port=PORT : MANDATORY. port to listen to\n");
printf("-s, --streamname=NAME : MANDATORY. streamname to play\n");
printf("-b, --backend=TYPE : audio backend to use. %s\n", audio_backend_get_help());
printf("-q, --quality=ID : network quality indicator from 0 (low latency) to 4. default is 1\n");
printf("-q, --quality=ID : network quality indicator from 0 (low latency) to 4. This also have interaction with jack buffer size. default is 1\n");
printf("-c, --channels=LIST : channels from the stream to use. LIST is of form x,y,z,... default is to forward the stream as it is\n");
printf("-o, --output=NAME : DEPRECATED. please use -d\n");
printf("-d, --device=NAME : Audio device name. This is file name for file backend, server name for jack backend, device for alsa, stream_name for pulseaudio.\n");