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

Side by Side Diff: media/mojo/interfaces/demuxer_stream.mojom

Issue 1977173002: Rename media::interfaces to media::mojom. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: android + chromeos files Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « media/mojo/interfaces/decryptor.mojom ('k') | media/mojo/interfaces/media_types.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 module media.interfaces; 5 module media.mojom;
6 6
7 import "media/mojo/interfaces/media_types.mojom"; 7 import "media/mojo/interfaces/media_types.mojom";
8 8
9 // DemuxerStream is modeled after media::DemuxerStream using mojo in order to 9 // DemuxerStream is modeled after media::DemuxerStream using mojo in order to
10 // enable proxying between a media::Pipeline and media::Renderer living in two 10 // enable proxying between a media::Pipeline and media::Renderer living in two
11 // different applications. 11 // different applications.
12 interface DemuxerStream { 12 interface DemuxerStream {
13 // See media::DemuxerStream for descriptions. 13 // See media::DemuxerStream for descriptions.
14 enum Type { 14 enum Type {
15 UNKNOWN, 15 UNKNOWN,
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 // in a nicer fashion. 51 // in a nicer fashion.
52 Read() => (Status status, 52 Read() => (Status status,
53 DecoderBuffer? buffer, 53 DecoderBuffer? buffer,
54 AudioDecoderConfig? audio_config, 54 AudioDecoderConfig? audio_config,
55 VideoDecoderConfig? video_config); 55 VideoDecoderConfig? video_config);
56 56
57 // Enables converting bitstream to a format that is expected by the decoder. 57 // Enables converting bitstream to a format that is expected by the decoder.
58 // For example, H.264/AAC bitstream based packets into H.264 Annex B format. 58 // For example, H.264/AAC bitstream based packets into H.264 Annex B format.
59 EnableBitstreamConverter(); 59 EnableBitstreamConverter();
60 }; 60 };
OLDNEW
« no previous file with comments | « media/mojo/interfaces/decryptor.mojom ('k') | media/mojo/interfaces/media_types.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698