From 38baf136e683dada57786f1dcfa263330516e79b Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Thu, 31 Jan 2008 16:12:28 +0000 Subject: sys/v4l2/v4l2_calls.c: Treat ENOTTY (driver does not implement ioctl) the same as Original commit message from CVS: * sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists): Treat ENOTTY (driver does not implement ioctl) the same as EINVAL since it implies there are no available standards. * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_probe_caps_for_format), (gst_v4l2src_get_nearest_size): Replace gst_v4l2src_get_size_limits with 2 calls to new function gst_v4l2src_get_nearest_size, and get it to use VIDIOC_S_FMT to probe if the driver does not support VIDIOC_TRY_FMT for whatever reason, and if we aren't yet actively capturing. * sys/v4l2/v4l2src_calls.h: Remove replaced function declaration. --- sys/v4l2/v4l2src_calls.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'sys/v4l2/v4l2src_calls.h') diff --git a/sys/v4l2/v4l2src_calls.h b/sys/v4l2/v4l2src_calls.h index 139d1f03..038aad08 100644 --- a/sys/v4l2/v4l2src_calls.h +++ b/sys/v4l2/v4l2src_calls.h @@ -47,9 +47,4 @@ gboolean gst_v4l2src_clear_format_list (GstV4l2Src * v4l2src); GstCaps* gst_v4l2src_probe_caps_for_format (GstV4l2Src * v4l2src, guint32 pixelformat, const GstStructure *template); -gboolean gst_v4l2src_get_size_limits (GstV4l2Src * v4l2src, - guint32 pixelformat, - gint * min_w, gint * max_w, - gint * min_h, gint * max_h); - #endif /* __V4L2SRC_CALLS_H__ */ -- cgit