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

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

Issue 10831246: Speex encoding/decoding. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 8 years, 4 months 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef REMOTING_PROTOCOL_SESSION_CONFIG_H_ 5 #ifndef REMOTING_PROTOCOL_SESSION_CONFIG_H_
6 #define REMOTING_PROTOCOL_SESSION_CONFIG_H_ 6 #define REMOTING_PROTOCOL_SESSION_CONFIG_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 15 matching lines...) Expand all
26 TRANSPORT_DATAGRAM, 26 TRANSPORT_DATAGRAM,
27 TRANSPORT_NONE, 27 TRANSPORT_NONE,
28 }; 28 };
29 29
30 enum Codec { 30 enum Codec {
31 CODEC_UNDEFINED, // Used for event and control channels. 31 CODEC_UNDEFINED, // Used for event and control channels.
32 CODEC_VERBATIM, 32 CODEC_VERBATIM,
33 CODEC_ZIP, 33 CODEC_ZIP,
34 CODEC_VP8, 34 CODEC_VP8,
35 CODEC_VORBIS, 35 CODEC_VORBIS,
36 CODEC_SPEEX,
36 }; 37 };
37 38
38 ChannelConfig(); 39 ChannelConfig();
39 ChannelConfig(TransportType transport, int version, Codec codec); 40 ChannelConfig(TransportType transport, int version, Codec codec);
40 41
41 // operator== is overloaded so that std::find() works with 42 // operator== is overloaded so that std::find() works with
42 // std::vector<ChannelConfig>. 43 // std::vector<ChannelConfig>.
43 bool operator==(const ChannelConfig& b) const; 44 bool operator==(const ChannelConfig& b) const;
44 45
45 void Reset(); 46 void Reset();
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 std::vector<ChannelConfig> control_configs_; 163 std::vector<ChannelConfig> control_configs_;
163 std::vector<ChannelConfig> event_configs_; 164 std::vector<ChannelConfig> event_configs_;
164 std::vector<ChannelConfig> video_configs_; 165 std::vector<ChannelConfig> video_configs_;
165 std::vector<ChannelConfig> audio_configs_; 166 std::vector<ChannelConfig> audio_configs_;
166 }; 167 };
167 168
168 } // namespace protocol 169 } // namespace protocol
169 } // namespace remoting 170 } // namespace remoting
170 171
171 #endif // REMOTING_PROTOCOL_SESSION_CONFIG_H_ 172 #endif // REMOTING_PROTOCOL_SESSION_CONFIG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698