+ checking in plugin category changes
authorLeif Johnson <leif@ambient.2y.net>
Sun, 16 Nov 2003 22:02:21 +0000 (22:02 +0000)
committerLeif Johnson <leif@ambient.2y.net>
Sun, 16 Nov 2003 22:02:21 +0000 (22:02 +0000)
Original commit message from CVS:
+ checking in plugin category changes

ext/pango/gsttextoverlay.c
ext/pango/gsttimeoverlay.c
ext/vorbis/vorbisenc.c
ext/vorbis/vorbisfile.c
gst-libs/gst/video/gstvideofilter.c
gst/adder/gstadder.c
gst/audioconvert/gstaudioconvert.c
gst/audioscale/gstaudioscale.c
gst/videoscale/gstvideoscale.c
gst/volume/gstvolume.c

index 7aaacd4..06f43ef 100644 (file)
@@ -12,7 +12,7 @@
 
 static GstElementDetails textoverlay_details = {
     "Text Overlay",
-    "Filter/Video",
+    "Filter/Editor/Video",
     "Adds text strings on top of a video buffer",
     "Gustavo J. A. M. Carneiro <gjc@inescporto.pt>"
 };
index b13ff1e..0f97f6b 100644 (file)
@@ -98,7 +98,7 @@ gst_timeoverlay_base_init (gpointer g_class)
 {
   static GstElementDetails timeoverlay_details = GST_ELEMENT_DETAILS (
     "Time Overlay",
-    "Filter/Video",
+    "Filter/Editor/Video",
     "Overlays the time on a video stream",
     "David Schleef <ds@schleef.org>"
   );
index ad913f1..f4f576b 100644 (file)
@@ -33,9 +33,9 @@ static GstPadTemplate *gst_vorbisenc_src_template, *gst_vorbisenc_sink_template;
 /* elementfactory information */
 GstElementDetails vorbisenc_details = {
   "Ogg Vorbis encoder",
-  "Codec/Audio/Encoder",
+  "Codec/Encoder/Audio",
   "Encodes audio in OGG Vorbis format",
-  "Monty <monty@xiph.org>, " 
+  "Monty <monty@xiph.org>, "
   "Wim Taymans <wim.taymans@chello.be>",
 };
 
index 12b7000..7274368 100644 (file)
@@ -80,12 +80,12 @@ GType vorbisfile_get_type (void);
 GstPadTemplate *gst_vorbisdec_src_template, *gst_vorbisdec_sink_template;
 
 /* elementfactory information */
-GstElementDetails vorbisfile_details = 
+GstElementDetails vorbisfile_details =
 {
   "Ogg Vorbis decoder",
-  "Codec/Audio/Decoder",
+  "Codec/Decoder/Audio",
   "Decodes OGG Vorbis audio using the vorbisfile API",
-  "Monty <monty@xiph.org>, " 
+  "Monty <monty@xiph.org>, "
   "Wim Taymans <wim.taymans@chello.be>",
 };
 
index c8bb62c..8173611 100644 (file)
@@ -79,7 +79,7 @@ static void gst_videofilter_base_init (gpointer g_class)
 {
   static GstElementDetails videofilter_details = {
     "Video scaler",
-    "Filter/Video",
+    "Filter/Effect/Video",
     "Resizes video",
     "David Schleef <ds@schleef.org>"
   };
index 3ab509b..1d6d1e2 100644 (file)
@@ -34,7 +34,7 @@
 /* elementfactory information */
 static GstElementDetails adder_details = GST_ELEMENT_DETAILS (
   "Adder",
-  "Filter/Audio",
+  "Generic/Audio",
   "Add N audio channels together",
   "Thomas <thomas@apestaart.org>"
 );
@@ -59,7 +59,7 @@ GST_PAD_TEMPLATE_FACTORY (gst_adder_src_template_factory,
                 GST_AUDIO_INT_PAD_TEMPLATE_PROPS),
   gst_caps_new ("float_src", "audio/x-raw-float",
                 GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS)
-);  
+);
 
 GST_PAD_TEMPLATE_FACTORY (gst_adder_sink_template_factory,
   "sink%d",
@@ -69,7 +69,7 @@ GST_PAD_TEMPLATE_FACTORY (gst_adder_sink_template_factory,
                 GST_AUDIO_INT_PAD_TEMPLATE_PROPS),
   gst_caps_new ("float_sink", "audio/x-raw-float",
                 GST_AUDIO_FLOAT_STANDARD_PAD_TEMPLATE_PROPS)
-);  
+);
 
 static void            gst_adder_class_init            (GstAdderClass *klass);
 static void            gst_adder_init                  (GstAdder *adder);
index 1e92e5f..8901ff7 100644 (file)
@@ -106,7 +106,7 @@ struct _GstAudioConvertClass {
 
 static GstElementDetails audio_convert_details = {
   "Audio Conversion",
-  "Filter/Convert",
+  "Filter/Converter/Audio",
   "Convert audio to different formats",
   "Benjamin Otte <in7y118@public.uni-hamburg.de",
 };
index f7b1285..a4e1acd 100644 (file)
@@ -32,8 +32,8 @@
 /* elementfactory information */
 static GstElementDetails gst_audioscale_details = GST_ELEMENT_DETAILS (
   "Audio scaler",
-  "Filter/Audio",
-  "Audio resampler",
+  "Filter/Converter/Audio",
+  "Resample audio",
   "David Schleef <ds@schleef.org>"
 );
 
@@ -145,18 +145,18 @@ gst_audioscale_class_init (AudioscaleClass *klass)
   gobject_class = (GObjectClass*)klass;
   gstelement_class = (GstElementClass*)klass;
 
+  gobject_class->set_property = gst_audioscale_set_property;
+  gobject_class->get_property = gst_audioscale_get_property;
+
   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FILTERLEN,
        g_param_spec_int ("filter_length", "filter_length", "filter_length",
                           0, G_MAXINT, 16, G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
+
   g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_METHOD,
        g_param_spec_enum ("method", "method", "method", GST_TYPE_AUDIOSCALE_METHOD,
                            RESAMPLE_SINC, G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
 
   parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
-
-  gobject_class->set_property = gst_audioscale_set_property;
-  gobject_class->get_property = gst_audioscale_get_property;
-
 }
 
 static GstCaps *
index 6584e5c..07ac1e7 100644 (file)
@@ -30,7 +30,7 @@
 /* elementfactory information */
 static GstElementDetails videoscale_details = GST_ELEMENT_DETAILS (
   "Video scaler",
-  "Filter/Video",
+  "Filter/Effect/Video",
   "Resizes video",
   "Wim Taymans <wim.taymans@chello.be>"
 );
index c3fd9fc..af71a25 100644 (file)
@@ -31,7 +31,7 @@
 
 static GstElementDetails volume_details = {
   "Volume",
-  "Filter/Audio/Effect",
+  "Filter/Effect/Audio",
   "Set volume on audio/raw streams",
   "Andy Wingo <apwingo@eos.ncsu.edu>",
 };