diff options
author | Chris Robinson <[email protected]> | 2014-11-23 20:41:29 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-23 20:41:29 -0800 |
commit | 2c533fdc36ddb2638211bc0a360b5a78d3875de4 (patch) | |
tree | bfcfacd7e1405b574ac4d002928442266f48ae9d | |
parent | 033cf3dca952bb8348f2726a8a6d48a9bd62b8a0 (diff) |
Set headphones when pulse reports using the headphones port
-rw-r--r-- | Alc/backends/pulseaudio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/backends/pulseaudio.c b/Alc/backends/pulseaudio.c index 0bb38cd6..861bb01e 100644 --- a/Alc/backends/pulseaudio.c +++ b/Alc/backends/pulseaudio.c @@ -706,6 +706,9 @@ static void ALCpulsePlayback_sinkInfoCallback(pa_context *UNUSED(context), const } } + device->IsHeadphones = (device->FmtChans == DevFmtStereo && info->active_port && + strcmp(info->active_port->name, "analog-output-headphones") == 0); + if(!chanmaps[i].str) { char chanmap_str[PA_CHANNEL_MAP_SNPRINT_MAX] = ""; |