ISBX / apprtc-ios

A native iOS video chat app based on WebRTC
BSD 3-Clause "New" or "Revised" License
1.35k stars 413 forks source link

I want to remove Echo and Noise, but didn't success #151

Open ghost opened 5 years ago

ghost commented 5 years ago

This is my code:

NSArray *mandatoryConstraints = @[
                 [[RTCPair alloc] initWithKey:@"OfferToReceiveAudio" value:@"true"],
                 [[RTCPair alloc] initWithKey:@"OfferToReceiveVideo" value:@"true"],
                 [[RTCPair alloc] initWithKey:@"googNoiseSuppression" value:@"true"],
                 [[RTCPair alloc] initWithKey:@"googEchoCancellation" value:@"true"]
];

Please tell me the solution. Thanks!