ext/ffmpeg/gstffmpegdec.c ext/ffmpeg/gstffmpegenc.c change plugins category to meet...
authorStéphane Loeuillet <gstreamer@leroutier.net>
Sun, 9 May 2004 22:15:29 +0000 (22:15 +0000)
committerStéphane Loeuillet <gstreamer@leroutier.net>
Sun, 9 May 2004 22:15:29 +0000 (22:15 +0000)
Original commit message from CVS:
* ext/ffmpeg/gstffmpegdec.c
* ext/ffmpeg/gstffmpegenc.c
change plugins category to meet our new naming standard :
Codec/Encoder|Decoder/Audio|Video
suggested by bilboed, approved by Company

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

index 2b8cbdc..ce733ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
+
+       * ext/ffmpeg/gstffmpegdec.c
+       * ext/ffmpeg/gstffmpegenc.c
+               change plugins category to meet our new standard :
+                       Codec/Encoder|Decoder/Audio|Video
+               suggested by bilboed, approved by Company
+
 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
 
        * gst-libs/ext/ffmpeg/autogen.sh:
diff --git a/common b/common
index 95ba883..5f51018 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit 95ba8839c03a7f8939a2ae4b0586b012e929fc84
+Subproject commit 5f51018de093a26d447de03e1ec6dd0377fc4c77
index c0c3d65..c9f57ee 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/%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",
       params->in_plugin->name);
index 6baf4b2..f2501e5 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/%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",
       params->in_plugin->name);