Skip to content

Commit 9d6667c

Browse files
committed
Don't default K to 1
1 parent c30e24a commit 9d6667c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dash/models/DashManifestModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ function DashManifestModel() {
936936
voRepresentation.media = segmentInfo.media;
937937
}
938938
if (segmentInfo.hasOwnProperty(DashConstants.K)) {
939-
voRepresentation.k = segmentInfo.k || 1;
939+
voRepresentation.k = segmentInfo.k;
940940
}
941941
if (segmentInfo.hasOwnProperty(DashConstants.START_NUMBER)) {
942942
voRepresentation.startNumber = parseInt(segmentInfo.startNumber);

0 commit comments

Comments
 (0)