summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ext/arts/gst_arts.c1
-rw-r--r--ext/artsd/gstartsdsink.c1
-rw-r--r--ext/audiofile/gstafparse.c3
-rw-r--r--ext/audiofile/gstafsink.c3
-rw-r--r--ext/audiofile/gstafsrc.c3
-rw-r--r--ext/gsm/gstgsmdec.c1
-rw-r--r--ext/gsm/gstgsmenc.c1
-rw-r--r--ext/hermes/gstcolorspace.c1
-rw-r--r--ext/jack/gstjack.c3
-rw-r--r--ext/ladspa/gstladspa.c1
-rw-r--r--ext/lcs/gstcolorspace.c3
-rw-r--r--ext/libfame/gstfamedec.c1
-rw-r--r--ext/sdl/sdlvideosink.c3
-rw-r--r--ext/shout/gstshout.c1
-rw-r--r--ext/smoothwave/gstsmoothwave.c1
-rw-r--r--ext/snapshot/gstsnapshot.c3
-rw-r--r--ext/swfdec/gstswfdec.c1
-rw-r--r--ext/tarkin/gsttarkindec.c1
-rw-r--r--ext/tarkin/gsttarkinenc.c1
-rw-r--r--gst/cdxaparse/gstcdxaparse.c1
-rw-r--r--gst/chart/gstchart.c1
-rw-r--r--gst/deinterlace/gstdeinterlace.c2
-rw-r--r--gst/festival/gstfestival.c1
-rw-r--r--gst/filter/gstbpwsinc.c2
-rw-r--r--gst/flx/gstflxdec.c1
-rw-r--r--gst/mixmatrix/mixmatrix.c2
-rw-r--r--gst/modplug/gstmodplug.cc2
-rw-r--r--gst/mpeg1sys/gstmpeg1systemencode.c1
-rw-r--r--gst/mpeg1videoparse/gstmp1videoparse.c1
-rw-r--r--gst/mpeg2sub/gstmpeg2subt.c1
-rw-r--r--gst/mpegaudioparse/gstmpegaudioparse.c1
-rw-r--r--gst/passthrough/gstpassthrough.c2
-rw-r--r--gst/playondemand/gstplayondemand.c2
-rw-r--r--gst/qtdemux/qtdemux.c1
-rw-r--r--gst/rtjpeg/gstrtjpeg.c1
-rw-r--r--gst/rtjpeg/gstrtjpegdec.c1
-rw-r--r--gst/rtjpeg/gstrtjpegenc.c1
-rw-r--r--gst/smooth/gstsmooth.c3
-rw-r--r--gst/smoothwave/gstsmoothwave.c1
-rw-r--r--gst/spectrum/gstspectrum.c2
-rw-r--r--gst/speed/gstspeed.c2
-rw-r--r--gst/stereo/gststereo.c3
-rw-r--r--gst/videocrop/gstvideocrop.c1
-rw-r--r--gst/virtualdub/gstxsharpen.c1
-rw-r--r--gst/y4m/gsty4mencode.c1
-rw-r--r--sys/dxr3/gstdxr3.c3
-rw-r--r--sys/qcam/gstqcamsrc.c2
-rw-r--r--sys/vcd/vcdsrc.c1
48 files changed, 67 insertions, 10 deletions
diff --git a/ext/arts/gst_arts.c b/ext/arts/gst_arts.c
index 9037513b..8e65656a 100644
--- a/ext/arts/gst_arts.c
+++ b/ext/arts/gst_arts.c
@@ -29,6 +29,7 @@
static GstElementDetails gst_arts_details = {
"aRts plugin",
"Filter/Audio",
+ "LGPL",
"aRts wrapper filter",
VERSION,
"Erik Walthinsen <omega@temple-baptist.com,\n"
diff --git a/ext/artsd/gstartsdsink.c b/ext/artsd/gstartsdsink.c
index 81a06a30..cbe6b904 100644
--- a/ext/artsd/gstartsdsink.c
+++ b/ext/artsd/gstartsdsink.c
@@ -26,6 +26,7 @@
static GstElementDetails artsdsink_details = {
"aRtsd audio sink",
"Sink/Audio",
+ "LGPL",
"Plays audio to an aRts server",
VERSION,
"Richard Boulton <richard-gst@tartarus.org>",
diff --git a/ext/audiofile/gstafparse.c b/ext/audiofile/gstafparse.c
index 73a2ad6d..853a52e5 100644
--- a/ext/audiofile/gstafparse.c
+++ b/ext/audiofile/gstafparse.c
@@ -26,10 +26,11 @@
#include <string.h>
#include "gstafparse.h"
-
+/* elementfactory information */
static GstElementDetails afparse_details = {
"Audiofile Parse",
"Codec/Parser",
+ "LGPL",
"Audiofile parser for audio/raw",
VERSION,
"Steve Baker <stevebaker_org@yahoo.co.uk>",
diff --git a/ext/audiofile/gstafsink.c b/ext/audiofile/gstafsink.c
index 7ea8d3c8..95968a99 100644
--- a/ext/audiofile/gstafsink.c
+++ b/ext/audiofile/gstafsink.c
@@ -24,10 +24,11 @@
#include <gst/gst.h>
#include "gstafsink.h"
-
+/* elementfactory information */
static GstElementDetails afsink_details = {
"Audiofile Sink",
"Sink/Audio",
+ "LGPL",
"Write audio streams to disk using libaudiofile",
VERSION,
"Thomas <thomas@apestaart.org>",
diff --git a/ext/audiofile/gstafsrc.c b/ext/audiofile/gstafsrc.c
index af9dfe64..ddc059ce 100644
--- a/ext/audiofile/gstafsrc.c
+++ b/ext/audiofile/gstafsrc.c
@@ -25,10 +25,11 @@
#include <gst/audio/audio.h>
#include "gstafsrc.h"
-
+/* elementfactory information */
static GstElementDetails afsrc_details = {
"Audiofile Src",
"Source/Audio",
+ "LGPL",
"Read audio files from disk using libaudiofile",
VERSION,
"Thomas <thomas@apestaart.org>",
diff --git a/ext/gsm/gstgsmdec.c b/ext/gsm/gstgsmdec.c
index aef69763..d43ad722 100644
--- a/ext/gsm/gstgsmdec.c
+++ b/ext/gsm/gstgsmdec.c
@@ -28,6 +28,7 @@ extern GstPadTemplate *gsmdec_src_template, *gsmdec_sink_template;
GstElementDetails gst_gsmdec_details = {
"gsm audio decoder",
"Codec/Audio/Decoder",
+ "LGPL",
".gsm",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/gsm/gstgsmenc.c b/ext/gsm/gstgsmenc.c
index 3ed506b8..a425f383 100644
--- a/ext/gsm/gstgsmenc.c
+++ b/ext/gsm/gstgsmenc.c
@@ -28,6 +28,7 @@ extern GstPadTemplate *gsmenc_src_template, *gsmenc_sink_template;
GstElementDetails gst_gsmenc_details = {
"gsm audio encoder",
"Codec/Audio/Encoder",
+ "LGPL",
".gsm",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/hermes/gstcolorspace.c b/ext/hermes/gstcolorspace.c
index 84c124b6..ba076d08 100644
--- a/ext/hermes/gstcolorspace.c
+++ b/ext/hermes/gstcolorspace.c
@@ -27,6 +27,7 @@
static GstElementDetails colorspace_details = {
"Colorspace converter",
"Filter/Video",
+ "LGPL",
"Converts video from one colorspace to another using libhermes",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/jack/gstjack.c b/ext/jack/gstjack.c
index 179645f4..33901da7 100644
--- a/ext/jack/gstjack.c
+++ b/ext/jack/gstjack.c
@@ -35,10 +35,11 @@
sensitive to them
*/
-
+/* elementfactory information */
static GstElementDetails gst_jack_bin_details = {
"Jack Bin",
"Generic/Bin",
+ "LGPL",
"Jack processing bin: see README for more info",
VERSION,
"Andy Wingo <wingo@pobox.com>",
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/lcs/gstcolorspace.c b/ext/lcs/gstcolorspace.c
index cee44d96..8f8785dc 100644
--- a/ext/lcs/gstcolorspace.c
+++ b/ext/lcs/gstcolorspace.c
@@ -59,10 +59,11 @@ struct _GstColorspaceClass {
GstElementClass parent_class;
};
-
+/* elementfactory information */
static GstElementDetails colorspace_details = {
"Colorspace converter",
"Filter/Effect",
+ "LGPL",
"Converts video from one colorspace to another",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/libfame/gstfamedec.c b/ext/libfame/gstfamedec.c
index 43ebdd94..accf67ea 100644
--- a/ext/libfame/gstfamedec.c
+++ b/ext/libfame/gstfamedec.c
@@ -28,6 +28,7 @@
static GstElementDetails gst_famedec_details = {
"MPEG1 and MPEG4 video decoder using the famedec library",
"Codec/Video/Encoder",
+ "GPL",
"Uses famedec to decode MPEG video streams",
VERSION,
"famedec: (C) 2000-2001, Vivien Chappelier\n"
diff --git a/ext/sdl/sdlvideosink.c b/ext/sdl/sdlvideosink.c
index fc6247eb..a8b72b28 100644
--- a/ext/sdl/sdlvideosink.c
+++ b/ext/sdl/sdlvideosink.c
@@ -27,10 +27,11 @@
#include "sdlvideosink.h"
-
+/* elementfactory information */
static GstElementDetails gst_sdlvideosink_details = {
"Video sink",
"Sink/Video",
+ "LGPL",
"An SDL-based videosink",
VERSION,
"Ronald Bultje <rbultje@ronald.bitfreak.net>",
diff --git a/ext/shout/gstshout.c b/ext/shout/gstshout.c
index 1919768f..a0632d76 100644
--- a/ext/shout/gstshout.c
+++ b/ext/shout/gstshout.c
@@ -23,6 +23,7 @@
static GstElementDetails icecastsend_details = {
"An Icecast plugin",
"IcecastSend",
+ "GPL",
"Sends data to an icecast server",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/ext/smoothwave/gstsmoothwave.c b/ext/smoothwave/gstsmoothwave.c
index 7f2246f3..7e2917b4 100644
--- a/ext/smoothwave/gstsmoothwave.c
+++ b/ext/smoothwave/gstsmoothwave.c
@@ -25,6 +25,7 @@
static GstElementDetails gst_smoothwave_details = {
"Smooth waveform",
"Sink/Visualization",
+ "LGPL",
"Fading grayscale waveform display",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/ext/snapshot/gstsnapshot.c b/ext/snapshot/gstsnapshot.c
index 20dc2648..3b4d0528 100644
--- a/ext/snapshot/gstsnapshot.c
+++ b/ext/snapshot/gstsnapshot.c
@@ -24,10 +24,11 @@
#define MAX_HEIGHT 2048
-
+/* elementfactory information */
static GstElementDetails snapshot_details = {
"snapshot",
"Filter/Effect",
+ "LGPL",
"Dump a frame to a png file",
VERSION,
"Jeremy SIMON <jsimon13@yahoo.fr>",
diff --git a/ext/swfdec/gstswfdec.c b/ext/swfdec/gstswfdec.c
index 1f824994..db672d30 100644
--- a/ext/swfdec/gstswfdec.c
+++ b/ext/swfdec/gstswfdec.c
@@ -24,6 +24,7 @@
static GstElementDetails gst_swfdec_details = {
"SWF video decoder",
"Codec/Video/Decoder",
+ "LGPL",
"Uses libswfdec to decode Flash video streams",
VERSION,
"David Schleef <ds@schleef.org>",
diff --git a/ext/tarkin/gsttarkindec.c b/ext/tarkin/gsttarkindec.c
index 28a7ee0a..11d5f1ad 100644
--- a/ext/tarkin/gsttarkindec.c
+++ b/ext/tarkin/gsttarkindec.c
@@ -29,6 +29,7 @@ extern GstPadTemplate *dec_src_template, *dec_sink_template;
GstElementDetails tarkindec_details = {
"Ogg Tarkin decoder",
"Filter/Video/Decoder",
+ "LGPL",
"Decodes video in OGG Tarkin format",
VERSION,
"Monty <monty@xiph.org>, "
diff --git a/ext/tarkin/gsttarkinenc.c b/ext/tarkin/gsttarkinenc.c
index 3d3128a4..a506822c 100644
--- a/ext/tarkin/gsttarkinenc.c
+++ b/ext/tarkin/gsttarkinenc.c
@@ -29,6 +29,7 @@ extern GstPadTemplate *enc_src_template, *enc_sink_template;
GstElementDetails tarkinenc_details = {
"Ogg Tarkin encoder",
"Filter/Video/Encoder",
+ "LGPL",
"Encodes video in OGG Tarkin format",
VERSION,
"Monty <monty@xiph.org>, "
diff --git a/gst/cdxaparse/gstcdxaparse.c b/gst/cdxaparse/gstcdxaparse.c
index 08e5ba9b..842d8e29 100644
--- a/gst/cdxaparse/gstcdxaparse.c
+++ b/gst/cdxaparse/gstcdxaparse.c
@@ -40,6 +40,7 @@
static GstElementDetails gst_cdxa_parse_details = {
".dat parser",
"Codec/Parser",
+ "LGPL",
"Parse a .dat file (VCD) into raw mpeg1",
VERSION,
"Wim Taymans <wim.taymans@tvd.be>",
diff --git a/gst/chart/gstchart.c b/gst/chart/gstchart.c
index e24521a0..39fe7ad1 100644
--- a/gst/chart/gstchart.c
+++ b/gst/chart/gstchart.c
@@ -63,6 +63,7 @@ GType gst_chart_get_type(void);
static GstElementDetails gst_chart_details = {
"chart drawer",
"Visualization",
+ "LGPL",
"Takes frames of data and outputs video frames of a chart of data",
VERSION,
"Richard Boulton <richard@tartarus.org>",
diff --git a/gst/deinterlace/gstdeinterlace.c b/gst/deinterlace/gstdeinterlace.c
index 9c4d5c29..9b76d7ee 100644
--- a/gst/deinterlace/gstdeinterlace.c
+++ b/gst/deinterlace/gstdeinterlace.c
@@ -23,9 +23,11 @@
#include <gst/gst.h>
#include "gstdeinterlace.h"
+/* elementfactory information */
static GstElementDetails deinterlace_details = {
"Deinterlace",
"Filter/Video",
+ "LGPL",
"Deinterlace video",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/festival/gstfestival.c b/gst/festival/gstfestival.c
index 699f0fbc..d0470379 100644
--- a/gst/festival/gstfestival.c
+++ b/gst/festival/gstfestival.c
@@ -90,6 +90,7 @@ static char* client_accept_s_expr (int fd);
static GstElementDetails gst_festival_details = {
"Festival synthesizer",
"Filter/Audio",
+ "LGPL",
"Synthesizes plain text into audio",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/filter/gstbpwsinc.c b/gst/filter/gstbpwsinc.c
index 6ce634d3..511d59e5 100644
--- a/gst/filter/gstbpwsinc.c
+++ b/gst/filter/gstbpwsinc.c
@@ -35,9 +35,11 @@
#include <math.h> /* M_PI */
#include <string.h> /* memmove */
+/* elementfactory information */
GstElementDetails gst_bpwsinc_details = {
"BPWSinc",
"Filter/Audio/Effect",
+ "LGPL",
"Band-Pass Windowed sinc filter",
VERSION,
"Thomas <thomas@apestaart.org>",
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c
index d54fc988..7b388232 100644
--- a/gst/flx/gstflxdec.c
+++ b/gst/flx/gstflxdec.c
@@ -30,6 +30,7 @@ static GstCaps* flxdec_type_find(GstBuffer *buf, gpointer private);
static GstElementDetails flxdec_details = {
"FLX Decoder",
"Codec/Audio/Decoder",
+ "LGPL",
"FLX decoder",
VERSION,
"Sepp Wijnands <mrrazz@garbage-coderz.net>"
diff --git a/gst/mixmatrix/mixmatrix.c b/gst/mixmatrix/mixmatrix.c
index 935b203b..a8d5279f 100644
--- a/gst/mixmatrix/mixmatrix.c
+++ b/gst/mixmatrix/mixmatrix.c
@@ -42,9 +42,11 @@ struct _GstMixMatrixClass {
void (*resize) (GstMixMatrix *mix);
};
+/* elementfactory information */
static GstElementDetails mixmatrix_details = {
"Mixing Matrix",
"Filter/Audio/Mixing",
+ "LGPL",
"Mix N audio channels together into M channels",
VERSION,
"Erik Walthinsen <omega@temple-baptist.com>",
diff --git a/gst/modplug/gstmodplug.cc b/gst/modplug/gstmodplug.cc
index c0991e4b..bcc63e8d 100644
--- a/gst/modplug/gstmodplug.cc
+++ b/gst/modplug/gstmodplug.cc
@@ -33,9 +33,11 @@
#include <gst/gst.h>
#include <stdlib.h>
+/* elementfactory information */
GstElementDetails modplug_details = {
"ModPlug",
"Codec/Audio/Decoder",
+ "LGPL",
"Module decoder based on modplug engine",
VERSION,
"Jeremy SIMON <jsimon13@yahoo.fr> "
diff --git a/gst/mpeg1sys/gstmpeg1systemencode.c b/gst/mpeg1sys/gstmpeg1systemencode.c
index 3c2ed6cd..11cca2de 100644
--- a/gst/mpeg1sys/gstmpeg1systemencode.c
+++ b/gst/mpeg1sys/gstmpeg1systemencode.c
@@ -31,6 +31,7 @@
static GstElementDetails system_encode_details = {
"MPEG1 Multiplexer",
"Codec/Muxer",
+ "LGPL",
"Multiplexes MPEG-1 Streams",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/mpeg1videoparse/gstmp1videoparse.c b/gst/mpeg1videoparse/gstmp1videoparse.c
index 94263dea..c73d6d1b 100644
--- a/gst/mpeg1videoparse/gstmp1videoparse.c
+++ b/gst/mpeg1videoparse/gstmp1videoparse.c
@@ -35,6 +35,7 @@
static GstElementDetails mp1videoparse_details = {
"MPEG 1 Video Parser",
"Codec/Parser",
+ "LGPL",
"Parses and frames MPEG 1 video streams, provides seek",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/mpeg2sub/gstmpeg2subt.c b/gst/mpeg2sub/gstmpeg2subt.c
index 45f42537..c2675224 100644
--- a/gst/mpeg2sub/gstmpeg2subt.c
+++ b/gst/mpeg2sub/gstmpeg2subt.c
@@ -36,6 +36,7 @@ static void gst_mpeg2subt_get_property (GObject *object, guint prop_id, GValue
static GstElementDetails mpeg2subt_details = {
"MPEG2 subtitle Decoder",
"Codec/Video/Decoder",
+ "LGPL",
"Decodes and merges MPEG2 subtitles into a video frame",
VERSION,
"Samuel Hocevar <sam@via.ecp.fr>\n"
diff --git a/gst/mpegaudioparse/gstmpegaudioparse.c b/gst/mpegaudioparse/gstmpegaudioparse.c
index c6c79655..fa466f68 100644
--- a/gst/mpegaudioparse/gstmpegaudioparse.c
+++ b/gst/mpegaudioparse/gstmpegaudioparse.c
@@ -25,6 +25,7 @@
static GstElementDetails mp3parse_details = {
"MPEG1 Audio Parser",
"Codec/Parser",
+ "LGPL",
"Parses and frames mpeg1 audio streams (levels 1-3), provides seek",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/passthrough/gstpassthrough.c b/gst/passthrough/gstpassthrough.c
index 841da95b..46045f73 100644
--- a/gst/passthrough/gstpassthrough.c
+++ b/gst/passthrough/gstpassthrough.c
@@ -26,9 +26,11 @@
#define PASSTHRU_BUF_SIZE 4096
#define PASSTHRU_NUM_BUFS 4
+/* elementfactory information */
static GstElementDetails passthrough_details = {
"Passthrough",
"Filter/Audio/Effect",
+ "LGPL",
"Transparent filter for audio/raw (boilerplate for effects)",
VERSION,
"Thomas <thomas@apestaart.org>, "\
diff --git a/gst/playondemand/gstplayondemand.c b/gst/playondemand/gstplayondemand.c
index 4eeab9e1..45814382 100644
--- a/gst/playondemand/gstplayondemand.c
+++ b/gst/playondemand/gstplayondemand.c
@@ -32,9 +32,11 @@
#define POD_BUFFER_SIZE 882000 /* enough space for 10 seconds of 16-bit audio
at 44100 samples per second ... */
+/* elementfactory information */
static GstElementDetails play_on_demand_details = {
"Play On Demand",
"Filter/Audio/Effect",
+ "LGPL",
"Plays a stream whenever it receives a certain signal",
VERSION,
"Leif Morgan Johnson <lmjohns3@eos.ncsu.edu>",
diff --git a/gst/qtdemux/qtdemux.c b/gst/qtdemux/qtdemux.c
index 3fc8acc0..4d6e155c 100644
--- a/gst/qtdemux/qtdemux.c
+++ b/gst/qtdemux/qtdemux.c
@@ -28,6 +28,7 @@ gst_qtdemux_details =
{
"quicktime parser",
"Codec/Parser",
+ "LGPL",
"Parses a quicktime stream into audio and video substreams",
VERSION,
"A.Baguinski <artm@v2.nl>",
diff --git a/gst/rtjpeg/gstrtjpeg.c b/gst/rtjpeg/gstrtjpeg.c
index f42fac42..25ef3dfd 100644
--- a/gst/rtjpeg/gstrtjpeg.c
+++ b/gst/rtjpeg/gstrtjpeg.c
@@ -21,6 +21,7 @@
#include <gstrtjpegenc.h>
#include <gstrtjpegdec.h>
+/* elementfactory information */
extern GstElementDetails gst_rtjpegenc_details;
extern GstElementDetails gst_rtjpegdec_details;
diff --git a/gst/rtjpeg/gstrtjpegdec.c b/gst/rtjpeg/gstrtjpegdec.c
index 425fc55d..3676df84 100644
--- a/gst/rtjpeg/gstrtjpegdec.c
+++ b/gst/rtjpeg/gstrtjpegdec.c
@@ -26,6 +26,7 @@
GstElementDetails gst_rtjpegdec_details = {
"RTjpeg decoder",
"Codec/Video/Decoder",
+ "LGPL",
"Decodes video in RTjpeg format",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/rtjpeg/gstrtjpegenc.c b/gst/rtjpeg/gstrtjpegenc.c
index 5f7c3a75..fb0723bc 100644
--- a/gst/rtjpeg/gstrtjpegenc.c
+++ b/gst/rtjpeg/gstrtjpegenc.c
@@ -24,6 +24,7 @@
GstElementDetails gst_rtjpegenc_details = {
"RTjpeg encoder",
"Codec/Video/Encoder",
+ "LGPL",
"Encodes video in RTjpeg format",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/smooth/gstsmooth.c b/gst/smooth/gstsmooth.c
index be66748d..6b3f1a43 100644
--- a/gst/smooth/gstsmooth.c
+++ b/gst/smooth/gstsmooth.c
@@ -20,10 +20,11 @@
#include <string.h>
#include <gstsmooth.h>
-
+/* elementfactory information */
static GstElementDetails smooth_details = {
"Smooth effect",
"Filter/Video",
+ "LGPL",
"Apply a smooth filter to an image",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/smoothwave/gstsmoothwave.c b/gst/smoothwave/gstsmoothwave.c
index 7f2246f3..7e2917b4 100644
--- a/gst/smoothwave/gstsmoothwave.c
+++ b/gst/smoothwave/gstsmoothwave.c
@@ -25,6 +25,7 @@
static GstElementDetails gst_smoothwave_details = {
"Smooth waveform",
"Sink/Visualization",
+ "LGPL",
"Fading grayscale waveform display",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/spectrum/gstspectrum.c b/gst/spectrum/gstspectrum.c
index 4cd32836..cb78bdd0 100644
--- a/gst/spectrum/gstspectrum.c
+++ b/gst/spectrum/gstspectrum.c
@@ -21,9 +21,11 @@
#include "gstspectrum.h"
+/* elementfactory information */
static GstElementDetails gst_spectrum_details = {
"Spectrum analyzer",
"Filter/Audio/Analysis",
+ "LGPL",
"Run an FFT on the audio signal, output spectrum data",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/speed/gstspeed.c b/gst/speed/gstspeed.c
index 2a30a7ad..b43a5afe 100644
--- a/gst/speed/gstspeed.c
+++ b/gst/speed/gstspeed.c
@@ -30,9 +30,11 @@
/* number of buffers to allocate per chunk in sink buffer pool */
#define SPEED_NUMBUF 6
+/* elementfactory information */
static GstElementDetails speed_details = {
"Speed",
"Filter/Audio/Effect",
+ "LGPL",
"Set speed/pitch on audio/raw streams (resampler)",
VERSION,
"Andy Wingo <apwingo@eos.ncsu.edu>",
diff --git a/gst/stereo/gststereo.c b/gst/stereo/gststereo.c
index 0d84c84f..2bb2bab8 100644
--- a/gst/stereo/gststereo.c
+++ b/gst/stereo/gststereo.c
@@ -19,10 +19,11 @@
#include <gststereo.h>
-
+/* elementfactory information */
static GstElementDetails stereo_details = {
"Stereo effect",
"Filter/Audio/Effect",
+ "LGPL",
"Muck with the stereo signal, enhance it's 'stereo-ness'",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",
diff --git a/gst/videocrop/gstvideocrop.c b/gst/videocrop/gstvideocrop.c
index 0554042e..0f051795 100644
--- a/gst/videocrop/gstvideocrop.c
+++ b/gst/videocrop/gstvideocrop.c
@@ -56,6 +56,7 @@ struct _GstVideoCropClass {
static GstElementDetails gst_video_crop_details = {
"video crop filter",
"Filter/Video/Crop",
+ "LGPL",
"Crops video into a user defined region",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/gst/virtualdub/gstxsharpen.c b/gst/virtualdub/gstxsharpen.c
index f42ad7d0..c93a9b7b 100644
--- a/gst/virtualdub/gstxsharpen.c
+++ b/gst/virtualdub/gstxsharpen.c
@@ -53,6 +53,7 @@ struct _GstXsharpenClass
GstElementDetails gst_xsharpen_details = {
"",
"Filter/Video/Effect",
+ "LGPL",
"Apply a sharpen effect on video"
VERSION,
"Jeremy SIMON <jsimon13@yahoo.fr>",
diff --git a/gst/y4m/gsty4mencode.c b/gst/y4m/gsty4mencode.c
index 65343337..1f101fd6 100644
--- a/gst/y4m/gsty4mencode.c
+++ b/gst/y4m/gsty4mencode.c
@@ -24,6 +24,7 @@
static GstElementDetails lavencode_details = {
"LavEncode",
"Codec/Video/Encoder",
+ "LGPL",
"Encodes a YUV frame into the lav format (mjpeg_tools)",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/sys/dxr3/gstdxr3.c b/sys/dxr3/gstdxr3.c
index 23058a29..4d2cc00f 100644
--- a/sys/dxr3/gstdxr3.c
+++ b/sys/dxr3/gstdxr3.c
@@ -1,9 +1,10 @@
#include "gstdxr3videosink.h"
-
+/* elementfactory information */
static GstElementDetails dxr3_video_sink_details = {
"dxr3/Hollywood+ mpeg decoder board plugin",
"video/mpeg",
+ "GPL",
"Outputs PAL/NTSC video via the dxr3/Hollywood+ mpeg decoder board",
VERSION,
"Rehan Khwaja <rehankhwaja@yahoo.com>",
diff --git a/sys/qcam/gstqcamsrc.c b/sys/qcam/gstqcamsrc.c
index f9ce9b7e..7a30d34c 100644
--- a/sys/qcam/gstqcamsrc.c
+++ b/sys/qcam/gstqcamsrc.c
@@ -29,11 +29,13 @@
#include "qcamip.h"
+/* elementfactory information */
static GstElementDetails
gst_qcamsrc_details =
{
"QCam Source",
"Source/Video",
+ "LGPL",
"Read from a QuickCam device",
VERSION,
"Wim Taymans <wim.taymans@chello.be>",
diff --git a/sys/vcd/vcdsrc.c b/sys/vcd/vcdsrc.c
index f8b4b6bf..0568b922 100644
--- a/sys/vcd/vcdsrc.c
+++ b/sys/vcd/vcdsrc.c
@@ -37,6 +37,7 @@
static GstElementDetails vcdsrc_details = {
"VCD Source",
"Source/File",
+ "LGPL",
"Asynchronous read from VCD disk",
VERSION,
"Erik Walthinsen <omega@cse.ogi.edu>",