From 5370852a168e0006c1dd9f73c11309557c576fe1 Mon Sep 17 00:00:00 2001 From: knj Date: Wed, 8 Nov 2023 12:29:36 +0100 Subject: [PATCH 1/2] activate FIX_643_PCA_OPTION --- lib_com/options.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib_com/options.h b/lib_com/options.h index 2a7beaea74..c6aa559ff1 100644 --- a/lib_com/options.h +++ b/lib_com/options.h @@ -156,7 +156,7 @@ #define FIX_890_ARRAY_SIZE /* Nokia: issue #890: mismatch in 2D array size declaration and use */ #define BE_FIX_887_GCC_WARNING_ARRAY_SIZE /* VoiceAge: Issue 887: change array size definition to avoid warning with gcc 11.4.0 */ #define FIX_247_EXTERNAL_RENDERER_COMMAND_LINE /* VA: issue 247: harmonize command-line options names of external renderer with the decoder */ -// #define FIX_643_PCA_OPTION /* VA: issue 643: rename PCA bypass command-line option */ +#define FIX_643_PCA_OPTION /* VA: issue 643: rename PCA bypass command-line option */ /* #################### End BE switches ################################## */ -- GitLab From 3b6feaa98b4e7b1f211fc044013a4f8abf367fb3 Mon Sep 17 00:00:00 2001 From: knj Date: Wed, 8 Nov 2023 12:30:07 +0100 Subject: [PATCH 2/2] use new command line argument for pca --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index e585111982..f51021a3df 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -240,7 +240,7 @@ class EncoderFrontend: command.extend(["-max_band", max_band]) if pca: - command.extend(["-bypass", "2"]) + command.extend(["-pca"]) if quiet_mode: command.extend(["-q"]) -- GitLab