From a17c2948a0ea0a310511f65ec0c81d907dfdc15d Mon Sep 17 00:00:00 2001 From: Michael Klingbeil Date: Fri, 23 Feb 2024 11:56:13 -0500 Subject: [PATCH] add usage string for opus_demo dec_complexity Signed-off-by: Jean-Marc Valin --- src/opus_demo.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/opus_demo.c b/src/opus_demo.c index af94c229f..92631df42 100644 --- a/src/opus_demo.c +++ b/src/opus_demo.c @@ -109,7 +109,8 @@ void print_usage( char* argv[] ) fprintf(stderr, "-bandwidth : audio bandwidth (from narrowband to fullband); default: sampling rate\n" ); fprintf(stderr, "-framesize <2.5|5|10|20|40|60|80|100|120> : frame size in ms; default: 20 \n" ); fprintf(stderr, "-max_payload : maximum payload size in bytes, default: 1024\n" ); - fprintf(stderr, "-complexity : complexity, 0 (lowest) ... 10 (highest); default: 10\n" ); + fprintf(stderr, "-complexity : encoder complexity, 0 (lowest) ... 10 (highest); default: 10\n" ); + fprintf(stderr, "-dec_complexity : decoder complexity, 0 (lowest) ... 10 (highest); default: 0\n" ); fprintf(stderr, "-inbandfec : enable SILK inband FEC\n" ); fprintf(stderr, "-forcemono : force mono encoding, even for stereo input\n" ); fprintf(stderr, "-dtx : enable SILK DTX\n" );