<section>
<title>More OFDM parameters</title>
-<section id="fe-bandwidth-t">
-<title>frontend bandwidth</title>
-<programlisting>
-typedef enum fe_bandwidth {
- BANDWIDTH_8_MHZ,
- BANDWIDTH_7_MHZ,
- BANDWIDTH_6_MHZ,
- BANDWIDTH_AUTO,
- BANDWIDTH_5_MHZ,
- BANDWIDTH_10_MHZ,
- BANDWIDTH_1_712_MHZ,
-} fe_bandwidth_t;
-</programlisting>
-</section>
-
<section id="fe-guard-interval-t">
<title>frontend guard inverval</title>
<programlisting>
using the &DTV-DELIVERY-SYSTEM; property.</para>
</section>
+<section id="fe-bandwidth-t">
+<title>Frontend bandwidth</title>
+
+<table pgwide="1" frame="none" id="fe-bandwidth">
+ <title>enum fe_bandwidth</title>
+ <tgroup cols="2">
+ &cs-def;
+ <thead>
+ <row>
+ <entry>ID</entry>
+ <entry>Description</entry>
+ </row>
+ </thead>
+ <tbody valign="top">
+ <row>
+ <entry>BANDWIDTH_AUTO</entry>
+ <entry>Autodetect bandwidth (if supported)</entry>
+ </row><row>
+ <entry>BANDWIDTH_1_712_MHZ</entry>
+ <entry>1.712 MHz</entry>
+ </row><row>
+ <entry>BANDWIDTH_5_MHZ</entry>
+ <entry>5 MHz</entry>
+ </row><row>
+ <entry>BANDWIDTH_6_MHZ</entry>
+ <entry>6 MHz</entry>
+ </row><row>
+ <entry>BANDWIDTH_7_MHZ</entry>
+ <entry>7 MHz</entry>
+ </row><row>
+ <entry>BANDWIDTH_8_MHZ</entry>
+ <entry>8 MHz</entry>
+ </row><row>
+ <entry>BANDWIDTH_10_MHZ</entry>
+ <entry>10 MHz</entry>
+ </row><row>
+ </row>
+ </tbody>
+ </tgroup>
+</table>
+
+</section>
<section id="dvb-frontend-parameters">
<title>frontend parameters</title>
<para>DVB-T frontends are supported by the <constant>dvb_ofdm_parameters</constant> structure:</para>
<programlisting>
struct dvb_ofdm_parameters {
- fe_bandwidth_t bandwidth;
+ &fe-bandwidth-t; bandwidth;
fe_code_rate_t code_rate_HP; /⋆ high priority stream code rate ⋆/
fe_code_rate_t code_rate_LP; /⋆ low priority stream code rate ⋆/
&fe-modulation-t; constellation; /⋆ modulation type (see above) ⋆/
typedef enum fe_transmit_mode fe_transmit_mode_t;
#if defined(__DVB_CORE__) || !defined (__KERNEL__)
-typedef enum fe_bandwidth {
+enum fe_bandwidth {
BANDWIDTH_8_MHZ,
BANDWIDTH_7_MHZ,
BANDWIDTH_6_MHZ,
BANDWIDTH_5_MHZ,
BANDWIDTH_10_MHZ,
BANDWIDTH_1_712_MHZ,
-} fe_bandwidth_t;
+};
+
+typedef enum fe_bandwidth fe_bandwidth_t;
#endif
typedef enum fe_guard_interval {