summaryrefslogtreecommitdiff
path: root/dvb-spec/dvbapi/demux.tex
diff options
context:
space:
mode:
Diffstat (limited to 'dvb-spec/dvbapi/demux.tex')
-rw-r--r--dvb-spec/dvbapi/demux.tex12
1 files changed, 6 insertions, 6 deletions
diff --git a/dvb-spec/dvbapi/demux.tex b/dvb-spec/dvbapi/demux.tex
index 3607bbffc..5a8cc1e9a 100644
--- a/dvb-spec/dvbapi/demux.tex
+++ b/dvb-spec/dvbapi/demux.tex
@@ -6,7 +6,7 @@ It can be accessed through \texttt{/dev/ost/demux}.
\devsubsec{Demux Data Types}
\begin{verbatim}
-typedef uint16_t dvb_pid_t;
+typedef uint16_t uint16_t;
\end{verbatim}
@@ -96,7 +96,7 @@ typedef struct dmx_filter
\begin{verbatim}
struct dmx_sct_filter_params
{
- dvb_pid_t pid;
+ uint16_t pid;
dmx_filter_t filter;
uint32_t timeout;
uint32_t flags;
@@ -113,10 +113,10 @@ struct dmx_sct_filter_params
\begin{verbatim}
struct dmx_pes_filter_params
{
- dvb_pid_t pid;
+ uint16_t pid;
dmx_input_t input;
dmx_output_t output;
- dmx_pes_type_t pesType;
+ dmx_pes_type_t pes_type;
uint32_t flags;
};
\end{verbatim}
@@ -200,7 +200,7 @@ struct dmx_event
sized sections) by default. The size of this buffer may be changed by
using the DMX\_SET\_BUFFER\_SIZE function. If the buffer is not large enough,
or if the read operations are not performed fast enough, this may result
- in a buffer overflow error. In this case EBUFFEROVERFLOW will be returned,
+ in a buffer overflow error. In this case EOVERFLOW will be returned,
and the circular buffer will be emptied.
This call is blocking if there is no data to return, i.e. the process
will be put to sleep waiting for data, unless the O\_NONBLOCK flag is
@@ -222,7 +222,7 @@ struct dmx_event
EBADF & fd is not a valid open file descriptor.\\
ECRC & Last section had a CRC error - no data returned.
The buffer is flushed.\\
- EBUFFEROVERFLOW & \\
+ EOVERFLOW & \\
& The filtered data was not read from the buffer in
due time, resulting in non-read data being lost.
The buffer is flushed.\\