diff options
author | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 04:17:09 +0000 |
---|---|---|
committer | sergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-03 04:17:09 +0000 |
commit | 14fd1a60acdd439f80bdfc0aeb86761ba649db79 (patch) | |
tree | 5bfbcefbd8776ca6a4d810a75601d8bf62d91a7c /remoting/protocol/video_reader.h | |
parent | 07f1ceeabc0cf63ed8d7ae7aa8d1ff04dda02584 (diff) | |
download | chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.zip chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.tar.gz chromium_src-14fd1a60acdd439f80bdfc0aeb86761ba649db79.tar.bz2 |
Add VideoReader and VideoWriter interfaces.
Implemented VideoReader and VideoWriter for RTP and Protobuf.
BUG=53986
TEST=None
Review URL: http://codereview.chromium.org/4229003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64878 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/protocol/video_reader.h')
-rw-r--r-- | remoting/protocol/video_reader.h | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/remoting/protocol/video_reader.h b/remoting/protocol/video_reader.h new file mode 100644 index 0000000..ca39619 --- /dev/null +++ b/remoting/protocol/video_reader.h @@ -0,0 +1,43 @@ +// Copyright (c) 2010 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. + +// VideoReader is a generic interface for a video stream reader. RtpVideoReader +// and ProtobufVideoReader implement this interface for RTP and protobuf video +// streams. VideoReader is used by ConnectionToHost to read video stream. + +#ifndef REMOTING_PROTOCOL_VIDEO_READER_H_ +#define REMOTING_PROTOCOL_VIDEO_READER_H_ + +#include "base/callback.h" +#include "remoting/protocol/video_stub.h" + +namespace remoting { + +class ChromotocolConfig; +class ChromotocolConnection; + +class VideoReader { + public: + static VideoReader* Create(const ChromotocolConfig* config); + + virtual ~VideoReader(); + + // Initializies the reader. Doesn't take ownership of either |connection| + // or |video_stub|. + virtual void Init(ChromotocolConnection* connection, + VideoStub* video_stub) = 0; + + // Closes the reader. The stub should not be called after Close(). + virtual void Close() = 0; + + protected: + VideoReader() { } + + private: + DISALLOW_COPY_AND_ASSIGN(VideoReader); +}; + +} // namespace remoting + +#endif // REMOTING_PROTOCOL_VIDEO_READER_H_ |