diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-06-08 13:14:31 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-07-27 16:52:57 -0400 |
commit | ab94782213835f90f5def384ee75e171c0bfd100 (patch) | |
tree | 6697227b9ea57c1602309e5eb580b0460db30beb | |
parent | fb029093e7408efa177e80444199746638c7d79d (diff) |
[media] DocBook/demux.xml: Add the remaining data structures to the API spec
Still, there are a few ioctl's not documented:
Error: no ID for constraint linkend: DMX_GET_PES_PIDS.
Error: no ID for constraint linkend: DMX_GET_CAPS.
Error: no ID for constraint linkend: DMX_SET_SOURCE.
Error: no ID for constraint linkend: DMX_ADD_PID.
Error: no ID for constraint linkend: DMX_REMOVE_PID.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r-- | Documentation/DocBook/media/dvb/demux.xml | 29 |
1 files changed, 27 insertions, 2 deletions
diff --git a/Documentation/DocBook/media/dvb/demux.xml b/Documentation/DocBook/media/dvb/demux.xml index a297f0aadd0a..6758739cd611 100644 --- a/Documentation/DocBook/media/dvb/demux.xml +++ b/Documentation/DocBook/media/dvb/demux.xml | |||
@@ -135,17 +135,42 @@ struct dmx_pes_filter_params | |||
135 | 135 | ||
136 | <section id="dmx-stc"> | 136 | <section id="dmx-stc"> |
137 | <title>struct dmx_stc</title> | 137 | <title>struct dmx_stc</title> |
138 | <programlisting> | 138 | <programlisting> |
139 | struct dmx_stc { | 139 | struct dmx_stc { |
140 | unsigned int num; /⋆ input : which STC? 0..N ⋆/ | 140 | unsigned int num; /⋆ input : which STC? 0..N ⋆/ |
141 | unsigned int base; /⋆ output: divisor for stc to get 90 kHz clock ⋆/ | 141 | unsigned int base; /⋆ output: divisor for stc to get 90 kHz clock ⋆/ |
142 | __u64 stc; /⋆ output: stc in 'base'⋆90 kHz units ⋆/ | 142 | __u64 stc; /⋆ output: stc in 'base'⋆90 kHz units ⋆/ |
143 | }; | 143 | }; |
144 | </programlisting> | 144 | </programlisting> |
145 | </section> | 145 | </section> |
146 | |||
147 | <section id="dmx-caps"> | ||
148 | <title>struct dmx_caps</title> | ||
149 | <programlisting> | ||
150 | typedef struct dmx_caps { | ||
151 | __u32 caps; | ||
152 | int num_decoders; | ||
153 | } dmx_caps_t; | ||
154 | </programlisting> | ||
155 | </section> | ||
146 | 156 | ||
157 | <section id="dmx-source-t"> | ||
158 | <title>enum dmx_source_t</title> | ||
159 | <programlisting> | ||
160 | typedef enum { | ||
161 | DMX_SOURCE_FRONT0 = 0, | ||
162 | DMX_SOURCE_FRONT1, | ||
163 | DMX_SOURCE_FRONT2, | ||
164 | DMX_SOURCE_FRONT3, | ||
165 | DMX_SOURCE_DVR0 = 16, | ||
166 | DMX_SOURCE_DVR1, | ||
167 | DMX_SOURCE_DVR2, | ||
168 | DMX_SOURCE_DVR3 | ||
169 | } dmx_source_t; | ||
170 | </programlisting> | ||
147 | </section> | 171 | </section> |
148 | 172 | ||
173 | </section> | ||
149 | <section id="dmx_fcalls"> | 174 | <section id="dmx_fcalls"> |
150 | <title>Demux Function Calls</title> | 175 | <title>Demux Function Calls</title> |
151 | 176 | ||