bring in line with others
authorThomas Vander Stichele <thomas@apestaart.org>
Sat, 3 Jul 2004 23:34:04 +0000 (23:34 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sat, 3 Jul 2004 23:34:04 +0000 (23:34 +0000)
Original commit message from CVS:
bring in line with others

ChangeLog
ext/ffmpeg/gstffmpegdec.c
ext/ffmpeg/gstffmpegenc.c

index 7aeed76..a931181 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-07-04  Thomas Vander Stichele  <thomas at apestaart dot org>
+
+       * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
+       * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
+          bring category order in line with others
+
 2004-06-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
 
        * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
index e61f734..df86a38 100644 (file)
@@ -134,7 +134,7 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass * klass)
   /* construct the element details struct */
   details.longname = g_strdup_printf ("FFMPEG %s decoder",
       params->in_plugin->name);
-  details.klass = g_strdup_printf ("Codec/Decoder/%s",
+  details.klass = g_strdup_printf ("Codec/%s/Decoder",
       (params->in_plugin->type == CODEC_TYPE_VIDEO) ? "Video" : "Audio");
   details.description = g_strdup_printf ("FFMPEG %s decoder",
       params->in_plugin->name);
index f2501e5..6baf4b2 100644 (file)
@@ -166,7 +166,7 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass * klass)
   /* construct the element details struct */
   details.longname = g_strdup_printf ("FFMPEG %s encoder",
       params->in_plugin->name);
-  details.klass = g_strdup_printf ("Codec/Encoder/%s",
+  details.klass = g_strdup_printf ("Codec/%s/Encoder",
       (params->in_plugin->type == CODEC_TYPE_VIDEO) ? "Video" : "Audio");
   details.description = g_strdup_printf ("FFMPEG %s encoder",
       params->in_plugin->name);