mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
plugins part of license field patch
Original commit message from CVS: plugins part of license field patch
This commit is contained in:
parent
a8974e0a63
commit
e127f803f0
16 changed files with 27 additions and 2 deletions
|
@ -23,9 +23,11 @@
|
|||
#include <sys/time.h>
|
||||
#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 <thomas@codefactory.se>, "
|
||||
|
@ -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 <thomas@codefactory.se>, "
|
||||
|
|
|
@ -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 <omega@cse.ogi.edu>",
|
||||
|
|
|
@ -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 <hadess@hadess.net>",
|
||||
|
|
|
@ -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 <hadess@hadess.net>",
|
||||
|
|
|
@ -30,6 +30,7 @@ GstElementDetails vorbisdec_details =
|
|||
{
|
||||
"Ogg Vorbis decoder",
|
||||
"Codec/Audio/Decoder",
|
||||
"LGPL",
|
||||
"Decodes OGG Vorbis audio",
|
||||
VERSION,
|
||||
"Monty <monty@xiph.org>, "
|
||||
|
|
|
@ -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 <monty@xiph.org>, "
|
||||
|
|
|
@ -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 <thomas@apestaart.org>",
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
static GstElementDetails audioscale_details = {
|
||||
"Audio scaler",
|
||||
"Filter/Audio",
|
||||
"LGPL",
|
||||
"Audio resampler",
|
||||
VERSION,
|
||||
"Wim Taymans <wim.taymans@chello.be>",
|
||||
|
|
|
@ -28,10 +28,11 @@
|
|||
|
||||
#include <gstsinesrc.h>
|
||||
|
||||
|
||||
/* 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 <omega@cse.ogi.edu>",
|
||||
|
|
|
@ -27,6 +27,7 @@
|
|||
static GstElementDetails videoscale_details = {
|
||||
"Video scaler",
|
||||
"Filter/Video",
|
||||
"LGPL",
|
||||
"Resizes video",
|
||||
VERSION,
|
||||
"Wim Taymans <wim.taymans@chello.be>",
|
||||
|
|
|
@ -30,6 +30,7 @@
|
|||
static GstElementDetails videotestsrc_details = {
|
||||
"Video test source",
|
||||
"Source/Video",
|
||||
"LGPL",
|
||||
"Creates a test video stream",
|
||||
VERSION,
|
||||
"David A. Schleef <ds@schleef.org>",
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
static GstElementDetails volume_details = {
|
||||
"Volume",
|
||||
"Filter/Audio/Effect",
|
||||
"LGPL",
|
||||
"Set volume on audio/raw streams",
|
||||
VERSION,
|
||||
"Andy Wingo <apwingo@eos.ncsu.edu>",
|
||||
|
|
|
@ -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 <rbultje@ronald.bitfreak.net>",
|
||||
|
|
|
@ -20,9 +20,11 @@
|
|||
#include <string.h>
|
||||
#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 <rbultje@ronald.bitfreak.net>",
|
||||
|
|
|
@ -20,9 +20,11 @@
|
|||
#include <string.h>
|
||||
#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 <rbultje@ronald.bitfreak.net>",
|
||||
|
|
|
@ -21,10 +21,11 @@
|
|||
#include <sys/time.h>
|
||||
#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 <rbultje@ronald.bitfreak.net>",
|
||||
|
|
Loading…
Reference in a new issue