Use local opus library if local not found

This commit is contained in:
Iwan Timmer 2015-01-03 17:08:14 +01:00
parent d14c5075e3
commit 28967525e9

View File

@ -62,6 +62,8 @@ public class PlatformBinding {
LimeLog.warning("Use local opus library");
} catch(IOException e) {
e.printStackTrace();
} catch (UnsatisfiedLinkError e) {
//Use system opus library
}
return new AlsaAudioRenderer(device);