diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-05-18 13:43:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 13:43:24 +0200 |
commit | 37efaad8fbfc7b263d1f077a3f12cbe46ae5a393 (patch) | |
tree | b6fbb317176f8a8dc044f7be916f7367edae998d /drivers/alsa/audio_driver_alsa.cpp | |
parent | b5d0f2a8847f3ece4160e9d58ba4ffe4eddfd544 (diff) | |
parent | 90c7102b51e720d409e1e5597c7942b62e6a6e72 (diff) |
Merge pull request #38816 from Faless/js/fix_audio_driver_4.0
AudioDriverJavaScript buffer size calculation.
Diffstat (limited to 'drivers/alsa/audio_driver_alsa.cpp')
-rw-r--r-- | drivers/alsa/audio_driver_alsa.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/alsa/audio_driver_alsa.cpp b/drivers/alsa/audio_driver_alsa.cpp index 414b0c28e0..90c3d3af83 100644 --- a/drivers/alsa/audio_driver_alsa.cpp +++ b/drivers/alsa/audio_driver_alsa.cpp @@ -38,7 +38,7 @@ #include <errno.h> Error AudioDriverALSA::init_device() { - mix_rate = GLOBAL_DEF("audio/mix_rate", DEFAULT_MIX_RATE); + mix_rate = GLOBAL_GET("audio/mix_rate"); speaker_mode = SPEAKER_MODE_STEREO; channels = 2; @@ -104,7 +104,7 @@ Error AudioDriverALSA::init_device() { // In ALSA the period size seems to be the one that will determine the actual latency // Ref: https://www.alsa-project.org/main/index.php/FramesPeriods unsigned int periods = 2; - int latency = GLOBAL_DEF("audio/output_latency", DEFAULT_OUTPUT_LATENCY); + int latency = GLOBAL_GET("audio/output_latency"); buffer_frames = closest_power_of_2(latency * mix_rate / 1000); buffer_size = buffer_frames * periods; period_size = buffer_frames; |