From ec9366826bf223adf28f4424f693a1d93d134a3c Mon Sep 17 00:00:00 2001 From: Jouni Paulus Date: Tue, 5 Dec 2023 09:01:41 +0100 Subject: [PATCH] correct renderer command line option long version. switch: FIX_929_RENDERER_CMDL --- apps/renderer.c | 4 ++++ lib_com/options.h | 1 + 2 files changed, 5 insertions(+) diff --git a/apps/renderer.c b/apps/renderer.c index 98a67cb5b1..139c473e1c 100644 --- a/apps/renderer.c +++ b/apps/renderer.c @@ -336,7 +336,11 @@ static const CmdLnParser_Option cliOptions[] = { .description = "LFE panning matrix. File (CSV table) containing a matrix of dimensions [ num_input_lfe x num_output_channels ] with elements specifying linear routing gain (like --gain, -g). \nIf specified, overrides the output LFE position option and the default behavior which attempts to map input to output LFE channel(s)" }, { .id = CmdLnOptionId_noDelayCmp, +#ifdef FIX_929_RENDERER_CMDL + .match = "no_delay_compensation", +#else .match = "no_delay_comparison", +#endif .matchShort = "no_delay_cmp", .description = "[flag] Turn off delay compensation", }, diff --git a/lib_com/options.h b/lib_com/options.h index 8a5f0f8b52..bcbb958b80 100755 --- a/lib_com/options.h +++ b/lib_com/options.h @@ -157,6 +157,7 @@ #define FIX_891_PARAMUPMIX_CLEANUP /* Dlb: issue 891: remove unneeded code from ParamUpmix */ #define FIX_917_LCLD_WARNINGS /* Dlb: issue 917 and 918: fix LCLD codec warnings*/ #define FIX_920_IGF_INIT_ERROR /* FhG: issue 920: fix bitrate mismatch in initial IGF config to avoid error message in same cases */ +#define FIX_929_RENDERER_CMDL /* Nokia: issue #929: renderer command line option */ /* #################### End BE switches ################################## */ -- GitLab