Skip to content
GitLab
Explore
Sign in
Commits on Source (3)
port NONBE_1229_FIX_ISM1_DPID basop
· 93c0cf82
kinuthia
authored
Aug 14, 2025
93c0cf82
dummy commit to trigger pipeline again
· d25b3a0c
kinuthia
authored
Aug 14, 2025
d25b3a0c
Merge branch '1912_basop_mr1872-from-float' into 'main'
· a90c34d3
kinuthia
authored
Aug 14, 2025
[Non-BE][allow-regression] Resolve "Port mr1872 from float" Closes
#1912
See merge request
!2078
a90c34d3
Show whitespace changes
Inline
Side-by-side
lib_com/options.h
View file @
a90c34d3
...
@@ -139,6 +139,8 @@
...
@@ -139,6 +139,8 @@
#define NONBE_1894_OSBA_SCALING
/* FhG: do not scale OSBA inputs by 0.5 any more */
#define NONBE_1894_OSBA_SCALING
/* FhG: do not scale OSBA inputs by 0.5 any more */
#define NONBE_1360_LFE_DELAY
/* Dlb: LFE delay alignment when rendering in CLDFB domain*/
#define NONBE_1360_LFE_DELAY
/* Dlb: LFE delay alignment when rendering in CLDFB domain*/
#define NONBE_1229_FIX_ISM1_DPID
/* Eri: issue 1229: fix bug causing ISM 1 to use default -dpid instead of the specified one */
/* #################### End BASOP porting switches ############################ */
/* #################### End BASOP porting switches ############################ */
#define FIX_1766_TCX2ACELP_BWE_ISSUE
/* VA : Fix rare BWE issue when switching from TCX to ACELP */
#define FIX_1766_TCX2ACELP_BWE_ISSUE
/* VA : Fix rare BWE issue when switching from TCX to ACELP */
...
...
lib_util/render_config_reader.c
View file @
a90c34d3
...
@@ -2940,7 +2940,12 @@ ivas_error RenderConfigReader_getDirectivity(
...
@@ -2940,7 +2940,12 @@ ivas_error RenderConfigReader_getDirectivity(
}
}
}
}
/* case when -dpid is not specified, select first directivity pattern from config file */
/* case when -dpid is not specified, select first directivity pattern from config file */
#ifdef NONBE_1229_FIX_ISM1_DPID
move16
();
if
(
last_specified_id
==
65535
)
#else
if
(
n
==
0
)
if
(
n
==
0
)
#endif
{
{
last_specified_id
=
(
uint16_t
)
pRenderConfigReader
->
pDP
[
0
].
id
;
last_specified_id
=
(
uint16_t
)
pRenderConfigReader
->
pDP
[
0
].
id
;
}
}
...
...