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:
Benjamin Otte 2003-07-08 19:48:54 +00:00
parent 1a7650c94b
commit 9db37279fc
4 changed files with 8 additions and 8 deletions

View file

@ -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");

View file

@ -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");

View file

@ -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");

View file

@ -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");