File tree Expand file tree Collapse file tree 6 files changed +20
-17
lines changed
src/main/java/net/astraloof/manx Expand file tree Collapse file tree 6 files changed +20
-17
lines changed Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2018 asturlynx
3+ Copyright (c) 2018 Aster Lynx
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 22 xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
33 <modelVersion >4.0.0</modelVersion >
44
5- <groupId >net.astur </groupId >
6- <artifactId >HotLynx </artifactId >
7- <version >1.0.0-SNAPSHOT </version >
5+ <groupId >net.astraloof </groupId >
6+ <artifactId >manx-mixer </artifactId >
7+ <version >1.0.0-M1 </version >
88
9- <name >HotLynx </name >
9+ <name >Manx Mixer </name >
1010 <description >Live audio mixer and recorder</description >
1111
1212 <dependencies >
Original file line number Diff line number Diff line change 1- package net .astur . hotlynx ;
1+ package net .astraloof . manx ;
22
33import java .util .logging .Level ;
44
Original file line number Diff line number Diff line change 1- package net .astur . hotlynx ;
1+ package net .astraloof . manx ;
22
33import java .io .IOException ;
44
55import com .synthbot .jasiohost .AsioChannel ;
66
7- import net .astur . hotlynx .engine .AudioEngine ;
7+ import net .astraloof . manx .engine .AudioEngine ;
88
9- public class HotLynx
9+ public class Manx
1010{
11- public static final HotLynx instance = new HotLynx ();
12- private Logger log = new Logger (HotLynx .class );
11+ public static final Manx instance = new Manx ();
12+ public static final String APP_NAME = "Manx" ;
13+ public static final String APP_VERS = "1.0.0-M1" ;
14+ private Logger log = new Logger (Manx .class );
1315
1416 AsioChannel outL , outR ;
1517 AudioEngine engine ;
1618
1719 public static void main (String [] args )
1820 {
19- System .setProperty ("java.library.path" , "./natives" );
21+ // System.setProperty("java.library.path", "natives");
22+ System .setProperty ("sun.java2d.opengl" , "true" );
2023 instance .start (args );
2124 }
2225
2326 public void start (String [] args )
2427 {
25- log .info ("HotLynx 1.0.0-SNAPSHOT" );
28+ log .info (APP_NAME + " " + APP_VERS );
2629 log .info ("Initializing audio engine" );
2730
2831 engine = new AudioEngine ();
Original file line number Diff line number Diff line change 1- package net .astur . hotlynx .engine ;
1+ package net .astraloof . manx .engine ;
22
33import java .util .List ;
44import java .util .Set ;
88import com .synthbot .jasiohost .AsioDriver ;
99import com .synthbot .jasiohost .AsioDriverListener ;
1010
11- import net .astur . hotlynx .Logger ;
11+ import net .astraloof . manx .Logger ;
1212
1313public class AudioEngine implements AsioDriverListener
1414{
Original file line number Diff line number Diff line change 1- package net .astur . hotlynx .engine ;
1+ package net .astraloof . manx .engine ;
22
33import java .util .HashSet ;
44import java .util .LinkedList ;
88import com .synthbot .jasiohost .AsioChannel ;
99import com .synthbot .jasiohost .AsioDriver ;
1010
11- import net .astur . hotlynx .Logger ;
11+ import net .astraloof . manx .Logger ;
1212
1313public class AudioInterface
1414{
You can’t perform that action at this time.
0 commit comments