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