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

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

Issue 4446005: Chromoting: Rename ChromotocolConfig -> SessionConfig (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Rename candidate_config vars 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/video_reader.cc ('k') | remoting/protocol/video_writer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 // VideoWriter is a generic interface for a video stream writer. RtpVideoWriter 5 // VideoWriter is a generic interface for a video stream writer. RtpVideoWriter
6 // and ProtobufVideoWriter implement this interface for RTP and protobuf video 6 // and ProtobufVideoWriter implement this interface for RTP and protobuf video
7 // streams. VideoWriter is used by ConnectionToClient to write into the video 7 // streams. VideoWriter is used by ConnectionToClient to write into the video
8 // stream. 8 // stream.
9 9
10 #ifndef REMOTING_PROTOCOL_VIDEO_WRITER_H_ 10 #ifndef REMOTING_PROTOCOL_VIDEO_WRITER_H_
11 #define REMOTING_PROTOCOL_VIDEO_WRITER_H_ 11 #define REMOTING_PROTOCOL_VIDEO_WRITER_H_
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "remoting/proto/video.pb.h" 14 #include "remoting/proto/video.pb.h"
15 15
16 namespace remoting { 16 namespace remoting {
17 17
18 namespace protocol {
19 class Session;
20 } // namespace protocol
21
22 class ChromotocolConfig;
23 class ChromotocolConnection; 18 class ChromotocolConnection;
24 19
25 namespace protocol { 20 namespace protocol {
26 21
22 class Session;
23 class SessionConfig;
24
27 // TODO(sergeyu): VideoWriter should implement VideoStub interface. 25 // TODO(sergeyu): VideoWriter should implement VideoStub interface.
28 class VideoWriter { 26 class VideoWriter {
29 public: 27 public:
30 virtual ~VideoWriter(); 28 virtual ~VideoWriter();
31 29
32 static VideoWriter* Create(const ChromotocolConfig* config); 30 static VideoWriter* Create(const SessionConfig* config);
33 31
34 // Initializes the writer. 32 // Initializes the writer.
35 virtual void Init(protocol::Session* session) = 0; 33 virtual void Init(Session* session) = 0;
36 34
37 // Sends the |packet|. 35 // Sends the |packet|.
38 virtual void SendPacket(const VideoPacket& packet) = 0; 36 virtual void SendPacket(const VideoPacket& packet) = 0;
39 37
40 // Returns number of packets currently pending in the buffer. 38 // Returns number of packets currently pending in the buffer.
41 virtual int GetPendingPackets() = 0; 39 virtual int GetPendingPackets() = 0;
42 40
43 virtual void Close() = 0; 41 virtual void Close() = 0;
44 42
45 protected: 43 protected:
46 VideoWriter() { } 44 VideoWriter() { }
47 45
48 private: 46 private:
49 DISALLOW_COPY_AND_ASSIGN(VideoWriter); 47 DISALLOW_COPY_AND_ASSIGN(VideoWriter);
50 }; 48 };
51 49
52 } // namespace protocol 50 } // namespace protocol
53 } // namespace remoting 51 } // namespace remoting
54 52
55 #endif // REMOTING_PROTOCOL_VIDEO_WRITER_H_ 53 #endif // REMOTING_PROTOCOL_VIDEO_WRITER_H_
OLDNEW
« no previous file with comments | « remoting/protocol/video_reader.cc ('k') | remoting/protocol/video_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698