diff options
| author | Cerapter <cerap@protonmail.com> | 2018-10-03 21:24:13 +0200 |
|---|---|---|
| committer | Cerapter <cerap@protonmail.com> | 2018-10-03 21:24:13 +0200 |
| commit | 265714d9d5312e5981ed71f2d5eae20078e5b633 (patch) | |
| tree | 9aad624556a3e9dfbc7443756ddc1ef92befe138 | |
| parent | 8138068d51cbff955de457c242c391bec5d0f163 (diff) | |
Added support for opus files on Linux.
| -rw-r--r-- | courtroom.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/courtroom.cpp b/courtroom.cpp index 3323b6fa..c38a6073 100644 --- a/courtroom.cpp +++ b/courtroom.cpp @@ -23,6 +23,7 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() { BASS_Init(-1, 48000, BASS_DEVICE_LATENCY, 0, NULL); BASS_PluginLoad("bassopus.dll", BASS_UNICODE); + BASS_PluginLoad("libbassopus.so", 0); } else { @@ -33,6 +34,7 @@ Courtroom::Courtroom(AOApplication *p_ao_app) : QMainWindow() BASS_SetDevice(a); BASS_Init(a, 48000, BASS_DEVICE_LATENCY, 0, NULL); BASS_PluginLoad("bassopus.dll", BASS_UNICODE); + BASS_PluginLoad("libbassopus.so", 0); qDebug() << info.name << "was set as the default audio output device."; break; } |
