Commit 1b81f010 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] docs-next: stop abusing on the cpp domain

Now that we have an override for the c domain that will do
the right thing for the Kernel, stop abusing on the cpp
domain.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent b7ff94df
...@@ -39,55 +39,54 @@ nitpick_ignore = [ ...@@ -39,55 +39,54 @@ nitpick_ignore = [
("c:func", "write"), ("c:func", "write"),
("c:type", "atomic_t"), ("c:type", "atomic_t"),
("c:type", "bool"), ("c:type", "bool"),
("c:type", "boolean"),
("c:type", "buf_queue"), ("c:type", "buf_queue"),
("c:type", "device"), ("c:type", "device"),
("c:type", "device_driver"), ("c:type", "device_driver"),
("c:type", "device_node"), ("c:type", "device_node"),
("c:type", "enum"), ("c:type", "enum"),
("c:type", "fd"),
("c:type", "fd_set"),
("c:type", "file"), ("c:type", "file"),
("c:type", "i2c_adapter"), ("c:type", "i2c_adapter"),
("c:type", "i2c_board_info"), ("c:type", "i2c_board_info"),
("c:type", "i2c_client"), ("c:type", "i2c_client"),
("c:type", "int16_t"),
("c:type", "ktime_t"), ("c:type", "ktime_t"),
("c:type", "led_classdev_flash"), ("c:type", "led_classdev_flash"),
("c:type", "list_head"), ("c:type", "list_head"),
("c:type", "lock_class_key"), ("c:type", "lock_class_key"),
("c:type", "module"), ("c:type", "module"),
("c:type", "mutex"), ("c:type", "mutex"),
("c:type", "NULL"),
("c:type", "off_t"),
("c:type", "pci_dev"), ("c:type", "pci_dev"),
("c:type", "pdvbdev"), ("c:type", "pdvbdev"),
("c:type", "pollfd"),
("c:type", "poll_table_struct"), ("c:type", "poll_table_struct"),
("c:type", "s32"), ("c:type", "s32"),
("c:type", "s64"), ("c:type", "s64"),
("c:type", "sd"), ("c:type", "sd"),
("c:type", "size_t"),
("c:type", "spi_board_info"), ("c:type", "spi_board_info"),
("c:type", "spi_device"), ("c:type", "spi_device"),
("c:type", "spi_master"), ("c:type", "spi_master"),
("c:type", "ssize_t"),
("c:type", "struct fb_fix_screeninfo"), ("c:type", "struct fb_fix_screeninfo"),
("c:type", "struct pollfd"), ("c:type", "struct pollfd"),
("c:type", "struct timeval"), ("c:type", "struct timeval"),
("c:type", "struct video_capability"), ("c:type", "struct video_capability"),
("c:type", "timeval"),
("c:type", "__u16"),
("c:type", "u16"), ("c:type", "u16"),
("c:type", "__u32"),
("c:type", "u32"), ("c:type", "u32"),
("c:type", "__u64"),
("c:type", "u64"), ("c:type", "u64"),
("c:type", "u8"), ("c:type", "u8"),
("c:type", "uint16_t"),
("c:type", "uint32_t"),
("c:type", "union"), ("c:type", "union"),
("c:type", "usb_device"), ("c:type", "usb_device"),
("c:type", "video_system_t"),
("cpp:type", "boolean"),
("cpp:type", "fd"),
("cpp:type", "fd_set"),
("cpp:type", "int16_t"),
("cpp:type", "NULL"),
("cpp:type", "off_t"),
("cpp:type", "pollfd"),
("cpp:type", "size_t"),
("cpp:type", "ssize_t"),
("cpp:type", "timeval"),
("cpp:type", "__u16"),
("cpp:type", "__u32"),
("cpp:type", "__u64"),
("cpp:type", "uint16_t"),
("cpp:type", "uint32_t"),
("cpp:type", "video_system_t"),
] ]
...@@ -121,7 +121,7 @@ triggered by a hardware interrupt, it is recommended to use the Linux ...@@ -121,7 +121,7 @@ triggered by a hardware interrupt, it is recommended to use the Linux
bottom half mechanism or start a tasklet instead of making the callback bottom half mechanism or start a tasklet instead of making the callback
function call directly from a hardware interrupt. function call directly from a hardware interrupt.
This mechanism is implemented by :c:func:`dmx_ts_cb()` and :cpp:func:`dmx_section_cb()` This mechanism is implemented by :c:func:`dmx_ts_cb()` and :c:func:`dmx_section_cb()`
callbacks. callbacks.
.. kernel-doc:: drivers/media/dvb-core/demux.h .. kernel-doc:: drivers/media/dvb-core/demux.h
......
...@@ -166,7 +166,7 @@ something. ...@@ -166,7 +166,7 @@ something.
In the case of :ref:`videobuf2 <vb2_framework>` you will need to implement the In the case of :ref:`videobuf2 <vb2_framework>` you will need to implement the
``wait_prepare()`` and ``wait_finish()`` callbacks to unlock/lock if applicable. ``wait_prepare()`` and ``wait_finish()`` callbacks to unlock/lock if applicable.
If you use the ``queue->lock`` pointer, then you can use the helper functions If you use the ``queue->lock`` pointer, then you can use the helper functions
:c:func:`vb2_ops_wait_prepare` and :cpp:func:`vb2_ops_wait_finish`. :c:func:`vb2_ops_wait_prepare` and :c:func:`vb2_ops_wait_finish`.
The implementation of a hotplug disconnect should also take the lock from The implementation of a hotplug disconnect should also take the lock from
:c:type:`video_device` before calling v4l2_device_disconnect. If you are also :c:type:`video_device` before calling v4l2_device_disconnect. If you are also
...@@ -335,7 +335,7 @@ And this function: ...@@ -335,7 +335,7 @@ And this function:
returns the video_device belonging to the file struct. returns the video_device belonging to the file struct.
The :c:func:`video_devdata` function combines :cpp:func:`video_get_drvdata` The :c:func:`video_devdata` function combines :c:func:`video_get_drvdata`
with :c:func:`video_devdata`: with :c:func:`video_devdata`:
:c:func:`video_drvdata <video_drvdata>` :c:func:`video_drvdata <video_drvdata>`
......
...@@ -21,8 +21,8 @@ function by the driver. ...@@ -21,8 +21,8 @@ function by the driver.
In many cases the struct :c:type:`v4l2_fh` will be embedded in a larger In many cases the struct :c:type:`v4l2_fh` will be embedded in a larger
structure. In that case you should call: structure. In that case you should call:
#) :c:func:`v4l2_fh_init` and :cpp:func:`v4l2_fh_add` in ``open()`` #) :c:func:`v4l2_fh_init` and :c:func:`v4l2_fh_add` in ``open()``
#) :c:func:`v4l2_fh_del` and :cpp:func:`v4l2_fh_exit` in ``release()`` #) :c:func:`v4l2_fh_del` and :c:func:`v4l2_fh_exit` in ``release()``
Drivers can extract their own file handle structure by using the container_of Drivers can extract their own file handle structure by using the container_of
macro. macro.
......
...@@ -27,7 +27,7 @@ methods. ...@@ -27,7 +27,7 @@ methods.
Bridges might also need to store per-subdev private data, such as a pointer to Bridges might also need to store per-subdev private data, such as a pointer to
bridge-specific per-subdev private data. The :c:type:`v4l2_subdev` structure bridge-specific per-subdev private data. The :c:type:`v4l2_subdev` structure
provides host private data for that purpose that can be accessed with provides host private data for that purpose that can be accessed with
:c:func:`v4l2_get_subdev_hostdata` and :cpp:func:`v4l2_set_subdev_hostdata`. :c:func:`v4l2_get_subdev_hostdata` and :c:func:`v4l2_set_subdev_hostdata`.
From the bridge driver perspective, you load the sub-device module and somehow From the bridge driver perspective, you load the sub-device module and somehow
obtain the :c:type:`v4l2_subdev` pointer. For i2c devices this is easy: you call obtain the :c:type:`v4l2_subdev` pointer. For i2c devices this is easy: you call
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: int close( int fd ) .. c:function:: int close( int fd )
Arguments Arguments
========= =========
......
...@@ -19,7 +19,7 @@ Synopsis ...@@ -19,7 +19,7 @@ Synopsis
#include <sys/ioctl.h> #include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp ) .. c:function:: int ioctl( int fd, int request, void *argp )
Arguments Arguments
========= =========
......
...@@ -19,7 +19,7 @@ Synopsis ...@@ -19,7 +19,7 @@ Synopsis
#include <fcntl.h> #include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags ) .. c:function:: int open( const char *device_name, int flags )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <sys/poll.h> #include <sys/poll.h>
.. cpp:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout ) .. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ CEC_ADAP_G_CAPS - Query device capabilities ...@@ -14,7 +14,7 @@ CEC_ADAP_G_CAPS - Query device capabilities
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct cec_caps *argp ) .. c:function:: int ioctl( int fd, int request, struct cec_caps *argp )
Arguments Arguments
========= =========
......
...@@ -17,7 +17,7 @@ CEC_ADAP_G_LOG_ADDRS, CEC_ADAP_S_LOG_ADDRS - Get or set the logical addresses ...@@ -17,7 +17,7 @@ CEC_ADAP_G_LOG_ADDRS, CEC_ADAP_S_LOG_ADDRS - Get or set the logical addresses
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct cec_log_addrs *argp ) .. c:function:: int ioctl( int fd, int request, struct cec_log_addrs *argp )
Arguments Arguments
......
...@@ -17,7 +17,7 @@ CEC_ADAP_G_PHYS_ADDR, CEC_ADAP_S_PHYS_ADDR - Get or set the physical address ...@@ -17,7 +17,7 @@ CEC_ADAP_G_PHYS_ADDR, CEC_ADAP_S_PHYS_ADDR - Get or set the physical address
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u16 *argp ) .. c:function:: int ioctl( int fd, int request, __u16 *argp )
Arguments Arguments
========= =========
......
...@@ -13,7 +13,7 @@ CEC_G_MODE, CEC_S_MODE - Get or set exclusive use of the CEC adapter ...@@ -13,7 +13,7 @@ CEC_G_MODE, CEC_S_MODE - Get or set exclusive use of the CEC adapter
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *argp ) .. c:function:: int ioctl( int fd, int request, __u32 *argp )
Arguments Arguments
========= =========
......
...@@ -16,7 +16,7 @@ CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message ...@@ -16,7 +16,7 @@ CEC_RECEIVE, CEC_TRANSMIT - Receive or transmit a CEC message
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct cec_msg *argp ) .. c:function:: int ioctl( int fd, int request, struct cec_msg *argp )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ AUDIO_BILINGUAL_CHANNEL_SELECT ...@@ -15,7 +15,7 @@ AUDIO_BILINGUAL_CHANNEL_SELECT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_BILINGUAL_CHANNEL_SELECT, audio_channel_select_t) .. c:function:: int ioctl(int fd, int request = AUDIO_BILINGUAL_CHANNEL_SELECT, audio_channel_select_t)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_CHANNEL_SELECT ...@@ -15,7 +15,7 @@ AUDIO_CHANNEL_SELECT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CHANNEL_SELECT, audio_channel_select_t) .. c:function:: int ioctl(int fd, int request = AUDIO_CHANNEL_SELECT, audio_channel_select_t)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_CLEAR_BUFFER ...@@ -15,7 +15,7 @@ AUDIO_CLEAR_BUFFER
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CLEAR_BUFFER) .. c:function:: int ioctl(int fd, int request = AUDIO_CLEAR_BUFFER)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_CONTINUE ...@@ -15,7 +15,7 @@ AUDIO_CONTINUE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_CONTINUE) .. c:function:: int ioctl(int fd, int request = AUDIO_CONTINUE)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB audio close() ...@@ -15,7 +15,7 @@ DVB audio close()
Synopsis Synopsis
-------- --------
.. cpp:function:: int close(int fd) .. c:function:: int close(int fd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB audio open() ...@@ -15,7 +15,7 @@ DVB audio open()
Synopsis Synopsis
-------- --------
.. cpp:function:: int open(const char *deviceName, int flags) .. c:function:: int open(const char *deviceName, int flags)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB audio write() ...@@ -15,7 +15,7 @@ DVB audio write()
Synopsis Synopsis
-------- --------
.. cpp:function:: size_t write(int fd, const void *buf, size_t count) .. c:function:: size_t write(int fd, const void *buf, size_t count)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_GET_CAPABILITIES ...@@ -15,7 +15,7 @@ AUDIO_GET_CAPABILITIES
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_CAPABILITIES, unsigned int *cap) .. c:function:: int ioctl(int fd, int request = AUDIO_GET_CAPABILITIES, unsigned int *cap)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_GET_PTS ...@@ -15,7 +15,7 @@ AUDIO_GET_PTS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_PTS, __u64 *pts) .. c:function:: int ioctl(int fd, int request = AUDIO_GET_PTS, __u64 *pts)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_GET_STATUS ...@@ -15,7 +15,7 @@ AUDIO_GET_STATUS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_GET_STATUS, struct audio_status *status) .. c:function:: int ioctl(int fd, int request = AUDIO_GET_STATUS, struct audio_status *status)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_PAUSE ...@@ -15,7 +15,7 @@ AUDIO_PAUSE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_PAUSE) .. c:function:: int ioctl(int fd, int request = AUDIO_PAUSE)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_PLAY ...@@ -15,7 +15,7 @@ AUDIO_PLAY
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_PLAY) .. c:function:: int ioctl(int fd, int request = AUDIO_PLAY)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SELECT_SOURCE ...@@ -15,7 +15,7 @@ AUDIO_SELECT_SOURCE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SELECT_SOURCE, audio_stream_source_t source) .. c:function:: int ioctl(int fd, int request = AUDIO_SELECT_SOURCE, audio_stream_source_t source)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_ATTRIBUTES ...@@ -15,7 +15,7 @@ AUDIO_SET_ATTRIBUTES
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_ATTRIBUTES, audio_attributes_t attr ) .. c:function:: int ioctl(fd, int request = AUDIO_SET_ATTRIBUTES, audio_attributes_t attr )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_AV_SYNC ...@@ -15,7 +15,7 @@ AUDIO_SET_AV_SYNC
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_AV_SYNC, boolean state) .. c:function:: int ioctl(int fd, int request = AUDIO_SET_AV_SYNC, boolean state)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_BYPASS_MODE ...@@ -15,7 +15,7 @@ AUDIO_SET_BYPASS_MODE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_BYPASS_MODE, boolean mode) .. c:function:: int ioctl(int fd, int request = AUDIO_SET_BYPASS_MODE, boolean mode)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_EXT_ID ...@@ -15,7 +15,7 @@ AUDIO_SET_EXT_ID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_EXT_ID, int id) .. c:function:: int ioctl(fd, int request = AUDIO_SET_EXT_ID, int id)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_ID ...@@ -15,7 +15,7 @@ AUDIO_SET_ID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_ID, int id) .. c:function:: int ioctl(int fd, int request = AUDIO_SET_ID, int id)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_KARAOKE ...@@ -15,7 +15,7 @@ AUDIO_SET_KARAOKE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_KARAOKE, audio_karaoke_t *karaoke) .. c:function:: int ioctl(fd, int request = AUDIO_SET_KARAOKE, audio_karaoke_t *karaoke)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_MIXER ...@@ -15,7 +15,7 @@ AUDIO_SET_MIXER
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_MIXER, audio_mixer_t *mix) .. c:function:: int ioctl(int fd, int request = AUDIO_SET_MIXER, audio_mixer_t *mix)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_MUTE ...@@ -15,7 +15,7 @@ AUDIO_SET_MUTE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_SET_MUTE, boolean state) .. c:function:: int ioctl(int fd, int request = AUDIO_SET_MUTE, boolean state)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_SET_STREAMTYPE ...@@ -15,7 +15,7 @@ AUDIO_SET_STREAMTYPE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = AUDIO_SET_STREAMTYPE, int type) .. c:function:: int ioctl(fd, int request = AUDIO_SET_STREAMTYPE, int type)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ AUDIO_STOP ...@@ -15,7 +15,7 @@ AUDIO_STOP
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = AUDIO_STOP) .. c:function:: int ioctl(int fd, int request = AUDIO_STOP)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB CA close() ...@@ -15,7 +15,7 @@ DVB CA close()
Synopsis Synopsis
-------- --------
.. cpp:function:: int close(int fd) .. c:function:: int close(int fd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB CA open() ...@@ -15,7 +15,7 @@ DVB CA open()
Synopsis Synopsis
-------- --------
.. cpp:function:: int open(const char *deviceName, int flags) .. c:function:: int open(const char *deviceName, int flags)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_GET_CAP ...@@ -15,7 +15,7 @@ CA_GET_CAP
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_GET_CAP, ca_caps_t *) .. c:function:: int ioctl(fd, int request = CA_GET_CAP, ca_caps_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_GET_DESCR_INFO ...@@ -15,7 +15,7 @@ CA_GET_DESCR_INFO
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_GET_DESCR_INFO, ca_descr_info_t *) .. c:function:: int ioctl(fd, int request = CA_GET_DESCR_INFO, ca_descr_info_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_GET_MSG ...@@ -15,7 +15,7 @@ CA_GET_MSG
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_GET_MSG, ca_msg_t *) .. c:function:: int ioctl(fd, int request = CA_GET_MSG, ca_msg_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_GET_SLOT_INFO ...@@ -15,7 +15,7 @@ CA_GET_SLOT_INFO
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_GET_SLOT_INFO, ca_slot_info_t *) .. c:function:: int ioctl(fd, int request = CA_GET_SLOT_INFO, ca_slot_info_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_RESET ...@@ -15,7 +15,7 @@ CA_RESET
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_RESET) .. c:function:: int ioctl(fd, int request = CA_RESET)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_SEND_MSG ...@@ -15,7 +15,7 @@ CA_SEND_MSG
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_SEND_MSG, ca_msg_t *) .. c:function:: int ioctl(fd, int request = CA_SEND_MSG, ca_msg_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_SET_DESCR ...@@ -15,7 +15,7 @@ CA_SET_DESCR
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_SET_DESCR, ca_descr_t *) .. c:function:: int ioctl(fd, int request = CA_SET_DESCR, ca_descr_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ CA_SET_PID ...@@ -15,7 +15,7 @@ CA_SET_PID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = CA_SET_PID, ca_pid_t *) .. c:function:: int ioctl(fd, int request = CA_SET_PID, ca_pid_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_ADD_PID ...@@ -15,7 +15,7 @@ DMX_ADD_PID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = DMX_ADD_PID, __u16 *) .. c:function:: int ioctl(fd, int request = DMX_ADD_PID, __u16 *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB demux close() ...@@ -15,7 +15,7 @@ DVB demux close()
Synopsis Synopsis
-------- --------
.. cpp:function:: int close(int fd) .. c:function:: int close(int fd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB demux open() ...@@ -15,7 +15,7 @@ DVB demux open()
Synopsis Synopsis
-------- --------
.. cpp:function:: int open(const char *deviceName, int flags) .. c:function:: int open(const char *deviceName, int flags)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB demux read() ...@@ -15,7 +15,7 @@ DVB demux read()
Synopsis Synopsis
-------- --------
.. cpp:function:: size_t read(int fd, void *buf, size_t count) .. c:function:: size_t read(int fd, void *buf, size_t count)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DVB demux write() ...@@ -15,7 +15,7 @@ DVB demux write()
Synopsis Synopsis
-------- --------
.. cpp:function:: ssize_t write(int fd, const void *buf, size_t count) .. c:function:: ssize_t write(int fd, const void *buf, size_t count)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_GET_CAPS ...@@ -15,7 +15,7 @@ DMX_GET_CAPS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = DMX_GET_CAPS, dmx_caps_t *) .. c:function:: int ioctl(fd, int request = DMX_GET_CAPS, dmx_caps_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_GET_EVENT ...@@ -15,7 +15,7 @@ DMX_GET_EVENT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_GET_EVENT, struct dmx_event *ev) .. c:function:: int ioctl( int fd, int request = DMX_GET_EVENT, struct dmx_event *ev)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_GET_PES_PIDS ...@@ -15,7 +15,7 @@ DMX_GET_PES_PIDS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = DMX_GET_PES_PIDS, __u16[5]) .. c:function:: int ioctl(fd, int request = DMX_GET_PES_PIDS, __u16[5])
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_GET_STC ...@@ -15,7 +15,7 @@ DMX_GET_STC
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_GET_STC, struct dmx_stc *stc) .. c:function:: int ioctl( int fd, int request = DMX_GET_STC, struct dmx_stc *stc)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_REMOVE_PID ...@@ -15,7 +15,7 @@ DMX_REMOVE_PID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = DMX_REMOVE_PID, __u16 *) .. c:function:: int ioctl(fd, int request = DMX_REMOVE_PID, __u16 *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_SET_BUFFER_SIZE ...@@ -15,7 +15,7 @@ DMX_SET_BUFFER_SIZE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_BUFFER_SIZE, unsigned long size) .. c:function:: int ioctl( int fd, int request = DMX_SET_BUFFER_SIZE, unsigned long size)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_SET_FILTER ...@@ -15,7 +15,7 @@ DMX_SET_FILTER
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_FILTER, struct dmx_sct_filter_params *params) .. c:function:: int ioctl( int fd, int request = DMX_SET_FILTER, struct dmx_sct_filter_params *params)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_SET_PES_FILTER ...@@ -15,7 +15,7 @@ DMX_SET_PES_FILTER
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_SET_PES_FILTER, struct dmx_pes_filter_params *params) .. c:function:: int ioctl( int fd, int request = DMX_SET_PES_FILTER, struct dmx_pes_filter_params *params)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_SET_SOURCE ...@@ -15,7 +15,7 @@ DMX_SET_SOURCE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = DMX_SET_SOURCE, dmx_source_t *) .. c:function:: int ioctl(fd, int request = DMX_SET_SOURCE, dmx_source_t *)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_START ...@@ -15,7 +15,7 @@ DMX_START
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_START) .. c:function:: int ioctl( int fd, int request = DMX_START)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ DMX_STOP ...@@ -15,7 +15,7 @@ DMX_STOP
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl( int fd, int request = DMX_STOP) .. c:function:: int ioctl( int fd, int request = DMX_STOP)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_DISEQC_RECV_SLAVE_REPLY - Receives reply from a DiSEqC 2.0 command ...@@ -15,7 +15,7 @@ FE_DISEQC_RECV_SLAVE_REPLY - Receives reply from a DiSEqC 2.0 command
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_diseqc_slave_reply *argp ) .. c:function:: int ioctl( int fd, int request, struct dvb_diseqc_slave_reply *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_DISEQC_RESET_OVERLOAD - Restores the power to the antenna subsystem, if it wa ...@@ -15,7 +15,7 @@ FE_DISEQC_RESET_OVERLOAD - Restores the power to the antenna subsystem, if it wa
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, NULL ) .. c:function:: int ioctl( int fd, int request, NULL )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_DISEQC_SEND_BURST - Sends a 22KHz tone burst for 2x1 mini DiSEqC satellite se ...@@ -15,7 +15,7 @@ FE_DISEQC_SEND_BURST - Sends a 22KHz tone burst for 2x1 mini DiSEqC satellite se
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_mini_cmd *tone ) .. c:function:: int ioctl( int fd, int request, enum fe_sec_mini_cmd *tone )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_DISEQC_SEND_MASTER_CMD - Sends a DiSEqC command ...@@ -15,7 +15,7 @@ FE_DISEQC_SEND_MASTER_CMD - Sends a DiSEqC command
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_diseqc_master_cmd *argp ) .. c:function:: int ioctl( int fd, int request, struct dvb_diseqc_master_cmd *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_DISHNETWORK_SEND_LEGACY_CMD ...@@ -15,7 +15,7 @@ FE_DISHNETWORK_SEND_LEGACY_CMD
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = FE_DISHNETWORK_SEND_LEGACY_CMD, unsigned long cmd) .. c:function:: int ioctl(int fd, int request = FE_DISHNETWORK_SEND_LEGACY_CMD, unsigned long cmd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_ENABLE_HIGH_LNB_VOLTAGE - Select output DC level between normal LNBf voltages ...@@ -15,7 +15,7 @@ FE_ENABLE_HIGH_LNB_VOLTAGE - Select output DC level between normal LNBf voltages
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, unsigned int high ) .. c:function:: int ioctl( int fd, int request, unsigned int high )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_GET_EVENT ...@@ -15,7 +15,7 @@ FE_GET_EVENT
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = QPSK_GET_EVENT, struct dvb_frontend_event *ev) .. c:function:: int ioctl(int fd, int request = QPSK_GET_EVENT, struct dvb_frontend_event *ev)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_GET_FRONTEND ...@@ -15,7 +15,7 @@ FE_GET_FRONTEND
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = FE_GET_FRONTEND, struct dvb_frontend_parameters *p) .. c:function:: int ioctl(int fd, int request = FE_GET_FRONTEND, struct dvb_frontend_parameters *p)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_GET_INFO - Query DVB frontend capabilities and returns information about the ...@@ -15,7 +15,7 @@ FE_GET_INFO - Query DVB frontend capabilities and returns information about the
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_frontend_info *argp ) .. c:function:: int ioctl( int fd, int request, struct dvb_frontend_info *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_SET_PROPERTY - FE_GET_PROPERTY - FE_SET_PROPERTY sets one or more frontend pr ...@@ -15,7 +15,7 @@ FE_SET_PROPERTY - FE_GET_PROPERTY - FE_SET_PROPERTY sets one or more frontend pr
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dtv_properties *argp ) .. c:function:: int ioctl( int fd, int request, struct dtv_properties *argp )
Arguments Arguments
......
...@@ -14,7 +14,7 @@ FE_READ_BER ...@@ -14,7 +14,7 @@ FE_READ_BER
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = FE_READ_BER, uint32_t *ber) .. c:function:: int ioctl(int fd, int request = FE_READ_BER, uint32_t *ber)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_READ_SIGNAL_STRENGTH ...@@ -15,7 +15,7 @@ FE_READ_SIGNAL_STRENGTH
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request = FE_READ_SIGNAL_STRENGTH, uint16_t *strength) .. c:function:: int ioctl( int fd, int request = FE_READ_SIGNAL_STRENGTH, uint16_t *strength)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_READ_SNR ...@@ -15,7 +15,7 @@ FE_READ_SNR
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = FE_READ_SNR, int16_t *snr) .. c:function:: int ioctl(int fd, int request = FE_READ_SNR, int16_t *snr)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_READ_STATUS - Returns status information about the front-end. This call only ...@@ -15,7 +15,7 @@ FE_READ_STATUS - Returns status information about the front-end. This call only
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, unsigned int *status ) .. c:function:: int ioctl( int fd, int request, unsigned int *status )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_READ_UNCORRECTED_BLOCKS ...@@ -15,7 +15,7 @@ FE_READ_UNCORRECTED_BLOCKS
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request =FE_READ_UNCORRECTED_BLOCKS, uint32_t *ublocks) .. c:function:: int ioctl( int fd, int request =FE_READ_UNCORRECTED_BLOCKS, uint32_t *ublocks)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_SET_FRONTEND_TUNE_MODE - Allow setting tuner mode flags to the frontend. ...@@ -15,7 +15,7 @@ FE_SET_FRONTEND_TUNE_MODE - Allow setting tuner mode flags to the frontend.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, unsigned int flags ) .. c:function:: int ioctl( int fd, int request, unsigned int flags )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_SET_FRONTEND ...@@ -15,7 +15,7 @@ FE_SET_FRONTEND
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl(int fd, int request = FE_SET_FRONTEND, struct dvb_frontend_parameters *p) .. c:function:: int ioctl(int fd, int request = FE_SET_FRONTEND, struct dvb_frontend_parameters *p)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_SET_TONE - Sets/resets the generation of the continuous 22kHz tone. ...@@ -15,7 +15,7 @@ FE_SET_TONE - Sets/resets the generation of the continuous 22kHz tone.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_tone_mode *tone ) .. c:function:: int ioctl( int fd, int request, enum fe_sec_tone_mode *tone )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ FE_SET_VOLTAGE - Allow setting the DC level sent to the antenna subsystem. ...@@ -15,7 +15,7 @@ FE_SET_VOLTAGE - Allow setting the DC level sent to the antenna subsystem.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, enum fe_sec_voltage *voltage ) .. c:function:: int ioctl( int fd, int request, enum fe_sec_voltage *voltage )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: int close( int fd ) .. c:function:: int close( int fd )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h> #include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags ) .. c:function:: int open( const char *device_name, int flags )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ NET_ADD_IF - Creates a new network interface for a given Packet ID. ...@@ -15,7 +15,7 @@ NET_ADD_IF - Creates a new network interface for a given Packet ID.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if ) .. c:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ NET_GET_IF - Read the configuration data of an interface created via - :ref:`NET ...@@ -15,7 +15,7 @@ NET_GET_IF - Read the configuration data of an interface created via - :ref:`NET
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if ) .. c:function:: int ioctl( int fd, int request, struct dvb_net_if *net_if )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ NET_REMOVE_IF - Removes a network interface. ...@@ -15,7 +15,7 @@ NET_REMOVE_IF - Removes a network interface.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, int ifnum ) .. c:function:: int ioctl( int fd, int request, int ifnum )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_CLEAR_BUFFER ...@@ -15,7 +15,7 @@ VIDEO_CLEAR_BUFFER
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_CLEAR_BUFFER) .. c:function:: int ioctl(fd, int request = VIDEO_CLEAR_BUFFER)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_COMMAND ...@@ -15,7 +15,7 @@ VIDEO_COMMAND
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_COMMAND, struct video_command *cmd) .. c:function:: int ioctl(int fd, int request = VIDEO_COMMAND, struct video_command *cmd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_CONTINUE ...@@ -15,7 +15,7 @@ VIDEO_CONTINUE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_CONTINUE) .. c:function:: int ioctl(fd, int request = VIDEO_CONTINUE)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_FAST_FORWARD ...@@ -15,7 +15,7 @@ VIDEO_FAST_FORWARD
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_FAST_FORWARD, int nFrames) .. c:function:: int ioctl(fd, int request = VIDEO_FAST_FORWARD, int nFrames)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ dvb video close() ...@@ -15,7 +15,7 @@ dvb video close()
Synopsis Synopsis
-------- --------
.. cpp:function:: int close(int fd) .. c:function:: int close(int fd)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ dvb video open() ...@@ -15,7 +15,7 @@ dvb video open()
Synopsis Synopsis
-------- --------
.. cpp:function:: int open(const char *deviceName, int flags) .. c:function:: int open(const char *deviceName, int flags)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_FREEZE ...@@ -15,7 +15,7 @@ VIDEO_FREEZE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_FREEZE) .. c:function:: int ioctl(fd, int request = VIDEO_FREEZE)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ dvb video write() ...@@ -15,7 +15,7 @@ dvb video write()
Synopsis Synopsis
-------- --------
.. cpp:function:: size_t write(int fd, const void *buf, size_t count) .. c:function:: size_t write(int fd, const void *buf, size_t count)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_CAPABILITIES ...@@ -15,7 +15,7 @@ VIDEO_GET_CAPABILITIES
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_CAPABILITIES, unsigned int *cap) .. c:function:: int ioctl(fd, int request = VIDEO_GET_CAPABILITIES, unsigned int *cap)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_EVENT ...@@ -15,7 +15,7 @@ VIDEO_GET_EVENT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_EVENT, struct video_event *ev) .. c:function:: int ioctl(fd, int request = VIDEO_GET_EVENT, struct video_event *ev)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_COUNT ...@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_COUNT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_COUNT, __u64 *pts) .. c:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_COUNT, __u64 *pts)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_RATE ...@@ -15,7 +15,7 @@ VIDEO_GET_FRAME_RATE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_RATE, unsigned int *rate) .. c:function:: int ioctl(int fd, int request = VIDEO_GET_FRAME_RATE, unsigned int *rate)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_NAVI ...@@ -15,7 +15,7 @@ VIDEO_GET_NAVI
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_NAVI , video_navi_pack_t *navipack) .. c:function:: int ioctl(fd, int request = VIDEO_GET_NAVI , video_navi_pack_t *navipack)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_PTS ...@@ -15,7 +15,7 @@ VIDEO_GET_PTS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_PTS, __u64 *pts) .. c:function:: int ioctl(int fd, int request = VIDEO_GET_PTS, __u64 *pts)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_SIZE ...@@ -15,7 +15,7 @@ VIDEO_GET_SIZE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_GET_SIZE, video_size_t *size) .. c:function:: int ioctl(int fd, int request = VIDEO_GET_SIZE, video_size_t *size)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_GET_STATUS ...@@ -15,7 +15,7 @@ VIDEO_GET_STATUS
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_GET_STATUS, struct video_status *status) .. c:function:: int ioctl(fd, int request = VIDEO_GET_STATUS, struct video_status *status)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_PLAY ...@@ -15,7 +15,7 @@ VIDEO_PLAY
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_PLAY) .. c:function:: int ioctl(fd, int request = VIDEO_PLAY)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SELECT_SOURCE ...@@ -15,7 +15,7 @@ VIDEO_SELECT_SOURCE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SELECT_SOURCE, video_stream_source_t source) .. c:function:: int ioctl(fd, int request = VIDEO_SELECT_SOURCE, video_stream_source_t source)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_ATTRIBUTES ...@@ -15,7 +15,7 @@ VIDEO_SET_ATTRIBUTES
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_ATTRIBUTE ,video_attributes_t vattr) .. c:function:: int ioctl(fd, int request = VIDEO_SET_ATTRIBUTE ,video_attributes_t vattr)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_BLANK ...@@ -15,7 +15,7 @@ VIDEO_SET_BLANK
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_BLANK, boolean mode) .. c:function:: int ioctl(fd, int request = VIDEO_SET_BLANK, boolean mode)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_DISPLAY_FORMAT ...@@ -15,7 +15,7 @@ VIDEO_SET_DISPLAY_FORMAT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_DISPLAY_FORMAT, video_display_format_t format) .. c:function:: int ioctl(fd, int request = VIDEO_SET_DISPLAY_FORMAT, video_display_format_t format)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_FORMAT ...@@ -15,7 +15,7 @@ VIDEO_SET_FORMAT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_FORMAT, video_format_t format) .. c:function:: int ioctl(fd, int request = VIDEO_SET_FORMAT, video_format_t format)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_HIGHLIGHT ...@@ -15,7 +15,7 @@ VIDEO_SET_HIGHLIGHT
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_HIGHLIGHT ,video_highlight_t *vhilite) .. c:function:: int ioctl(fd, int request = VIDEO_SET_HIGHLIGHT ,video_highlight_t *vhilite)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_ID ...@@ -15,7 +15,7 @@ VIDEO_SET_ID
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_SET_ID, int id) .. c:function:: int ioctl(int fd, int request = VIDEO_SET_ID, int id)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_SPU_PALETTE ...@@ -15,7 +15,7 @@ VIDEO_SET_SPU_PALETTE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SPU_PALETTE, video_spu_palette_t *palette ) .. c:function:: int ioctl(fd, int request = VIDEO_SET_SPU_PALETTE, video_spu_palette_t *palette )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_SPU ...@@ -15,7 +15,7 @@ VIDEO_SET_SPU
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SPU , video_spu_t *spu) .. c:function:: int ioctl(fd, int request = VIDEO_SET_SPU , video_spu_t *spu)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_STREAMTYPE ...@@ -15,7 +15,7 @@ VIDEO_SET_STREAMTYPE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_STREAMTYPE, int type) .. c:function:: int ioctl(fd, int request = VIDEO_SET_STREAMTYPE, int type)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SET_SYSTEM ...@@ -15,7 +15,7 @@ VIDEO_SET_SYSTEM
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SET_SYSTEM , video_system_t system) .. c:function:: int ioctl(fd, int request = VIDEO_SET_SYSTEM , video_system_t system)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_SLOWMOTION ...@@ -15,7 +15,7 @@ VIDEO_SLOWMOTION
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_SLOWMOTION, int nFrames) .. c:function:: int ioctl(fd, int request = VIDEO_SLOWMOTION, int nFrames)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_STILLPICTURE ...@@ -15,7 +15,7 @@ VIDEO_STILLPICTURE
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_STILLPICTURE, struct video_still_picture *sp) .. c:function:: int ioctl(fd, int request = VIDEO_STILLPICTURE, struct video_still_picture *sp)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_STOP ...@@ -15,7 +15,7 @@ VIDEO_STOP
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(fd, int request = VIDEO_STOP, boolean mode) .. c:function:: int ioctl(fd, int request = VIDEO_STOP, boolean mode)
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDEO_TRY_COMMAND ...@@ -15,7 +15,7 @@ VIDEO_TRY_COMMAND
Synopsis Synopsis
-------- --------
.. cpp:function:: int ioctl(int fd, int request = VIDEO_TRY_COMMAND, struct video_command *cmd) .. c:function:: int ioctl(int fd, int request = VIDEO_TRY_COMMAND, struct video_command *cmd)
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: int close( int fd ) .. c:function:: int close( int fd )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <sys/ioctl.h> #include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp ) .. c:function:: int ioctl( int fd, int request, void *argp )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h> #include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags ) .. c:function:: int open( const char *device_name, int flags )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ MEDIA_IOC_DEVICE_INFO - Query device information ...@@ -15,7 +15,7 @@ MEDIA_IOC_DEVICE_INFO - Query device information
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct media_device_info *argp ) .. c:function:: int ioctl( int fd, int request, struct media_device_info *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_ENTITIES - Enumerate entities and their properties ...@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_ENTITIES - Enumerate entities and their properties
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct media_entity_desc *argp ) .. c:function:: int ioctl( int fd, int request, struct media_entity_desc *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_LINKS - Enumerate all pads and links for a given entity ...@@ -15,7 +15,7 @@ MEDIA_IOC_ENUM_LINKS - Enumerate all pads and links for a given entity
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct media_links_enum *argp ) .. c:function:: int ioctl( int fd, int request, struct media_links_enum *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties ...@@ -15,7 +15,7 @@ MEDIA_IOC_G_TOPOLOGY - Enumerate the graph topology and graph element properties
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct media_v2_topology *argp ) .. c:function:: int ioctl( int fd, int request, struct media_v2_topology *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ MEDIA_IOC_SETUP_LINK - Modify the properties of a link ...@@ -15,7 +15,7 @@ MEDIA_IOC_SETUP_LINK - Modify the properties of a link
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct media_link_desc *argp ) .. c:function:: int ioctl( int fd, int request, struct media_link_desc *argp )
Arguments Arguments
......
...@@ -14,7 +14,7 @@ LIRC_GET_FEATURES - Get the underlying hardware device's features ...@@ -14,7 +14,7 @@ LIRC_GET_FEATURES - Get the underlying hardware device's features
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *features) .. c:function:: int ioctl( int fd, int request, __u32 *features)
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_GET_LENGTH - Retrieves the code length in bits. ...@@ -14,7 +14,7 @@ LIRC_GET_LENGTH - Retrieves the code length in bits.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *length ) .. c:function:: int ioctl( int fd, int request, __u32 *length )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ LIRC_GET_REC_MODE/LIRC_GET_REC_MODE - Get/set supported receive modes. ...@@ -15,7 +15,7 @@ LIRC_GET_REC_MODE/LIRC_GET_REC_MODE - Get/set supported receive modes.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 rx_modes) .. c:function:: int ioctl( int fd, int request, __u32 rx_modes)
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_GET_REC_RESOLUTION - Obtain the value of receive resolution, in microsecond ...@@ -14,7 +14,7 @@ LIRC_GET_REC_RESOLUTION - Obtain the value of receive resolution, in microsecond
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *microseconds) .. c:function:: int ioctl( int fd, int request, __u32 *microseconds)
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ LIRC_GET_SEND_MODE/LIRC_SET_SEND_MODE - Get/set supported transmit mode. ...@@ -15,7 +15,7 @@ LIRC_GET_SEND_MODE/LIRC_SET_SEND_MODE - Get/set supported transmit mode.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *tx_modes ) .. c:function:: int ioctl( int fd, int request, __u32 *tx_modes )
Arguments Arguments
========= =========
......
...@@ -16,7 +16,7 @@ range for IR receive. ...@@ -16,7 +16,7 @@ range for IR receive.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *timeout) .. c:function:: int ioctl( int fd, int request, __u32 *timeout)
Arguments Arguments
========= =========
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: ssize_t read( int fd, void *buf, size_t count ) .. c:function:: ssize_t read( int fd, void *buf, size_t count )
Arguments Arguments
......
...@@ -14,7 +14,7 @@ LIRC_SET_MEASURE_CARRIER_MODE - enable or disable measure mode ...@@ -14,7 +14,7 @@ LIRC_SET_MEASURE_CARRIER_MODE - enable or disable measure mode
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable ) .. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ IR receive. ...@@ -15,7 +15,7 @@ IR receive.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency ) .. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ LIRC_SET_REC_CARRIER - Set carrier used to modulate IR receive. ...@@ -15,7 +15,7 @@ LIRC_SET_REC_CARRIER - Set carrier used to modulate IR receive.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency ) .. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT_REPORTS - enable or disable timeout reports for IR receive ...@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT_REPORTS - enable or disable timeout reports for IR receive
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable ) .. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT - sets the integer value for IR inactivity timeout. ...@@ -14,7 +14,7 @@ LIRC_SET_REC_TIMEOUT - sets the integer value for IR inactivity timeout.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *timeout ) .. c:function:: int ioctl( int fd, int request, __u32 *timeout )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ LIRC_SET_SEND_CARRIER - Set send carrier used to modulate IR TX. ...@@ -15,7 +15,7 @@ LIRC_SET_SEND_CARRIER - Set send carrier used to modulate IR TX.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *frequency ) .. c:function:: int ioctl( int fd, int request, __u32 *frequency )
Arguments Arguments
========= =========
......
...@@ -15,7 +15,7 @@ IR transmit. ...@@ -15,7 +15,7 @@ IR transmit.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *duty_cycle) .. c:function:: int ioctl( int fd, int request, __u32 *duty_cycle)
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_SET_TRANSMITTER_MASK - Enables send codes on a given set of transmitters ...@@ -14,7 +14,7 @@ LIRC_SET_TRANSMITTER_MASK - Enables send codes on a given set of transmitters
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *mask ) .. c:function:: int ioctl( int fd, int request, __u32 *mask )
Arguments Arguments
========= =========
......
...@@ -14,7 +14,7 @@ LIRC_SET_WIDEBAND_RECEIVER - enable wide band receiver. ...@@ -14,7 +14,7 @@ LIRC_SET_WIDEBAND_RECEIVER - enable wide band receiver.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, __u32 *enable ) .. c:function:: int ioctl( int fd, int request, __u32 *enable )
Arguments Arguments
========= =========
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: ssize_t write( int fd, void *buf, size_t count ) .. c:function:: ssize_t write( int fd, void *buf, size_t count )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: int close( int fd ) .. c:function:: int close( int fd )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <sys/ioctl.h> #include <sys/ioctl.h>
.. cpp:function:: int ioctl( int fd, int request, void *argp ) .. c:function:: int ioctl( int fd, int request, void *argp )
Arguments Arguments
......
...@@ -21,7 +21,7 @@ Synopsis ...@@ -21,7 +21,7 @@ Synopsis
#include <sys/mman.h> #include <sys/mman.h>
.. cpp:function:: void *mmap( void *start, size_t length, int prot, int flags, int fd, off_t offset ) .. c:function:: void *mmap( void *start, size_t length, int prot, int flags, int fd, off_t offset )
Arguments Arguments
......
...@@ -21,7 +21,7 @@ Synopsis ...@@ -21,7 +21,7 @@ Synopsis
#include <sys/mman.h> #include <sys/mman.h>
.. cpp:function:: int munmap( void *start, size_t length ) .. c:function:: int munmap( void *start, size_t length )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <fcntl.h> #include <fcntl.h>
.. cpp:function:: int open( const char *device_name, int flags ) .. c:function:: int open( const char *device_name, int flags )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <sys/poll.h> #include <sys/poll.h>
.. cpp:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout ) .. c:function:: int poll( struct pollfd *ufds, unsigned int nfds, int timeout )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: ssize_t read( int fd, void *buf, size_t count ) .. c:function:: ssize_t read( int fd, void *buf, size_t count )
Arguments Arguments
......
...@@ -22,7 +22,7 @@ Synopsis ...@@ -22,7 +22,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: int select( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout ) .. c:function:: int select( int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, struct timeval *timeout )
Arguments Arguments
......
...@@ -20,7 +20,7 @@ Synopsis ...@@ -20,7 +20,7 @@ Synopsis
#include <unistd.h> #include <unistd.h>
.. cpp:function:: ssize_t write( int fd, void *buf, size_t count ) .. c:function:: ssize_t write( int fd, void *buf, size_t count )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_CREATE_BUFS - Create buffers for Memory Mapped or User Pointer or DMA Buf ...@@ -15,7 +15,7 @@ VIDIOC_CREATE_BUFS - Create buffers for Memory Mapped or User Pointer or DMA Buf
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_create_buffers *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_create_buffers *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_CROPCAP - Information about the video cropping and scaling abilities ...@@ -15,7 +15,7 @@ VIDIOC_CROPCAP - Information about the video cropping and scaling abilities
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_cropcap *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_cropcap *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_DBG_G_CHIP_INFO - Identify the chips on a TV card ...@@ -15,7 +15,7 @@ VIDIOC_DBG_G_CHIP_INFO - Identify the chips on a TV card
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dbg_chip_info *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_dbg_chip_info *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_DBG_G_REGISTER - VIDIOC_DBG_S_REGISTER - Read or write hardware registers ...@@ -15,9 +15,9 @@ VIDIOC_DBG_G_REGISTER - VIDIOC_DBG_S_REGISTER - Read or write hardware registers
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dbg_register *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_dbg_register *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_dbg_register *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_dbg_register *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_DECODER_CMD - VIDIOC_TRY_DECODER_CMD - Execute an decoder command ...@@ -15,7 +15,7 @@ VIDIOC_DECODER_CMD - VIDIOC_TRY_DECODER_CMD - Execute an decoder command
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_decoder_cmd *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_decoder_cmd *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_DQEVENT - Dequeue event ...@@ -15,7 +15,7 @@ VIDIOC_DQEVENT - Dequeue event
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_event *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_event *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_DV_TIMINGS_CAP - VIDIOC_SUBDEV_DV_TIMINGS_CAP - The capabilities of the D ...@@ -15,7 +15,7 @@ VIDIOC_DV_TIMINGS_CAP - VIDIOC_SUBDEV_DV_TIMINGS_CAP - The capabilities of the D
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings_cap *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings_cap *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENCODER_CMD - VIDIOC_TRY_ENCODER_CMD - Execute an encoder command ...@@ -15,7 +15,7 @@ VIDIOC_ENCODER_CMD - VIDIOC_TRY_ENCODER_CMD - Execute an encoder command
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_encoder_cmd *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_encoder_cmd *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUM_DV_TIMINGS - VIDIOC_SUBDEV_ENUM_DV_TIMINGS - Enumerate supported Dig ...@@ -15,7 +15,7 @@ VIDIOC_ENUM_DV_TIMINGS - VIDIOC_SUBDEV_ENUM_DV_TIMINGS - Enumerate supported Dig
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_enum_dv_timings *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_enum_dv_timings *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FMT - Enumerate image formats ...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FMT - Enumerate image formats
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_fmtdesc *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_fmtdesc *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMEINTERVALS - Enumerate frame intervals ...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMEINTERVALS - Enumerate frame intervals
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frmivalenum *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_frmivalenum *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMESIZES - Enumerate frame sizes ...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FRAMESIZES - Enumerate frame sizes
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frmsizeenum *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_frmsizeenum *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FREQ_BANDS - Enumerate supported frequency bands ...@@ -15,7 +15,7 @@ VIDIOC_ENUM_FREQ_BANDS - Enumerate supported frequency bands
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frequency_band *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_frequency_band *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDIO - Enumerate audio inputs ...@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDIO - Enumerate audio inputs
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audio *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDOUT - Enumerate audio outputs ...@@ -15,7 +15,7 @@ VIDIOC_ENUMAUDOUT - Enumerate audio outputs
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUMINPUT - Enumerate video inputs ...@@ -15,7 +15,7 @@ VIDIOC_ENUMINPUT - Enumerate video inputs
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_input *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_input *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUMOUTPUT - Enumerate video outputs ...@@ -15,7 +15,7 @@ VIDIOC_ENUMOUTPUT - Enumerate video outputs
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_output *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_output *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_ENUMSTD - Enumerate supported video standards ...@@ -15,7 +15,7 @@ VIDIOC_ENUMSTD - Enumerate supported video standards
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_standard *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_standard *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_EXPBUF - Export a buffer as a DMABUF file descriptor. ...@@ -15,7 +15,7 @@ VIDIOC_EXPBUF - Export a buffer as a DMABUF file descriptor.
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_exportbuffer *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_exportbuffer *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_AUDIO - VIDIOC_S_AUDIO - Query or select the current audio input and it ...@@ -15,9 +15,9 @@ VIDIOC_G_AUDIO - VIDIOC_S_AUDIO - Query or select the current audio input and it
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audio *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_audio *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_audio *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_audio *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_AUDOUT - VIDIOC_S_AUDOUT - Query or select the current audio output ...@@ -15,9 +15,9 @@ VIDIOC_G_AUDOUT - VIDIOC_S_AUDOUT - Query or select the current audio output
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_audioout *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_audioout *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_audioout *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_CROP - VIDIOC_S_CROP - Get or set the current cropping rectangle ...@@ -15,9 +15,9 @@ VIDIOC_G_CROP - VIDIOC_S_CROP - Get or set the current cropping rectangle
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_crop *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_crop *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_crop *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_crop *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_CTRL - VIDIOC_S_CTRL - Get or set the value of a control ...@@ -15,7 +15,7 @@ VIDIOC_G_CTRL - VIDIOC_S_CTRL - Get or set the value of a control
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_control *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_control *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_DV_TIMINGS - VIDIOC_S_DV_TIMINGS - VIDIOC_SUBDEV_G_DV_TIMINGS - VIDIOC_ ...@@ -15,7 +15,7 @@ VIDIOC_G_DV_TIMINGS - VIDIOC_S_DV_TIMINGS - VIDIOC_SUBDEV_G_DV_TIMINGS - VIDIOC_
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_EDID - VIDIOC_S_EDID - VIDIOC_SUBDEV_G_EDID - VIDIOC_SUBDEV_S_EDID - Ge ...@@ -15,7 +15,7 @@ VIDIOC_G_EDID - VIDIOC_S_EDID - VIDIOC_SUBDEV_G_EDID - VIDIOC_SUBDEV_S_EDID - Ge
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_edid *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_edid *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_ENC_INDEX - Get meta data about a compressed video stream ...@@ -15,7 +15,7 @@ VIDIOC_G_ENC_INDEX - Get meta data about a compressed video stream
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_enc_idx *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_enc_idx *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_EXT_CTRLS - VIDIOC_S_EXT_CTRLS - VIDIOC_TRY_EXT_CTRLS - Get or set the ...@@ -15,7 +15,7 @@ VIDIOC_G_EXT_CTRLS - VIDIOC_S_EXT_CTRLS - VIDIOC_TRY_EXT_CTRLS - Get or set the
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_ext_controls *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_ext_controls *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_FBUF - VIDIOC_S_FBUF - Get or set frame buffer overlay parameters ...@@ -15,9 +15,9 @@ VIDIOC_G_FBUF - VIDIOC_S_FBUF - Get or set frame buffer overlay parameters
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_framebuffer *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_framebuffer *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_framebuffer *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_framebuffer *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_FMT - VIDIOC_S_FMT - VIDIOC_TRY_FMT - Get or set the data format, try a ...@@ -15,7 +15,7 @@ VIDIOC_G_FMT - VIDIOC_S_FMT - VIDIOC_TRY_FMT - Get or set the data format, try a
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_format *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_format *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_FREQUENCY - VIDIOC_S_FREQUENCY - Get or set tuner or modulator radio fr ...@@ -15,9 +15,9 @@ VIDIOC_G_FREQUENCY - VIDIOC_S_FREQUENCY - Get or set tuner or modulator radio fr
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_frequency *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_frequency *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_frequency *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_frequency *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_INPUT - VIDIOC_S_INPUT - Query or select the current video input ...@@ -15,7 +15,7 @@ VIDIOC_G_INPUT - VIDIOC_S_INPUT - Query or select the current video input
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, int *argp ) .. c:function:: int ioctl( int fd, int request, int *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_JPEGCOMP - VIDIOC_S_JPEGCOMP ...@@ -15,9 +15,9 @@ VIDIOC_G_JPEGCOMP - VIDIOC_S_JPEGCOMP
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, v4l2_jpegcompression *argp ) .. c:function:: int ioctl( int fd, int request, v4l2_jpegcompression *argp )
.. cpp:function:: int ioctl( int fd, int request, const v4l2_jpegcompression *argp ) .. c:function:: int ioctl( int fd, int request, const v4l2_jpegcompression *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_MODULATOR - VIDIOC_S_MODULATOR - Get or set modulator attributes ...@@ -15,9 +15,9 @@ VIDIOC_G_MODULATOR - VIDIOC_S_MODULATOR - Get or set modulator attributes
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_modulator *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_modulator *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_modulator *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_modulator *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_OUTPUT - VIDIOC_S_OUTPUT - Query or select the current video output ...@@ -15,7 +15,7 @@ VIDIOC_G_OUTPUT - VIDIOC_S_OUTPUT - Query or select the current video output
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, int *argp ) .. c:function:: int ioctl( int fd, int request, int *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_PARM - VIDIOC_S_PARM - Get or set streaming parameters ...@@ -15,7 +15,7 @@ VIDIOC_G_PARM - VIDIOC_S_PARM - Get or set streaming parameters
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, v4l2_streamparm *argp ) .. c:function:: int ioctl( int fd, int request, v4l2_streamparm *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_PRIORITY - VIDIOC_S_PRIORITY - Query or request the access priority ass ...@@ -15,9 +15,9 @@ VIDIOC_G_PRIORITY - VIDIOC_S_PRIORITY - Query or request the access priority ass
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, enum v4l2_priority *argp ) .. c:function:: int ioctl( int fd, int request, enum v4l2_priority *argp )
.. cpp:function:: int ioctl( int fd, int request, const enum v4l2_priority *argp ) .. c:function:: int ioctl( int fd, int request, const enum v4l2_priority *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_SELECTION - VIDIOC_S_SELECTION - Get or set one of the selection rectan ...@@ -15,7 +15,7 @@ VIDIOC_G_SELECTION - VIDIOC_S_SELECTION - Get or set one of the selection rectan
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_selection *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_selection *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_G_SLICED_VBI_CAP - Query sliced VBI capabilities ...@@ -15,7 +15,7 @@ VIDIOC_G_SLICED_VBI_CAP - Query sliced VBI capabilities
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_sliced_vbi_cap *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_sliced_vbi_cap *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_STD - VIDIOC_S_STD - Query or select the video standard of the current ...@@ -15,9 +15,9 @@ VIDIOC_G_STD - VIDIOC_S_STD - Query or select the video standard of the current
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, v4l2_std_id *argp ) .. c:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
.. cpp:function:: int ioctl( int fd, int request, const v4l2_std_id *argp ) .. c:function:: int ioctl( int fd, int request, const v4l2_std_id *argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_G_TUNER - VIDIOC_S_TUNER - Get or set tuner attributes ...@@ -15,9 +15,9 @@ VIDIOC_G_TUNER - VIDIOC_S_TUNER - Get or set tuner attributes
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_tuner *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_tuner *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_tuner *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_tuner *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_LOG_STATUS - Log driver status information ...@@ -15,7 +15,7 @@ VIDIOC_LOG_STATUS - Log driver status information
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request ) .. c:function:: int ioctl( int fd, int request )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_OVERLAY - Start or stop video overlay ...@@ -15,7 +15,7 @@ VIDIOC_OVERLAY - Start or stop video overlay
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, const int *argp ) .. c:function:: int ioctl( int fd, int request, const int *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_PREPARE_BUF - Prepare a buffer for I/O ...@@ -15,7 +15,7 @@ VIDIOC_PREPARE_BUF - Prepare a buffer for I/O
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_QBUF - VIDIOC_DQBUF - Exchange a buffer with the driver ...@@ -15,7 +15,7 @@ VIDIOC_QBUF - VIDIOC_DQBUF - Exchange a buffer with the driver
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_QUERY_DV_TIMINGS - VIDIOC_SUBDEV_QUERY_DV_TIMINGS - Sense the DV preset r ...@@ -15,7 +15,7 @@ VIDIOC_QUERY_DV_TIMINGS - VIDIOC_SUBDEV_QUERY_DV_TIMINGS - Sense the DV preset r
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_dv_timings *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_QUERYBUF - Query the status of a buffer ...@@ -15,7 +15,7 @@ VIDIOC_QUERYBUF - Query the status of a buffer
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_buffer *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_QUERYCAP - Query device capabilities ...@@ -15,7 +15,7 @@ VIDIOC_QUERYCAP - Query device capabilities
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_capability *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_capability *argp )
Arguments Arguments
......
...@@ -15,11 +15,11 @@ VIDIOC_QUERYCTRL - VIDIOC_QUERY_EXT_CTRL - VIDIOC_QUERYMENU - Enumerate controls ...@@ -15,11 +15,11 @@ VIDIOC_QUERYCTRL - VIDIOC_QUERY_EXT_CTRL - VIDIOC_QUERYMENU - Enumerate controls
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_queryctrl *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_queryctrl *argp )
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_query_ext_ctrl *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_query_ext_ctrl *argp )
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_querymenu *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_querymenu *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_QUERYSTD - Sense the video standard received by the current input ...@@ -15,7 +15,7 @@ VIDIOC_QUERYSTD - Sense the video standard received by the current input
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, v4l2_std_id *argp ) .. c:function:: int ioctl( int fd, int request, v4l2_std_id *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_REQBUFS - Initiate Memory Mapping, User Pointer I/O or DMA buffer I/O ...@@ -15,7 +15,7 @@ VIDIOC_REQBUFS - Initiate Memory Mapping, User Pointer I/O or DMA buffer I/O
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_requestbuffers *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_requestbuffers *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_S_HW_FREQ_SEEK - Perform a hardware frequency seek ...@@ -15,7 +15,7 @@ VIDIOC_S_HW_FREQ_SEEK - Perform a hardware frequency seek
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_hw_freq_seek *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_hw_freq_seek *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_STREAMON - VIDIOC_STREAMOFF - Start or stop streaming I/O ...@@ -15,7 +15,7 @@ VIDIOC_STREAMON - VIDIOC_STREAMOFF - Start or stop streaming I/O
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, const int *argp ) .. c:function:: int ioctl( int fd, int request, const int *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL - Enumerate frame intervals ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_INTERVAL - Enumerate frame intervals
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval_enum * argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval_enum * argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_SIZE - Enumerate media bus frame sizes ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_FRAME_SIZE - Enumerate media bus frame sizes
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_size_enum * argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_size_enum * argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_ENUM_MBUS_CODE - Enumerate media bus formats
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_mbus_code_enum * argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_mbus_code_enum * argp )
Arguments Arguments
......
...@@ -15,9 +15,9 @@ VIDIOC_SUBDEV_G_CROP - VIDIOC_SUBDEV_S_CROP - Get or set the crop rectangle on a ...@@ -15,9 +15,9 @@ VIDIOC_SUBDEV_G_CROP - VIDIOC_SUBDEV_S_CROP - Get or set the crop rectangle on a
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_crop *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_crop *argp )
.. cpp:function:: int ioctl( int fd, int request, const struct v4l2_subdev_crop *argp ) .. c:function:: int ioctl( int fd, int request, const struct v4l2_subdev_crop *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FMT - VIDIOC_SUBDEV_S_FMT - Get or set the data format on a subd ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FMT - VIDIOC_SUBDEV_S_FMT - Get or set the data format on a subd
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_format *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_format *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FRAME_INTERVAL - VIDIOC_SUBDEV_S_FRAME_INTERVAL - Get or set the ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_FRAME_INTERVAL - VIDIOC_SUBDEV_S_FRAME_INTERVAL - Get or set the
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_frame_interval *argp )
Arguments Arguments
......
...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_SELECTION - VIDIOC_SUBDEV_S_SELECTION - Get or set selection rec ...@@ -15,7 +15,7 @@ VIDIOC_SUBDEV_G_SELECTION - VIDIOC_SUBDEV_S_SELECTION - Get or set selection rec
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_subdev_selection *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_subdev_selection *argp )
Arguments Arguments
......
...@@ -16,7 +16,7 @@ VIDIOC_SUBSCRIBE_EVENT - VIDIOC_UNSUBSCRIBE_EVENT - Subscribe or unsubscribe eve ...@@ -16,7 +16,7 @@ VIDIOC_SUBSCRIBE_EVENT - VIDIOC_UNSUBSCRIBE_EVENT - Subscribe or unsubscribe eve
Synopsis Synopsis
======== ========
.. cpp:function:: int ioctl( int fd, int request, struct v4l2_event_subscription *argp ) .. c:function:: int ioctl( int fd, int request, struct v4l2_event_subscription *argp )
Arguments Arguments
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment