summaryrefslogtreecommitdiff
path: root/gr-vocoder/python/vocoder
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2014-03-07 11:21:33 +0100
committerMartin Braun <martin.braun@ettus.com>2014-03-07 18:10:21 +0100
commit01c4267261937e495545942131b5bd496eba2269 (patch)
tree78384e06068ae260358f20622526a66ceb4df482 /gr-vocoder/python/vocoder
parentca69ec5d64b67dfc714917bd94162a5d1f131d69 (diff)
vocoder: Fixed packing problem with Codec2, + GRC bindings, added example
Diffstat (limited to 'gr-vocoder/python/vocoder')
-rwxr-xr-xgr-vocoder/python/vocoder/qa_codec2_vocoder.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-vocoder/python/vocoder/qa_codec2_vocoder.py b/gr-vocoder/python/vocoder/qa_codec2_vocoder.py
index b2ed734888..0e29401c7a 100755
--- a/gr-vocoder/python/vocoder/qa_codec2_vocoder.py
+++ b/gr-vocoder/python/vocoder/qa_codec2_vocoder.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#
-# Copyright 2011,2013 Free Software Foundation, Inc.
+# Copyright 2011,2013,2014 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -54,4 +54,6 @@ class test_codec2_vocoder (gr_unittest.TestCase):
self.assertEqual(expected_data, actual_result)
if __name__ == '__main__':
+ # Note: The Vocoder is stateful, which means this test will produce failure when removing the xml option.
+ # Perhaps this is not the best way to test such a vocoder.
gr_unittest.run(test_codec2_vocoder, "test_codec2_vocoder.xml")