vidioc-g-output.rst 1.7 KB
Newer Older
1 2
.. -*- coding: utf-8; mode: rst -*-

3
.. _VIDIOC_G_OUTPUT:
4 5 6 7 8

**************************************
ioctl VIDIOC_G_OUTPUT, VIDIOC_S_OUTPUT
**************************************

9 10
NAME
====
11

12
VIDIOC_G_OUTPUT - VIDIOC_S_OUTPUT - Query or select the current video output
13

14
SYNOPSIS
15 16
========

17
.. cpp:function:: int ioctl( int fd, int request, int *argp )
18

19 20

ARGUMENTS
21 22 23 24 25 26 27 28 29 30 31
=========

``fd``
    File descriptor returned by :ref:`open() <func-open>`.

``request``
    VIDIOC_G_OUTPUT, VIDIOC_S_OUTPUT

``argp``


32
DESCRIPTION
33 34 35
===========

To query the current video output applications call the
36
:ref:`VIDIOC_G_OUTPUT <VIDIOC_G_OUTPUT>` ioctl with a pointer to an integer where the driver
37 38
stores the number of the output, as in the struct
:ref:`v4l2_output <v4l2-output>` ``index`` field. This ioctl will
39
fail only when there are no video outputs, returning the ``EINVAL`` error
40 41 42
code.

To select a video output applications store the number of the desired
43
output in an integer and call the :ref:`VIDIOC_S_OUTPUT <VIDIOC_G_OUTPUT>` ioctl with a
44 45 46 47 48 49 50
pointer to this integer. Side effects are possible. For example outputs
may support different video standards, so the driver may implicitly
switch the current standard. standard. Because of these possible side
effects applications must select an output before querying or
negotiating any other parameters.

Information about video outputs is available using the
51
:ref:`VIDIOC_ENUMOUTPUT` ioctl.
52 53


54
RETURN VALUE
55 56 57 58 59 60 61 62 63
============

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 video output is out of bounds, or there are no
    video outputs at all.