+ 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:23 +00:00
parent 531a3a6936
commit 5b283c92b6
34 changed files with 44 additions and 59 deletions

View file

@ -32,7 +32,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails afparse_details = { static GstElementDetails afparse_details = {
"Audiofile Parse", "Audiofile Parse",
"Codec/Parser", "Codec/Parser/Audio",
"Audiofile parser for audio/raw", "Audiofile parser for audio/raw",
"Steve Baker <stevebaker_org@yahoo.co.uk>", "Steve Baker <stevebaker_org@yahoo.co.uk>",
}; };

View file

@ -29,9 +29,9 @@ static GstPadTemplate *gsmdec_src_template, *gsmdec_sink_template;
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_gsmdec_details = { GstElementDetails gst_gsmdec_details = {
"gsm audio decoder", "GSM audio decoder",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
".gsm", "Decodes GSM encoded audio",
"Wim Taymans <wim.taymans@chello.be>", "Wim Taymans <wim.taymans@chello.be>",
}; };

View file

@ -29,9 +29,9 @@ static GstPadTemplate *gsmenc_src_template, *gsmenc_sink_template;
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_gsmenc_details = { GstElementDetails gst_gsmenc_details = {
"gsm audio encoder", "GSM audio encoder",
"Codec/Audio/Encoder", "Codec/Encoder/Audio",
".gsm", "Encodes audio using GSM",
"Wim Taymans <wim.taymans@chello.be>", "Wim Taymans <wim.taymans@chello.be>",
}; };

View file

