Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(574)

Unified Diff: media/mojo/interfaces/renderer.mojom

Issue 2383663002: Make mojo renderer capable of supporting multiple streams/tracks (Closed)
Patch Set: rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/mojo/interfaces/renderer.mojom
diff --git a/media/mojo/interfaces/renderer.mojom b/media/mojo/interfaces/renderer.mojom
index 38ca4401b4b1d429464448095d14ed3ff85e5cc2..e5bb78cdd3d773cd08b8a610c14ea8c1083da2bf 100644
--- a/media/mojo/interfaces/renderer.mojom
+++ b/media/mojo/interfaces/renderer.mojom
@@ -12,11 +12,10 @@ import "ui/gfx/geometry/mojo/geometry.mojom";
import "url/mojo/url.mojom";
interface Renderer {
- // Initializes the Renderer with one or both of an audio and video stream,
+ // Initializes the Renderer with one or more audio / video streams,
// executing the callback with whether the initialization succeeded.
Initialize(associated RendererClient client,
- DemuxerStream? audio,
- DemuxerStream? video,
+ array<DemuxerStream> streams,
xhwang 2017/01/31 00:15:21 Should this be optional if we actually use URL bas
servolk 2017/01/31 01:10:40 Done (made the streams parameter optional, also up
url.mojom.Url? media_url,
url.mojom.Url? first_party_for_cookies) => (bool success);

Powered by Google App Engine
This is Rietveld 408576698