- Dec 06, 2001
- Dec 05, 2001
-
-
Wrobell authored
- do not overwrite CFLAGS/CPPFLAGS/LDFLAGS/ASFLAGS in configure.ac - they are for users, not developers; now it is po... Original commit message from CVS: - do not overwrite CFLAGS/CPPFLAGS/LDFLAGS/ASFLAGS in configure.ac - they are for users, not developers; now it is possible for users to pass its own cflags, i.e. ./configure CFLAGS="-march=i686 -Os" - LIBGST_CFLAGS/LIBS contain flags to build gst; GST_CFLAGS/LIBS contain flags to build other objects - no CORE_CLFAGS and CORE_LIBS, use GST_CFLAGS or GST_LIBS instead, ie: lib_CFLAGS = $(GST_CFLAGS) lib_LIBADD = $(GST_LIBS) prog_LDADD = $(GST_LIBS) - GLIB_CFLAGS/LIBS contains gtk+ flags and glib flags when glib 1.2 used or glib 2.0 flags when glib2 is used - simplified SDL detection - some am 1.5 and ac 2.52 fixes
-
Wim Taymans authored
Original commit message from CVS: Added some ramblings about a messaging system idea..
-
Wim Taymans authored
Original commit message from CVS: Added a thread test case.
-
Thomas Vander Stichele authored
Original commit message from CVS: someone forgot a certain Makefile.am
-
Thomas Vander Stichele authored
Original commit message from CVS: added little comment
-
- Dec 04, 2001
-
-
- some fixes to int2float making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it bui... Original commit message from CVS: - added playondemand plugin by Leif Morgan Johnson <lmjohns3@eos.ncsu.edu> - some fixes to int2float - aplied a patch from wrobell <wrobell@ite.pl> that is a first attempt at making automake 1.5 happy (gst now requires automake1.5). It's still not perfect but it builds. - Made the schedulers plugable. The default scheduler now lives inside a plugin. - Added a new mpeg1/2 parser/demuxer. - Fixed some compiler warnings in the core libs. - substantial work to GstThread (hopefully less race conditions). simplified the code in GstThread a bit. A state change can now also happen in the thread context. - reworked the state semantics of a bin. it'll now automatically get the highest state of its children. - the autoplugger now nests the threads so that a state change failure of one thread doesn't make its upstream thread lock. - GstQueue refuses to go to PLAYING if the sinkpad is not connected. This way the queue will not wedge in the _get lock. - GstQueue unlocks its mutexes when going to PAUSED. - make sure that when all elements in a bin/thread go to PAUSED, the bin is set to PAUSED too. - make a parent bin wait for its children to PAUSE before ending the iteration with FALSE (EOS) - Some changes to GstPlay to deal with EOS. - aplied the latest patch from Zeenix to gstrtp. end result: GstPlay doesn't crash on EOS and the pipeline is now shut down properly.
-
Arik Devens authored
Added some simple code to hide the cursor on fullscreen, also got rid of some warnings. this is a small update before... Original commit message from CVS: Added some simple code to hide the cursor on fullscreen, also got rid of some warnings. this is a small update before the new gstplay lands.
-
- Dec 03, 2001
-
-
Thomas Vander Stichele authored
Original commit message from CVS: added one of the headers to Makefile.am
-
- Nov 29, 2001
-
-
Steve Baker Baker authored
Original commit message from CVS: the beginnings of a testsuite for dparams. it works but it doesn't test anything yet
-
Steve Baker Baker authored
Original commit message from CVS: now require gst_control_init to initialise dparams
-
Steve Baker Baker authored
now require gst_control_init to initialise dparams. a start has been made on disposing of the objects as well Original commit message from CVS: now require gst_control_init to initialise dparams. a start has been made on disposing of the objects as well
-
- Nov 28, 2001
-
-
Thomas Vander Stichele authored
Original commit message from CVS: I tried my best
-
Thomas Vander Stichele authored
Original commit message from CVS: void value should be ignored
-
Thomas Vander Stichele authored
Original commit message from CVS: trying to fix make distcheck
-
- Nov 27, 2001
-
-
Thomas Vander Stichele authored
Original commit message from CVS: temporarily removed refcounting
-
Thomas Vander Stichele authored
Original commit message from CVS: removed bin from tests
-
Wim Taymans authored
pseudo code describing a GstThread synchronisation proposal. pretty similar to what there is now but with some subtle... Original commit message from CVS: pseudo code describing a GstThread synchronisation proposal. pretty similar to what there is now but with some subtle differences.
-
Andy Wingo Wingo authored
Original commit message from CVS: fix stupid commit
-
Andy Wingo Wingo authored
Original commit message from CVS: for the love of god, let this be the last distcheck fix in this dir
-
- Nov 26, 2001
-
-
Andy Wingo Wingo authored
Original commit message from CVS: try some more to fix make distcheck
-
Andy Wingo Wingo authored
Original commit message from CVS: use fake* instead of other elements
-
Andy Wingo Wingo authored
Original commit message from CVS: make the test case clearer and better commented. i now think that this is a cothreads problem.
-
- Nov 25, 2001
-
-
Wim Taymans authored
Original commit message from CVS: Added the glade cflags
-
Andy Wingo Wingo authored
fixed mainloop for non-glib2 this is a hack, we really need to fix this properly so i don't have to do this in every ... Original commit message from CVS: fixed mainloop for non-glib2 this is a hack, we really need to fix this properly so i don't have to do this in every file
-
Andy Wingo Wingo authored
i've added a testcase where the scheduler fails. i don't know enough about the scheduler to fix it, though. the seque... Original commit message from CVS: i've added a testcase where the scheduler fails. i don't know enough about the scheduler to fix it, though. the sequence goes: - make a pipeline, iterate it once - re-use one of the elements in a new pipeline, see if it works
-
- Nov 24, 2001
-
-
Andy Wingo Wingo authored
quoting from the comment i put in gststaticautoplug.c: it is likely that the plugin is not loaded yet. thus when it l... Original commit message from CVS: quoting from the comment i put in gststaticautoplug.c: it is likely that the plugin is not loaded yet. thus when it loads it will replace the elementfactory that gst built from the cache, and the GST_OBJECT_NAME will no longer be valid. thus we must g_strdup its name. this might be an implementation problem, i don't know, if a program keeps a reference to a cached factory after a factory has been added on plugin initialization. i really don't know though.
-
Andy Wingo Wingo authored
Original commit message from CVS: GstObject is no longer instantiatable in glib2
-
Andy Wingo Wingo authored
Original commit message from CVS: fixed a double-unreffing problem when disposing of elements
-
- Nov 23, 2001
-
-
Andy Wingo Wingo authored
cleaned up mangling of properties and names in ladspa by using g_strcanon added g_strcanon to gobject2gtk.[ch], not t... Original commit message from CVS: * cleaned up mangling of properties and names in ladspa by using g_strcanon * added g_strcanon to gobject2gtk.[ch], not tested though
-
- Nov 21, 2001
-
-
Zaheer Abbas Merali authored
Original commit message from CVS: Added a plugin to generate pure silence :)
-
David Schleef authored
Original commit message from CVS: Remove the test program, since it's buggy, in order not to hold up make distcheck
-
- Nov 14, 2001
-
-
Wim Taymans authored
Original commit message from CVS: Call the default handler of the pad
-
Wim Taymans authored
Direct events to the event handler for non event-ware elements. pass the event to the chain function for event aware ... Original commit message from CVS: Direct events to the event handler for non event-ware elements. pass the event to the chain function for event aware elements.
-
Wim Taymans authored
Original commit message from CVS: Make the queue event aware and make it do something usefull with the events.
-
Wim Taymans authored
Original commit message from CVS: Added a default handler for the pads.
-
Wim Taymans authored
Original commit message from CVS: Added a flag to indicate an element is event aware.
-
Wim Taymans authored
Original commit message from CVS: Renamed a local var to better state what its purpose is.
-
- Nov 13, 2001
-
-
Thomas Vander Stichele authored
Original commit message from CVS: removed that bit
-