blob: 611afc2586a57ff2cdfc3054757cb1d802a66a19 [file] [log] [blame]
Ivo Creusen3ce44a32019-10-31 13:38:111/*
2 * Copyright (c) 2019 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
11#ifndef API_NETEQ_DEFAULT_NETEQ_CONTROLLER_FACTORY_H_
12#define API_NETEQ_DEFAULT_NETEQ_CONTROLLER_FACTORY_H_
13
14#include <memory>
15
16#include "api/neteq/neteq_controller_factory.h"
17
18namespace webrtc {
19
20// This NetEqControllerFactory will use WebRTC's built-in controller logic.
21class DefaultNetEqControllerFactory : public NetEqControllerFactory {
22 public:
23 DefaultNetEqControllerFactory();
24 ~DefaultNetEqControllerFactory() override;
25 DefaultNetEqControllerFactory(const DefaultNetEqControllerFactory&) = delete;
26 DefaultNetEqControllerFactory& operator=(
27 const DefaultNetEqControllerFactory&) = delete;
28
29 std::unique_ptr<NetEqController> CreateNetEqController(
30 const NetEqController::Config& config) const override;
31};
32
33} // namespace webrtc
34#endif // API_NETEQ_DEFAULT_NETEQ_CONTROLLER_FACTORY_H_