MCPcopy Create free account
hub / github.com/axmolengine/axmol / DevFmtChannelsString

Function DevFmtChannelsString

3rdparty/openal/core/devformat.cpp:52–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50 return "(unknown type)";
51}
52const char *DevFmtChannelsString(DevFmtChannels chans) noexcept
53{
54 switch(chans)
55 {
56 case DevFmtMono: return "Mono";
57 case DevFmtStereo: return "Stereo";
58 case DevFmtQuad: return "Quadraphonic";
59 case DevFmtX51: return "5.1 Surround";
60 case DevFmtX61: return "6.1 Surround";
61 case DevFmtX71: return "7.1 Surround";
62 case DevFmtX714: return "7.1.4 Surround";
63 case DevFmtX3D71: return "3D7.1 Surround";
64 case DevFmtAmbi3D: return "Ambisonic 3D";
65 }
66 return "(unknown channels)";
67}

Callers 15

aluInitRendererFunction · 0.85
UpdateDeviceParamsFunction · 0.85
alcDeviceResumeSOFTFunction · 0.85
openMethod · 0.85
resetMethod · 0.85
openMethod · 0.85
resetProxyMethod · 0.85
WasapiCaptureClass · 0.85
openMethod · 0.85
DSoundCaptureClass · 0.85
parsePositionsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected