aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/media/uapi/dvb/dmx-fread.rst
blob: d25b19e4f6965333cf92b0d4a7f9956b07054f42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.. -*- coding: utf-8; mode: rst -*-

.. _dmx_fread:

================
DVB demux read()
================

Name
----

DVB demux read()


Synopsis
--------

.. cpp:function:: size_t read(int fd, void *buf, size_t count)


Arguments
---------

.. flat-table::
    :header-rows:  0
    :stub-columns: 0


    -  .. row 1

       -  int fd

       -  File descriptor returned by a previous call to open().

    -  .. row 2

       -  void \*buf

       -  Pointer to the buffer to be used for returned filtered data.

    -  .. row 3

       -  size_t count

       -  Size of buf.


Description
-----------

This system call returns filtered data, which might be section or PES
data. The filtered data is transferred from the driver’s internal
circular buffer to buf. The maximum amount of data to be transferred is
implied by count.


Return Value
------------

.. flat-table::
    :header-rows:  0
    :stub-columns: 0


    -  .. row 1

       -  ``EWOULDBLOCK``

       -  No data to return and O_NONBLOCK was specified.

    -  .. row 2

       -  ``EBADF``

       -  fd is not a valid open file descriptor.

    -  .. row 3

       -  ``ECRC``

       -  Last section had a CRC error - no data returned. The buffer is
	  flushed.

    -  .. row 4

       -  ``EOVERFLOW``

       -

    -  .. row 5

       -
       -  The filtered data was not read from the buffer in due time,
	  resulting in non-read data being lost. The buffer is flushed.

    -  .. row 6

       -  ``ETIMEDOUT``

       -  The section was not loaded within the stated timeout period. See
	  ioctl DMX_SET_FILTER for how to set a timeout.

    -  .. row 7

       -  ``EFAULT``

       -  The driver failed to write to the callers buffer due to an invalid
	  \*buf pointer.