Merge tag 'staging-5.8-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh...
[linux/fpc-iii.git] / Documentation / userspace-api / media / dvb / audio-fwrite.rst
blob1482636f9b1afd446c6b70e50a44a54a5c643e99
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/userspace-api/media/fdl-appendix.rst.
7 ..
8 .. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
10 .. _audio_fwrite:
12 =========================
13 Digital TV audio write()
14 =========================
16 Name
17 ----
19 Digital TV audio write()
21 .. attention:: This ioctl is deprecated
23 Synopsis
24 --------
26 .. c:function:: size_t write(int fd, const void *buf, size_t count)
27     :name: dvb-audio-write
30 Arguments
31 ---------
33 .. flat-table::
34     :header-rows:  0
35     :stub-columns: 0
38     -  .. row 1
40        -  int fd
42        -  File descriptor returned by a previous call to open().
44     -  .. row 2
46        -  void \*buf
48        -  Pointer to the buffer containing the PES data.
50     -  .. row 3
52        -  size_t count
54        -  Size of buf.
57 Description
58 -----------
60 This system call can only be used if AUDIO_SOURCE_MEMORY is selected
61 in the ioctl call AUDIO_SELECT_SOURCE. The data provided shall be in
62 PES format. If O_NONBLOCK is not specified the function will block
63 until buffer space is available. The amount of data to be transferred is
64 implied by count.
67 Return Value
68 ------------
70 .. flat-table::
71     :header-rows:  0
72     :stub-columns: 0
75     -  .. row 1
77        -  ``EPERM``
79        -  Mode AUDIO_SOURCE_MEMORY not selected.
81     -  .. row 2
83        -  ``ENOMEM``
85        -  Attempted to write more data than the internal buffer can hold.
87     -  .. row 3
89        -  ``EBADF``
91        -  fd is not a valid open file descriptor.