Index: webrtc/api/objc/RTCRtpCodecParameters.h |
diff --git a/webrtc/api/objc/RTCRtpEncodingParameters.h b/webrtc/api/objc/RTCRtpCodecParameters.h |
similarity index 52% |
copy from webrtc/api/objc/RTCRtpEncodingParameters.h |
copy to webrtc/api/objc/RTCRtpCodecParameters.h |
index 8f7f22e04df1d35857dc46b2631805555c4189f5..73e0819aef06d0341282cd33d5b2959b66f62432 100644 |
--- a/webrtc/api/objc/RTCRtpEncodingParameters.h |
+++ b/webrtc/api/objc/RTCRtpCodecParameters.h |
@@ -12,15 +12,22 @@ |
NS_ASSUME_NONNULL_BEGIN |
-@interface RTCRtpEncodingParameters : NSObject |
+@interface RTCRtpCodecParameters : NSObject |
-/** Controls whether the encoding is currently transmitted. */ |
-@property(nonatomic, assign) BOOL isActive; |
+/** The RTP payload type. */ |
+@property(nonatomic, assign) int payloadType; |
tkchin_webrtc
2016/04/14 17:52:51
ditto enum?
Taylor Brandstetter
2016/04/14 18:17:22
An enum for every value from 0 to 127?
pthatcher1
2016/04/14 18:27:15
And since the values are dynamically assigned, at
tkchin_webrtc
2016/04/14 18:30:08
Interesting. How would a client assign this payloa
Taylor Brandstetter
2016/04/14 20:01:47
If a client wanted to add a new codec without SDP
tkchin_webrtc
2016/04/14 21:11:47
Can we add a pointer to documentation for that, or
Taylor Brandstetter
2016/04/14 22:03:30
Done.
|
-/** The maximum bitrate to use for the encoding, or nil if there is no |
- * limit. |
+/** |
+ * The codec MIME type. Valid types are listed in: |
+ * http://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml#rtp-parameters-2 |
*/ |
-@property(nonatomic, copy, nullable) NSNumber *maxBitrateBps; |
+@property(nonatomic, nonnull) NSString *mimeType; |
tkchin_webrtc
2016/04/14 17:52:51
Use an enum for this and translate to what the C++
Taylor Brandstetter
2016/04/14 18:17:22
There are a pretty lot of possibilities (100+) and
tkchin_webrtc
2016/04/14 18:30:08
Ok. In that case please add supported strings as c
Taylor Brandstetter
2016/04/14 20:01:47
Ok. I copied them from mediaconstants.h/cc
|
+ |
+/** The codec clock rate expressed in Hertz. */ |
+@property(nonatomic, assign) int clockRate; |
+ |
+/** The number of channels (mono=1, stereo=2). */ |
+@property(nonatomic, assign) int channels; |
- (instancetype)init NS_DESIGNATED_INITIALIZER; |