Re: How to get information on number of input data samples in C++ OOT

2022-04-14 Thread George Edwards
Hi Jeff and Vasil, Thank you very much! George On Wed, Apr 13, 2022 at 7:21 PM Jeff Long wrote: > The C++ API gives you ninput_items explicitly, so ninput_items[0] is the > number of items in input_items[0]. > > On Wed, Apr 13, 2022 at 7:18 PM George Edwards > wrote: > >> Hello GNURadio

Re: How to get information on number of input data samples in C++ OOT

2022-04-14 Thread Vasil Velichkov
Hi George, On 14/04/2022 01.19, George Edwards wrote: > I am writing a Gnuradio C++ OOT block and need to get the number of complex > input data samples fed into my block by the scheduler on each iteration of > data delivery. > In Python, it is easy, I can find the value by doing: numInputs = >

Re: How to get information on number of input data samples in C++ OOT

2022-04-13 Thread Jeff Long
The C++ API gives you ninput_items explicitly, so ninput_items[0] is the number of items in input_items[0]. On Wed, Apr 13, 2022 at 7:18 PM George Edwards wrote: > Hello GNURadio Community, > > I am writing a Gnuradio C++ OOT block and need to get the number of > complex input data samples fed