From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: Mauro Carvalho Chehab <mchehab@redhat.com>,
Linux Media Mailing List <linux-media@vger.kernel.org>
Subject: Re: [PATCH 1/6] [media] Update documentation to reflect DVB-C Annex A/C support
Date: Sat, 17 Dec 2011 22:27:23 -0200 [thread overview]
Message-ID: <4EED336B.1030904@redhat.com> (raw)
In-Reply-To: <1324167673-20787-2-git-send-email-mchehab@redhat.com>
Em 17-12-2011 22:21, Mauro Carvalho Chehab escreveu:
> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Gah, not sure what happened here... git send-email did the wrong
thing with this patch and a few others...
This patch should have a description, a from: Manu Abraham, and his SOB!
I'll see what's wrong and I'll resend a new version. Please discard this one!
> ---
> Documentation/DocBook/media/dvb/dvbproperty.xml | 11 +++++------
> Documentation/DocBook/media/dvb/frontend.xml | 4 ++--
> 2 files changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/DocBook/media/dvb/dvbproperty.xml b/Documentation/DocBook/media/dvb/dvbproperty.xml
> index b812e31..ffee1fb 100644
> --- a/Documentation/DocBook/media/dvb/dvbproperty.xml
> +++ b/Documentation/DocBook/media/dvb/dvbproperty.xml
> @@ -311,8 +311,6 @@ typedef enum fe_rolloff {
> ROLLOFF_20,
> ROLLOFF_25,
> ROLLOFF_AUTO,
> - ROLLOFF_15, /* DVB-C Annex A */
> - ROLLOFF_13, /* DVB-C Annex C */
> } fe_rolloff_t;
> </programlisting>
> </section>
> @@ -336,9 +334,10 @@ typedef enum fe_rolloff {
> <title>fe_delivery_system type</title>
> <para>Possible values: </para>
> <programlisting>
> +
> typedef enum fe_delivery_system {
> SYS_UNDEFINED,
> - SYS_DVBC_ANNEX_AC,
> + SYS_DVBC_ANNEX_A,
> SYS_DVBC_ANNEX_B,
> SYS_DVBT,
> SYS_DSS,
> @@ -355,6 +354,7 @@ typedef enum fe_delivery_system {
> SYS_DAB,
> SYS_DVBT2,
> SYS_TURBO,
> + SYS_DVBC_ANNEX_C,
> } fe_delivery_system_t;
> </programlisting>
> </section>
> @@ -781,7 +781,8 @@ typedef enum fe_hierarchy {
> <title>Properties used on cable delivery systems</title>
> <section id="dvbc-params">
> <title>DVB-C delivery system</title>
> - <para>The DVB-C Annex-A/C is the widely used cable standard. Transmission uses QAM modulation.</para>
> + <para>The DVB-C Annex-A is the widely used cable standard. Transmission uses QAM modulation.</para>
> + <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>
> <para>The following parameters are valid for DVB-C Annex A/C:</para>
> <itemizedlist mark='opencircle'>
> <listitem><para><link linkend="DTV-API-VERSION"><constant>DTV_API_VERSION</constant></link></para></listitem>
> @@ -792,10 +793,8 @@ typedef enum fe_hierarchy {
> <listitem><para><link linkend="DTV-MODULATION"><constant>DTV_MODULATION</constant></link></para></listitem>
> <listitem><para><link linkend="DTV-INVERSION"><constant>DTV_INVERSION</constant></link></para></listitem>
> <listitem><para><link linkend="DTV-SYMBOL-RATE"><constant>DTV_SYMBOL_RATE</constant></link></para></listitem>
> - <listitem><para><link linkend="DTV-ROLLOFF"><constant>DTV_ROLLOFF</constant></link></para></listitem>
> <listitem><para><link linkend="DTV-INNER-FEC"><constant>DTV_INNER_FEC</constant></link></para></listitem>
> </itemizedlist>
> - <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>
> </section>
> <section id="dvbc-annex-b-params">
> <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 61407ea..28d7ea5 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>
> </row>
> <row>
> <entry id="FE_QAM"><constant>FE_QAM</constant></entry>
> - <entry>For DVB-C annex A/C standard</entry>
> - <entry><constant>SYS_DVBC_ANNEX_AC</constant></entry>
> + <entry>For DVB-C annex A standard</entry>
> + <entry><constant>SYS_DVBC_ANNEX_A</constant></entry>
> </row>
> <row>
> <entry id="FE_OFDM"><constant>FE_OFDM</constant></entry>
next prev parent reply other threads:[~2011-12-18 0:27 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-18 0:21 [PATCH 0/6] Change support for Annex A/C Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 1/6] [media] Update documentation to reflect DVB-C Annex A/C support Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 2/6] [media] Remove Annex A/C selection via roll-off factor Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 3/6] [media] drx-k: report the supported delivery systems Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 4/6] [media] tda10023: Don't use a magic numbers for QAM modulation Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 5/6] [media] tda10023: add support for DVB-C Annex C Mauro Carvalho Chehab
2011-12-18 0:21 ` [PATCH 6/6] [media] tda10021: Add " Mauro Carvalho Chehab
2011-12-18 0:27 ` Mauro Carvalho Chehab [this message]
2011-12-18 0:39 ` [PATCH 1/6] [media] Update documentation to reflect DVB-C Annex A/C support Mauro Carvalho Chehab
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4EED336B.1030904@redhat.com \
--to=mchehab@redhat.com \
--cc=linux-media@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox