aboutsummaryrefslogtreecommitdiffstats
path: root/tests/testsuite.at
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2019-02-27 12:29:19 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2019-03-07 10:22:22 +0100
commitfa7df8726001146c902d3a93e2a4b425fa9024b0 (patch)
tree69f5ad07e901d1bdc2f1d74cdd8b668c9da5e6fe /tests/testsuite.at
parent0fe9b3664a8d0b74d5e1c67593b350d67de3f98f (diff)
AMR: add functions to convert between bw-efficient and octet-alignedpmaier/amrmangle
RFC 3267 describes two different AMR frame formats. Octet Aligned and Bandwidth efficient mode. In Bandwith efficient mode the padding bits, which are used to align CMR, TOC and payload on octet boundaries are saved and the fielda are packed directly one after another. - Add functions to convert from one mode to the other and vice versa. - Add function to detect in which mode an AMR frame is encoded. Change-Id: I5b5a0fa644d8dbb1f04f9d7e35312683c7b3d196 Related: SYS#4470
Diffstat (limited to 'tests/testsuite.at')
-rw-r--r--tests/testsuite.at6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/testsuite.at b/tests/testsuite.at
index 8eb389d..fa4d63d 100644
--- a/tests/testsuite.at
+++ b/tests/testsuite.at
@@ -25,3 +25,9 @@ AT_KEYWORDS([jibuf_test])
cat $abs_srcdir/jibuf/jibuf_test.ok > expout
AT_CHECK([$abs_top_builddir/tests/jibuf/jibuf_test], [0], [expout], [ignore])
AT_CLEANUP
+
+AT_SETUP([amr_test])
+AT_KEYWORDS([amr_test])
+cat $abs_srcdir/amr/amr_test.ok > expout
+AT_CHECK([$abs_top_builddir/tests/amr/amr_test], [0], [expout], [ignore])
+AT_CLEANUP