mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
gsttypefindhelper: Fix indentation
This commit is contained in:
parent
c2da78a953
commit
d72c17e328
1 changed files with 5 additions and 5 deletions
|
@ -521,16 +521,16 @@ gst_type_find_helper_for_extension (GstObject * obj, const gchar * extension)
|
|||
/* we only want to check those factories without a function */
|
||||
if (factory->function != NULL)
|
||||
continue;
|
||||
|
||||
|
||||
/* there are extension, see if one of them matches the requested
|
||||
* extension */
|
||||
for (i = 0; ext[i]; i++) {
|
||||
if (strcmp (ext[i], extension) == 0) {
|
||||
/* we found a matching extension, take the caps */
|
||||
if ((result = gst_type_find_factory_get_caps (factory))) {
|
||||
/* we found a matching extension, take the caps */
|
||||
if ((result = gst_type_find_factory_get_caps (factory))) {
|
||||
gst_caps_ref (result);
|
||||
goto done;
|
||||
}
|
||||
goto done;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue