+ checking in plugin category changes

Original commit message from CVS:
+ checking in plugin category changes
This commit is contained in:
Leif Johnson 2003-11-16 22:02:22 +00:00
parent 03f1b5c797
commit 5c244e8374
50 changed files with 63 additions and 63 deletions

View file

@ -37,7 +37,7 @@
*/ */
static GstElementDetails dvdec_details = GST_ELEMENT_DETAILS ( static GstElementDetails dvdec_details = GST_ELEMENT_DETAILS (
"DV (smpte314) decoder plugin", "DV (smpte314) decoder plugin",
"Codec/Video/Decoder", "Codec/Decoder/Video",
"Uses libdv to decode DV video (libdv.sourceforge.net)", "Uses libdv to decode DV video (libdv.sourceforge.net)",
"Erik Walthinsen <omega@cse.ogi.edu>\n" "Erik Walthinsen <omega@cse.ogi.edu>\n"
"Wim Taymans <wim.taymans@tvd.be>" "Wim Taymans <wim.taymans@tvd.be>"

View file

@ -33,7 +33,7 @@ static GstPadTemplate *src_template, *sink_template;
/* elementfactory information */ /* elementfactory information */
GstElementDetails flacdec_details = { GstElementDetails flacdec_details = {
"FLAC decoder", "FLAC decoder",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"Decodes FLAC lossless audio streams", "Decodes FLAC lossless audio streams",
"Wim Taymans <wim.taymans@chello.be>", "Wim Taymans <wim.taymans@chello.be>",
}; };

View file

@ -33,7 +33,7 @@ static GstPadTemplate *src_template, *sink_template;
/* elementfactory information */ /* elementfactory information */
GstElementDetails flacenc_details = { GstElementDetails flacenc_details = {
"FLAC encoder", "FLAC encoder",
"Codec/Audio/Encoder", "Codec/Encoder/Audio",
"Encodes audio with the FLAC lossless audio encoder", "Encodes audio with the FLAC lossless audio encoder",
"Wim Taymans <wim.taymans@chello.be>", "Wim Taymans <wim.taymans@chello.be>",
}; };

View file

@ -31,7 +31,7 @@
static GstElementDetails plugin_details = { static GstElementDetails plugin_details = {
"GdkPixbuf image decoder", "GdkPixbuf image decoder",
"Codec/Image", "Codec/Decoder/Image",
"Decodes images in a video stream using GdkPixbuf", "Decodes images in a video stream using GdkPixbuf",
"David A. Schleef <ds@schleef.org>", "David A. Schleef <ds@schleef.org>",
}; };

View file

@ -31,9 +31,9 @@ static GstPadTemplate *jpegdec_src_template, *jpegdec_sink_template;
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_jpegdec_details = { GstElementDetails gst_jpegdec_details = {
"jpeg image decoder", "JPEG image decoder",
"Codec/Image", "Codec/Decoder/Image",
".jpeg", "Decode images from JPEG format",
"Wim Taymans <wim.taymans@tvd.be>", "Wim Taymans <wim.taymans@tvd.be>",
}; };

View file

@ -28,9 +28,9 @@
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_jpegenc_details = { GstElementDetails gst_jpegenc_details = {
"jpeg image encoder", "JPEG image encoder",
"Codec/Image", "Codec/Encoder/Image",
".jpeg", "Encode images in JPEG format",
"Wim Taymans <wim.taymans@tvd.be>", "Wim Taymans <wim.taymans@tvd.be>",
}; };

View file

@ -119,7 +119,7 @@ gst_ladspa_base_init (GstLADSPAClass *klass)
/* construct the element details struct */ /* construct the element details struct */
details = g_new0(GstElementDetails,1); details = g_new0(GstElementDetails,1);
details->longname = g_strdup(desc->Name); details->longname = g_strdup(desc->Name);
details->klass = "Filter/Audio/LADSPA"; details->klass = "Filter/Effect/Audio/LADSPA";
details->description = details->longname; details->description = details->longname;
details->author = g_strdup(desc->Maker); details->author = g_strdup(desc->Maker);
gst_element_class_set_details (element_class, details); gst_element_class_set_details (element_class, details);

View file

@ -29,7 +29,7 @@
GstElementDetails gst_pngenc_details = { GstElementDetails gst_pngenc_details = {
"PNG encoder", "PNG encoder",
"Codec/Image", "Codec/Encoder/Image",
"Encode a video frame to a .png image", "Encode a video frame to a .png image",
"Jeremy SIMON <jsimon13@yahoo.fr>", "Jeremy SIMON <jsimon13@yahoo.fr>",
}; };

View file

@ -28,7 +28,7 @@
/* elementfactory information */ /* elementfactory information */
GstElementDetails mikmod_details = { GstElementDetails mikmod_details = {
"MikMod", "MikMod",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"Module decoder based on libmikmod", "Module decoder based on libmikmod",
"Jeremy SIMON <jsimon13@yahoo.fr>", "Jeremy SIMON <jsimon13@yahoo.fr>",
}; };

View file

@ -12,7 +12,7 @@
static GstElementDetails textoverlay_details = { static GstElementDetails textoverlay_details = {
"Text Overlay", "Text Overlay",
"Filter/Video", "Filter/Editor/Video",
"Adds text strings on top of a video buffer", "Adds text strings on top of a video buffer",
"Gustavo J. A. M. Carneiro <gjc@inescporto.pt>" "Gustavo J. A. M. Carneiro <gjc@inescporto.pt>"
}; };

View file

@ -98,7 +98,7 @@ gst_timeoverlay_base_init (gpointer g_class)
{ {
static GstElementDetails timeoverlay_details = GST_ELEMENT_DETAILS ( static GstElementDetails timeoverlay_details = GST_ELEMENT_DETAILS (
"Time Overlay", "Time Overlay",
"Filter/Video", "Filter/Editor/Video",
"Overlays the time on a video stream", "Overlays the time on a video stream",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
); );

View file

@ -41,7 +41,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_bpwsinc_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_bpwsinc_details = GST_ELEMENT_DETAILS (
"BPWSinc", "BPWSinc",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"Band-Pass Windowed sinc filter", "Band-Pass Windowed sinc filter",
"Thomas <thomas@apestaart.org>, " "Thomas <thomas@apestaart.org>, "
"Steven W. Smith" "Steven W. Smith"

View file

@ -40,7 +40,7 @@
static GstElementDetails gst_lpwsinc_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_lpwsinc_details = GST_ELEMENT_DETAILS (
"LPWSinc", "LPWSinc",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"Low-pass Windowed sinc filter", "Low-pass Windowed sinc filter",
"Thomas <thomas@apestaart.org>, " "Thomas <thomas@apestaart.org>, "
"Steven W. Smith" "Steven W. Smith"

View file

@ -32,7 +32,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_auparse_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_auparse_details = GST_ELEMENT_DETAILS (
".au parser", ".au parser",
"Codec/Parser", "Codec/Parser/Audio",
"Parse an .au file into raw audio", "Parse an .au file into raw audio",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
); );

View file

@ -28,7 +28,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails cutter_details = { static GstElementDetails cutter_details = {
"Cutter", "Cutter",
"Filter/Audio/Effect", "Filter/Editor/Audio",
"Audio Cutter to split audio into non-silent bits", "Audio Cutter to split audio into non-silent bits",
"Thomas <thomas@apestaart.org>", "Thomas <thomas@apestaart.org>",
}; };

View file

@ -81,7 +81,7 @@ struct _GstAgingTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_agingtv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_agingtv_details = GST_ELEMENT_DETAILS (
"AgingTV", "AgingTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"Apply aging effect on video", "Apply aging effect on video",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -68,7 +68,7 @@ struct _GstDiceTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_dicetv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_dicetv_details = GST_ELEMENT_DETAILS (
"DiceTV", "DiceTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"'Dices' the screen up into many small squares", "'Dices' the screen up into many small squares",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -62,7 +62,7 @@ struct _GstEdgeTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_edgetv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_edgetv_details = GST_ELEMENT_DETAILS (
"EdgeTV", "EdgeTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"Apply edge detect on video", "Apply edge detect on video",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -68,7 +68,7 @@ struct _GstQuarkTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_quarktv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_quarktv_details = GST_ELEMENT_DETAILS (
"QuarkTV", "QuarkTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"Motion dissolver", "Motion dissolver",
"FUKUCHI, Kentarou <fukuchi@users.sourceforge.net>" "FUKUCHI, Kentarou <fukuchi@users.sourceforge.net>"
); );

View file

@ -87,7 +87,7 @@ struct _GstRevTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_revtv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_revtv_details = GST_ELEMENT_DETAILS (
"RevTV", "RevTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"A video waveform monitor for each line of video processed", "A video waveform monitor for each line of video processed",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -69,7 +69,7 @@ struct _GstShagadelicTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_shagadelictv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_shagadelictv_details = GST_ELEMENT_DETAILS (
"ShagadelicTV", "ShagadelicTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"Oh behave, ShagedelicTV makes images shagadelic!", "Oh behave, ShagedelicTV makes images shagadelic!",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -71,7 +71,7 @@ struct _GstVertigoTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_vertigotv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_vertigotv_details = GST_ELEMENT_DETAILS (
"VertigoTV", "VertigoTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"A loopback alpha blending effector with rotating and scaling", "A loopback alpha blending effector with rotating and scaling",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -75,7 +75,7 @@ struct _GstWarpTVClass
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_warptv_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_warptv_details = GST_ELEMENT_DETAILS (
"WarpTV", "WarpTV",
"Filter/Video/Effect", "Filter/Effect/Video",
"WarpTV does realtime goo'ing of the video input", "WarpTV does realtime goo'ing of the video input",
"Sam Lantinga <slouken@devolution.com>" "Sam Lantinga <slouken@devolution.com>"
); );

View file

@ -31,7 +31,7 @@
/* flx element information */ /* flx element information */
static GstElementDetails flxdec_details = { static GstElementDetails flxdec_details = {
"FLX Decoder", "FLX Decoder",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"FLX decoder", "FLX decoder",
"Sepp Wijnands <mrrazz@garbage-coderz.net>" "Sepp Wijnands <mrrazz@garbage-coderz.net>"
}; };

View file

@ -30,7 +30,7 @@ extern GstPadTemplate *alawdec_src_template, *alawdec_sink_template;
/* elementfactory information */ /* elementfactory information */
static GstElementDetails alawdec_details = { static GstElementDetails alawdec_details = {
"A Law to PCM conversion", "A Law to PCM conversion",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"Convert 8bit A law to 16bit PCM", "Convert 8bit A law to 16bit PCM",
"Zaheer Merali <zaheer@bellworldwide.net>" "Zaheer Merali <zaheer@bellworldwide.net>"
}; };

View file

@ -30,7 +30,7 @@ extern GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
/* elementfactory information */ /* elementfactory information */
static GstElementDetails alawenc_details = { static GstElementDetails alawenc_details = {
"PCM to A Law conversion", "PCM to A Law conversion",
"Codec/Audio/Encoder", "Codec/Encoder/Audio",
"Convert 16bit PCM to 8bit A law", "Convert 16bit PCM to 8bit A law",
"Zaheer Merali <zaheer@bellworldwide.net>" "Zaheer Merali <zaheer@bellworldwide.net>"
}; };

View file

@ -34,7 +34,7 @@ linear_factory (void)
NULL)); NULL));
} }
GstPadTemplate *alawenc_src_template, *alawenc_sink_template; GstPadTemplate *alawenc_src_template, *alawenc_sink_template;
GstPadTemplate *alawdec_src_template, *alawdec_sink_template; GstPadTemplate *alawdec_src_template, *alawdec_sink_template;
static gboolean static gboolean
@ -44,13 +44,13 @@ plugin_init (GstPlugin *plugin)
alaw_caps = alaw_factory (); alaw_caps = alaw_factory ();
linear_caps = linear_factory (); linear_caps = linear_factory ();
alawenc_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,alaw_caps, NULL); alawenc_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,alaw_caps, NULL);
alawenc_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,linear_caps, NULL); alawenc_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,linear_caps, NULL);
alawdec_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,linear_caps, NULL); alawdec_src_template = gst_pad_template_new ("src",GST_PAD_SRC,GST_PAD_ALWAYS,linear_caps, NULL);
alawdec_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,alaw_caps, NULL); alawdec_sink_template = gst_pad_template_new ("sink",GST_PAD_SINK,GST_PAD_ALWAYS,alaw_caps, NULL);
if (!gst_element_register (plugin, "alawenc", if (!gst_element_register (plugin, "alawenc",
GST_RANK_NONE, GST_TYPE_ALAWENC) || GST_RANK_NONE, GST_TYPE_ALAWENC) ||
!gst_element_register (plugin, "alawdec", !gst_element_register (plugin, "alawdec",

View file

@ -29,7 +29,7 @@ extern GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template;
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mulawdec_details = { static GstElementDetails mulawdec_details = {
"Mu Law to PCM conversion", "Mu Law to PCM conversion",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"Convert 8bit mu law to 16bit PCM", "Convert 8bit mu law to 16bit PCM",
"Zaheer Merali <zaheer@bellworldwide.net>" "Zaheer Merali <zaheer@bellworldwide.net>"
}; };

View file

@ -29,7 +29,7 @@ extern GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mulawenc_details = { static GstElementDetails mulawenc_details = {
"PCM to Mu Law conversion", "PCM to Mu Law conversion",
"Codec/Audio/Encoder", "Codec/Encoder/Audio",
"Convert 16bit PCM to 8bit mu law", "Convert 16bit PCM to 8bit mu law",
"Zaheer Merali <zaheer@bellworldwide.net>" "Zaheer Merali <zaheer@bellworldwide.net>"
}; };

View file

@ -7,7 +7,7 @@
static GstCaps* static GstCaps*
mulaw_factory (void) mulaw_factory (void)
{ {
return return
gst_caps_new ( gst_caps_new (
"test_src", "test_src",
"audio/x-mulaw", "audio/x-mulaw",
@ -23,7 +23,7 @@ mulaw_factory (void)
static GstCaps* static GstCaps*
linear_factory (void) linear_factory (void)
{ {
return return
gst_caps_new ( gst_caps_new (
"test_sink", "test_sink",
"audio/x-raw-int", "audio/x-raw-int",
@ -37,7 +37,7 @@ linear_factory (void)
NULL)); NULL));
} }
GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template; GstPadTemplate *mulawenc_src_template, *mulawenc_sink_template;
GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template; GstPadTemplate *mulawdec_src_template, *mulawdec_sink_template;
static gboolean static gboolean
@ -47,7 +47,7 @@ plugin_init (GstPlugin *plugin)
mulaw_caps = mulaw_factory (); mulaw_caps = mulaw_factory ();
linear_caps = linear_factory (); linear_caps = linear_factory ();
mulawenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS, mulawenc_src_template = gst_pad_template_new ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
mulaw_caps, NULL); mulaw_caps, NULL);
mulawenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, mulawenc_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
@ -57,7 +57,7 @@ plugin_init (GstPlugin *plugin)
linear_caps, NULL); linear_caps, NULL);
mulawdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS, mulawdec_sink_template = gst_pad_template_new ("sink", GST_PAD_SINK, GST_PAD_ALWAYS,
mulaw_caps, NULL); mulaw_caps, NULL);
if (!gst_element_register (plugin, "mulawenc", if (!gst_element_register (plugin, "mulawenc",
GST_RANK_NONE, GST_TYPE_MULAWENC) || GST_RANK_NONE, GST_TYPE_MULAWENC) ||
!gst_element_register (plugin, "mulawdec", !gst_element_register (plugin, "mulawdec",

View file

@ -31,7 +31,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails level_details = { static GstElementDetails level_details = {
"Level", "Level",
"Filter/Audio/Analysis", "Filter/Analyzer/Audio",
"RMS/Peak/Decaying Peak Level signaller for audio/raw", "RMS/Peak/Decaying Peak Level signaller for audio/raw",
"Thomas <thomas@apestaart.org>" "Thomas <thomas@apestaart.org>"
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails median_details = { static GstElementDetails median_details = {
"Median effect", "Median effect",
"Filter/Video", "Filter/Effect/Video",
"Apply a median filter to an image", "Apply a median filter to an image",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
}; };

View file

@ -9,7 +9,7 @@
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more * Library General Public License for more
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
@ -22,7 +22,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtp_L16parse_details = { static GstElementDetails gst_rtp_L16parse_details = {
"RTP packet parser", "RTP packet parser",
"Codec/Network", "Codec/Parser/Network",
"Extracts raw audio from RTP packets", "Extracts raw audio from RTP packets",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -26,7 +26,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtpL16enc_details = { static GstElementDetails gst_rtpL16enc_details = {
"RTP RAW Audio Encoder", "RTP RAW Audio Encoder",
"Codec/Network", "Codec/Encoder/Network",
"Encodes Raw Audio into an RTP packet", "Encodes Raw Audio into an RTP packet",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -9,7 +9,7 @@
* This library is distributed in the hope that it will be useful, * This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more * Library General Public License for more
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
@ -22,7 +22,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtp_L16parse_details = { static GstElementDetails gst_rtp_L16parse_details = {
"RTP packet parser", "RTP packet parser",
"Codec/Network", "Codec/Parser/Network",
"Extracts raw audio from RTP packets", "Extracts raw audio from RTP packets",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -26,7 +26,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtpL16enc_details = { static GstElementDetails gst_rtpL16enc_details = {
"RTP RAW Audio Encoder", "RTP RAW Audio Encoder",
"Codec/Network", "Codec/Encoder/Network",
"Encodes Raw Audio into an RTP packet", "Encodes Raw Audio into an RTP packet",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -23,7 +23,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtp_gsmparse_details = { static GstElementDetails gst_rtp_gsmparse_details = {
"RTP packet parser", "RTP packet parser",
"Codec/Network", "Codec/Parser/Network",
"Extracts GSM audio from RTP packets", "Extracts GSM audio from RTP packets",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtpgsmenc_details = { static GstElementDetails gst_rtpgsmenc_details = {
"RTP GSM Audio Encoder", "RTP GSM Audio Encoder",
"Codec/Network", "Codec/Encoder/Network",
"Encodes GSM audio into an RTP packet", "Encodes GSM audio into an RTP packet",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -23,7 +23,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtp_gsmparse_details = { static GstElementDetails gst_rtp_gsmparse_details = {
"RTP packet parser", "RTP packet parser",
"Codec/Network", "Codec/Parser/Network",
"Extracts GSM audio from RTP packets", "Extracts GSM audio from RTP packets",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_rtpgsmenc_details = { static GstElementDetails gst_rtpgsmenc_details = {
"RTP GSM Audio Encoder", "RTP GSM Audio Encoder",
"Codec/Network", "Codec/Encoder/Network",
"Encodes GSM audio into an RTP packet", "Encodes GSM audio into an RTP packet",
"Zeeshan Ali <zak147@yahoo.com>" "Zeeshan Ali <zak147@yahoo.com>"
}; };

View file

@ -28,7 +28,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails smpte_details = { static GstElementDetails smpte_details = {
"SMPTE transitions", "SMPTE transitions",
"Filter/Video", "Filter/Editor/Video",
"Apply the standard SMPTE transitions on video images", "Apply the standard SMPTE transitions on video images",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_spectrum_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_spectrum_details = GST_ELEMENT_DETAILS (
"Spectrum analyzer", "Spectrum analyzer",
"Filter/Audio/Analysis", "Filter/Analyzer/Audio",
"Run an FFT on the audio signal, output spectrum data", "Run an FFT on the audio signal, output spectrum data",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
); );

View file

@ -59,7 +59,7 @@ struct _GstVideoCropClass {
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_video_crop_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_video_crop_details = GST_ELEMENT_DETAILS (
"video crop filter", "video crop filter",
"Filter/Video", "Filter/Effect/Video",
"Crops video into a user defined region", "Crops video into a user defined region",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -90,7 +90,7 @@ gst_videobalance_base_init (gpointer g_class)
{ {
static GstElementDetails videobalance_details = GST_ELEMENT_DETAILS ( static GstElementDetails videobalance_details = GST_ELEMENT_DETAILS (
"Video Balance Control", "Video Balance Control",
"Filter/Video", "Filter/Effect/Video",
"Adjusts brightness, contrast, hue, saturation on a video stream", "Adjusts brightness, contrast, hue, saturation on a video stream",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
); );

View file

@ -79,7 +79,7 @@ static void gst_videofilter_base_init (gpointer g_class)
{ {
static GstElementDetails videofilter_details = { static GstElementDetails videofilter_details = {
"Video scaler", "Video scaler",
"Filter/Video", "Filter/Effect/Video",
"Resizes video", "Resizes video",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
}; };

View file

@ -112,7 +112,7 @@ gst_videoflip_base_init (gpointer g_class)
{ {
static GstElementDetails videoflip_details = GST_ELEMENT_DETAILS ( static GstElementDetails videoflip_details = GST_ELEMENT_DETAILS (
"Video Flipper", "Video Flipper",
"Filter/Video", "Filter/Effect/Video",
"Flips and rotates video", "Flips and rotates video",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
); );

View file

@ -85,7 +85,7 @@ gst_videotemplate_base_init (gpointer g_class)
{ {
static GstElementDetails videotemplate_details = GST_ELEMENT_DETAILS ( static GstElementDetails videotemplate_details = GST_ELEMENT_DETAILS (
"Video Filter Template", "Video Filter Template",
"Filter/Video", "Filter/Effect/Video",
"Template for a video filter", "Template for a video filter",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
); );

View file

@ -30,7 +30,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails videoflip_details = GST_ELEMENT_DETAILS ( static GstElementDetails videoflip_details = GST_ELEMENT_DETAILS (
"Video scaler", "Video scaler",
"Filter/Video", "Filter/Effect/Video",
"Resizes video", "Resizes video",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -71,7 +71,7 @@ struct wave_header {
static GstElementDetails gst_wavenc_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_wavenc_details = GST_ELEMENT_DETAILS (
"WAV encoder", "WAV encoder",
"Codec/Audio/Encoder", "Codec/Encoder/Audio",
"Encode raw audio into WAV", "Encode raw audio into WAV",
"Iain Holmes <iain@prettypeople.org>" "Iain Holmes <iain@prettypeople.org>"
); );

View file

@ -54,8 +54,8 @@ static void gst_wavparse_get_property (GObject *object, guint
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_wavparse_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_wavparse_details = GST_ELEMENT_DETAILS (
".wav parser", ".wav demuxer",
"Codec/Parser", "Codec/Demuxer",
"Parse a .wav file into raw audio", "Parse a .wav file into raw audio",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
); );