| Index: webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm
|
| diff --git a/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm b/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm
|
| index 73c9a71480c27315a468cca19557080975a0fa6f..1be33f0a8ff98a35e1c7a25203a3eab41a6ce460 100644
|
| --- a/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm
|
| +++ b/webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCVideoCodec.mm
|
| @@ -54,3 +54,18 @@
|
| }
|
|
|
| @end
|
| +
|
| +@implementation RTCVideoEncoderQpThresholds
|
| +
|
| +@synthesize low = _low;
|
| +@synthesize high = _high;
|
| +
|
| +- (instancetype)initWithThresholdsLow:(NSInteger)low high:(NSInteger)high {
|
| + if (self = [super init]) {
|
| + _low = low;
|
| + _high = high;
|
| + }
|
| + return self;
|
| +}
|
| +
|
| +@end
|
|
|