Commit 74530bc8 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

PulseAudio: add 3.0 support (should fix LP#743478)

parent 8296d2e5
...@@ -161,6 +161,11 @@ static int Open ( vlc_object_t *p_this ) ...@@ -161,6 +161,11 @@ static int Open ( vlc_object_t *p_this )
| AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT; | AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT;
break; break;
case 3:
p_aout->output.output.i_physical_channels
= AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER;
break;
case 2: case 2:
p_aout->output.output.i_physical_channels p_aout->output.output.i_physical_channels
= AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT; = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment