diff options
author | Max Kellermann <max@duempel.org> | 2009-01-07 18:53:36 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-07 18:53:36 +0100 |
commit | b40428b3fd284f172da0ae630559176727026599 (patch) | |
tree | fd5399b38e5bf251e5459e01483bbc3cda01f832 /src/output/alsa_plugin.c | |
parent | 8b19c74e8eb0036c697010d56ed1ee9b92facb72 (diff) | |
download | mpd-b40428b3fd284f172da0ae630559176727026599.tar.gz mpd-b40428b3fd284f172da0ae630559176727026599.tar.xz mpd-b40428b3fd284f172da0ae630559176727026599.zip |
pcm_utils: moved conversion code to pcm_convert.c
All what's left in pcm_utils.h is the pcm_range() utility function,
which is only used internally by pcm_volume and pcm_mix.
Diffstat (limited to 'src/output/alsa_plugin.c')
-rw-r--r-- | src/output/alsa_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/alsa_plugin.c b/src/output/alsa_plugin.c index 0d97438eb..fc5c56c21 100644 --- a/src/output/alsa_plugin.c +++ b/src/output/alsa_plugin.c @@ -235,7 +235,7 @@ configure_hw: err = snd_pcm_hw_params_set_format(ad->pcmHandle, hwparams, bitformat); if (err == -EINVAL && audioFormat->bits != 16) { - /* fall back to 16 bit, let pcm_utils.c do the conversion */ + /* fall back to 16 bit, let pcm_convert.c do the conversion */ err = snd_pcm_hw_params_set_format(ad->pcmHandle, hwparams, SND_PCM_FORMAT_S16); if (err == 0) { |