Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fmat.c

    rc7860af r3cd9fdd  
    5555  s->data[channel] = data;
    5656}
    57 smpl_t * fmat_get_channel(fmat_t *s, uint_t channel) {
    58   return s->data[channel];
     57void 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;
    5961}
    6062
Note: See TracChangeset for help on using the changeset viewer.