forked from grafov/m3u8
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change target duration alg from 'ceiling' to 'round'
fixes grafov#108
- Loading branch information
Showing
3 changed files
with
63 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package m3u8 | ||
|
||
import ( | ||
"math" | ||
) | ||
|
||
// some constants copied from https://github.com/golang/go/blob/master/src/math/bits.go | ||
const ( | ||
shift = 64 - 11 - 1 | ||
bias = 1023 | ||
mask = 0x7FF | ||
) | ||
|
||
// round returns the nearest integer, rounding half away from zero. | ||
// This function is available natively in Go 1.10 | ||
// | ||
// Special cases are: | ||
// round(±0) = ±0 | ||
// round(±Inf) = ±Inf | ||
// round(NaN) = NaN | ||
func round(x float64) float64 { | ||
// Round is a faster implementation of: | ||
// | ||
// func Round(x float64) float64 { | ||
// t := Trunc(x) | ||
// if Abs(x-t) >= 0.5 { | ||
// return t + Copysign(1, x) | ||
// } | ||
// return t | ||
// } | ||
const ( | ||
signMask = 1 << 63 | ||
fracMask = 1<<shift - 1 | ||
half = 1 << (shift - 1) | ||
one = bias << shift | ||
) | ||
|
||
bits := math.Float64bits(x) | ||
e := uint(bits>>shift) & mask | ||
if e < bias { | ||
// Round abs(x) < 1 including denormals. | ||
bits &= signMask // +-0 | ||
if e == bias-1 { | ||
bits |= one // +-1 | ||
} | ||
} else if e < bias+shift { | ||
// Round any abs(x) >= 1 containing a fractional component [0,1). | ||
// | ||
// Numbers with larger exponents are returned unchanged since they | ||
// must be either an integer, infinity, or NaN. | ||
e -= bias | ||
bits += half >> e | ||
bits &^= fracMask >> e | ||
} | ||
return math.Float64frombits(bits) | ||
} |
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