Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-04-13 | Fix to pass num_frames to pcm_writei | Jaikrishna Nemallapudi | |
pcm_writei expects size of data in frames, whereas currently size is passed as number of bytes. So convert number of bytes to frames for argument to pcm_writei. Signed-off-by: Jaikrishna Nemallapudi <jaikrishnax.nemallapudi@intel.com> Signed-off-by: Subhransu S. Prusty <subhransu.s.prusty@intel.com> | |||
2017-01-19 | fixed indentation on if statement | Taylor Holberton | |
2017-01-19 | tinymix: fix segfaults with set command | Pierre-Louis Bossart | |
The arguments passed after the set command are not handled properly, leading to segfaults or inability to set controls Example with control 0 which is Headset Volume on my NUC: before fix $ ./tinymix set 0 Segmentation fault $ ./tinymix set 0 10 Segmentation fault $ ./tinymix set 0 10 20 Error: 3 values given, but control only takes 2 After correction $ ./tinymix set 0 no value(s) specified $ ./tinymix set 0 10 $ ./tinymix set 0 10 10 $ ./tinymix set 0 10 10 10 Error: 3 values given, but control only takes 2 Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | |||
2017-01-14 | linking with static libtinyalsa | Taylor Holberton | |
2017-01-14 | updated read handling for pcm_readi | Taylor Holberton | |
2017-01-10 | Fix the byte control set/get method | Pankaj Bharadiya | |
The TLV byte controls expect a TLV header as well. Check for TLV access and add TLV header size before invoking mixer API. Change-Id: I12ba129e5bbc0676e80eb920e85b3683decfe0db Signed-off-by: Pawse, GuruprasadX <guruprasadx.pawse@intel.com> Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com> | |||
2016-12-01 | Replaced old calls to pcm_read and pcm_write | Taylor Holberton | |
The newer pcm_readi and pcm_writei functions are now being used. | |||
2016-12-01 | Added const specifier to mask | Taylor Holberton | |
The changed was brought on by to early commits to the PCM API. | |||
2016-11-22 | removed override directive | Taylor Holberton | |
2016-11-22 | using install command instead of cp and mkdir | Taylor Holberton | |
2016-11-19 | make tinymix command oriented, based on amixer | Taylor Holberton | |
2016-11-19 | updated man page | Taylor Holberton | |
2016-11-19 | created cmd and ctx structures for tinyplay | Taylor Holberton | |
2016-11-07 | I work on platforms based on the Qualcomm SnapDragon chip. There can be | Brad Walker | |
hundreds of paths on the audio side of this chip. There was a recent change whereby tinymix will ALWAYS prints the routes/paths for the different ports on ALSA. I consider this to be a regression. It really should only be printed if asked. In addition, I've modified tinymix to more closely conform to the following: https://www.gnu.org/prep/standards/html_node/Command_002dLine-Interfaces.html Lastly, I removed a redundant errno.h.. | |||
2016-10-02 | added installation of man pages | Taylor Holberton | |
2016-10-02 | added man page for tinypcminfo | Taylor Holberton | |
2016-10-02 | changed default behavior to print usage only on --help | Taylor Holberton | |
2016-10-02 | added defaults for card and device | Taylor Holberton | |
2016-10-02 | added tinymix man page | Taylor Holberton | |
2016-10-02 | always printing control list, showing usage when argc == 1 | Taylor Holberton | |
2016-10-02 | added tinyplay manpage | Taylor Holberton | |
2016-10-02 | fixed typo | Taylor Holberton | |
2016-10-02 | added default values | Taylor Holberton | |
2016-10-02 | changed default rate to match that of tinyplay | Taylor Holberton | |
2016-10-02 | added error if -i file-type doesn't make sense | Taylor Holberton | |
2016-10-02 | corrected typo | Taylor Holberton | |
2016-10-02 | added tinycap man page | Taylor Holberton | |
2016-10-02 | added BINDIR and removed old build vars | Taylor Holberton | |
2016-10-01 | added DESTDIR to install command and explicit build commands | Taylor Holberton | |
2016-10-01 | checking results of fread() calls | Taylor Holberton | |
2016-10-01 | added VPATH and INCDIR | Taylor Holberton | |
2016-10-01 | put programs into utils dir | Taylor Holberton | |