Commit Graph

83 Commits

Author SHA1 Message Date
Alexandru N. Onea 5879db0e35 Generate final version string and number based on major, minor and patch 2019-04-08 12:20:28 +03:00
Taylor Holberton 0178c72b88 Added the 'attributes.h' header 2019-01-13 13:10:47 -05:00
Ricardo Biehl Pasquali 08aff7bde2 pcm: Add macro for PREPARED state
Signed-off-by: Ricardo Biehl Pasquali <pasqualirb@gmail.com>
2019-01-08 16:48:19 -02:00
Taylor Holberton e6c9e35c11 Fixed some doxygen references. 2018-12-22 10:20:15 -05:00
Tim-Philipp Müller 230a291494 Add support for Meson as build system
The Meson build system is being adopted by projects
such as GNOME, PulseAudio, GStreamer, VLC, systemd, Mesa,
Wayland, X.org, and many others. Having a meson build
upstream in tinyalsa would allow for easy use of tinyalsa
as a Meson subproject in other projects.

https://mesonbuild.com
2018-12-15 20:16:03 +00:00
Taylor Holberton 093b87878b added PCM_NONBLOCK macro 2017-10-12 20:28:30 -04:00
Taylor Holberton 1770a22cf1 corrected tab usage 2017-10-12 20:17:29 -04:00
Baruch Siach 685e530d8a interval.h: add missing header
The ssize_t type requires the unistd.h header. This fixes build with musl
libc:

In file included from ../include/tinyalsa/limits.h:32:0,
                 from limits.c:1:
../include/tinyalsa/interval.h:38:2: error: unknown type name 'ssize_t'
  ssize_t max;
  ^

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
2017-06-02 12:24:35 +03:00
Taylor Holberton df11091086 bumped version 2017-05-23 21:23:57 -07:00
Taylor Holberton 04b47b0831 corrected set_config function 2017-04-10 12:36:15 -07:00
Taylor Holberton cad23d2482 added prototypes for _get_config() and _set_config() 2017-04-10 11:47:32 -07:00
Taylor Holberton d6e7e04edb added limits for frames and channels 2017-04-06 23:04:20 -07:00
Taylor Holberton f1080d3337 added interval structures 2017-04-06 23:04:06 -07:00
Taylor Holberton 5f9d22f568 removed stray tab 2017-04-06 22:21:46 -07:00
Pankaj Bharadiya 010121a131 Tinyalsa: Add support to poll on alsa control
ALSA controls support polling on the kcontrols, this is used in HD-A for
jack notifcation. In tinyalsa we can use this for notfication from sound
card for any events detected by DSP

Change-Id: I4193809bfcdb60f4dc11e1c2ad6a07b29cfa80e9
Signed-off-by: Hardik T Shah <hardik.t.shah@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
2017-01-11 10:38:28 +05:30
Pankaj Bharadiya 3f813e4778 Fix the byte control set/get method
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>
2017-01-10 13:50:53 +05:30
Pankaj Bharadiya 9698d03a63 mixer: Add support for TLV RW access check api
Tinyalsa doesn't expose an api to check TLV RW access

Add mixer_ctl_is_access_tlv_rw().

This api will get used by tinymix and audio HALs for checking TLV RW
access before managing the byte related mixer controls.

Change-Id: Ib5707fabf479de638e1c7abd4cd149e7637ff9c2
Signed-off-by: Pankaj Bharadiya <pankaj.laxminarayan.bharadiya@intel.com>
2017-01-10 13:50:39 +05:30
Ricardo Biehl Pasquali c848ea519f corrected (over/under)run definition in pcm.h
overrun is in capture and underrun is in playback.
Look:

'+' has data / '-' hasn't data

overrun (capture):

 You should have
 read until here
                v
        |+++++++|++     <- buffer over(run/flow)

underrun (playback):

 You should have
 written until here
                   v
           |+++++++|--  <- buffer under(run/flow)
2016-12-28 14:42:18 -02:00
Taylor Holberton c6f908ee87 Added pcm_open_by_name()
This function parses a PCM name similar to the ALSA library.
This is done so that the differences between alsa-lib and tinyalsa
are a little more transparent to the user.
2016-12-24 20:33:33 -08:00
Taylor Holberton 558e594ba2 Added pcm_link and pcm_unlink functions
The link function is necessary for time sychronization between multiple PCMs.
2016-12-04 13:42:28 -08:00
Taylor Holberton f8fc8deaf1 Removed asound.h
It was added because bionic didn't have a copy of the file in 2011.

But, it was finally added in 2013 and update since.

There is no longer a need for this file.
2016-12-02 12:18:07 -08:00
Richard Fitzgerald fd3290357e mixer: add ability to update control list with new controls
New controls could appear during runtime, for example if a
new firmware is downloaded to a DSP. Since ALSA drivers are
not supposed to delete or renumber existing controls we can
assume that any new controls will be after any controls we
already know about. We can use this to enable extending our
current list of controls, which is more efficient than
closing the mixer session and recreating it.

Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
2016-12-02 16:39:38 +00:00
Taylor Holberton ead42d87ff bumped minor version 2016-12-01 21:20:06 -08:00
Taylor Holberton d7b140a5d9 Using frame counts in pcm_readi and pcm_writei
pcm_readi and pcm_writei now use a frame count to specify the
buffer length instead of using a byte count.
2016-12-01 20:43:28 -08:00
Taylor Holberton f9834eef24 Added pcm_readi and pcm_writei functions
Added these functions to replace pcm_read and pcm_write, which don't return the number of frames actually transferred.

On GCC-like compilers, pcm_read and pcm_write have been marked as deprecated

