Fix broken whitespace. I'd apologize for the compile times if it was my fault :D
[ardour.git] / libs / ardour / ardour / pi_controller.h
1 /*
2   Copyright (C) 2008 Torben Hohn
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; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __libardour_pi_controller__
20 #define __libardour_pi_controller__
21
22 #include "ardour/types.h"
23
24 class PIController {
25 public:
26         PIController (double resample_factor, int fir_size);
27         ~PIController();
28
29         void reset (double resample_factor) {
30                 resample_mean = resample_factor;
31                 static_resample_factor = resample_factor;
32                 out_of_bounds ();
33         }
34
35         double get_ratio (int fill_level, int period_size);
36         void out_of_bounds();
37
38 public:
39         double  resample_mean;
40         double  static_resample_factor;
41         double* offset_array;
42         double* window_array;
43         int     offset_differential_index;
44         double  offset_integral;
45         double  catch_factor;
46         double  catch_factor2;
47         double  pclamp;
48         double  controlquant;
49         int     smooth_size;
50         double  smooth_offset;
51         double  current_resample_factor;
52         bool    fir_empty;
53 };
54
55 #define ESTIMATOR_SIZE 16
56
57 class PIChaser {
58 public:
59         PIChaser();
60         ~PIChaser();
61
62         double get_ratio( framepos_t chasetime_measured, framepos_t chasetime, framepos_t slavetime_measured, framepos_t slavetime, bool in_control, int period_size );
63         void reset();
64         framepos_t want_locate() { return want_locate_val; }
65
66 private:
67         PIController *pic;
68         framepos_t realtime_stamps[ESTIMATOR_SIZE];
69         framepos_t chasetime_stamps[ESTIMATOR_SIZE];
70         int array_index;
71         framepos_t want_locate_val;
72
73         void feed_estimator( framepos_t realtime, framepos_t chasetime );
74         double get_estimate();
75
76         double speed;
77
78         double speed_threshold;
79         framepos_t pos_threshold;
80 };
81
82 #endif /* __libardour_pi_controller__ */