mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 09:57:44 +01:00
Rename JACK to "JACK/Pipewire" on Linux (1/2)
This commit is contained in:
parent
cc56f92a73
commit
a76b2ed1bb
9 changed files with 27 additions and 7 deletions
|
|
@ -31,7 +31,11 @@ static bool already_configured ();
|
|||
static bool available ();
|
||||
|
||||
static ARDOUR::AudioBackendInfo _descriptor = {
|
||||
#if ! (defined(__APPLE__) || defined(PLATFORM_WINDOWS))
|
||||
"JACK/Pipewire",
|
||||
#else
|
||||
"JACK",
|
||||
#endif
|
||||
instantiate,
|
||||
deinstantiate,
|
||||
backend_factory,
|
||||
|
|
|
|||
|
|
@ -87,7 +87,11 @@ JACKAudioBackend::~JACKAudioBackend()
|
|||
string
|
||||
JACKAudioBackend::name() const
|
||||
{
|
||||
#if ! (defined(__APPLE__) || defined(PLATFORM_WINDOWS))
|
||||
return X_("JACK/Pipewire");
|
||||
#else
|
||||
return X_("JACK");
|
||||
#endif
|
||||
}
|
||||
|
||||
void*
|
||||
|
|
|
|||
|
|
@ -60,6 +60,8 @@ class JACKAudioBackend : public AudioBackend {
|
|||
void* private_handle() const;
|
||||
bool is_realtime () const;
|
||||
|
||||
bool is_jack () const { return true; }
|
||||
|
||||
bool requires_driver_selection() const;
|
||||
std::vector<std::string> enumerate_drivers () const;
|
||||
int set_driver (const std::string&);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue