Commit 0619a96f by bachinger Committed by Ian Baker

Disable IMA SSAI DASH live streams for now

#minor-release

PiperOrigin-RevId: 428761508
parent a08517e1
...@@ -366,6 +366,10 @@ public final class ImaServerSideAdInsertionUriBuilder { ...@@ -366,6 +366,10 @@ public final class ImaServerSideAdInsertionUriBuilder {
if (streamActivityMonitorId != null) { if (streamActivityMonitorId != null) {
streamRequest.setStreamActivityMonitorId(streamActivityMonitorId); streamRequest.setStreamActivityMonitorId(streamActivityMonitorId);
} }
checkState(
streamRequest.getFormat() != StreamFormat.DASH
|| TextUtils.isEmpty(streamRequest.getAssetKey()),
"DASH live streams are not supported yet.");
return streamRequest; return streamRequest;
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment