summaryrefslogtreecommitdiff
path: root/gst-plugin/src/gstplugin.c
AgeCommit message (Collapse)AuthorFilesLines
2021-10-13Fixed typo in `gstplugin.c` Ralph Tandetzky1-1/+1
calback -> callback
2021-04-15template: update make_elementStéphane Cerveau1-4/+4
update make_element script to work with gstplugin.c and gsttransform.c Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-template/-/merge_requests/8>
2020-12-10gst-plugin: allow per feature registrationStéphane Cerveau1-2/+3
Split plugin into features including typefind functions which can be indiviually registered during a static build. More details here: https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199 https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661 Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-template/-/merge_requests/6>
2020-12-10gst-plugin: apply gst-indentStéphane Cerveau1-23/+21
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-template/-/merge_requests/6>
2020-05-12gst-plugin: Update commentEdward Hervey1-3/+3
2019-06-20Add meson build systemStéphane Cerveau1-4/+4
add configuration files to use meson. Add .gitignore
2016-04-02plugin: fix unused variable compiler warningTim-Philipp Müller1-1/+4
2012-09-26port to 1.0Wim Taymans1-41/+46
2009-08-30gstplugin.c: define PACKAGE if it hasn't been defined yetTim-Philipp Müller1-0/+9
Since it's secretly required by GST_PLUGIN_DEFINE and we don't want people to trip over this if they're trying to compile their code without autotools.
2008-08-11Integrate new template and improve search'n'replace ops. Update templates to ↵Stefan Kost1-14/+11
use current API. Original commit message from CVS: * README: * src/gstaudiofilter.c: * src/gstplugin.c: * src/gsttransform.c: * tools/make_element: Integrate new template and improve search'n'replace ops. Update templates to use current API.
2008-06-09src/gstplugin.c: Fix some memory leaks, and make the setcaps function ↵Jan Schmidt1-9/+6
actually sets the caps on the other pad. Original commit message from CVS: * src/gstplugin.c: Fix some memory leaks, and make the setcaps function actually sets the caps on the other pad.
2008-05-08README: Add simple usage explanation and make it look like the other READMEs.Stefan Kost1-24/+34
Original commit message from CVS: * README: Add simple usage explanation and make it look like the other READMEs. * src/gstplugin.c: * src/gstplugin.h: * src/gsttransform.c: * src/gsttransform.h: * tools/make_element: Add year, username and email fields. Update the templates here and there a bit. Add more comments.
2007-07-25src/gstplugin.c: Use GST_DEBUG_FUNCPTR() macros where it makes sense.Steve Fink1-4/+8
Original commit message from CVS: Patch by: Steve Fink <sphink gmail com> * src/gstplugin.c: Use GST_DEBUG_FUNCPTR() macros where it makes sense.
2006-06-22src/gstplugin.c: Use GST_BOILERPLATE, add debug category (#345601).Philip Jägenstedt1-112/+78
Original commit message from CVS: Patch by: Philip Jägenstedt <philip at lysator liu se> * src/gstplugin.c: (gst_plugin_template_base_init), (gst_plugin_template_class_init), (gst_plugin_template_init), (plugin_init): Use GST_BOILERPLATE, add debug category (#345601).
2006-04-20remove double gst_get_, fix '_' in namesJohan Rydberg1-11/+5
Original commit message from CVS: Patch by: Johan Rydberg <jrydberg@gnu.org> * src/gstplugin.c: (gst_plugin_template_get_type), (gst_plugin_template_base_init), (gst_plugin_template_class_init), (gst_plugin_template_set_property), (gst_plugin_template_get_property): * src/gstplugin.h: * src/gsttransform.c: (gst_plugin_template_base_init), (gst_plugin_template_set_property), (gst_plugin_template_get_property): * tools/make_element: remove double gst_get_, fix '_' in names
2006-02-26src/gstplugin.c: Fix function declaration of _init() function.Tim-Philipp Müller1-6/+4
Original commit message from CVS: * src/gstplugin.c: (gst_plugin_template_init), (gst_plugin_template_chain): Fix function declaration of _init() function. Remove unnecessary assertion clutter in chain function (that also failed to return a flow value, causing compiler warnings).
2006-02-07src/: more code cleanups, more commentsStefan Kost1-52/+56
Original commit message from CVS: * src/gstplugin.c: (gst_plugin_template_set_caps), (gst_plugin_template_chain): * src/gsttransform.c: (gst_plugin_template_transform_ip): more code cleanups, more comments
2006-02-07configure.ac: allow installing to $HOMEStefan Kost1-4/+19
Original commit message from CVS: * configure.ac: allow installing to $HOME * src/gstplugin.c: (gst_plugin_template_base_init), (gst_plugin_template_init): * src/gstplugin.h: * src/gsttransform.c: (gst_plugin_template_base_init), (gst_plugin_template_class_init), (gst_plugin_template_init), (gst_plugin_template_transform_ip), (gst_plugin_template_set_property), (gst_plugin_template_get_property), (plugin_init): * src/gsttransform.h: add another template * tools/make_element: fix generator, when template (arg2) is given
2006-01-13bring into the 0.10 worldThomas Vander Stichele1-4/+4
Original commit message from CVS: * autogen.sh: * configure.ac: * src/Makefile.am: * src/gstplugin.c: bring into the 0.10 world Fix #315582
2005-12-16src/gstplugin.c: Need to have the set_property and get_property methods ↵Jan Schmidt1-3/+3
before installing properties Original commit message from CVS: * src/gstplugin.c: (gst_plugin_template_class_init): Need to have the set_property and get_property methods before installing properties
2005-06-30Fix for GStreamer 0.9.Ronald S. Bultje1-20/+10
Original commit message from CVS: * configure.ac: * src/gstplugin.c: (gst_plugin_template_set_caps), (gst_plugin_template_init), (gst_plugin_template_chain): Fix for GStreamer 0.9.
2005-06-30Relicense all files to MIT, so people can use this code as inspiration or ↵BRANCH-GSTREAMER-0_8Ronald S. Bultje1-3/+24
even as a basis for development of any kind... Original commit message from CVS: Relicense all files to MIT, so people can use this code as inspiration or even as a basis for development of any kind of plugins, not just free ones. Same for applications, of course. Add LGPL and MIT copyright files for good practice. (For those unaware, MIT means "do anything you wish", similar to BSD w/o advertising but without explicit no-endorsement clause.)
2004-01-25src/gstplugin.c: Fix for GStreamer 0.7.x.Ronald S. Bultje1-25/+22
Original commit message from CVS: 2004-01-25 Ronald Bultje <rbultje@ronald.bitfreak.net> * src/gstplugin.c: (gst_plugin_template_link), (gst_plugin_template_base_init), (gst_plugin_template_init): Fix for GStreamer 0.7.x.
2003-12-15Update for new plugin loading system and several other changesMOVE-TO-FDORonald S. Bultje1-34/+36
Original commit message from CVS: Update for new plugin loading system and several other changes
2003-02-06update for 0.6.0Thomas Vander Stichele1-47/+50
Original commit message from CVS: update for 0.6.0
2002-08-13cleanups and clarificationsThomas Vander Stichele1-33/+33
Original commit message from CVS: cleanups and clarifications
2002-08-13small fixup hey guys, test thisThomas Vander Stichele1-2/+3
Original commit message from CVS: small fixup hey guys, test this
2002-08-06this version compiles and runs and everything, yayThomas Vander Stichele1-57/+67
Original commit message from CVS: this version compiles and runs and everything, yay
2002-08-06template code plugins don't work yet, I messed something up and I'm still ↵Thomas Vander Stichele1-0/+262
looking for it Original commit message from CVS: template code plugins don't work yet, I messed something up and I'm still looking for it