OLD | NEW |
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 mojo; | 5 module mojo; |
6 | 6 |
7 import "media/mojo/interfaces/demuxer_stream.mojom"; | 7 import "media/mojo/interfaces/demuxer_stream.mojom"; |
8 import "media/mojo/interfaces/media_types.mojom"; | 8 import "media/mojo/interfaces/media_types.mojom"; |
9 | 9 |
10 interface MediaRenderer { | 10 interface MediaRenderer { |
(...skipping 11 matching lines...) Expand all Loading... |
22 Flush() => (); | 22 Flush() => (); |
23 | 23 |
24 // Starts rendering from |time_usec|. | 24 // Starts rendering from |time_usec|. |
25 StartPlayingFrom(int64 time_usec); | 25 StartPlayingFrom(int64 time_usec); |
26 | 26 |
27 // Updates the current playback rate. The default playback rate should be 1. | 27 // Updates the current playback rate. The default playback rate should be 1. |
28 SetPlaybackRate(double playback_rate); | 28 SetPlaybackRate(double playback_rate); |
29 | 29 |
30 // Sets the output volume. The default volume should be 1. | 30 // Sets the output volume. The default volume should be 1. |
31 SetVolume(float volume); | 31 SetVolume(float volume); |
| 32 |
| 33 // Attaches the CDM associated with |cdm_id| to the renderer service, |
| 34 // executing the callback with whether the CDM was successfully attached. |
| 35 SetCdm(int32 cdm_id) => (bool success); |
32 }; | 36 }; |
33 | 37 |
34 interface MediaRendererClient { | 38 interface MediaRendererClient { |
35 // Called to report media time advancement by |time_usec|. | 39 // Called to report media time advancement by |time_usec|. |
36 // |time_usec| and |max_time_usec| can be used to interpolate time between | 40 // |time_usec| and |max_time_usec| can be used to interpolate time between |
37 // calls to OnTimeUpdate(). | 41 // calls to OnTimeUpdate(). |
38 // |max_time_usec| is typically the media timestamp of the last audio frame | 42 // |max_time_usec| is typically the media timestamp of the last audio frame |
39 // buffered by the audio hardware. | 43 // buffered by the audio hardware. |
40 // |max_time_usec| must be greater or equal to |time_usec|. | 44 // |max_time_usec| must be greater or equal to |time_usec|. |
41 OnTimeUpdate(int64 time_usec, int64 max_time_usec); | 45 OnTimeUpdate(int64 time_usec, int64 max_time_usec); |
42 | 46 |
43 // Called to report buffering state changes, see media_types.mojom. | 47 // Called to report buffering state changes, see media_types.mojom. |
44 OnBufferingStateChange(BufferingState state); | 48 OnBufferingStateChange(BufferingState state); |
45 | 49 |
46 // Executed when rendering has reached the end of stream. | 50 // Executed when rendering has reached the end of stream. |
47 OnEnded(); | 51 OnEnded(); |
48 | 52 |
49 // Executed if any error was encountered during decode or rendering. If | 53 // Executed if any error was encountered during decode or rendering. If |
50 // this error happens during an operation that has a completion callback, | 54 // this error happens during an operation that has a completion callback, |
51 // OnError() will be called before firing the completion callback. | 55 // OnError() will be called before firing the completion callback. |
52 OnError(); | 56 OnError(); |
53 }; | 57 }; |
OLD | NEW |