13
0

MTC Slave: MIDI 30df -> A3 29.97df

MIDI only specifies the frame-count, not the rate.
in the vast majority of cases MIDI's
"Count to 30 use drop-frame" is 29.97df fps.

git-svn-id: svn://localhost/ardour2/branches/3.0@13271 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus 2012-10-14 16:17:37 +00:00
parent 0e7654255c
commit a9c9d5072c

View File

@ -311,9 +311,9 @@ MTC_Slave::update_mtc_time (const byte *msg, bool was_full, framepos_t now)
can_notify_on_unknown_rate = true;
break;
case MTC_30_FPS_DROP:
timecode.rate = 30;
timecode.rate = (30000.0/1001.0);
timecode.drop = true;
tc_format = timecode_30drop;
tc_format = timecode_2997drop;
can_notify_on_unknown_rate = true;
break;
case MTC_30_FPS: