aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2011-12-17 18:36:56 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-12-20 08:50:08 -0500
commit669a4ba44d6054f147ef123b0c9a640e49c518e0 (patch)
tree14c9842f1c0e60459141f0a8b71d71be54ce3e14 /Documentation
parentbf3b84006e22ae241ec3d53dbe6c6d1f6ceddb56 (diff)
[media] Update documentation to reflect DVB-C Annex A/C support
Instead of using the same delivery system for both Annex A and Annex C, split them into two separate ones. This helps to support devices that only support Annex A. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/DocBook/media/dvb/dvbproperty.xml11
-rw-r--r--Documentation/DocBook/media/dvb/frontend.xml4
2 files changed, 7 insertions, 8 deletions
diff --git a/Documentation/DocBook/media/dvb/dvbproperty.xml b/Documentation/DocBook/media/dvb/dvbproperty.xml
index b812e3140fcb..ffee1fbbc001 100644
--- a/Documentation/DocBook/media/dvb/dvbproperty.xml
+++ b/Documentation/DocBook/media/dvb/dvbproperty.xml
@@ -311,8 +311,6 @@ typedef enum fe_rolloff {
311 ROLLOFF_20, 311 ROLLOFF_20,
312 ROLLOFF_25, 312 ROLLOFF_25,
313 ROLLOFF_AUTO, 313 ROLLOFF_AUTO,
314 ROLLOFF_15, /* DVB-C Annex A */
315 ROLLOFF_13, /* DVB-C Annex C */
316} fe_rolloff_t; 314} fe_rolloff_t;
317 </programlisting> 315 </programlisting>
318 </section> 316 </section>
@@ -336,9 +334,10 @@ typedef enum fe_rolloff {
336 <title>fe_delivery_system type</title> 334 <title>fe_delivery_system type</title>
337 <para>Possible values: </para> 335 <para>Possible values: </para>
338<programlisting> 336<programlisting>
337
339typedef enum fe_delivery_system { 338typedef enum fe_delivery_system {
340 SYS_UNDEFINED, 339 SYS_UNDEFINED,
341 SYS_DVBC_ANNEX_AC, 340 SYS_DVBC_ANNEX_A,
342 SYS_DVBC_ANNEX_B, 341 SYS_DVBC_ANNEX_B,
343 SYS_DVBT, 342 SYS_DVBT,
344 SYS_DSS, 343 SYS_DSS,
@@ -355,6 +354,7 @@ typedef enum fe_delivery_system {
355 SYS_DAB, 354 SYS_DAB,
356 SYS_DVBT2, 355 SYS_DVBT2,
357 SYS_TURBO, 356 SYS_TURBO,
357 SYS_DVBC_ANNEX_C,
358} fe_delivery_system_t; 358} fe_delivery_system_t;
359</programlisting> 359</programlisting>
360 </section> 360 </section>
@@ -781,7 +781,8 @@ typedef enum fe_hierarchy {
781 <title>Properties used on cable delivery systems</title> 781 <title>Properties used on cable delivery systems</title>
782 <section id="dvbc-params"> 782 <section id="dvbc-params">
783 <title>DVB-C delivery system</title> 783 <title>DVB-C delivery system</title>
784 <para>The DVB-C Annex-A/C is the widely used cable standard. Transmission uses QAM modulation.</para> 784 <para>The DVB-C Annex-A is the widely used cable standard. Transmission uses QAM modulation.</para>
785 <para>The DVB-C Annex-C is optimized for 6MHz, and is used in Japan. It supports a subset of the Annex A modulation types, and a roll-off of 0.13, instead of 0.15</para>
785 <para>The following parameters are valid for DVB-C Annex A/C:</para> 786 <para>The following parameters are valid for DVB-C Annex A/C:</para>
786 <itemizedlist mark='opencircle'> 787 <itemizedlist mark='opencircle'>
787 <listitem><para><link linkend="DTV-API-VERSION"><constant>DTV_API_VERSION</constant></link></para></listitem> 788 <listitem><para><link linkend="DTV-API-VERSION"><constant>DTV_API_VERSION</constant></link></para></listitem>
@@ -792,10 +793,8 @@ typedef enum fe_hierarchy {
792 <listitem><para><link linkend="DTV-MODULATION"><constant>DTV_MODULATION</constant></link></para></listitem> 793 <listitem><para><link linkend="DTV-MODULATION"><constant>DTV_MODULATION</constant></link></para></listitem>
793 <listitem><para><link linkend="DTV-INVERSION"><constant>DTV_INVERSION</constant></link></para></listitem> 794 <listitem><para><link linkend="DTV-INVERSION"><constant>DTV_INVERSION</constant></link></para></listitem>
794 <listitem><para><link linkend="DTV-SYMBOL-RATE"><constant>DTV_SYMBOL_RATE</constant></link></para></listitem> 795 <listitem><para><link linkend="DTV-SYMBOL-RATE"><constant>DTV_SYMBOL_RATE</constant></link></para></listitem>
795 <listitem><para><link linkend="DTV-ROLLOFF"><constant>DTV_ROLLOFF</constant></link></para></listitem>
796 <listitem><para><link linkend="DTV-INNER-FEC"><constant>DTV_INNER_FEC</constant></link></para></listitem> 796 <listitem><para><link linkend="DTV-INNER-FEC"><constant>DTV_INNER_FEC</constant></link></para></listitem>
797 </itemizedlist> 797 </itemizedlist>
798 <para>The Rolloff of 0.15 (ROLLOFF_15) is assumed, as ITU-T J.83 Annex A is more common. For Annex C, rolloff should be 0.13 (ROLLOFF_13). All other values are invalid.</para>
799 </section> 798 </section>
800 <section id="dvbc-annex-b-params"> 799 <section id="dvbc-annex-b-params">
801 <title>DVB-C Annex B delivery system</title> 800 <title>DVB-C Annex B delivery system</title>
diff --git a/Documentation/DocBook/media/dvb/frontend.xml b/Documentation/DocBook/media/dvb/frontend.xml
index 61407eaba020..28d7ea5d5e73 100644
--- a/Documentation/DocBook/media/dvb/frontend.xml
+++ b/Documentation/DocBook/media/dvb/frontend.xml
@@ -45,8 +45,8 @@ transmission. The fontend types are given by fe_type_t type, defined as:</para>
45 </row> 45 </row>
46 <row> 46 <row>
47 <entry id="FE_QAM"><constant>FE_QAM</constant></entry> 47 <entry id="FE_QAM"><constant>FE_QAM</constant></entry>
48 <entry>For DVB-C annex A/C standard</entry> 48 <entry>For DVB-C annex A standard</entry>
49 <entry><constant>SYS_DVBC_ANNEX_AC</constant></entry> 49 <entry><constant>SYS_DVBC_ANNEX_A</constant></entry>
50 </row> 50 </row>
51 <row> 51 <row>
52 <entry id="FE_OFDM"><constant>FE_OFDM</constant></entry> 52 <entry id="FE_OFDM"><constant>FE_OFDM</constant></entry>