diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-11-11 09:46:23 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-11-11 09:46:23 -0500 |
commit | 39ce61a846c8e1fa00cb57ad5af021542e6e8403 (patch) | |
tree | fc2ece73b3c54a805f9ac85d390f2388f741b46c /Documentation/DocBook | |
parent | e9eb0dadba932940f721f9d27544a7818b2fa1c5 (diff) |
[media] dvb: Allow select between DVB-C Annex A and Annex C
DVB-C, as defined by ITU-T J.83 has 3 annexes. The differences between
Annex A and Annex C is that Annex C uses a subset of the modulation
types, and uses a different rolloff factor. A different rolloff means
that the bandwidth required is slicely different, and may affect the
saw filter configuration at the tuners. Also, some demods have different
configurations, depending on using Annex A or Annex C.
So, allow userspace to specify it, by changing the rolloff factor.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/DocBook')
-rw-r--r-- | Documentation/DocBook/media/dvb/dvbproperty.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/DocBook/media/dvb/dvbproperty.xml b/Documentation/DocBook/media/dvb/dvbproperty.xml index 3bc8a61efe30..6ac803959a47 100644 --- a/Documentation/DocBook/media/dvb/dvbproperty.xml +++ b/Documentation/DocBook/media/dvb/dvbproperty.xml | |||
@@ -311,6 +311,8 @@ 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 */ | ||
314 | } fe_rolloff_t; | 316 | } fe_rolloff_t; |
315 | </programlisting> | 317 | </programlisting> |
316 | </section> | 318 | </section> |
@@ -778,8 +780,10 @@ typedef enum fe_hierarchy { | |||
778 | <listitem><para><link linkend="DTV-MODULATION"><constant>DTV_MODULATION</constant></link></para></listitem> | 780 | <listitem><para><link linkend="DTV-MODULATION"><constant>DTV_MODULATION</constant></link></para></listitem> |
779 | <listitem><para><link linkend="DTV-INVERSION"><constant>DTV_INVERSION</constant></link></para></listitem> | 781 | <listitem><para><link linkend="DTV-INVERSION"><constant>DTV_INVERSION</constant></link></para></listitem> |
780 | <listitem><para><link linkend="DTV-SYMBOL-RATE"><constant>DTV_SYMBOL_RATE</constant></link></para></listitem> | 782 | <listitem><para><link linkend="DTV-SYMBOL-RATE"><constant>DTV_SYMBOL_RATE</constant></link></para></listitem> |
783 | <listitem><para><link linkend="DTV-ROLLOFF"><constant>DTV_ROLLOFF</constant></link></para></listitem> | ||
781 | <listitem><para><link linkend="DTV-INNER-FEC"><constant>DTV_INNER_FEC</constant></link></para></listitem> | 784 | <listitem><para><link linkend="DTV-INNER-FEC"><constant>DTV_INNER_FEC</constant></link></para></listitem> |
782 | </itemizedlist> | 785 | </itemizedlist> |
786 | <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> | ||
783 | </section> | 787 | </section> |
784 | <section id="dvbc-annex-b-params"> | 788 | <section id="dvbc-annex-b-params"> |
785 | <title>DVB-C Annex B delivery system</title> | 789 | <title>DVB-C Annex B delivery system</title> |