13
0

more debug

git-svn-id: svn://localhost/ardour2/branches/3.0@6563 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-01-27 00:17:01 +00:00
parent 40a6c4f1a0
commit 6236cf7df2

View File

@ -129,14 +129,17 @@ Parser::process_mtc_quarter_frame (byte *msg)
/* third quarter frame */
// cerr << "second seen qframe = " << (int) which_quarter_frame << endl;
#ifdef DEBUG_MTC
cerr << "second seen qframe = " << (int) which_quarter_frame << endl;
#endif
if (last_qtr_frame < which_quarter_frame) {
_mtc_running = MTC_Forward;
} else if (last_qtr_frame > which_quarter_frame) {
_mtc_running = MTC_Backward;
}
#ifdef DEBUG_MTC
cerr << "Send MTC status as " << _mtc_running << endl;
#endif
mtc_status (_mtc_running);
}