mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
use commas instead of newlines for author field (makes output greppable)
Original commit message from CVS: use commas instead of newlines for author field (makes output greppable)
This commit is contained in:
parent
1a7650c94b
commit
9db37279fc
4 changed files with 8 additions and 8 deletions
|
@ -454,8 +454,8 @@ gst_ffmpegdec_register (GstPlugin *plugin)
|
|||
details->description = g_strdup_printf("FFMPEG %s decoder",
|
||||
in_plugin->name);
|
||||
details->version = g_strdup(VERSION);
|
||||
details->author = g_strdup("The FFMPEG crew\n"
|
||||
"Wim Taymans <wim.taymans@chello.be>\n"
|
||||
details->author = g_strdup("The FFMPEG crew, "
|
||||
"Wim Taymans <wim.taymans@chello.be>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>");
|
||||
details->copyright = g_strdup("(c) 2001-2003");
|
||||
|
||||
|
|
|
@ -439,8 +439,8 @@ gst_ffmpegdemux_register (GstPlugin *plugin)
|
|||
details->description = g_strdup_printf ("FFMPEG %s demuxer",
|
||||
in_plugin->name);
|
||||
details->version = g_strdup (VERSION);
|
||||
details->author = g_strdup ("The FFMPEG crew\n"
|
||||
"Wim Taymans <wim.taymans@chello.be>\n"
|
||||
details->author = g_strdup ("The FFMPEG crew, "
|
||||
"Wim Taymans <wim.taymans@chello.be>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>");
|
||||
details->copyright = g_strdup ("(c) 2002-2003");
|
||||
|
||||
|
|
|
@ -557,8 +557,8 @@ gst_ffmpegenc_register (GstPlugin *plugin)
|
|||
details->description = g_strdup_printf("FFMPEG %s encoder",
|
||||
in_plugin->name);
|
||||
details->version = g_strdup(VERSION);
|
||||
details->author = g_strdup("The FFMPEG crew\n"
|
||||
"Wim Taymans <wim.taymans@chello.be>\n"
|
||||
details->author = g_strdup("The FFMPEG crew, "
|
||||
"Wim Taymans <wim.taymans@chello.be>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>");
|
||||
details->copyright = g_strdup("(c) 2001-2003");
|
||||
|
||||
|
|
|
@ -483,8 +483,8 @@ gst_ffmpegmux_register (GstPlugin *plugin)
|
|||
details->description = g_strdup_printf ("FFMPEG %s Muxer",
|
||||
in_plugin->name);
|
||||
details->version = g_strdup (VERSION);
|
||||
details->author = g_strdup ("The FFMPEG crew\n"
|
||||
"Wim Taymans <wim.taymans@chello.be>\n"
|
||||
details->author = g_strdup ("The FFMPEG crew, "
|
||||
"Wim Taymans <wim.taymans@chello.be>, "
|
||||
"Ronald Bultje <rbultje@ronald.bitfreak.net>");
|
||||
details->copyright = g_strdup ("(c) 2002-2003");
|
||||
|
||||
|
|
Loading…
Reference in a new issue