2018-08-30 22:15:26 +08:00
|
|
|
.. Permission is granted to copy, distribute and/or modify this
|
|
|
|
.. document under the terms of the GNU Free Documentation License,
|
|
|
|
.. Version 1.1 or any later version published by the Free Software
|
|
|
|
.. Foundation, with no Invariant Sections, no Front-Cover Texts
|
|
|
|
.. and no Back-Cover Texts. A copy of the license is included at
|
|
|
|
.. Documentation/media/uapi/fdl-appendix.rst.
|
|
|
|
..
|
|
|
|
.. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
|
|
|
|
|
2016-07-05 21:37:31 +08:00
|
|
|
.. _DMX_SET_BUFFER_SIZE:
|
|
|
|
|
2016-07-05 18:58:48 +08:00
|
|
|
===================
|
2016-07-05 21:37:31 +08:00
|
|
|
DMX_SET_BUFFER_SIZE
|
|
|
|
===================
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Name
|
2016-07-05 18:58:48 +08:00
|
|
|
----
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-05 18:58:48 +08:00
|
|
|
DMX_SET_BUFFER_SIZE
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
|
|
|
|
Synopsis
|
2016-07-05 21:37:31 +08:00
|
|
|
--------
|
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
.. c:function:: int ioctl( int fd, DMX_SET_BUFFER_SIZE, unsigned long size)
|
|
|
|
:name: DMX_SET_BUFFER_SIZE
|
2016-07-05 21:37:31 +08:00
|
|
|
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Arguments
|
2016-07-05 18:58:48 +08:00
|
|
|
---------
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
``fd``
|
|
|
|
File descriptor returned by :c:func:`open() <dvb-dmx-open>`.
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-08-20 03:56:15 +08:00
|
|
|
``size``
|
|
|
|
Unsigned long size
|
2016-07-05 21:37:31 +08:00
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Description
|
2016-07-05 18:58:48 +08:00
|
|
|
-----------
|
|
|
|
|
|
|
|
This ioctl call is used to set the size of the circular buffer used for
|
|
|
|
filtered data. The default size is two maximum sized sections, i.e. if
|
2017-09-02 00:21:49 +08:00
|
|
|
this function is not called a buffer size of ``2 * 4096`` bytes will be
|
2016-07-05 18:58:48 +08:00
|
|
|
used.
|
|
|
|
|
|
|
|
|
2016-07-06 02:14:35 +08:00
|
|
|
Return Value
|
2016-07-05 21:37:31 +08:00
|
|
|
------------
|
|
|
|
|
2017-09-02 00:15:43 +08:00
|
|
|
|
|
|
|
On success 0 is returned.
|
|
|
|
|
|
|
|
On error -1 is returned, and the ``errno`` variable is set
|
|
|
|
appropriately.
|
|
|
|
|
|
|
|
The generic error codes are described at the
|
2016-07-05 21:37:31 +08:00
|
|
|
:ref:`Generic Error Codes <gen-errors>` chapter.
|