OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2016 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 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 |
11 #import "RTCRtpCodecParameters+Private.h" | 11 #import "RTCRtpCodecParameters+Private.h" |
12 | 12 |
13 #import "NSString+StdString.h" | 13 #import "NSString+StdString.h" |
14 | 14 |
15 #include "webrtc/media/base/mediaconstants.h" | 15 #include "webrtc/media/base/mediaconstants.h" |
16 | 16 |
17 const NSString * const kRTCRtxCodecMimeType = @(cricket::kRtxCodecName); | 17 const NSString * const kRTCRtxCodecMimeType = @(cricket::kRtxCodecName); |
18 const NSString * const kRTCRedCodecMimeType = @(cricket::kRedCodecName); | 18 const NSString * const kRTCRedCodecMimeType = @(cricket::kRedCodecName); |
19 const NSString * const kRTCUlpfecCodecMimeType = @(cricket::kUlpfecCodecName); | 19 const NSString * const kRTCUlpfecCodecMimeType = @(cricket::kUlpfecCodecName); |
| 20 const NSString * const kRTCFlexfecCodecMimeType = @(cricket::kFlexfecCodecName); |
20 const NSString * const kRTCOpusCodecMimeType = @(cricket::kOpusCodecName); | 21 const NSString * const kRTCOpusCodecMimeType = @(cricket::kOpusCodecName); |
21 const NSString * const kRTCIsacCodecMimeType = @(cricket::kIsacCodecName); | 22 const NSString * const kRTCIsacCodecMimeType = @(cricket::kIsacCodecName); |
22 const NSString * const kRTCL16CodecMimeType = @(cricket::kL16CodecName); | 23 const NSString * const kRTCL16CodecMimeType = @(cricket::kL16CodecName); |
23 const NSString * const kRTCG722CodecMimeType = @(cricket::kG722CodecName); | 24 const NSString * const kRTCG722CodecMimeType = @(cricket::kG722CodecName); |
24 const NSString * const kRTCIlbcCodecMimeType = @(cricket::kIlbcCodecName); | 25 const NSString * const kRTCIlbcCodecMimeType = @(cricket::kIlbcCodecName); |
25 const NSString * const kRTCPcmuCodecMimeType = @(cricket::kPcmuCodecName); | 26 const NSString * const kRTCPcmuCodecMimeType = @(cricket::kPcmuCodecName); |
26 const NSString * const kRTCPcmaCodecMimeType = @(cricket::kPcmaCodecName); | 27 const NSString * const kRTCPcmaCodecMimeType = @(cricket::kPcmaCodecName); |
27 const NSString * const kRTCDtmfCodecMimeType = @(cricket::kDtmfCodecName); | 28 const NSString * const kRTCDtmfCodecMimeType = @(cricket::kDtmfCodecName); |
28 const NSString * const kRTCComfortNoiseCodecMimeType = | 29 const NSString * const kRTCComfortNoiseCodecMimeType = |
29 @(cricket::kComfortNoiseCodecName); | 30 @(cricket::kComfortNoiseCodecName); |
(...skipping 26 matching lines...) Expand all Loading... |
56 - (webrtc::RtpCodecParameters)nativeParameters { | 57 - (webrtc::RtpCodecParameters)nativeParameters { |
57 webrtc::RtpCodecParameters parameters; | 58 webrtc::RtpCodecParameters parameters; |
58 parameters.payload_type = _payloadType; | 59 parameters.payload_type = _payloadType; |
59 parameters.mime_type = [NSString stdStringForString:_mimeType]; | 60 parameters.mime_type = [NSString stdStringForString:_mimeType]; |
60 parameters.clock_rate = _clockRate; | 61 parameters.clock_rate = _clockRate; |
61 parameters.channels = _channels; | 62 parameters.channels = _channels; |
62 return parameters; | 63 return parameters; |
63 } | 64 } |
64 | 65 |
65 @end | 66 @end |
OLD | NEW |