dvbproperty.xml 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. <section id="FE_GET_SET_PROPERTY">
  2. <title>FE_GET_PROPERTY/FE_SET_PROPERTY</title>
  3. <programlisting>
  4. /* Reserved fields should be set to 0 */
  5. struct dtv_property {
  6. __u32 cmd;
  7. union {
  8. __u32 data;
  9. struct {
  10. __u8 data[32];
  11. __u32 len;
  12. __u32 reserved1[3];
  13. void *reserved2;
  14. } buffer;
  15. } u;
  16. int result;
  17. } __attribute__ ((packed));
  18. /* num of properties cannot exceed DTV_IOCTL_MAX_MSGS per ioctl */
  19. #define DTV_IOCTL_MAX_MSGS 64
  20. struct dtv_properties {
  21. __u32 num;
  22. struct dtv_property *props;
  23. };
  24. </programlisting>
  25. <section id="FE_GET_PROPERTY">
  26. <title>FE_GET_PROPERTY</title>
  27. <para>DESCRIPTION
  28. </para>
  29. <informaltable><tgroup cols="1"><tbody><row><entry
  30. align="char">
  31. <para>This ioctl call returns one or more frontend properties. This call only
  32. requires read-only access to the device.</para>
  33. </entry>
  34. </row></tbody></tgroup></informaltable>
  35. <para>SYNOPSIS
  36. </para>
  37. <informaltable><tgroup cols="1"><tbody><row><entry
  38. align="char">
  39. <para>int ioctl(int fd, int request = <link linkend="FE_GET_PROPERTY">FE_GET_PROPERTY</link>,
  40. dtv_properties &#x22C6;props);</para>
  41. </entry>
  42. </row></tbody></tgroup></informaltable>
  43. <para>PARAMETERS
  44. </para>
  45. <informaltable><tgroup cols="2"><tbody><row><entry align="char">
  46. <para>int fd</para>
  47. </entry><entry
  48. align="char">
  49. <para>File descriptor returned by a previous call to open().</para>
  50. </entry>
  51. </row><row><entry
  52. align="char">
  53. <para>int num</para>
  54. </entry><entry
  55. align="char">
  56. <para>Equals <link linkend="FE_GET_PROPERTY">FE_GET_PROPERTY</link> for this command.</para>
  57. </entry>
  58. </row><row><entry
  59. align="char">
  60. <para>struct dtv_property *props</para>
  61. </entry><entry
  62. align="char">
  63. <para>Points to the location where the front-end property commands are stored.</para>
  64. </entry>
  65. </row></tbody></tgroup></informaltable>
  66. <para>ERRORS</para>
  67. <informaltable><tgroup cols="2"><tbody><row>
  68. <entry align="char"><para>EINVAL</para></entry>
  69. <entry align="char"><para>Invalid parameter(s) received or number of parameters out of the range.</para></entry>
  70. </row><row>
  71. <entry align="char"><para>ENOMEM</para></entry>
  72. <entry align="char"><para>Out of memory.</para></entry>
  73. </row><row>
  74. <entry align="char"><para>EFAULT</para></entry>
  75. <entry align="char"><para>Failure while copying data from/to userspace.</para></entry>
  76. </row><row>
  77. <entry align="char"><para>EOPNOTSUPP</para></entry>
  78. <entry align="char"><para>Property type not supported.</para></entry>
  79. </row></tbody></tgroup></informaltable>
  80. </section>
  81. <section id="FE_SET_PROPERTY">
  82. <title>FE_SET_PROPERTY</title>
  83. <para>DESCRIPTION
  84. </para>
  85. <informaltable><tgroup cols="1"><tbody><row><entry
  86. align="char">
  87. <para>This ioctl call sets one or more frontend properties. This call only
  88. requires read-only access to the device.</para>
  89. </entry>
  90. </row></tbody></tgroup></informaltable>
  91. <para>SYNOPSIS
  92. </para>
  93. <informaltable><tgroup cols="1"><tbody><row><entry
  94. align="char">
  95. <para>int ioctl(int fd, int request = <link linkend="FE_SET_PROPERTY">FE_SET_PROPERTY</link>,
  96. dtv_properties &#x22C6;props);</para>
  97. </entry>
  98. </row></tbody></tgroup></informaltable>
  99. <para>PARAMETERS
  100. </para>
  101. <informaltable><tgroup cols="2"><tbody><row><entry align="char">
  102. <para>int fd</para>
  103. </entry><entry
  104. align="char">
  105. <para>File descriptor returned by a previous call to open().</para>
  106. </entry>
  107. </row><row><entry
  108. align="char">
  109. <para>int num</para>
  110. </entry><entry
  111. align="char">
  112. <para>Equals <link linkend="FE_SET_PROPERTY">FE_SET_PROPERTY</link> for this command.</para>
  113. </entry>
  114. </row><row><entry
  115. align="char">
  116. <para>struct dtv_property *props</para>
  117. </entry><entry
  118. align="char">
  119. <para>Points to the location where the front-end property commands are stored.</para>
  120. </entry>
  121. </row></tbody></tgroup></informaltable>
  122. <para>ERRORS
  123. </para>
  124. <informaltable><tgroup cols="2"><tbody><row>
  125. <entry align="char"><para>EINVAL</para></entry>
  126. <entry align="char"><para>Invalid parameter(s) received or number of parameters out of the range.</para></entry>
  127. </row><row>
  128. <entry align="char"><para>ENOMEM</para></entry>
  129. <entry align="char"><para>Out of memory.</para></entry>
  130. </row><row>
  131. <entry align="char"><para>EFAULT</para></entry>
  132. <entry align="char"><para>Failure while copying data from/to userspace.</para></entry>
  133. </row><row>
  134. <entry align="char"><para>EOPNOTSUPP</para></entry>
  135. <entry align="char"><para>Property type not supported.</para></entry>
  136. </row></tbody></tgroup></informaltable>
  137. </section>
  138. <section>
  139. <title>Property types</title>
  140. <para>
  141. On <link linkend="FE_GET_PROPERTY">FE_GET_PROPERTY</link>/<link linkend="FE_SET_PROPERTY">FE_SET_PROPERTY</link>,
  142. the actual action is determined by the dtv_property cmd/data pairs. With one single ioctl, is possible to
  143. get/set up to 64 properties. The actual meaning of each property is described on the next sections.
  144. </para>
  145. <para>The available frontend property types are:</para>
  146. <programlisting>
  147. #define DTV_UNDEFINED 0
  148. #define DTV_TUNE 1
  149. #define DTV_CLEAR 2
  150. #define DTV_FREQUENCY 3
  151. #define DTV_MODULATION 4
  152. #define DTV_BANDWIDTH_HZ 5
  153. #define DTV_INVERSION 6
  154. #define DTV_DISEQC_MASTER 7
  155. #define DTV_SYMBOL_RATE 8
  156. #define DTV_INNER_FEC 9
  157. #define DTV_VOLTAGE 10
  158. #define DTV_TONE 11
  159. #define DTV_PILOT 12
  160. #define DTV_ROLLOFF 13
  161. #define DTV_DISEQC_SLAVE_REPLY 14
  162. #define DTV_FE_CAPABILITY_COUNT 15
  163. #define DTV_FE_CAPABILITY 16
  164. #define DTV_DELIVERY_SYSTEM 17
  165. #define DTV_ISDBT_PARTIAL_RECEPTION 18
  166. #define DTV_ISDBT_SOUND_BROADCASTING 19
  167. #define DTV_ISDBT_SB_SUBCHANNEL_ID 20
  168. #define DTV_ISDBT_SB_SEGMENT_IDX 21
  169. #define DTV_ISDBT_SB_SEGMENT_COUNT 22
  170. #define DTV_ISDBT_LAYERA_FEC 23
  171. #define DTV_ISDBT_LAYERA_MODULATION 24
  172. #define DTV_ISDBT_LAYERA_SEGMENT_COUNT 25
  173. #define DTV_ISDBT_LAYERA_TIME_INTERLEAVING 26
  174. #define DTV_ISDBT_LAYERB_FEC 27
  175. #define DTV_ISDBT_LAYERB_MODULATION 28
  176. #define DTV_ISDBT_LAYERB_SEGMENT_COUNT 29
  177. #define DTV_ISDBT_LAYERB_TIME_INTERLEAVING 30
  178. #define DTV_ISDBT_LAYERC_FEC 31
  179. #define DTV_ISDBT_LAYERC_MODULATION 32
  180. #define DTV_ISDBT_LAYERC_SEGMENT_COUNT 33
  181. #define DTV_ISDBT_LAYERC_TIME_INTERLEAVING 34
  182. #define DTV_API_VERSION 35
  183. #define DTV_CODE_RATE_HP 36
  184. #define DTV_CODE_RATE_LP 37
  185. #define DTV_GUARD_INTERVAL 38
  186. #define DTV_TRANSMISSION_MODE 39
  187. #define DTV_HIERARCHY 40
  188. #define DTV_ISDBT_LAYER_ENABLED 41
  189. #define DTV_ISDBS_TS_ID 42
  190. </programlisting>
  191. </section>
  192. <section id="fe_property_common">
  193. <title>Parameters that are common to all Digital TV standards</title>
  194. <section id="DTV_FREQUENCY">
  195. <title><constant>DTV_FREQUENCY</constant></title>
  196. <para>Central frequency of the channel, in HZ.</para>
  197. <para>Notes:</para>
  198. <para>1)For ISDB-T, the channels are usually transmitted with an offset of 143kHz.
  199. E.g. a valid frequncy could be 474143 kHz. The stepping is bound to the bandwidth of
  200. the channel which is 6MHz.</para>
  201. <para>2)As in ISDB-Tsb the channel consists of only one or three segments the
  202. frequency step is 429kHz, 3*429 respectively. As for ISDB-T the
  203. central frequency of the channel is expected.</para>
  204. </section>
  205. <section id="DTV_BANDWIDTH_HZ">
  206. <title><constant>DTV_BANDWIDTH_HZ</constant></title>
  207. <para>Bandwidth for the channel, in HZ.</para>
  208. <para>Possible values:
  209. <constant>1712000</constant>,
  210. <constant>5000000</constant>,
  211. <constant>6000000</constant>,
  212. <constant>7000000</constant>,
  213. <constant>8000000</constant>,
  214. <constant>10000000</constant>.
  215. </para>
  216. <para>Notes:</para>
  217. <para>1) For ISDB-T it should be always 6000000Hz (6MHz)</para>
  218. <para>2) For ISDB-Tsb it can vary depending on the number of connected segments</para>
  219. <para>3) Bandwidth doesn't apply for DVB-C transmissions, as the bandwidth
  220. for DVB-C depends on the symbol rate</para>
  221. <para>4) Bandwidth in ISDB-T is fixed (6MHz) or can be easily derived from
  222. other parameters (DTV_ISDBT_SB_SEGMENT_IDX,
  223. DTV_ISDBT_SB_SEGMENT_COUNT).</para>
  224. <para>5) DVB-T supports 6, 7 and 8MHz.</para>
  225. <para>6) In addition, DVB-T2 supports 1.172, 5 and 10MHz.</para>
  226. </section>
  227. <section id="DTV_DELIVERY_SYSTEM">
  228. <title><constant>DTV_DELIVERY_SYSTEM</constant></title>
  229. <para>Specifies the type of Delivery system</para>
  230. <para>Possible values: </para>
  231. <programlisting>
  232. typedef enum fe_delivery_system {
  233. SYS_UNDEFINED,
  234. SYS_DVBC_ANNEX_AC,
  235. SYS_DVBC_ANNEX_B,
  236. SYS_DVBT,
  237. SYS_DSS,
  238. SYS_DVBS,
  239. SYS_DVBS2,
  240. SYS_DVBH,
  241. SYS_ISDBT,
  242. SYS_ISDBS,
  243. SYS_ISDBC,
  244. SYS_ATSC,
  245. SYS_ATSCMH,
  246. SYS_DMBTH,
  247. SYS_CMMB,
  248. SYS_DAB,
  249. SYS_DVBT2,
  250. } fe_delivery_system_t;
  251. </programlisting>
  252. </section>
  253. <section id="DTV_TRANSMISSION_MODE">
  254. <title><constant>DTV_TRANSMISSION_MODE</constant></title>
  255. <para>Specifies the number of carriers used by the standard</para>
  256. <para>Possible values are:</para>
  257. <programlisting>
  258. typedef enum fe_transmit_mode {
  259. TRANSMISSION_MODE_2K,
  260. TRANSMISSION_MODE_8K,
  261. TRANSMISSION_MODE_AUTO,
  262. TRANSMISSION_MODE_4K,
  263. TRANSMISSION_MODE_1K,
  264. TRANSMISSION_MODE_16K,
  265. TRANSMISSION_MODE_32K,
  266. } fe_transmit_mode_t;
  267. </programlisting>
  268. <para>Notes:</para>
  269. <para>1) ISDB-T supports three carrier/symbol-size: 8K, 4K, 2K. It is called
  270. 'mode' in the standard: Mode 1 is 2K, mode 2 is 4K, mode 3 is 8K</para>
  271. <para>2) If <constant>DTV_TRANSMISSION_MODE</constant> is set the <constant>TRANSMISSION_MODE_AUTO</constant> the
  272. hardware will try to find the correct FFT-size (if capable) and will
  273. use TMCC to fill in the missing parameters.</para>
  274. <para>3) DVB-T specifies 2K and 8K as valid sizes.</para>
  275. <para>4) DVB-T2 specifies 1K, 2K, 4K, 8K, 16K and 32K.</para>
  276. </section>
  277. <section id="DTV_GUARD_INTERVAL">
  278. <title><constant>DTV_GUARD_INTERVAL</constant></title>
  279. <para>Possible values are:</para>
  280. <programlisting>
  281. typedef enum fe_guard_interval {
  282. GUARD_INTERVAL_1_32,
  283. GUARD_INTERVAL_1_16,
  284. GUARD_INTERVAL_1_8,
  285. GUARD_INTERVAL_1_4,
  286. GUARD_INTERVAL_AUTO,
  287. GUARD_INTERVAL_1_128,
  288. GUARD_INTERVAL_19_128,
  289. GUARD_INTERVAL_19_256,
  290. } fe_guard_interval_t;
  291. </programlisting>
  292. <para>Notes:</para>
  293. <para>1) If <constant>DTV_GUARD_INTERVAL</constant> is set the <constant>GUARD_INTERVAL_AUTO</constant> the hardware will
  294. try to find the correct guard interval (if capable) and will use TMCC to fill
  295. in the missing parameters.</para>
  296. <para>2) Intervals 1/128, 19/128 and 19/256 are used only for DVB-T2 at present</para>
  297. </section>
  298. </section>
  299. <section id="isdbt">
  300. <title>ISDB-T frontend</title>
  301. <para>This section describes shortly what are the possible parameters in the Linux
  302. DVB-API called "S2API" and now DVB API 5 in order to tune an ISDB-T/ISDB-Tsb
  303. demodulator:</para>
  304. <para>This ISDB-T/ISDB-Tsb API extension should reflect all information
  305. needed to tune any ISDB-T/ISDB-Tsb hardware. Of course it is possible
  306. that some very sophisticated devices won't need certain parameters to
  307. tune.</para>
  308. <para>The information given here should help application writers to know how
  309. to handle ISDB-T and ISDB-Tsb hardware using the Linux DVB-API.</para>
  310. <para>The details given here about ISDB-T and ISDB-Tsb are just enough to
  311. basically show the dependencies between the needed parameter values,
  312. but surely some information is left out. For more detailed information
  313. see the following documents:</para>
  314. <para>ARIB STD-B31 - "Transmission System for Digital Terrestrial
  315. Television Broadcasting" and</para>
  316. <para>ARIB TR-B14 - "Operational Guidelines for Digital Terrestrial
  317. Television Broadcasting".</para>
  318. <para>In order to read this document one has to have some knowledge the
  319. channel structure in ISDB-T and ISDB-Tsb. I.e. it has to be known to
  320. the reader that an ISDB-T channel consists of 13 segments, that it can
  321. have up to 3 layer sharing those segments, and things like that.</para>
  322. <para>Parameters used by ISDB-T and ISDB-Tsb.</para>
  323. <section id="isdbt-new-parms">
  324. <title>ISDB-T only parameters</title>
  325. <section id="isdbt-part-rec">
  326. <title><constant>DTV_ISDBT_PARTIAL_RECEPTION</constant></title>
  327. <para><constant>If DTV_ISDBT_SOUND_BROADCASTING</constant> is '0' this bit-field represents whether
  328. the channel is in partial reception mode or not.</para>
  329. <para>If '1' <constant>DTV_ISDBT_LAYERA_*</constant> values are assigned to the center segment and
  330. <constant>DTV_ISDBT_LAYERA_SEGMENT_COUNT</constant> has to be '1'.</para>
  331. <para>If in addition <constant>DTV_ISDBT_SOUND_BROADCASTING</constant> is '1'
  332. <constant>DTV_ISDBT_PARTIAL_RECEPTION</constant> represents whether this ISDB-Tsb channel
  333. is consisting of one segment and layer or three segments and two layers.</para>
  334. <para>Possible values: 0, 1, -1 (AUTO)</para>
  335. </section>
  336. <section id="isdbt-sound-bcast">
  337. <title><constant>DTV_ISDBT_SOUND_BROADCASTING</constant></title>
  338. <para>This field represents whether the other DTV_ISDBT_*-parameters are
  339. referring to an ISDB-T and an ISDB-Tsb channel. (See also
  340. <constant>DTV_ISDBT_PARTIAL_RECEPTION</constant>).</para>
  341. <para>Possible values: 0, 1, -1 (AUTO)</para>
  342. </section>
  343. <section id="isdbt-sb-ch-id">
  344. <title><constant>DTV_ISDBT_SB_SUBCHANNEL_ID</constant></title>
  345. <para>This field only applies if <constant>DTV_ISDBT_SOUND_BROADCASTING</constant> is '1'.</para>
  346. <para>(Note of the author: This might not be the correct description of the
  347. <constant>SUBCHANNEL-ID</constant> in all details, but it is my understanding of the technical
  348. background needed to program a device)</para>
  349. <para>An ISDB-Tsb channel (1 or 3 segments) can be broadcasted alone or in a
  350. set of connected ISDB-Tsb channels. In this set of channels every
  351. channel can be received independently. The number of connected
  352. ISDB-Tsb segment can vary, e.g. depending on the frequency spectrum
  353. bandwidth available.</para>
  354. <para>Example: Assume 8 ISDB-Tsb connected segments are broadcasted. The
  355. broadcaster has several possibilities to put those channels in the
  356. air: Assuming a normal 13-segment ISDB-T spectrum he can align the 8
  357. segments from position 1-8 to 5-13 or anything in between.</para>
  358. <para>The underlying layer of segments are subchannels: each segment is
  359. consisting of several subchannels with a predefined IDs. A sub-channel
  360. is used to help the demodulator to synchronize on the channel.</para>
  361. <para>An ISDB-T channel is always centered over all sub-channels. As for
  362. the example above, in ISDB-Tsb it is no longer as simple as that.</para>
  363. <para><constant>The DTV_ISDBT_SB_SUBCHANNEL_ID</constant> parameter is used to give the
  364. sub-channel ID of the segment to be demodulated.</para>
  365. <para>Possible values: 0 .. 41, -1 (AUTO)</para>
  366. </section>
  367. <section id="isdbt-sb-seg-idx">
  368. <title><constant>DTV_ISDBT_SB_SEGMENT_IDX</constant></title>
  369. <para>This field only applies if <constant>DTV_ISDBT_SOUND_BROADCASTING</constant> is '1'.</para>
  370. <para><constant>DTV_ISDBT_SB_SEGMENT_IDX</constant> gives the index of the segment to be
  371. demodulated for an ISDB-Tsb channel where several of them are
  372. transmitted in the connected manner.</para>
  373. <para>Possible values: 0 .. <constant>DTV_ISDBT_SB_SEGMENT_COUNT</constant> - 1</para>
  374. <para>Note: This value cannot be determined by an automatic channel search.</para>
  375. </section>
  376. <section id="isdbt-sb-seg-cnt">
  377. <title><constant>DTV_ISDBT_SB_SEGMENT_COUNT</constant></title>
  378. <para>This field only applies if <constant>DTV_ISDBT_SOUND_BROADCASTING</constant> is '1'.</para>
  379. <para><constant>DTV_ISDBT_SB_SEGMENT_COUNT</constant> gives the total count of connected ISDB-Tsb
  380. channels.</para>
  381. <para>Possible values: 1 .. 13</para>
  382. <para>Note: This value cannot be determined by an automatic channel search.</para>
  383. </section>
  384. <section id="isdb-hierq-layers">
  385. <title>Hierarchical layers</title>
  386. <para>ISDB-T channels can be coded hierarchically. As opposed to DVB-T in
  387. ISDB-T hierarchical layers can be decoded simultaneously. For that
  388. reason a ISDB-T demodulator has 3 viterbi and 3 reed-solomon-decoders.</para>
  389. <para>ISDB-T has 3 hierarchical layers which each can use a part of the
  390. available segments. The total number of segments over all layers has
  391. to 13 in ISDB-T.</para>
  392. <section id="isdbt-layer-ena">
  393. <title><constant>DTV_ISDBT_LAYER_ENABLED</constant></title>
  394. <para>Hierarchical reception in ISDB-T is achieved by enabling or disabling
  395. layers in the decoding process. Setting all bits of
  396. <constant>DTV_ISDBT_LAYER_ENABLED</constant> to '1' forces all layers (if applicable) to be
  397. demodulated. This is the default.</para>
  398. <para>If the channel is in the partial reception mode
  399. (<constant>DTV_ISDBT_PARTIAL_RECEPTION</constant> = 1) the central segment can be decoded
  400. independently of the other 12 segments. In that mode layer A has to
  401. have a <constant>SEGMENT_COUNT</constant> of 1.</para>
  402. <para>In ISDB-Tsb only layer A is used, it can be 1 or 3 in ISDB-Tsb
  403. according to <constant>DTV_ISDBT_PARTIAL_RECEPTION</constant>. <constant>SEGMENT_COUNT</constant> must be filled
  404. accordingly.</para>
  405. <para>Possible values: 0x1, 0x2, 0x4 (|-able)</para>
  406. <para><constant>DTV_ISDBT_LAYER_ENABLED[0:0]</constant> - layer A</para>
  407. <para><constant>DTV_ISDBT_LAYER_ENABLED[1:1]</constant> - layer B</para>
  408. <para><constant>DTV_ISDBT_LAYER_ENABLED[2:2]</constant> - layer C</para>
  409. <para><constant>DTV_ISDBT_LAYER_ENABLED[31:3]</constant> unused</para>
  410. </section>
  411. <section id="isdbt-layer-fec">
  412. <title><constant>DTV_ISDBT_LAYER*_FEC</constant></title>
  413. <para>Possible values: <constant>FEC_AUTO</constant>, <constant>FEC_1_2</constant>, <constant>FEC_2_3</constant>, <constant>FEC_3_4</constant>, <constant>FEC_5_6</constant>, <constant>FEC_7_8</constant></para>
  414. </section>
  415. <section id="isdbt-layer-mod">
  416. <title><constant>DTV_ISDBT_LAYER*_MODULATION</constant></title>
  417. <para>Possible values: <constant>QAM_AUTO</constant>, QP<constant>SK, QAM_16</constant>, <constant>QAM_64</constant>, <constant>DQPSK</constant></para>
  418. <para>Note: If layer C is <constant>DQPSK</constant> layer B has to be <constant>DQPSK</constant>. If layer B is <constant>DQPSK</constant>
  419. and <constant>DTV_ISDBT_PARTIAL_RECEPTION</constant>=0 layer has to be <constant>DQPSK</constant>.</para>
  420. </section>
  421. <section id="isdbt-layer-seg-cnt">
  422. <title><constant>DTV_ISDBT_LAYER*_SEGMENT_COUNT</constant></title>
  423. <para>Possible values: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, -1 (AUTO)</para>
  424. <para>Note: Truth table for <constant>DTV_ISDBT_SOUND_BROADCASTING</constant> and
  425. <constant>DTV_ISDBT_PARTIAL_RECEPTION</constant> and <constant>LAYER</constant>*_SEGMENT_COUNT</para>
  426. <informaltable id="isdbt-layer_seg-cnt-table">
  427. <tgroup cols="6">
  428. <tbody>
  429. <row>
  430. <entry>PR</entry>
  431. <entry>SB</entry>
  432. <entry>Layer A width</entry>
  433. <entry>Layer B width</entry>
  434. <entry>Layer C width</entry>
  435. <entry>total width</entry>
  436. </row>
  437. <row>
  438. <entry>0</entry>
  439. <entry>0</entry>
  440. <entry>1 .. 13</entry>
  441. <entry>1 .. 13</entry>
  442. <entry>1 .. 13</entry>
  443. <entry>13</entry>
  444. </row>
  445. <row>
  446. <entry>1</entry>
  447. <entry>0</entry>
  448. <entry>1</entry>
  449. <entry>1 .. 13</entry>
  450. <entry>1 .. 13</entry>
  451. <entry>13</entry>
  452. </row>
  453. <row>
  454. <entry>0</entry>
  455. <entry>1</entry>
  456. <entry>1</entry>
  457. <entry>0</entry>
  458. <entry>0</entry>
  459. <entry>1</entry>
  460. </row>
  461. <row>
  462. <entry>1</entry>
  463. <entry>1</entry>
  464. <entry>1</entry>
  465. <entry>2</entry>
  466. <entry>0</entry>
  467. <entry>13</entry>
  468. </row>
  469. </tbody>
  470. </tgroup>
  471. </informaltable>
  472. </section>
  473. <section id="isdbt_layer_t_interl">
  474. <title><constant>DTV_ISDBT_LAYER*_TIME_INTERLEAVING</constant></title>
  475. <para>Possible values: 0, 1, 2, 3, -1 (AUTO)</para>
  476. <para>Note: The real inter-leaver depth-names depend on the mode (fft-size); the values
  477. here are referring to what can be found in the TMCC-structure -
  478. independent of the mode.</para>
  479. </section>
  480. </section>
  481. </section>
  482. <section id="dvbt2-params">
  483. <title>DVB-T2 parameters</title>
  484. <para>This section covers parameters that apply only to the DVB-T2 delivery method. DVB-T2
  485. support is currently in the early stages development so expect this section to grow
  486. and become more detailed with time.</para>
  487. <section id="dvbt2-plp-id">
  488. <title><constant>DTV_DVBT2_PLP_ID</constant></title>
  489. <para>DVB-T2 supports Physical Layer Pipes (PLP) to allow transmission of
  490. many data types via a single multiplex. The API will soon support this
  491. at which point this section will be expanded.</para>
  492. </section>
  493. </section>
  494. </section>
  495. </section>