mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-18 16:17:50 +01:00

Bug: webrtc:15749 Change-Id: I92f5d5dc5d9eb4d0a60c33ed724a0d3e8b4fa1a8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/333402 Auto-Submit: Karim Ham <karim@karhm.com> Reviewed-by: Florent Castelli <orphis@webrtc.org> Reviewed-by: Peter Hanspers <peterhanspers@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Florent Castelli <orphis@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41601}
58 lines
1.7 KiB
Objective-C
58 lines
1.7 KiB
Objective-C
/*
|
|
* Copyright 2024 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 <Foundation/Foundation.h>
|
|
|
|
#import "RTCMacros.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
RTC_OBJC_EXPORT
|
|
@interface RTC_OBJC_TYPE (RTCRtpCodecCapability) : NSObject
|
|
|
|
/** The preferred RTP payload type. */
|
|
@property(nonatomic, readonly, nullable) NSNumber *preferredPayloadType;
|
|
|
|
/**
|
|
* The codec MIME subtype. Valid types are listed in:
|
|
* http://www.iana.org/assignments/rtp-parameters/rtp-parameters.xhtml#rtp-parameters-2
|
|
*
|
|
* Several supported types are represented by the constants above.
|
|
*/
|
|
@property(nonatomic, readonly) NSString *name;
|
|
|
|
/**
|
|
* The media type of this codec. Equivalent to MIME top-level type.
|
|
*
|
|
* Valid values are kRTCMediaStreamTrackKindAudio and
|
|
* kRTCMediaStreamTrackKindVideo.
|
|
*/
|
|
@property(nonatomic, readonly) NSString *kind;
|
|
|
|
/** The codec clock rate expressed in Hertz. */
|
|
@property(nonatomic, readonly, nullable) NSNumber *clockRate;
|
|
|
|
/**
|
|
* The number of audio channels (mono=1, stereo=2).
|
|
* Set to null for video codecs.
|
|
**/
|
|
@property(nonatomic, readonly, nullable) NSNumber *numChannels;
|
|
|
|
/** The "format specific parameters" field from the "a=fmtp" line in the SDP */
|
|
@property(nonatomic, readonly) NSDictionary<NSString *, NSString *> *parameters;
|
|
|
|
/** The MIME type of the codec. */
|
|
@property(nonatomic, readonly) NSString *mimeType;
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|