initial commit from dddvb-0.9.19c

This commit is contained in:
mvoelkel
2015-08-05 17:22:42 +02:00
commit 9e2128c4fb
121 changed files with 90381 additions and 0 deletions

22
include/linux/dvb/mod.h Normal file
View File

@@ -0,0 +1,22 @@
#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_*/