24 lines
820 B
C++
24 lines
820 B
C++
|
|
/*
|
||
|
|
* Copyright (c) 2018 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.
|
||
|
|
*
|
||
|
|
* Usage: this class will register multiple RtcpBitrateObserver's one at each
|
||
|
|
* RTCP module. It will aggregate the results and run one bandwidth estimation
|
||
|
|
* and push the result to the encoders via BitrateObserver(s).
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "modules/bitrate_controller/include/bitrate_controller.h"
|
||
|
|
|
||
|
|
namespace webrtc {
|
||
|
|
|
||
|
|
size_t BitrateObserver::pacer_queue_size_in_bytes() {
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace webrtc
|