Skip to content

Commit

Permalink
hopefully write out to a reliable place now
Browse files Browse the repository at this point in the history
  • Loading branch information
rdp committed Sep 26, 2012
1 parent 58f4d01 commit 3728b29
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions ChangeLog.txt
@@ -1,3 +1,11 @@
0.3.9

Accomodate for cmd.exe's redirect failures better (I hope). I.e. let the program start.

Try to write debug outputs to a consistent place now.

TODO build 64 bit...

0.3.8 0.3.8


5.1 support now. If you have an ASUS Xonar card you may need to "disable gx" (the little gx green-light-button in the xonar control dock). 5.1 support now. If you have an ASUS Xonar card you may need to "disable gx" (the little gx green-light-button in the xonar control dock).
Expand Down
Binary file removed source_code/Release/audio_sniffer.ax
Binary file not shown.
Binary file modified source_code/Release/audio_sniffer.dll
Binary file not shown.
1 change: 1 addition & 0 deletions source_code/Release/register_run_as_admin.bat
@@ -0,0 +1 @@
regsvr32 %~dp0\audio_sniffer.dll
2 changes: 1 addition & 1 deletion source_code/acam/loopback-capture.cpp
Expand Up @@ -555,7 +555,7 @@ void loopBackRelease() {


void outputStats() { void outputStats() {
wchar_t output[250]; wchar_t output[250];
wsprintf(output, L"total reads %d total blips %d total overflows %d", totalSuccessFullyread , totalBlips, totalOverflows); wsprintf(output, L"total reads %d total discontinuity blips %d, total overflows %d", totalSuccessFullyread , totalBlips - 1, totalOverflows);
set_config_string_setting(L"last_output", output); set_config_string_setting(L"last_output", output);
} }


Expand Down
2 changes: 1 addition & 1 deletion source_code/acam/utilities.cpp
Expand Up @@ -31,7 +31,7 @@ HRESULT set_config_string_setting(LPCTSTR szValueName, wchar_t *szToThis ) {
LPDWORD lpdwDisp = &dwDisp; LPDWORD lpdwDisp = &dwDisp;


i = RegCreateKeyEx(HKEY_CURRENT_USER, i = RegCreateKeyEx(HKEY_CURRENT_USER,
L"SOFTWARE\\virtual_audio_capture", 0L, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hKey, lpdwDisp); // fails in flash player... L"SOFTWARE\\virtual_audio_capture", 0L, NULL, REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS | KEY_WOW64_32KEY, NULL, &hKey, lpdwDisp); // might fail in flash player...?


if (i == ERROR_SUCCESS) if (i == ERROR_SUCCESS)
{ {
Expand Down

0 comments on commit 3728b29

Please sign in to comment.