diff --git a/ext/alsa/gstalsa.c b/ext/alsa/gstalsa.c index de6cd931f3..e140accdaa 100644 --- a/ext/alsa/gstalsa.c +++ b/ext/alsa/gstalsa.c @@ -23,9 +23,11 @@ #include #include "gstalsa.h" +/* elementfactory information */ static GstElementDetails gst_alsa_sink_details = { "Alsa Sink", "Sink/Audio", + "LGPL", "Output to a sound card via ALSA", VERSION, "Thomas Nyberg , " @@ -33,9 +35,11 @@ static GstElementDetails gst_alsa_sink_details = { "(C) 2001 " }; +/* elementfactory information */ static GstElementDetails gst_alsa_src_details = { "Alsa Src", "Source/Audio", + "LGPL", "Read from a sound card via ALSA", VERSION, "Thomas Nyberg , " diff --git a/ext/cdparanoia/gstcdparanoia.c b/ext/cdparanoia/gstcdparanoia.c index cef79f10aa..caf2af5c24 100644 --- a/ext/cdparanoia/gstcdparanoia.c +++ b/ext/cdparanoia/gstcdparanoia.c @@ -42,6 +42,7 @@ static GstElementDetails cdparanoia_details = { "CD Audio (cdda) Source, Paranoia IV", "Source/File", + "LGPL", "Read audio from CD in paranoid mode", VERSION, "Erik Walthinsen ", diff --git a/ext/gnomevfs/gstgnomevfssink.c b/ext/gnomevfs/gstgnomevfssink.c index acb380fa5a..1781c743d3 100644 --- a/ext/gnomevfs/gstgnomevfssink.c +++ b/ext/gnomevfs/gstgnomevfssink.c @@ -73,9 +73,11 @@ struct _GstGnomeVFSSinkClass { GType gst_gnomevfssink_get_type(void); +/* elementfactory information */ GstElementDetails gst_gnomevfssink_details = { "GnomeVFS Sink", "Sink/File", + "LGPL", "Write stream to a GnomeVFS URI", VERSION, "Bastien Nocera ", diff --git a/ext/gnomevfs/gstgnomevfssrc.c b/ext/gnomevfs/gstgnomevfssrc.c index 1138369cfb..da1d11cd81 100644 --- a/ext/gnomevfs/gstgnomevfssrc.c +++ b/ext/gnomevfs/gstgnomevfssrc.c @@ -126,9 +126,11 @@ struct _GstGnomeVFSSrcClass { GstElementClass parent_class; }; +/* elementfactory information */ GstElementDetails gst_gnomevfssrc_details = { "GnomeVFS Source", "Source/File", + "LGPL", "Read from any GnomeVFS file", VERSION, "Bastien Nocera ", diff --git a/ext/vorbis/vorbisdec.c b/ext/vorbis/vorbisdec.c index 86970124a1..544128717e 100644 --- a/ext/vorbis/vorbisdec.c +++ b/ext/vorbis/vorbisdec.c @@ -30,6 +30,7 @@ GstElementDetails vorbisdec_details = { "Ogg Vorbis decoder", "Codec/Audio/Decoder", + "LGPL", "Decodes OGG Vorbis audio", VERSION, "Monty , " diff --git a/ext/vorbis/vorbisenc.c b/ext/vorbis/vorbisenc.c index 8a855d1f9d..1fcace5291 100644 --- a/ext/vorbis/vorbisenc.c +++ b/ext/vorbis/vorbisenc.c @@ -33,6 +33,7 @@ extern GstPadTemplate *gst_vorbisenc_src_template, *gst_vorbisenc_sink_template; GstElementDetails vorbisenc_details = { "Ogg Vorbis encoder", "Codec/Audio/Encoder", + "LGPL", "Encodes audio in OGG Vorbis format", VERSION, "Monty , " diff --git a/gst/adder/gstadder.c b/gst/adder/gstadder.c index e9348cfc7b..6dbb8c6a75 100644 --- a/gst/adder/gstadder.c +++ b/gst/adder/gstadder.c @@ -28,9 +28,11 @@ #define GST_ADDER_BUFFER_SIZE 4096 #define GST_ADDER_NUM_BUFFERS 8 +/* elementfactory information */ GstElementDetails adder_details = { "Adder", "Filter/Audio", + "LGPL", "N-to-1 audio adder/mixer", VERSION, "Thomas ", diff --git a/gst/audioscale/gstaudioscale.c b/gst/audioscale/gstaudioscale.c index ee7d2d4f3d..aee9759b9f 100644 --- a/gst/audioscale/gstaudioscale.c +++ b/gst/audioscale/gstaudioscale.c @@ -30,6 +30,7 @@ static GstElementDetails audioscale_details = { "Audio scaler", "Filter/Audio", + "LGPL", "Audio resampler", VERSION, "Wim Taymans ", diff --git a/gst/sine/gstsinesrc.c b/gst/sine/gstsinesrc.c index 2993082ff5..f5a6e8dac9 100644 --- a/gst/sine/gstsinesrc.c +++ b/gst/sine/gstsinesrc.c @@ -28,10 +28,11 @@ #include - +/* elementfactory information */ GstElementDetails gst_sinesrc_details = { "Sine-wave src", "Source/Audio", + "LGPL", "Create a sine wave of a given frequency and volume", VERSION, "Erik Walthinsen ", diff --git a/gst/videoscale/gstvideoscale.c b/gst/videoscale/gstvideoscale.c index 269d49d3f2..2ccc68c781 100644 --- a/gst/videoscale/gstvideoscale.c +++ b/gst/videoscale/gstvideoscale.c @@ -27,6 +27,7 @@ static GstElementDetails videoscale_details = { "Video scaler", "Filter/Video", + "LGPL", "Resizes video", VERSION, "Wim Taymans ", diff --git a/gst/videotestsrc/gstvideotestsrc.c b/gst/videotestsrc/gstvideotestsrc.c index 13090e3d36..cd76f78776 100644 --- a/gst/videotestsrc/gstvideotestsrc.c +++ b/gst/videotestsrc/gstvideotestsrc.c @@ -30,6 +30,7 @@ static GstElementDetails videotestsrc_details = { "Video test source", "Source/Video", + "LGPL", "Creates a test video stream", VERSION, "David A. Schleef ", diff --git a/gst/volume/gstvolume.c b/gst/volume/gstvolume.c index dc3f0a25a8..6408aa37aa 100644 --- a/gst/volume/gstvolume.c +++ b/gst/volume/gstvolume.c @@ -29,6 +29,7 @@ static GstElementDetails volume_details = { "Volume", "Filter/Audio/Effect", + "LGPL", "Set volume on audio/raw streams", VERSION, "Andy Wingo ", diff --git a/sys/v4l/gstv4lelement.c b/sys/v4l/gstv4lelement.c index 7f71e0e43c..9ad6ce2802 100644 --- a/sys/v4l/gstv4lelement.c +++ b/sys/v4l/gstv4lelement.c @@ -19,9 +19,11 @@ #include "v4l_calls.h" +/* elementfactory information */ static GstElementDetails gst_v4lelement_details = { "Generic video4linux Element", "None/Video", + "LGPL", "Generic plugin for handling common video4linux calls", VERSION, "Ronald Bultje ", diff --git a/sys/v4l/gstv4lmjpegsink.c b/sys/v4l/gstv4lmjpegsink.c index b71645bf35..092cb5a166 100644 --- a/sys/v4l/gstv4lmjpegsink.c +++ b/sys/v4l/gstv4lmjpegsink.c @@ -20,9 +20,11 @@ #include #include "v4lmjpegsink_calls.h" +/* elementfactory information */ static GstElementDetails gst_v4lmjpegsink_details = { "Video (video4linux/MJPEG) sink", "Sink/Video", + "LGPL", "Writes MJPEG-encoded frames to a zoran MJPEG/video4linux device", VERSION, "Ronald Bultje ", diff --git a/sys/v4l/gstv4lmjpegsrc.c b/sys/v4l/gstv4lmjpegsrc.c index 1d17a37ac6..0b0e676a4b 100644 --- a/sys/v4l/gstv4lmjpegsrc.c +++ b/sys/v4l/gstv4lmjpegsrc.c @@ -20,9 +20,11 @@ #include #include "v4lmjpegsrc_calls.h" +/* elementfactory information */ static GstElementDetails gst_v4lmjpegsrc_details = { "Video (video4linux/MJPEG) Source", "Source/Video", + "LGPL", "Reads MJPEG-encoded frames from a zoran MJPEG/video4linux device", VERSION, "Ronald Bultje ", diff --git a/sys/v4l/gstv4lsrc.c b/sys/v4l/gstv4lsrc.c index a087378812..a51d6875bd 100644 --- a/sys/v4l/gstv4lsrc.c +++ b/sys/v4l/gstv4lsrc.c @@ -21,10 +21,11 @@ #include #include "v4lsrc_calls.h" - +/* elementfactory information */ static GstElementDetails gst_v4lsrc_details = { "Video (video4linux/raw) Source", "Source/Video", + "LGPL", "Reads raw frames from a video4linux (BT8x8) device", VERSION, "Ronald Bultje ",