Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fmat.c

    r4ed0ed1 r83d2948  
    2222#include "fmat.h"
    2323
    24 fmat_t * new_fmat (uint_t height, uint_t length) {
     24fmat_t * new_fmat (uint_t length, uint_t height) {
    2525  if ((sint_t)length <= 0 || (sint_t)height <= 0 ) {
    2626    return NULL;
     
    4949}
    5050
    51 void fmat_set_sample(fmat_t *s, smpl_t data, uint_t channel, uint_t position) {
     51void fmat_write_sample(fmat_t *s, smpl_t data, uint_t channel, uint_t position) {
    5252  s->data[channel][position] = data;
    5353}
    54 
    55 smpl_t fmat_get_sample(fmat_t *s, uint_t channel, uint_t position) {
     54smpl_t fmat_read_sample(fmat_t *s, uint_t channel, uint_t position) {
    5655  return s->data[channel][position];
    5756}
    58 
     57void fmat_put_channel(fmat_t *s, smpl_t * data, uint_t channel) {
     58  s->data[channel] = data;
     59}
    5960void fmat_get_channel(fmat_t *s, uint_t channel, fvec_t *output) {
    6061  output->data = s->data[channel];
    6162  output->length = s->length;
    6263  return;
    63 }
    64 
    65 smpl_t * fmat_get_channel_data(fmat_t *s, uint_t channel) {
    66   return s->data[channel];
    6764}
    6865
Note: See TracChangeset for help on using the changeset viewer.