summaryrefslogtreecommitdiff
path: root/src/lib/alsa
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2020-02-01 13:49:19 +0100
committerMax Kellermann <max@musicpd.org>2020-02-01 14:02:43 +0100
commit4f22f4d357c99ba4163a496882f813138db3c39b (patch)
treedd1d76658ca8466f1cbb220d49bd8e728aeb9df1 /src/lib/alsa
parent4c52001a350ca573fd19f910f2f808d5f31cf95b (diff)
*: use nullptr instead of NULL
Diffstat (limited to 'src/lib/alsa')
-rw-r--r--src/lib/alsa/HwSetup.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/alsa/HwSetup.cxx b/src/lib/alsa/HwSetup.cxx
index a6a41dc11..792556545 100644
--- a/src/lib/alsa/HwSetup.cxx
+++ b/src/lib/alsa/HwSetup.cxx
@@ -233,18 +233,18 @@ SetupHw(snd_pcm_t *pcm,
snd_pcm_hw_params_get_buffer_size_min(hwparams, &buffer_size_min);
snd_pcm_hw_params_get_buffer_size_max(hwparams, &buffer_size_max);
unsigned buffer_time_min, buffer_time_max;
- snd_pcm_hw_params_get_buffer_time_min(hwparams, &buffer_time_min, 0);
- snd_pcm_hw_params_get_buffer_time_max(hwparams, &buffer_time_max, 0);
+ snd_pcm_hw_params_get_buffer_time_min(hwparams, &buffer_time_min, nullptr);
+ snd_pcm_hw_params_get_buffer_time_max(hwparams, &buffer_time_max, nullptr);
FormatDebug(alsa_output_domain, "buffer: size=%u..%u time=%u..%u",
(unsigned)buffer_size_min, (unsigned)buffer_size_max,
buffer_time_min, buffer_time_max);
snd_pcm_uframes_t period_size_min, period_size_max;
- snd_pcm_hw_params_get_period_size_min(hwparams, &period_size_min, 0);
- snd_pcm_hw_params_get_period_size_max(hwparams, &period_size_max, 0);
+ snd_pcm_hw_params_get_period_size_min(hwparams, &period_size_min, nullptr);
+ snd_pcm_hw_params_get_period_size_max(hwparams, &period_size_max, nullptr);
unsigned period_time_min, period_time_max;
- snd_pcm_hw_params_get_period_time_min(hwparams, &period_time_min, 0);
- snd_pcm_hw_params_get_period_time_max(hwparams, &period_time_max, 0);
+ snd_pcm_hw_params_get_period_time_min(hwparams, &period_time_min, nullptr);
+ snd_pcm_hw_params_get_period_time_max(hwparams, &period_time_max, nullptr);
FormatDebug(alsa_output_domain, "period: size=%u..%u time=%u..%u",
(unsigned)period_size_min, (unsigned)period_size_max,
period_time_min, period_time_max);