Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-10-01 | checking results of fread() calls | Taylor Holberton | |
2016-10-01 | added some documentation to mixer interface | Taylor Holberton | |
2016-10-01 | added basic pcm documentation | Taylor Holberton | |
2016-10-01 | added doxygen subdir to all targets | Taylor Holberton | |
2016-10-01 | added install target | Taylor Holberton | |
2016-10-01 | updated references | Taylor Holberton | |
2016-10-01 | added snippet on viewing man pages | Taylor Holberton | |
2016-10-01 | Added main page for doxygen | Taylor Holberton | |
2016-10-01 | added new README | Taylor Holberton | |
2016-10-01 | temporarily turning off warnings as errors | Taylor Holberton | |
2016-10-01 | corrected typo | Taylor Holberton | |
2016-10-01 | Added Doxyfile | Taylor Holberton | |
2016-10-01 | Added .gitignore file | Taylor Holberton | |
2016-10-01 | updated library source paths | Taylor Holberton | |
2016-10-01 | put source files into src dir | Taylor Holberton | |
2016-10-01 | cleaned up makefile | Taylor Holberton | |
2016-10-01 | added VPATH and INCDIR | Taylor Holberton | |
2016-10-01 | voided unused parameter | Taylor Holberton | |
2016-10-01 | seperated pcm and mixer APIs | Taylor Holberton | |
2016-10-01 | updated program paths | Taylor Holberton | |
2016-10-01 | put programs into utils dir | Taylor Holberton | |
2016-10-01 | added support for more signed types | Taylor Holberton | |
2016-09-16 | fixed bracket placement | Taylor Holberton | |
2016-09-16 | Merge branch 'dawagner-address-duplicate-control-names' | Taylor Holberton | |
2016-09-16 | Merge branch 'address-duplicate-control-names' of ↵ | Taylor Holberton | |
https://github.com/dawagner/tinyalsa into dawagner-address-duplicate-control-names | |||
2016-09-16 | Merge pull request #74 from dimkr/master | Taylor Holberton | |
include time.h, to prevent use of struct timespec before definition | |||
2016-08-03 | Added get_file_descriptor() | Taylor Holberton | |
2016-08-03 | Added default prefix variable | Taylor Holberton | |
2016-08-03 | added install command | Taylor Holberton | |
2016-06-26 | Merge pull request #77 from bzhg/master | Taylor Holberton | |
mixer: check for overflow and NULL return | |||
2016-04-22 | mixer: check for overflow and NULL return | Ben Zhang | |
Signed-off-by: Ben Zhang <benzh@google.com> | |||
2016-03-05 | include time.h, to prevent use of struct timespec before definition | Dima Krasner | |
In some old (2.6.32.x) kernel headers, asound.h does not include linux time.h when __KERNEL__ is undefined, which may break userspace. The build failures caused by this are similar to those fixed by c8333f8c. Signed-off-by: Dima Krasner <dima@dimakrasner.com> | |||
2016-02-14 | Merge pull request #70 from virajkarandikar/master | Simon Wilson | |
tinycap: add capture time parameter | |||
2016-02-14 | Merge pull request #73 from ford-prefect/master | Simon Wilson | |
build: Redo Makefile a bit | |||
2016-02-14 | Merge pull request #72 from frgm/cppcheck | Simon Wilson | |
fix some cppcheck warnings | |||
2016-01-28 | build: Redo Makefile a bit | Arun Raghavan | |
A few changes: * Don't hardcode 'gcc' and use $(CC) instead * Split off CFLAGS/LDFLAGS so we can pick them up from the environment * Add a static library build | |||
2016-01-24 | fix format specifier for unsigned int | Svyatoslav Mishyn | |
2016-01-24 | mixer: fix possible null pointer dereference | Svyatoslav Mishyn | |
2016-01-22 | tinycap: add capture time parameter | Viraj Karandikar | |
Signed-off-by: Viraj Karandikar <vkarandikar@nvidia.com> | |||
2016-01-09 | Merge pull request #69 from JaydeepDhole/master | Simon Wilson | |
Added raw file support in tinyplay | |||
2016-01-09 | tinymix: don't get byte array if size is zero | Simon Wilson | |
Fixes an error if the number of bytes available is zero. Also remove unused len variable. | |||
2015-12-18 | Added raw file support in tinyplay | Jaydeep Dhole | |
-Added raw file support in tinyplay to play PCM raw files Signed-off-by: Jaydeep Dhole <jaydeepdhole@gmail.com> | |||
2015-10-20 | Merge pull request #64 from rofl0r/timespec_fix | Simon Wilson | |
asound.h: include <time.h> to get struct timespec prototype | |||
2015-10-20 | Merge pull request #53 from rfvirgil/remove_info_list | Simon Wilson | |
mixer: remove separate info list | |||
2015-10-20 | mixer: remove separate info list | Richard Fitzgerald | |
Each mixer_ctl has an associated snd_ctl_elem_info, which was kept in a separate array with pointers from the mixer_ctl to its corresponding snd_ctl_elem_info. This means double pointer dereferences when looking up the info. It also means extra work to add support for extending the arrays to include dynamically added controls because the pointers from the ctl array to the info array would have to be updated. This patch removes the info list and gives each mixer_ctl struct its own local snd_ctl_elem_info, removing the additional pointer dereferencing. Change-Id: I03f7d411afd9e37f58b984584712fee64d85ef4e Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com> | |||
2015-10-12 | asound.h: include <time.h> to get struct timespec prototype | rofl0r | |
without including it, we get In file included from mixer.c:44:0: include/sound/asound.h:337:18: error: field 'trigger_tstamp' has incomplete type include/sound/asound.h:338:18: error: field 'tstamp' has incomplete type etc. | |||
2015-09-15 | Merge pull request #48 from vinodkoul/wait_delay | Simon Wilson | |
Wait delay | |||
2015-09-15 | Merge pull request #60 from JaydeepDhole/Added_tinywavinfo_utility | Simon Wilson | |
Added tinywavinfo utility | |||
2015-09-15 | Merge pull request #52 from rfvirgil/get_id | Simon Wilson | |
mixer: Add mixer_ctl_get_id | |||
2015-09-15 | Merge pull request #37 from StevenNAN/patch-1 | Simon Wilson | |
avail issue |