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
3 // found in the LICENSE file.
5 #ifndef MEDIA_BASE_RENDERER_H_
6 #define MEDIA_BASE_RENDERER_H_
8 #include "base/callback.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/time/time.h"
11 #include "media/base/buffering_state.h"
12 #include "media/base/cdm_context.h"
13 #include "media/base/media_export.h"
14 #include "media/base/pipeline_status.h"
18 class DemuxerStreamProvider
;
21 class MEDIA_EXPORT Renderer
{
23 typedef base::Callback
<void(const scoped_refptr
<VideoFrame
>&)> PaintCB
;
24 typedef base::Callback
<base::TimeDelta()> TimeDeltaCB
;
28 // Stops rendering and fires any pending callbacks.
31 // Initializes the Renderer with |demuxer_stream_provider|, executing
32 // |init_cb| upon completion. If initialization failed, fires |error_cb|
33 // before |init_cb|. |demuxer_stream_provider| must be valid throughout the
34 // lifetime of the Renderer object. |init_cb| must only be run after this
35 // method has returned.
37 // Permanent callbacks:
38 // - |statistics_cb|: Executed periodically with rendering statistics.
39 // - |buffering_state_cb|: Executed when buffering state is changed.
40 // - |paint_cb|: Executed when there is a VideoFrame ready to paint. Can be
41 // ignored if the Renderer handles the painting by itself. Can
42 // be called from any thread.
43 // - |ended_cb|: Executed when rendering has reached the end of stream.
44 // - |error_cb|: Executed if any error was encountered during rendering.
45 virtual void Initialize(DemuxerStreamProvider
* demuxer_stream_provider
,
46 const base::Closure
& init_cb
,
47 const StatisticsCB
& statistics_cb
,
48 const BufferingStateCB
& buffering_state_cb
,
49 const PaintCB
& paint_cb
,
50 const base::Closure
& ended_cb
,
51 const PipelineStatusCB
& error_cb
) = 0;
53 // Associates the |cdm_context| with this Renderer for decryption (and
54 // decoding) of media data, then fires |cdm_attached_cb| with the result.
55 virtual void SetCdm(CdmContext
* cdm_context
,
56 const CdmAttachedCB
& cdm_attached_cb
) = 0;
58 // The following functions must be called after Initialize().
60 // Discards any buffered data, executing |flush_cb| when completed.
61 virtual void Flush(const base::Closure
& flush_cb
) = 0;
63 // Starts rendering from |time|.
64 virtual void StartPlayingFrom(base::TimeDelta time
) = 0;
66 // Updates the current playback rate. The default playback rate should be 1.
67 virtual void SetPlaybackRate(float playback_rate
) = 0;
69 // Sets the output volume. The default volume should be 1.
70 virtual void SetVolume(float volume
) = 0;
72 // Returns the current media time.
73 virtual base::TimeDelta
GetMediaTime() = 0;
75 // Returns whether |this| renders audio.
76 virtual bool HasAudio() = 0;
78 // Returns whether |this| renders video.
79 virtual bool HasVideo() = 0;
82 DISALLOW_COPY_AND_ASSIGN(Renderer
);
87 #endif // MEDIA_BASE_RENDERER_H_