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