diff --git a/ChangeLog b/ChangeLog index e824be8775..96905e2463 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-01-07 Ronald S. Bultje + + * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps): + Fix against template (#150576). + 2005-01-06 Benjamin Otte * gst/games/gstpuzzle.c: (draw_puzzle): diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c index af20eebb2d..45b60bdeaf 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);