summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Marc Valin <jmvalin@jmvalin.ca>2015-02-27 15:01:28 -0500
committerJean-Marc Valin <jmvalin@jmvalin.ca>2015-02-27 15:01:28 -0500
commit6814b2c2501cbe3a5da4686146095d7aae9dc4f2 (patch)
treed8acc64b424a0a9f51e8756a0d6df1772438cbe7
parent2d83e7e297a11c729f8723c2f01c1c35cac0c01f (diff)
downloadopus-6814b2c2501cbe3a5da4686146095d7aae9dc4f2.tar.gz
Avoiding the term "mode" in opus_demo
-rw-r--r--src/opus_demo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/opus_demo.c b/src/opus_demo.c
index 5a756790..9be3bf78 100644
--- a/src/opus_demo.c
+++ b/src/opus_demo.c
@@ -48,7 +48,7 @@ void print_usage( char* argv[] )
"<bits per second> [options] <input> <output>\n", argv[0]);
fprintf(stderr, " %s -d <sampling rate (Hz)> <channels (1/2)> "
"[options] <input> <output>\n\n", argv[0]);
- fprintf(stderr, "mode: voip | audio | restricted-lowdelay\n" );
+ fprintf(stderr, "application: voip | audio | restricted-lowdelay\n" );
fprintf(stderr, "options:\n" );
fprintf(stderr, "-e : only runs the encoder (output the bit-stream)\n" );
fprintf(stderr, "-d : only runs the decoder (reads the bit-stream as input)\n" );
@@ -573,7 +573,7 @@ int main(int argc, char *argv[])
bandwidth_string = "fullband";
break;
case OPUS_AUTO:
- bandwidth_string = "auto";
+ bandwidth_string = "auto bandwidth";
break;
default:
bandwidth_string = "unknown";
@@ -585,7 +585,7 @@ int main(int argc, char *argv[])
(long)sampling_rate, channels);
else
fprintf(stderr, "Encoding %ld Hz input at %.3f kb/s "
- "in %s mode with %d-sample frames.\n",
+ "in %s with %d-sample frames.\n",
(long)sampling_rate, bitrate_bps*0.001,
bandwidth_string, frame_size);