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.
This commit is contained in:
Edgard Lima 2006-05-02 21:52:48 +00:00
parent cba47ec361
commit 7ce14b6bd8

View file

@ -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);
}
}
}