gstreamer part of new license field in element factory

Original commit message from CVS:
gstreamer part of new license field in element factory
This commit is contained in:
Christian Schaller 2002-09-18 18:58:39 +00:00
parent 78f516eaa5
commit 08ca250525
2 changed files with 2 additions and 0 deletions

View file

@ -294,6 +294,7 @@ typedef struct _GstElementDetails GstElementDetails;
struct _GstElementDetails {
gchar *longname; /* long, english name */
gchar *klass; /* type of element, as hierarchy */
gchar *license; /* license element is under */
gchar *description; /* insights of one form or another */
gchar *version; /* version of the element */
gchar *author; /* who wrote this thing? */

View file

@ -442,6 +442,7 @@ print_element_info (GstElementFactory *factory)
g_print ("Factory Details:\n");
g_print (" Long name:\t%s\n", factory->details->longname);
g_print (" Class:\t%s\n", factory->details->klass);
g_print (" License:\t%s\n", factory->details->license);
g_print (" Description:\t%s\n", factory->details->description);
g_print (" Version:\t%s\n", factory->details->version);
g_print (" Author(s):\t%s\n", factory->details->author);