Changes in src/fmat.c [c7860af:3cd9fdd]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fmat.c
rc7860af r3cd9fdd 55 55 s->data[channel] = data; 56 56 } 57 smpl_t * fmat_get_channel(fmat_t *s, uint_t channel) { 58 return s->data[channel]; 57 void fmat_get_channel(fmat_t *s, uint_t channel, fvec_t *output) { 58 output->data = s->data[channel]; 59 output->length = s->length; 60 return; 59 61 } 60 62
Note: See TracChangeset
for help on using the changeset viewer.