plugins part of license field patch

Original commit message from CVS:
plugins part of license field patch
This commit is contained in:
Christian Schaller 2002-09-18 19:02:18 +00:00
parent 9b5d3a77dd
commit 4af5086de4
3 changed files with 3 additions and 1 deletions

2
common

@ -1 +1 @@
Subproject commit 8579ce0ed656e0c512b37ff70bebd54cab4d4e7d
Subproject commit 2f6d9cfdaaa83ab454d263d6eba88046debadc2d

View file

@ -356,6 +356,7 @@ gst_ffmpegdec_register (GstPlugin *plugin)
details = g_new0 (GstElementDetails,1);
details->longname = g_strdup (in_plugin->name);
details->klass = "Codec/FFMpeg";
details->license = "LGPL";
details->description = g_strdup (in_plugin->name);
details->version = g_strdup("1.0.0");
details->author = g_strdup("The FFMPEG crew, GStreamer plugin by Wim Taymans <wim.taymans@chello.be>");

View file

@ -530,6 +530,7 @@ gst_ffmpegenc_register (GstPlugin *plugin)
details = g_new0 (GstElementDetails,1);
details->longname = g_strdup (in_plugin->name);
details->klass = "Codec/FFMpeg";
details->license = "LGPL";
details->description = g_strdup (in_plugin->name);
details->version = g_strdup("1.0.0");
details->author = g_strdup("The FFMPEG crew, GStreamer plugin by Wim Taymans <wim.taymans@chello.be>");