mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Remove unused backend channel count config API
This commit is contained in:
parent
a54a6c40a4
commit
d6b14e761b
16 changed files with 0 additions and 361 deletions
|
|
@ -270,18 +270,6 @@ CoreAudioBackend::available_buffer_sizes2 (const std::string& input_device, cons
|
|||
}
|
||||
}
|
||||
|
||||
uint32_t
|
||||
CoreAudioBackend::available_input_channel_count (const std::string&) const
|
||||
{
|
||||
return 128; // TODO query current device
|
||||
}
|
||||
|
||||
uint32_t
|
||||
CoreAudioBackend::available_output_channel_count (const std::string&) const
|
||||
{
|
||||
return 128; // TODO query current device
|
||||
}
|
||||
|
||||
bool
|
||||
CoreAudioBackend::can_change_sample_rate_when_running () const
|
||||
{
|
||||
|
|
@ -361,20 +349,6 @@ CoreAudioBackend::set_interleaved (bool yn)
|
|||
return -1;
|
||||
}
|
||||
|
||||
int
|
||||
CoreAudioBackend::set_input_channels (uint32_t cc)
|
||||
{
|
||||
_n_inputs = cc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
CoreAudioBackend::set_output_channels (uint32_t cc)
|
||||
{
|
||||
_n_outputs = cc;
|
||||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
CoreAudioBackend::set_systemic_input_latency (uint32_t sl)
|
||||
{
|
||||
|
|
@ -426,18 +400,6 @@ CoreAudioBackend::interleaved () const
|
|||
return false;
|
||||
}
|
||||
|
||||
uint32_t
|
||||
CoreAudioBackend::input_channels () const
|
||||
{
|
||||
return _n_inputs;
|
||||
}
|
||||
|
||||
uint32_t
|
||||
CoreAudioBackend::output_channels () const
|
||||
{
|
||||
return _n_outputs;
|
||||
}
|
||||
|
||||
uint32_t
|
||||
CoreAudioBackend::systemic_input_latency () const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue