From fe7a3dd77c226aa49cd66bc4de066b9a741fdab3 Mon Sep 17 00:00:00 2001 From: Charles Kinuthia Date: Fri, 22 Sep 2023 11:40:02 +0200 Subject: [PATCH] Update `-dpid` usage description to inlcude BINAURAL_ROOM_REVERB --- apps/decoder.c | 8 ++++---- apps/renderer.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/decoder.c b/apps/decoder.c index 68b73151ce..1493350f7b 100644 --- a/apps/decoder.c +++ b/apps/decoder.c @@ -1672,10 +1672,10 @@ static void usage_dec( void ) fprintf( stdout, "-exof File : External orientation File for external orientation trajectory\n" ); #ifdef FIX_708_DPID_COMMAND_LINE fprintf( stdout, "-dpid ID : Directivity pattern ID(s) = [ID1, ID2, ID3, ID4]. Space-separated list of up\n" ); - fprintf( stdout, " to 4 numbers (unsigned integers) can be specified for BINAURAL output configuration.\n" ); - fprintf( stdout, " ID1, ID2, ID3, ID4 specify the directivity pattern IDs used for ISMs 1,2,3 and 4 respectively.\n" ); - fprintf( stdout, " This options needs to be accompanied by a render_config file, otherwise a default\n" ); - fprintf( stdout, " directivity pattern is used.\n" ); + fprintf( stdout, " to 4 numbers (unsigned integers) can be specified for BINAURAL and BINAURAL_ROOM_REVERB\n" ); + fprintf( stdout, " output configuration. ID1, ID2, ID3, ID4 specify the directivity pattern IDs used for\n" ); + fprintf( stdout, " ISMs 1,2,3 and 4 respectively. This options needs to be accompanied by a render_config file,\n" ); + fprintf( stdout, " otherwise a default directivity pattern is used.\n" ); #else fprintf( stdout, "-dpid ID : Directivity pattern ID(s) (space-separated list of up to 4 numbers can be specified) for binaural output configuration\n" ); #endif diff --git a/apps/renderer.c b/apps/renderer.c index 4ede41624f..2cddc68cb0 100644 --- a/apps/renderer.c +++ b/apps/renderer.c @@ -385,7 +385,7 @@ static const CmdLnParser_Option cliOptions[] = { .match = "ism_directivity_pattern_id", .matchShort = "dpid", #ifdef FIX_708_DPID_COMMAND_LINE - .description = "Directivity pattern ID(s) = [ID1, ID2, ID3, ID4]. Space-separated list of up to 4 numbers (unsigned integers) can be specified for BINAURAL output configuration.\nID1, ID2, ID3, ID4 specify the directivity pattern IDs used for ISMs 1,2,3 and 4 respectively.\nThis options needs to be accompanied by a render_config file, otherwise a default directivity pattern is used.", + .description = "Directivity pattern ID(s) = [ID1, ID2, ID3, ID4]. Space-separated list of up to 4 numbers (unsigned integers) can be specified for BINAURAL and BINAURAL_ROOM_REVERB output configuration.\nID1, ID2, ID3, ID4 specify the directivity pattern IDs used for ISMs 1,2,3 and 4 respectively.\nThis options needs to be accompanied by a render_config file, otherwise a default directivity pattern is used.", #else .description = "Directivity pattern ID(s) (space-separated list of up to 4 numbers can be specified) for binaural output configuration", #endif -- GitLab