mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-18 11:26:00 +01:00
fix ALSA backend for modified API
This commit is contained in:
parent
bfdea4ac59
commit
696dee9607
2 changed files with 10 additions and 0 deletions
|
|
@ -664,6 +664,13 @@ AlsaAudioBackend::freewheel (bool onoff)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int
|
||||
AlsaAudioBackend::reset_device ()
|
||||
{
|
||||
/* XXX what are the semantics of this ? */
|
||||
return 0;
|
||||
}
|
||||
|
||||
float
|
||||
AlsaAudioBackend::dsp_load () const
|
||||
{
|
||||
|
|
@ -1824,3 +1831,4 @@ AlsaMidiEvent::AlsaMidiEvent (const AlsaMidiEvent& other)
|
|||
AlsaMidiEvent::~AlsaMidiEvent () {
|
||||
free (_data);
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -184,6 +184,8 @@ class AlsaAudioBackend : public AudioBackend {
|
|||
int set_systemic_midi_input_latency (std::string const, uint32_t);
|
||||
int set_systemic_midi_output_latency (std::string const, uint32_t);
|
||||
|
||||
int reset_device ();
|
||||
|
||||
/* Retrieving parameters */
|
||||
std::string device_name () const;
|
||||
float sample_rate () const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue