blob: 46e908be27740ae5281c1438c99dd8d025df91db [file] [log] [blame]
Mirko Bonadei64f813e2018-07-18 15:37:01 +02001/*
2 * Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 *
10 * Usage: this class will register multiple RtcpBitrateObserver's one at each
11 * RTCP module. It will aggregate the results and run one bandwidth estimation
12 * and push the result to the encoders via BitrateObserver(s).
13 */
14
15#include "modules/bitrate_controller/include/bitrate_controller.h"
16
17namespace webrtc {
18
19size_t BitrateObserver::pacer_queue_size_in_bytes() {
20 return 0;
21}
22
23} // namespace webrtc