From 16c32a9fe0cae142877166d23e43e607ad4969f3 Mon Sep 17 00:00:00 2001 From: Dimitri Stolnikov Date: Sun, 4 May 2014 15:17:17 +0200 Subject: [PATCH] osmosdr: use a fixed output signature of 1x gr_complex --- lib/osmosdr/osmosdr_src_c.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/osmosdr/osmosdr_src_c.cc b/lib/osmosdr/osmosdr_src_c.cc index c9be8f4..03b9e3b 100644 --- a/lib/osmosdr/osmosdr_src_c.cc +++ b/lib/osmosdr/osmosdr_src_c.cc @@ -65,7 +65,7 @@ osmosdr_make_src_c (const std::string &args) osmosdr_src_c::osmosdr_src_c (const std::string &args) : gr::sync_block ("osmosdr_src_c", gr::io_signature::make(0, 0, sizeof (gr_complex)), - args_to_io_signature(args)), + gr::io_signature::make(1, 1, sizeof (gr_complex)) ), _dev(NULL), _buf(NULL), _running(true),