summaryrefslogtreecommitdiff
path: root/pjsip-apps/src/test-pjsua/scripts-pesq
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-12-22 18:54:58 +0000
committerBenny Prijono <bennylp@teluu.com>2008-12-22 18:54:58 +0000
commit0723dbc601c74330f792db67ad75f6d580c30d8b (patch)
treea10e1cc45bdeb80210168f2e26421ae0d7e7295d /pjsip-apps/src/test-pjsua/scripts-pesq
parent341dea971f9d548cc922f5f3446d80130a1d57d9 (diff)
Created top-level directory tests and moved test-pjsua there. This will be the placeholder for future developed tests
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2392 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip-apps/src/test-pjsua/scripts-pesq')
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/100_defaults.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/101_defaults.py18
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711a.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711u.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g722.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_gsm.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_ilbc.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000_stereo.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000_stereo.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_16000.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_8000.py19
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711a.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711u.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g722.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_gsm.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_ilbc.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000_stereo.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000_stereo.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_16000.py17
-rw-r--r--pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_8000.py17
24 files changed, 0 insertions, 433 deletions
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/100_defaults.py b/pjsip-apps/src/test-pjsua/scripts-pesq/100_defaults.py
deleted file mode 100644
index 2901f469..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/100_defaults.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with default pjsua settings
-test_param = TestParam(
- "PESQ defaults pjsua settings",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --play-file wavs/input.16.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --rec-file wavs/tmp.16.wav --clock-rate 16000 --auto-answer 200")
- ]
- )
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/101_defaults.py b/pjsip-apps/src/test-pjsua/scripts-pesq/101_defaults.py
deleted file mode 100644
index 67b53e3f..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/101_defaults.py
+++ /dev/null
@@ -1,18 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with default pjsua settings
-test_param = TestParam(
- "PESQ defaults pjsua settings (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --play-file wavs/input.16.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --rec-file wavs/tmp.16.wav --clock-rate 16000 --auto-answer 200")
- ]
- )
-
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711a.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711a.py
deleted file mode 100644
index 9e91c963..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711a.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with PCMA codec
-test_param = TestParam(
- "PESQ codec PCMA",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec pcma --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec pcma --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711u.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711u.py
deleted file mode 100644
index fa64e7a6..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g711u.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with PCMU codec
-test_param = TestParam(
- "PESQ codec PCMU",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec pcmu --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec pcmu --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g722.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g722.py
deleted file mode 100644
index 4cb85dad..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_g722.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with G722 codec
-test_param = TestParam(
- "PESQ codec G722",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec g722 --clock-rate 16000 --play-file wavs/input.16.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec g722 --clock-rate 16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.7
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_gsm.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_gsm.py
deleted file mode 100644
index 221372ef..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_gsm.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with GSM codec
-test_param = TestParam(
- "PESQ codec GSM",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec gsm --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec gsm --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.0
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_ilbc.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_ilbc.py
deleted file mode 100644
index 45480b85..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_ilbc.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with iLBC codec
-test_param = TestParam(
- "PESQ codec iLBC",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec ilbc --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec ilbc --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.0
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000.py
deleted file mode 100644
index 691a362a..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with L16/16000/1 codec
-test_param = TestParam(
- "PESQ codec L16/16000/1",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec L16/16000/1 --clock-rate 16000 --play-file wavs/input.16.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec L16/16000/1 --clock-rate 16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000_stereo.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000_stereo.py
deleted file mode 100644
index 406a1826..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_16000_stereo.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with L16/16000/2 codec
-test_param = TestParam(
- "PESQ defaults pjsua settings",
- [
- InstanceParam("UA1", ADD_PARAM + " --stereo --max-calls=1 --clock-rate 16000 --add-codec L16/16000/2 --play-file wavs/input.2.16.wav"),
- InstanceParam("UA2", "--null-audio --stereo --max-calls=1 --clock-rate 16000 --add-codec L16/16000/2 --rec-file wavs/tmp.2.16.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000.py
deleted file mode 100644
index df05a9da..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with L16/8000/1 codec
-test_param = TestParam(
- "PESQ codec L16/8000/1",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec L16/8000/1 --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec L16/8000/1 --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000_stereo.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000_stereo.py
deleted file mode 100644
index b114a1ab..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_l16_8000_stereo.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with L16/8000/2 codec
-test_param = TestParam(
- "PESQ defaults pjsua settings",
- [
- InstanceParam("UA1", ADD_PARAM + " --stereo --max-calls=1 --clock-rate 8000 --add-codec L16/8000/2 --play-file wavs/input.2.8.wav"),
- InstanceParam("UA2", "--null-audio --stereo --max-calls=1 --clock-rate 8000 --add-codec L16/8000/2 --rec-file wavs/tmp.2.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_16000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_16000.py
deleted file mode 100644
index 448e04cb..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_16000.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with Speex/16000 codec
-test_param = TestParam(
- "PESQ codec Speex WB",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --clock-rate 16000 --add-codec speex/16000 --play-file wavs/input.16.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --clock-rate 16000 --add-codec speex/16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.7
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_8000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_8000.py
deleted file mode 100644
index cf4b169d..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/200_codec_speex_8000.py
+++ /dev/null
@@ -1,19 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-ADD_PARAM = ""
-
-if (HAS_SND_DEV == 0):
- ADD_PARAM += "--null-audio"
-
-# Call with Speex/8000 codec
-test_param = TestParam(
- "PESQ codec Speex NB",
- [
- InstanceParam("UA1", ADD_PARAM + " --max-calls=1 --add-codec speex/8000 --clock-rate 8000 --play-file wavs/input.8.wav"),
- InstanceParam("UA2", "--null-audio --max-calls=1 --add-codec speex/8000 --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-pesq_threshold = 3.0
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711a.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711a.py
deleted file mode 100644
index b7458c3c..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711a.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with PCMA codec
-test_param = TestParam(
- "PESQ codec PCMA (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec pcma --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec pcma --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711u.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711u.py
deleted file mode 100644
index 43cff651..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g711u.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with PCMU codec
-test_param = TestParam(
- "PESQ codec PCMU (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec pcmu --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec pcmu --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g722.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g722.py
deleted file mode 100644
index 24c89293..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_g722.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with G722 codec
-test_param = TestParam(
- "PESQ codec G722 (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec g722 --clock-rate 16000 --play-file wavs/input.16.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec g722 --clock-rate 16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.7
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_gsm.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_gsm.py
deleted file mode 100644
index d250b770..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_gsm.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with GSM codec
-test_param = TestParam(
- "PESQ codec GSM (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec gsm --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec gsm --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.0
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_ilbc.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_ilbc.py
deleted file mode 100644
index e6d4d35f..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_ilbc.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with iLBC codec
-test_param = TestParam(
- "PESQ codec iLBC (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec ilbc --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec ilbc --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.0
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000.py
deleted file mode 100644
index a71004cf..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with L16/16000/1 codec
-test_param = TestParam(
- "PESQ codec L16/16000/1 (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec L16/16000/1 --clock-rate 16000 --play-file wavs/input.16.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec L16/16000/1 --clock-rate 16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000_stereo.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000_stereo.py
deleted file mode 100644
index c20bc5fc..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_16000_stereo.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with L16/16000/2 codec
-test_param = TestParam(
- "PESQ defaults pjsua settings",
- [
- InstanceParam("UA1", "--stereo --max-calls=1 --clock-rate 16000 --add-codec L16/16000/2 --play-file wavs/input.2.16.wav --null-audio"),
- InstanceParam("UA2", "--stereo --max-calls=1 --clock-rate 16000 --add-codec L16/16000/2 --rec-file wavs/tmp.2.16.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000.py
deleted file mode 100644
index d404f2d7..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with L16/8000/1 codec
-test_param = TestParam(
- "PESQ codec L16/8000/1 (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec L16/8000/1 --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec L16/8000/1 --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.5
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000_stereo.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000_stereo.py
deleted file mode 100644
index a40cd7e8..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_l16_8000_stereo.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with L16/8000/2 codec
-test_param = TestParam(
- "PESQ defaults pjsua settings",
- [
- InstanceParam("UA1", "--stereo --max-calls=1 --clock-rate 8000 --add-codec L16/8000/2 --play-file wavs/input.2.8.wav --null-audio"),
- InstanceParam("UA2", "--stereo --max-calls=1 --clock-rate 8000 --add-codec L16/8000/2 --rec-file wavs/tmp.2.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = None
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_16000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_16000.py
deleted file mode 100644
index 252e4efe..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_16000.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with Speex/16000 codec
-test_param = TestParam(
- "PESQ codec Speex WB (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --clock-rate 16000 --add-codec speex/16000 --play-file wavs/input.16.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --clock-rate 16000 --add-codec speex/16000 --rec-file wavs/tmp.16.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.7
diff --git a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_8000.py b/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_8000.py
deleted file mode 100644
index 8f04dbc9..00000000
--- a/pjsip-apps/src/test-pjsua/scripts-pesq/201_codec_speex_8000.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# $Id$
-#
-from inc_cfg import *
-
-# Call with Speex/8000 codec
-test_param = TestParam(
- "PESQ codec Speex NB (RX side uses snd dev)",
- [
- InstanceParam("UA1", "--max-calls=1 --add-codec speex/8000 --clock-rate 8000 --play-file wavs/input.8.wav --null-audio"),
- InstanceParam("UA2", "--max-calls=1 --add-codec speex/8000 --clock-rate 8000 --rec-file wavs/tmp.8.wav --auto-answer 200")
- ]
- )
-
-if (HAS_SND_DEV == 0):
- test_param.skip = True
-
-pesq_threshold = 3.0