mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -171,8 +171,6 @@ class CoreAudioBackend : public AudioBackend, public PortEngineSharedImpl {
|
|||
std::vector<float> available_sample_rates2 (const std::string&, const std::string&) const;
|
||||
std::vector<uint32_t> available_buffer_sizes (const std::string& device) const;
|
||||
std::vector<uint32_t> available_buffer_sizes2 (const std::string&, const std::string&) const;
|
||||
uint32_t available_input_channel_count (const std::string& device) const;
|
||||
uint32_t available_output_channel_count (const std::string& device) const;
|
||||
|
||||
bool can_change_sample_rate_when_running () const;
|
||||
bool can_change_buffer_size_when_running () const;
|
||||
|
|
@ -184,8 +182,6 @@ class CoreAudioBackend : public AudioBackend, public PortEngineSharedImpl {
|
|||
int set_sample_rate (float);
|
||||
int set_buffer_size (uint32_t);
|
||||
int set_interleaved (bool yn);
|
||||
int set_input_channels (uint32_t);
|
||||
int set_output_channels (uint32_t);
|
||||
int set_systemic_input_latency (uint32_t);
|
||||
int set_systemic_output_latency (uint32_t);
|
||||
int set_systemic_midi_input_latency (std::string const, uint32_t) { return 0; }
|
||||
|
|
@ -200,8 +196,6 @@ class CoreAudioBackend : public AudioBackend, public PortEngineSharedImpl {
|
|||
float sample_rate () const;
|
||||
uint32_t buffer_size () const;
|
||||
bool interleaved () const;
|
||||
uint32_t input_channels () const;
|
||||
uint32_t output_channels () const;
|
||||
uint32_t systemic_input_latency () const;
|
||||
uint32_t systemic_output_latency () const;
|
||||
uint32_t systemic_midi_input_latency (std::string const) const { return 0; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue