gstffmpegmux: Use the AVFormat long_name in our descriptions.
authorEdward Hervey <bilboed@bilboed.com>
Wed, 15 Apr 2009 20:04:02 +0000 (22:04 +0200)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 15 Apr 2009 20:04:02 +0000 (22:04 +0200)
This is the same behaviour we use in the demuxers.

ext/ffmpeg/gstffmpegmux.c

index e1324f0..9bb22b3 100644 (file)
@@ -153,11 +153,11 @@ gst_ffmpegmux_base_init (gpointer g_class)
   g_assert (params != NULL);
 
   /* construct the element details struct */
-  details.longname = g_strdup_printf ("FFMPEG %s Muxer",
-      params->in_plugin->name);
+  details.longname = g_strdup_printf ("FFMPEG %s muxer",
+      params->in_plugin->long_name);
   details.klass = g_strdup ("Codec/Muxer");
-  details.description = g_strdup_printf ("FFMPEG %s Muxer",
-      params->in_plugin->name);
+  details.description = g_strdup_printf ("FFMPEG %s muxer",
+      params->in_plugin->long_name);
   details.author = "Wim Taymans <wim.taymans@chello.be>, "
       "Ronald Bultje <rbultje@ronald.bitfreak.net>";
   gst_element_class_set_details (element_class, &details);