From 08ca25052521f3e43f28c1a5eac03269c110ad09 Mon Sep 17 00:00:00 2001 From: Christian Schaller Date: Wed, 18 Sep 2002 18:58:39 +0000 Subject: [PATCH] gstreamer part of new license field in element factory Original commit message from CVS: gstreamer part of new license field in element factory --- gst/gstelement.h | 1 + tools/gst-inspect.c | 1 + 2 files changed, 2 insertions(+) diff --git a/gst/gstelement.h b/gst/gstelement.h index 9b7fd2e1ce..7d712d79cc 100644 --- a/gst/gstelement.h +++ b/gst/gstelement.h @@ -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? */ diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c index 3ac3788590..2a702ea2bb 100644 --- a/tools/gst-inspect.c +++ b/tools/gst-inspect.c @@ -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);