From fd1a28f693ed41d4bba9f1c800e79693e4c55ed2 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Sun, 17 Jul 2011 16:06:56 -0700 Subject: gr-vocoder: add skeleton top-level component --- gr-vocoder/python/Makefile.am | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 gr-vocoder/python/Makefile.am (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am new file mode 100644 index 000000000..b1c7b44d5 --- /dev/null +++ b/gr-vocoder/python/Makefile.am @@ -0,0 +1,24 @@ +# +# Copyright 2011 Free Software Foundation, Inc. +# +# This file is part of GNU Radio +# +# GNU Radio is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3, or (at your option) +# any later version. +# +# GNU Radio is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with GNU Radio; see the file COPYING. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, +# Boston, MA 02110-1301, USA. +# + +include $(top_srcdir)/Makefile.common + +SUBDIRS = -- cgit From 30754b17df67a808e7c960d4f3c94a6b05557a17 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Mon, 18 Jul 2011 06:28:05 -0700 Subject: gr-vocoder: reimplemented gr-gsm-fr-vocoder in gr-vocoder --- gr-vocoder/python/Makefile.am | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index b1c7b44d5..b71a47618 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -21,4 +21,14 @@ include $(top_srcdir)/Makefile.common -SUBDIRS = +vocoderdir = $(grpythondir)/vocoder + +TESTS = run_tests + +noinst_PYTHON = \ + qa_gsm_full_rate.py + +vocoder_PYTHON = \ + __init__.py + +EXTRA_DIST += run_tests.in -- cgit From 53cb984afd6f4dcb65f413dc9c4d8277eb8cc7d5 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Mon, 18 Jul 2011 11:21:59 -0700 Subject: gr-vocoder: re-implemented gr-cvsd-vocoder in gr-vocoder --- gr-vocoder/python/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index b71a47618..e4dc1ac61 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -26,9 +26,11 @@ vocoderdir = $(grpythondir)/vocoder TESTS = run_tests noinst_PYTHON = \ - qa_gsm_full_rate.py + qa_gsm_full_rate.py \ + qa_cvsd_vocoder.py vocoder_PYTHON = \ - __init__.py + __init__.py \ + cvsd.py EXTRA_DIST += run_tests.in -- cgit From b409a4b0c6131e01fc5a03c0fc31caa4829b0dec Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Mon, 18 Jul 2011 15:54:43 -0700 Subject: gr-vocoder: re-implemented gr-codec2-vocoder inside gr-vocoder --- gr-vocoder/python/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index e4dc1ac61..1afbc9232 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -26,8 +26,9 @@ vocoderdir = $(grpythondir)/vocoder TESTS = run_tests noinst_PYTHON = \ - qa_gsm_full_rate.py \ - qa_cvsd_vocoder.py + qa_codec2_vocoder.py \ + qa_cvsd_vocoder.py \ + qa_gsm_full_rate.py vocoder_PYTHON = \ __init__.py \ -- cgit From b80502b71eb27f9329b5d5e641bd0dd5ad0d7cdd Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Tue, 19 Jul 2011 09:06:58 -0700 Subject: gr-vocoder: adds ulaw encoder, decoder, and audio loopback example --- gr-vocoder/python/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index 1afbc9232..888dfbdf9 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -28,7 +28,8 @@ TESTS = run_tests noinst_PYTHON = \ qa_codec2_vocoder.py \ qa_cvsd_vocoder.py \ - qa_gsm_full_rate.py + qa_gsm_full_rate.py \ + qa_ulaw_vocoder.py vocoder_PYTHON = \ __init__.py \ -- cgit From c0580462f19d99a97b7955b9215bd08eab24cd5b Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Tue, 19 Jul 2011 09:31:10 -0700 Subject: gr-vocoder: adds alaw encoder, decoder, and audio loopback example --- gr-vocoder/python/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index 888dfbdf9..256b46005 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -26,6 +26,7 @@ vocoderdir = $(grpythondir)/vocoder TESTS = run_tests noinst_PYTHON = \ + qa_alaw_vocoder.py \ qa_codec2_vocoder.py \ qa_cvsd_vocoder.py \ qa_gsm_full_rate.py \ -- cgit From 7d4199a45036bbc10d749437cd8730434b51aec6 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Fri, 22 Jul 2011 15:11:24 -0700 Subject: gr-vocoder: added G.721 32K ADPCM encoder, decoder, and audio loopback example --- gr-vocoder/python/Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index 256b46005..fea9b572f 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -29,6 +29,7 @@ noinst_PYTHON = \ qa_alaw_vocoder.py \ qa_codec2_vocoder.py \ qa_cvsd_vocoder.py \ + qa_g721_vocoder.py \ qa_gsm_full_rate.py \ qa_ulaw_vocoder.py -- cgit From dcee8e7416b849234bc09e1ae8a2acb1d3d21e3a Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Fri, 22 Jul 2011 16:21:40 -0700 Subject: gr-vocoder: added G.723 40K ADPCM encoder, decoder, and audio loopback example --- gr-vocoder/python/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gr-vocoder/python/Makefile.am') diff --git a/gr-vocoder/python/Makefile.am b/gr-vocoder/python/Makefile.am index fea9b572f..4b6146ca7 100644 --- a/gr-vocoder/python/Makefile.am +++ b/gr-vocoder/python/Makefile.am @@ -30,6 +30,8 @@ noinst_PYTHON = \ qa_codec2_vocoder.py \ qa_cvsd_vocoder.py \ qa_g721_vocoder.py \ + qa_g723_24_vocoder.py \ + qa_g723_40_vocoder.py \ qa_gsm_full_rate.py \ qa_ulaw_vocoder.py -- cgit