diff options
author | Chris Robinson <[email protected]> | 2017-04-10 09:28:25 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2017-04-10 09:28:25 -0700 |
commit | 8a7bc9ab4f6346fcff4584368d94e7098772ce40 (patch) | |
tree | 4c8ccbdc4b5d6b8034bffdfd811216a914ee58f0 /Alc | |
parent | 6cc69c8d94744d66e68ffffb9b71f6714d86e710 (diff) |
Trace the capture device format
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -4124,6 +4124,10 @@ ALC_API ALCdevice* ALC_APIENTRY alcCaptureOpenDevice(const ALCchar *deviceName, device->UpdateSize = samples; device->NumUpdates = 1; + TRACE("Capture format: %s, %s, %uhz, %u update size x%d\n", + DevFmtChannelsString(device->FmtChans), DevFmtTypeString(device->FmtType), + device->Frequency, device->UpdateSize, device->NumUpdates + ); if((err=V(device->Backend,open)(deviceName)) != ALC_NO_ERROR) { al_free(device); |