licensing, name and description changes
authorThomas Vander Stichele <thomas@apestaart.org>
Sun, 14 Aug 2005 16:10:55 +0000 (16:10 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sun, 14 Aug 2005 16:10:55 +0000 (16:10 +0000)
Original commit message from CVS:
licensing, name and description changes

ChangeLog
ext/aalib/gstaasink.c
ext/gconf/gstgconfelements.c
ext/raw1394/gst1394.c
gst/equalizer/gstiirequalizer.c
gst/fdsrc/gstfdsrc.c
gst/qtdemux/README [deleted file]

index 92e3166..0809035 100644 (file)
--- a/ChangeLog
+++ b/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:
index 74aa52d..b220234 100644 (file)
@@ -548,4 +548,4 @@ GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
     "aasink",
     "ASCII Art video sink",
-    plugin_init, VERSION, "GPL", GST_PACKAGE, GST_ORIGIN)
+    plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN)
index 48aa4cf..1820c1f 100644 (file)
@@ -45,5 +45,5 @@ plugin_init (GstPlugin * plugin)
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
     "gconfelements",
-    "Plugin contains plugins wrapping the GStreamer/GConf audio/video output settings",
+    "elements wrapping the GStreamer/GConf audio/video output settings",
     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
index cd89d9f..cd91a18 100644 (file)
@@ -38,6 +38,6 @@ plugin_init (GstPlugin * plugin)
 
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
-    "gst1394",
+    "1394",
     "Source for DV data via IEEE1394 interface",
     plugin_init, VERSION, "LGPL", GST_PACKAGE, GST_ORIGIN);
index c781979..0a4a24d 100644 (file)
@@ -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;
 
@@ -341,64 +340,64 @@ gst_iir_equalizer_get_property (GObject * object, guint prop_id,
 
 /* start of code that is type specific */
 
-#define CREATE_OPTIMIZED_FUNCTIONS(TYPE,BIG_TYPE,MIN_VAL,MAX_VAL)              \
-typedef struct {                                                               \
-  TYPE x1, x2;         /* history of input values for a filter */              \
-  TYPE y1, y2;         /* history of output values for a filter */             \
-} SecondOrderHistory ## TYPE;                                                  \
-                                                                               \
-static inline TYPE                                                             \
-one_step_ ## TYPE (SecondOrderFilter *filter,                                  \
-    SecondOrderHistory ## TYPE *history, TYPE input)                           \
-{                                                                              \
-  /* calculate output */                                                       \
-  TYPE output = filter->alpha * (input - history->x2) +                                \
-    filter->gamma * history->y1 - filter->beta * history->y2;                  \
-  /* update history */                                                         \
-  history->y2 = history->y1;                                                   \
-  history->y1 = output;                                                                \
-  history->x2 = history->x1;                                                   \
-  history->x1 = input;                                                         \
-                                                                               \
-  return output;                                                               \
-}                                                                              \
-                                                                               \
-static const guint history_size_ ## TYPE = sizeof (SecondOrderHistory ## TYPE); \
-                                                                               \
-static void                                                                    \
-gst_iir_equ_process_ ## TYPE (GstIirEqualizer *equ, guint8 *data, guint size,  \
-    guint channels)                                                            \
-{                                                                              \
-  guint frames = size / channels / sizeof (TYPE);                              \
-  guint i, c, f;                                                               \
-  BIG_TYPE cur;                                                                        \
-  TYPE val;                                                                    \
-                                                                               \
-  for (i = 0; i < frames; i++) {                                               \
-    for (c = 0; c < channels; c++) {                                           \
-      SecondOrderHistory ## TYPE *history = equ->history;                      \
-      val = *((TYPE *) data);                                                  \
-      cur = 0;                                                                 \
-      for (f = 0; f < equ->freq_count; f++) {                                  \
-       SecondOrderFilter *filter = &equ->filter[f];                            \
-                                                                               \
-       cur += one_step_ ## TYPE (filter, history, val);                        \
-       history++;                                                              \
-      }                                                                                \
-      cur += val * 0.25;                                                       \
-      cur = CLAMP (cur, MIN_VAL, MAX_VAL);                                     \
-      *((TYPE *) data) = (TYPE) cur;                                           \
-      data += sizeof (TYPE);                                                   \
-    }                                                                          \
-  }                                                                            \
+#define CREATE_OPTIMIZED_FUNCTIONS(TYPE,BIG_TYPE,MIN_VAL,MAX_VAL)      \
+typedef struct {                                                       \
+  TYPE x1, x2;         /* history of input values for a filter */      \
+  TYPE y1, y2;         /* history of output values for a filter */     \
+} SecondOrderHistory ## TYPE;                                          \
+                                                                       \
+static inline TYPE                                                     \
+one_step_ ## TYPE (SecondOrderFilter *filter,                          \
+    SecondOrderHistory ## TYPE *history, TYPE input)                   \
+{                                                                      \
+  /* calculate output */                                               \
+  TYPE output = filter->alpha * (input - history->x2) +                        \
+    filter->gamma * history->y1 - filter->beta * history->y2;          \
+  /* update history */                                                 \
+  history->y2 = history->y1;                                           \
+  history->y1 = output;                                                        \
+  history->x2 = history->x1;                                           \
+  history->x1 = input;                                                 \
+                                                                       \
+  return output;                                                       \
+}                                                                      \
+                                                                       \
+static const guint                                                     \
+history_size_ ## TYPE = sizeof (SecondOrderHistory ## TYPE);           \
+                                                                       \
+static void                                                            \
+gst_iir_equ_process_ ## TYPE (GstIirEqualizer *equ, guint8 *data,      \
+guint size, guint channels)                                            \
+{                                                                      \
+  guint frames = size / channels / sizeof (TYPE);                      \
+  guint i, c, f;                                                       \
+  BIG_TYPE cur;                                                                \
+  TYPE val;                                                            \
+                                                                       \
+  for (i = 0; i < frames; i++) {                                       \
+    for (c = 0; c < channels; c++) {                                   \
+      SecondOrderHistory ## TYPE *history = equ->history;              \
+      val = *((TYPE *) data);                                          \
+      cur = 0;                                                         \
+      for (f = 0; f < equ->freq_count; f++) {                          \
+       SecondOrderFilter *filter = &equ->filter[f];                    \
+                                                                       \
+       cur += one_step_ ## TYPE (filter, history, val);                \
+       history++;                                                      \
+      }                                                                        \
+      cur += val * 0.25;                                               \
+      cur = CLAMP (cur, MIN_VAL, MAX_VAL);                             \
+      *((TYPE *) data) = (TYPE) cur;                                   \
+      data += sizeof (TYPE);                                           \
+    }                                                                  \
+  }                                                                    \
 }
 
-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)
index b2ad2f9..8b4664a 100644 (file)
@@ -295,6 +295,6 @@ plugin_init (GstPlugin * plugin)
 
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
-    "gstfdsrc",
-    "A source for fd (file descriptors)",
+    "fdsrc",
+    "A source that reads from a file descriptor",
     plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN)
diff --git a/gst/qtdemux/README b/gst/qtdemux/README
deleted file mode 100644 (file)
index e69de29..0000000