mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
dvb: uncrustify
Mostly automatic, some manual changes.
This commit is contained in:
100
stream/dvbin.h
100
stream/dvbin.h
@@ -11,9 +11,9 @@
|
||||
#include "config.h"
|
||||
#include "stream.h"
|
||||
|
||||
#define SLOF (11700*1000UL)
|
||||
#define LOF1 (9750*1000UL)
|
||||
#define LOF2 (10600*1000UL)
|
||||
#define SLOF (11700 * 1000UL)
|
||||
#define LOF1 (9750 * 1000UL)
|
||||
#define LOF2 (10600 * 1000UL)
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <linux/dvb/dmx.h>
|
||||
@@ -26,14 +26,14 @@
|
||||
/* kernel headers >=2.6.28 have version 5.
|
||||
*
|
||||
* Version 5 is also called S2API, it adds support for tuning to S2 channels
|
||||
* and is extensible for future delivery systems. Old API is deprecated.
|
||||
* StreamID-implementation only supported since API >=5.2.
|
||||
* and is extensible for future delivery systems. Old API is deprecated.
|
||||
* StreamID-implementation only supported since API >=5.2.
|
||||
*/
|
||||
|
||||
#if (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR >= 2)
|
||||
#define DVB_USE_S2API 1
|
||||
|
||||
// This had a different name until API 5.8.
|
||||
// This had a different name until API 5.8.
|
||||
#ifndef DTV_STREAM_ID
|
||||
#define DTV_STREAM_ID DTV_ISDBS_TS_ID
|
||||
#endif
|
||||
@@ -50,7 +50,6 @@
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#define DVB_CHANNEL_LOWER -1
|
||||
#define DVB_CHANNEL_HIGHER 1
|
||||
|
||||
@@ -59,67 +58,66 @@
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
char *name;
|
||||
int freq, srate, diseqc, tone;
|
||||
char pol;
|
||||
int tpid, dpid1, dpid2, progid, ca, pids[DMX_FILTER_SIZE], pids_cnt;
|
||||
bool is_dvb_s2;
|
||||
int stream_id;
|
||||
int service_id;
|
||||
fe_spectral_inversion_t inv;
|
||||
fe_modulation_t mod;
|
||||
fe_transmit_mode_t trans;
|
||||
fe_bandwidth_t bw;
|
||||
fe_guard_interval_t gi;
|
||||
fe_code_rate_t cr, cr_lp;
|
||||
fe_hierarchy_t hier;
|
||||
char *name;
|
||||
int freq, srate, diseqc, tone;
|
||||
char pol;
|
||||
int tpid, dpid1, dpid2, progid, ca, pids[DMX_FILTER_SIZE], pids_cnt;
|
||||
bool is_dvb_s2;
|
||||
int stream_id;
|
||||
int service_id;
|
||||
fe_spectral_inversion_t inv;
|
||||
fe_modulation_t mod;
|
||||
fe_transmit_mode_t trans;
|
||||
fe_bandwidth_t bw;
|
||||
fe_guard_interval_t gi;
|
||||
fe_code_rate_t cr, cr_lp;
|
||||
fe_hierarchy_t hier;
|
||||
} dvb_channel_t;
|
||||
|
||||
typedef struct {
|
||||
uint16_t NUM_CHANNELS;
|
||||
uint16_t current;
|
||||
dvb_channel_t *channels;
|
||||
uint16_t NUM_CHANNELS;
|
||||
uint16_t current;
|
||||
dvb_channel_t *channels;
|
||||
} dvb_channels_list;
|
||||
|
||||
typedef struct {
|
||||
int type;
|
||||
dvb_channels_list *list;
|
||||
char *name;
|
||||
int devno;
|
||||
int type;
|
||||
dvb_channels_list *list;
|
||||
char *name;
|
||||
int devno;
|
||||
} dvb_card_config_t;
|
||||
|
||||
typedef struct {
|
||||
int count;
|
||||
dvb_card_config_t *cards;
|
||||
void *priv;
|
||||
int count;
|
||||
dvb_card_config_t *cards;
|
||||
void *priv;
|
||||
} dvb_config_t;
|
||||
|
||||
typedef struct dvb_params {
|
||||
struct mp_log *log;
|
||||
int fd;
|
||||
int card;
|
||||
int fe_fd;
|
||||
int sec_fd;
|
||||
int demux_fd[3], demux_fds[DMX_FILTER_SIZE], demux_fds_cnt;
|
||||
int dvr_fd;
|
||||
struct mp_log *log;
|
||||
int fd;
|
||||
int card;
|
||||
int fe_fd;
|
||||
int sec_fd;
|
||||
int demux_fd[3], demux_fds[DMX_FILTER_SIZE], demux_fds_cnt;
|
||||
int dvr_fd;
|
||||
|
||||
dvb_config_t *config;
|
||||
dvb_channels_list *list;
|
||||
int tuner_type;
|
||||
int is_on;
|
||||
int retry;
|
||||
int timeout;
|
||||
int last_freq;
|
||||
dvb_config_t *config;
|
||||
dvb_channels_list *list;
|
||||
int tuner_type;
|
||||
int is_on;
|
||||
int retry;
|
||||
int timeout;
|
||||
int last_freq;
|
||||
|
||||
char *cfg_prog;
|
||||
int cfg_card;
|
||||
int cfg_timeout;
|
||||
char *cfg_file;
|
||||
char *cfg_prog;
|
||||
int cfg_card;
|
||||
int cfg_timeout;
|
||||
char *cfg_file;
|
||||
|
||||
int cfg_full_transponder;
|
||||
int cfg_full_transponder;
|
||||
} dvb_priv_t;
|
||||
|
||||
|
||||
#define TUNER_SAT 1
|
||||
#define TUNER_TER 2
|
||||
#define TUNER_CBL 3
|
||||
|
||||
Reference in New Issue
Block a user