-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganized modules and improved build
- Loading branch information
Showing
53 changed files
with
239 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0") | ||
addSbtPlugin("org.bytedeco" % "sbt-javacpp" % "1.13") | ||
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9") |
3 changes: 2 additions & 1 deletion
3
...n/scala/chromaprint/acoustid/lookup.scala → ...n/scala/chromaprint/acoustid/lookup.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package chromaprint.breeze | ||
|
||
import chromaprint.AbstractFFTSpec | ||
|
||
class FFTImplSpec extends AbstractFFTSpec { | ||
|
||
val fftImpl: chromaprint.FFT = FFTImpl | ||
} |
4 changes: 2 additions & 2 deletions
4
...in/scala/chromaprint/fpcalc/Command.scala → .../main/scala/chromaprint/cli/Command.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../scala/chromaprint/core/AudioSource.scala → .../main/scala/chromaprint/AudioSource.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import scala.language.implicitConversions | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/chromaprint/core/Base64.scala → src/core/main/scala/chromaprint/Base64.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object Base64 { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...n/scala/chromaprint/core/Classifier.scala → ...e/main/scala/chromaprint/Classifier.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import scala.math.log | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../chromaprint/core/ClassifierPresets.scala → ...scala/chromaprint/ClassifierPresets.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import Classifier.{Filter,Quantizer} | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/chromaprint/core/Config.scala → src/core/main/scala/chromaprint/Config.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object Config { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/chromaprint/core/FFT.scala → src/core/main/scala/chromaprint/FFT.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object FFT { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
.../scala/chromaprint/core/Fingerprint.scala → .../main/scala/chromaprint/Fingerprint.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import spire.math.UInt | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/chromaprint/core/Image.scala → src/core/main/scala/chromaprint/Image.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object Image { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...cala/chromaprint/core/MovingAverage.scala → ...ain/scala/chromaprint/MovingAverage.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...main/scala/chromaprint/core/Presets.scala → ...core/main/scala/chromaprint/Presets.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object Presets { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/main/scala/chromaprint/core/chroma.scala → src/core/main/scala/chromaprint/chroma.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import spire.math.UShort | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...scala/chromaprint/core/chromaFilter.scala → ...main/scala/chromaprint/chromaFilter.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
object chromaFilter { | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...a/chromaprint/core/chromaNormalizer.scala → .../scala/chromaprint/chromaNormalizer.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import scala.math.sqrt | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...omaprint/core/fingerprintCalculator.scala → ...a/chromaprint/fingerprintCalculator.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import spire.math.UInt | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...omaprint/core/fingerprintCompressor.scala → ...a/chromaprint/fingerprintCompressor.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import spire.math.UInt | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
...aprint/core/fingerprintDecompressor.scala → ...chromaprint/fingerprintDecompressor.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package chromaprint.core | ||
package chromaprint | ||
|
||
import spire.math.{UInt, UShort} | ||
|
||
|
Oops, something went wrong.