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

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

Issue 2643743002: Mojify demuxers and allow running {Chunk/FFmpeg}Demuxer in a Utility Process (Closed)
Patch Set: Rebase and make sure to unbind mojom::DemuxerPtr on the bound thread during termination Created 3 years, 10 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
« no previous file with comments | « media/mojo/interfaces/demuxer.typemap ('k') | media/mojo/interfaces/media_types.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/interfaces/interface_factory.mojom
diff --git a/media/mojo/interfaces/interface_factory.mojom b/media/mojo/interfaces/interface_factory.mojom
index f2e230a44092dc5f44e2e760972177152d5c0dad..da7410a47d5eb3f698876db05850c12fb1483965 100644
--- a/media/mojo/interfaces/interface_factory.mojom
+++ b/media/mojo/interfaces/interface_factory.mojom
@@ -6,12 +6,20 @@ module media.mojom;
import "media/mojo/interfaces/audio_decoder.mojom";
import "media/mojo/interfaces/content_decryption_module.mojom";
+import "media/mojo/interfaces/demuxer.mojom";
import "media/mojo/interfaces/renderer.mojom";
+import "media/mojo/interfaces/source_buffer.mojom";
import "media/mojo/interfaces/video_decoder.mojom";
// A factory interface to create media services. Renderers can only access
// ContentDecryptionModules created in the same factory.
interface InterfaceFactory {
+ // Creates a Demuxer service.
+ CreateDemuxer(Demuxer& demuxer);
+
+ // Creates a SourceBuffer service.
+ CreateSourceBuffer(SourceBuffer& source_buffer);
+
// Creates an AudioDecoder service.
CreateAudioDecoder(AudioDecoder& audio_decoder);
« no previous file with comments | « media/mojo/interfaces/demuxer.typemap ('k') | media/mojo/interfaces/media_types.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698