13
0

show qtr MTC bytes before they are dispatched as a signal

git-svn-id: svn://localhost/ardour2/branches/3.0@6224 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-11-30 19:01:13 +00:00
parent c925d32474
commit d1a75f494f

View File

@ -286,6 +286,11 @@ Parser::process_mtc_quarter_frame (byte *msg)
*/
if (consecutive_qtr_frame_cnt >= 8) {
cerr << hex;
for (size_t xx = 0; xx < sizeof (_qtr_mtc_time); ++xx) {
cerr << (int) _qtr_mtc_time[xx] << ' ';
}
cerr << dec << endl;
memcpy (_mtc_time, _qtr_mtc_time, sizeof (_mtc_time));
memset (_qtr_mtc_time, 0, sizeof (_qtr_mtc_time));
if (!_mtc_locked) {