Home
last modified time | relevance | path

Searched refs:dvbdmxfeed (Results 1 – 20 of 20) sorted by relevance

/linux/drivers/media/firewire/
H A Dfiredtv-dvb.c49 int fdtv_start_feed(struct dvb_demux_feed *dvbdmxfeed) in fdtv_start_feed() argument
51 struct firedtv *fdtv = dvbdmxfeed->demux->priv; in fdtv_start_feed()
55 switch (dvbdmxfeed->type) { in fdtv_start_feed()
61 dvbdmxfeed->type); in fdtv_start_feed()
68 if (dvbdmxfeed->type == DMX_TYPE_TS) { in fdtv_start_feed()
69 switch (dvbdmxfeed->pes_type) { in fdtv_start_feed()
80 dvbdmxfeed->pes_type); in fdtv_start_feed()
94 dvbdmxfeed->priv = (typeof(dvbdmxfeed->priv))(unsigned long)c; in fdtv_start_feed()
95 fdtv->channel_pid[c] = dvbdmxfeed->pid; in fdtv_start_feed()
98 if (dvbdmxfeed->pid == 8192) { in fdtv_start_feed()
[all …]
H A Dfiredtv.h140 int fdtv_start_feed(struct dvb_demux_feed *dvbdmxfeed);
141 int fdtv_stop_feed(struct dvb_demux_feed *dvbdmxfeed);
/linux/drivers/media/usb/dvb-usb/
H A Ddvb-usb-dvb.c14 static int dvb_usb_ctrl_feed(struct dvb_demux_feed *dvbdmxfeed, int onoff) in dvb_usb_ctrl_feed() argument
16 struct dvb_usb_adapter *adap = dvbdmxfeed->demux->priv; in dvb_usb_ctrl_feed()
48 "yes" : "no", dvbdmxfeed->pid, dvbdmxfeed->pid, in dvb_usb_ctrl_feed()
49 dvbdmxfeed->index, onoff ? "on" : "off"); in dvb_usb_ctrl_feed()
53 adap->props.fe[adap->active_fe].pid_filter(adap, dvbdmxfeed->index, dvbdmxfeed->pid, onoff); in dvb_usb_ctrl_feed()
86 static int dvb_usb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_usb_start_feed() argument
88 deb_ts("start pid: 0x%04x, feedtype: %d\n", dvbdmxfeed->pid, in dvb_usb_start_feed()
89 dvbdmxfeed->type); in dvb_usb_start_feed()
90 return dvb_usb_ctrl_feed(dvbdmxfeed, 1); in dvb_usb_start_feed()
93 static int dvb_usb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_usb_stop_feed() argument
[all …]
/linux/drivers/media/usb/ttusb-dec/
H A Dttusb_dec.c964 static int ttusb_dec_start_ts_feed(struct dvb_demux_feed *dvbdmxfeed) in ttusb_dec_start_ts_feed() argument
966 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in ttusb_dec_start_ts_feed()
975 if (dvbdmxfeed->ts_type & TS_DECODER) in ttusb_dec_start_ts_feed()
978 if (dvbdmxfeed->ts_type & TS_PACKET) in ttusb_dec_start_ts_feed()
981 if (dvbdmxfeed->ts_type & TS_PAYLOAD_ONLY) in ttusb_dec_start_ts_feed()
986 switch (dvbdmxfeed->pes_type) { in ttusb_dec_start_ts_feed()
990 dec->pid[DMX_PES_PCR] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
991 dec->pid[DMX_PES_VIDEO] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
992 dec->video_filter = dvbdmxfeed->filter; in ttusb_dec_start_ts_feed()
998 dec->pid[DMX_PES_AUDIO] = dvbdmxfeed->pid; in ttusb_dec_start_ts_feed()
[all …]
/linux/drivers/media/usb/as102/
H A Das102_drv.c133 static int as102_dvb_dmx_start_feed(struct dvb_demux_feed *dvbdmxfeed) in as102_dvb_dmx_start_feed() argument
136 struct dvb_demux *demux = dvbdmxfeed->demux; in as102_dvb_dmx_start_feed()
143 as10x_pid_filter(as102_dev, dvbdmxfeed->index, in as102_dvb_dmx_start_feed()
144 dvbdmxfeed->pid, 1); in as102_dvb_dmx_start_feed()
153 static int as102_dvb_dmx_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in as102_dvb_dmx_stop_feed() argument
155 struct dvb_demux *demux = dvbdmxfeed->demux; in as102_dvb_dmx_stop_feed()
165 as10x_pid_filter(as102_dev, dvbdmxfeed->index, in as102_dvb_dmx_stop_feed()
166 dvbdmxfeed->pid, 0); in as102_dvb_dmx_stop_feed()
/linux/drivers/media/usb/pvrusb2/
H A Dpvrusb2-dvb.c190 static int pvr2_dvb_ctrl_feed(struct dvb_demux_feed *dvbdmxfeed, int onoff) in pvr2_dvb_ctrl_feed() argument
192 struct pvr2_dvb_adapter *adap = dvbdmxfeed->demux->priv; in pvr2_dvb_ctrl_feed()
221 static int pvr2_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in pvr2_dvb_start_feed() argument
223 pvr2_trace(PVR2_TRACE_DVB_FEED, "start pid: 0x%04x", dvbdmxfeed->pid); in pvr2_dvb_start_feed()
224 return pvr2_dvb_ctrl_feed(dvbdmxfeed, 1); in pvr2_dvb_start_feed()
227 static int pvr2_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in pvr2_dvb_stop_feed() argument
229 pvr2_trace(PVR2_TRACE_DVB_FEED, "stop pid: 0x%04x", dvbdmxfeed->pid); in pvr2_dvb_stop_feed()
230 return pvr2_dvb_ctrl_feed(dvbdmxfeed, 0); in pvr2_dvb_stop_feed()
/linux/drivers/media/common/b2c2/
H A Dflexcop.c45 static int flexcop_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in flexcop_dvb_start_feed() argument
47 struct flexcop_device *fc = dvbdmxfeed->demux->priv; in flexcop_dvb_start_feed()
48 return flexcop_pid_feed_control(fc, dvbdmxfeed, 1); in flexcop_dvb_start_feed()
51 static int flexcop_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in flexcop_dvb_stop_feed() argument
53 struct flexcop_device *fc = dvbdmxfeed->demux->priv; in flexcop_dvb_stop_feed()
54 return flexcop_pid_feed_control(fc, dvbdmxfeed, 0); in flexcop_dvb_stop_feed()
H A Dflexcop-hw-filter.c176 struct dvb_demux_feed *dvbdmxfeed, int onoff) in flexcop_pid_feed_control() argument
184 if (dvbdmxfeed->index >= max_pid_filter) in flexcop_pid_feed_control()
198 (fc, dvbdmxfeed->index, dvbdmxfeed->pid, onoff); in flexcop_pid_feed_control()
202 else if (dvbdmxfeed->pid == 0x2000) in flexcop_pid_feed_control()
/linux/drivers/media/usb/dvb-usb-v2/
H A Ddvb_usb_core.c241 static int dvb_usb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_usb_start_feed() argument
243 struct dvb_usb_adapter *adap = dvbdmxfeed->demux->priv; in dvb_usb_start_feed()
249 __func__, adap->id, adap->active_fe, dvbdmxfeed->type, in dvb_usb_start_feed()
250 adap->pid_filtering ? "yes" : "no", dvbdmxfeed->pid, in dvb_usb_start_feed()
251 dvbdmxfeed->pid, dvbdmxfeed->index); in dvb_usb_start_feed()
317 ret = adap->props->pid_filter(adap, dvbdmxfeed->index, in dvb_usb_start_feed()
318 dvbdmxfeed->pid, 1); in dvb_usb_start_feed()
329 static int dvb_usb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_usb_stop_feed() argument
331 struct dvb_usb_adapter *adap = dvbdmxfeed->demux->priv; in dvb_usb_stop_feed()
336 __func__, adap->id, adap->active_fe, dvbdmxfeed->type, in dvb_usb_stop_feed()
[all …]
/linux/drivers/media/usb/ttusb-budget/
H A Ddvb-ttusb-budget.c843 static void ttusb_handle_ts_data(struct dvb_demux_feed *dvbdmxfeed, const u8 * data, in ttusb_handle_ts_data() argument
846 dvbdmxfeed->cb.ts(data, len, 0, 0, &dvbdmxfeed->feed.ts, 0); in ttusb_handle_ts_data()
849 static void ttusb_handle_sec_data(struct dvb_demux_feed *dvbdmxfeed, const u8 * data, in ttusb_handle_sec_data() argument
858 static int ttusb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in ttusb_start_feed() argument
860 struct ttusb *ttusb = (struct ttusb *) dvbdmxfeed->demux; in ttusb_start_feed()
865 switch (dvbdmxfeed->type) { in ttusb_start_feed()
874 if (dvbdmxfeed->type == DMX_TYPE_TS) { in ttusb_start_feed()
875 switch (dvbdmxfeed->pes_type) { in ttusb_start_feed()
889 if (dvbdmxfeed->type == DMX_TYPE_TS) { in ttusb_start_feed()
891 } else if (dvbdmxfeed->type == DMX_TYPE_SEC) { in ttusb_start_feed()
[all …]
/linux/drivers/media/pci/mantis/
H A Dmantis_dvb.c91 static int mantis_dvb_start_feed(struct dvb_demux_feed *dvbdmxfeed) in mantis_dvb_start_feed() argument
93 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in mantis_dvb_start_feed()
114 static int mantis_dvb_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in mantis_dvb_stop_feed() argument
116 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in mantis_dvb_stop_feed()
/linux/drivers/media/pci/ngene/
H A Dngene-dvb.c275 int ngene_start_feed(struct dvb_demux_feed *dvbdmxfeed) in ngene_start_feed() argument
277 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in ngene_start_feed()
288 int ngene_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in ngene_stop_feed() argument
290 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in ngene_stop_feed()
H A Dngene.h838 int ngene_start_feed(struct dvb_demux_feed *dvbdmxfeed);
839 int ngene_stop_feed(struct dvb_demux_feed *dvbdmxfeed);
/linux/drivers/staging/media/av7110/
H A Dav7110.c760 struct dvb_demux_feed *dvbdmxfeed = dvbdmxfilter->feed; in StartHWFilter() local
761 struct av7110 *av7110 = dvbdmxfeed->demux->priv; in StartHWFilter()
783 } else if ((dvbdmxfeed->ts_type & TS_PACKET) && in StartHWFilter()
784 !(dvbdmxfeed->ts_type & TS_PAYLOAD_ONLY)) { in StartHWFilter()
785 av7110_p2t_init(&av7110->p2t_filter[dvbdmxfilter->index], dvbdmxfeed); in StartHWFilter()
790 buf[2] = dvbdmxfeed->pid; in StartHWFilter()
844 static int dvb_feed_start_pid(struct dvb_demux_feed *dvbdmxfeed) in dvb_feed_start_pid() argument
846 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in dvb_feed_start_pid()
859 i = dvbdmxfeed->pes_type; in dvb_feed_start_pid()
861 if ((i == 2) && npids[i] && (dvbdmxfeed->ts_type & TS_PACKET)) { in dvb_feed_start_pid()
[all …]
H A Dav7110_av.c80 struct dvb_demux_feed *dvbdmxfeed = p2t->priv; in av7110_record_cb() local
82 if (!(dvbdmxfeed->ts_type & TS_PACKET)) in av7110_record_cb()
88 if (dvbdmxfeed->ts_type & TS_PAYLOAD_ONLY) in av7110_record_cb()
89 return dvbdmxfeed->cb.ts(buf, len, NULL, 0, in av7110_record_cb()
90 &dvbdmxfeed->feed.ts, NULL); in av7110_record_cb()
97 struct dvb_demux_feed *dvbdmxfeed = (struct dvb_demux_feed *)priv; in dvb_filter_pes2ts_cb() local
99 dvbdmxfeed->cb.ts(data, 188, NULL, 0, in dvb_filter_pes2ts_cb()
100 &dvbdmxfeed->feed.ts, NULL); in dvb_filter_pes2ts_cb()
105 struct dvb_demux_feed *dvbdmxfeed) in av7110_av_start_record() argument
108 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in av7110_av_start_record()
[all …]
H A Dav7110_av.h18 struct dvb_demux_feed *dvbdmxfeed);
/linux/drivers/media/pci/cx23885/
H A Daltera-ci.h77 struct dvb_demux_feed *dvbdmxfeed, int onoff)
/linux/drivers/media/pci/bt8xx/
H A Ddvb-bt8xx.c60 static int dvb_bt8xx_start_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_bt8xx_start_feed() argument
62 struct dvb_demux*dvbdmx = dvbdmxfeed->demux; in dvb_bt8xx_start_feed()
81 static int dvb_bt8xx_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in dvb_bt8xx_stop_feed() argument
83 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in dvb_bt8xx_stop_feed()
/linux/drivers/media/pci/smipcie/
H A Dsmipcie-main.c814 static int smi_start_feed(struct dvb_demux_feed *dvbdmxfeed) in smi_start_feed() argument
816 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in smi_start_feed()
831 static int smi_stop_feed(struct dvb_demux_feed *dvbdmxfeed) in smi_stop_feed() argument
833 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in smi_stop_feed()
/linux/drivers/media/pci/ddbridge/
H A Dddbridge-core.c1268 static int start_feed(struct dvb_demux_feed *dvbdmxfeed) in start_feed() argument
1270 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in start_feed()
1280 static int stop_feed(struct dvb_demux_feed *dvbdmxfeed) in stop_feed() argument
1282 struct dvb_demux *dvbdmx = dvbdmxfeed->demux; in stop_feed()