Commit 2a0e5aab authored by vaclav's avatar vaclav
Browse files

Merge remote-tracking branch 'remotes/origin/main' into param_upmx_floats

parents 35bde97c 1d5adce5
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -690,7 +690,7 @@ clang-format-check:
# ---------------------------------------------------------------

# check bitexactness to EVS windows binaries
be-2-evs-windows:
.be-2-evs-windows: # Temporarily disabled -- Ericsson Windows runner used for HL activities which the reduces capacity for this job. To be resumed after selection
  extends:
    - .rules-main-push
  tags:
+1 −0
Original line number Diff line number Diff line
@@ -240,6 +240,7 @@
#define ENHANCED_STEREO_DMX                             /* Orange : Contribution 48 - Enhanced stereo downmix. */

#define BINAURAL_AUDIO_CMDLINE
#define FIX_570_TCX_LPC_WRITE                           /* FhG: fix issue 570: LPC bitstream writer in TCX */

/* ################## End DEVELOPMENT switches ######################### */
/* clang-format on */
+4 −0
Original line number Diff line number Diff line
@@ -392,10 +392,14 @@ void stereo_tcx_core_enc(
     * Write LPC parameters
     *--------------------------------------------------------------------------------*/

#ifndef FIX_570_TCX_LPC_WRITE
    n = st->coder_type; /* IVAS_fmToDo: hack to keep bit-exactness -> TBV */
    st->coder_type = INACTIVE;
#endif
    writeLPCparam( st, hBstr, param_lpc, bits_param_lpc, no_param_lpc, &total_nbbits );
#ifndef FIX_570_TCX_LPC_WRITE
    st->coder_type = n;
#endif

    assert( total_nbbits == ( nbits_lpc[0] + nbits_lpc[1] ) );
#ifdef DEBUG_MODE_TCX
+1 −5
Original line number Diff line number Diff line
@@ -266,11 +266,7 @@ def test_param_file_tests(

    # the output file is not the real output filename
    # -> construct output filename
    if output_config != "":
        output_file = f"{testv_base}_{tag_str}.dec.{output_config_name}.pcm"
    else:
        # EVS decoder command lines do not have an output_config: use "MONO" in the output filename
        output_file = f"{testv_base}_{tag_str}.dec.MONO.pcm"
    output_file = f"{testv_base}_{tag_str}.dec.wav"

    decode(
        dut_decoder_frontend,