diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sys/v4l2/gstv4l2src.c | 9 |
2 files changed, 14 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2005-01-07 Ronald S. Bultje <rbultje@ronald.bitfreak.net> + + * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps): + Fix against template (#150576). + 2005-01-06 Benjamin Otte <otte@gnome.org> * gst/games/gstpuzzle.c: (draw_puzzle): 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); |