Skip to content

Commit

Permalink
Enable multi session for drm (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
StaehliJ authored Jun 5, 2024
1 parent edefb40 commit 33a7a1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ class SRGAssetLoader(
return drm?.let {
MediaItem.DrmConfiguration.Builder(C.WIDEVINE_UUID)
.setLicenseUri(it.licenseUrl)
.setMultiSession(true)
.build()
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ data class DemoItem(
licenseUrl?.let {
DrmConfiguration.Builder(C.WIDEVINE_UUID)
.setLicenseUri(licenseUrl)
.setMultiSession(true)
.build()
}
)
Expand Down

0 comments on commit 33a7a1d

Please sign in to comment.