aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/DocBook
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-06-07 16:02:37 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-07-27 16:52:41 -0400
commit0969ec18346c174a20e9d7e73231efab95c23f86 (patch)
treecd0ec3788301043743ada3d134249cf25b7c3986 /Documentation/DocBook
parent95e61e01888d207b2ffd1ef709466c5144534121 (diff)
[media] DocBook/frontend.xml: Correlate dvb delivery systems
As the DVB API provides two ways to specify the delivery systems, correlate both ways into a table. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r--Documentation/DocBook/media/dvb/frontend.xml17
1 files changed, 11 insertions, 6 deletions
diff --git a/Documentation/DocBook/media/dvb/frontend.xml b/Documentation/DocBook/media/dvb/frontend.xml
index b52f66abbbd4..65a790e196bc 100644
--- a/Documentation/DocBook/media/dvb/frontend.xml
+++ b/Documentation/DocBook/media/dvb/frontend.xml
@@ -23,40 +23,45 @@ cards, in which case there exists no frontend device.</para>
23<section id="fe-type-t"> 23<section id="fe-type-t">
24<title>Frontend type</title> 24<title>Frontend type</title>
25 25
26<para>For historical reasons frontend types are named after the type of modulation used in 26<para>For historical reasons, frontend types are named by the type of modulation used in
27transmission. The fontend types are given by fe_type_t type, defined as:</para> 27transmission. The fontend types are given by fe_type_t type, defined as:</para>
28 28
29<table pgwide="1" frame="none" id="fe-type"> 29<table pgwide="1" frame="none" id="fe-type">
30<title>Frontend types</title> 30<title>Frontend types</title>
31<tgroup cols="2"> 31<tgroup cols="3">
32 &cs-def; 32 &cs-def;
33 <thead> 33 <thead>
34 <row> 34 <row>
35 <entry>fe_type</entry> 35 <entry>fe_type</entry>
36 <entry>Description</entry> 36 <entry>Description</entry>
37 <entry><link linkend="DTV-DELIVERY-SYSTEM">DTV_DELIVERY_SYSTEM</link> equivalent type</entry>
37 </row> 38 </row>
38 </thead> 39 </thead>
39 <tbody valign="top"> 40 <tbody valign="top">
40 <row> 41 <row>
41 <entry id="FE_QPSK"><constant>FE_QPSK</constant></entry> 42 <entry id="FE_QPSK"><constant>FE_QPSK</constant></entry>
42 <entry>For DVB-S standard</entry> 43 <entry>For DVB-S standard</entry>
44 <entry><constant>SYS_DVBS</constant></entry>
43 </row> 45 </row>
44 <row> 46 <row>
45 <entry id="FE_QAM"><constant>FE_QAM</constant></entry> 47 <entry id="FE_QAM"><constant>FE_QAM</constant></entry>
46 <entry>For DVB-C standard</entry> 48 <entry>For DVB-C annex A/C standard</entry>
49 <entry><constant>SYS_DVBC_ANNEX_AC</constant></entry>
47 </row> 50 </row>
48 <row> 51 <row>
49 <entry id="FE_OFDM"><constant>FE_OFDM</constant></entry> 52 <entry id="FE_OFDM"><constant>FE_OFDM</constant></entry>
50 <entry>For DVB-T standard. Also used for ISDB-T on compatibility mode</entry> 53 <entry>For DVB-T standard</entry>
54 <entry><constant>SYS_DVBT</constant></entry>
51 </row> 55 </row>
52 <row> 56 <row>
53 <entry id="FE_ATSC"><constant>FE_ATSC</constant></entry> 57 <entry id="FE_ATSC"><constant>FE_ATSC</constant></entry>
54 <entry>For ATSC standard (terrestrial or cable)</entry> 58 <entry>For ATSC standard (terrestrial) or for DVB-C Annex B (cable) used in US.</entry>
59 <entry><constant>SYS_ATSC</constant> (terrestrial) or <constant>SYS_DVBC_ANNEX_B</constant> (cable)</entry>
55 </row> 60 </row>
56</tbody></tgroup></table> 61</tbody></tgroup></table>
57 62
58<para>Newer formats like DVB-S2, ISDB-T, ISDB-S and DVB-T2 are not described at the above, as they're 63<para>Newer formats like DVB-S2, ISDB-T, ISDB-S and DVB-T2 are not described at the above, as they're
59supported via the new <link linkend="FE_GET_SET_PROPERTY">FE_GET_PROPERTY/FE_GET_SET_PROPERTY</link> method. 64supported via the new <link linkend="FE_GET_SET_PROPERTY">FE_GET_PROPERTY/FE_GET_SET_PROPERTY</link> ioctl's, using the <link linkend="DTV-DELIVERY-SYSTEM">DTV_DELIVERY_SYSTEM</link> parameter.
60</para> 65</para>
61</section> 66</section>
62 67