summaryrefslogtreecommitdiffstats
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/aalib/gstaasink.c2
-rw-r--r--ext/dv/gstdvdec.c1
-rw-r--r--ext/esd/esdmon.c1
-rw-r--r--ext/esd/esdsink.c1
-rw-r--r--ext/flac/gstflacdec.c1
-rw-r--r--ext/flac/gstflacenc.c1
-rw-r--r--ext/jpeg/gstjpegdec.c1
-rw-r--r--ext/jpeg/gstjpegenc.c1
-rw-r--r--ext/ladspa/gstladspa.c1
-rw-r--r--ext/mikmod/gstmikmod.c2
-rw-r--r--ext/raw1394/gst1394.c3
11 files changed, 14 insertions, 1 deletions
diff --git a/ext/aalib/gstaasink.c b/ext/aalib/gstaasink.c
index cdd8ba0c..7ff745d2 100644
--- a/ext/aalib/gstaasink.c
+++ b/ext/aalib/gstaasink.c
@@ -24,9 +24,11 @@
#include "gstaasink.h"
+/* elementfactory information */
static GstElementDetails gst_aasink_details = {
"Video sink",
"Sink/Video",
+ "GPL",
"An ASCII art videosink",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c
index a90308d2..58e76025 100644
--- a/ext/dv/gstdvdec.c
+++ b/ext/dv/gstdvdec.c
@@ -35,6 +35,7 @@
static GstElementDetails dvdec_details = {
"DV (smpte314) decoder plugin",
"Decoder/DV",
+ "LGPL",
"Uses libdv to decode DV video (libdv.sourceforge.net)",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>\n"
diff --git a/ext/esd/esdmon.c b/ext/esd/esdmon.c
index ac9eaa1a..3b382210 100644
--- a/ext/esd/esdmon.c
+++ b/ext/esd/esdmon.c
@@ -71,6 +71,7 @@ GType gst_esdmon_get_type(void);
static GstElementDetails esdmon_details = {
"Esound audio monitor",
"Source/Audio",
+ "LGPL",
"Monitors audio from an esound server",
VERSION,
"Richard Boulton <richard-gst@tartarus.org>",
diff --git a/ext/esd/esdsink.c b/ext/esd/esdsink.c
index 0ac118c9..117de5a1 100644
--- a/ext/esd/esdsink.c
+++ b/ext/esd/esdsink.c
@@ -27,6 +27,7 @@
static GstElementDetails esdsink_details = {
"Esound audio sink",
"Sink/Audio",
+ "LGPL",
"Plays audio to an esound server",
VERSION,
"Richard Boulton <richard-gst@tartarus.org>",
diff --git a/ext/flac/gstflacdec.c b/ext/flac/gstflacdec.c
index 0c14598d..6d1ec067 100644
--- a/ext/flac/gstflacdec.c
+++ b/ext/flac/gstflacdec.c
@@ -30,6 +30,7 @@ extern GstPadTemplate *gst_flacdec_src_template, *gst_flacdec_sink_template;
GstElementDetails flacdec_details = {
"FLAC decoder",
"Codec/Audio/Decoder",
+ "LGPL",
"Decodes FLAC lossless audio streams",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/flac/gstflacenc.c b/ext/flac/gstflacenc.c
index f915063b..448bcdc4 100644
--- a/ext/flac/gstflacenc.c
+++ b/ext/flac/gstflacenc.c
@@ -29,6 +29,7 @@ extern GstPadTemplate *gst_flacenc_src_template, *gst_flacenc_sink_template;
GstElementDetails flacenc_details = {
"FLAC encoder",
"Codec/Audio/Encoder",
+ "LGPL",
"Encodes audio with the FLAC lossless audio encoder",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/jpeg/gstjpegdec.c b/ext/jpeg/gstjpegdec.c
index 8be4b209..a5b70f9b 100644
--- a/ext/jpeg/gstjpegdec.c
+++ b/ext/jpeg/gstjpegdec.c
@@ -29,6 +29,7 @@ extern GstPadTemplate *jpegdec_src_template, *jpegdec_sink_template;
GstElementDetails gst_jpegdec_details = {
"jpeg image decoder",
"Codec/Image/Decoder",
+ "LGPL",
".jpeg",
VERSION,
"Wim Taymans <wim.taymans@tvd.be>",
diff --git a/ext/jpeg/gstjpegenc.c b/ext/jpeg/gstjpegenc.c
index 28980820..ba8dd38b 100644
--- a/ext/jpeg/gstjpegenc.c
+++ b/ext/jpeg/gstjpegenc.c
@@ -26,6 +26,7 @@
GstElementDetails gst_jpegenc_details = {
"jpeg image encoder",
"Codec/Image/Encoder",
+ "LGPL",
".jpeg",
VERSION,
"Wim Taymans <wim.taymans@tvd.be>",
diff --git a/ext/ladspa/gstladspa.c b/ext/ladspa/gstladspa.c
index cd9119a7..e0d007d5 100644
--- a/ext/ladspa/gstladspa.c
+++ b/ext/ladspa/gstladspa.c
@@ -1113,6 +1113,7 @@ ladspa_describe_plugin(const char *pcFullFilename,
details = g_new0(GstElementDetails,1);
details->longname = g_strdup(desc->Name);
details->klass = "Filter/Audio/LADSPA";
+ details->license = "LGPL";
details->description = details->longname;
details->version = g_strdup_printf("%ld",desc->UniqueID);
details->author = g_strdup(desc->Maker);
diff --git a/ext/mikmod/gstmikmod.c b/ext/mikmod/gstmikmod.c
index ced25365..c2cc2f92 100644
--- a/ext/mikmod/gstmikmod.c
+++ b/ext/mikmod/gstmikmod.c
@@ -23,9 +23,11 @@
#include <gst/audio/audio.h>
#include <stdlib.h>
+/* elementfactory information */
GstElementDetails mikmod_details = {
"MikMod",
"Codec/Audio/Decoder",
+ "GPL",
"Module decoder based on libmikmod",
VERSION,
"Jeremy SIMON <jsimon13@yahoo.fr>",
diff --git a/ext/raw1394/gst1394.c b/ext/raw1394/gst1394.c
index 687402ef..d4dd5cdf 100644
--- a/ext/raw1394/gst1394.c
+++ b/ext/raw1394/gst1394.c
@@ -23,10 +23,11 @@
#include "dv1394src.h"
-
+/* elementfactory information */
static GstElementDetails gst_dv1394src_details = {
"Firewire (1394) DV Source",
"Source/1394/DV",
+ "LGPL",
"Source for DV video data from firewire port",
VERSION,
"Erik Walthinsen <omega@temple-baptist.com>",