summaryrefslogtreecommitdiffstats
path: root/sys/v4l2
diff options
context:
space:
mode:
Diffstat (limited to 'sys/v4l2')
-rw-r--r--sys/v4l2/gstv4l2src.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c
index af20eebb..45b60bde 100644
--- a/sys/v4l2/gstv4l2src.c
+++ b/sys/v4l2/gstv4l2src.c
@@ -787,6 +787,15 @@ gst_v4l2src_getcaps (GstPad * pad)
&min_w, &max_w, &min_h, &max_h)) {
continue;
}
+ /* template */
+ if (min_w < 1)
+ min_w = 1;
+ if (min_h < 1)
+ min_h = 1;
+ if (max_w > 4096)
+ max_w = 4096;
+ if (max_h > 4096)
+ max_h = 4096;
/* add to list */
structure = gst_v4l2src_v4l2fourcc_to_caps (format->pixelformat);