1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>ioctl VIDIOC_G_AUDOUT, VIDIOC_S_AUDOUT</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="LINUX MEDIA INFRASTRUCTURE API"><link rel="up" href="user-func.html" title="Appendix A. Function Reference"><link rel="prev" href="vidioc-g-audio.html" title="ioctl VIDIOC_G_AUDIO, VIDIOC_S_AUDIO"><link rel="next" href="vidioc-g-crop.html" title="ioctl VIDIOC_G_CROP, VIDIOC_S_CROP"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">ioctl VIDIOC_G_AUDOUT, VIDIOC_S_AUDOUT</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="vidioc-g-audio.html">Prev</a> </td><th width="60%" align="center">Appendix A. Function Reference</th><td width="20%" align="right"> <a accesskey="n" href="vidioc-g-crop.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="vidioc-g-audioout"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>VIDIOC_G_AUDOUT, VIDIOC_S_AUDOUT — Query or select the current audio output</p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">ioctl</b>(</code></td><td>int <var class="pdparam">fd</var>, </td></tr><tr><td> </td><td>int <var class="pdparam">request</var>, </td></tr><tr><td> </td><td>struct v4l2_audioout *<var class="pdparam">argp</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div><div class="funcsynopsis"><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">int <b class="fsfunc">ioctl</b>(</code></td><td>int <var class="pdparam">fd</var>, </td></tr><tr><td> </td><td>int <var class="pdparam">request</var>, </td></tr><tr><td> </td><td>const struct v4l2_audioout *<var class="pdparam">argp</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp1113703596"></a><h2>Arguments</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>fd</code></em></span></dt><dd><p>File descriptor returned by <a class="link" href="func-open.html" title="V4L2 open()"><code class="function">open()</code></a>.</p></dd><dt><span class="term"><em class="parameter"><code>request</code></em></span></dt><dd><p>VIDIOC_G_AUDOUT, VIDIOC_S_AUDOUT</p></dd><dt><span class="term"><em class="parameter"><code>argp</code></em></span></dt><dd><p></p></dd></dl></div></div><div class="refsect1"><a name="idp1113707700"></a><h2>Description</h2><p>To query the current audio output applications zero out the 2<em class="structfield"><code>reserved</code></em> array of a struct <a class="link" href="vidioc-g-audioout.html#v4l2-audioout" title="Table A.54. struct v4l2_audioout">v4l2_audioout</a> and 3call the <code class="constant">VIDIOC_G_AUDOUT</code> ioctl with a pointer 4to this structure. Drivers fill the rest of the structure or return an 5<span class="errorcode">EINVAL</span> error code when the device has no audio inputs, or none which combine 6with the current video output.</p><p>Audio outputs have no writable properties. Nevertheless, to 7select the current audio output applications can initialize the 8<em class="structfield"><code>index</code></em> field and 9<em class="structfield"><code>reserved</code></em> array (which in the future may 10contain writable properties) of a 11<span class="structname">v4l2_audioout</span> structure and call the 12<code class="constant">VIDIOC_S_AUDOUT</code> ioctl. Drivers switch to the 13requested output or return the <span class="errorcode">EINVAL</span> error code when the index is out of 14bounds. This is a write-only ioctl, it does not return the current 15audio output attributes as <code class="constant">VIDIOC_G_AUDOUT</code> 16does.</p><p>Note connectors on a TV card to loop back the received audio 17signal to a sound card are not audio outputs in this sense.</p><div class="table"><a name="v4l2-audioout"></a><p class="title"><b>Table A.54. struct <span class="structname">v4l2_audioout</span></b></p><div class="table-contents"><table summary="struct v4l2_audioout" width="100%" border="0"><colgroup><col class="c1"><col class="c2"><col class="c3"></colgroup><tbody valign="top"><tr><td valign="top">__u32</td><td valign="top"><em class="structfield"><code>index</code></em></td><td valign="top">Identifies the audio output, set by the 18driver or application.</td></tr><tr><td valign="top">__u8</td><td valign="top"><em class="structfield"><code>name</code></em>[32]</td><td valign="top">Name of the audio output, a NUL-terminated ASCII 19string, for example: "Line Out". This information is intended for the 20user, preferably the connector label on the device itself.</td></tr><tr><td valign="top">__u32</td><td valign="top"><em class="structfield"><code>capability</code></em></td><td valign="top">Audio capability flags, none defined yet. Drivers 21must set this field to zero.</td></tr><tr><td valign="top">__u32</td><td valign="top"><em class="structfield"><code>mode</code></em></td><td valign="top">Audio mode, none defined yet. Drivers and 22applications (on <code class="constant">VIDIOC_S_AUDOUT</code>) must set this 23field to zero.</td></tr><tr><td valign="top">__u32</td><td valign="top"><em class="structfield"><code>reserved</code></em>[2]</td><td valign="top">Reserved for future extensions. Drivers and 24applications must set the array to zero.</td></tr></tbody></table></div></div><br class="table-break"></div><div class="refsect1"><a name="idp1113720612"></a><h2>Return Value</h2><p>On success <span class="returnvalue">0</span> is returned, on error <span class="returnvalue">-1</span> and the <code class="varname">errno</code> variable is set appropriately. The generic error codes are described at the <a class="link" href="gen_errors.html#gen-errors" title="Table 19.1. Generic error codes">Generic Error Codes</a> chapter.</p><div class="variablelist"><dl class="variablelist"><dt><span class="term"><span class="errorcode">EINVAL</span></span></dt><dd><p>No audio outputs combine with the current video 25output, or the number of the selected audio output is out of bounds or 26it does not combine.</p></dd></dl></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="vidioc-g-audio.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="user-func.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="vidioc-g-crop.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">ioctl VIDIOC_G_AUDIO, VIDIOC_S_AUDIO </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> ioctl VIDIOC_G_CROP, VIDIOC_S_CROP</td></tr></table></div></body></html> 27