View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0003095 | ardour | bugs | public | 2010-04-27 08:19 | 2020-04-19 20:14 |
Reporter | baskind | Assigned To | paul | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | closed | Resolution | fixed | ||
Product Version | SVN/2.0-ongoing | ||||
Summary | 0003095: [nearly-PATCH] problem with AU parameters units | ||||
Description | In an audio unit, a parameter isn't automatable if it has one of the following units: kAudioUnitParameterUnit_Boolean kAudioUnitParameterUnit_Percent kAudioUnitParameterUnit_Phase kAudioUnitParameterUnit_Rate kAudioUnitParameterUnit_RelativeSemiTones kAudioUnitParameterUnit_MIDINoteNumber kAudioUnitParameterUnit_LinearGain kAudioUnitParameterUnit_Degrees kAudioUnitParameterUnit_Pan kAudioUnitParameterUnit_Meters kAudioUnitParameterUnit_BPM kAudioUnitParameterUnit_Beats | ||||
Additional Information | The problem apparently comes from audio_unit.cc: d.toggled = (info.unit & kAudioUnitParameterUnit_Boolean) || (d.integer_step && ((d.upper - d.lower) == 1.0)); ...should be replaced by: d.toggled = (info.unit == kAudioUnitParameterUnit_Boolean) || (d.integer_step && ((d.upper - d.lower) == 1.0)); | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2010-04-27 08:19 | baskind | New Issue | |
2010-04-27 10:13 | cth103 | cost | => 0.00 |
2010-04-27 10:13 | cth103 | Assigned To | => paul |
2010-04-27 10:13 | cth103 | Status | new => assigned |
2010-04-27 10:13 | cth103 | Product Version | => SVN/2.0-ongoing |
2010-04-27 10:13 | cth103 | Summary | problem with AU parameters units => [nearly-PATCH] problem with AU parameters units |
2010-04-27 12:44 | paul | Note Added: 0007626 | |
2010-04-27 12:44 | paul | Status | assigned => resolved |
2010-04-27 12:44 | paul | Resolution | open => fixed |
2020-04-19 20:14 | system | Note Added: 0022047 | |
2020-04-19 20:14 | system | Status | resolved => closed |