Index: webrtc/api/objc/RTCRtpCodecParameters.mm |
diff --git a/webrtc/api/objc/RTCRtpCodecParameters.mm b/webrtc/api/objc/RTCRtpCodecParameters.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..38cc5477e83b07f989baf825dba98f9f30c7dc4e |
--- /dev/null |
+++ b/webrtc/api/objc/RTCRtpCodecParameters.mm |
@@ -0,0 +1,45 @@ |
+/* |
+ * Copyright 2016 The WebRTC project authors. All Rights Reserved. |
+ * |
+ * Use of this source code is governed by a BSD-style license |
+ * that can be found in the LICENSE file in the root of the source |
+ * tree. An additional intellectual property rights grant can be found |
+ * in the file PATENTS. All contributing project authors may |
+ * be found in the AUTHORS file in the root of the source tree. |
+ */ |
+ |
+#import "RTCRtpCodecParameters+Private.h" |
+ |
+@implementation RTCRtpCodecParameters |
+ |
+@synthesize payloadType = _payloadType; |
+@synthesize mimeType = _mimeType; |
+@synthesize clockRate = _clockRate; |
+@synthesize channels = _channels; |
+ |
+- (instancetype)init { |
+ return [super init]; |
+} |
+ |
+- (instancetype)initWithNativeParameters: |
+ (const webrtc::RtpCodecParameters &)nativeParameters { |
+ if (self = [self init]) { |
+ _payloadType = nativeParameters.payload_type; |
+ _mimeType = [NSString stringForStdString:nativeParameters.mime_type]; |
+ _clockRate = nativeParameters.clock_rate; |
+ _channels = nativeParameters.channels; |
+ _isActive = nativeParameters.active; |
+ } |
+ return self; |
+} |
+ |
+- (webrtc::RtpCodecParameters)nativeParameters { |
+ webrtc::RtpCodecParameters parameters; |
+ parameters.payload_type = _payloadType; |
+ parameters.mime_type = [NSString stdStringForString:_mimeType]; |
skvlad
2016/04/14 01:03:56
this probably requires #import "webrtc/base/objc/N
Taylor Brandstetter
2016/04/14 01:43:45
Done.
|
+ parameters.clock_rate = _clockRate; |
+ parameters.channels = _channels; |
+ return parameters; |
+} |
+ |
+@end |