Chromium Code Reviews| Index: media/mojo/interfaces/audio_decoder.mojom |
| diff --git a/media/mojo/interfaces/audio_decoder.mojom b/media/mojo/interfaces/audio_decoder.mojom |
| index bb4f0591e2850c003bbcc8b5244c6dd4d08c2791..70a27550d1ba6e10f91f051f12f78e952723be04 100644 |
| --- a/media/mojo/interfaces/audio_decoder.mojom |
| +++ b/media/mojo/interfaces/audio_decoder.mojom |
| @@ -21,6 +21,9 @@ interface AudioDecoder { |
| Initialize(AudioDecoderClient client, AudioDecoderConfig config, int32 cdm_id) |
| => (bool success, bool needs_bitstream_conversion); |
| + // Established data connection. Should be called before Decode(). |
|
sandersd (OOO until July 31)
2016/03/21 23:12:38
nit: Should say 'Establish', or perhaps a differen
|
| + SetDataSource(handle<data_pipe_consumer> receive_pipe); |
| + |
| // Sends the |buffer| to the underlying codec. Should be called only after |
| // Initialize() succeeds. The callback with the status is called after the |
| // decoder has accepted corresponding DecoderBuffer, indicating that the |