diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-21 14:39:40 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2018-05-22 09:54:51 +0300 |
commit | 1ff11ecf7018188b5596b8aa876326dbbf2f2aa4 (patch) | |
tree | 9914dda2defa6dfaf3b74eaaa3f352b0f25145cc /Makefile | |
parent | b28524b5eff7d61670a2f1794ea316dc66392315 (diff) |
v4l2: Import V4L2 support code from omap3-isp-live
The omap3-isp-live project [1] includes generic V4L2 support code that
implements the V4L2 API. Instead of reinventing the wheel, import the
code and use it.
The code has been modified to merge the V4L2 buffers pool implementation
in the V4L2 support code as the abstraction wasn't right for the
uvc-gadget project. Further refactoring will be performed separately.
The original license hasn't been modified from the original LGPL-2.1+.
The sole copyright owner is Laurent Pinchart.
[1] git://git.ideasonboard.org/omap3-isp-live.git
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -9,7 +9,7 @@ LDFLAGS := -g all: uvc-gadget -uvc-gadget: events.o uvc-gadget.o +uvc-gadget: events.o uvc-gadget.o v4l2.o $(CC) $(LDFLAGS) -o $@ $^ clean: |