Commit b59f6bb3 authored by Marek Szczerba's avatar Marek Szczerba
Browse files

Merge branch 'main' into 109-orientation-tracking-modes

parents 938ebc11 15fa87b6
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -40,6 +40,9 @@
../IVAS_cod -dtx 20 13200 8 testv/stv8c.pcm bit
../IVAS_dec -fec 5 8 bit testv/stv8c_13k20_8-8_DTX20_FEC5.tst

// Codec A at 32 kbps, 32kHz in, 8kHz out, random FEC at 6%
../IVAS_cod 32000 32 scripts/testv/stv32c.pcm bit
../IVAS_dec -fec testv/FEC_6pct2.bin 8 bit stv32c_32k_32-8_FEC6.tst


// Codec A at 5.90 kbps, 16kHz in, 16kHz out, VBR
@@ -204,6 +207,10 @@
../IVAS_cod ../scripts/switchPaths/sw_swb1.bin 32 testv/stv32c.pcm bit
../IVAS_dec 32 bit testv/stv32c_13_128k_32-32.tst

// Codec switching EVS - AMR-WB IO between 5.9 and 128 kbps, 48kHz in, 32kHz out
../IVAS_cod ../scripts/switchPaths/sw_amrwb_evs2.bin 48 testv/stv48c.pcm bit
../IVAS_dec 32 bit testv/stv48c_59_128k_48-32.tst



// AMR-WB IO at 12.65 kbps, 16kHz in, 16kHz out, fixed DTX

scripts/testv/FEC_6pct2.bin

0 → 100644LFS
+130 B

File added.

No diff preview for this file type.

(87.7 KiB)

File mode changed from 100644 to 100755.

+4 −8
Original line number Diff line number Diff line
@@ -356,14 +356,10 @@ def simulate(

    if platform.system() == "Windows":
        netsim = [os.path.join(rootdir, "scripts", "tools", "Win32", "networkSimulator_g192.exe")]
    elif platform.system() == "Linux":
        # there is no Linux binary available -> use the Win32 binary via wine
        netsim = [
            "wine",
            os.path.join(rootdir, "scripts", "tools", "Win32", "networkSimulator_g192.exe"),
        ]
    elif platform.system() == "Darwin":
        netsim = [os.path.join(rootdir, "scripts", "tools", "Darwin", "networkSimulator_g192")]
    elif platform.system() in ["Linux", "Darwin"]:
        netsim = [os.path.join(rootdir, "scripts", "tools", platform.system(), "networkSimulator_g192")]
    else:
        assert False, f"networkSimulator_g192 not available for {platform.system()}"

    if update_ref == 1 or update_ref == 2 and not os.path.exists(ref_out_file):
        # call network simulator on REF encoder output
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ ivas_br_list = ['32000', '64000', '96000', '256000']
sampling_rate_list = ['48', '32', '16']
agc_list = [-1, 0, 1]

AbsTol = '3'
AbsTol = '0'


def check_and_makedir(dir_path):
Loading