dtv-core.rst 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. Digital TV (DVB) devices
  2. ------------------------
  3. Digital TV devices are implemented by several different drivers:
  4. - A bridge driver that is responsible to talk with the bus where the other
  5. devices are connected (PCI, USB, SPI), bind to the other drivers and
  6. implement the digital demux logic (either in software or in hardware);
  7. - Frontend drivers that are usually implemented as two separate drivers:
  8. - A tuner driver that implements the logic with commands the part of the
  9. hardware with is reponsible to tune into a digital TV transponder or
  10. physical channel. The output of a tuner is usually a baseband or
  11. Intermediate Frequency (IF) signal;
  12. - A demodulator driver (a.k.a "demod") that implements the logic with
  13. commands the digital TV decoding hardware. The output of a demod is
  14. a digital stream, with multiple audio, video and data channels typically
  15. multiplexed using MPEG Transport Stream [#f1]_.
  16. On most hardware, the frontend drivers talk with the bridge driver using an
  17. I2C bus.
  18. .. [#f1] Some standards use TCP/IP for multiplexing data, like DVB-H (an
  19. abandoned standard, not used anymore) and ATSC version 3.0 current
  20. proposals. Currently, the DVB subsystem doesn't implement those standards.
  21. .. toctree::
  22. :maxdepth: 1
  23. dtv-common
  24. dtv-frontend
  25. dtv-demux
  26. dtv-ca
  27. dtv-net