summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-04-09Store capture parameters from VIDIOC_S_FMTxgoldLaurent Pinchart
Some buggy drivers don't implement VIDIOC_G_FMT, preventing yavta from operating as it relies on that ioctl to retrieve capture parameters. Store the capture parameters returned by the previous VIDIOC_S_FMT call (which should be identical) to allow operation even when VIDIOC_G_FMT isn't implemented. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2018-04-09Add ION allocation supportLaurent Pinchart
When using the USERPTR method attempt to use ION if available. The heap is hardcoded to DMA for now. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2018-04-09Don't override CFLAGS if setLaurent Pinchart
If the CFLAGS environment variable is set, extend it instead of overriding it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2017-08-24Add meta-data capture supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2017-08-24Update kernel headers to v4.12Laurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-10-24Add YVU 3-planar formats supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-10-24Add HSV24 and HSV32 formats supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-10-24Update headers from upstream kernelLaurent Pinchart
Upstream commit 3907fae86ebabd622bd8265285d5b612d5958948 Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-06-18Fix handling of last buffers before end of captureLaurent Pinchart
yavta is supposed not to requeue the last buffers before end of capture (unless requested to do so with the --requeue-last option). However, the logic is wrong, and only one of the last buffers is not requeued. Fix it by skipping all of the last buffers. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-06-16Add YUV422M and YUV444M supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-06-16Update headers from upstream kernelLaurent Pinchart
Upstream commit 5edb56491d4812c42175980759da53388e5d86f5. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2016-05-13Print driver name when querying capabilitiesLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-12-14Return proper error code if STREAMON failsTuukka Toivonen
Return the error code if video_enable() and VIDIOC_STREAMON fails. Signed-off-by: Tuukka Toivonen <tuukka.toivonen@intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-12-12Print the number of frames and bytes captured when the interval is nullLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-10-16List supported formats with -f helpSakari Ailus
Passing format "help" to the -f option will list the supported formats and exit. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
2015-05-05Zero the planes array before queuing buffersLaurent Pinchart
V4L2 requires reserved fields to be zeroed. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-03-20yavta: Fix printing of device capabilitiesLaurent Pinchart
Commit d029d1d5bba831b9 ("Separate querying capabilities and determining buffer queue type") broke capabilities printing. Fix it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
2015-02-26Prints bytes used for all planesLaurent Pinchart
When using the multiplanar API the v4l2_buffer bytesused field is documented as ignored, and the planes array should be used instead. Compute the total number of bytes used to be printed during capture based on the planes array when using the multiplanar API. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-01-07Fix data offset config option parsingSakari Ailus
The option itself was considered correctly, but a small but crucial break statement was missing. --data-offset option does not take an argument either. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-01-07Rename buffer prefix as data prefixSakari Ailus
Data prefix is a much better name for this (think of data_offset, for instance). Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-01-02yavta: Add support for 10-bit packed raw bayer formatsSakari Ailus
Add support for these pixel formats: V4L2_PIX_FMT_SBGGR10P V4L2_PIX_FMT_SGBRG10P V4L2_PIX_FMT_SGRBG10P V4L2_PIX_FMT_SRGGB10P Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2015-01-02Update headers from upstream kernelLaurent Pinchart
Upstream commit 99f3cd52aee21091ce62442285a68873e3be833f. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-12-15Update headers from upstream kernelLaurent Pinchart
Upstream commit 71947828caef0c83d4245f7d1eaddc799b4ff1d1 Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-12-15yavta: Implement data_offset support for multi plane buffersSakari Ailus
Support data_offset for multi plane buffers. Also add an option to write the data in the buffer before data offset (--buffer-prefix). Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-12-15yavta: Set plane size for mplane buffers in qbufSakari Ailus
The plane size was left zero for mplane buffers when queueing a buffer. Fix this. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> [For consistency set buf.length for USERPTR buffers only] Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-10-26yavta: Add --queue-late option for delay queueing buffers over streaming startSakari Ailus
Queue buffers to the device after VIDIOC_STREAMON, not before. This does not affect queueing behaviour otherwise. Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-10-01Add support for premultiplied formatsLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-10-01Add --buffer-size argumentLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-10-01Add support for missing RGB formatsLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-10-01Update headers from upstream kernelLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-06-25Add support for printing string controlsLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-05-24Add log status supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-05-24Add support for interlaced formatsLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-04-16Set timestamp for output buffers if the timestamp type is copySakari Ailus
Copy timestamp type will mean the timestamp is be copied from the source to the destination buffer on mem-to-mem devices. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Support copy timestampsSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Shorten dequeued buffer info printSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Print timestamp type and source for dequeued buffersSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Timestamp source for output buffersSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Allow passing file descriptors to yavtaSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Provide -B option for setting the buffer typeSakari Ailus
Instead of guessing the buffer type, allow setting it explicitly. Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Make struct for buffer type and name mapping usable elsewhereSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Separate querying capabilities and determining buffer queue typeSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Provide functions for setting the buffer type and checking its validitySakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-16Separate device object initialisation and openingSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-01Print timestamp source (start-of-exposure or end-of-frame)Sakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-01Update headers from upstream kernel, including timestamp source patchesSakari Ailus
Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi>
2014-04-01Add YV420M supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-04-01Add NV16M and NV61M supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-04-01Add NV12M and NV21M supportLaurent Pinchart
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2014-04-01Update videodev2.h kernel header fileLaurent Pinchart
We need NV16M and NV61M support. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>