mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
Merge pull request #385 from trilene/master
Support webcams that report [min,max] frame rates
This commit is contained in:
commit
9192dc8ae5
1 changed files with 10 additions and 1 deletions
|
@ -184,7 +184,16 @@ addDevice(GstDevice *device)
|
||||||
gst_structure_get_value(structure, "framerate");
|
gst_structure_get_value(structure, "framerate");
|
||||||
if (auto fr = getFrameRate(value); fr)
|
if (auto fr = getFrameRate(value); fr)
|
||||||
addFrameRate(caps.frameRates, *fr);
|
addFrameRate(caps.frameRates, *fr);
|
||||||
else if (GST_VALUE_HOLDS_LIST(value)) {
|
else if (GST_VALUE_HOLDS_FRACTION_RANGE(value)) {
|
||||||
|
const GValue *minRate =
|
||||||
|
gst_value_get_fraction_range_min(value);
|
||||||
|
if (auto fr = getFrameRate(minRate); fr)
|
||||||
|
addFrameRate(caps.frameRates, *fr);
|
||||||
|
const GValue *maxRate =
|
||||||
|
gst_value_get_fraction_range_max(value);
|
||||||
|
if (auto fr = getFrameRate(maxRate); fr)
|
||||||
|
addFrameRate(caps.frameRates, *fr);
|
||||||
|
} else if (GST_VALUE_HOLDS_LIST(value)) {
|
||||||
guint nRates = gst_value_list_get_size(value);
|
guint nRates = gst_value_list_get_size(value);
|
||||||
for (guint j = 0; j < nRates; ++j) {
|
for (guint j = 0; j < nRates; ++j) {
|
||||||
const GValue *rate =
|
const GValue *rate =
|
||||||
|
|
Loading…
Reference in a new issue