mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
Initialise some variables to get the thing to compile
Original commit message from CVS: Initialise some variables to get the thing to compile
This commit is contained in:
parent
3235f1d4c0
commit
1b3896b025
2 changed files with 4 additions and 4 deletions
|
@ -861,7 +861,7 @@ print_element_list (void)
|
|||
|
||||
factory = GST_TYPE_FIND_FACTORY (feature);
|
||||
if (factory->extensions) {
|
||||
guint i;
|
||||
guint i = 0;
|
||||
g_print ("%s type: ", plugin->name);
|
||||
while (factory->extensions[i]) {
|
||||
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
|
||||
|
@ -954,7 +954,7 @@ print_plugin_info (GstPlugin *plugin)
|
|||
|
||||
factory = GST_TYPE_FIND_FACTORY (feature);
|
||||
if (factory->extensions) {
|
||||
guint i;
|
||||
guint i = 0;
|
||||
g_print ("%s type: ", plugin->name);
|
||||
while (factory->extensions[i]) {
|
||||
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
|
||||
|
|
|
@ -854,7 +854,7 @@ print_element_list (void)
|
|||
|
||||
factory = GST_TYPE_FIND_FACTORY (feature);
|
||||
if (factory->extensions) {
|
||||
guint i;
|
||||
guint i = 0;
|
||||
g_print ("%s type: ", plugin->name);
|
||||
while (factory->extensions[i]) {
|
||||
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
|
||||
|
@ -947,7 +947,7 @@ print_plugin_info (GstPlugin *plugin)
|
|||
|
||||
factory = GST_TYPE_FIND_FACTORY (feature);
|
||||
if (factory->extensions) {
|
||||
guint i;
|
||||
guint i = 0;
|
||||
g_print ("%s type: ", plugin->name);
|
||||
while (factory->extensions[i]) {
|
||||
g_print ("%s%s", i > 0 ? ", " : "", factory->extensions[i]);
|
||||
|
|
Loading…
Reference in a new issue