Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
resampler_profile.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 Roc Streaming authors
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 //! @file roc_audio/resampler_profile.h
10 //! @brief Resampler profile.
11 
12 #ifndef ROC_AUDIO_RESAMPLER_PROFILE_H_
13 #define ROC_AUDIO_RESAMPLER_PROFILE_H_
14 
15 namespace roc {
16 namespace audio {
17 
18 //! Resampler parameters presets.
20  //! Low quality, fast speed.
22 
23  //! Medium quality, medium speed.
25 
26  //! Hight quality, low speed.
28 };
29 
30 } // namespace audio
31 } // namespace roc
32 
33 #endif // ROC_AUDIO_RESAMPLER_PROFILE_H_
ResamplerProfile
Resampler parameters presets.
@ ResamplerProfile_Low
Low quality, fast speed.
@ ResamplerProfile_High
Hight quality, low speed.
@ ResamplerProfile_Medium
Medium quality, medium speed.
Root namespace.