提交 fb029093 编写于 作者: M Mauro Carvalho Chehab

[media] DocBook/demux.xml: Fix section references with dmx.h.xml

Make the reference links at dmx.h.xml to match the ones at demux.xml.

While here, also syncronizes the structures defined inside the API,
in order to match the current API.
Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
上级 cde291df
...@@ -150,7 +150,7 @@ DVB_DOCUMENTED = \ ...@@ -150,7 +150,7 @@ DVB_DOCUMENTED = \
-e "s,\(define\s\+\)\(DTV_[A-Z0-9_]\+\)\(\s\+[0-9]\+\),\1\<link linkend=\"\2\">\2\<\/link\>\3,g" \ -e "s,\(define\s\+\)\(DTV_[A-Z0-9_]\+\)\(\s\+[0-9]\+\),\1\<link linkend=\"\2\">\2\<\/link\>\3,g" \
-e "s,<link linkend=\".*\">\(DTV_IOCTL_MAX_MSGS\|dtv_cmds_h\)<\/link>,\1,g" \ -e "s,<link linkend=\".*\">\(DTV_IOCTL_MAX_MSGS\|dtv_cmds_h\)<\/link>,\1,g" \
-e ":a;s/\(linkend=\".*\)_\(.*\">\)/\1-\2/;ta" \ -e ":a;s/\(linkend=\".*\)_\(.*\">\)/\1-\2/;ta" \
-e "s,\(audio-mixer\|audio-karaoke\|audio-status\|ca-slot-info\|ca-descr-info\|ca-caps\|ca-msg\|ca-descr\|ca-pid\)-t,\1,g" \ -e "s,\(audio-mixer\|audio-karaoke\|audio-status\|ca-slot-info\|ca-descr-info\|ca-caps\|ca-msg\|ca-descr\|ca-pid\|dmx-filter\|dmx-caps\)-t,\1,g" \
-e "s,DTV-ISDBT-LAYER[A-C],DTV-ISDBT-LAYER,g" \ -e "s,DTV-ISDBT-LAYER[A-C],DTV-ISDBT-LAYER,g" \
-e "s,\(define\s\+\)\([A-Z0-9_]\+\)\(\s\+_IO\),\1\<link linkend=\"\2\">\2\<\/link\>\3,g" \ -e "s,\(define\s\+\)\([A-Z0-9_]\+\)\(\s\+_IO\),\1\<link linkend=\"\2\">\2\<\/link\>\3,g" \
......
...@@ -7,15 +7,19 @@ accessed by including <emphasis role="tt">linux/dvb/dmx.h</emphasis> in your app ...@@ -7,15 +7,19 @@ accessed by including <emphasis role="tt">linux/dvb/dmx.h</emphasis> in your app
<section id="dmx_types"> <section id="dmx_types">
<title>Demux Data Types</title> <title>Demux Data Types</title>
<section id="dmx_output_t"> <section id="dmx-output-t">
<title>dmx_output_t</title> <title>dmx_output_t</title>
<programlisting> <programlisting>
typedef enum typedef enum
{ {
DMX_OUT_DECODER, DMX_OUT_DECODER, /&#x22C6; Streaming directly to decoder. &#x22C6;/
DMX_OUT_TAP, DMX_OUT_TAP, /&#x22C6; Output going to a memory buffer &#x22C6;/
DMX_OUT_TS_TAP /&#x22C6; (to be retrieved via the read command).&#x22C6;/
} dmx_output_t; DMX_OUT_TS_TAP, /&#x22C6; Output multiplexed into a new TS &#x22C6;/
/&#x22C6; (to be retrieved by reading from the &#x22C6;/
/&#x22C6; logical DVR device). &#x22C6;/
DMX_OUT_TSDEMUX_TAP /&#x22C6; Like TS_TAP but retrieved from the DMX device &#x22C6;/
} dmx_output_t;
</programlisting> </programlisting>
<para><emphasis role="tt">DMX_OUT_TAP</emphasis> delivers the stream output to the demux device on which the ioctl is <para><emphasis role="tt">DMX_OUT_TAP</emphasis> delivers the stream output to the demux device on which the ioctl is
called. called.
...@@ -26,96 +30,95 @@ specified. ...@@ -26,96 +30,95 @@ specified.
</para> </para>
</section> </section>
<section id="dmx_input_t"> <section id="dmx-input-t">
<title>dmx_input_t</title> <title>dmx_input_t</title>
<programlisting> <programlisting>
typedef enum typedef enum
{ {
DMX_IN_FRONTEND, DMX_IN_FRONTEND, /&#x22C6; Input from a front-end device. &#x22C6;/
DMX_IN_DVR DMX_IN_DVR /&#x22C6; Input from the logical DVR device. &#x22C6;/
} dmx_input_t; } dmx_input_t;
</programlisting> </programlisting>
</section> </section>
<section id="dmx_pes_type_t"> <section id="dmx-pes-type-t">
<title>dmx_pes_type_t</title> <title>dmx_pes_type_t</title>
<programlisting> <programlisting>
typedef enum typedef enum
{ {
DMX_PES_AUDIO, DMX_PES_AUDIO0,
DMX_PES_VIDEO, DMX_PES_VIDEO0,
DMX_PES_TELETEXT, DMX_PES_TELETEXT0,
DMX_PES_SUBTITLE, DMX_PES_SUBTITLE0,
DMX_PES_PCR, DMX_PES_PCR0,
DMX_PES_OTHER
} dmx_pes_type_t;
</programlisting>
</section>
<section id="dmx_event_t"> DMX_PES_AUDIO1,
<title>dmx_event_t</title> DMX_PES_VIDEO1,
<programlisting> DMX_PES_TELETEXT1,
typedef enum DMX_PES_SUBTITLE1,
{ DMX_PES_PCR1,
DMX_SCRAMBLING_EV,
DMX_FRONTEND_EV
} dmx_event_t;
</programlisting>
</section>
<section id="dmx_scrambling_status_t"> DMX_PES_AUDIO2,
<title>dmx_scrambling_status_t</title> DMX_PES_VIDEO2,
<programlisting> DMX_PES_TELETEXT2,
typedef enum DMX_PES_SUBTITLE2,
{ DMX_PES_PCR2,
DMX_SCRAMBLING_OFF,
DMX_SCRAMBLING_ON DMX_PES_AUDIO3,
} dmx_scrambling_status_t; DMX_PES_VIDEO3,
DMX_PES_TELETEXT3,
DMX_PES_SUBTITLE3,
DMX_PES_PCR3,
DMX_PES_OTHER
} dmx_pes_type_t;
</programlisting> </programlisting>
</section> </section>
<section id="dmx_filter"> <section id="dmx-filter">
<title>struct dmx_filter</title> <title>struct dmx_filter</title>
<programlisting> <programlisting>
typedef struct dmx_filter typedef struct dmx_filter
{ {
uint8_t filter[DMX_FILTER_SIZE]; __u8 filter[DMX_FILTER_SIZE];
uint8_t mask[DMX_FILTER_SIZE]; __u8 mask[DMX_FILTER_SIZE];
} dmx_filter_t; __u8 mode[DMX_FILTER_SIZE];
} dmx_filter_t;
</programlisting> </programlisting>
</section> </section>
<section id="dmx_sct_filter_params"> <section id="dmx-sct-filter-params">
<title>struct dmx_sct_filter_params</title> <title>struct dmx_sct_filter_params</title>
<programlisting> <programlisting>
struct dmx_sct_filter_params struct dmx_sct_filter_params
{ {
uint16_t pid; __u16 pid;
dmx_filter_t filter; dmx_filter_t filter;
uint32_t timeout; __u32 timeout;
uint32_t flags; __u32 flags;
#define DMX_CHECK_CRC 1 #define DMX_CHECK_CRC 1
#define DMX_ONESHOT 2 #define DMX_ONESHOT 2
#define DMX_IMMEDIATE_START 4 #define DMX_IMMEDIATE_START 4
}; #define DMX_KERNEL_CLIENT 0x8000
};
</programlisting> </programlisting>
</section> </section>
<section id="dmx_pes_filter_params"> <section id="dmx-pes-filter-params">
<title>struct dmx_pes_filter_params</title> <title>struct dmx_pes_filter_params</title>
<programlisting> <programlisting>
struct dmx_pes_filter_params struct dmx_pes_filter_params
{ {
uint16_t pid; __u16 pid;
dmx_input_t input; dmx_input_t input;
dmx_output_t output; dmx_output_t output;
dmx_pes_type_t pes_type; dmx_pes_type_t pes_type;
uint32_t flags; __u32 flags;
}; };
</programlisting> </programlisting>
</section> </section>
<section id="dmx_event"> <section id="dmx-event">
<title>struct dmx_event</title> <title>struct dmx_event</title>
<programlisting> <programlisting>
struct dmx_event struct dmx_event
...@@ -130,14 +133,14 @@ specified. ...@@ -130,14 +133,14 @@ specified.
</programlisting> </programlisting>
</section> </section>
<section id="dmx_stc"> <section id="dmx-stc">
<title>struct dmx_stc</title> <title>struct dmx_stc</title>
<programlisting> <programlisting>
struct dmx_stc { struct dmx_stc {
unsigned int num; /&#x22C6; input : which STC? 0..N &#x22C6;/ unsigned int num; /&#x22C6; input : which STC? 0..N &#x22C6;/
unsigned int base; /&#x22C6; output: divisor for stc to get 90 kHz clock &#x22C6;/ unsigned int base; /&#x22C6; output: divisor for stc to get 90 kHz clock &#x22C6;/
uint64_t stc; /&#x22C6; output: stc in 'base'&#x22C6;90 kHz units &#x22C6;/ __u64 stc; /&#x22C6; output: stc in 'base'&#x22C6;90 kHz units &#x22C6;/
}; };
</programlisting> </programlisting>
</section> </section>
...@@ -491,7 +494,7 @@ specified. ...@@ -491,7 +494,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_start"> <section id="DMX_START">
<title>DMX_START</title> <title>DMX_START</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -556,7 +559,7 @@ specified. ...@@ -556,7 +559,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_stop"> <section id="DMX_STOP">
<title>DMX_STOP</title> <title>DMX_STOP</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -603,7 +606,7 @@ specified. ...@@ -603,7 +606,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_set_filter"> <section id="DMX_SET_FILTER">
<title>DMX_SET_FILTER</title> <title>DMX_SET_FILTER</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -673,7 +676,7 @@ specified. ...@@ -673,7 +676,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_set_pes_filter"> <section id="DMX_SET_PES_FILTER">
<title>DMX_SET_PES_FILTER</title> <title>DMX_SET_PES_FILTER</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -756,7 +759,7 @@ specified. ...@@ -756,7 +759,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dms_set_buffer_size"> <section id="DMX_SET_BUFFER_SIZE">
<title>DMX_SET_BUFFER_SIZE</title> <title>DMX_SET_BUFFER_SIZE</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -819,7 +822,7 @@ specified. ...@@ -819,7 +822,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_get_event"> <section id="DMX_GET_EVENT">
<title>DMX_GET_EVENT</title> <title>DMX_GET_EVENT</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
...@@ -899,7 +902,7 @@ specified. ...@@ -899,7 +902,7 @@ specified.
</row></tbody></tgroup></informaltable> </row></tbody></tgroup></informaltable>
</section> </section>
<section id="dmx_get_stc"> <section id="DMX_GET_STC">
<title>DMX_GET_STC</title> <title>DMX_GET_STC</title>
<para>DESCRIPTION <para>DESCRIPTION
</para> </para>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册