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

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

Issue 2330273002: media: Use associated interface for mojo AudioDecoderClient (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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.mojom; 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 interface AudioDecoder { 9 interface AudioDecoder {
10 // Initializes the AudioDecoder with the audio codec configuration and CDM id. 10 // Initializes the AudioDecoder with the audio codec configuration and CDM id.
11 // For the unencrypted streams the |cdm_id| is ignored. Executed the callback 11 // For the unencrypted streams the |cdm_id| is ignored. Executed the callback
12 // with whether the initialization succeeded, and whether the pipeline needs 12 // with whether the initialization succeeded, and whether the pipeline needs
13 // bitstream conversion. 13 // bitstream conversion.
14 Initialize(AudioDecoderClient client, AudioDecoderConfig config, int32 cdm_id) 14 Initialize(associated AudioDecoderClient client, AudioDecoderConfig config,
15 => (bool success, bool needs_bitstream_conversion); 15 int32 cdm_id) => (bool success, bool needs_bitstream_conversion);
16 16
17 // Establishes data connection. Should be called before Decode(). 17 // Establishes data connection. Should be called before Decode().
18 SetDataSource(handle<data_pipe_consumer> receive_pipe); 18 SetDataSource(handle<data_pipe_consumer> receive_pipe);
19 19
20 // Sends the |buffer| to the underlying codec. Should be called only after 20 // Sends the |buffer| to the underlying codec. Should be called only after
21 // Initialize() succeeds. The callback with the status is called after the 21 // Initialize() succeeds. The callback with the status is called after the
22 // decoder has accepted corresponding DecoderBuffer, indicating that the 22 // decoder has accepted corresponding DecoderBuffer, indicating that the
23 // pipeline can send next buffer to decode. 23 // pipeline can send next buffer to decode.
24 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. all 24 // If |buffer| is an EOS buffer then the decoder must be flushed, i.e. all
25 // pending buffers should be processed, the corresponding decoded buffers 25 // pending buffers should be processed, the corresponding decoded buffers
26 // should be returned to the proxy, and only then the service should return 26 // should be returned to the proxy, and only then the service should return
27 // DecoderStatus. 27 // DecoderStatus.
28 Decode(DecoderBuffer buffer) => (DecodeStatus status); 28 Decode(DecoderBuffer buffer) => (DecodeStatus status);
29 29
30 // Resets decoder state. Should be called only if Initialize() succeeds. 30 // Resets decoder state. Should be called only if Initialize() succeeds.
31 // All pending Decode() requests will be finished or aborted, then the method 31 // All pending Decode() requests will be finished or aborted, then the method
32 // executes the callback. 32 // executes the callback.
33 Reset() => (); 33 Reset() => ();
34 }; 34 };
35 35
36 interface AudioDecoderClient { 36 interface AudioDecoderClient {
37 // Sends the decoded audio buffer back to the proxy. 37 // Sends the decoded audio buffer back to the proxy.
38 OnBufferDecoded(AudioBuffer buffer); 38 OnBufferDecoded(AudioBuffer buffer);
39 }; 39 };
OLDNEW
« no previous file with comments | « media/mojo/clients/mojo_audio_decoder.cc ('k') | media/mojo/services/mojo_audio_decoder_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698