Uploaded for Robin Connell. Fixed 4466580 Need widevine sample demo player support for adaptive streaming. Thumbnails now show and content plays for adaptive and oem content pages.
Change-Id: Id03c7cc01be78d7c5d3d7ca66d2a2773273af6fe
This commit is contained in:
@@ -42,8 +42,8 @@ public class StreamingActivity extends AssetActivity {
|
||||
for (int i = 0; i < assets.size();) {
|
||||
AssetsPage page = new AssetsPage();
|
||||
for (int j = 0; j < AssetsPage.MAX_ITEMS && i < assets.size(); j++, i++) {
|
||||
page.addPage(assets.get(i).getAssetPath(), assets.get(i).getImagePath(), assets
|
||||
.get(i).getTitle());
|
||||
page.addPage(assets.get(i).getAssetPath(),
|
||||
assets.get(i).getImagePath(), assets.get(i).getTitle());
|
||||
}
|
||||
pages.add(page);
|
||||
}
|
||||
@@ -56,8 +56,8 @@ public class StreamingActivity extends AssetActivity {
|
||||
for (int i = 0; i < assets.size();) {
|
||||
AssetsPage page = new AssetsPage();
|
||||
for (int j = 0; j < AssetsPage.MAX_ITEMS && i < assets.size(); j++, i++) {
|
||||
page.addPage(assets.get(i).getUri(), assets.get(i).getThumbnail(), assets
|
||||
.get(i).getTitle());
|
||||
page.addPage(assets.get(i).getUri(), assets.get(i).getThumbnail(),
|
||||
assets.get(i).getTitle());
|
||||
}
|
||||
pages.add(page);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user