File: video_renderer.h

package info (click to toggle)
chromium-browser 57.0.2987.98-1~deb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 2,637,852 kB
  • ctags: 2,544,394
  • sloc: cpp: 12,815,961; ansic: 3,676,222; python: 1,147,112; asm: 526,608; java: 523,212; xml: 286,794; perl: 92,654; sh: 86,408; objc: 73,271; makefile: 27,698; cs: 18,487; yacc: 13,031; tcl: 12,957; pascal: 4,875; ml: 4,716; lex: 3,904; sql: 3,862; ruby: 1,982; lisp: 1,508; php: 1,368; exp: 404; awk: 325; csh: 117; jsp: 39; sed: 37
file content (56 lines) | stat: -rw-r--r-- 2,041 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef REMOTING_CLIENT_VIDEO_RENDERER_H_
#define REMOTING_CLIENT_VIDEO_RENDERER_H_

namespace remoting {

class ClientContext;

namespace protocol {

class FrameConsumer;
class FrameStatsConsumer;
class SessionConfig;
class VideoStub;

// VideoRenderer is responsible for decoding and displaying incoming video
// stream. This interface is used by ConnectionToHost implementations to
// render received video frames. ConnectionToHost may feed encoded frames to the
// VideoStub or decode them and pass decoded frames to the FrameConsumer. If the
// implementation uses FrameConsumer directly then it must also call
// FrameStatsConsumer with FrameStats for each frame.
//
// TODO(sergeyu): Reconsider this design.
class VideoRenderer {
 public:
  virtual ~VideoRenderer() {}

  // Initializes the video renderer. This allows the renderer to be initialized
  // after it is constructed. Returns true if initialization succeeds and false
  // otherwise. An implementation that doesn't use this function to initialize
  // should always return true.
  // |perf_tracker| must outlive the renderer.
  virtual bool Initialize(const ClientContext& client_context,
                          protocol::FrameStatsConsumer* stats_consumer) = 0;

  // Configures the renderer with the supplied |config|. This must be called
  // exactly once before video data is supplied to the renderer.
  virtual void OnSessionConfig(const SessionConfig& config) = 0;

  // Returns the VideoStub interface of this renderer.
  virtual VideoStub* GetVideoStub() = 0;

  // Returns the FrameConsumer interface for this renderer.
  virtual FrameConsumer* GetFrameConsumer() = 0;

  // Returns the FrameStatsConsumer interface for this renderer.
  virtual FrameStatsConsumer* GetFrameStatsConsumer() = 0;
};

}  // namespace protocol
}  // namespace remoting

#endif  // REMOTING_CLIENT_VIDEO_RENDERER_H_