12345678910111213141516171819202122232425262728 |
- #import "RTCRtpCodecParameters.h"
- #include "api/rtp_parameters.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RTC_OBJC_TYPE (RTCRtpCodecParameters)
- ()
-
- @property(nonatomic, readonly) webrtc::RtpCodecParameters nativeParameters;
- - (instancetype)initWithNativeParameters:(const webrtc::RtpCodecParameters &)nativeParameters;
- @end
- NS_ASSUME_NONNULL_END
|