2020-08-26 09:03:09 +02:00
|
|
|
.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
|
2020-09-24 14:04:26 +02:00
|
|
|
.. c:namespace:: V4L
|
2018-08-30 10:15:26 -04:00
|
|
|
|
2016-07-01 13:42:29 -03:00
|
|
|
.. _VIDIOC_ENUMAUDIO:
|
2016-06-30 15:18:56 +02:00
|
|
|
|
|
|
|
**********************
|
|
|
|
ioctl VIDIOC_ENUMAUDIO
|
|
|
|
**********************
|
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Name
|
2016-07-05 07:58:48 -03:00
|
|
|
====
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-05 07:58:48 -03:00
|
|
|
VIDIOC_ENUMAUDIO - Enumerate audio inputs
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Synopsis
|
2016-06-30 15:18:56 +02:00
|
|
|
========
|
|
|
|
|
2020-09-24 14:04:26 +02:00
|
|
|
.. c:macro:: VIDIOC_ENUMAUDIO
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2020-09-24 14:04:26 +02:00
|
|
|
``int ioctl(int fd, VIDIOC_ENUMAUDIO, struct v4l2_audio *argp)``
|
2016-07-05 07:58:48 -03:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Arguments
|
2016-06-30 15:18:56 +02:00
|
|
|
=========
|
|
|
|
|
|
|
|
``fd``
|
2020-09-24 14:04:26 +02:00
|
|
|
File descriptor returned by :c:func:`open()`.
|
2016-06-30 15:18:56 +02:00
|
|
|
|
|
|
|
``argp``
|
2017-09-02 09:54:48 -04:00
|
|
|
Pointer to struct :c:type:`v4l2_audio`.
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Description
|
2016-06-30 15:18:56 +02:00
|
|
|
===========
|
|
|
|
|
|
|
|
To query the attributes of an audio input applications initialize the
|
|
|
|
``index`` field and zero out the ``reserved`` array of a struct
|
2016-08-29 17:37:59 -03:00
|
|
|
:c:type:`v4l2_audio` and call the :ref:`VIDIOC_ENUMAUDIO`
|
2016-06-30 15:18:56 +02:00
|
|
|
ioctl with a pointer to this structure. Drivers fill the rest of the
|
2016-07-03 11:53:09 -03:00
|
|
|
structure or return an ``EINVAL`` error code when the index is out of
|
2016-06-30 15:18:56 +02:00
|
|
|
bounds. To enumerate all audio inputs applications shall begin at index
|
2016-07-03 11:53:09 -03:00
|
|
|
zero, incrementing by one until the driver returns ``EINVAL``.
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-03 10:02:29 -03:00
|
|
|
See :ref:`VIDIOC_G_AUDIO <VIDIOC_G_AUDIO>` for a description of struct
|
2016-08-29 17:37:59 -03:00
|
|
|
:c:type:`v4l2_audio`.
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-05 15:14:35 -03:00
|
|
|
Return Value
|
2016-06-30 15:18:56 +02:00
|
|
|
============
|
|
|
|
|
|
|
|
On success 0 is returned, on error -1 and the ``errno`` variable is set
|
|
|
|
appropriately. The generic error codes are described at the
|
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|
|
|
|
|
|
|
|
EINVAL
|
|
|
|
The number of the audio input is out of bounds.
|