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-07 11:05:38 -03:00
|
|
|
.. _VIDIOC_ENUMAUDOUT:
|
2016-06-30 15:18:56 +02:00
|
|
|
|
|
|
|
***********************
|
|
|
|
ioctl VIDIOC_ENUMAUDOUT
|
|
|
|
***********************
|
|
|
|
|
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_ENUMAUDOUT - Enumerate audio outputs
|
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_ENUMAUDOUT
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2020-09-24 14:04:26 +02:00
|
|
|
``int ioctl(int fd, VIDIOC_ENUMAUDOUT, struct v4l2_audioout *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_audioout`.
|
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 output 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_audioout` and call the ``VIDIOC_G_AUDOUT``
|
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 outputs 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-08-15 17:49:50 -03:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
Connectors on a TV card to loop back the received audio signal
|
2016-07-10 11:57:43 -03:00
|
|
|
to a sound card are not audio outputs in this sense.
|
2016-06-30 15:18:56 +02:00
|
|
|
|
2016-07-07 11:05:38 -03:00
|
|
|
See :ref:`VIDIOC_G_AUDIOout <VIDIOC_G_AUDOUT>` for a description of struct
|
2016-08-29 17:37:59 -03:00
|
|
|
:c:type:`v4l2_audioout`.
|
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 output is out of bounds.
|