mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 05:40:42 +01:00

Bug: webrtc:5876 Change-Id: Iae14e5f1679067a5a5e0584ca830aee0870c8807 Reviewed-on: https://webrtc-review.googlesource.com/c/111463 Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25715}
25 lines
685 B
C++
25 lines
685 B
C++
/*
|
|
* Copyright (c) 2017 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.
|
|
*/
|
|
|
|
#ifndef MEDIA_ENGINE_ADM_HELPERS_H_
|
|
#define MEDIA_ENGINE_ADM_HELPERS_H_
|
|
|
|
namespace webrtc {
|
|
|
|
class AudioDeviceModule;
|
|
|
|
namespace adm_helpers {
|
|
|
|
void Init(AudioDeviceModule* adm);
|
|
|
|
} // namespace adm_helpers
|
|
} // namespace webrtc
|
|
|
|
#endif // MEDIA_ENGINE_ADM_HELPERS_H_
|