mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
gstffmpegmux: Use the AVFormat long_name in our descriptions.
This is the same behaviour we use in the demuxers.
This commit is contained in:
parent
9b8a99761a
commit
d39ad81ad7
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue