+ checking in plugin category changes BRANCH_RELEASE-0_7_2-ROOT RELEASE-0_7_2
authorLeif Johnson <leif@ambient.2y.net>
Sun, 16 Nov 2003 22:01:30 +0000 (22:01 +0000)
committerLeif Johnson <leif@ambient.2y.net>
Sun, 16 Nov 2003 22:01:30 +0000 (22:01 +0000)
Original commit message from CVS:
+ checking in plugin category changes

common
ext/ffmpeg/gstffmpegcolorspace.c
ext/ffmpeg/gstffmpegdec.c
ext/ffmpeg/gstffmpegenc.c

diff --git a/common b/common
index e903f88..2c2bce0 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit e903f88a7388f0b463204ea1f960a4ace840175b
+Subproject commit 2c2bce01ed5ed1d1684bd76a334477398009ef4a
index 39a1559..0dfce88 100644 (file)
@@ -70,7 +70,7 @@ struct _GstFFMpegCspClass {
 /* elementfactory information */
 static GstElementDetails ffmpegcsp_details = {
   "FFMPEG Colorspace converter",
-  "Filter/Effect",
+  "Filter/Converter/Video",
   "Converts video from one colorspace to another",
   "Ronald Bultje <rbultje@ronald.bitfreak.net>",
 };
index b9bc317..610dc6c 100644 (file)
@@ -131,7 +131,7 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass *klass)
   details = g_new0 (GstElementDetails, 1);
   details->longname = g_strdup_printf("FFMPEG %s decoder",
                                      params->in_plugin->name);
-  details->klass = g_strdup_printf("Codec/%s/Decoder",
+  details->klass = g_strdup_printf("Codec/Decoder/%s",
                                   (params->in_plugin->type == CODEC_TYPE_VIDEO) ?
                                   "Video" : "Audio");
   details->description = g_strdup_printf("FFMPEG %s decoder",
index 2c1d1d3..03f80f2 100644 (file)
@@ -165,7 +165,7 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass *klass)
   details = g_new0 (GstElementDetails, 1);
   details->longname = g_strdup_printf("FFMPEG %s encoder",
                                      params->in_plugin->name);
-  details->klass = g_strdup_printf("Codec/%s/Encoder",
+  details->klass = g_strdup_printf("Codec/Encoder/%s",
                                   (params->in_plugin->type == CODEC_TYPE_VIDEO) ?
                                   "Video" : "Audio");
   details->description = g_strdup_printf("FFMPEG %s encoder",