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

Side by Side Diff: remoting/protocol/video_reader.h

Issue 4229003: Add VideoReader and VideoWriter interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 10 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « remoting/protocol/stream_writer.cc ('k') | remoting/protocol/video_reader.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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.
4
5 // VideoReader is a generic interface for a video stream reader. RtpVideoReader
6 // and ProtobufVideoReader implement this interface for RTP and protobuf video
7 // streams. VideoReader is used by ConnectionToHost to read video stream.
8
9 #ifndef REMOTING_PROTOCOL_VIDEO_READER_H_
10 #define REMOTING_PROTOCOL_VIDEO_READER_H_
11
12 #include "base/callback.h"
13 #include "remoting/protocol/video_stub.h"
14
15 namespace remoting {
16
17 class ChromotocolConfig;
18 class ChromotocolConnection;
19
20 class VideoReader {
21 public:
22 static VideoReader* Create(const ChromotocolConfig* config);
23
24 virtual ~VideoReader();
25
26 // Initializies the reader. Doesn't take ownership of either |connection|
27 // or |video_stub|.
28 virtual void Init(ChromotocolConnection* connection,
29 VideoStub* video_stub) = 0;
30
31 // Closes the reader. The stub should not be called after Close().
32 virtual void Close() = 0;
33
34 protected:
35 VideoReader() { }
36
37 private:
38 DISALLOW_COPY_AND_ASSIGN(VideoReader);
39 };
40
41 } // namespace remoting
42
43 #endif // REMOTING_PROTOCOL_VIDEO_READER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/stream_writer.cc ('k') | remoting/protocol/video_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698