Comparing version 5.6.2 to 5.6.3
@@ -730,4 +730,7 @@ /** | ||
if (sampleCompositionTimeOffsetPresent) { | ||
// Note: this should be a signed int if version is 1 | ||
sample.compositionTimeOffset = view.getUint32(offset); | ||
if (result.version === 1) { | ||
sample.compositionTimeOffset = view.getInt32(offset); | ||
} else { | ||
sample.compositionTimeOffset = view.getUint32(offset); | ||
} | ||
offset += 4; | ||
@@ -754,4 +757,7 @@ } | ||
if (sampleCompositionTimeOffsetPresent) { | ||
// Note: this should be a signed int if version is 1 | ||
sample.compositionTimeOffset = view.getUint32(offset); | ||
if (result.version === 1) { | ||
sample.compositionTimeOffset = view.getInt32(offset); | ||
} else { | ||
sample.compositionTimeOffset = view.getUint32(offset); | ||
} | ||
offset += 4; | ||
@@ -758,0 +764,0 @@ } |
{ | ||
"name": "mux.js", | ||
"version": "5.6.2", | ||
"version": "5.6.3", | ||
"description": "A collection of lightweight utilities for inspecting and manipulating video container formats.", | ||
@@ -5,0 +5,0 @@ "repository": { |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1236499
29357