summaryrefslogtreecommitdiff
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
...
* element-maker: set CPPFLAGS to make templates using uninstalled headers workStefan Kost2011-04-262-2/+3
|
* element-maker: fixup gobject template a bit but disable for nowStefan Kost2011-04-262-2/+5
| | | | The template contains things we already define by default.
* element-templates: fix templatesStefan Kost2011-04-265-12/+52
| | | | | Use the object class and not the object in the init function. Set the vmethods. Add default returns.
* element-maker: don't dist incomplete templatesStefan Kost2011-04-261-5/+7
| | | | | Move not working templates to a separate variable to highlight the fact that they need more work. These need at least the class and type fields filled.
* element-maker-test: try to run element-maker for all templatesStefan Kost2011-04-262-1/+28
| | | | Add an easy way to check the element-maker templates.
* element-maker: make it fail, when compilation failsStefan Kost2011-04-261-1/+7
|
* element-maker: allow to run from a different working directoryStefan Kost2011-04-261-2/+3
| | | | | Get the dirname for the script and use that to reference the templates. Use the templatedir variable to check for templates.
* element-maker: lowercasify inputDavid Schleef2011-04-241-0/+1
| | | | | | This allows using capitalized acronyms in class names, so using "AVC_src" on the command line will create filename gstavcsrc.c, class name GstAVCSrc, and symbol names gst_avc_src_*.
* element-templates: clean up gobject template a bitTim-Philipp Müller2011-04-151-16/+4
| | | | | | Remove pointless g_return_if_fail (G_IS_FOO (obj)) checks in vfunc implementations. Comment out unused variables to avoid warnings with gcc 4.6.
* element-maker: dist new videofilter2 templateTim-Philipp Müller2011-04-101-0/+1
|
* baseparse: remove -bad version of baseparse library, now in coreTim-Philipp Müller2011-04-091-1/+1
|
* element-maker: Add videofilter2 templateDavid Schleef2011-04-081-0/+67
|
* element-maker: do test build with -fPICDavid Schleef2011-02-171-1/+1
|
* element-maker: Add baseparse templateDavid Schleef2011-02-171-0/+109
|
* element-maker: Fix handling of debug categoryDavid Schleef2011-01-201-6/+3
|
* element-maker: improve pushsrcDavid Schleef2011-01-052-10/+236
|
* element-maker: Add debug categoryDavid Schleef2011-01-021-2/+9
|
* element-maker: Update FSF addressDavid Schleef2010-12-311-2/+2
|
* Add gst-app-makerDavid Schleef2010-12-312-0/+546
|
* element-maker: Clean up directoryDavid Schleef2010-12-1523-54/+80
|
* element-maker: improve generation of several classesDavid Schleef2010-12-1421-104/+819
| | | | | Better creation of pads, test and fix many other classes. Most classes work now, although might not create functional elements.
* element-maker: Handle names with multiple underscoresDavid Schleef2010-12-011-4/+4
|
* element-maker: Take parameters on command lineDavid Schleef2010-09-061-2/+61
| | | | Now it's actually useful.
* element-maker: construct element namesDavid Schleef2010-09-042-11/+48
|
* element-maker: Fix up GstElementDavid Schleef2010-09-042-14/+32
|
* tools: flesh out element-maker templatesDavid Schleef2010-06-034-10/+126
|
* tools: Add element-makerDavid Schleef2010-04-1419-0/+1354
Add a script that creates elements based on any of the GStreamer base classes. It isn't very user friendly at the moment, one needs to edit the script to make it work properly. Each base class has a template file describing what to put into the constructed element. Eventually, these templates should be moved to reside with the base class source and installed to a well-known directory, where an installed script could find them. The template files use the .c ending so editors know they are C source, but gst-indent doesn't handle them correctly. So they need to be committed with -n. Ugh. I'll try to figure out a fix for that soon.