Compilation error in lib_dec.c with DEBUGGING on
Compiling in Linux with DEBUGGING on throws the following error:
make lib_dec/lib_dec.o
cc -std=c99 -pedantic -Wcast-qual -Wall -W -Wextra -Wno-long-long -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wno-implicit-fallthrough -ffp-contract=off -g3 -O0 -I-u -Iapps -Ilib_com -Ilib_debug -Ilib_dec -Ilib_enc -Ilib_isar -Ilib_lc3plus -Ilib_lc3plus/fft -Ilib_rend -Ilib_util -c -o lib_dec/lib_dec.o lib_dec/lib_dec.c
lib_dec/lib_dec.c: In function ‘feedAcousticEnvPI’:
lib_dec/lib_dec.c:3746:10: error: ‘renderConfig’ undeclared (first use in this function); did you mean ‘hRenderConfig’?
3746 | if ( renderConfig.renderer_type_override == IVAS_RENDER_TYPE_OVERRIDE_FASTCONV )
| ^~~~~~~~~~~~
| hRenderConfig
lib_dec/lib_dec.c:3746:10: note: each undeclared identifier is reported only once for each function it appears in
make: *** [<builtin>: lib_dec/lib_dec.o] Error 1
Looks like renderConfig is not supplied as an input parameter to the function feedAcousticEnvPI().