Skip to content
Snippets Groups Projects
Unverified Commit 4201ade5 authored by Anjani Kumar's avatar Anjani Kumar
Browse files

Fix build: refactor variables to avoid same names in a scope

parent 38ddfabe
No related branches found
No related tags found
No related merge requests found
Pipeline #933 failed
......@@ -112,8 +112,8 @@ addDevice(GstDevice *device)
guint nCaps = gst_caps_get_size(gstcaps);
for (guint i = 0; i < nCaps; ++i) {
GstStructure *structure = gst_caps_get_structure(gstcaps, i);
const gchar *name = gst_structure_get_name(structure);
if (!std::strcmp(name, "video/x-raw")) {
const gchar *struct_name = gst_structure_get_name(structure);
if (!std::strcmp(struct_name, "video/x-raw")) {
gint widthpx, heightpx;
if (gst_structure_get(structure,
"width",
......@@ -142,8 +142,8 @@ addDevice(GstDevice *device)
for (guint j = 0; j < nRates; ++j) {
const GValue *rate =
gst_value_list_get_value(value, j);
if (auto fr = getFrameRate(rate); fr)
addFrameRate(caps.frameRates, *fr);
if (auto frate = getFrameRate(rate); frate)
addFrameRate(caps.frameRates, *frate);
}
}
if (!caps.frameRates.empty())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment