summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* fix warningsJari Vetoniemi2018-11-02
|
* some hardeningJari Vetoniemi2018-11-02
|
* improve warningsJari Vetoniemi2018-11-02
|
* support formats regardless of getcaps supportJari Vetoniemi2018-11-02
| | | | | | some alsa programs wont fallback to anything that would work natively. this sort of sucks since some do, so we may end up doing pointless transcoding.
* fix error handling in poll functionsJari Vetoniemi2018-11-02
|
* Move code around mor near to their relevancyJari Vetoniemi2018-11-02
|
* Check revents before timing out from pcm_waitJari Vetoniemi2018-11-02
|
* Fix some brainwartsJari Vetoniemi2018-11-02
| | | | | We can't rely on alsa format for lots of things as it might be different than native.
* more correct hwparam setters/gettersJari Vetoniemi2018-11-01
|
* steam fixesJari Vetoniemi2018-11-01
|
* should return ENOENT on mismatchJari Vetoniemi2018-11-01
|
* s/ERRX/WARNX/gJari Vetoniemi2018-11-01
|
* remove some leftover codeJari Vetoniemi2018-11-01
|
* broke alsamixerJari Vetoniemi2018-11-01
|
* crap for making portaudio (audacity) workJari Vetoniemi2018-11-01
|
* tidy up code, and start checking up hwcapsJari Vetoniemi2018-11-01
| | | | supported formats and their conversions are handled more nicer now too.
* hide all logging under ASOUND_DEBUG env variableJari Vetoniemi2018-11-01
|
* implement snd_pcm_format_valueJari Vetoniemi2018-11-01
|
* format_mask_test: dont use continueJari Vetoniemi2018-11-01
|
* WARN on calloc failureJari Vetoniemi2018-11-01
|
* make the malloc functions less verboseJari Vetoniemi2018-11-01
|
* s/WARNX1/WARN1/Jari Vetoniemi2018-11-01
|
* snd_pcm_format_name: return NULL on unsupportedJari Vetoniemi2018-11-01
|
* these strings should be copiedJari Vetoniemi2018-10-31
|
* loop through all configs for min/max functionsJari Vetoniemi2018-10-31
|
* Some works towards working audacityJari Vetoniemi2018-10-31
| | | | | However it needs snd_config for querying pcm devices, so prob wont be working for a while.
* fix brainfart with recorded data transformationJari Vetoniemi2018-10-31
|
* set avail to 0 when stoppedJari Vetoniemi2018-10-31
|
* Don't ever return avail more than appbufszJari Vetoniemi2018-10-31
|
* make capture streams work (arecord too)Jari Vetoniemi2018-10-31
|
* missing stubsJari Vetoniemi2018-10-31
|
* implement control searching and volume range getJari Vetoniemi2018-10-31
|
* remove the pollin hacksJari Vetoniemi2018-10-31
| | | | just modifying elem in setters is enough
* fix include install yet againJari Vetoniemi2018-10-31
|
* make volume muting workJari Vetoniemi2018-10-31
|
* make alsamixer more responsiveJari Vetoniemi2018-10-31
|
* alsamixer is now usableJari Vetoniemi2018-10-31
|
* refactor project structureJari Vetoniemi2018-10-31
| | | | | libasound.c started to become quite large, split the big chunks into pcm.c and mixer.c
* make alsamixer show controlsJari Vetoniemi2018-10-31
|
* implement sw_param malloc and freeJari Vetoniemi2018-10-31
|
* store hw_param access and implement the getterJari Vetoniemi2018-10-31
|
* implement snd_pcm_wait and snd_pcm_resetJari Vetoniemi2018-10-31
|
* minor fixesJari Vetoniemi2018-10-31
|
* implement snd_pcm_get_chmapJari Vetoniemi2018-10-31
|
* calculated avail correctly, fixes mpvJari Vetoniemi2018-10-31
|
* store open mode to avoid state changesJari Vetoniemi2018-10-31
| | | | | we don't have to reopen the device if it's already nonblocking or not for example.
* implement snd_pcm_hw_params_test_formatJari Vetoniemi2018-10-31
|
* guard from nullptrJari Vetoniemi2018-10-31
|
* implement snd_pcm_poll_* functionsJari Vetoniemi2018-10-31
|
* don't while loop in pollJari Vetoniemi2018-10-31
| | | | | not really sure why sio_revents returns 0 here, but I'll investigate it more later. The poll should block untill POLLOUT or POLLHUP.