Add a boolean to specify if a device is headphones

This commit is contained in:
Chris Robinson
2014-11-23 18:23:24 -08:00
parent 837b38b166
commit 033cf3dca9
2 changed files with 5 additions and 1 deletions
+4 -1
View File
@@ -1964,7 +1964,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
}
else
{
bool headphones = false;
bool headphones = device->IsHeadphones;
const char *mode;
int bs2blevel;
int usehrtf;
@@ -3279,6 +3279,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName)
device->FmtChans = DevFmtChannelsDefault;
device->FmtType = DevFmtTypeDefault;
device->Frequency = DEFAULT_OUTPUT_RATE;
device->IsHeadphones = AL_FALSE;
device->NumUpdates = 4;
device->UpdateSize = 1024;
@@ -3553,6 +3554,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName,
alcSetError(NULL, ALC_INVALID_ENUM);
return NULL;
}
device->IsHeadphones = AL_FALSE;
device->UpdateSize = samples;
device->NumUpdates = 1;
@@ -3735,6 +3737,7 @@ ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(const ALCchar *deviceN
device->Frequency = DEFAULT_OUTPUT_RATE;
device->FmtChans = DevFmtChannelsDefault;
device->FmtType = DevFmtTypeDefault;
device->IsHeadphones = AL_FALSE;
ConfigValueUInt(NULL, "sources", &device->MaxNoOfSources);
if(device->MaxNoOfSources == 0) device->MaxNoOfSources = 256;
+1
View File
@@ -640,6 +640,7 @@ struct ALCdevice_struct
ALuint NumUpdates;
enum DevFmtChannels FmtChans;
enum DevFmtType FmtType;
ALboolean IsHeadphones;
al_string DeviceName;