Commit 535bc54c authored by vaclav's avatar vaclav
Browse files

Merge branch '20250811_fix_MSVC_warnings' into 'main'

[allow-regression] [non-BE] 20250811 fix msvc warnings

See merge request !2041
parents c9ed0dbf ea282387
Loading
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -148,8 +148,6 @@
  </ItemDefinitionGroup>
  <ItemGroup>
    <ClCompile Include="..\apps\isar_post_rend.c" />
    <ClCompile Include="..\lib_com\enh64.c" />
    <ClCompile Include="..\lib_com\enhUL32.c" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="lib_debug.vcxproj">
+639 −208

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -696,7 +696,7 @@ ivas_error ivas_corecoder_enc_reconfig_fx(
        ELSE IF( st_ivas->hMCT != NULL && GT_16( st_ivas->nCPE, 1 ) )
        {
#ifdef NONBE_FIX_ISM_XOVER_BR
            IF( ( error = mct_enc_reconfigure_fx( st_ivas, NE_16( nchan_transport_old_real, nchan_transport_real ) ) ) != IVAS_ERR_OK )
            IF( ( error = mct_enc_reconfigure_fx( st_ivas, (UWord16) NE_16( nchan_transport_old_real, nchan_transport_real ) ) ) != IVAS_ERR_OK )
#else
            IF( ( error = mct_enc_reconfigure_fx( st_ivas, st_ivas->nchan_transport != nchan_transport_old ) ) != IVAS_ERR_OK )
#endif
+1 −1
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ static void ivas_reverb_set_energies(
    {
        input_fc[freq_idx] = freq_idx * ( 0.5f * sampling_rate / (float) ( avg_pwr_len - 1 ) );
#ifdef FIX_1741_REVERB_TIMES_Q_FORMAT
        input_fc_fx[freq_idx] = input_fc[freq_idx] * ONE_IN_Q16;
        input_fc_fx[freq_idx] = (Word16) ( input_fc[freq_idx] * ONE_IN_Q16 + 0.5f );
#endif
    }