mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-24 23:16:30 +00:00
ext/metadata/gstmetadatademux.c: Demote metadatademux to GST_RANK_NONE for the release, it's not ready to be autoplug...
Original commit message from CVS: * ext/metadata/gstmetadatademux.c: Demote metadatademux to GST_RANK_NONE for the release, it's not ready to be autoplugged yet. * tests/icles/metadata_editor.c: Fix printf format warning for GType on ppc32 by removing it, since it doesn't make sense to print the GType value anyway.
This commit is contained in:
parent
5aa73f078a
commit
0aedb33d14
3 changed files with 13 additions and 4 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2008-02-02 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* ext/metadata/gstmetadatademux.c:
|
||||||
|
Demote metadatademux to GST_RANK_NONE for the release, it's not
|
||||||
|
ready to be autoplugged yet.
|
||||||
|
|
||||||
|
* tests/icles/metadata_editor.c:
|
||||||
|
Fix printf format warning for GType on ppc32 by removing it,
|
||||||
|
since it doesn't make sense to print the GType value anyway.
|
||||||
|
|
||||||
2008-02-02 Edgard Lima <edgard.lima@indt.org.br>
|
2008-02-02 Edgard Lima <edgard.lima@indt.org.br>
|
||||||
|
|
||||||
* ext/metadata/TODO:
|
* ext/metadata/TODO:
|
||||||
|
|
|
@ -570,5 +570,5 @@ gst_metadata_demux_plugin_init (GstPlugin * plugin)
|
||||||
"Metadata demuxer");
|
"Metadata demuxer");
|
||||||
|
|
||||||
return gst_element_register (plugin, "metadatademux",
|
return gst_element_register (plugin, "metadatademux",
|
||||||
GST_RANK_PRIMARY + 1, GST_TYPE_METADATA_DEMUX);
|
GST_RANK_NONE, GST_TYPE_METADATA_DEMUX);
|
||||||
}
|
}
|
||||||
|
|
|
@ -200,9 +200,8 @@ change_tag_list (GstTagList ** list, const gchar * tag, const gchar * value)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
fprintf (stderr,
|
g_printerr ("Tags of type '%s' are not supported yet.\n",
|
||||||
"This app still doesn't handle type (%s)(%" G_GSIZE_FORMAT ")\n",
|
g_type_name (type));
|
||||||
g_type_name (type), type);
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue