mptsd reads mpegts streams from udp/multicast or http and combines them into one multiple program stream that is suitable for outputting to DVB-C modulator. Tested with Dektec DTE-3114 Quad QAM Modulator and used in production in small DVB-C networks. https://georgi.unixsol.org/programs/mptsd/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

output.h 292B

12345678910111213
  1. #ifndef OUTPUT_H
  2. #define OUTPUT_H
  3. #include "config.h"
  4. void output_psi_init (CONFIG *conf, OUTPUT *output);
  5. void output_psi_free (OUTPUT *output);
  6. void * output_handle_psi (void *_config);
  7. void * output_handle_mix (void *_config);
  8. void * output_handle_write (void *_config);
  9. #endif