Skip to content

Commit

Permalink
Use local opus library if local not found
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimmer committed Jan 3, 2015
1 parent d14c507 commit 2896752
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/com/limelight/binding/PlatformBinding.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ public static AudioRenderer getAudioRenderer(String device) {
LimeLog.warning("Use local opus library");
} catch(IOException e) {
e.printStackTrace();
} catch (UnsatisfiedLinkError e) {
//Use system opus library
}

return new AlsaAudioRenderer(device);
Expand Down

0 comments on commit 2896752

Please sign in to comment.