File: tune.h

package info (click to toggle)
dvbstream 0.6%2Bcvs20090621-2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 524 kB
  • sloc: ansic: 7,603; makefile: 56; perl: 43; sh: 20
file content (19 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _TUNE_H
#define _TUNE_H

#include <linux/dvb/frontend.h>
#include <linux/dvb/version.h>

#include "dvb_defaults.h"

#undef DVB_ATSC
#if defined(DVB_API_VERSION_MINOR)
#if DVB_API_VERSION == 3 && DVB_API_VERSION_MINOR >= 1
#define DVB_ATSC 1
#endif
#endif


int tune_it(int fd_frontend, unsigned int freq, unsigned int srate, char pol, int tone, fe_spectral_inversion_t specInv, unsigned char diseqc,fe_modulation_t modulation,fe_code_rate_t HP_CodeRate,fe_transmit_mode_t TransmissionMode,fe_guard_interval_t guardInterval, fe_bandwidth_t bandwidth, fe_code_rate_t LP_CodeRate, fe_hierarchy_t hier);

#endif