| 507 | } |
| 508 | |
| 509 | u32 JASTrack::seqTimeToDspTime(f32 seqTime) { |
| 510 | f32 dsp_time; |
| 511 | if (mFlags.flag2) { |
| 512 | dsp_time = seqTime / _1dc; |
| 513 | } else { |
| 514 | dsp_time = seqTime * (120.0f / mTimebase); |
| 515 | dsp_time *= JASDriver::getSubFrames() / 10.0f; |
| 516 | } |
| 517 | return dsp_time; |
| 518 | } |
| 519 | |
| 520 | void JASTrack::setParam(u32 target, f32 targetf, u32 count) { |
| 521 | #line 729 |
nothing calls this directly
no test coverage detected