2016-06-30 13:18:56 +00:00
|
|
|
.. -*- coding: utf-8; mode: rst -*-
|
|
|
|
|
2016-07-01 16:42:29 +00:00
|
|
|
.. _VIDIOC_ENUMAUDIO:
|
2016-06-30 13:18:56 +00:00
|
|
|
|
|
|
|
**********************
|
|
|
|
ioctl VIDIOC_ENUMAUDIO
|
|
|
|
**********************
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Name
|
2016-07-05 10:58:48 +00:00
|
|
|
====
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-05 10:58:48 +00:00
|
|
|
VIDIOC_ENUMAUDIO - Enumerate audio inputs
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
|
|
|
|
Synopsis
|
2016-06-30 13:18:56 +00:00
|
|
|
========
|
|
|
|
|
2016-08-19 19:53:38 +00:00
|
|
|
.. c:function:: int ioctl( int fd, VIDIOC_ENUMAUDIO, struct v4l2_audio *argp )
|
|
|
|
:name: VIDIOC_ENUMAUDIO
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-05 10:58:48 +00:00
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Arguments
|
2016-06-30 13:18:56 +00:00
|
|
|
=========
|
|
|
|
|
|
|
|
``fd``
|
|
|
|
File descriptor returned by :ref:`open() <func-open>`.
|
|
|
|
|
|
|
|
``argp``
|
|
|
|
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Description
|
2016-06-30 13:18:56 +00: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 20:37:59 +00:00
|
|
|
:c:type:`v4l2_audio` and call the :ref:`VIDIOC_ENUMAUDIO`
|
2016-06-30 13:18:56 +00:00
|
|
|
ioctl with a pointer to this structure. Drivers fill the rest of the
|
2016-07-03 14:53:09 +00:00
|
|
|
structure or return an ``EINVAL`` error code when the index is out of
|
2016-06-30 13:18:56 +00:00
|
|
|
bounds. To enumerate all audio inputs applications shall begin at index
|
2016-07-03 14:53:09 +00:00
|
|
|
zero, incrementing by one until the driver returns ``EINVAL``.
|
2016-06-30 13:18:56 +00:00
|
|
|
|
2016-07-03 13:02:29 +00:00
|
|
|
See :ref:`VIDIOC_G_AUDIO <VIDIOC_G_AUDIO>` for a description of struct
|
2016-08-29 20:37:59 +00:00
|
|
|
:c:type:`v4l2_audio`.
|
2016-06-30 13:18:56 +00:00
|
|
|
|
|
|
|
|
2016-07-05 18:14:35 +00:00
|
|
|
Return Value
|
2016-06-30 13:18:56 +00: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.
|