/* * vsp1_video.h -- R-Car VSP1 Video Node * * Copyright (C) 2013-2015 Renesas Electronics Corporation * * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com) * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #ifndef __VSP1_VIDEO_H__ #define __VSP1_VIDEO_H__ #include <linux/list.h> #include <linux/spinlock.h> #include <media/videobuf2-v4l2.h> #include "vsp1_rwpf.h" struct vsp1_vb2_buffer { struct vb2_v4l2_buffer buf; struct list_head queue; struct vsp1_rwpf_memory mem; };
static inline struct vsp1_vb2_buffer * to_vsp1_vb2_buffer(struct vb2_v4l2_buffer *vbuf) { return container_of(vbuf, struct vsp1_vb2_buffer, buf); }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
laurent pinchart | laurent pinchart | 22 | 88.00% | 2 | 66.67% |
junghak sung | junghak sung | 3 | 12.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
laurent pinchart | laurent pinchart | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
laurent pinchart | laurent pinchart | 167 | 97.09% | 6 | 75.00% |
junghak sung | junghak sung | 4 | 2.33% | 1 | 12.50% |
sei fumizono | sei fumizono | 1 | 0.58% | 1 | 12.50% |
Total | 172 | 100.00% | 8 | 100.00% |