desc_terrestrial_delivery.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * Copyright (c) 2011-2012 - Mauro Carvalho Chehab
  3. * Copyright (c) 2012 - Andre Roth <neolynx@gmail.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation version 2
  8. * of the License.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. * Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  19. *
  20. * Based on ETSI EN 300 468 V1.11.1 (2010-04)
  21. *
  22. */
  23. /**
  24. * @file desc_terrestrial_delivery.h
  25. * @ingroup descriptors
  26. * @brief Provides the descriptors for the DVB-T terrestrial delivery system descriptor
  27. * @copyright GNU General Public License version 2 (GPLv2)
  28. * @author Mauro Carvalho Chehab
  29. * @author Andre Roth
  30. *
  31. * @par Relevant specs
  32. * The descriptor described herein is defined at:
  33. * - ETSI EN 300 468 V1.11.1
  34. *
  35. * @par Bug Report
  36. * Please submit bug reports and patches to linux-media@vger.kernel.org
  37. */
  38. #ifndef _TERRESTRIAL_DELIVERY_H
  39. #define _TERRESTRIAL_DELIVERY_H
  40. #include <libdvbv5/descriptors.h>
  41. /**
  42. * @struct dvb_desc_terrestrial_delivery
  43. * @ingroup descriptors
  44. * @brief Structure containing the DVB-T terrestrial delivery system descriptor
  45. *
  46. * @param type descriptor tag
  47. * @param length descriptor length
  48. * @param next pointer to struct dvb_desc
  49. * @param centre_frequency centre frequency, multiplied by 10 Hz
  50. * @param bandwidth bandwidth
  51. * @param priority priority (0 = LP, 1 = HP)
  52. * @param time_slice_indicator time slicing indicator
  53. * @param mpe_fec_indicator mpe fec indicator. If 1, MPE-FEC is not used.
  54. * @param constellation constellation
  55. * @param hierarchy_information hierarchy information
  56. * @param code_rate_hp_stream code rate hp stream
  57. * @param code_rate_lp_stream code rate lp stream
  58. * @param guard_interval guard interval
  59. * @param transmission_mode transmission mode
  60. * @param other_frequency_flag other frequency flag
  61. */
  62. struct dvb_desc_terrestrial_delivery {
  63. uint8_t type;
  64. uint8_t length;
  65. struct dvb_desc *next;
  66. uint32_t centre_frequency;
  67. uint8_t reserved_future_use1:2;
  68. uint8_t mpe_fec_indicator:1;
  69. uint8_t time_slice_indicator:1;
  70. uint8_t priority:1;
  71. uint8_t bandwidth:3;
  72. uint8_t code_rate_hp_stream:3;
  73. uint8_t hierarchy_information:3;
  74. uint8_t constellation:2;
  75. uint8_t other_frequency_flag:1;
  76. uint8_t transmission_mode:2;
  77. uint8_t guard_interval:2;
  78. uint8_t code_rate_lp_stream:3;
  79. uint32_t reserved_future_use2;
  80. } __attribute__((packed));
  81. struct dvb_v5_fe_parms;
  82. #ifdef __cplusplus
  83. extern "C" {
  84. #endif
  85. /**
  86. * @brief Initializes and parses the DVB-T terrestrial delivery system descriptor
  87. *
  88. * @param parms struct dvb_v5_fe_parms pointer to the opened device
  89. * @param buf buffer containing the descriptor's raw data
  90. * @param desc pointer to struct dvb_desc to be allocated and filled
  91. *
  92. * This function initializes and makes sure that all fields will follow the CPU
  93. * endianness. Due to that, the content of the buffer may change.
  94. *
  95. * Currently, no memory is allocated internally.
  96. *
  97. * @return On success, it returns the size of the allocated struct.
  98. * A negative value indicates an error.
  99. */
  100. int dvb_desc_terrestrial_delivery_init(struct dvb_v5_fe_parms *parms,
  101. const uint8_t *buf,
  102. struct dvb_desc *desc);
  103. /**
  104. * @brief Prints the content of the DVB-T terrestrial delivery system descriptor
  105. * @ingroup descriptors
  106. *
  107. * @param parms struct dvb_v5_fe_parms pointer to the opened device
  108. * @param desc pointer to struct dvb_desc
  109. */
  110. void dvb_desc_terrestrial_delivery_print(struct dvb_v5_fe_parms *parms,
  111. const struct dvb_desc *desc);
  112. /**
  113. * @brief converts from internal representation into bandwidth in Hz
  114. */
  115. extern const unsigned dvbt_bw[];
  116. /**
  117. * @brief converts from the descriptor's modulation into enum fe_modulation,
  118. * as defined by DVBv5 API.
  119. */
  120. extern const unsigned dvbt_modulation[];
  121. /**
  122. * @brief converts from the descriptor's hierarchy into enum fe_hierarchy,
  123. * as defined by DVBv5 API.
  124. */
  125. extern const unsigned dvbt_hierarchy[];
  126. /**
  127. * @brief converts from the descriptor's FEC into enum fe_code_rate,
  128. * as defined by DVBv5 API.
  129. */
  130. extern const unsigned dvbt_code_rate[];
  131. /**
  132. * @brief converts from internal representation into enum fe_guard_interval,
  133. * as defined at DVBv5 API.
  134. */
  135. extern const uint32_t dvbt_interval[];
  136. /**
  137. * @brief converts from the descriptor's transmission mode into
  138. * enum fe_transmit_mode, as defined by DVBv5 API.
  139. */
  140. extern const unsigned dvbt_transmission_mode[];
  141. #ifdef __cplusplus
  142. }
  143. #endif
  144. #endif