OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 // Creates a codec with the given parameters. | 147 // Creates a codec with the given parameters. |
148 VideoCodec(int id, const std::string& name); | 148 VideoCodec(int id, const std::string& name); |
149 // Creates a codec with the given name and empty id. | 149 // Creates a codec with the given name and empty id. |
150 explicit VideoCodec(const std::string& name); | 150 explicit VideoCodec(const std::string& name); |
151 // Creates an empty codec. | 151 // Creates an empty codec. |
152 VideoCodec(); | 152 VideoCodec(); |
153 VideoCodec(const VideoCodec& c); | 153 VideoCodec(const VideoCodec& c); |
154 VideoCodec(VideoCodec&& c); | 154 VideoCodec(VideoCodec&& c); |
155 virtual ~VideoCodec() = default; | 155 virtual ~VideoCodec() = default; |
156 | 156 |
| 157 // Indicates if this video codec is the same as the other video codec, e.g. if |
| 158 // they are both VP8 or VP9, or if they are both H264 with the same H264 |
| 159 // profile. H264 levels however are not compared. |
| 160 bool Matches(const VideoCodec& codec) const; |
| 161 |
157 std::string ToString() const; | 162 std::string ToString() const; |
158 | 163 |
159 VideoCodec& operator=(const VideoCodec& c); | 164 VideoCodec& operator=(const VideoCodec& c); |
160 VideoCodec& operator=(VideoCodec&& c); | 165 VideoCodec& operator=(VideoCodec&& c); |
161 | 166 |
162 bool operator==(const VideoCodec& c) const; | 167 bool operator==(const VideoCodec& c) const; |
163 | 168 |
164 bool operator!=(const VideoCodec& c) const { | 169 bool operator!=(const VideoCodec& c) const { |
165 return !(*this == c); | 170 return !(*this == c); |
166 } | 171 } |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 } | 211 } |
207 return nullptr; | 212 return nullptr; |
208 } | 213 } |
209 | 214 |
210 bool CodecNamesEq(const std::string& name1, const std::string& name2); | 215 bool CodecNamesEq(const std::string& name1, const std::string& name2); |
211 bool CodecNamesEq(const char* name1, const char* name2); | 216 bool CodecNamesEq(const char* name1, const char* name2); |
212 webrtc::VideoCodecType CodecTypeFromName(const std::string& name); | 217 webrtc::VideoCodecType CodecTypeFromName(const std::string& name); |
213 bool HasNack(const Codec& codec); | 218 bool HasNack(const Codec& codec); |
214 bool HasRemb(const Codec& codec); | 219 bool HasRemb(const Codec& codec); |
215 bool HasTransportCc(const Codec& codec); | 220 bool HasTransportCc(const Codec& codec); |
216 bool IsCodecSupported(const std::vector<VideoCodec>& supported_codecs, | 221 // Returns the first codec in |supported_codecs| that matches |codec|, or |
217 const VideoCodec& codec); | 222 // nullptr if no codec matches. |
| 223 const VideoCodec* FindMatchingCodec( |
| 224 const std::vector<VideoCodec>& supported_codecs, |
| 225 const VideoCodec& codec); |
218 | 226 |
219 } // namespace cricket | 227 } // namespace cricket |
220 | 228 |
221 #endif // WEBRTC_MEDIA_BASE_CODEC_H_ | 229 #endif // WEBRTC_MEDIA_BASE_CODEC_H_ |
OLD | NEW |