diff --git a/apps/decoder.c b/apps/decoder.c index 68b73151ce812a5ef2e84aaf38a407a71b836ae8..1493350f7b0d3f9758d6e9b5b0df019e2e3d0168 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 4ede41624f7bf628c8148f1b12e8c41095f3beae..2cddc68cb02bb2eabfa695b934d29826ffdfd8d1 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