2006-03-29 Wim Taymans <wim@fluendo.com>
+ Patch by: j^ <j at bootlab dot org>
+
+ * ext/alsa/gstalsamixerelement.c:
+ (gst_alsa_mixer_element_class_init):
+ * ext/alsa/gstalsasink.c:
+ * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
+ * ext/ogg/gstoggdemux.c:
+ * ext/ogg/gstoggmux.c:
+ * ext/ogg/gstoggparse.c:
+ * ext/pango/gstclockoverlay.c:
+ * ext/pango/gsttextoverlay.c:
+ * ext/pango/gsttextrender.c:
+ * ext/pango/gsttimeoverlay.c:
+ * ext/theora/theoradec.c:
+ * ext/theora/theoraenc.c:
+ * ext/vorbis/vorbisdec.c:
+ * ext/vorbis/vorbisenc.c:
+ * gst/audioconvert/gstaudioconvert.c:
+ * gst/subparse/gstsubparse.c:
+ * gst/tcp/gstmultifdsink.c:
+ * gst/tcp/gsttcpclientsink.c:
+ * gst/tcp/gsttcpclientsrc.c:
+ * gst/tcp/gsttcpserversink.c:
+ * gst/tcp/gsttcpserversrc.c:
+ better/unified long descriptions
+ Fixes #336477
+
+2006-03-29 Wim Taymans <wim@fluendo.com>
+
* tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
(stop_seek):
Don't let double and tripple clicks mess up our state.
static GstElementDetails gst_alsa_mixer_element_details =
-GST_ELEMENT_DETAILS ("Alsa Mixer",
+GST_ELEMENT_DETAILS ("Alsa mixer",
"Generic/Audio",
"Control sound input and output levels with ALSA",
"Leif Johnson <leif@ambient.2y.net>");
/* elementfactory information */
static GstElementDetails gst_alsasink_details =
-GST_ELEMENT_DETAILS ("Audio Sink (ALSA)",
+GST_ELEMENT_DETAILS ("Audio sink (ALSA)",
"Sink/Audio",
"Output to a sound card via ALSA",
"Wim Taymans <wim@fluendo.com>");
/* elementfactory information */
static GstElementDetails gst_alsasrc_details =
-GST_ELEMENT_DETAILS ("Audio Src (ALSA)",
+GST_ELEMENT_DETAILS ("Audio source (ALSA)",
"Source/Audio",
"Read from a sound card via ALSA",
"Wim Taymans <wim@fluendo.com>");
#include <gst/gst-i18n-plugin.h>
static GstElementDetails gst_ogg_demux_details =
-GST_ELEMENT_DETAILS ("ogg demuxer",
+GST_ELEMENT_DETAILS ("Ogg demuxer",
"Codec/Demuxer",
"demux ogg streams (info about ogg: http://xiph.org)",
"Wim Taymand <wim@fluendo.com>");
};
/* elementfactory information */
-static GstElementDetails gst_ogg_mux_details = GST_ELEMENT_DETAILS ("ogg muxer",
+static GstElementDetails gst_ogg_mux_details = GST_ELEMENT_DETAILS ("Ogg muxer",
"Codec/Muxer",
"mux ogg streams (info about ogg: http://xiph.org)",
"Wim Taymans <wim@fluendo.com>");
#include <string.h>
static GstElementDetails gst_ogg_parse_details =
-GST_ELEMENT_DETAILS ("ogg parser",
+GST_ELEMENT_DETAILS ("Ogg parser",
"Codec/Parser",
"parse ogg streams into pages (info about ogg: http://xiph.org)",
"Michael Smith <msmith@fluendo.com>");
#include <time.h>
static GstElementDetails clock_overlay_details =
-GST_ELEMENT_DETAILS ("Clock Overlay",
+GST_ELEMENT_DETAILS ("Clock overlay",
"Filter/Editor/Video",
"Overlays the current clock time on a video stream",
"Tim-Philipp Müller <tim@centricular.net>");
#define GST_CAT_DEFAULT pango_debug
static GstElementDetails text_overlay_details =
-GST_ELEMENT_DETAILS ("Text Overlay",
+GST_ELEMENT_DETAILS ("Text overlay",
"Filter/Editor/Video",
"Adds text strings on top of a video buffer",
"David Schleef <ds@schleef.org>");
#define GST_CAT_DEFAULT pango_debug
static GstElementDetails text_render_details =
-GST_ELEMENT_DETAILS ("Text Render",
+GST_ELEMENT_DETAILS ("Text renderer",
"Filter/Editor/Video",
"Renders a text string to an image bitmap",
"David Schleef <ds@schleef.org>, "
#include <gsttimeoverlay.h>
static GstElementDetails time_overlay_details =
-GST_ELEMENT_DETAILS ("Time Overlay",
+GST_ELEMENT_DETAILS ("Time overlay",
"Filter/Editor/Video",
"Overlays buffer time stamps on a video stream",
"Tim-Philipp Müller <tim@centricular.net>");
ARG_CROP
};
-static GstElementDetails theora_dec_details = GST_ELEMENT_DETAILS ("TheoraDec",
+static GstElementDetails theora_dec_details =
+GST_ELEMENT_DETAILS ("Theora video decoder",
"Codec/Decoder/Video",
"decode raw theora streams to raw YUV video",
"Benjamin Otte <in7y118@public.uni-hamburg.de>, "
theoraenc->info.fps_numerator);
}
-static GstElementDetails theora_enc_details = GST_ELEMENT_DETAILS ("TheoraEnc",
+static GstElementDetails theora_enc_details =
+GST_ELEMENT_DETAILS ("Theora video encoder",
"Codec/Encoder/Video",
"encode raw YUV video to a theora stream",
"Wim Taymans <wim@fluendo.com>");
GST_DEBUG_CATEGORY_EXTERN (vorbisdec_debug);
#define GST_CAT_DEFAULT vorbisdec_debug
-static GstElementDetails vorbis_dec_details = GST_ELEMENT_DETAILS ("VorbisDec",
+static GstElementDetails vorbis_dec_details =
+GST_ELEMENT_DETAILS ("Vorbis audio decoder",
"Codec/Decoder/Audio",
"decode raw vorbis streams to float audio",
"Benjamin Otte <in7y118@public.uni-hamburg.de>");
static GstPadTemplate *gst_vorbisenc_src_template, *gst_vorbisenc_sink_template;
/* elementfactory information */
-GstElementDetails vorbisenc_details = GST_ELEMENT_DETAILS ("Vorbis encoder",
+GstElementDetails vorbisenc_details =
+GST_ELEMENT_DETAILS ("Vorbis audio encoder",
"Codec/Encoder/Audio",
"Encodes audio in Vorbis format",
"Monty <monty@xiph.org>, " "Wim Taymans <wim@fluendo.com>");
/*** DEFINITIONS **************************************************************/
static GstElementDetails audio_convert_details =
-GST_ELEMENT_DETAILS ("Audio Conversion",
+GST_ELEMENT_DETAILS ("Audio converter",
"Filter/Converter/Audio",
"Convert audio to different formats",
"Benjamin Otte <in7y118@public.uni-hamburg.de>");
#define GST_CAT_DEFAULT sub_parse_debug
static GstElementDetails sub_parse_details =
-GST_ELEMENT_DETAILS ("Subtitle parsers",
+GST_ELEMENT_DETAILS ("Subtitle parser",
"Codec/Parser/Subtitle",
"Parses subtitle (.sub) files into text streams",
"Gustavo J. A. M. Carneiro <gjc@inescporto.pt>\n"
/* elementfactory information */
static GstElementDetails gst_multi_fd_sink_details =
-GST_ELEMENT_DETAILS ("MultiFd sink",
+GST_ELEMENT_DETAILS ("Multi filedescriptor sink",
"Sink/Network",
"Send data to multiple filedescriptors",
"Thomas Vander Stichele <thomas at apestaart dot org>, "
/* elementfactory information */
static GstElementDetails gst_tcp_client_sink_details =
-GST_ELEMENT_DETAILS ("TCP Client sink",
+GST_ELEMENT_DETAILS ("TCP client sink",
"Sink/Network",
"Send data as a client over the network via TCP",
"Thomas Vander Stichele <thomas at apestaart dot org>");
static GstElementDetails gst_tcp_client_src_details =
-GST_ELEMENT_DETAILS ("TCP Client source",
+GST_ELEMENT_DETAILS ("TCP client source",
"Source/Network",
"Receive data as a client over the network via TCP",
"Thomas Vander Stichele <thomas at apestaart dot org>");
/* elementfactory information */
static GstElementDetails gst_tcp_server_sink_details =
-GST_ELEMENT_DETAILS ("TCP Server sink",
+GST_ELEMENT_DETAILS ("TCP server sink",
"Sink/Network",
"Send data as a server over the network via TCP",
"Thomas Vander Stichele <thomas at apestaart dot org>");
static GstElementDetails gst_tcp_server_src_details =
-GST_ELEMENT_DETAILS ("TCP Server source",
+GST_ELEMENT_DETAILS ("TCP server source",
"Source/Network",
"Receive data as a server over the network via TCP",
"Thomas Vander Stichele <thomas at apestaart dot org>");