swift
constants.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (C) 2019 swift Project Community / Contributors
2 // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
3 
5 
6 #ifndef SWIFT_CORE_AFV_CONSTANTS_H
7 #define SWIFT_CORE_AFV_CONSTANTS_H
8 
9 namespace swift::core::afv
10 {
12  constexpr int c_channelCount = 1;
13 
15  constexpr int c_sampleRate = 48000;
16 } // namespace swift::core::afv
17 
18 #endif // SWIFT_CORE_AFV_CONSTANTS_H
constexpr int c_sampleRate
Sample rate [Hz].
Definition: constants.h:15
constexpr int c_channelCount
Audio channel count (mono)
Definition: constants.h:12