| /linux/drivers/media/platform/ti/omap/ |
| H A D | omap_voutlib.c | 44 struct v4l2_framebuffer *fbuf, struct v4l2_rect *crop) in omap_vout_default_crop() argument 46 crop->width = (pix->width < fbuf->fmt.width) ? in omap_vout_default_crop() 47 pix->width : fbuf->fmt.width; in omap_vout_default_crop() 48 crop->height = (pix->height < fbuf->fmt.height) ? in omap_vout_default_crop() 49 pix->height : fbuf->fmt.height; in omap_vout_default_crop() 63 int omap_vout_try_window(struct v4l2_framebuffer *fbuf, in omap_vout_try_window() argument 82 try_win.width = (try_win.width < fbuf->fmt.width) ? in omap_vout_try_window() 83 try_win.width : fbuf->fmt.width; in omap_vout_try_window() 84 try_win.height = (try_win.height < fbuf->fmt.height) ? in omap_vout_try_window() 85 try_win.height : fbuf->fmt.height; in omap_vout_try_window() [all …]
|
| H A D | omap_voutlib.h | 16 struct v4l2_framebuffer *fbuf, struct v4l2_rect *crop); 20 struct v4l2_framebuffer *fbuf, 23 int omap_vout_try_window(struct v4l2_framebuffer *fbuf, 27 struct v4l2_window *win, struct v4l2_framebuffer *fbuf, 31 struct v4l2_framebuffer *fbuf, struct v4l2_rect *crop,
|
| H A D | omap_vout.c | 626 vout->fbuf.fmt.height = timing->y_res; in vidioc_try_fmt_vid_out() 627 vout->fbuf.fmt.width = timing->x_res; in vidioc_try_fmt_vid_out() 668 vout->fbuf.fmt.height = timing->x_res; in vidioc_s_fmt_vid_out() 669 vout->fbuf.fmt.width = timing->y_res; in vidioc_s_fmt_vid_out() 671 vout->fbuf.fmt.height = timing->y_res; in vidioc_s_fmt_vid_out() 672 vout->fbuf.fmt.width = timing->x_res; in vidioc_s_fmt_vid_out() 691 omap_vout_new_format(&vout->pix, &vout->fbuf, &vout->crop, &vout->win); in vidioc_s_fmt_vid_out() 711 ret = omap_vout_try_window(&vout->fbuf, win); in vidioc_try_fmt_vid_overlay() 731 ret = omap_vout_new_window(&vout->crop, &vout->win, &vout->fbuf, win); in vidioc_s_fmt_vid_overlay() 742 if (vout->fbuf.flags & (V4L2_FBUF_FLAG_CHROMAKEY | in vidioc_s_fmt_vid_overlay() [all …]
|
| /linux/include/trace/events/ |
| H A D | pwc.h | 16 __field(struct pwc_frame_buf*, fbuf) 24 __entry->fbuf = pdev->fill_buf; 31 TP_printk("dev=%s (fbuf=%p filled=%d) urb=%p (status=%d actual_length=%u)", 33 __entry->fbuf, 45 __field(struct pwc_frame_buf*, fbuf) 51 __entry->fbuf = pdev->fill_buf; 55 TP_printk(" dev=%s (fbuf=%p filled=%d) urb=%p", 57 __entry->fbuf,
|
| /linux/drivers/media/usb/pwc/ |
| H A D | pwc-uncompress.c | 21 int pwc_decompress(struct pwc_device *pdev, struct pwc_frame_buf *fbuf) in pwc_decompress() argument 28 image = vb2_plane_vaddr(&fbuf->vb.vb2_buf, 0); in pwc_decompress() 30 yuv = fbuf->data + pdev->frame_header_size; /* Skip header */ in pwc_decompress() 43 vb2_set_plane_payload(&fbuf->vb.vb2_buf, 0, in pwc_decompress() 48 vb2_set_plane_payload(&fbuf->vb.vb2_buf, 0, in pwc_decompress()
|
| H A D | pwc.h | 381 int pwc_decompress(struct pwc_device *pdev, struct pwc_frame_buf *fbuf);
|
| /linux/sound/usb/line6/ |
| H A D | capture.c | 84 void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf, int fsize) in line6_capture_copy() argument 108 line6pcm->in.pos_done * bytes_per_frame, fbuf, in line6_capture_copy() 110 memcpy(runtime->dma_area, fbuf + len * bytes_per_frame, in line6_capture_copy() 120 line6pcm->in.pos_done * bytes_per_frame, fbuf, fsize); in line6_capture_copy() 160 char *fbuf; in audio_in_callback() local 169 fbuf = urb->transfer_buffer + fin->offset; in audio_in_callback() 189 line6pcm->prev_fbuf = fbuf; in audio_in_callback() 197 line6_capture_copy(line6pcm, fbuf, fsize); in audio_in_callback()
|
| H A D | capture.h | 18 extern void line6_capture_copy(struct snd_line6_pcm *line6pcm, char *fbuf,
|
| /linux/drivers/media/platform/renesas/ |
| H A D | rcar_fdp1.c | 720 struct fdp1_field_buffer *fbuf) in fdp1_field_complete() argument 723 if (!fbuf) in fdp1_field_complete() 726 if (fbuf->last_field) in fdp1_field_complete() 727 v4l2_m2m_buf_done(fbuf->vb, VB2_BUF_STATE_DONE); in fdp1_field_complete() 731 struct fdp1_field_buffer *fbuf) in fdp1_queue_field() argument 736 list_add_tail(&fbuf->list, &ctx->fields_queue); in fdp1_queue_field() 744 struct fdp1_field_buffer *fbuf; in fdp1_dequeue_field() local 750 fbuf = list_first_entry_or_null(&ctx->fields_queue, in fdp1_dequeue_field() 752 if (fbuf) in fdp1_dequeue_field() 753 list_del(&fbuf->list); in fdp1_dequeue_field() [all …]
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | dev-osd.rst | 64 struct v4l2_framebuffer fbuf; 68 if (-1 == ioctl(fd, VIDIOC_G_FBUF, &fbuf)) { 93 if (si.smem_start == (unsigned long)fbuf.base)
|
| H A D | user-func.rst | 43 vidioc-g-fbuf
|
| /linux/drivers/scsi/csiostor/ |
| H A D | csio_wr.c | 1051 struct csio_dma_buf *buf, *fbuf; in csio_wr_process_fl() local 1072 for (fbuf = flb.flbufs; ; fbuf++) { in csio_wr_process_fl() 1076 fbuf->paddr = buf->paddr; in csio_wr_process_fl() 1077 fbuf->vaddr = buf->vaddr; in csio_wr_process_fl() 1081 fbuf->len = lastlen; in csio_wr_process_fl()
|
| /linux/drivers/media/pci/bt8xx/ |
| H A D | bttvp.h | 380 struct v4l2_framebuffer fbuf; member
|
| /linux/lib/ |
| H A D | dynamic_debug.c | 182 struct flagsbuf fbuf, nbuf; in ddebug_change() local 261 ddebug_describe_flags(dp->flags, &fbuf), in ddebug_change()
|
| /linux/Documentation/ |
| H A D | .renames.txt | 683 media/uapi/v4l/vidioc-g-fbuf userspace-api/media/v4l/vidioc-g-fbuf
|