diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2006-09-28 17:08:47 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2006-09-28 17:08:47 +0000 |
commit | 4a0b3b8fda2cd0f47d8af2542130f976f893161b (patch) | |
tree | e768fc09dd2bf88fdbee095f94177c2d7129f096 /sys/v4l2/gstv4l2src.c | |
parent | ac8d6f3eec79046f895ee46b114da3866e3ac7c0 (diff) | |
download | gst-plugins-bad-4a0b3b8fda2cd0f47d8af2542130f976f893161b.tar.gz gst-plugins-bad-4a0b3b8fda2cd0f47d8af2542130f976f893161b.tar.bz2 gst-plugins-bad-4a0b3b8fda2cd0f47d8af2542130f976f893161b.zip |
sys/v4l2/: Framerate can be 0/1 too.
Original commit message from CVS:
* sys/v4l2/gstv4l2src.c: (gst_v4l2src_get_all_caps),
(gst_v4l2src_get_caps):
* sys/v4l2/v4l2_calls.c: (gst_v4l2_fill_lists):
Framerate can be 0/1 too.
Init framerate to 0/1 before querying it so that we can detect
devices that don't know about a framerate.
Add some more debugging info.
Diffstat (limited to 'sys/v4l2/gstv4l2src.c')
-rw-r--r-- | sys/v4l2/gstv4l2src.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c index 486a3b91..e151f16d 100644 --- a/sys/v4l2/gstv4l2src.c +++ b/sys/v4l2/gstv4l2src.c @@ -684,7 +684,7 @@ gst_v4l2src_get_all_caps (void) gst_structure_set (structure, "width", GST_TYPE_INT_RANGE, 1, GST_V4L2_MAX_SIZE, "height", GST_TYPE_INT_RANGE, 1, GST_V4L2_MAX_SIZE, - "framerate", GST_TYPE_FRACTION_RANGE, 1, 1, 100, 1, NULL); + "framerate", GST_TYPE_FRACTION_RANGE, 0, 1, 100, 1, NULL); gst_caps_append_structure (caps, structure); } } @@ -754,7 +754,7 @@ gst_v4l2src_get_caps (GstBaseSrc * src) /* another approach for web-cams would be to try to set a very high(100/1) and low(1/1) FPSs and get the values returned */ gst_structure_set (structure, "framerate", GST_TYPE_FRACTION_RANGE, - 1, 1, 100, 1, NULL); + 0, 1, 100, 1, NULL); gst_caps_append_structure (caps, structure); } |