mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-08 00:18:54 +00:00
licensing, name and description changes
Original commit message from CVS: licensing, name and description changes
This commit is contained in:
parent
d9a21a8385
commit
58e4556c7b
10 changed files with 94 additions and 72 deletions
24
ChangeLog
24
ChangeLog
|
@ -1,3 +1,27 @@
|
|||
2005-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/aalib/gstaasink.c:
|
||||
aalib is LGPL, so this plugin can be LGPL
|
||||
* ext/arts/gst_arts.c: (plugin_init):
|
||||
rename, we don't like underscores
|
||||
* ext/audiofile/gstaf.c:
|
||||
* ext/sndfile/gstsf.c:
|
||||
rename, we like a descriptive plugin name
|
||||
* ext/gconf/gstgconfelements.c:
|
||||
change description a little
|
||||
* ext/musicbrainz/gsttrm.c:
|
||||
musicbrainz is LGPL, so plugin can be LGPL
|
||||
* ext/raw1394/gst1394.c:
|
||||
rename, we like all-digit names
|
||||
* gst/equalizer/gstiirequalizer.c:
|
||||
* gst/fdsrc/gstfdsrc.c:
|
||||
* gst/multifilesink/gstmultifilesink.c:
|
||||
rename
|
||||
* gst/virtualdub/gstvirtualdub.c:
|
||||
use GST_PLUGIN_DEFINE
|
||||
* sys/dxr3/dxr3init.c:
|
||||
only uses system headers, and code is LGPL, so plugin is LGPL
|
||||
|
||||
2005-08-13 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* ext/mad/Makefile.am:
|
||||
|
|
|
@ -170,7 +170,8 @@ gst_arts_loop (GstElement * element)
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
if (!gst_element_register (plugin, "gstarts", GST_RANK_NONE, GST_TYPE_ARTS))
|
||||
if (!gst_element_register (plugin, "artsfilter", GST_RANK_NONE,
|
||||
GST_TYPE_ARTS))
|
||||
return FALSE;
|
||||
|
||||
return TRUE;
|
||||
|
@ -178,6 +179,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"gst_arts",
|
||||
"arts",
|
||||
"arTs filter wrapper",
|
||||
plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -42,5 +42,5 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"gstaf",
|
||||
"audiofile",
|
||||
"Audiofile plugin", plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -404,4 +404,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|||
GST_VERSION_MINOR,
|
||||
"trm",
|
||||
"A trm signature producer",
|
||||
plugin_init, VERSION, "GPL", GST_PACKAGE, GST_ORIGIN)
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -874,6 +874,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"gstsf",
|
||||
"Sndfile plugin library",
|
||||
"sndfile",
|
||||
"use libsndfile to read and write audio from and to files",
|
||||
plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -219,8 +219,7 @@ static void
|
|||
setup_filter (GstIirEqualizer * equ, SecondOrderFilter * filter, gdouble gain,
|
||||
gdouble frequency)
|
||||
{
|
||||
gdouble q =
|
||||
pow (HIGHEST_FREQ / LOWEST_FREQ,
|
||||
gdouble q = pow (HIGHEST_FREQ / LOWEST_FREQ,
|
||||
1.0 / (equ->freq_count - 1)) * equ->bandwidth;
|
||||
gdouble theta = frequency * 2 * M_PI;
|
||||
|
||||
|
@ -363,11 +362,12 @@ one_step_ ## TYPE (SecondOrderFilter *filter, \
|
|||
return output; \
|
||||
} \
|
||||
\
|
||||
static const guint history_size_ ## TYPE = sizeof (SecondOrderHistory ## TYPE); \
|
||||
static const guint \
|
||||
history_size_ ## TYPE = sizeof (SecondOrderHistory ## TYPE); \
|
||||
\
|
||||
static void \
|
||||
gst_iir_equ_process_ ## TYPE (GstIirEqualizer *equ, guint8 *data, guint size, \
|
||||
guint channels) \
|
||||
gst_iir_equ_process_ ## TYPE (GstIirEqualizer *equ, guint8 *data, \
|
||||
guint size, guint channels) \
|
||||
{ \
|
||||
guint frames = size / channels / sizeof (TYPE); \
|
||||
guint i, c, f; \
|
||||
|
@ -393,12 +393,11 @@ gst_iir_equ_process_ ## TYPE (GstIirEqualizer *equ, guint8 *data, guint size, \
|
|||
} \
|
||||
}
|
||||
|
||||
CREATE_OPTIMIZED_FUNCTIONS (gint16, gint, -32768, 32767)
|
||||
CREATE_OPTIMIZED_FUNCTIONS (gfloat, gfloat, -1.0, 1.0)
|
||||
CREATE_OPTIMIZED_FUNCTIONS (gint16, gint, -32768, 32767);
|
||||
CREATE_OPTIMIZED_FUNCTIONS (gfloat, gfloat, -1.0, 1.0);
|
||||
|
||||
static void
|
||||
gst_iir_equalizer_filter_inplace (GstAudiofilter * filter,
|
||||
GstBuffer * buf)
|
||||
static void
|
||||
gst_iir_equalizer_filter_inplace (GstAudiofilter * filter, GstBuffer * buf)
|
||||
{
|
||||
GstIirEqualizer *equ = GST_IIR_EQUALIZER (filter);
|
||||
|
||||
|
@ -435,6 +434,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"gstequalizer",
|
||||
"equalizer",
|
||||
"GStreamer equalizers",
|
||||
plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -673,6 +673,6 @@ plugin_init (GstPlugin * plugin)
|
|||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"gstmultifilesink",
|
||||
"multifilesink",
|
||||
"multiple file sink (sequentially) after new media events",
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
|
@ -120,9 +120,7 @@ plugin_init (GModule * module, GstPlugin * plugin)
|
|||
return TRUE;
|
||||
}
|
||||
|
||||
GstPluginDesc plugin_desc = {
|
||||
GST_VERSION_MAJOR,
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"virtualdub",
|
||||
plugin_init
|
||||
};
|
||||
"VirtualDub", plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN);
|
||||
|
|
|
@ -53,4 +53,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|||
GST_VERSION_MINOR,
|
||||
"dxr3",
|
||||
"dxr3 mpeg video board elements",
|
||||
plugin_init, VERSION, "GPL", GST_PACKAGE, GST_ORIGIN)
|
||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
|
||||
|
|
Loading…
Reference in a new issue