mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Initial work on downsampling
The http connection is being closed before sending all data. May have something to do with the Range header
This commit is contained in:
parent
9a246b5432
commit
7225807bad
10 changed files with 186 additions and 29 deletions
15
utils/math.go
Normal file
15
utils/math.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package utils
|
||||
|
||||
func MinInt(x, y int) int {
|
||||
if x < y {
|
||||
return x
|
||||
}
|
||||
return y
|
||||
}
|
||||
|
||||
func MaxInt(x, y int) int {
|
||||
if x > y {
|
||||
return x
|
||||
}
|
||||
return y
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue