diff --git a/reference-test-app/components/MainScene/MainScene.brs b/reference-test-app/components/MainScene/MainScene.brs
index 68353f9..a934c02 100644
--- a/reference-test-app/components/MainScene/MainScene.brs
+++ b/reference-test-app/components/MainScene/MainScene.brs
@@ -34,7 +34,7 @@ sub initPosterGrid()
m.mediaGrid = m.top.findNode("contentPosterGrid")
m.mediaGrid.itemComponentName = "SimpleRowListItem"
m.mediaGrid.numRows = 1
- m.mediaGrid.itemSize = [itemWidth * getSourceDescriptionArray().Count() + 20 * 2, itemHeight]
+ m.mediaGrid.itemSize = [(itemWidth + 30) * 4, itemHeight]
m.mediaGrid.rowHeights = [itemHeight]
m.mediaGrid.rowItemSize = [itemWidth, itemHeight]
m.mediaGrid.itemSpacing = [ 0, 80 ]
diff --git a/reference-test-app/components/MainScene/MainScene.xml b/reference-test-app/components/MainScene/MainScene.xml
index 9274d45..90d1327 100644
--- a/reference-test-app/components/MainScene/MainScene.xml
+++ b/reference-test-app/components/MainScene/MainScene.xml
@@ -9,9 +9,9 @@
-
-
-
+
+
+
diff --git a/reference-test-app/components/configs/Content.brs b/reference-test-app/components/configs/Content.brs
index 3c84c6f..a15a72c 100644
--- a/reference-test-app/components/configs/Content.brs
+++ b/reference-test-app/components/configs/Content.brs
@@ -1,6 +1,6 @@
' ===== Sources and Content Metadata =====
function getSourceDescriptionArray() as object
- defaultPosterUrl = "http://devtools.web.roku.com/samples/images/Landscape_1.jpg"
+ defaultPosterUrl = "https://placehold.co/1920x1080.png?text=THEOplayer+Roku"
hlsMimeType = "application/x-mpegurl"
dashMimeType = "application/dash+xml"
content = [
@@ -35,11 +35,21 @@ function getSourceDescriptionArray() as object
{
"poster": defaultPosterUrl,
"live": false,
- "title": "Big Buck Bunny - VOD",
+ "title": "Big Buck Bunny - HLS VOD",
"sources": {
"src": "https://contentserver.prudentgiraffe.com/videos/hls/big_buck_bunny/big_buck_bunny.m3u8",
"type": hlsMimeType
+ }
+ },
+ {
+ "poster": defaultPosterUrl,
+ "live": false,
+ "title": "Angel One - DASH VOD",
+ "sources": {
+ "src": "https://storage.googleapis.com/shaka-demo-assets/angel-one/dash.mpd",
+ "type": dashMimeType
+
}
}
]