mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-22 08:56:59 -05:00
alsa: only list IEC958 codecs when iec958 or hdmi device.
This commit is contained in:
parent
437275460c
commit
2e6f80f808
1 changed files with 2 additions and 0 deletions
|
|
@ -295,6 +295,8 @@ static inline uint32_t spa_alsa_get_iec958_codecs(struct state *state, uint32_t
|
||||||
{
|
{
|
||||||
uint64_t mask = state->iec958_codecs;
|
uint64_t mask = state->iec958_codecs;
|
||||||
uint32_t i = 0, j = 0;
|
uint32_t i = 0, j = 0;
|
||||||
|
if (!(state->is_iec958 || state->is_hdmi))
|
||||||
|
return 0;
|
||||||
while (mask && i < max_codecs) {
|
while (mask && i < max_codecs) {
|
||||||
if (mask & 1)
|
if (mask & 1)
|
||||||
codecs[i++] = j;
|
codecs[i++] = j;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue