File: multiseq.h

package info (click to toggle)
audacity 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 44,240 kB
  • sloc: cpp: 182,841; ansic: 120,375; sh: 26,421; lisp: 7,495; makefile: 1,606; python: 240; xml: 104; perl: 31
file content (19 lines) | stat: -rw-r--r-- 522 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* this typedef goes here because it is needed by add */

typedef struct multiseq_struct {
    int			not_logically_stopped_cnt;
    int			nchans;
    /* greatest lower bound on logical stop time: */
    time_type		horizon;
    /* lowest time corresp to sample count on a snd_list: */
    time_type	        low_water; 
    snd_list_type	*chans;
    time_type		t0;
    rate_type		sr;
    LVAL closure;
} multiseq_node, *multiseq_type;



LVAL snd_make_multiseq(LVAL s1, LVAL closure);
    /* LISP: (SND-MULTISEQ ANY ANY) */