diff options
| author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-06-09 12:11:25 +0300 | 
|---|---|---|
| committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-06-09 12:20:02 +0300 | 
| commit | df651c5b397a4b6648695cdf725a8243ff512dcd (patch) | |
| tree | a8f88286cedafe8c8d35cbaa38698063a2e64961 /Makefile | |
| parent | 6dc91f22f9bb2aafeee2f7c5df53a02a37acc3a0 (diff) | |
v4l2: Extract video buffer structure to separate file
The v4l2_video_buffer structure describes a video buffer. It is used by
the v4l2_device class only, but isn't otherwise tied to V4L2. To prepare
for non-V4L2 video sources, extract it to a separate file and rename it
to video_buffer.
At the same time, add a new video_buffer_set structure to represent as
set of video buffers.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -13,7 +13,8 @@ OBJS		:= \  			main.o \  			stream.o \  			uvc.o \ -			v4l2.o +			v4l2.o \ +			video-buffers.o  all: uvc-gadget | 
