1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-04 15:50:10 +01:00

Move library tree where it belongs

This commit is contained in:
ra
2010-01-24 09:19:39 +00:00
parent e74978ba77
commit 58caf78a86
6020 changed files with 2790154 additions and 0 deletions

View File

@@ -0,0 +1,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) */