2000-12-29 05:38:06 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
2001-03-07 21:52:56 +00:00
|
|
|
* gstelements.c:
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-06-29 14:05:49 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2001-01-18 23:46:15 +00:00
|
|
|
#include "gstfakesink.h"
|
|
|
|
#include "gstfakesrc.h"
|
check/elements/identity.c: Make the error a little clearer when the test fails because identity made a copy of the bu...
Original commit message from CVS:
* check/elements/identity.c: (GST_START_TEST):
Make the error a little clearer when the test fails because
identity made a copy of the buffer.
* docs/gst/gstreamer-sections.txt:
New symbols in gstbasetransform.h
* gst/base/gstbasetransform.c: (gst_base_transform_class_init),
(gst_base_transform_init), (gst_base_transform_transform_size),
(gst_base_transform_configure_caps), (gst_base_transform_setcaps),
(gst_base_transform_default_prepare_buf),
(gst_base_transform_get_unit_size),
(gst_base_transform_buffer_alloc),
(gst_base_transform_handle_buffer), (gst_base_transform_chain),
(gst_base_transform_change_state),
(gst_base_transform_set_passthrough),
(gst_base_transform_set_in_place),
(gst_base_transform_is_in_place):
* gst/base/gstbasetransform.h:
Change BaseTransform to separate in_place operate from same_caps
output. in_place implies that the element can perform the transform
on incoming buffers in-place, even if the caps on the output are
different.
Sub-class elements can now implement special buffer allocation
methods for outgoing buffers if they wish to.
Big documentation addition.
* gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip):
* gst/elements/gstelements.c:
Changes for basetransform modifications.
* gst/elements/Makefile.am:
* gst/elements/gstfdsrc.c: (gst_fdsrc_init), (gst_fdsrc_create):
Compile fix. Extra debug output.
2005-09-09 17:42:20 +00:00
|
|
|
#include "gstfdsrc.h"
|
2003-10-28 20:25:30 +00:00
|
|
|
#include "gstfilesink.h"
|
|
|
|
#include "gstfilesrc.h"
|
|
|
|
#include "gstidentity.h"
|
|
|
|
#include "gsttee.h"
|
2004-04-29 00:32:28 +00:00
|
|
|
#include "gsttypefindelement.h"
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
struct _elements_entry
|
|
|
|
{
|
2000-01-30 09:03:00 +00:00
|
|
|
gchar *name;
|
2003-10-31 19:32:47 +00:00
|
|
|
guint rank;
|
2004-03-13 15:27:01 +00:00
|
|
|
GType (*type) (void);
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2001-08-22 04:30:27 +00:00
|
|
|
|
2005-07-14 09:35:12 +00:00
|
|
|
/* this declaration is here because there's no gstcapsfilter.h */
|
2005-04-24 21:16:45 +00:00
|
|
|
extern GType gst_capsfilter_get_type (void);
|
2001-08-22 04:30:27 +00:00
|
|
|
|
2000-11-25 14:18:47 +00:00
|
|
|
static struct _elements_entry _elements[] = {
|
2005-04-24 21:16:45 +00:00
|
|
|
{"capsfilter", GST_RANK_NONE, gst_capsfilter_get_type},
|
2005-07-14 09:35:12 +00:00
|
|
|
{"fakesrc", GST_RANK_NONE, gst_fake_src_get_type},
|
|
|
|
{"fakesink", GST_RANK_NONE, gst_fake_sink_get_type},
|
2005-10-15 15:52:08 +00:00
|
|
|
#if HAVE_SYS_SOCKET_H
|
check/elements/identity.c: Make the error a little clearer when the test fails because identity made a copy of the bu...
Original commit message from CVS:
* check/elements/identity.c: (GST_START_TEST):
Make the error a little clearer when the test fails because
identity made a copy of the buffer.
* docs/gst/gstreamer-sections.txt:
New symbols in gstbasetransform.h
* gst/base/gstbasetransform.c: (gst_base_transform_class_init),
(gst_base_transform_init), (gst_base_transform_transform_size),
(gst_base_transform_configure_caps), (gst_base_transform_setcaps),
(gst_base_transform_default_prepare_buf),
(gst_base_transform_get_unit_size),
(gst_base_transform_buffer_alloc),
(gst_base_transform_handle_buffer), (gst_base_transform_chain),
(gst_base_transform_change_state),
(gst_base_transform_set_passthrough),
(gst_base_transform_set_in_place),
(gst_base_transform_is_in_place):
* gst/base/gstbasetransform.h:
Change BaseTransform to separate in_place operate from same_caps
output. in_place implies that the element can perform the transform
on incoming buffers in-place, even if the caps on the output are
different.
Sub-class elements can now implement special buffer allocation
methods for outgoing buffers if they wish to.
Big documentation addition.
* gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip):
* gst/elements/gstelements.c:
Changes for basetransform modifications.
* gst/elements/Makefile.am:
* gst/elements/gstfdsrc.c: (gst_fdsrc_init), (gst_fdsrc_create):
Compile fix. Extra debug output.
2005-09-09 17:42:20 +00:00
|
|
|
{"fdsrc", GST_RANK_NONE, gst_fdsrc_get_type},
|
2005-10-13 17:51:51 +00:00
|
|
|
#endif
|
2005-07-14 09:35:12 +00:00
|
|
|
{"filesrc", GST_RANK_NONE, gst_file_src_get_type},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"identity", GST_RANK_NONE, gst_identity_get_type},
|
2005-07-14 09:35:12 +00:00
|
|
|
{"filesink", GST_RANK_NONE, gst_file_sink_get_type},
|
2004-03-13 15:27:01 +00:00
|
|
|
{"tee", GST_RANK_NONE, gst_tee_get_type},
|
2005-04-12 10:52:55 +00:00
|
|
|
{"typefind", GST_RANK_NONE, gst_type_find_element_get_type},
|
GCC 4 fixen.
Original commit message from CVS:
2005-05-04 Andy Wingo <wingo@pobox.com>
* check/Makefile.am:
* docs/gst/tmpl/gstatomic.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/base/gstbasesink.c: (gst_basesink_activate):
* gst/base/gstbasesrc.c: (gst_basesrc_class_init),
(gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
(gst_basesrc_query), (gst_basesrc_set_property),
(gst_basesrc_get_property), (gst_basesrc_check_get_range),
(gst_basesrc_activate):
* gst/base/gstbasesrc.h:
* gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
(gst_base_transform_src_activate):
* gst/elements/gstelements.c:
* gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
(gst_fakesrc_set_property), (gst_fakesrc_get_property):
* gst/elements/gsttee.c: (gst_tee_sink_activate):
* gst/elements/gsttypefindelement.c: (find_element_get_length),
(gst_type_find_element_checkgetrange),
(gst_type_find_element_activate):
* gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
* gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
(gst_caps_load_thyself):
* gst/gstelement.c: (gst_element_pads_activate),
(gst_element_save_thyself), (gst_element_restore_thyself):
* gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
(gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
* gst/gstpad.h:
* gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
(gst_xml_parse_file), (gst_xml_parse_memory),
(gst_xml_get_element), (gst_xml_make_element):
* gst/indexers/gstfileindex.c: (gst_file_index_load),
(_file_index_id_save_xml), (gst_file_index_commit):
* gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
(read_enum), (load_pad_template), (load_feature), (load_plugin),
(load_paths):
* libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
(gst_dp_packet_from_event), (gst_dp_caps_from_packet):
* tools/gst-complete.c: (main):
* tools/gst-compprep.c: (main):
* tools/gst-inspect.c: (print_element_properties_info):
* tools/gst-launch.c: (xmllaunch_parse_cmdline):
* tools/gst-xmlinspect.c: (print_element_properties):
GCC 4 fixen.
2005-05-04 21:29:44 +00:00
|
|
|
{NULL, 0},
|
2000-01-30 09:03:00 +00:00
|
|
|
};
|
|
|
|
|
2001-04-22 12:30:14 +00:00
|
|
|
static gboolean
|
2004-03-13 15:27:01 +00:00
|
|
|
plugin_init (GstPlugin * plugin)
|
2000-11-25 14:18:47 +00:00
|
|
|
{
|
2003-10-31 19:32:47 +00:00
|
|
|
struct _elements_entry *my_elements = _elements;
|
2004-03-13 15:27:01 +00:00
|
|
|
|
|
|
|
while ((*my_elements).name) {
|
|
|
|
if (!gst_element_register (plugin, (*my_elements).name, (*my_elements).rank,
|
2004-03-15 19:27:17 +00:00
|
|
|
((*my_elements).type) ()))
|
2003-10-31 19:32:47 +00:00
|
|
|
return FALSE;
|
|
|
|
my_elements++;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
|
|
|
|
2001-04-22 12:30:14 +00:00
|
|
|
return TRUE;
|
2000-01-30 09:03:00 +00:00
|
|
|
}
|
2001-04-22 12:30:14 +00:00
|
|
|
|
2004-03-13 15:27:01 +00:00
|
|
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"gstelements",
|
|
|
|
"standard GStreamer elements",
|
2005-09-03 17:00:52 +00:00
|
|
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE, GST_ORIGIN);
|