mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
The proper spelling is 'FFmpeg'.
This commit is contained in:
parent
d39ad81ad7
commit
f3c1a56a60
5 changed files with 9 additions and 9 deletions
|
@ -161,6 +161,6 @@ plugin_init (GstPlugin * plugin)
|
|||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
"ffmpeg",
|
||||
"All FFMPEG codecs (" FFMPEG_SOURCE ")",
|
||||
"All FFmpeg codecs (" FFMPEG_SOURCE ")",
|
||||
plugin_init,
|
||||
PACKAGE_VERSION, "LGPL", "FFMpeg", "http://ffmpeg.sourceforge.net/")
|
||||
|
|
|
@ -249,11 +249,11 @@ gst_ffmpegdec_base_init (GstFFMpegDecClass * klass)
|
|||
g_assert (params != NULL);
|
||||
|
||||
/* construct the element details struct */
|
||||
details.longname = g_strdup_printf ("FFMPEG %s decoder",
|
||||
details.longname = g_strdup_printf ("FFmpeg %s decoder",
|
||||
params->in_plugin->long_name);
|
||||
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",
|
||||
details.description = g_strdup_printf ("FFmpeg %s decoder",
|
||||
params->in_plugin->name);
|
||||
details.author = "Wim Taymans <wim.taymans@gmail.com>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>, "
|
||||
|
|
|
@ -189,10 +189,10 @@ gst_ffmpegdemux_base_init (GstFFMpegDemuxClass * klass)
|
|||
g_assert (params != NULL);
|
||||
|
||||
/* construct the element details struct */
|
||||
details.longname = g_strdup_printf ("FFMPEG %s demuxer",
|
||||
details.longname = g_strdup_printf ("FFmpeg %s demuxer",
|
||||
params->in_plugin->long_name);
|
||||
details.klass = "Codec/Demuxer";
|
||||
details.description = g_strdup_printf ("FFMPEG %s demuxer",
|
||||
details.description = g_strdup_printf ("FFmpeg %s demuxer",
|
||||
params->in_plugin->long_name);
|
||||
details.author = "Wim Taymans <wim@fluendo.com>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>, "
|
||||
|
|
|
@ -132,11 +132,11 @@ gst_ffmpegenc_base_init (GstFFMpegEncClass * klass)
|
|||
g_assert (params != NULL);
|
||||
|
||||
/* construct the element details struct */
|
||||
details.longname = g_strdup_printf ("FFMPEG %s encoder",
|
||||
details.longname = g_strdup_printf ("FFmpeg %s encoder",
|
||||
params->in_plugin->long_name);
|
||||
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",
|
||||
details.description = g_strdup_printf ("FFmpeg %s encoder",
|
||||
params->in_plugin->name);
|
||||
details.author = "Wim Taymans <wim.taymans@gmail.com>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>";
|
||||
|
|
|
@ -153,10 +153,10 @@ gst_ffmpegmux_base_init (gpointer g_class)
|
|||
g_assert (params != NULL);
|
||||
|
||||
/* construct the element details struct */
|
||||
details.longname = g_strdup_printf ("FFMPEG %s muxer",
|
||||
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",
|
||||
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>";
|
||||
|
|
Loading…
Reference in a new issue