• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/cx88/

Lines Matching refs:fh

648 	struct cx8802_fh *fh = q->priv_data;
650 fh->dev->ts_packet_size = 188 * 4; /* was: 512 */
651 fh->dev->ts_packet_count = mpegbufs; /* was: 100 */
653 *size = fh->dev->ts_packet_size * fh->dev->ts_packet_count;
654 *count = fh->dev->ts_packet_count;
662 struct cx8802_fh *fh = q->priv_data;
663 return cx8802_buf_prepare(q, fh->dev, (struct cx88_buffer*)vb, field);
669 struct cx8802_fh *fh = q->priv_data;
670 cx8802_buf_queue(fh->dev, (struct cx88_buffer*)vb);
758 struct cx8802_fh *fh = priv;
759 struct cx8802_dev *dev = fh->dev;
767 f->fmt.pix.field = fh->mpegq.field;
769 dev->width, dev->height, fh->mpegq.field );
776 struct cx8802_fh *fh = priv;
777 struct cx8802_dev *dev = fh->dev;
784 dev->width, dev->height, fh->mpegq.field );
791 struct cx8802_fh *fh = priv;
792 struct cx8802_dev *dev = fh->dev;
801 fh->mpegq.field = f->fmt.pix.field;
812 struct cx8802_fh *fh = priv;
813 return (videobuf_reqbufs(&fh->mpegq, p));
818 struct cx8802_fh *fh = priv;
819 return (videobuf_querybuf(&fh->mpegq, p));
824 struct cx8802_fh *fh = priv;
825 return (videobuf_qbuf(&fh->mpegq, p));
830 struct cx8802_fh *fh = priv;
831 return (videobuf_dqbuf(&fh->mpegq, p,
837 struct cx8802_fh *fh = priv;
838 return videobuf_streamon(&fh->mpegq);
843 struct cx8802_fh *fh = priv;
844 return videobuf_streamoff(&fh->mpegq);
897 struct cx8802_fh *fh = priv;
898 struct cx8802_dev *dev = fh->dev;
907 fh->mpegq.field);
967 struct cx8802_fh *fh = priv;
968 struct cx88_core *core = fh->dev->core;
1053 struct cx8802_fh *fh;
1081 fh = kzalloc(sizeof(*fh),GFP_KERNEL);
1082 if (NULL == fh) {
1088 file->private_data = fh;
1089 fh->dev = dev;
1091 videobuf_queue_sg_init(&fh->mpegq, &blackbird_qops,
1096 fh);
1099 fh->mpegq.field);
1109 struct cx8802_fh *fh = file->private_data;
1110 struct cx8802_dev *dev = fh->dev;
1116 cx8802_cancel_buffers(fh->dev);
1118 videobuf_stop(&fh->mpegq);
1120 videobuf_mmap_free(&fh->mpegq);
1122 kfree(fh);
1137 struct cx8802_fh *fh = file->private_data;
1138 struct cx8802_dev *dev = fh->dev;
1141 blackbird_start_codec(file, fh);
1143 return videobuf_read_stream(&fh->mpegq, data, count, ppos, 0,
1150 struct cx8802_fh *fh = file->private_data;
1151 struct cx8802_dev *dev = fh->dev;
1154 blackbird_start_codec(file, fh);
1156 return videobuf_poll_stream(file, &fh->mpegq, wait);
1162 struct cx8802_fh *fh = file->private_data;
1164 return videobuf_mmap_mapper(&fh->mpegq, vma);