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 17 matching lines...) Expand all Loading... |
28 } | 28 } |
29 | 29 |
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 | |
39 // instead. | |
40 // TODO(hta): Set FMTP parameters for all codecs of type H264. | |
41 codec.SetParam(kH264FmtpProfileLevelId, | |
42 kH264ProfileLevelConstrainedBaseline); | |
43 codec.SetParam(kH264FmtpLevelAsymmetryAllowed, "1"); | |
44 codec.SetParam(kH264FmtpPacketizationMode, "1"); | |
45 supported_codecs_.push_back(std::move(codec)); | 38 supported_codecs_.push_back(std::move(codec)); |
46 } | 39 } |
47 | 40 |
48 supported_codecs_.push_back(cricket::VideoCodec(kRedCodecName)); | 41 supported_codecs_.push_back(cricket::VideoCodec(kRedCodecName)); |
49 supported_codecs_.push_back(cricket::VideoCodec(kUlpfecCodecName)); | 42 supported_codecs_.push_back(cricket::VideoCodec(kUlpfecCodecName)); |
50 | 43 |
51 if (IsFlexfecFieldTrialEnabled()) { | 44 if (IsFlexfecFieldTrialEnabled()) { |
52 cricket::VideoCodec flexfec_codec(kFlexfecCodecName); | 45 cricket::VideoCodec flexfec_codec(kFlexfecCodecName); |
53 // This value is currently arbitrarily set to 10 seconds. (The unit | 46 // This value is currently arbitrarily set to 10 seconds. (The unit |
54 // is microseconds.) This parameter MUST be present in the SDP, but | 47 // is microseconds.) This parameter MUST be present in the SDP, but |
(...skipping 28 matching lines...) Expand all Loading... |
83 InternalEncoderFactory::supported_codecs() const { | 76 InternalEncoderFactory::supported_codecs() const { |
84 return supported_codecs_; | 77 return supported_codecs_; |
85 } | 78 } |
86 | 79 |
87 void InternalEncoderFactory::DestroyVideoEncoder( | 80 void InternalEncoderFactory::DestroyVideoEncoder( |
88 webrtc::VideoEncoder* encoder) { | 81 webrtc::VideoEncoder* encoder) { |
89 delete encoder; | 82 delete encoder; |
90 } | 83 } |
91 | 84 |
92 } // namespace cricket | 85 } // namespace cricket |
OLD | NEW |