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

Side by Side Diff: webrtc/media/base/codec.h

Issue 2470103002: Add new codec for FlexFEC. (Closed)
Patch Set: Rebase. Created 4 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
« no previous file with comments | « webrtc/common_video/video_frame.cc ('k') | webrtc/media/base/codec.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 /* 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 return !(*this == c); 159 return !(*this == c);
160 } 160 }
161 161
162 static VideoCodec CreateRtxCodec(int rtx_payload_type, 162 static VideoCodec CreateRtxCodec(int rtx_payload_type,
163 int associated_payload_type); 163 int associated_payload_type);
164 164
165 enum CodecType { 165 enum CodecType {
166 CODEC_VIDEO, 166 CODEC_VIDEO,
167 CODEC_RED, 167 CODEC_RED,
168 CODEC_ULPFEC, 168 CODEC_ULPFEC,
169 CODEC_FLEXFEC,
169 CODEC_RTX, 170 CODEC_RTX,
170 }; 171 };
171 172
172 CodecType GetCodecType() const; 173 CodecType GetCodecType() const;
173 // Validates a VideoCodec's payload type, dimensions and bitrates etc. If they 174 // Validates a VideoCodec's payload type, dimensions and bitrates etc. If they
174 // don't make sense (such as max < min bitrate), and error is logged and 175 // don't make sense (such as max < min bitrate), and error is logged and
175 // ValidateCodecFormat returns false. 176 // ValidateCodecFormat returns false.
176 bool ValidateCodecFormat() const; 177 bool ValidateCodecFormat() const;
177 }; 178 };
178 179
(...skipping 28 matching lines...) Expand all
207 webrtc::VideoCodecType CodecTypeFromName(const std::string& name); 208 webrtc::VideoCodecType CodecTypeFromName(const std::string& name);
208 bool HasNack(const Codec& codec); 209 bool HasNack(const Codec& codec);
209 bool HasRemb(const Codec& codec); 210 bool HasRemb(const Codec& codec);
210 bool HasTransportCc(const Codec& codec); 211 bool HasTransportCc(const Codec& codec);
211 bool IsCodecSupported(const std::vector<VideoCodec>& supported_codecs, 212 bool IsCodecSupported(const std::vector<VideoCodec>& supported_codecs,
212 const VideoCodec& codec); 213 const VideoCodec& codec);
213 214
214 } // namespace cricket 215 } // namespace cricket
215 216
216 #endif // WEBRTC_MEDIA_BASE_CODEC_H_ 217 #endif // WEBRTC_MEDIA_BASE_CODEC_H_
OLDNEW
« no previous file with comments | « webrtc/common_video/video_frame.cc ('k') | webrtc/media/base/codec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698