Commit Graph

865 Commits

Author SHA1 Message Date
kevin
2b325ad334 cwIo.h/cpp : Implemented socket interface. Improved the audio metering. 2021-01-31 11:14:22 -05:00
kevin
d3b18fa8a7 cwAudioDeviceAlsa.cpp : Replaced printf()'s with cwLogInfo()'s. 2021-01-31 11:10:44 -05:00
kevin
5ac9ea1c37 html/ioTest/ui.js : Added send on focus change. 2021-01-31 11:09:44 -05:00
kevin
19901441cf html/uiTest/ui.cfg : Added 'report' button. 2021-01-31 11:09:08 -05:00
kevin
e113228f69 cwMidiDecls.h : Updated comments. 2021-01-31 11:08:36 -05:00
kevin
ce1b4cea6b cwSocket.h : Updated comments. 2021-01-31 11:08:09 -05:00
kevin
e3b104fb61 cwUi.h/cpp : Fixed bug in _parseValueMsg() and updated comments in cwUi.h 2021-01-31 11:07:29 -05:00
kevin
a5d62b6e97 cwObject.h : Added is_type(). 2021-01-31 11:04:49 -05:00
kevin
b34f1e210d cwAudioBuf.h/cpp : Added version of meter() which returns an array of meter values from a device. 2021-01-31 11:04:11 -05:00
kevin
f123be0323 cwIo.h,cpp, cwIoTest.cpp : Many changes to get an initial working version of audio with a audio meter UI. 2021-01-22 09:49:57 -05:00
kevin
469df69857 html/ioTest/ui.cfg : removed unused elements. 2021-01-22 09:48:14 -05:00
kevin
8f4455ae95 cwUi.h/cpp : Added findElementUuId( h, appId) to return uuid of the first occurence of an element with appId. 2021-01-22 09:46:10 -05:00
kevin
e1a931c2a1 cwMutex.h : Added 'spurious wakeup' comments. 2021-01-22 09:33:23 -05:00
kevin
04a1bec0c3 audioBuf.h/cpp : Added toneFlags(),muteFlags(),gain( ... gainA,gainN).
Added _setFlag() to handle setting flags on all channels.
setFlag() now sets both input and output channels if both kInFl and kOutFl are set.
Previously it only set the input channel if both kInFl and kOutFl were set.
2021-01-22 09:31:32 -05:00
kevin
e763ed1607 cwIo.h/cpp, cwIoTest.h/cpp, html/ioTest.* : Many changes and additions to support first working Ui and audio subsystem. 2021-01-20 13:13:11 -05:00
kevin
f4e99e3771 cwThreadMach.h/cpp : Many changes to support use in cwIo. 2021-01-20 13:11:44 -05:00
kevin
c929804d4c cwUi.h/cpp,cwUiTest.h/cpp, cwUiDecls.h : Moved public variables to cwUiDecls.h. Added a version of create() which uses an arg_t record. Added parseArgs() and releaseArgs(). 2021-01-20 13:10:56 -05:00
kevin
5154c9eb53 cwObject.cpp : Changed uses of printf() to use "%s" where no format was necessary to prevent compiler warnings. 2021-01-20 13:08:29 -05:00
kevin
2fbd8b690f cwmutex.h : Added signalCondVar(). 2021-01-20 13:07:36 -05:00
kevin
ab37affd10 cwAudioDeviceTest.cpp : Change static_cast<> to reinterpet_cast<> 2021-01-20 13:06:57 -05:00
kevin
577e61ca82 cwAudioDeviceAlsa.cpp : Added calls to snd_config_update_free_global() to prevent memory leaks from showing up in valgrind. 2021-01-20 13:06:27 -05:00
kevin
29945bd3b4 cwAudioBuf.cpp : Fixed bug where main object was memory was not released in destroy(). 2021-01-20 13:05:33 -05:00
kpl
a82c423725 cwWebSock.cpp: replace use of MpScNbQueue until MpScQueue can be debugged. 2021-01-12 17:05:34 -05:00
kevin
ed75129278 cwWebSock.cpp : Replace queue with blocking queue to prevent possible problems on ARM based machines. 2021-01-12 15:59:02 -05:00
kevin
41c3f0eb34 cwMpScQueue.h : replace use of atomic exchange 2021-01-12 15:57:57 -05:00
kevin
1f5381d735 cwMpScNbQueue.h : Initial commit. 2021-01-12 15:49:19 -05:00
kevin
cbf4870410 cwDataSets.h/cpp : Add use of cache_t file cache to rdr to improve file read performance and add shuffling option. 2020-12-29 11:22:29 -05:00
kevin
46a7633e00 cwSvg.h/cpp : Removed unused flags from svg::write(). 2020-12-29 11:21:00 -05:00
kevin
d3c7b3a572 cwFile.h/cpp : read()/write() now check 'lastRC' as a precondition. 2020-12-29 11:20:24 -05:00
kevin
7bb41b24e4 cwSvg.h/cpp : Refactoring to make CSS more flexible, decrease size of images, and improve efficiency of write(). 2020-12-29 10:14:10 -05:00
kevin
dc461dbe84 cwNumericConvert.h,cwObject.cpp : Added type specializations for cwNumericConvert.number_to_string(). 2020-12-29 10:11:00 -05:00
kevin
adfe4a0bb9 cwFile.h/cwFile.cpp : Added lastRC(). 2020-12-29 10:09:43 -05:00
kevin
556cfe7f2b Makefile.am,cwMath.h/cpp : Initial commit. 2020-12-29 10:09:03 -05:00
kevin
721d9e79a1 cwDataSets.h/cpp : Added wtr,rdr,adapter. 2020-12-15 15:32:22 -05:00
kevin
0f86c8de20 cwAudioBuf.cpp : Fixed bug in report() that prevented all channels from being reported. 2020-12-15 15:31:49 -05:00
kevin
dfcf5be512 cwAudioDeviceTest.h/cpp : test() now takes a cfg object and added test_tone(). 2020-12-15 15:30:45 -05:00
kevin
b19d0ff99a cwFile.h/cpp : Added polymorphic read() and write(). Return kEofRC when read() get an EOF error. 2020-12-15 15:29:36 -05:00
kevin
eed564954a cwVariant.h/cpp, Makefile.am : Initial commit. 2020-12-11 15:58:06 -05:00
kevin
e8b9771365 cwThread.cpp : Fix bug where waitTimeMicrosSecs was not properly updates. 2020-12-11 15:57:35 -05:00
kevin
9e925e7996 Merge branch 'master' of gitea.larke.org:kevin/libcw 2020-11-12 21:18:44 -05:00
kpl
84989231b1 cwWebSock.cpp : Change to use external polling method in exec() 2020-11-12 09:47:45 -05:00
kevin
6182553685 Merge branch 'master' of gitea.larke.org:kevin/libcw 2020-11-10 17:25:13 -05:00
kevin
cfe75ca58d Delete cwMpScNbQueue.h 2020-11-10 17:24:36 -05:00
kpl
96b3b1ac0a Pine64 Updates. 2020-10-31 14:17:43 -04:00
kevin
635b673492 cwMpScQueue.h : Initial commit. 2020-10-30 09:41:01 -04:00
kevin
6dd882312d cwDataSet.h/cpp, cwNN.h/cpp : Updates. 2020-10-30 09:40:39 -04:00
kevin
4355c78f0d Merge branch 'master' of gitea.larke.org:klarke/libcw 2020-10-18 09:02:16 -04:00
kevin
9536e9b6bb cwVectOpts.h : Added comments 2020-10-18 09:02:03 -04:00
kevin
f3dbc6f91a Makefile.am,cwDsp,cwFFT: Updates to make FFTW optional. 2020-10-11 17:18:58 -04:00
kevin
1aba926fda Merge branch 'master' of gitea.larke.org:klarke/libcw
# Conflicts:
#	Makefile.am
2020-10-11 14:42:28 -04:00