dump-zap.h 485 B

12345678910111213141516171819
  1. #ifndef __DUMP_ZAP_H__
  2. #define __DUMP_ZAP_H__
  3. #include <stdint.h>
  4. #include <linux/dvb/frontend.h>
  5. extern void zap_dump_dvb_parameters (FILE *f, fe_type_t type,
  6. struct dvb_frontend_parameters *t, char polarity, int sat);
  7. extern void zap_dump_service_parameter_set (FILE *f,
  8. const char *service_name,
  9. fe_type_t type,
  10. struct dvb_frontend_parameters *t,
  11. char polarity, int sat,
  12. uint16_t video_pid,
  13. uint16_t *audio_pid,
  14. uint16_t service_id);
  15. #endif