~ubuntu-branches/ubuntu/precise/gst-plugins-bad0.10/precise-proposed

« back to all changes in this revision

Viewing changes to sys/dvb/gstdvbsrc.h

Tags: upstream-0.10.5.3
Import upstream version 0.10.5.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#define DEFAULT_BUFFER_SIZE  8192
25
25
#define DEFAULT_DISEQC_SRC -1   /* disabled */
26
26
 
27
 
#define MAX_FILTERS 8
 
27
#define MAX_FILTERS 32
28
28
 
29
29
/* #define's don't like whitespacey bits */
30
30
#define GST_TYPE_DVBSRC \
52
52
 
53
53
    int adapter_type;
54
54
 
55
 
    char *device;       /* the device directory with the sub-devices */
56
 
    char *frontend_dev;
57
 
    char *dvr_dev;
58
 
    char *demux_dev;
 
55
    int adapter_number;       /* the device directory with the sub-devices */
 
56
    int frontend_number;
59
57
 
60
58
    int fd_frontend;
61
59
    int fd_dvr;
78
76
    int inversion;
79
77
 
80
78
    GstDvbSrcPol pol;
 
79
    guint stats_interval;
 
80
    guint stats_counter;
81
81
  };
82
82
 
83
83
  struct _GstDvbSrcClass
90
90
 
91
91
 
92
92
  GType gst_dvbsrc_get_type (void);
 
93
  gboolean gst_dvbsrc_plugin_init (GstPlugin *plugin);
93
94
 
94
95
G_END_DECLS
95
96