diff --git a/apps/renderer.c b/apps/renderer.c index 98a67cb5b1fc434f901c648c0758ec5b6c268925..139c473e1c29405ecdf3791a455fc2e998d5ed85 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 d8bed8d76f0922f8cf7a8999309432bf3bc2d6f2..a168be09dd83290a6b40112d9b0d87ea3cf452f0 100644 --- a/lib_com/options.h +++ b/lib_com/options.h @@ -160,6 +160,7 @@ #define FIX_SPLITREND_WARNINGS /* FhG: fix warnings related to split rendering observed in build jobs */ #define FIX_923_EXTERNAL_REND_COMMAND_LINE /* VA: issue 923: enable external renderer command-line options in UPPER case letters */ #define FIX_921_OMASA_DELAY_PRINTOUT /* VA: issue 921: correct OMASA decoder delay printout */ +#define FIX_929_RENDERER_CMDL /* Nokia: issue #929: renderer command line option */ /* #################### End BE switches ################################## */