Capsim Block Documentation
This star provides periodic demultiplexing of an input data stream.
Port | Type | Name | |
---|---|---|---|
0 | float | x |
Num | Type | Name | Initial Value | Description |
---|---|---|---|---|
0 | int* | out_time | ||
1 | int | obufs |
int i; int no_samples; |
---|
if(N < 1 ) { fprintf(stderr,"demux: improper parameter\n"); return(1); } for(i=0; i |
---|
for(no_samples=MIN_AVAIL();no_samples >0; --no_samples) { IT_IN(0); for(i=0; i |
---|
/* Capsim (r) Text Mode Kernel (TMK) Star Library (Blocks) Copyright (C) 1989-2017 Silicon DSP Corporation This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA http://www.silicondsp.com Silicon DSP Corporation Las Vegas, Nevada */ |
---|
/********************************************************************** demux() *********************************************************************** This star provides periodic demultiplexing of an input data stream. It is appropriate for sub-sampling (integer decimation) or creating data streams for fractionally-spaced equalization (FSE). For every N (integer) input samples, 1 sample is sent to each output. The number of outputs and their phases are selectable. Param 1 - (int) ratio input rate/output rate, N. 2 - (array) specifies the "phase" (delay in samples relative to first input sample) for each output (10 Max). All phases must be non-negative. |
---|