On doxygen documentation, they have been marked as deprecated as well.
2016-12-01 20:25:41 -08:00
Taylor Holberton 77979a8855 Added format related getters for PCM
Added functions:
 - pcm_get_channels
 - pcm_get_rate
 - pcm_get_format

These were added since they're required for iterating samples and frames.
2016-12-01 20:04:04 -08:00
Taylor Holberton 94c7c83c01 Added function, mixer_get_num_ctls_by_name
This function is used to get the number of mixer controls by a given name.
It was added for use with mixer_get_ctl_by_name_and_index so that client code
can expect the last valid index to pass.
2016-12-01 18:35:24 -08:00
Taylor Holberton a94295b6cf Added mixer_get_ctl_const
This function was added to make available a mixer control accessor
in a function that does not modify its value.
2016-12-01 18:23:16 -08:00
Taylor Holberton cac43a208d Added const specifier for several mixer functions
Functions changed are:
 - mixer_get_name
 - mixer_get_num_ctls
 - mixer_ctl_get_id
 - mixer_ctl_get_name
 - mixer_ctl_get_type
 - mixer_ctl_get_type_string
 - mixer_ctl_get_num_values
 - mixer_ctl_get_num_enums
 - mixer_ctl_get_enum_string
 - mixer_ctl_get_percent
 - mixer_ctl_get_value
 - mixer_ctl_get_array
 - mixer_ctl_get_range_min
 - mixer_ctl_get_range_max
2016-12-01 18:11:24 -08:00
Taylor Holberton 147d7adec6 Added const specifier in several functions
pcm_get_file_descriptor
pcm_get_error
pcm_get_buffer_size
pcm_frames_to_bytes
pcm_bytes_to_frames
pcm_get_subdevice
2016-12-01 17:50:31 -08:00
Taylor Holberton 15d58481e7 added const specifier in function, pcm_is_ready 2016-12-01 17:46:29 -08:00
Taylor Holberton ba285cfbf4 Added const specifier in pcm_open
The const specifier was added to the struct pcm_config argument.
2016-12-01 16:06:29 -08:00
Taylor Holberton 5b9db5b888 Added const specifier to params functions
Funtions changed are:
 - pcm_params_get_mask
 - pcm_params_get_min
 - pcm_params_get_max
2016-12-01 15:57:09 -08:00
Taylor Holberton da1bc31c9c fixed function reference in doc 2016-11-23 13:18:34 -08:00
Taylor Holberton eb54eabdde added missing asterisk for doc 2016-11-23 10:56:24 -08:00
Taylor Holberton 474ab24467 added tinyalsa version header 2016-11-19 10:41:31 -08:00
Taylor Holberton 8e1b1029b2 renamed doxygen group, tinyalsa-pcm to libtinyalsa-pcm 2016-11-19 10:34:50 -08:00
Taylor Holberton 1f29de96f3 origanized and added some documentation 2016-11-19 10:33:50 -08:00
Taylor Holberton 7c8b20a6fe added some documentation to mixer interface 2016-10-01 19:25:19 -04:00
Taylor Holberton 6d58e01d30 added basic pcm documentation 2016-10-01 18:32:30 -04:00
Taylor Holberton 93b544ec2a seperated pcm and mixer APIs 2016-10-01 12:45:22 -04:00
Taylor Holberton c01d4a386c added support for more signed types 2016-10-01 12:22:43 -04:00
Taylor Holberton 7687f0fa2a Merge branch 'address-duplicate-control-names' of https://github.com/dawagner/tinyalsa into dawagner-address-duplicate-control-names 2016-09-16 09:22:18 -04:00
Taylor Holberton bb402603a9 Added get_file_descriptor() 2016-08-03 10:15:46 -04:00
rofl0r c8333f8c7a asound.h: include <time.h> to get struct timespec prototype
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-10-12 13:05:09 +01:00
Simon Wilson 33fe27c809 Merge pull request #48 from vinodkoul/wait_delay
Wait delay
2015-09-15 11:36:00 -07:00
Richard Fitzgerald 57a877495e mixer: Add mixer_ctl_get_id
Add a function to get an id of a control that can be
passed to mixer_get_ctl(). This can be used to lookup
a control by name and store its id for later use rather
than have the overhead of name lookup each time it is
used. Lookup by id is quick and avoids the disadvantage
that storing a pointer to the mixer_ctl object creates
a client with a dependency on the address of the internal
control array.

Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
2014-09-09 16:54:52 +01:00
David Wagner 4cddf19dfc tinyalsa: add pcm_get_subdevice()
The users of tinyalsa had no way of knowing on which subdevice a stream had
been created.  A new API, "unsigned int pcm_get_subdevice(struct *pcm)" returns
it.  This information is filled during the pcm_open()

Change-Id: Ie866e10e06ce6691ede09e2ca46a24441723ea8b
Signed-off-by: David Wagner <david.wagner@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
2014-08-12 14:04:32 +05:30
Hardik T Shah 9ecb93fb6b Tinyalsa: add pcm_delay()
ALSA supports reporting of pcm_delay, make that availble to the users of
tinyalsa too

Change-Id: Ic460f5c55137d263fdf7b142503d3bd52c4b7ebd
Signed-off-by: Hardik T Shah <hardik.t.shah@intel.com>
Signed-off-by: Apelete Seketeli <apeletex.seketeli@intel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
2014-08-12 14:01:38 +05:30
Andy Hung ad80762a3b Update tinypcminfo to display format information
Change-Id: I0e6a04da5a4b122a3748b16c7eb01c4a224c3d84
Signed-off-by: Andy Hung <hunga@google.com>
2014-06-03 12:56:15 -07:00