-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WASAPI gets the channel count wrong, fails to initialize #3
Comments
Is this the first time you try this at all, or did it used to work with FlexASIO 0.1? Is your DAW a 32-bit or a 64-bit application? The relevant error is Note that, as explained in the README, your default physical input and output audio devices need to be configured with the same sample rate in the Windows settings (control panel). This is because of combined limitations of ASIO, WASAPI, and FlexASIO. You should double-check that, because that's a fairly common failure mode. That said, I'm not entirely sure I would trust the messages in your log because it looks like you are using an application (jackd) that is already using PortAudio itself ( One way you can get debug messages from FlexASIO itself is by running your DAW application (or jackd) under a debugger. Any debugger will do as long as it has an output text window that shows messages from |
I have the same problem @omarcostahamido @dechamps, with Ableton Live and Sound Forge too. I had the same problem with version 0.1. Maybe could you add:
Maybe PortAudio is choosing a wrong device as output. In my memories from a few years ago about PortAudio, it has a huuuuuuuuge list of available devices and many of them are unusable (dummy devices, etc.). |
For what it's worth, I did double-check the sample rate (and bit rate!) of my default output and input devices. Heck, I even tried all combinations with 44.1K, 48k, 16bit, 24bit, "Allow applications to take exclusive control of this device" on/off, "Give exclusive mode applications priority" on/off, and even unninstalled jack, jacktrip and ASIO4ALL... nothing worked. |
@omarcostahamido Idem I desinstalled all other ASIO4ALL, jack, etc. but the problem it's still there. I think a |
I only tested FlexASIO with Room EQ Wizard as the ASIO host application, because that's the only software I use. It's quite possible that other applications like Ableton Live and Sound Forge are making ASIO calls in ways that FlexASIO doesn't like for some reason. One thing I could try is to download the trial versions of these applications so that I can debug things. I agree that having at least some kind of configuration (config file or registry) would help, even if it's not a GUI. I can look into this if I find the time. In the mean time, I did a bit more searching and it turns out that there is a much faster and lighter solution than installing Visual Studio to get the FlexASIO debug logs: just use WinDbg, which is much smaller. You can even get a fancy new version directly from the Microsoft Store. Attach WinDbg to the process of the ASIO host application ("File", "Attach to process"), and then try to use FlexASIO. You should see in the main debug text output panel some messages from FlexASIO. If you don't see anything, it either means you're not attaching to the right process, or the application can't even get to the FlexASIO DLL entry point (in which case Process Monitor can be used to pinpoint the cause). (I realize that I should probably change the debug log output to go to a text file, that would make things much easier.) As for using the wrong devices… the device selection logic in FlexASIO is quite trivial: it will use the Windows devices that you selected as "default device" in the Windows sound control panel, period. It doesn't matter that PortAudio has a huge list of devices to choose from - FlexASIO will always choose the default ones. |
@dechamps Thank you for the instructions on the simplified debugging method. Here we go, I used both Ableton Live and Reaper: fingers crossed :) edit: |
I'll need some time to dig into this, but looking at these logs the first thing that jumps at me is that, for some reason, FlexASIO seems to think that your input and output devices both have 7.1 channels:
It would of course be very surprising if your laptop microphone input was a 7.1 input, so there might be a bug in there somewhere. I think what might be happening is that FlexASIO is attempting to access your devices with an 8-channel configuration, which is unlikely to work for obvious reasons. Do you have a separate audio device with 8 channels installed? Maybe it's confused between multiple devices for some reason. In any case, it clearly looks like a bug, either in FlexASIO or PortAudio. |
I had vb-audio cable installed.
Also, I should say that one of the main reasons why I was interested in FlexASIO in the first place was because it seemed like the only solution to overcome the ASIO4ALL limitation of not being able to access the 8 hdmi audio outputs of updated nvidia drivers. |
To be clear, FlexASIO does support devices with high channel counts - I'm using it with a 5.1 output myself. It definitely makes sense to use it with a 7.1 HDMI output, and it should work with those, that's what I designed it for. I suspect there's some kind of bug lurking around somewhere related to the channel counts. That said, I've never seen FlexASIO get the channel counts wrong on my system, so I'm not sure how I could reproduce it. I'll double-check the code and see if I can come up with possible scenarios where the channel count could come out wrong. (A possible workaround would be to switch PortAudio to the DirectSound driver instead of the WASAPI driver, but that requires a rebuild… I can feel the need for some kind of configuration mechanism.) |
No please don't do this, because WASAPI is said to have a much better latency than the usual way with Directsound, etc. To be able to use WASAPI is the reason why I'm trying to use Flex :)
would be perfect :) I also tried WinDbg. Here is the error with SoundForge:
|
In any case this would always be an option. That said, please keep in mind that FlexASIO is not designed with latency in mind. Depending on how buffers are negotiated between ASIO and PortAudio, you might end up with more buffering than would be technically necessary, and latency will suffer as a result. However I do agree it's better than nothing. In any case, latency is an issue we can revisit later, we need to get it to work first :) @josephernest: it looks like your issue is different - it seems to return the proper channel counts, but then it's unable to open the device through PortAudio for some reason. I presume you've double-checked that both your "Microphone interne (Conexant 20672 SmartAudio HD)" and "Speakers (Conexant 20672 SmartAudio HD)" devices are configured with a 48 kHz sample rate in the Windows device settings? The next step for troubleshooting this would be to obtain debug logs from PortAudio itself. Sadly, these are even harder to get to than FlexASIO debug logs - filed #4 to fix that. I don't know if it's possible to get them when running applications like Ableton Live or SoundForge. However, by happy coincidence, it turns out they were captured in @omarcostahamido's jackd logs, because that's a console application. So, coming back to @omarcostahamido's channel count issue, here's what PortAudio logged:
And then, of course:
Meanwhile, other devices are correctly reported as 2-channel. It's not clear why it's choking on these devices specifically. This doesn't even seem to be a FlexASIO bug, because, as far as I can tell from this log, jackd is failing while trying to use PortAudio directly, before it even tries to load FlexASIO. Looking into PortAudio code ( This would also mean that this issue would be quite specific to the physical audio driver used (here, Realtek). You might want to try other audio devices (make them the default devices in Windows to make FlexASIO use them) and see what happens. For example, it looks like your "VB-Audio Hi-Fi Cable" has a correct channel count. If my hypothesis is correct, I would need to fix PortAudio itself. In the mean time DirectSound will almost certainly work (it's a completely different code path in PortAudio), though I understand that's not an ideal solution. And even then, I would need to take care of #6 first for DirectSound to even be usable in the first place. |
Touché!
Now, using flexASIO with vb-audio-cable is not very useful. |
Glad to hear it. I think my next steps would be:
I really can't make any promises at to if and when I'll get to the bottom of this list (or even to the top). However, if I do find the time to work on this, this is the plan. |
Big up for all your work already @dechamps! I double-checked: yes the playback device was configured to 48khz: But still the same error... |
@josephernest: it's not just the playback device that needs to be set to 48 kHz, the input device "Microphone interne (Conexant 20672 SmartAudio HD)" needs to be set to 48 kHz as well. Why do you mean by "multi-client"? |
do you use IRC? we could discuss on freenode channel #FlexASIO
Now that I have also set input device to 48khz, it works, no more bug when
opening the device... Thanks for the idea @dechamps!
* But the playback does not work correctly with Ableton Live: strangely, MIDI
input doesn't work anymore. (If I switch back to ASIO4ALL or other devices,
MIDI devices work again).
* Also, the latency is reported in a wrong way:
https://imgur.com/a/xLsBuKX
1024 samples => 64.0 ms latency is wrong! It should be ~21ms
* Now the good news: even if MIDI input doesn't work anymore, I can still
trigger samples playback in Ableton by clicking on them with mouse... and... the latency seems to be excellent... Maybe thanks to WASAPI !
So please continue the development, it will have many applications for many
people !
About "multiclient" feature: when you use software #1 with ASIO4ALL (e.g. Ableton Live),
then if you open software #2 (e.g. Firefox with a Youtube page), it *cannot
have* access to sound playback because sound is blocked by software #1.
Thus ASIO4ALL is not multiclient.
Your solution with PortAudio/WASAPI seems to provide a multi-client solution which
would be amazing for musicians/producers/beatmakers!
Let's discuss about that by IRC, skype, or anything else, it will be easier
than Github issue messaging ;)
|
For what it's worth, you can skip 1, and rely instead on your friendly human debugger - me. |
Glad to hear it! It means the only bug that still needs fixing is @omarcostahamido's channel count bug then.
That's really weird, FlexASIO shouldn't have anything to do with MIDI at all. Maybe there's some kind of Windows audio stack limitation where WASAPI can't be used with MIDI simultaneously, but that would be very weird. (I don't know anything about MIDI at all, to be honest.)
It's the latency that PortAudio reports; FlexASIO just passes it along. I'd have to double check, but I suspect the number is correct. This is a consequence of what I wrote in the README: "The thing is, due to the way ASIO works (static buffer sizes), PortAudio sometimes has no choice but to add additional buffering (which adds latency) in order to meet the requirements of both FlexASIO and the system API it's using." The buffer size between your ASIO host application and FlexASIO is 1024 samples, but then PortAudio adds more buffers on top of that in order to keep WASAPI happy, hence the additional latency. This is a consequence of the naive way FlexASIO is written, as it doesn't try to optimize buffer sizes in any way. I suspect it is possible to improve on this, but that will require some code. Filed #8 about that.
Ah, yes, indeed, that's because FlexASIO uses WASAPI shared mode, not exclusive mode. "Shared" means that the audio is going through the normal Windows audio pipeline, including the Windows mixer, which is why you can play sound from multiple applications simultaneously. "Exclusive" means the application takes full control of the audio device and accesses the hardware directly, preventing other applications from using it. IIRC, ASIO4ALL uses WDM-KS, which is more or less equivalent to WASAPI Exclusive. The downside of shared mode is that the Windows audio pipeline that the audio goes through might add its own latency. For example, AFAIK the buffer size that the Windows audio engine uses internally is 20 ms, and there is no way to change it. In Exclusive mode one has full control over hardware buffers and can choose smaller sizes. This is why software like ASIO4ALL assumes that you want exclusive mode, because if you're using ASIO it probably means you care about latency. When FlexASIO is made configurable (#6), it should be possible to let you choose between WASAPI Shared and WASAPI Exclusive, so that you can make the best tradeoff between latency and convenience for your own use case.
I would prefer not to, because I want this discussion to be easily discoverable and searchable by others. |
I think it has to do with the latency problem (see below), Ableton detects
No, I tested by triggering samples with the mouse, and I can guarantee the Interesting case with SoundForge in this screencast video:
|
@josephernest that soundforge screencast is crazy. |
@dechamps |
@josephernest |
@omarcostahamido Maybe, but since the issue is also present with SoundForge (see screencast), this might be a more general problem, that Flex does not report playback position / or "number of samples written to output" / or latency compensation (there's such thing when you code plugins, I can imagine there's something equivalent in ASIO drivers?) Edit: maybe in https://github.com/dechamps/FlexASIO/blob/master/flexasio.cpp#L614 |
Yes, that might be the case. I suspect that the application I use with FlexASIO (Room EQ Wizard) doesn't use timing information at all, so if that code is wrong I would not have noticed. Thanks for the report, filed #9 to investigate. |
@omarcostahamido: FlexASIO 0.4, which I just released, allows you to choose which backend you want to use. If you don't configure anything, the new default backend, DirectSound, should already solve your problem because it uses different code from WASAPI Shared and should therefore report the correct channel counts. I understand that backends other than WASAPI Shared might not be optimal for you, and in any case I want WASAPI Shared to work, so I am keeping this issue open to investigate and fix the WASAPI Shared channel count bug that you found. I definitely think this bug can be fixed, because PortAudio allows me to access the underlying WASAPI interfaces, so I should be able to just call |
@dechamps just for the record, I am really enjoying seeing all the issues and documentation that you started, and I am very grateful for your work. Furthermore, I've been referring this as a must to windows users. |
While working on #22 I accidentally stumbled upon this bug myself: FlexASIO was attempting to open my stereo USB device with 6 output channels instead of 2. Upon closer examination, it looks like the problem is partly caused by FlexASIO using |
Strike my last, this was caused by a bug in my new code - it was still using the channel count for the default device, not the specified device. Disregard my last comment. |
Oh man, I got very excited for a moment. |
Status update: it looks like the workaround I was planning to implement is not as trivial as it sounds, because I just realized there is a chicken-and-egg problem - in order to get the information I need to call So it looks like this is not as easy to fix as I thought, but the good news is, FlexASIO 0.5 which I just released should provide you with a clean workaround. It introduces a new backend = "Windows WASAPI"
[input]
channels = 2 If this still doesn't work for you, please provide a log. In any case, I will keep this issue open because ideally I'd like to make that work out-of-the-box without having to work around broken channel count reporting by PortAudio. |
@omarcostahamido: I am now focused on fixing your channel count issue. Unfortunately, I am unable to reproduce this problem on my end - none of the three Windows machines I've tested show this bug. I suspect it is highly specific to your audio drivers. This means I'll need some more information from you so that I can send a clear bug report to PortAudio (as well as to try to fix it myself). Specifically, I need to make sure the bug can be reproduced with the latest PortAudio code. I have built a special variant of FlexASIO 1.0 that includes PortAudio DLLs built from the latest PortAudio master tree for testing purposes. Could you please do the following:
This will help demonstrate the issue on the PortAudio side. Thanks! It would also help to have more information about this specific audio input hardware. What brand/model is it? What is the hardware driver version (as shown in the Windows Device Manager)? What is your Windows version? |
@dechamps I'm on it. Give me a couple minutes. |
PortAudioDevices_x64.exe cmd:C:\Program Files\FlexASIO\x64>PortAudioDevices_x64.exe Device index: 1 Device index: 2 Device index: 3 Device index: 4 Device index: 5 Device index: 6 Device index: 7 Device index: 8 Device index: 9 Device index: 10 Device index: 11 Device index: 12 Device index: 13 Device index: 14 Device index: 15 Device index: 16 Device index: 17 Device index: 18 Device index: 19 Device index: 20 Device index: 21 Device index: 22 Device index: 23 Device index: 24 Device index: 25 Device index: 26 Device index: 27 Device index: 28
PortAudioDevices_x64.exe log:2018-11-18T10:41:26.2728186-08:00 21840 24844 Logfile opened
FlexASIOTest_x64.exe cmd:C:\Program Files\FlexASIO\x64>FlexASIOTest_x64.exe ASIOGetChannels() ASIOGetSampleRate() ASIOCanSampleRate(44100) ASIOGetBufferSize() ASIOOutputReady() ASIOGetChannelInfo(channel = 0 isInput = 1) ASIOCreateBuffers(isInput = 1 channelNum = 0 isInput = 1 channelNum = 1 isInput = 1 channelNum = 2 isInput = 1 channelNum = 3 isInput = 1 channelNum = 4 isInput = 1 channelNum = 5 isInput = 1 channelNum = 6 isInput = 1 channelNum = 7 , bufferSize = 960, bufferSwitch = 00007FF6915C2170 sampleRateDidChange = 00007FF6915C21E0 asioMessage = 00007FF6915C2250 bufferSwitchTimeInfo = 00007FF6915C22E0)
FlexASIOTest_x64.exe log:2018-11-18T10:50:12.4287147-08:00 14080 24076 Logfile opened [input] [output] 2018-11-18T10:50:12.4304648-08:00 14080 24076 PortAudio version: PortAudio V19.6.0-devel, revision 0cdb346fdca725cfc98da5cbe2d079096f91b624-vcpkg |
Thank you. I think you missed my question above:
One last thing: I would be curious to see the result (and log) of running backend = "Windows WASAPI"
[input]
device = "Microphone (Realtek High Definition Audio)"
wasapiExclusiveMode = true
[output]
device = "" |
MSI laptop
PortAudioDevices_x64.exe cmd:C:\Program Files\FlexASIO\x64>PortAudioDevices_x64.exe Device index: 0 Device name: Microsoft Sound Mapper - Input Default sample rate: 44100 Input: max channel count 2, default latency 0.09s (low) 0.18s (high) Output: max channel count 0, default latency 0.09s (low) 0.18s (high) Host API name: MME Host API type: 2 [MME]Device index: 1 Device index: 2 Device index: 3 Device index: 4 Device index: 5 Device index: 6 Device index: 7 Device index: 8 Device index: 9 Device index: 10 Device index: 11 Device index: 12 Device index: 13 Device index: 14 Device index: 15 Device index: 16 Device index: 17 Device index: 18 Device index: 19 Device index: 20 Device index: 21 Device index: 22 Device index: 23 Device index: 24 Device index: 25 Device index: 26 Device index: 27 Device index: 28
PortAudioDevices_x64.exe log:2018-11-19T01:18:19.6593992-08:00 22932 25052 Logfile opened 2018-11-19T01:18:19.6600602-08:00 22932 25052 Log time source: GetSystemTimePreciseAsFileTime 2018-11-19T01:18:19.6601102-08:00 22932 25052 FlexASIO Release x64 1.0 built on 2018-11-18T17:18:22.4545644+00:00 2018-11-19T01:18:19.6601489-08:00 22932 25052 Host process: C:\Program Files\FlexASIO\x64\PortAudioDevices_x64.exe 2018-11-19T01:18:19.6601809-08:00 22932 25052 PortAudio version: PortAudio V19.6.0-devel, revision 0cdb346fdca725cfc98da5cbe2d079096f91b624-vcpkg 2018-11-19T01:18:19.6602305-08:00 22932 25052 Enabling PortAudio debug output redirection 2018-11-19T01:18:19.6602769-08:00 22932 25052 [PortAudio] before paHostApiInitializers[0]. 2018-11-19T01:18:19.7010385-08:00 22932 25052 [PortAudio] after paHostApiInitializers[0]. 2018-11-19T01:18:19.7023918-08:00 22932 25052 [PortAudio] before paHostApiInitializers[1]. 2018-11-19T01:18:20.5215477-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5216261-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5216480-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.5264887-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5265254-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5265721-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.5301040-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5301335-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5301525-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.5357692-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5357988-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5358184-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.5639124-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5639525-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5639719-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.5872613-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.5873011-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.5873416-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.6120828-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.6121244-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.6121437-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.6319881-08:00 22932 25052 [PortAudio] PA - PlatformId = 0x2 2018-11-19T01:18:20.6320301-08:00 22932 25052 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T01:18:20.6320501-08:00 22932 25052 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T01:18:20.6322765-08:00 22932 25052 [PortAudio] after paHostApiInitializers[1]. 2018-11-19T01:18:20.6323046-08:00 22932 25052 [PortAudio] before paHostApiInitializers[2]. 2018-11-19T01:18:20.6654914-08:00 22932 25052 [PortAudio] WASAPI: device idx: 00 2018-11-19T01:18:20.6655304-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.6697963-08:00 22932 25052 [PortAudio] WASAPI:0| name[ASUS VS247 (NVIDIA High Definition Audio)] 2018-11-19T01:18:20.6715055-08:00 22932 25052 [PortAudio] WASAPI:0| form-factor[9] 2018-11-19T01:18:20.6715376-08:00 22932 25052 [PortAudio] WASAPI: getting Windows version with RtlGetVersion() 2018-11-19T01:18:20.6715573-08:00 22932 25052 [PortAudio] WASAPI: Windows version = 5 2018-11-19T01:18:20.6715752-08:00 22932 25052 [PortAudio] WASAPI: IAudioClient version = 3 2018-11-19T01:18:20.6751603-08:00 22932 25052 [PortAudio] WASAPI:0| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.6752252-08:00 22932 25052 [PortAudio] WASAPI: device idx: 01 2018-11-19T01:18:20.6752478-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.6792326-08:00 22932 25052 [PortAudio] WASAPI:1| name[Speakers (Realtek High Definition Audio)] 2018-11-19T01:18:20.6807715-08:00 22932 25052 [PortAudio] WASAPI:1| form-factor[1] 2018-11-19T01:18:20.6837155-08:00 22932 25052 [PortAudio] WASAPI:1| def.SR[48000] max.CH[8] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.6837673-08:00 22932 25052 [PortAudio] WASAPI: device idx: 02 2018-11-19T01:18:20.6838023-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.6867915-08:00 22932 25052 [PortAudio] WASAPI:2| name[Hi-Fi Cable Input (VB-Audio Hi-Fi Cable)] 2018-11-19T01:18:20.6879184-08:00 22932 25052 [PortAudio] WASAPI:2| form-factor[1] 2018-11-19T01:18:20.6902337-08:00 22932 25052 [PortAudio] WASAPI:2| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.6902865-08:00 22932 25052 [PortAudio] WASAPI: device idx: 03 2018-11-19T01:18:20.6903201-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.6931285-08:00 22932 25052 [PortAudio] WASAPI:3| name[Hi-Fi Cable Output (VB-Audio Hi-Fi Cable)] 2018-11-19T01:18:20.6942133-08:00 22932 25052 [PortAudio] WASAPI:3| form-factor[2] 2018-11-19T01:18:20.6962370-08:00 22932 25052 [PortAudio] WASAPI:3| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.6962880-08:00 22932 25052 [PortAudio] WASAPI: device idx: 04 2018-11-19T01:18:20.6963212-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.7001441-08:00 22932 25052 [PortAudio] WASAPI:4| name[Microphone (Realtek High Definition Audio)] 2018-11-19T01:18:20.7016927-08:00 22932 25052 [PortAudio] WASAPI:4| form-factor[4] 2018-11-19T01:18:20.7051371-08:00 22932 25052 [PortAudio] WASAPI:4| def.SR[48000] max.CH[8] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.7051816-08:00 22932 25052 [PortAudio] WASAPI: device idx: 05 2018-11-19T01:18:20.7052152-08:00 22932 25052 [PortAudio] WASAPI: --------------- 2018-11-19T01:18:20.7091989-08:00 22932 25052 [PortAudio] WASAPI:5| name[Stereo Mix (Realtek High Definition Audio)] 2018-11-19T01:18:20.7107309-08:00 22932 25052 [PortAudio] WASAPI:5| form-factor[10] 2018-11-19T01:18:20.7136212-08:00 22932 25052 [PortAudio] WASAPI:5| def.SR[48000] max.CH[8] latency{hi[0.010000] lo[0.003000]} 2018-11-19T01:18:20.7136730-08:00 22932 25052 [PortAudio] WASAPI: device list created ok 2018-11-19T01:18:20.7137117-08:00 22932 25052 [PortAudio] WASAPI: initialized ok 2018-11-19T01:18:20.7137310-08:00 22932 25052 [PortAudio] after paHostApiInitializers[2]. 2018-11-19T01:18:20.7137485-08:00 22932 25052 [PortAudio] before paHostApiInitializers[3]. 2018-11-19T01:18:20.7156477-08:00 22932 25052 [PortAudio] Setup called 2018-11-19T01:18:20.7156772-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7157363-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7157881-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7158319-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7159121-08:00 22932 25052 [PortAudio] Device 1 has capture alias 2018-11-19T01:18:20.7159365-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7160456-08:00 22932 25052 [PortAudio] noError = 1 2018-11-19T01:18:20.7160667-08:00 22932 25052 [PortAudio] Device 2 has render alias 2018-11-19T01:18:20.7161087-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7161510-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7162264-08:00 22932 25052 [PortAudio] Device 3 has capture alias 2018-11-19T01:18:20.7162501-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7163289-08:00 22932 25052 [PortAudio] noError = 1 2018-11-19T01:18:20.7163501-08:00 22932 25052 [PortAudio] Device 4 has render alias 2018-11-19T01:18:20.7163920-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7164398-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7164835-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7165251-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7165689-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7166104-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7166907-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7167403-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7167873-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7168289-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7168723-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7169474-08:00 22932 25052 [PortAudio] noError = 1 2018-11-19T01:18:20.7169685-08:00 22932 25052 [PortAudio] Device 10 has render alias 2018-11-19T01:18:20.7170948-08:00 22932 25052 [PortAudio] Device 10 has capture alias 2018-11-19T01:18:20.7171557-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7173603-08:00 22932 25052 [PortAudio] noError = 1 2018-11-19T01:18:20.7174157-08:00 22932 25052 [PortAudio] Device 11 has render alias 2018-11-19T01:18:20.7175962-08:00 22932 25052 [PortAudio] Device 11 has capture alias 2018-11-19T01:18:20.7176750-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7177946-08:00 22932 25052 [PortAudio] noError = 0 2018-11-19T01:18:20.7178901-08:00 22932 25052 [PortAudio] Enum called 2018-11-19T01:18:20.7179299-08:00 22932 25052 [PortAudio] Interfaces found: 6 2018-11-19T01:18:20.7183157-08:00 22932 25052 [PortAudio] Device 1 has capture alias 2018-11-19T01:18:20.7185378-08:00 22932 25052 [PortAudio] Device 1 has realtime alias 2018-11-19T01:18:20.7186275-08:00 22932 25052 [PortAudio] Interface 1, Name: R 2018-11-19T01:18:20.7186891-08:00 22932 25052 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio Mic input' 2018-11-19T01:18:20.7187409-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7188962-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7189323-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7189513-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T01:18:20.7189870-08:00 22932 25052 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7190282-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7190811-08:00 22932 25052 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T01:18:20.7190994-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7191165-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7191336-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7191504-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7191675-08:00 22932 25052 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T01:18:20.7191843-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7192080-08:00 22932 25052 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T01:18:20.7192259-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7192434-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7192748-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E4100005C8 2018-11-19T01:18:20.7192934-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=0, muxPosition=-1 2018-11-19T01:18:20.7193244-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 2 connections... (pTo = 000001E4100005C8) 2018-11-19T01:18:20.7193415-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E4100005B8 2018-11-19T01:18:20.7193586-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7193809-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7194042-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtMicInTopo' 2018-11-19T01:18:20.7194232-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7194436-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7194859-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=4, nodes=3 2018-11-19T01:18:20.7195060-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7195235-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=2,ToPin=1 2018-11-19T01:18:20.7195410-08:00 22932 25052 [PortAudio] Connection: 2 - FromNode=2,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T01:18:20.7195581-08:00 22932 25052 [PortAudio] Connection: 3 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T01:18:20.7195767-08:00 22932 25052 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7195946-08:00 22932 25052 [PortAudio] Node: 1 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7196128-08:00 22932 25052 [PortAudio] Node: 2 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7196405-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7196657-08:00 22932 25052 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T01:18:20.7196850-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 4 connections... 2018-11-19T01:18:20.7197022-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E40FFF80A8 2018-11-19T01:18:20.7197197-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T01:18:20.7197372-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 000001E40FFF80A8) 2018-11-19T01:18:20.7197543-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E40FFF8098 2018-11-19T01:18:20.7197714-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T01:18:20.7197890-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 000001E40FFF8098) 2018-11-19T01:18:20.7198057-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E40FFF8088 2018-11-19T01:18:20.7198229-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T01:18:20.7198400-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 000001E40FFF8088) 2018-11-19T01:18:20.7198571-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E40FFF8078 2018-11-19T01:18:20.7198739-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7199180-08:00 22932 25052 [PortAudio] PinNew: Input friendly name 'M' 2018-11-19T01:18:20.7199388-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7199596-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7199771-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7200136-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7200471-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7200821-08:00 22932 25052 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T01:18:20.7201627-08:00 22932 25052 [PortAudio] Device 2 has render alias 2018-11-19T01:18:20.7202619-08:00 22932 25052 [PortAudio] Device 2 has realtime alias 2018-11-19T01:18:20.7203093-08:00 22932 25052 [PortAudio] Interface 2, Name: R 2018-11-19T01:18:20.7203330-08:00 22932 25052 [PortAudio] FilterNew: Creating filter 'Realtek HDA SPDIF Out' 2018-11-19T01:18:20.7203513-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7203914-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7204114-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7204293-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7204479-08:00 22932 25052 [PortAudio] Node: 0 - {DFF21FE5-F70F-11D0-B917-00A0C9223196} 2018-11-19T01:18:20.7204986-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7205402-08:00 22932 25052 [PortAudio] PinNew: Checking 6 no of dataranges... 2018-11-19T01:18:20.7205588-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7205759-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7205927-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7206091-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7206259-08:00 22932 25052 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T01:18:20.7206426-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7206591-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7206758-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7206926-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7207094-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7207258-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7207426-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7207590-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7207757-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7207925-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7208089-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7208257-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7208425-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7208593-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7208757-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7208928-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7209158-08:00 22932 25052 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T01:18:20.7209333-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7209508-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7209679-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E410000378 2018-11-19T01:18:20.7209862-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T01:18:20.7210435-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 000001E410000378) 2018-11-19T01:18:20.7210748-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E410000388 2018-11-19T01:18:20.7211084-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7211284-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7211510-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtSpdifTopo' 2018-11-19T01:18:20.7211704-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7211875-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7212251-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7212447-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7212626-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7212812-08:00 22932 25052 [PortAudio] Node: 0 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7213067-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7213337-08:00 22932 25052 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T01:18:20.7213542-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7213717-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E410000618 2018-11-19T01:18:20.7213888-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T01:18:20.7214063-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 000001E410000618) 2018-11-19T01:18:20.7214234-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E410000628 2018-11-19T01:18:20.7214402-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7214654-08:00 22932 25052 [PortAudio] GetNameFromCategory: USB GUID 0605 -> 'SPDIF' 2018-11-19T01:18:20.7214847-08:00 22932 25052 [PortAudio] PinNew: Pin name 'S' 2018-11-19T01:18:20.7215018-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7215215-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7215390-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7215598-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7215773-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7215988-08:00 22932 25052 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T01:18:20.7217006-08:00 22932 25052 [PortAudio] Device 3 has capture alias 2018-11-19T01:18:20.7217805-08:00 22932 25052 [PortAudio] Device 3 has realtime alias 2018-11-19T01:18:20.7218290-08:00 22932 25052 [PortAudio] Interface 3, Name: R 2018-11-19T01:18:20.7218527-08:00 22932 25052 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio Stereo input' 2018-11-19T01:18:20.7218709-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7219106-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7219307-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7219486-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T01:18:20.7219672-08:00 22932 25052 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7220113-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7220623-08:00 22932 25052 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T01:18:20.7220806-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7220973-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7221141-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7221309-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7221480-08:00 22932 25052 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T01:18:20.7221648-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7221878-08:00 22932 25052 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T01:18:20.7222053-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7222228-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7222399-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E410000448 2018-11-19T01:18:20.7222574-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=0, muxPosition=-1 2018-11-19T01:18:20.7222746-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 2 connections... (pTo = 000001E410000448) 2018-11-19T01:18:20.7222917-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E410000438 2018-11-19T01:18:20.7223088-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7223289-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7223537-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtStereoMixTopo' 2018-11-19T01:18:20.7223763-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7223945-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7224314-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=3, nodes=2 2018-11-19T01:18:20.7224507-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=1,ToPin=1 2018-11-19T01:18:20.7224682-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=1,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7224857-08:00 22932 25052 [PortAudio] Connection: 2 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T01:18:20.7225036-08:00 22932 25052 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7225218-08:00 22932 25052 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7225473-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7225729-08:00 22932 25052 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T01:18:20.7225915-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 3 connections... 2018-11-19T01:18:20.7226090-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E410031F68 2018-11-19T01:18:20.7226261-08:00 22932 25052 [PortAudio] GetConnectedPin: count=2, forward=0, muxPosition=0 2018-11-19T01:18:20.7226436-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 3 connections... (pTo = 000001E410031F68) 2018-11-19T01:18:20.7226604-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E410031F58 2018-11-19T01:18:20.7226779-08:00 22932 25052 [PortAudio] GetConnectedPin: count=2, forward=0, muxPosition=0 2018-11-19T01:18:20.7226950-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 3 connections... (pTo = 000001E410031F58) 2018-11-19T01:18:20.7227118-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E410031F48 2018-11-19T01:18:20.7227286-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7227698-08:00 22932 25052 [PortAudio] PinNew: Input friendly name 'S' 2018-11-19T01:18:20.7227906-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7228110-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7228285-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7228493-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7228668-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7228880-08:00 22932 25052 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T01:18:20.7229682-08:00 22932 25052 [PortAudio] Device 4 has render alias 2018-11-19T01:18:20.7231618-08:00 22932 25052 [PortAudio] Device 4 has realtime alias 2018-11-19T01:18:20.7232263-08:00 22932 25052 [PortAudio] Interface 4, Name: R 2018-11-19T01:18:20.7232504-08:00 22932 25052 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio output' 2018-11-19T01:18:20.7232683-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7233084-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7233284-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7233463-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7233649-08:00 22932 25052 [PortAudio] Node: 0 - {507AE360-C554-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7233879-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7234243-08:00 22932 25052 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T01:18:20.7234422-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7234615-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7234801-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7234973-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7235140-08:00 22932 25052 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T01:18:20.7235308-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7235538-08:00 22932 25052 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T01:18:20.7235713-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7235888-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7236059-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E410000678 2018-11-19T01:18:20.7236231-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T01:18:20.7236406-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 000001E410000678) 2018-11-19T01:18:20.7236574-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E410000688 2018-11-19T01:18:20.7236741-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7236942-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7237168-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\SingleLineOutTopo' 2018-11-19T01:18:20.7237358-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7237533-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7237905-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=3, nodes=2 2018-11-19T01:18:20.7238098-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7238273-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T01:18:20.7238448-08:00 22932 25052 [PortAudio] Connection: 2 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7238630-08:00 22932 25052 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7238809-08:00 22932 25052 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7239068-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7239320-08:00 22932 25052 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T01:18:20.7239509-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 3 connections... 2018-11-19T01:18:20.7239681-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E4100321C8 2018-11-19T01:18:20.7240214-08:00 22932 25052 [PortAudio] GetConnectedPin: count=2, forward=1, muxPosition=-1 2018-11-19T01:18:20.7240389-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 3 connections... (pFrom = 000001E4100321C8) 2018-11-19T01:18:20.7240560-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100321D8 2018-11-19T01:18:20.7240732-08:00 22932 25052 [PortAudio] GetConnectedPin: count=2, forward=1, muxPosition=-1 2018-11-19T01:18:20.7240903-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 3 connections... (pFrom = 000001E4100321D8) 2018-11-19T01:18:20.7241071-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100321E8 2018-11-19T01:18:20.7241242-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7241450-08:00 22932 25052 [PortAudio] GetNameFromCategory: USB GUID 0301 -> 'Speakers' 2018-11-19T01:18:20.7241632-08:00 22932 25052 [PortAudio] PinNew: Pin name 'S' 2018-11-19T01:18:20.7241804-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7241997-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7242424-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7242668-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7242847-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7243066-08:00 22932 25052 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T01:18:20.7245928-08:00 22932 25052 [PortAudio] Device 10 has render alias 2018-11-19T01:18:20.7246669-08:00 22932 25052 [PortAudio] Device 10 has capture alias 2018-11-19T01:18:20.7247464-08:00 22932 25052 [PortAudio] Device 10 has realtime alias 2018-11-19T01:18:20.7247901-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7248113-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7248547-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=1, nodes=0 2018-11-19T01:18:20.7248751-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7248991-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7249371-08:00 22932 25052 [PortAudio] PinNew: Checking 16 no of dataranges... 2018-11-19T01:18:20.7249549-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7249735-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7249906-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7250078-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7250245-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7250413-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7250581-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7250749-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7250916-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7251084-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7251252-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7251420-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7251587-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7251755-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7251923-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7252094-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7252262-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7252430-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7252597-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7252765-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7252933-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7253097-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7253265-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7253433-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7253600-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7253768-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7253936-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7254104-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7254271-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7254439-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7254607-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7254775-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7254964-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7255154-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7255322-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7255493-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7255661-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7255825-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7255996-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7256164-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7256332-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7256499-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7256667-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7256831-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7257003-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7257170-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7257335-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T01:18:20.7257502-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7257674-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7257914-08:00 22932 25052 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T01:18:20.7258089-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7258264-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 1 connections... 2018-11-19T01:18:20.7258439-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E40FFFF958 2018-11-19T01:18:20.7258607-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7258811-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7259038-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10DE&DEV_0083&SUBSYS_00000000&REV_1001#5&1c12507c&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\Topo01' 2018-11-19T01:18:20.7259224-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7259395-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7259968-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T01:18:20.7260172-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7260485-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T01:18:20.7260671-08:00 22932 25052 [PortAudio] Node: 0 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7260927-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7261178-08:00 22932 25052 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T01:18:20.7261368-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T01:18:20.7261543-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E4100003A8 2018-11-19T01:18:20.7261718-08:00 22932 25052 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T01:18:20.7261893-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 000001E4100003A8) 2018-11-19T01:18:20.7262064-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100003B8 2018-11-19T01:18:20.7262232-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7262440-08:00 22932 25052 [PortAudio] PinNew: Pin name 'O' 2018-11-19T01:18:20.7262615-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7262830-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7263020-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7263250-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7263432-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7263647-08:00 22932 25052 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T01:18:20.7264380-08:00 22932 25052 [PortAudio] Device 11 has render alias 2018-11-19T01:18:20.7265051-08:00 22932 25052 [PortAudio] Device 11 has capture alias 2018-11-19T01:18:20.7265682-08:00 22932 25052 [PortAudio] Interface 11, Name: V 2018-11-19T01:18:20.7265926-08:00 22932 25052 [PortAudio] FilterNew: Creating filter 'VB-Audio Hi-Fi Cable' 2018-11-19T01:18:20.7266105-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7266546-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=5, nodes=3 2018-11-19T01:18:20.7266751-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7266929-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T01:18:20.7267104-08:00 22932 25052 [PortAudio] Connection: 2 - FromNode=4294967295,FromPin=2 -> ToNode=2,ToPin=1 2018-11-19T01:18:20.7267276-08:00 22932 25052 [PortAudio] Connection: 3 - FromNode=2,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T01:18:20.7267447-08:00 22932 25052 [PortAudio] Connection: 4 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T01:18:20.7267633-08:00 22932 25052 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7267815-08:00 22932 25052 [PortAudio] Node: 1 - {507AE360-C554-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7267994-08:00 22932 25052 [PortAudio] Node: 2 - {9DB7B9E0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7268220-08:00 22932 25052 [PortAudio] PinNew: Creating pin 0: 2018-11-19T01:18:20.7268625-08:00 22932 25052 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T01:18:20.7268807-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7268979-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 8 2018-11-19T01:18:20.7269146-08:00 22932 25052 [PortAudio] PinNew: Format PCM 8 bit supported 2018-11-19T01:18:20.7269311-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7269478-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7269650-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7269864-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7270043-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 5 connections... 2018-11-19T01:18:20.7270215-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E40FFF0378 2018-11-19T01:18:20.7270390-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=-1 2018-11-19T01:18:20.7270565-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 5 connections... (pTo = 000001E40FFF0378) 2018-11-19T01:18:20.7270732-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E40FFF0368 2018-11-19T01:18:20.7270904-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7271101-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7271316-08:00 22932 25052 [PortAudio] PinNew: Creating topology filter '\\?\ROOT#MEDIA#0000#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\Topology' 2018-11-19T01:18:20.7271509-08:00 22932 25052 [PortAudio] FilterNew: Creating filter '' 2018-11-19T01:18:20.7271684-08:00 22932 25052 [PortAudio] FilterNew: Opening filter... 2018-11-19T01:18:20.7272052-08:00 22932 25052 [PortAudio] DumpConnectionsAndNodes: connections=10, nodes=8 2018-11-19T01:18:20.7272246-08:00 22932 25052 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T01:18:20.7272443-08:00 22932 25052 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T01:18:20.7272632-08:00 22932 25052 [PortAudio] Connection: 2 - FromNode=1,FromPin=0 -> ToNode=3,ToPin=1 2018-11-19T01:18:20.7272807-08:00 22932 25052 [PortAudio] Connection: 3 - FromNode=4294967295,FromPin=1 -> ToNode=2,ToPin=1 2018-11-19T01:18:20.7272982-08:00 22932 25052 [PortAudio] Connection: 4 - FromNode=2,FromPin=0 -> ToNode=6,ToPin=1 2018-11-19T01:18:20.7273154-08:00 22932 25052 [PortAudio] Connection: 5 - FromNode=3,FromPin=0 -> ToNode=4,ToPin=1 2018-11-19T01:18:20.7273325-08:00 22932 25052 [PortAudio] Connection: 6 - FromNode=4,FromPin=0 -> ToNode=4294967295,ToPin=2 2018-11-19T01:18:20.7273500-08:00 22932 25052 [PortAudio] Connection: 7 - FromNode=6,FromPin=0 -> ToNode=7,ToPin=1 2018-11-19T01:18:20.7273672-08:00 22932 25052 [PortAudio] Connection: 8 - FromNode=7,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T01:18:20.7273843-08:00 22932 25052 [PortAudio] Connection: 9 - FromNode=5,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T01:18:20.7274025-08:00 22932 25052 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7274208-08:00 22932 25052 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7274386-08:00 22932 25052 [PortAudio] Node: 2 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7274565-08:00 22932 25052 [PortAudio] Node: 3 - {DA441A60-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7274747-08:00 22932 25052 [PortAudio] Node: 4 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7274930-08:00 22932 25052 [PortAudio] Node: 5 - {2CEAF780-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7275108-08:00 22932 25052 [PortAudio] Node: 6 - {DA441A60-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7275287-08:00 22932 25052 [PortAudio] Node: 7 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T01:18:20.7275546-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7275798-08:00 22932 25052 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T01:18:20.7275987-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: Startpin 3, Checking 10 connections... 2018-11-19T01:18:20.7276162-08:00 22932 25052 [PortAudio] FindStartConnectionFrom: returning 000001E410043508 2018-11-19T01:18:20.7276337-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T01:18:20.7276512-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 000001E410043508) 2018-11-19T01:18:20.7276684-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E4100434F8 2018-11-19T01:18:20.7276859-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T01:18:20.7277030-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 000001E4100434F8) 2018-11-19T01:18:20.7277202-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E4100434C8 2018-11-19T01:18:20.7277373-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T01:18:20.7277548-08:00 22932 25052 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 000001E4100434C8) 2018-11-19T01:18:20.7277719-08:00 22932 25052 [PortAudio] GetConnectionFrom: Returning 000001E4100434B8 2018-11-19T01:18:20.7277891-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T01:18:20.7278303-08:00 22932 25052 [PortAudio] PinNew: Input friendly name 'H' 2018-11-19T01:18:20.7278511-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7278715-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7278890-08:00 22932 25052 [PortAudio] PinNew: Creating pin 1: 2018-11-19T01:18:20.7279098-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7279273-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7279466-08:00 22932 25052 [PortAudio] PinNew: Creating pin 2: 2018-11-19T01:18:20.7280236-08:00 22932 25052 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T01:18:20.7280564-08:00 22932 25052 [PortAudio] PinNew: DR major format 73647561 2018-11-19T01:18:20.7280896-08:00 22932 25052 [PortAudio] PinNew: MaxChannel: 8 2018-11-19T01:18:20.7281067-08:00 22932 25052 [PortAudio] PinNew: Format PCM 8 bit supported 2018-11-19T01:18:20.7281231-08:00 22932 25052 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T01:18:20.7281399-08:00 22932 25052 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T01:18:20.7281570-08:00 22932 25052 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T01:18:20.7281764-08:00 22932 25052 [PortAudio] PinNew: Finding topology pin... 2018-11-19T01:18:20.7281942-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 2, Checking 5 connections... 2018-11-19T01:18:20.7282118-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E40FFF0388 2018-11-19T01:18:20.7282293-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=1, muxPosition=-1 2018-11-19T01:18:20.7282464-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 5 connections... (pFrom = 000001E40FFF0388) 2018-11-19T01:18:20.7282635-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E40FFF0398 2018-11-19T01:18:20.7282807-08:00 22932 25052 [PortAudio] GetConnectedPin: count=3, forward=1, muxPosition=-1 2018-11-19T01:18:20.7282982-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 5 connections... (pFrom = 000001E40FFF0398) 2018-11-19T01:18:20.7283150-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E40FFF03A8 2018-11-19T01:18:20.7283317-08:00 22932 25052 [PortAudio] PinNew: Getting physical connection... 2018-11-19T01:18:20.7283518-08:00 22932 25052 [PortAudio] PinNew: Physical connection found! 2018-11-19T01:18:20.7283722-08:00 22932 25052 [PortAudio] PinNew: Opening topology filter... 2018-11-19T01:18:20.7283977-08:00 22932 25052 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T01:18:20.7284167-08:00 22932 25052 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 10 connections... 2018-11-19T01:18:20.7284338-08:00 22932 25052 [PortAudio] FindStartConnectionTo: returning 000001E410043488 2018-11-19T01:18:20.7284513-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T01:18:20.7284688-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 000001E410043488) 2018-11-19T01:18:20.7284860-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E410043498 2018-11-19T01:18:20.7285031-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T01:18:20.7285206-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 000001E410043498) 2018-11-19T01:18:20.7285378-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100434A8 2018-11-19T01:18:20.7285549-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T01:18:20.7285720-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 000001E4100434A8) 2018-11-19T01:18:20.7285892-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100434D8 2018-11-19T01:18:20.7286063-08:00 22932 25052 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T01:18:20.7286235-08:00 22932 25052 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 000001E4100434D8) 2018-11-19T01:18:20.7286406-08:00 22932 25052 [PortAudio] GetConnectionTo: Returning 000001E4100434E8 2018-11-19T01:18:20.7286574-08:00 22932 25052 [PortAudio] PinNew: Found endpoint pin id 2 2018-11-19T01:18:20.7286782-08:00 22932 25052 [PortAudio] GetNameFromCategory: USB GUID 0301 -> 'Speakers' 2018-11-19T01:18:20.7286964-08:00 22932 25052 [PortAudio] PinNew: Pin name 'S' 2018-11-19T01:18:20.7287132-08:00 22932 25052 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T01:18:20.7287343-08:00 22932 25052 [PortAudio] Pin created successfully 2018-11-19T01:18:20.7287529-08:00 22932 25052 [PortAudio] PinNew: Creating pin 3: 2018-11-19T01:18:20.7287733-08:00 22932 25052 [PortAudio] PinNew: Not source/sink 2018-11-19T01:18:20.7287912-08:00 22932 25052 [PortAudio] PinNew: Error -9996 2018-11-19T01:18:20.7288127-08:00 22932 25052 [PortAudio] Filter (WaveCyclic) created with 2 valid pins (total I/Os: 2) 2018-11-19T01:18:20.7333741-08:00 22932 25052 [PortAudio] after paHostApiInitializers[3]. 2018-11-19T01:18:20.9702178-08:00 22932 25052 [PortAudio] TerminateHostApis in 2018-11-19T01:18:20.9718001-08:00 22932 25052 [PortAudio] TerminateHostApis out 2018-11-19T01:18:20.9718691-08:00 22932 25052 Disabling PortAudio debug output redirection 2018-11-19T01:18:20.9719143-08:00 22932 25052 Closing logfile
FlexASIOTest_x64.exe cmd:C:\Program Files\FlexASIO\x64>FlexASIOTest_x64.exe ASIOInit(asioVersion = 2) -> 0 [ASE_OK] asioVersion = 2 driverVersion = 2 name = FlexASIO errorMessage = No ASIO Driver Error sysRef = 0000000000000000ASIOGetChannels() ASIOGetSampleRate() ASIOCanSampleRate(44100) ASIOGetBufferSize() ASIOOutputReady() ASIOGetChannelInfo(channel = 0 isInput = 1) ASIOCreateBuffers(isInput = 1 channelNum = 0 isInput = 1 channelNum = 1 isInput = 1 channelNum = 2 isInput = 1 channelNum = 3 isInput = 1 channelNum = 4 isInput = 1 channelNum = 5 isInput = 1 channelNum = 6 isInput = 1 channelNum = 7 , bufferSize = 960, bufferSwitch = 00007FF64E512170 sampleRateDidChange = 00007FF64E5121E0 asioMessage = 00007FF64E512250 bufferSwitchTimeInfo = 00007FF64E5122E0)
FlexASIOTest_x64.exe log:2018-11-19T01:20:24.6629106-08:00 15764 9208 Logfile opened 2018-11-19T01:20:24.6638444-08:00 15764 9208 Log time source: GetSystemTimePreciseAsFileTime 2018-11-19T01:20:24.6639086-08:00 15764 9208 FlexASIO Release x64 1.0 built on 2018-11-18T17:18:22.4545644+00:00 2018-11-19T01:20:24.6639648-08:00 15764 9208 Host process: C:\Program Files\FlexASIO\x64\FlexASIOTest_x64.exe 2018-11-19T01:20:24.6639983-08:00 15764 9208 --- ENTERING CONTEXT: CFlexASIO() 2018-11-19T01:20:24.6640301-08:00 15764 9208 --- EXITING CONTEXT: CFlexASIO() [OK] 2018-11-19T01:20:24.6648900-08:00 15764 9208 --- ENTERING CONTEXT: init() 2018-11-19T01:20:24.6649477-08:00 15764 9208 Attempting to load configuration file: "C:\\Users\\Omar\\FlexASIO.toml" 2018-11-19T01:20:24.6651147-08:00 15764 9208 Configuration file successfully parsed as valid TOML: backend = "Windows WASAPI"[input] [output] 2018-11-19T01:20:24.6651665-08:00 15764 9208 PortAudio version: PortAudio V19.6.0-devel, revision 0cdb346fdca725cfc98da5cbe2d079096f91b624-vcpkg |
Okay. So as we expected, the advertised channel count clearly doesn't work, be it in shared or exclusive mode. Thank you so much for letting me use some of your time to investigate this. I filed an upstream issue against PortAudio and I'll try to come up with a fix to their code. I'll get back to you once I have a potential fix that can be tested. |
@dechamps |
@omarcostahamido I believe I have fixed the PortAudio code. Could you please redo the tests with the following package which contains modified PortAudio DLLs: FlexASIO-1.0-portaudio-g1f5429e.zip |
@dechamps Here:
PortAudioDevices_x64.exe cmd:C:\Program Files\FlexASIO\x64>PortAudioDevices_x64.exe Device index: 0 Device name: Microsoft Sound Mapper - Input Default sample rate: 44100 Input: max channel count 2, default latency 0.09s (low) 0.18s (high) Output: max channel count 0, default latency 0.09s (low) 0.18s (high) Host API name: MME Host API type: 2 [MME]Device index: 1 Device index: 2 Device index: 3 Device index: 4 Device index: 5 Device index: 6 Device index: 7 Device index: 8 Device index: 9 Device index: 10 Device index: 11 Device index: 12 Device index: 13 Device index: 14 Device index: 15 Device index: 16 Device index: 17 Device index: 18 Device index: 19 Device index: 20 Device index: 21 Device index: 22 Device index: 23 Device index: 24
PortAudioDevices_x64.exe log:2018-11-19T15:25:26.2562125-08:00 3528 7704 Logfile opened 2018-11-19T15:25:26.2575443-08:00 3528 7704 Log time source: GetSystemTimePreciseAsFileTime 2018-11-19T15:25:26.2576632-08:00 3528 7704 FlexASIO Release x64 1.0 built on 2018-11-19T22:48:03.7956966+00:00 2018-11-19T15:25:26.2577441-08:00 3528 7704 Host process: C:\Program Files\FlexASIO\x64\PortAudioDevices_x64.exe 2018-11-19T15:25:26.2578298-08:00 3528 7704 PortAudio version: PortAudio V19.6.0-devel, revision 1f5429ee433c5a379ed96256f21f288e163a9a38-vcpkg 2018-11-19T15:25:26.2579031-08:00 3528 7704 Enabling PortAudio debug output redirection 2018-11-19T15:25:26.2579881-08:00 3528 7704 [PortAudio] before paHostApiInitializers[0]. 2018-11-19T15:25:26.3244157-08:00 3528 7704 [PortAudio] after paHostApiInitializers[0]. 2018-11-19T15:25:26.3263621-08:00 3528 7704 [PortAudio] before paHostApiInitializers[1]. 2018-11-19T15:25:28.0996000-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.0996898-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.0997394-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.1100385-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.1101125-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.1101588-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.1179191-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.1179931-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.1180398-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.1285769-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.1286524-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.1286995-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.1837516-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.1838398-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.1838880-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.2338230-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.2339393-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.2340239-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.2789652-08:00 3528 7704 [PortAudio] PA - PlatformId = 0x2 2018-11-19T15:25:28.2790556-08:00 3528 7704 [PortAudio] PA - MajorVersion = 0x6 2018-11-19T15:25:28.2791045-08:00 3528 7704 [PortAudio] PA - MinorVersion = 0x2 2018-11-19T15:25:28.2795957-08:00 3528 7704 [PortAudio] after paHostApiInitializers[1]. 2018-11-19T15:25:28.2796653-08:00 3528 7704 [PortAudio] before paHostApiInitializers[2]. 2018-11-19T15:25:28.3567677-08:00 3528 7704 [PortAudio] WASAPI: device idx: 00 2018-11-19T15:25:28.3568596-08:00 3528 7704 [PortAudio] WASAPI: --------------- 2018-11-19T15:25:28.3659943-08:00 3528 7704 [PortAudio] WASAPI:0| name[Speakers (Realtek High Definition Audio)] 2018-11-19T15:25:28.3678669-08:00 3528 7704 [PortAudio] WASAPI:0| form-factor[1] 2018-11-19T15:25:28.3679690-08:00 3528 7704 [PortAudio] WASAPI: getting Windows version with RtlGetVersion() 2018-11-19T15:25:28.3680183-08:00 3528 7704 [PortAudio] WASAPI: Windows version = 5 2018-11-19T15:25:28.3680609-08:00 3528 7704 [PortAudio] WASAPI: IAudioClient version = 3 2018-11-19T15:25:28.3751986-08:00 3528 7704 [PortAudio] WASAPI:0| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T15:25:28.3752832-08:00 3528 7704 [PortAudio] WASAPI: device idx: 01 2018-11-19T15:25:28.3753295-08:00 3528 7704 [PortAudio] WASAPI: --------------- 2018-11-19T15:25:28.3816501-08:00 3528 7704 [PortAudio] WASAPI:1| name[Hi-Fi Cable Input (VB-Audio Hi-Fi Cable)] 2018-11-19T15:25:28.3830241-08:00 3528 7704 [PortAudio] WASAPI:1| form-factor[1] 2018-11-19T15:25:28.3886008-08:00 3528 7704 [PortAudio] WASAPI:1| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T15:25:28.3886916-08:00 3528 7704 [PortAudio] WASAPI: device idx: 02 2018-11-19T15:25:28.3887390-08:00 3528 7704 [PortAudio] WASAPI: --------------- 2018-11-19T15:25:28.3950985-08:00 3528 7704 [PortAudio] WASAPI:2| name[Hi-Fi Cable Output (VB-Audio Hi-Fi Cable)] 2018-11-19T15:25:28.3965459-08:00 3528 7704 [PortAudio] WASAPI:2| form-factor[2] 2018-11-19T15:25:28.4015135-08:00 3528 7704 [PortAudio] WASAPI:2| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T15:25:28.4016028-08:00 3528 7704 [PortAudio] WASAPI: device idx: 03 2018-11-19T15:25:28.4016524-08:00 3528 7704 [PortAudio] WASAPI: --------------- 2018-11-19T15:25:28.4103881-08:00 3528 7704 [PortAudio] WASAPI:3| name[Microphone (Realtek High Definition Audio)] 2018-11-19T15:25:28.4120853-08:00 3528 7704 [PortAudio] WASAPI:3| form-factor[4] 2018-11-19T15:25:28.4190827-08:00 3528 7704 [PortAudio] WASAPI:3| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T15:25:28.4191903-08:00 3528 7704 [PortAudio] WASAPI: device idx: 04 2018-11-19T15:25:28.4192763-08:00 3528 7704 [PortAudio] WASAPI: --------------- 2018-11-19T15:25:28.4281291-08:00 3528 7704 [PortAudio] WASAPI:4| name[Stereo Mix (Realtek High Definition Audio)] 2018-11-19T15:25:28.4298887-08:00 3528 7704 [PortAudio] WASAPI:4| form-factor[10] 2018-11-19T15:25:28.4370446-08:00 3528 7704 [PortAudio] WASAPI:4| def.SR[48000] max.CH[2] latency{hi[0.010000] lo[0.003000]} 2018-11-19T15:25:28.4371482-08:00 3528 7704 [PortAudio] WASAPI: device list created ok 2018-11-19T15:25:28.4372153-08:00 3528 7704 [PortAudio] WASAPI: initialized ok 2018-11-19T15:25:28.4372682-08:00 3528 7704 [PortAudio] after paHostApiInitializers[2]. 2018-11-19T15:25:28.4373276-08:00 3528 7704 [PortAudio] before paHostApiInitializers[3]. 2018-11-19T15:25:28.4417113-08:00 3528 7704 [PortAudio] Setup called 2018-11-19T15:25:28.4418057-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4419392-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4420541-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4421682-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4423579-08:00 3528 7704 [PortAudio] Device 1 has capture alias 2018-11-19T15:25:28.4424163-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4426537-08:00 3528 7704 [PortAudio] noError = 1 2018-11-19T15:25:28.4427423-08:00 3528 7704 [PortAudio] Device 2 has render alias 2018-11-19T15:25:28.4428819-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4429866-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4431682-08:00 3528 7704 [PortAudio] Device 3 has capture alias 2018-11-19T15:25:28.4432273-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4434220-08:00 3528 7704 [PortAudio] noError = 1 2018-11-19T15:25:28.4434815-08:00 3528 7704 [PortAudio] Device 4 has render alias 2018-11-19T15:25:28.4436080-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4437134-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4438181-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4439165-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4440197-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4441175-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4442207-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4443979-08:00 3528 7704 [PortAudio] noError = 1 2018-11-19T15:25:28.4444818-08:00 3528 7704 [PortAudio] Device 8 has render alias 2018-11-19T15:25:28.4446532-08:00 3528 7704 [PortAudio] Device 8 has capture alias 2018-11-19T15:25:28.4447104-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4447990-08:00 3528 7704 [PortAudio] noError = 0 2018-11-19T15:25:28.4448982-08:00 3528 7704 [PortAudio] Enum called 2018-11-19T15:25:28.4449475-08:00 3528 7704 [PortAudio] Interfaces found: 5 2018-11-19T15:25:28.4452804-08:00 3528 7704 [PortAudio] Device 1 has capture alias 2018-11-19T15:25:28.4455276-08:00 3528 7704 [PortAudio] Device 1 has realtime alias 2018-11-19T15:25:28.4456983-08:00 3528 7704 [PortAudio] Interface 1, Name: R 2018-11-19T15:25:28.4457778-08:00 3528 7704 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio Mic input' 2018-11-19T15:25:28.4459346-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4461173-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T15:25:28.4461881-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4462537-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T15:25:28.4463142-08:00 3528 7704 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4464127-08:00 3528 7704 [PortAudio] PinNew: Creating pin 0: 2018-11-19T15:25:28.4465586-08:00 3528 7704 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T15:25:28.4466567-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4467507-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4468175-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4468616-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4469028-08:00 3528 7704 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T15:25:28.4469433-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4470016-08:00 3528 7704 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T15:25:28.4470436-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4470844-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 2 connections... 2018-11-19T15:25:28.4471253-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE5F7448 2018-11-19T15:25:28.4471665-08:00 3528 7704 [PortAudio] GetConnectedPin: count=1, forward=0, muxPosition=-1 2018-11-19T15:25:28.4472077-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 2 connections... (pTo = 0000023CBE5F7448) 2018-11-19T15:25:28.4472474-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5F7438 2018-11-19T15:25:28.4472868-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4473423-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4474079-08:00 3528 7704 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtMicInTopo' 2018-11-19T15:25:28.4474783-08:00 3528 7704 [PortAudio] FilterNew: Creating filter '' 2018-11-19T15:25:28.4475228-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4476191-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=4, nodes=3 2018-11-19T15:25:28.4476668-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4477084-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=2,ToPin=1 2018-11-19T15:25:28.4477500-08:00 3528 7704 [PortAudio] Connection: 2 - FromNode=2,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T15:25:28.4477912-08:00 3528 7704 [PortAudio] Connection: 3 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T15:25:28.4478346-08:00 3528 7704 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4478773-08:00 3528 7704 [PortAudio] Node: 1 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4479196-08:00 3528 7704 [PortAudio] Node: 2 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4479841-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4480822-08:00 3528 7704 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T15:25:28.4481515-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 4 connections... 2018-11-19T15:25:28.4481960-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE5B6908 2018-11-19T15:25:28.4482379-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T15:25:28.4482857-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 0000023CBE5B6908) 2018-11-19T15:25:28.4483320-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5B68F8 2018-11-19T15:25:28.4483815-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T15:25:28.4484512-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 0000023CBE5B68F8) 2018-11-19T15:25:28.4484961-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5B68E8 2018-11-19T15:25:28.4485373-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=0 2018-11-19T15:25:28.4485788-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 4 connections... (pTo = 0000023CBE5B68E8) 2018-11-19T15:25:28.4486197-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5B68D8 2018-11-19T15:25:28.4486598-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T15:25:28.4487710-08:00 3528 7704 [PortAudio] PinNew: Input friendly name 'M' 2018-11-19T15:25:28.4488232-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4488735-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4489158-08:00 3528 7704 [PortAudio] PinNew: Creating pin 1: 2018-11-19T15:25:28.4489650-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4490073-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4490602-08:00 3528 7704 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T15:25:28.4492670-08:00 3528 7704 [PortAudio] Device 2 has render alias 2018-11-19T15:25:28.4495088-08:00 3528 7704 [PortAudio] Device 2 has realtime alias 2018-11-19T15:25:28.4496255-08:00 3528 7704 [PortAudio] Interface 2, Name: R 2018-11-19T15:25:28.4496834-08:00 3528 7704 [PortAudio] FilterNew: Creating filter 'Realtek HDA SPDIF Out' 2018-11-19T15:25:28.4497265-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4498257-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T15:25:28.4498742-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4499172-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T15:25:28.4499613-08:00 3528 7704 [PortAudio] Node: 0 - {DFF21FE5-F70F-11D0-B917-00A0C9223196} 2018-11-19T15:25:28.4500157-08:00 3528 7704 [PortAudio] PinNew: Creating pin 0: 2018-11-19T15:25:28.4501094-08:00 3528 7704 [PortAudio] PinNew: Checking 6 no of dataranges... 2018-11-19T15:25:28.4501539-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4502199-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4502644-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4503048-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4503472-08:00 3528 7704 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T15:25:28.4503873-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4504267-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4504660-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4505054-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4505543-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4506039-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4506575-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4507184-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4507749-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4508278-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4508909-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4510386-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4510951-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4511381-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4511786-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4512191-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4512928-08:00 3528 7704 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T15:25:28.4513431-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4513847-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T15:25:28.4514255-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE5F6DD8 2018-11-19T15:25:28.4514886-08:00 3528 7704 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T15:25:28.4515327-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 0000023CBE5F6DD8) 2018-11-19T15:25:28.4515728-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE5F6DE8 2018-11-19T15:25:28.4516129-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4516779-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4517369-08:00 3528 7704 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtSpdifTopo' 2018-11-19T15:25:28.4517822-08:00 3528 7704 [PortAudio] FilterNew: Creating filter '' 2018-11-19T15:25:28.4518234-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4519258-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T15:25:28.4519780-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4520203-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T15:25:28.4520637-08:00 3528 7704 [PortAudio] Node: 0 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4521253-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4521862-08:00 3528 7704 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T15:25:28.4522318-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T15:25:28.4522726-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE5F7318 2018-11-19T15:25:28.4523135-08:00 3528 7704 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T15:25:28.4523576-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 0000023CBE5F7318) 2018-11-19T15:25:28.4523977-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE5F7328 2018-11-19T15:25:28.4524371-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T15:25:28.4524954-08:00 3528 7704 [PortAudio] GetNameFromCategory: USB GUID 0605 -> 'SPDIF' 2018-11-19T15:25:28.4525410-08:00 3528 7704 [PortAudio] PinNew: Pin name 'S' 2018-11-19T15:25:28.4525822-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4526285-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4526701-08:00 3528 7704 [PortAudio] PinNew: Creating pin 1: 2018-11-19T15:25:28.4527183-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4527598-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4528112-08:00 3528 7704 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T15:25:28.4530636-08:00 3528 7704 [PortAudio] Device 3 has capture alias 2018-11-19T15:25:28.4532510-08:00 3528 7704 [PortAudio] Device 3 has realtime alias 2018-11-19T15:25:28.4533688-08:00 3528 7704 [PortAudio] Interface 3, Name: R 2018-11-19T15:25:28.4534264-08:00 3528 7704 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio Stereo input' 2018-11-19T15:25:28.4534745-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4535745-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T15:25:28.4536237-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4536664-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T15:25:28.4537101-08:00 3528 7704 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4537634-08:00 3528 7704 [PortAudio] PinNew: Creating pin 0: 2018-11-19T15:25:28.4538494-08:00 3528 7704 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T15:25:28.4538914-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4539307-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4539698-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4540084-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4540471-08:00 3528 7704 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T15:25:28.4540865-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4541401-08:00 3528 7704 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T15:25:28.4541816-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4542225-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 2 connections... 2018-11-19T15:25:28.4542626-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE5F6E48 2018-11-19T15:25:28.4543031-08:00 3528 7704 [PortAudio] GetConnectedPin: count=1, forward=0, muxPosition=-1 2018-11-19T15:25:28.4543461-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 2 connections... (pTo = 0000023CBE5F6E48) 2018-11-19T15:25:28.4543866-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5F6E38 2018-11-19T15:25:28.4544256-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4544727-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4545248-08:00 3528 7704 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\RtStereoMixTopo' 2018-11-19T15:25:28.4545689-08:00 3528 7704 [PortAudio] FilterNew: Creating filter '' 2018-11-19T15:25:28.4546094-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4546940-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=3, nodes=2 2018-11-19T15:25:28.4547403-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=1,ToPin=1 2018-11-19T15:25:28.4547815-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=1,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4548220-08:00 3528 7704 [PortAudio] Connection: 2 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T15:25:28.4548651-08:00 3528 7704 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4549074-08:00 3528 7704 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4549675-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4550270-08:00 3528 7704 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T15:25:28.4550718-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 3 connections... 2018-11-19T15:25:28.4551123-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE5C0F28 2018-11-19T15:25:28.4551531-08:00 3528 7704 [PortAudio] GetConnectedPin: count=2, forward=0, muxPosition=0 2018-11-19T15:25:28.4551940-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 3 connections... (pTo = 0000023CBE5C0F28) 2018-11-19T15:25:28.4552337-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5C0F18 2018-11-19T15:25:28.4552786-08:00 3528 7704 [PortAudio] GetConnectedPin: count=2, forward=0, muxPosition=0 2018-11-19T15:25:28.4553260-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 3 connections... (pTo = 0000023CBE5C0F18) 2018-11-19T15:25:28.4553796-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE5C0F08 2018-11-19T15:25:28.4554424-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T15:25:28.4555543-08:00 3528 7704 [PortAudio] PinNew: Input friendly name 'S' 2018-11-19T15:25:28.4556054-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4556550-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4556973-08:00 3528 7704 [PortAudio] PinNew: Creating pin 1: 2018-11-19T15:25:28.4557461-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4557881-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4558388-08:00 3528 7704 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T15:25:28.4560379-08:00 3528 7704 [PortAudio] Device 4 has render alias 2018-11-19T15:25:28.4562676-08:00 3528 7704 [PortAudio] Device 4 has realtime alias 2018-11-19T15:25:28.4563843-08:00 3528 7704 [PortAudio] Interface 4, Name: R 2018-11-19T15:25:28.4564613-08:00 3528 7704 [PortAudio] FilterNew: Creating filter 'Realtek HD Audio output' 2018-11-19T15:25:28.4565127-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4566305-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=2, nodes=1 2018-11-19T15:25:28.4566921-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4567373-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T15:25:28.4567822-08:00 3528 7704 [PortAudio] Node: 0 - {507AE360-C554-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4568376-08:00 3528 7704 [PortAudio] PinNew: Creating pin 0: 2018-11-19T15:25:28.4569284-08:00 3528 7704 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T15:25:28.4569816-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4570356-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 2 2018-11-19T15:25:28.4570816-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4571432-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4571902-08:00 3528 7704 [PortAudio] PinNew: Format PCM 32 bit supported 2018-11-19T15:25:28.4572322-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4572931-08:00 3528 7704 [PortAudio] Failed PinQueryNotificationSupport 2018-11-19T15:25:28.4573474-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4573992-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 2 connections... 2018-11-19T15:25:28.4574582-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE5F6E98 2018-11-19T15:25:28.4575020-08:00 3528 7704 [PortAudio] GetConnectedPin: count=1, forward=1, muxPosition=-1 2018-11-19T15:25:28.4575443-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 2 connections... (pFrom = 0000023CBE5F6E98) 2018-11-19T15:25:28.4575848-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE5F6EA8 2018-11-19T15:25:28.4576256-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4576756-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4577296-08:00 3528 7704 [PortAudio] PinNew: Creating topology filter '\\?\HDAUDIO#FUNC_01&VEN_10EC&DEV_0899&SUBSYS_146211E9&REV_1000#4&138140da&0&0001#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\SingleLineOutTopo' 2018-11-19T15:25:28.4577741-08:00 3528 7704 [PortAudio] FilterNew: Creating filter '' 2018-11-19T15:25:28.4578149-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4579028-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=3, nodes=2 2018-11-19T15:25:28.4579557-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4580023-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T15:25:28.4580443-08:00 3528 7704 [PortAudio] Connection: 2 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=1 2018-11-19T15:25:28.4580880-08:00 3528 7704 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4581311-08:00 3528 7704 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4581923-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4582525-08:00 3528 7704 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T15:25:28.4582981-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 3 connections... 2018-11-19T15:25:28.4583389-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE5C0F48 2018-11-19T15:25:28.4583835-08:00 3528 7704 [PortAudio] GetConnectedPin: count=2, forward=1, muxPosition=-1 2018-11-19T15:25:28.4584250-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 3 connections... (pFrom = 0000023CBE5C0F48) 2018-11-19T15:25:28.4584651-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE5C0F58 2018-11-19T15:25:28.4585056-08:00 3528 7704 [PortAudio] GetConnectedPin: count=2, forward=1, muxPosition=-1 2018-11-19T15:25:28.4585461-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 3 connections... (pFrom = 0000023CBE5C0F58) 2018-11-19T15:25:28.4585855-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE5C0F68 2018-11-19T15:25:28.4586249-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T15:25:28.4586748-08:00 3528 7704 [PortAudio] GetNameFromCategory: USB GUID 0301 -> 'Speakers' 2018-11-19T15:25:28.4587179-08:00 3528 7704 [PortAudio] PinNew: Pin name 'S' 2018-11-19T15:25:28.4587580-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4588039-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4588451-08:00 3528 7704 [PortAudio] PinNew: Creating pin 1: 2018-11-19T15:25:28.4588922-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4589337-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4589841-08:00 3528 7704 [PortAudio] Filter (WaveRT) created with 1 valid pins (total I/Os: 1) 2018-11-19T15:25:28.4594989-08:00 3528 7704 [PortAudio] Device 8 has render alias 2018-11-19T15:25:28.4596959-08:00 3528 7704 [PortAudio] Device 8 has capture alias 2018-11-19T15:25:28.4598505-08:00 3528 7704 [PortAudio] Interface 8, Name: V 2018-11-19T15:25:28.4599110-08:00 3528 7704 [PortAudio] FilterNew: Creating filter 'VB-Audio Hi-Fi Cable' 2018-11-19T15:25:28.4599548-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4600540-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=5, nodes=3 2018-11-19T15:25:28.4601025-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=1 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4601455-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=4294967295,ToPin=0 2018-11-19T15:25:28.4601871-08:00 3528 7704 [PortAudio] Connection: 2 - FromNode=4294967295,FromPin=2 -> ToNode=2,ToPin=1 2018-11-19T15:25:28.4602279-08:00 3528 7704 [PortAudio] Connection: 3 - FromNode=2,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T15:25:28.4602688-08:00 3528 7704 [PortAudio] Connection: 4 - FromNode=1,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T15:25:28.4603132-08:00 3528 7704 [PortAudio] Node: 0 - {4D837FE0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4603607-08:00 3528 7704 [PortAudio] Node: 1 - {507AE360-C554-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4604045-08:00 3528 7704 [PortAudio] Node: 2 - {9DB7B9E0-C555-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4604585-08:00 3528 7704 [PortAudio] PinNew: Creating pin 0: 2018-11-19T15:25:28.4606109-08:00 3528 7704 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T15:25:28.4606631-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4607046-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 8 2018-11-19T15:25:28.4607447-08:00 3528 7704 [PortAudio] PinNew: Format PCM 8 bit supported 2018-11-19T15:25:28.4607849-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4608250-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4608647-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4609110-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4609533-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 0, Checking 5 connections... 2018-11-19T15:25:28.4609942-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE610B88 2018-11-19T15:25:28.4610347-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=0, muxPosition=-1 2018-11-19T15:25:28.4610759-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 5 connections... (pTo = 0000023CBE610B88) 2018-11-19T15:25:28.4611156-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE610B78 2018-11-19T15:25:28.4611554-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4612020-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4612527-08:00 3528 7704 [PortAudio] PinNew: Creating topology filter '\\?\ROOT#MEDIA#0000#{6994ad04-93ef-11d0-a3cc-00a0c9223196}\Topology' 2018-11-19T15:25:28.4612979-08:00 3528 7704 [PortAudio] FilterNew: Creating filter '' 2018-11-19T15:25:28.4613388-08:00 3528 7704 [PortAudio] FilterNew: Opening filter... 2018-11-19T15:25:28.4614376-08:00 3528 7704 [PortAudio] DumpConnectionsAndNodes: connections=10, nodes=8 2018-11-19T15:25:28.4614843-08:00 3528 7704 [PortAudio] Connection: 0 - FromNode=4294967295,FromPin=0 -> ToNode=0,ToPin=1 2018-11-19T15:25:28.4615262-08:00 3528 7704 [PortAudio] Connection: 1 - FromNode=0,FromPin=0 -> ToNode=1,ToPin=1 2018-11-19T15:25:28.4615671-08:00 3528 7704 [PortAudio] Connection: 2 - FromNode=1,FromPin=0 -> ToNode=3,ToPin=1 2018-11-19T15:25:28.4616083-08:00 3528 7704 [PortAudio] Connection: 3 - FromNode=4294967295,FromPin=1 -> ToNode=2,ToPin=1 2018-11-19T15:25:28.4616491-08:00 3528 7704 [PortAudio] Connection: 4 - FromNode=2,FromPin=0 -> ToNode=6,ToPin=1 2018-11-19T15:25:28.4616896-08:00 3528 7704 [PortAudio] Connection: 5 - FromNode=3,FromPin=0 -> ToNode=4,ToPin=1 2018-11-19T15:25:28.4617304-08:00 3528 7704 [PortAudio] Connection: 6 - FromNode=4,FromPin=0 -> ToNode=4294967295,ToPin=2 2018-11-19T15:25:28.4617709-08:00 3528 7704 [PortAudio] Connection: 7 - FromNode=6,FromPin=0 -> ToNode=7,ToPin=1 2018-11-19T15:25:28.4618114-08:00 3528 7704 [PortAudio] Connection: 8 - FromNode=7,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T15:25:28.4618522-08:00 3528 7704 [PortAudio] Connection: 9 - FromNode=5,FromPin=0 -> ToNode=4294967295,ToPin=3 2018-11-19T15:25:28.4618956-08:00 3528 7704 [PortAudio] Node: 0 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4619383-08:00 3528 7704 [PortAudio] Node: 1 - {02B223C0-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4619806-08:00 3528 7704 [PortAudio] Node: 2 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4620225-08:00 3528 7704 [PortAudio] Node: 3 - {DA441A60-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4620645-08:00 3528 7704 [PortAudio] Node: 4 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4621068-08:00 3528 7704 [PortAudio] Node: 5 - {2CEAF780-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4621487-08:00 3528 7704 [PortAudio] Node: 6 - {DA441A60-C556-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4621910-08:00 3528 7704 [PortAudio] Node: 7 - {3A5ACC00-C557-11D0-8A2B-00A0C9255AC1} 2018-11-19T15:25:28.4622512-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4623182-08:00 3528 7704 [PortAudio] PinNew: Checking for input endpoint pin id (0)... 2018-11-19T15:25:28.4623675-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: Startpin 3, Checking 10 connections... 2018-11-19T15:25:28.4624098-08:00 3528 7704 [PortAudio] FindStartConnectionFrom: returning 0000023CBE609658 2018-11-19T15:25:28.4624510-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T15:25:28.4624918-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 0000023CBE609658) 2018-11-19T15:25:28.4625319-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE609648 2018-11-19T15:25:28.4625728-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T15:25:28.4626133-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 0000023CBE609648) 2018-11-19T15:25:28.4626534-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE609618 2018-11-19T15:25:28.4626935-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=0, muxPosition=0 2018-11-19T15:25:28.4627343-08:00 3528 7704 [PortAudio] GetConnectionFrom: Checking 10 connections... (pTo = 0000023CBE609618) 2018-11-19T15:25:28.4627737-08:00 3528 7704 [PortAudio] GetConnectionFrom: Returning 0000023CBE609608 2018-11-19T15:25:28.4628135-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 1 2018-11-19T15:25:28.4629138-08:00 3528 7704 [PortAudio] PinNew: Input friendly name 'H' 2018-11-19T15:25:28.4629633-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4630119-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4630538-08:00 3528 7704 [PortAudio] PinNew: Creating pin 1: 2018-11-19T15:25:28.4631027-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4631450-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4631869-08:00 3528 7704 [PortAudio] PinNew: Creating pin 2: 2018-11-19T15:25:28.4632697-08:00 3528 7704 [PortAudio] PinNew: Checking 1 no of dataranges... 2018-11-19T15:25:28.4633131-08:00 3528 7704 [PortAudio] PinNew: DR major format 73647561 2018-11-19T15:25:28.4633569-08:00 3528 7704 [PortAudio] PinNew: MaxChannel: 8 2018-11-19T15:25:28.4634002-08:00 3528 7704 [PortAudio] PinNew: Format PCM 8 bit supported 2018-11-19T15:25:28.4634673-08:00 3528 7704 [PortAudio] PinNew: Format PCM 16 bit supported 2018-11-19T15:25:28.4635118-08:00 3528 7704 [PortAudio] PinNew: Format PCM 24 bit supported 2018-11-19T15:25:28.4635523-08:00 3528 7704 [PortAudio] PinNew: Default sample rate = 44100 Hz 2018-11-19T15:25:28.4635997-08:00 3528 7704 [PortAudio] PinNew: Finding topology pin... 2018-11-19T15:25:28.4636428-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 2, Checking 5 connections... 2018-11-19T15:25:28.4636832-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE610B98 2018-11-19T15:25:28.4637244-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=1, muxPosition=-1 2018-11-19T15:25:28.4637653-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 5 connections... (pFrom = 0000023CBE610B98) 2018-11-19T15:25:28.4638054-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE610BA8 2018-11-19T15:25:28.4638459-08:00 3528 7704 [PortAudio] GetConnectedPin: count=3, forward=1, muxPosition=-1 2018-11-19T15:25:28.4638867-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 5 connections... (pFrom = 0000023CBE610BA8) 2018-11-19T15:25:28.4639272-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE610BB8 2018-11-19T15:25:28.4639670-08:00 3528 7704 [PortAudio] PinNew: Getting physical connection... 2018-11-19T15:25:28.4640136-08:00 3528 7704 [PortAudio] PinNew: Physical connection found! 2018-11-19T15:25:28.4640621-08:00 3528 7704 [PortAudio] PinNew: Opening topology filter... 2018-11-19T15:25:28.4641249-08:00 3528 7704 [PortAudio] PinNew: Checking for output endpoint pin id... 2018-11-19T15:25:28.4641708-08:00 3528 7704 [PortAudio] FindStartConnectionTo: Startpin 0, Checking 10 connections... 2018-11-19T15:25:28.4642164-08:00 3528 7704 [PortAudio] FindStartConnectionTo: returning 0000023CBE6095D8 2018-11-19T15:25:28.4642612-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T15:25:28.4643053-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 0000023CBE6095D8) 2018-11-19T15:25:28.4643462-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE6095E8 2018-11-19T15:25:28.4643867-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T15:25:28.4644275-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 0000023CBE6095E8) 2018-11-19T15:25:28.4644669-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE6095F8 2018-11-19T15:25:28.4645074-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T15:25:28.4645482-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 0000023CBE6095F8) 2018-11-19T15:25:28.4645880-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE609628 2018-11-19T15:25:28.4646281-08:00 3528 7704 [PortAudio] GetConnectedPin: count=8, forward=1, muxPosition=-1 2018-11-19T15:25:28.4646693-08:00 3528 7704 [PortAudio] GetConnectionTo: Checking 10 connections... (pFrom = 0000023CBE609628) 2018-11-19T15:25:28.4647090-08:00 3528 7704 [PortAudio] GetConnectionTo: Returning 0000023CBE609638 2018-11-19T15:25:28.4647484-08:00 3528 7704 [PortAudio] PinNew: Found endpoint pin id 2 2018-11-19T15:25:28.4647991-08:00 3528 7704 [PortAudio] GetNameFromCategory: USB GUID 0301 -> 'Speakers' 2018-11-19T15:25:28.4648421-08:00 3528 7704 [PortAudio] PinNew: Pin name 'S' 2018-11-19T15:25:28.4648826-08:00 3528 7704 [PortAudio] PinNew: Releasing topology filter... 2018-11-19T15:25:28.4649289-08:00 3528 7704 [PortAudio] Pin created successfully 2018-11-19T15:25:28.4649701-08:00 3528 7704 [PortAudio] PinNew: Creating pin 3: 2018-11-19T15:25:28.4650179-08:00 3528 7704 [PortAudio] PinNew: Not source/sink 2018-11-19T15:25:28.4650591-08:00 3528 7704 [PortAudio] PinNew: Error -9996 2018-11-19T15:25:28.4651094-08:00 3528 7704 [PortAudio] Filter (WaveCyclic) created with 2 valid pins (total I/Os: 2) 2018-11-19T15:25:28.4739889-08:00 3528 7704 [PortAudio] after paHostApiInitializers[3]. 2018-11-19T15:25:28.7736439-08:00 3528 7704 [PortAudio] TerminateHostApis in 2018-11-19T15:25:28.7739578-08:00 3528 7704 [PortAudio] TerminateHostApis out 2018-11-19T15:25:28.7740443-08:00 3528 7704 Disabling PortAudio debug output redirection 2018-11-19T15:25:28.7740953-08:00 3528 7704 Closing logfile
FlexASIOTest_x64.exe cmd:C:\Program Files\FlexASIO\x64>FlexASIOTest_x64.exe ASIOInit(asioVersion = 2) -> 0 [ASE_OK] asioVersion = 2 driverVersion = 2 name = FlexASIO errorMessage = No ASIO Driver Error sysRef = 0000000000000000ASIOGetChannels() ASIOGetSampleRate() ASIOCanSampleRate(44100) ASIOGetBufferSize() ASIOOutputReady() ASIOGetChannelInfo(channel = 0 isInput = 1) ASIOCreateBuffers(isInput = 1 channelNum = 0 isInput = 1 channelNum = 1 , bufferSize = 960, bufferSwitch = 00007FF7F7112170 sampleRateDidChange = 00007FF7F71121E0 asioMessage = 00007FF7F7112250 bufferSwitchTimeInfo = 00007FF7F71122E0) ASIOGetSampleRate() ASIOGetLatencies() ASIOStart() Now waiting for 10 buffer switches... bufferSwitchTimeInfo(params = (ASIO time with reserved 0 0 0 0, time info (ASIO time info with speed 0, system time 0, sample position 0, sample rate 48000 Hz, flags 7 [kSystemTimeValid, kSamplePositionValid, kSampleRateValid], reserved 0 0 0 0 0 0 0 0 0 0 0 0), time code (ASIO time code with speed 0, samples 0, flags 0, future 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)), doubleBufferIndex = 0, directProcess = 0) bufferSwitchTimeInfo(params = (Reached ASIO time with reserved 0 0 0 0, time info (ASIO time info with speed 0, system time 437798779000000, sample position 9600, sample rate 48000 Hz, flags 7 [kSystemTimeValid, kSamplePositionValid, kSampleRateValid], reserved 0 0 0 0 0 0 0 0 0 0 0 0), time code (ASIO time code with speed 0, samples 0, flags 0, future 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0)), doubleBufferIndex = 10 buffer switches, stopping0 ASIODisposeBuffers()
FlexASIOTest_x64.exe log:2018-11-19T15:26:27.5227102-08:00 8244 2780 Logfile opened 2018-11-19T15:26:27.5276866-08:00 8244 2780 Log time source: GetSystemTimePreciseAsFileTime 2018-11-19T15:26:27.5277595-08:00 8244 2780 FlexASIO Release x64 1.0 built on 2018-11-19T22:48:03.7956966+00:00 2018-11-19T15:26:27.5278095-08:00 8244 2780 Host process: C:\Program Files\FlexASIO\x64\FlexASIOTest_x64.exe 2018-11-19T15:26:27.5278602-08:00 8244 2780 --- ENTERING CONTEXT: CFlexASIO() 2018-11-19T15:26:27.5279050-08:00 8244 2780 --- EXITING CONTEXT: CFlexASIO() [OK] 2018-11-19T15:26:27.5288390-08:00 8244 2780 --- ENTERING CONTEXT: init() 2018-11-19T15:26:27.5289466-08:00 8244 2780 Attempting to load configuration file: "C:\\Users\\Omar\\FlexASIO.toml" 2018-11-19T15:26:27.5292693-08:00 8244 2780 Configuration file successfully parsed as valid TOML: backend = "Windows WASAPI"[input] [output] 2018-11-19T15:26:27.5294057-08:00 8244 2780 PortAudio version: PortAudio V19.6.0-devel, revision 1f5429ee433c5a379ed96256f21f288e163a9a38-vcpkg fingers crossed :) |
Yep, that's it:
Now the next steps are to get that fix merged into the PortAudio master branch, and then make a FlexASIO release that bundles a fixed PortAudio build. In the mean time, feel free to use that test build for your day-to-day use. In fact, I would encourage you to do so and report any bugs that you find, because I would surely like to know if the latest PortAudio master code is stable enough for normal use. |
Good news: it took some heavy convincing, but I was finally able to get the fix in PortAudio upstream. I just released FlexASIO 1.2 which comes bundled with the updated PortAudio. This channel count bug should finally be gone now. |
@dechamps 🎅 🎄 Merry Xmas |
Can't use FlexASIO.
Installed everything with the new installer 0.2.
Any DAW says that it can't be openned (see screenshot).
I then tried to open FlexASIO using jackd on the command line to see what kind of errors it throws.
(see attached txt log file)
FlexASIO_JackPortaudio_log.txt
I noticed at some point it refering to directories I don't have like:
The text was updated successfully, but these errors were encountered: