mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
23 lines
484 B
C
23 lines
484 B
C
#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_*/
|