| Index: webrtc/media/base/codec.cc
|
| diff --git a/webrtc/media/base/codec.cc b/webrtc/media/base/codec.cc
|
| index 0ece9dbe16bd6fd04822f0d9f744c444eed641d5..b920b14d1d007beb8c44ab3a2d9a9957037677e3 100644
|
| --- a/webrtc/media/base/codec.cc
|
| +++ b/webrtc/media/base/codec.cc
|
| @@ -245,6 +245,9 @@ VideoCodec::CodecType VideoCodec::GetCodecType() const {
|
| if (_stricmp(payload_name, kUlpfecCodecName) == 0) {
|
| return CODEC_ULPFEC;
|
| }
|
| + if (_stricmp(payload_name, kFlexfecCodecName) == 0) {
|
| + return CODEC_FLEXFEC;
|
| + }
|
| if (_stricmp(payload_name, kRtxCodecName) == 0) {
|
| return CODEC_RTX;
|
| }
|
|
|