blob: f30af15ce09c456a0b0958a572e8c1110e7c1c8b [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:36 +00001/*
2 * libjingle
3 * Copyright 2004 Google Inc.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice,
11 * this list of conditions and the following disclaimer in the documentation
12 * and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19 * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifndef TALK_MEDIA_BASE_CODEC_H_
29#define TALK_MEDIA_BASE_CODEC_H_
30
31#include <map>
32#include <set>
33#include <string>
34#include <vector>
35
36#include "talk/media/base/constants.h"
37
38namespace cricket {
39
40typedef std::map<std::string, std::string> CodecParameterMap;
41
wu@webrtc.orgff1b1bf2014-06-20 20:57:42 +000042extern const int kMaxPayloadId;
43
henrike@webrtc.org28e20752013-07-10 00:45:36 +000044class FeedbackParam {
45 public:
46 FeedbackParam(const std::string& id, const std::string& param)
47 : id_(id),
48 param_(param) {
49 }
wu@webrtc.org91053e72013-08-10 07:18:04 +000050 explicit FeedbackParam(const std::string& id)
51 : id_(id),
52 param_(kParamValueEmpty) {
53 }
henrike@webrtc.org28e20752013-07-10 00:45:36 +000054 bool operator==(const FeedbackParam& other) const;
55
56 const std::string& id() const { return id_; }
57 const std::string& param() const { return param_; }
58
59 private:
60 std::string id_; // e.g. "nack", "ccm"
61 std::string param_; // e.g. "", "rpsi", "fir"
62};
63
64class FeedbackParams {
65 public:
66 bool operator==(const FeedbackParams& other) const;
67
68 bool Has(const FeedbackParam& param) const;
69 void Add(const FeedbackParam& param);
70
71 void Intersect(const FeedbackParams& from);
72
73 const std::vector<FeedbackParam>& params() const { return params_; }
74 private:
75 bool HasDuplicateEntries() const;
76
77 std::vector<FeedbackParam> params_;
78};
79
80struct Codec {
81 int id;
82 std::string name;
83 int clockrate;
84 int preference;
85 CodecParameterMap params;
86 FeedbackParams feedback_params;
87
88 // Creates a codec with the given parameters.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +000089 Codec(int id, const std::string& name, int clockrate, int preference);
henrike@webrtc.org28e20752013-07-10 00:45:36 +000090 // Creates an empty codec.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +000091 Codec();
92 Codec(const Codec& c);
93 ~Codec();
henrike@webrtc.org28e20752013-07-10 00:45:36 +000094
95 // Indicates if this codec is compatible with the specified codec.
96 bool Matches(const Codec& codec) const;
97
98 // Find the parameter for |name| and write the value to |out|.
99 bool GetParam(const std::string& name, std::string* out) const;
100 bool GetParam(const std::string& name, int* out) const;
101
102 void SetParam(const std::string& name, const std::string& value);
103 void SetParam(const std::string& name, int value);
104
buildbot@webrtc.orgfbd13282014-06-19 19:50:55 +0000105 // It is safe to input a non-existent parameter.
106 // Returns true if the parameter existed, false if it did not exist.
107 bool RemoveParam(const std::string& name);
108
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000109 bool HasFeedbackParam(const FeedbackParam& param) const;
110 void AddFeedbackParam(const FeedbackParam& param);
111
112 static bool Preferable(const Codec& first, const Codec& other) {
113 return first.preference > other.preference;
114 }
115
116 // Filter |this| feedbacks params such that only those shared by both |this|
117 // and |other| are kept.
118 void IntersectFeedbackParams(const Codec& other);
119
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000120 Codec& operator=(const Codec& c);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000121
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000122 bool operator==(const Codec& c) const;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000123
124 bool operator!=(const Codec& c) const {
125 return !(*this == c);
126 }
127};
128
129struct AudioCodec : public Codec {
130 int bitrate;
131 int channels;
132
133 // Creates a codec with the given parameters.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000134 AudioCodec(int pt, const std::string& nm, int cr, int br, int cs, int pr);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000135 // Creates an empty codec.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000136 AudioCodec();
137 AudioCodec(const AudioCodec& c);
138 ~AudioCodec() = default;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000139
140 // Indicates if this codec is compatible with the specified codec.
141 bool Matches(const AudioCodec& codec) const;
142
143 static bool Preferable(const AudioCodec& first, const AudioCodec& other) {
144 return first.preference > other.preference;
145 }
146
147 std::string ToString() const;
148
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000149 AudioCodec& operator=(const AudioCodec& c);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000150
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000151 bool operator==(const AudioCodec& c) const;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000152
153 bool operator!=(const AudioCodec& c) const {
154 return !(*this == c);
155 }
156};
157
158struct VideoCodec : public Codec {
159 int width;
160 int height;
161 int framerate;
162
163 // Creates a codec with the given parameters.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000164 VideoCodec(int pt, const std::string& nm, int w, int h, int fr, int pr);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000165 // Creates an empty codec.
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000166 VideoCodec();
167 VideoCodec(const VideoCodec& c);
168 ~VideoCodec() = default;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000169
170 static bool Preferable(const VideoCodec& first, const VideoCodec& other) {
171 return first.preference > other.preference;
172 }
173
174 std::string ToString() const;
175
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000176 VideoCodec& operator=(const VideoCodec& c);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000177
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000178 bool operator==(const VideoCodec& c) const;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000179
180 bool operator!=(const VideoCodec& c) const {
181 return !(*this == c);
182 }
pbos@webrtc.orgb5a22b12014-05-13 11:07:01 +0000183
184 static VideoCodec CreateRtxCodec(int rtx_payload_type,
185 int associated_payload_type);
186
187 enum CodecType {
188 CODEC_VIDEO,
189 CODEC_RED,
190 CODEC_ULPFEC,
191 CODEC_RTX,
192 };
193
194 CodecType GetCodecType() const;
195 // Validates a VideoCodec's payload type, dimensions and bitrates etc. If they
196 // don't make sense (such as max < min bitrate), and error is logged and
197 // ValidateCodecFormat returns false.
198 bool ValidateCodecFormat() const;
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000199};
200
201struct DataCodec : public Codec {
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000202 DataCodec(int id, const std::string& name, int preference);
203 DataCodec();
204 DataCodec(const DataCodec& c);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000205
guoweis@webrtc.orgbc6961f2015-02-19 17:55:18 +0000206 DataCodec& operator=(const DataCodec& c);
henrike@webrtc.org28e20752013-07-10 00:45:36 +0000207
208 std::string ToString() const;
209};
210
211struct VideoEncoderConfig {
212 static const int kDefaultMaxThreads = -1;
213 static const int kDefaultCpuProfile = -1;
214
215 VideoEncoderConfig()
216 : max_codec(),
217 num_threads(kDefaultMaxThreads),
218 cpu_profile(kDefaultCpuProfile) {
219 }
220
221 VideoEncoderConfig(const VideoCodec& c)
222 : max_codec(c),
223 num_threads(kDefaultMaxThreads),
224 cpu_profile(kDefaultCpuProfile) {
225 }
226
227 VideoEncoderConfig(const VideoCodec& c, int t, int p)
228 : max_codec(c),
229 num_threads(t),
230 cpu_profile(p) {
231 }
232
233 VideoEncoderConfig& operator=(const VideoEncoderConfig& config) {
234 max_codec = config.max_codec;
235 num_threads = config.num_threads;
236 cpu_profile = config.cpu_profile;
237 return *this;
238 }
239
240 bool operator==(const VideoEncoderConfig& config) const {
241 return max_codec == config.max_codec &&
242 num_threads == config.num_threads &&
243 cpu_profile == config.cpu_profile;
244 }
245
246 bool operator!=(const VideoEncoderConfig& config) const {
247 return !(*this == config);
248 }
249
250 VideoCodec max_codec;
251 int num_threads;
252 int cpu_profile;
253};
254
255} // namespace cricket
256
257#endif // TALK_MEDIA_BASE_CODEC_H_