~ubuntu-branches/ubuntu/raring/pd-smlib/raring-proposed

« back to all changes in this revision

Viewing changes to threshold.c

  • Committer: Package Import Robot
  • Author(s): Hans-Christoph Steiner
  • Date: 2012-09-25 12:20:08 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120925122008-jhr5hyl3juh91eyv
Tags: 0.12.2-1
* updated to upstream version v0.12.2
* removed patches since they are in new upstream release
* bumped standards version to 3.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
    t_outlet *x_outlet2;        /* bang out for low thresh */
12
12
    t_clock *x_clock;           /* wakeup for message output */
13
13
    int x_state;                        /* 1 = high, 0 = low */
14
 
    float x_hithresh;           /* value of high threshold */
15
 
    float x_lothresh;           /* value of low threshold */
16
 
    float x_deadwait;           /* msec remaining in dead period */
17
 
    float x_hideadtime;         /* hi dead */
18
 
    float x_lodeadtime;         /* lo dead */
 
14
    t_float x_hithresh;         /* value of high threshold */
 
15
    t_float x_lothresh;         /* value of low threshold */
 
16
    t_float x_deadwait;         /* msec remaining in dead period */
 
17
    t_float x_hideadtime;               /* hi dead */
 
18
    t_float x_lodeadtime;               /* lo dead */
19
19
} t_threshold;
20
20
 
21
21
static void threshold_tick(t_threshold *x);