| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2016 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 19 matching lines...) Expand all Loading... |
| 30 } // namespace | 30 } // namespace |
| 31 | 31 |
| 32 InternalEncoderFactory::InternalEncoderFactory() { | 32 InternalEncoderFactory::InternalEncoderFactory() { |
| 33 supported_codecs_.push_back(cricket::VideoCodec(kVp8CodecName)); | 33 supported_codecs_.push_back(cricket::VideoCodec(kVp8CodecName)); |
| 34 if (webrtc::VP9Encoder::IsSupported()) | 34 if (webrtc::VP9Encoder::IsSupported()) |
| 35 supported_codecs_.push_back(cricket::VideoCodec(kVp9CodecName)); | 35 supported_codecs_.push_back(cricket::VideoCodec(kVp9CodecName)); |
| 36 if (webrtc::H264Encoder::IsSupported()) { | 36 if (webrtc::H264Encoder::IsSupported()) { |
| 37 cricket::VideoCodec codec(kH264CodecName); | 37 cricket::VideoCodec codec(kH264CodecName); |
| 38 // TODO(magjed): Move setting these parameters into webrtc::H264Encoder | 38 // TODO(magjed): Move setting these parameters into webrtc::H264Encoder |
| 39 // instead. | 39 // instead. |
| 40 // TODO(hta): Set FMTP parameters for all codecs of type H264. |
| 40 codec.SetParam(kH264FmtpProfileLevelId, | 41 codec.SetParam(kH264FmtpProfileLevelId, |
| 41 kH264ProfileLevelConstrainedBaseline); | 42 kH264ProfileLevelConstrainedBaseline); |
| 42 codec.SetParam(kH264FmtpLevelAsymmetryAllowed, "1"); | 43 codec.SetParam(kH264FmtpLevelAsymmetryAllowed, "1"); |
| 44 codec.SetParam(kH264FmtpPacketizationMode, "1"); |
| 43 supported_codecs_.push_back(std::move(codec)); | 45 supported_codecs_.push_back(std::move(codec)); |
| 44 } | 46 } |
| 45 | 47 |
| 46 supported_codecs_.push_back(cricket::VideoCodec(kRedCodecName)); | 48 supported_codecs_.push_back(cricket::VideoCodec(kRedCodecName)); |
| 47 supported_codecs_.push_back(cricket::VideoCodec(kUlpfecCodecName)); | 49 supported_codecs_.push_back(cricket::VideoCodec(kUlpfecCodecName)); |
| 48 | 50 |
| 49 if (IsFlexfecFieldTrialEnabled()) { | 51 if (IsFlexfecFieldTrialEnabled()) { |
| 50 cricket::VideoCodec flexfec_codec(kFlexfecCodecName); | 52 cricket::VideoCodec flexfec_codec(kFlexfecCodecName); |
| 51 // This value is currently arbitrarily set to 10 seconds. (The unit | 53 // This value is currently arbitrarily set to 10 seconds. (The unit |
| 52 // is microseconds.) This parameter MUST be present in the SDP, but | 54 // is microseconds.) This parameter MUST be present in the SDP, but |
| (...skipping 28 matching lines...) Expand all Loading... |
| 81 InternalEncoderFactory::supported_codecs() const { | 83 InternalEncoderFactory::supported_codecs() const { |
| 82 return supported_codecs_; | 84 return supported_codecs_; |
| 83 } | 85 } |
| 84 | 86 |
| 85 void InternalEncoderFactory::DestroyVideoEncoder( | 87 void InternalEncoderFactory::DestroyVideoEncoder( |
| 86 webrtc::VideoEncoder* encoder) { | 88 webrtc::VideoEncoder* encoder) { |
| 87 delete encoder; | 89 delete encoder; |
| 88 } | 90 } |
| 89 | 91 |
| 90 } // namespace cricket | 92 } // namespace cricket |
| OLD | NEW |