summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorEdgard Lima <edgard.lima@indt.org.br>2006-05-02 21:52:48 +0000
committerEdgard Lima <edgard.lima@indt.org.br>2006-05-02 21:52:48 +0000
commit7ce14b6bd89169cdeaadf65f0da74c90d3d67d92 (patch)
tree327bd00334fdbc147744c6b2a36a94e9cd8dc842 /sys
parentcba47ec36158643ca7327955aaab5bf47561e689 (diff)
Fix get_caps func to work when no framerate is available and the caps isn't simple.
Original commit message from CVS: Fix get_caps func to work when no framerate is available and the caps isn't simple.
Diffstat (limited to 'sys')
-rw-r--r--sys/v4l2/gstv4l2src.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/v4l2/gstv4l2src.c b/sys/v4l2/gstv4l2src.c
index 0f6f1a7f..126cd421 100644
--- a/sys/v4l2/gstv4l2src.c
+++ b/sys/v4l2/gstv4l2src.c
@@ -675,15 +675,13 @@ gst_v4l2src_get_caps (GstBaseSrc * src)
if (fps_n > 0) {
gst_structure_set (structure, "framerate", GST_TYPE_FRACTION,
fps_n, fps_d, NULL);
+ } else {
+ gst_structure_set (structure, "framerate", GST_TYPE_FRACTION_RANGE,
+ 1, 1, 100, 1, NULL);
}
gst_caps_append_structure (caps, structure);
- if (fps_n <= 0) {
- gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION_RANGE,
- 1, 1, 100, 1, NULL);
- }
-
}
}