1 .. -*- coding: utf-8; mode: rst -*-
3 .. _VIDIOC_ENCODER_CMD:
5 ************************************************
6 ioctl VIDIOC_ENCODER_CMD, VIDIOC_TRY_ENCODER_CMD
7 ************************************************
12 VIDIOC_ENCODER_CMD - VIDIOC_TRY_ENCODER_CMD - Execute an encoder command
18 .. c:function:: int ioctl( int fd, VIDIOC_ENCODER_CMD, struct v4l2_encoder_cmd *argp )
19 :name: VIDIOC_ENCODER_CMD
21 .. c:function:: int ioctl( int fd, VIDIOC_TRY_ENCODER_CMD, struct v4l2_encoder_cmd *argp )
22 :name: VIDIOC_TRY_ENCODER_CMD
29 File descriptor returned by :ref:`open() <func-open>`.
37 These ioctls control an audio/video (usually MPEG-) encoder.
38 ``VIDIOC_ENCODER_CMD`` sends a command to the encoder,
39 ``VIDIOC_TRY_ENCODER_CMD`` can be used to try a command without actually
42 To send a command applications must initialize all fields of a struct
43 :c:type:`v4l2_encoder_cmd` and call
44 ``VIDIOC_ENCODER_CMD`` or ``VIDIOC_TRY_ENCODER_CMD`` with a pointer to
47 The ``cmd`` field must contain the command code. The ``flags`` field is
48 currently only used by the STOP command and contains one bit: If the
49 ``V4L2_ENC_CMD_STOP_AT_GOP_END`` flag is set, encoding will continue
50 until the end of the current *Group Of Pictures*, otherwise it will stop
53 A :ref:`read() <func-read>` or :ref:`VIDIOC_STREAMON <VIDIOC_STREAMON>`
54 call sends an implicit START command to the encoder if it has not been
55 started yet. After a STOP command, :ref:`read() <func-read>` calls will read
56 the remaining data buffered by the driver. When the buffer is empty,
57 :ref:`read() <func-read>` will return zero and the next :ref:`read() <func-read>`
58 call will restart the encoder.
60 A :ref:`close() <func-close>` or :ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>`
61 call of a streaming file descriptor sends an implicit immediate STOP to
62 the encoder, and all buffered data is discarded.
64 These ioctls are optional, not all drivers may support them. They were
65 introduced in Linux 2.6.21.
68 .. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.7cm}|
70 .. c:type:: v4l2_encoder_cmd
72 .. flat-table:: struct v4l2_encoder_cmd
79 - The encoder command, see :ref:`encoder-cmds`.
82 - Flags to go with the command, see :ref:`encoder-flags`. If no
83 flags are defined for this command, drivers and applications must
84 set this field to zero.
87 - Reserved for future extensions. Drivers and applications must set
92 .. tabularcolumns:: |p{6.6cm}|p{2.2cm}|p{8.7cm}|
96 .. flat-table:: Encoder Commands
101 * - ``V4L2_ENC_CMD_START``
103 - Start the encoder. When the encoder is already running or paused,
104 this command does nothing. No flags are defined for this command.
105 * - ``V4L2_ENC_CMD_STOP``
107 - Stop the encoder. When the ``V4L2_ENC_CMD_STOP_AT_GOP_END`` flag
108 is set, encoding will continue until the end of the current *Group
109 Of Pictures*, otherwise encoding will stop immediately. When the
110 encoder is already stopped, this command does nothing. mem2mem
111 encoders will send a ``V4L2_EVENT_EOS`` event when the last frame
112 has been encoded and all frames are ready to be dequeued and will
113 set the ``V4L2_BUF_FLAG_LAST`` buffer flag on the last buffer of
114 the capture queue to indicate there will be no new buffers
115 produced to dequeue. This buffer may be empty, indicated by the
116 driver setting the ``bytesused`` field to 0. Once the
117 ``V4L2_BUF_FLAG_LAST`` flag was set, the
118 :ref:`VIDIOC_DQBUF <VIDIOC_QBUF>` ioctl will not block anymore,
119 but return an ``EPIPE`` error code.
120 * - ``V4L2_ENC_CMD_PAUSE``
122 - Pause the encoder. When the encoder has not been started yet, the
123 driver will return an ``EPERM`` error code. When the encoder is
124 already paused, this command does nothing. No flags are defined
126 * - ``V4L2_ENC_CMD_RESUME``
128 - Resume encoding after a PAUSE command. When the encoder has not
129 been started yet, the driver will return an ``EPERM`` error code. When
130 the encoder is already running, this command does nothing. No
131 flags are defined for this command.
134 .. tabularcolumns:: |p{6.6cm}|p{2.2cm}|p{8.7cm}|
138 .. flat-table:: Encoder Command Flags
143 * - ``V4L2_ENC_CMD_STOP_AT_GOP_END``
145 - Stop encoding at the end of the current *Group Of Pictures*,
146 rather than immediately.
152 On success 0 is returned, on error -1 and the ``errno`` variable is set
153 appropriately. The generic error codes are described at the
154 :ref:`Generic Error Codes <gen-errors>` chapter.
157 The ``cmd`` field is invalid.
160 The application sent a PAUSE or RESUME command when the encoder was