mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
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:
parent
cba47ec361
commit
7ce14b6bd8
1 changed files with 3 additions and 5 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue