stormcloud-video-player 0.7.41 → 0.7.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/stormcloud-vp.min.js +1 -1
- package/lib/index.cjs +2 -88
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +1 -7
- package/lib/index.d.ts +1 -7
- package/lib/index.js +3 -81
- package/lib/index.js.map +1 -1
- package/lib/ui/OverlayRenderer.cjs +1 -2
- package/lib/ui/OverlayRenderer.cjs.map +1 -1
- package/lib/ui/StormcloudVideoPlayer.cjs +2 -80
- package/lib/ui/StormcloudVideoPlayer.cjs.map +1 -1
- package/lib/utils/overlays.cjs +1 -67
- package/lib/utils/overlays.cjs.map +1 -1
- package/lib/utils/overlays.d.cts +1 -7
- package/package.json +1 -1
|
@@ -365,8 +365,7 @@ function overlayAuthoringDimensions(overlay, decodeWidth, decodeHeight) {
|
|
|
365
365
|
var EPS = 2;
|
|
366
366
|
var exceedsDecode = extR > decodeWidth + EPS || extB > decodeHeight + EPS;
|
|
367
367
|
var isNabDemo = overlay.name.startsWith(NAB_DEMO_NAME_PREFIX);
|
|
368
|
-
|
|
369
|
-
if (exceedsDecode && (isNabDemo || isSyntheticMarketsTicker)) {
|
|
368
|
+
if (exceedsDecode && isNabDemo) {
|
|
370
369
|
return {
|
|
371
370
|
width: SWIRL_HD_AUTHORING_WIDTH,
|
|
372
371
|
height: SWIRL_HD_AUTHORING_HEIGHT
|