staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / Documentation / media / uapi / dvb / video-fwrite.rst
blobeb35b79eb85c2dea3a77d03dac733f99cff5cd20
1 .. Permission is granted to copy, distribute and/or modify this
2 .. document under the terms of the GNU Free Documentation License,
3 .. Version 1.1 or any later version published by the Free Software
4 .. Foundation, with no Invariant Sections, no Front-Cover Texts
5 .. and no Back-Cover Texts. A copy of the license is included at
6 .. Documentation/media/uapi/fdl-appendix.rst.
7 ..
8 .. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
10 .. _video_fwrite:
12 =================
13 dvb video write()
14 =================
16 Name
17 ----
19 dvb video write()
21 .. attention:: This ioctl is deprecated.
23 Synopsis
24 --------
26 .. c:function:: size_t write(int fd, const void *buf, size_t count)
29 Arguments
30 ---------
32 .. flat-table::
33     :header-rows:  0
34     :stub-columns: 0
37     -  .. row 1
39        -  int fd
41        -  File descriptor returned by a previous call to open().
43     -  .. row 2
45        -  void \*buf
47        -  Pointer to the buffer containing the PES data.
49     -  .. row 3
51        -  size_t count
53        -  Size of buf.
56 Description
57 -----------
59 This system call can only be used if VIDEO_SOURCE_MEMORY is selected
60 in the ioctl call VIDEO_SELECT_SOURCE. The data provided shall be in
61 PES format, unless the capability allows other formats. If O_NONBLOCK
62 is not specified the function will block until buffer space is
63 available. The amount of data to be transferred is implied by count.
66 Return Value
67 ------------
69 .. flat-table::
70     :header-rows:  0
71     :stub-columns: 0
74     -  .. row 1
76        -  ``EPERM``
78        -  Mode VIDEO_SOURCE_MEMORY not selected.
80     -  .. row 2
82        -  ``ENOMEM``
84        -  Attempted to write more data than the internal buffer can hold.
86     -  .. row 3
88        -  ``EBADF``
90        -  fd is not a valid open file descriptor.