mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2025-03-01 10:35:23 +00:00
initial commit from dddvb-0.9.19c
This commit is contained in:
22
include/linux/dvb/mod.h
Normal file
22
include/linux/dvb/mod.h
Normal 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_*/
|
Reference in New Issue
Block a user