remove debug output
[ardour.git] / libs / ardour / mididm.cc
1 /*
2  * Copyright (C) 2013-2014 Robin Gareus <robin@gareus.org>
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 #include "ardour/mididm.h"
20 #include "ardour/port_engine.h"
21
22 using namespace ARDOUR;
23
24 MIDIDM::MIDIDM (framecnt_t sample_rate)
25   : _sample_rate (sample_rate)
26   , _monotonic_cnt (sample_rate)
27   , _last_signal_tme (0)
28   , _cnt_total (0)
29   , _dly_total (0)
30   , _min_delay (INT32_MAX)
31   , _max_delay (0)
32   , _avg_delay (0)
33   , _var_m (0)
34   , _var_s (0)
35 {
36
37 }
38
39
40 int MIDIDM::process (pframes_t nframes, PortEngine &pe, void *midi_in, void *midi_out)
41 {
42         /* send midi event */
43         uint8_t obuf[3];
44         obuf[0] = 0xf2;
45         obuf[1] = (_monotonic_cnt)      & 0x7f;
46         obuf[2] = (_monotonic_cnt >> 7) & 0x7f;
47
48         pe.midi_clear(midi_out);
49         pe.midi_event_put (midi_out, 0, obuf, 3);
50
51         /* process incoming */
52         const pframes_t nevents = pe.get_midi_event_count (midi_in);
53 #if 0 //DEBUG
54                 printf("MIDI SEND: @%8"PRId64", recv: %d systime:%"PRId64"\n", _monotonic_cnt, nevents, g_get_monotonic_time());
55 #endif
56         for (pframes_t n = 0; n < nevents; ++n) {
57                 pframes_t timestamp;
58                 size_t size;
59                 uint8_t* buf;
60                 pe.midi_event_get (timestamp, size, &buf, midi_in, n);
61
62                 if (size != 3 || buf[0] != 0xf2 ) continue;
63
64                 _last_signal_tme = _monotonic_cnt;
65
66                 /* calculate time difference */
67 #define MODX (16384)  // 1<<(2*7)
68 #define MASK (0x3fff) // MODX - 1
69                 const int64_t tc = (_monotonic_cnt + timestamp) & MASK;
70                 const int64_t ti = ((buf[2] & 0x7f) << 7) | (buf[1] & 0x7f);
71                 const int64_t tdiff = (MODX + tc - ti) % MODX;
72 #if 0 //DEBUG
73                 printf("MIDI DELAY: # %5"PRId64" %5"PRId64" [samples] (%5"PRId64" - %8"PRId64") @(%5"PRId64" + %d)\n",
74                                 _cnt_total, tdiff, tc, ti, _monotonic_cnt, timestamp);
75 #endif
76
77                 /* running variance */
78                 if (_cnt_total == 0) {
79                         _var_m = tdiff;
80                 } else {
81                         const double var_m1 = _var_m;
82                         _var_m = _var_m + ((double)tdiff - _var_m) / (double)(_cnt_total + 1);
83                         _var_s = _var_s + ((double)tdiff - _var_m) * ((double)tdiff - var_m1);
84                 }
85                 /* average and mix/max */
86                 ++_cnt_total;
87                 _dly_total += tdiff;
88                 _avg_delay = _dly_total / _cnt_total;
89                 if (tdiff < _min_delay) _min_delay = tdiff;
90                 if (tdiff > _max_delay) _max_delay = tdiff;
91         }
92
93   _monotonic_cnt += nframes;
94         return 0;
95 }