dddvb/include/linux/dvb/mod.h

23 lines
484 B
C
Raw Normal View History

2015-08-05 17:22:42 +02:00
#ifndef _UAPI_DVBMOD_H_
#define _UAPI_DVBMOD_H_
#include <linux/types.h>
#include "frontend.h"
struct dvb_mod_params {
__u32 base_frequency;
__u32 attenuator;
};
struct dvb_mod_channel_params {
enum fe_modulation modulation;
__u64 input_bitrate; /* 2^-32 Hz */
int pcr_correction;
};
#define DVB_MOD_SET _IOW('o', 208, struct dvb_mod_params)
#define DVB_MOD_CHANNEL_SET _IOW('o', 209, struct dvb_mod_channel_params)
#endif /*_UAPI_DVBMOD_H_*/