Bump to WebRTC M120 release
Some API deprecation -- ExperimentalAgc and ExperimentalNs are gone. We're continuing to carry iSAC even though it's gone upstream, but maybe we'll want to drop that soon.
This commit is contained in:
@ -17,8 +17,8 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "absl/base/attributes.h"
|
||||
#include "rtc_base/checks.h"
|
||||
#include "rtc_base/system/unused.h"
|
||||
|
||||
namespace webrtc {
|
||||
|
||||
@ -127,7 +127,7 @@ class SwapQueue {
|
||||
// When specified, the T given in *input must pass the ItemVerifier() test.
|
||||
// The contents of *input after the call are then also guaranteed to pass the
|
||||
// ItemVerifier() test.
|
||||
bool Insert(T* input) RTC_WARN_UNUSED_RESULT {
|
||||
ABSL_MUST_USE_RESULT bool Insert(T* input) {
|
||||
RTC_DCHECK(input);
|
||||
|
||||
RTC_DCHECK(queue_item_verifier_(*input));
|
||||
@ -168,7 +168,7 @@ class SwapQueue {
|
||||
// empty). When specified, The T given in *output must pass the ItemVerifier()
|
||||
// test and the contents of *output after the call are then also guaranteed to
|
||||
// pass the ItemVerifier() test.
|
||||
bool Remove(T* output) RTC_WARN_UNUSED_RESULT {
|
||||
ABSL_MUST_USE_RESULT bool Remove(T* output) {
|
||||
RTC_DCHECK(output);
|
||||
|
||||
RTC_DCHECK(queue_item_verifier_(*output));
|
||||
|
Reference in New Issue
Block a user