summaryrefslogtreecommitdiffstats
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* use new bytestream apiSteve Baker2002-05-151-2/+3
| | | | | Original commit message from CVS: use new bytestream api
* use new bytestream api. please test if you care about this pluginSteve Baker2002-05-151-4/+6
| | | | | Original commit message from CVS: use new bytestream api. please test if you care about this plugin
* still in anal-retentive mode, please make liberal use of the delete keyThomas Vander Stichele2002-05-131-9/+9
| | | | | Original commit message from CVS: still in anal-retentive mode, please make liberal use of the delete key
* various name fixes and sundryThomas Vander Stichele2002-05-031-7/+7
| | | | | Original commit message from CVS: various name fixes and sundry
* Various small fixes for compile problemsRonald S. Bultje2002-04-262-9/+9
| | | | | Original commit message from CVS: Various small fixes for compile problems
* a hack to work around intltool's brokenness a current check for mpeg2dec ↵Andy Wingo2002-04-208-16/+14
| | | | | | | | | | | details->klass reorganizations an element br... Original commit message from CVS: * a hack to work around intltool's brokenness * a current check for mpeg2dec * details->klass reorganizations * an element browser that uses details->klass * separated cdxa parse out from the avi directory
* s/G_MINFLOAT/G_MAXFLOAT unref the buffer pool in the loop funcSteve Baker2002-04-201-1/+3
| | | | | | Original commit message from CVS: s/G_MINFLOAT/G_MAXFLOAT unref the buffer pool in the loop func
* A fairly large reworking of the ladspa _get, _chain and _loop funcs. ↵Steve Baker2002-04-202-244/+404
| | | | | | | | | | | | | | | | | highlights are: Original commit message from CVS: A fairly large reworking of the ladspa _get, _chain and _loop funcs. highlights are: - pad names are now g_strcanonised - in all cases possible, src and sink buffers are shared - all ladspa properties are exposed as dparams and element properties - the buffers are now processed in dparam driven loops - timestamps on buffers should be correct - misc fixes It has been minimally tested - the following pipeline works for me: gst-launch ladspa_sine_fcac Frequency=440.0 Amplitude=1.0 name=fcac1 ladspa_sine_fcac Frequency=450.0 Amplitude=1.0 name=fcac2 ladspa_freeverb3 Wet-Level=0.5 name=free float2int name=f2i fcac1.Output!free.Input--Left- free.Output--Left-!f2i.sink%d fcac2.Output!free.Input--Right- free.Output--Right-!f2i.sink%d f2i.src!sink osssink
* GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory ↵Andy Wingo2002-04-1113-87/+91
| | | | | | | | | | | and typefind. Original commit message from CVS: GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory and typefind. also, some -Werror fixes.
* fixed warnings in /ext added mikmod_types.h to get it doneBenjamin Otte2002-04-064-3/+52
| | | | | | Original commit message from CVS: fixed warnings in /ext added mikmod_types.h to get it done
* tsk tsk. do people even try to MAKE stuff they add ? ;)Thomas Vander Stichele2002-04-011-1/+1
| | | | | Original commit message from CVS: tsk tsk. do people even try to MAKE stuff they add ? ;)
* alphabetization fixen a jack caps fixAndy Wingo2002-03-301-2/+8
| | | | | | Original commit message from CVS: * alphabetization fixen * a jack caps fix
* Changed to the new props APIWim Taymans2002-03-306-27/+40
| | | | | | Original commit message from CVS: Changed to the new props API Other small tuff.
* filter newlines out of GST_DEBUG statements to reflect new core behavior ↵Andy Wingo2002-03-248-60/+60
| | | | | | | | fixes to adder's caps, again Original commit message from CVS: * filter newlines out of GST_DEBUG statements to reflect new core behavior * fixes to adder's caps, again
* s/Gnome-Streamer/GStreamer/Andy Wingo2002-03-2014-14/+14
| | | | | Original commit message from CVS: s/Gnome-Streamer/GStreamer/
* removal of //-style comments don't link plugins to core libs -- the ↵Andy Wingo2002-03-1918-37/+37
| | | | | | | | | versioning is done internally to the plugins with... Original commit message from CVS: * removal of //-style comments * don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct, and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
* s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables ↵Andy Wingo2002-03-198-9/+9
| | | | | | | | | | variables are defined as make variables automagi... Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag
* s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it ↵Andy Wingo2002-03-181-2/+8
| | | | | | | | | | | | | | just makes more sense that way added jack ... Original commit message from CVS: * s/gst_element_install_std_props/gst_element_class_install_std_props/ -- it just makes more sense that way * added jack element, doesn't quite work right yet but i didn't want to lose the work -- it does build, register, and attempt to run though * imposed some restrictions on the naming of request pads to better allow for reverse parsing * added '%s' to reverse parsing * added new bin flag to indicate that it is self-iterating, and some lame code in gst-launch to test it out * fixen on launch-gui * added pkg-config stuff for the editor's libs
* Fix up esdmon timestamps, so that they don't go completely wrong if someone ↵Richard Boulton2002-03-021-4/+7
| | | | | | | | changes the frequency, depth or mono/ster... Original commit message from CVS: Fix up esdmon timestamps, so that they don't go completely wrong if someone changes the frequency, depth or mono/stereo parameters.
* Added esdmon plugin.Richard Boulton2002-03-022-1/+504
| | | | | | | | | | Original commit message from CVS: Added esdmon plugin. Monitors output from the esd sound daemon. Particularly useful for displaying a visualisation of the audio being played on your system. eg: gst-launch esdmon ! goom ! { queue leaky=yes ! colorspace ! sdlvideosink } You can even have several of them going at once. :)
* bugfix: make typefinding of .xm workBenjamin Otte2002-02-071-1/+1
| | | | | Original commit message from CVS: bugfix: make typefinding of .xm work
* Small _get/_set fixes.Wim Taymans2002-02-041-6/+6
| | | | | Original commit message from CVS: Small _get/_set fixes.
* adding tarkin to build to try building it run configure with ↵Thomas Vander Stichele2002-02-041-2/+8
| | | | | | | | --enable-experimental Original commit message from CVS: adding tarkin to build to try building it run configure with --enable-experimental
* // to /* */ fixesChristian Schaller2002-02-034-26/+26
| | | | | Original commit message from CVS: // to /* */ fixes
* Assorted fixes.Wim Taymans2002-02-031-13/+13
| | | | | | Original commit message from CVS: Assorted fixes. Use the new clocking stuff.
* Fixing // style comments into /* */Christian Schaller2002-02-031-11/+11
| | | | | Original commit message from CVS: Fixing // style comments into /* */
* Pointless cleanupWim Taymans2002-02-021-2/+2
| | | | | Original commit message from CVS: Pointless cleanup
* Reworked the DV decoder.Wim Taymans2002-01-262-145/+211
| | | | | | | | Original commit message from CVS: Reworked the DV decoder. - make it do RGB or YUV output using caps negotiation - use bytestream to read data. - autodetect PAL/NTSC
* Updated ladspa to work with the new caps nego stuff. Also updated it to work ↵Leif Johnson2002-01-222-238/+328
| | | | | | | | | in using a loop function for configurati... Original commit message from CVS: Updated ladspa to work with the new caps nego stuff. Also updated it to work in any M sinkpads by N srcpads configuration (M > -1 and N > 0), using a loop function for configurations other than M == N == 1 or M == 0.
* - plugins are built without versioning infoWrobell2002-01-188-0/+8
| | | | | Original commit message from CVS: - plugins are built without versioning info
* mjpegtools dirThomas Vander Stichele2002-01-171-10/+10
| | | | | Original commit message from CVS: mjpegtools dir
* jpegmmx addition and some small changesRonald S. Bultje2002-01-171-10/+16
| | | | | Original commit message from CVS: jpegmmx addition and some small changes
* ... and cvs commits should not be allowed for people who spent six hours on ↵Thomas Vander Stichele2002-01-161-1/+0
| | | | | | | | | the phone talking to hardware vendors and... Original commit message from CVS: ... and cvs commits should not be allowed for people who spent six hours on the phone talking to hardware vendors and struggling with failing raid systems
* how do people expect sdl to build if make has no way of getting to the dir ↵Thomas Vander Stichele2002-01-161-1/+1
| | | | | | | | and we don't point it in the right directi... Original commit message from CVS: how do people expect sdl to build if make has no way of getting to the dir and we don't point it in the right direction ?
* Bring the plugins in sync with the new core capsnego system.Wim Taymans2002-01-139-99/+89
| | | | | | Original commit message from CVS: Bring the plugins in sync with the new core capsnego system. Added some features, enhancements...
* s/filter/plugin/ link plugins to GST_LIBS rearrange rules to a common formatDavid I. Lehn2002-01-128-19/+15
| | | | | | | Original commit message from CVS: * s/filter/plugin/ * link plugins to GST_LIBS * rearrange rules to a common format
* enable festival buildDavid I. Lehn2002-01-121-4/+4
| | | | | Original commit message from CVS: * enable festival build
* fix glib2's complaining on the params of some plugins there's still some ↵Andy Wingo2002-01-101-5/+12
| | | | | | | | work to be done: s/-$//g; && s/\(.*$//; Original commit message from CVS: fix glib2's complaining on the params of some plugins there's still some work to be done: s/-$//g; && s/\(.*$//;
* siddec checks that work not extremely robust, but functionalAndy Wingo2002-01-061-5/+5
| | | | | | Original commit message from CVS: siddec checks that work not extremely robust, but functional
* dvshow.c -> demo-dv.cAndy Wingo2002-01-042-0/+109
| | | | | Original commit message from CVS: dvshow.c -> demo-dv.c
* small fixesThomas Vander Stichele2002-01-021-18/+36
| | | | | Original commit message from CVS: small fixes
* smoothwave fixinThomas Vander Stichele2001-12-301-1/+1
| | | | | Original commit message from CVS: smoothwave fixin
* Fixed some pluginsWim Taymans2001-12-284-34/+12
| | | | | Original commit message from CVS: Fixed some plugins
* taaz's virtual patchThomas Vander Stichele2001-12-261-5/+5
| | | | | Original commit message from CVS: taaz's virtual patch
* Fixed the smooothwave madness removed a yield from vorbisdec don't call ↵Wim Taymans2001-12-261-1/+1
| | | | | | | | | mpeg2_close, it seems to segfault sometimes. Original commit message from CVS: Fixed the smooothwave madness removed a yield from vorbisdec don't call mpeg2_close, it seems to segfault sometimes.
* muahahahaha. gstreamer-compprep initializes every plugin so it's a good way ↵Andy Wingo2001-12-261-5/+12
| | | | | | | | of figuring out plugin issues. it spits o... Original commit message from CVS: muahahahaha. gstreamer-compprep initializes every plugin so it's a good way of figuring out plugin issues. it spits out no more errors now.
* dohThomas Vander Stichele2001-12-251-1/+1
| | | | | Original commit message from CVS: doh
* more distcheck fixesThomas Vander Stichele2001-12-251-4/+11
| | | | | Original commit message from CVS: more distcheck fixes
* something stupidThomas Vander Stichele2001-12-251-1/+1
| | | | | Original commit message from CVS: something stupid
* make arts stuff work, i thinkAndy Wingo2001-12-241-4/+9
| | | | | Original commit message from CVS: make arts stuff work, i think