提交 b5025c50 编写于 作者: T Takashi Iwai

ALSA: hda - Allow FLOAT PCM format

So far, the FLOAT PCM format is used only exclusivley set.  But
this can be a combination with other formats.

This patch changes the parser to allow the FLOAT format in addition
to other PCM formats.
Signed-off-by: NTakashi Iwai <tiwai@suse.de>
上级 0d971c9f
...@@ -2690,11 +2690,11 @@ static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, ...@@ -2690,11 +2690,11 @@ static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
bps = 20; bps = 20;
} }
} }
else if (streams == AC_SUPFMT_FLOAT32) { if (streams & AC_SUPFMT_FLOAT32) {
/* should be exclusive */
formats |= SNDRV_PCM_FMTBIT_FLOAT_LE; formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
bps = 32; bps = 32;
} else if (streams == AC_SUPFMT_AC3) { }
if (streams == AC_SUPFMT_AC3) {
/* should be exclusive */ /* should be exclusive */
/* temporary hack: we have still no proper support /* temporary hack: we have still no proper support
* for the direct AC3 stream... * for the direct AC3 stream...
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册