mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
+ checking in plugin category changes
Original commit message from CVS: + checking in plugin category changes
This commit is contained in:
parent
e53facc93f
commit
736153ab06
10 changed files with 20 additions and 20 deletions
|
@ -12,7 +12,7 @@
|
|||
|
||||
static GstElementDetails textoverlay_details = {
|
||||
"Text Overlay",
|
||||
"Filter/Video",
|
||||
"Filter/Editor/Video",
|
||||
"Adds text strings on top of a video buffer",
|
||||
"Gustavo J. A. M. Carneiro <gjc@inescporto.pt>"
|
||||
};
|
||||
|
|
|
@ -98,7 +98,7 @@ gst_timeoverlay_base_init (gpointer g_class)
|
|||
{
|
||||
static GstElementDetails timeoverlay_details = GST_ELEMENT_DETAILS (
|
||||
"Time Overlay",
|
||||
"Filter/Video",
|
||||
"Filter/Editor/Video",
|
||||
"Overlays the time on a video stream",
|
||||
"David Schleef <ds@schleef.org>"
|
||||
);
|
||||
|
|
|
@ -33,7 +33,7 @@ static GstPadTemplate *gst_vorbisenc_src_template, *gst_vorbisenc_sink_template;
|
|||
/* elementfactory information */
|
||||
GstElementDetails vorbisenc_details = {
|
||||
"Ogg Vorbis encoder",
|
||||
"Codec/Audio/Encoder",
|
||||
"Codec/Encoder/Audio",
|
||||
"Encodes audio in OGG Vorbis format",
|
||||
"Monty <monty@xiph.org>, "
|
||||
"Wim Taymans <wim.taymans@chello.be>",
|
||||
|
|
|
@ -83,7 +83,7 @@ GstPadTemplate *gst_vorbisdec_src_template, *gst_vorbisdec_sink_template;
|
|||
GstElementDetails vorbisfile_details =
|
||||
{
|
||||
"Ogg Vorbis decoder",
|
||||
"Codec/Audio/Decoder",
|
||||
"Codec/Decoder/Audio",
|
||||
"Decodes OGG Vorbis audio using the vorbisfile API",
|
||||
"Monty <monty@xiph.org>, "
|
||||
"Wim Taymans <wim.taymans@chello.be>",
|
||||
|
|
|
@ -79,7 +79,7 @@ static void gst_videofilter_base_init (gpointer g_class)
|
|||
{
|
||||
static GstElementDetails videofilter_details = {
|
||||
"Video scaler",
|
||||
"Filter/Video",
|
||||
"Filter/Effect/Video",
|
||||
"Resizes video",
|
||||
"David Schleef <ds@schleef.org>"
|
||||
};
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails adder_details = GST_ELEMENT_DETAILS (
|
||||
"Adder",
|
||||
"Filter/Audio",
|
||||
"Generic/Audio",
|
||||
"Add N audio channels together",
|
||||
"Thomas <thomas@apestaart.org>"
|
||||
);
|
||||
|
|
|
@ -106,7 +106,7 @@ struct _GstAudioConvertClass {
|
|||
|
||||
static GstElementDetails audio_convert_details = {
|
||||
"Audio Conversion",
|
||||
"Filter/Convert",
|
||||
"Filter/Converter/Audio",
|
||||
"Convert audio to different formats",
|
||||
"Benjamin Otte <in7y118@public.uni-hamburg.de",
|
||||
};
|
||||
|
|
|
@ -32,8 +32,8 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails gst_audioscale_details = GST_ELEMENT_DETAILS (
|
||||
"Audio scaler",
|
||||
"Filter/Audio",
|
||||
"Audio resampler",
|
||||
"Filter/Converter/Audio",
|
||||
"Resample audio",
|
||||
"David Schleef <ds@schleef.org>"
|
||||
);
|
||||
|
||||
|
@ -145,18 +145,18 @@ gst_audioscale_class_init (AudioscaleClass *klass)
|
|||
gobject_class = (GObjectClass*)klass;
|
||||
gstelement_class = (GstElementClass*)klass;
|
||||
|
||||
gobject_class->set_property = gst_audioscale_set_property;
|
||||
gobject_class->get_property = gst_audioscale_get_property;
|
||||
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FILTERLEN,
|
||||
g_param_spec_int ("filter_length", "filter_length", "filter_length",
|
||||
0, G_MAXINT, 16, G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
|
||||
|
||||
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_METHOD,
|
||||
g_param_spec_enum ("method", "method", "method", GST_TYPE_AUDIOSCALE_METHOD,
|
||||
RESAMPLE_SINC, G_PARAM_READWRITE|G_PARAM_CONSTRUCT));
|
||||
|
||||
parent_class = g_type_class_ref(GST_TYPE_ELEMENT);
|
||||
|
||||
gobject_class->set_property = gst_audioscale_set_property;
|
||||
gobject_class->get_property = gst_audioscale_get_property;
|
||||
|
||||
}
|
||||
|
||||
static GstCaps *
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
/* elementfactory information */
|
||||
static GstElementDetails videoscale_details = GST_ELEMENT_DETAILS (
|
||||
"Video scaler",
|
||||
"Filter/Video",
|
||||
"Filter/Effect/Video",
|
||||
"Resizes video",
|
||||
"Wim Taymans <wim.taymans@chello.be>"
|
||||
);
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
static GstElementDetails volume_details = {
|
||||
"Volume",
|
||||
"Filter/Audio/Effect",
|
||||
"Filter/Effect/Audio",
|
||||
"Set volume on audio/raw streams",
|
||||
"Andy Wingo <apwingo@eos.ncsu.edu>",
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue