/* * 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 | 22 | 88.00% | 2 | 66.67% |
Junghak Sung | 3 | 12.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Laurent Pinchart | 159 | 96.95% | 6 | 75.00% |
Junghak Sung | 4 | 2.44% | 1 | 12.50% |
Sei Fumizono | 1 | 0.61% | 1 | 12.50% |
Total | 164 | 100.00% | 8 | 100.00% |