fc8a8417bd3d6cba210be05eccea23ac0ede12d9
[fw/altos] / ao-tools / lib / cc-analyse.c
1 /*
2  * Copyright © 2009 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include "cc.h"
19
20 int
21 cc_timedata_min(struct cc_timedata *d, double min_time, double max_time)
22 {
23         int     i;
24         int     set = 0;
25         int     min_i = -1;
26         double  min;
27
28         if (d->num == 0)
29                 return -1;
30         for (i = 0; i < d->num; i++)
31                 if (min_time <= d->data[i].time && d->data[i].time <= max_time)
32                         if (!set || d->data[i].value < min) {
33                                 min_i = i;
34                                 min = d->data[i].value;
35                                 set = 1;
36                         }
37         return min_i;
38 }
39
40 int
41 cc_timedata_max(struct cc_timedata *d, double min_time, double max_time)
42 {
43         int     i;
44         double  max;
45         int     max_i = -1;
46         int     set = 0;
47
48         if (d->num == 0)
49                 return -1;
50         for (i = 0; i < d->num; i++)
51                 if (min_time <= d->data[i].time && d->data[i].time <= max_time)
52                         if (!set || d->data[i].value > max) {
53                                 max_i = i;
54                                 max = d->data[i].value;
55                                 set = 1;
56                         }
57         return max_i;
58 }