Changeset 78429de for src/lvec.h


Ignore:
Timestamp:
Oct 22, 2009, 3:10:44 AM (15 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
83963b3
Parents:
992beaa
Message:

src/*vec.h: strip down _*vec_t

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lvec.h

    r992beaa r78429de  
    3636*/
    3737
    38 /** Sample buffer type */
    39 typedef struct _lvec_t lvec_t;
    40 /** Buffer for real values */
    41 struct _lvec_t {
     38/** Buffer for real data in double precision */
     39typedef struct {
    4240  uint_t length;   /**< length of buffer */
    4341  uint_t channels; /**< number of channels */
    4442  lsmp_t **data;   /**< data array of size [length] * [channels] */
    45 };
     43} lvec_t;
     44
    4645/** lvec_t buffer creation function
    4746
Note: See TracChangeset for help on using the changeset viewer.