@ -30,7 +30,7 @@
static GstElementDetails colorspace_details = { static GstElementDetails colorspace_details = {
"Colorspace converter", "Colorspace converter",
"Filter/Convert", "Filter/Converter/Video",
"Converts video from one colorspace to another using libhermes", "Converts video from one colorspace to another using libhermes",
"Wim Taymans <wim.taymans@chello.be>", "Wim Taymans <wim.taymans@chello.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

@ -32,7 +32,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_mplex_details = { static GstElementDetails gst_mplex_details = {
"MPlex multiplexer", "MPlex multiplexer",
"Codec/Audio/Decoder", "Codec/Muxer",
"multiplex mpeg audio and video into a system stream", "multiplex mpeg audio and video into a system stream",
"Wim Taymans <wim.taymans@chello.be> ", "Wim Taymans <wim.taymans@chello.be> ",
}; };

View file

@ -31,7 +31,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails snapshot_details = { static GstElementDetails snapshot_details = {
"snapshot", "snapshot",
"Filter/Video", "Filter/Editor/Video",
"Dump a frame to a png file", "Dump a frame to a png file",
"Jeremy SIMON <jsimon13@yahoo.fr>", "Jeremy SIMON <jsimon13@yahoo.fr>",
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_swfdec_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_swfdec_details = GST_ELEMENT_DETAILS (
"SWF video decoder", "SWF video decoder",
"Codec/Video/Decoder", "Codec/Decoder/Video",
"Uses libswfdec to decode Flash video streams", "Uses libswfdec to decode Flash video streams",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
); );

View file

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

View file

@ -25,11 +25,7 @@
#include <gst/gst.h> #include <gst/gst.h>
/* #include <gst/meta/audioraw.h> */ /* #include <gst/meta/audioraw.h> */
G_BEGIN_DECLS
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define GST_TYPE_DEINTERLACE \ #define GST_TYPE_DEINTERLACE \
(gst_deinterlace_get_type()) (gst_deinterlace_get_type())
@ -67,9 +63,6 @@ struct _GstDeInterlaceClass {
GstElementClass parent_class; GstElementClass parent_class;
}; };
#ifdef __cplusplus G_END_DECLS
}
#endif /* __cplusplus */
#endif /* __GST_DEINTERLACE_H__ */
#endif /* __GST_STEREO_H__ */

View file

@ -92,7 +92,7 @@ static char* client_accept_s_expr (int fd);
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_festival_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_festival_details = GST_ELEMENT_DETAILS (
"Festival synthesizer", "Festival synthesizer",
"Filter/Audio", "Filter/Effect/Audio",
"Synthesizes plain text into audio", "Synthesizes plain text into audio",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

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

@ -27,7 +27,7 @@
static GstElementDetails gst_iir_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_iir_details = GST_ELEMENT_DETAILS (
"IIR", "IIR",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"IIR filter based on vorbis code", "IIR filter based on vorbis code",
"Monty <monty@xiph.org>, " "Monty <monty@xiph.org>, "
"Thomas <thomas@apestaart.org>" "Thomas <thomas@apestaart.org>"

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

@ -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

@ -68,7 +68,7 @@ struct _GstMixMatrixClass {
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mixmatrix_details = { static GstElementDetails mixmatrix_details = {
"Mixing Matrix", "Mixing Matrix",
"Filter/Audio", "Filter/Editor/Audio",
"Mix N audio channels together into M channels", "Mix N audio channels together into M channels",
"Erik Walthinsen <omega@temple-baptist.com>" "Erik Walthinsen <omega@temple-baptist.com>"
}; };

View file

@ -41,7 +41,7 @@
/* elementfactory information */ /* elementfactory information */
GstElementDetails modplug_details = { GstElementDetails modplug_details = {
"ModPlug", "ModPlug",
"Codec/Audio/Decoder", "Codec/Decoder/Audio",
"Module decoder based on modplug engine", "Module decoder based on modplug engine",
"Jeremy SIMON <jsimon13@yahoo.fr>" "Jeremy SIMON <jsimon13@yahoo.fr>"
}; };

View file

@ -38,7 +38,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mpeg1videoparse_details = GST_ELEMENT_DETAILS ( static GstElementDetails mpeg1videoparse_details = GST_ELEMENT_DETAILS (
"MPEG 1 Video Parser", "MPEG 1 Video Parser",
"Codec/Parser", "Codec/Parser/Video",
"Parses and frames MPEG 1 video streams, provides seek", "Parses and frames MPEG 1 video streams, provides seek",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );

View file

@ -39,7 +39,7 @@ static void gst_mpeg2subt_get_property (GObject *object, guint prop_id, GValue
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mpeg2subt_details = { static GstElementDetails mpeg2subt_details = {
"MPEG2 subtitle Decoder", "MPEG2 subtitle Decoder",
"Codec/Video/Decoder", "Codec/Decoder/Video",
"Decodes and merges MPEG2 subtitles into a video frame", "Decodes and merges MPEG2 subtitles into a video frame",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
}; };

View file

@ -27,7 +27,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails mp3parse_details = { static GstElementDetails mp3parse_details = {
"MPEG1 Audio Parser", "MPEG1 Audio Parser",
"Codec/Parser", "Codec/Parser/Audio",
"Parses and frames mpeg1 audio streams (levels 1-3), provides seek", "Parses and frames mpeg1 audio streams (levels 1-3), provides seek",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
}; };

View file

@ -26,7 +26,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails overlay_details = { static GstElementDetails overlay_details = {
"Video Overlay", "Video Overlay",
"Filter/Video", "Filter/Editor/Video",
"Overlay multiple video streams", "Overlay multiple video streams",
"David Schleef <ds@schleef.org>" "David Schleef <ds@schleef.org>"
}; };

View file

@ -32,7 +32,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails passthrough_details = { static GstElementDetails passthrough_details = {
"Passthrough", "Passthrough",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"Transparent filter for audio/raw (boilerplate for effects)", "Transparent filter for audio/raw (boilerplate for effects)",
"Thomas <thomas@apestaart.org>, "\ "Thomas <thomas@apestaart.org>, "\
"Andy Wingo <apwingo@eos.ncsu.edu>" "Andy Wingo <apwingo@eos.ncsu.edu>"

View file

@ -22,14 +22,9 @@
#ifndef __GST_PASSTHROUGH_H__ #ifndef __GST_PASSTHROUGH_H__
#define __GST_PASSTHROUGH_H__ #define __GST_PASSTHROUGH_H__
#include <gst/gst.h> #include <gst/gst.h>
G_BEGIN_DECLS
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define GST_TYPE_PASSTHROUGH \ #define GST_TYPE_PASSTHROUGH \
(gst_passthrough_get_type()) (gst_passthrough_get_type())
@ -65,11 +60,11 @@ struct _GstPassthrough {
guint channels; guint channels;
guint width; guint width;
guint endianness; guint endianness;
guint buffer_size;
/* the next are valid only for format==GST_PASSTHROUGH_FORMAT_INT */ /* the next are valid only for int formats */
guint depth; guint depth;
gboolean is_signed; gboolean is_signed;
}; };
struct _GstPassthroughClass { struct _GstPassthroughClass {
@ -78,9 +73,6 @@ struct _GstPassthroughClass {
GType gst_passthrough_get_type(void); GType gst_passthrough_get_type(void);
#ifdef __cplusplus G_END_DECLS
}
#endif /* __cplusplus */
#endif /* __GST_PASSTHROUGH_H__ */ #endif /* __GST_PASSTHROUGH_H__ */

View file

@ -28,7 +28,7 @@
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_rtjpegdec_details = { GstElementDetails gst_rtjpegdec_details = {
"RTjpeg decoder", "RTjpeg decoder",
"Codec/Video/Decoder", "Codec/Decoder/Video",
"Decodes video in RTjpeg format", "Decodes video in RTjpeg format",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
}; };

View file

@ -26,7 +26,7 @@
/* elementfactory information */ /* elementfactory information */
GstElementDetails gst_rtjpegenc_details = { GstElementDetails gst_rtjpegenc_details = {
"RTjpeg encoder", "RTjpeg encoder",
"Codec/Video/Encoder", "Codec/Encoder/Video",
"Encodes video in RTjpeg format", "Encodes video in RTjpeg format",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
}; };

View file

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

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

@ -38,7 +38,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails speed_details = GST_ELEMENT_DETAILS ( static GstElementDetails speed_details = GST_ELEMENT_DETAILS (
"Speed", "Speed",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"Set speed/pitch on audio/raw streams (resampler)", "Set speed/pitch on audio/raw streams (resampler)",
"Andy Wingo <apwingo@eos.ncsu.edu>" "Andy Wingo <apwingo@eos.ncsu.edu>"
); );

View file

@ -30,8 +30,8 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails stereo_details = GST_ELEMENT_DETAILS ( static GstElementDetails stereo_details = GST_ELEMENT_DETAILS (
"Stereo effect", "Stereo effect",
"Filter/Audio/Effect", "Filter/Effect/Audio",
"Muck with the stereo signal, enhance it's 'stereo-ness'", "Muck with the stereo signal to enhance its 'stereo-ness'",
"Erik Walthinsen <omega@cse.ogi.edu>" "Erik Walthinsen <omega@cse.ogi.edu>"
); );

View file

@ -65,7 +65,7 @@ GType gst_vbidec_get_type(void);
/* elementfactory information */ /* elementfactory information */
static GstElementDetails gst_vbidec_details = GST_ELEMENT_DETAILS ( static GstElementDetails gst_vbidec_details = GST_ELEMENT_DETAILS (
"VBI decoder", "VBI decoder",
"Codec/Video/Decoder", "Codec/Decoder/Video",
"Decodes closed captions and XDS data from VBI data", "Decodes closed captions and XDS data from VBI data",
"David I. Lehn <dlehn@users.sourceforge.net>" "David I. Lehn <dlehn@users.sourceforge.net>"
); );

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

@ -26,7 +26,7 @@
/* elementfactory information */ /* elementfactory information */
static GstElementDetails videodrop_details = GST_ELEMENT_DETAILS ( static GstElementDetails videodrop_details = GST_ELEMENT_DETAILS (
"Video frame dropper", "Video frame dropper",
"Filter/Video", "Filter/Effect/Video",
"Re-FPS'es video", "Re-FPS'es video",
"Ronald Bultje <rbultje@ronald.bitfreak.net>" "Ronald Bultje <rbultje@ronald.bitfreak.net>"
); );

View file

@ -28,7 +28,7 @@
static GstElementDetails y4mencode_details = GST_ELEMENT_DETAILS ( static GstElementDetails y4mencode_details = GST_ELEMENT_DETAILS (
"Y4mEncode", "Y4mEncode",
"Codec/Video/Encoder", "Codec/Encoder/Video",
"Encodes a YUV frame into the yuv4mpeg format (mjpegtools)", "Encodes a YUV frame into the yuv4mpeg format (mjpegtools)",
"Wim Taymans <wim.taymans@chello.be>" "Wim Taymans <wim.taymans@chello.be>"
); );