mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
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:
parent
78f516eaa5
commit
08ca250525
2 changed files with 2 additions and 0 deletions
|
@ -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? */
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue