]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/log
glsdk/gstreamer0-10.git
18 years agogst/elements/: Protect last_message with lock.
Wim Taymans [Tue, 4 Oct 2005 18:46:09 +0000 (18:46 +0000)]
gst/elements/: Protect last_message with lock.

Original commit message from CVS:
* gst/elements/gstfakesink.c: (gst_fake_sink_get_property),
(gst_fake_sink_event), (gst_fake_sink_preroll),
(gst_fake_sink_render), (gst_fake_sink_change_state):
* gst/elements/gstfakesrc.c: (gst_fake_src_event_handler),
(gst_fake_src_get_property), (gst_fake_src_create),
(gst_fake_src_stop):
* gst/elements/gstidentity.c: (gst_identity_stop):
Protect last_message with lock.

18 years agogst/gstformat.h: Added precision in the comments for GST_FORMAT_DEFAULT
Edward Hervey [Tue, 4 Oct 2005 15:04:50 +0000 (15:04 +0000)]
gst/gstformat.h: Added precision in the comments for GST_FORMAT_DEFAULT

Original commit message from CVS:
* gst/gstformat.h:
Added precision in the comments for GST_FORMAT_DEFAULT

18 years agoupdate uninstalled script
Thomas Vander Stichele [Tue, 4 Oct 2005 13:19:47 +0000 (13:19 +0000)]
update uninstalled script

Original commit message from CVS:
update uninstalled script

18 years agoremove some files that are no longer there from spec file
Christian Schaller [Tue, 4 Oct 2005 12:02:34 +0000 (12:02 +0000)]
remove some files that are no longer there from spec file

Original commit message from CVS:
remove some files that are no longer there from spec file

18 years agotools/gst-launch.c: Don't try to run erroneous pipelines.
Tim-Philipp Müller [Tue, 4 Oct 2005 11:51:37 +0000 (11:51 +0000)]
tools/gst-launch.c: Don't try to run erroneous pipelines.

Original commit message from CVS:
* tools/gst-launch.c: (main):
Don't try to run erroneous pipelines.

18 years agogst/gsterror.c: Add another error string used in a few existing plugins.
Michael Smith [Tue, 4 Oct 2005 11:10:04 +0000 (11:10 +0000)]
gst/gsterror.c: Add another error string used in a few existing plugins.

Original commit message from CVS:
* gst/gsterror.c: (_gst_stream_errors_init):
Add another error string used in a few existing plugins.

* gst/gstplugin.c:
* gst/gstpluginfeature.c: (gst_plugin_feature_load):
* tools/gst-inspect.c: (print_element_info):
When a feature disappears from a plugin (and the feature exists in
the cached registry file), things went horribly wrong. This isn't a
complete fix, we should actually be removing the 'missing' features
from the features list when we load the actual plugin. That's not
yet implemented.

18 years agogst/gstbus.c: We don't need this header.
Julien Moutte [Tue, 4 Oct 2005 11:09:41 +0000 (11:09 +0000)]
gst/gstbus.c: We don't need this header.

Original commit message from CVS:
2005-10-04  Julien MOUTTE  <julien@moutte.net>

* gst/gstbus.c: We don't need this header.

18 years agoback to head
Thomas Vander Stichele [Mon, 3 Oct 2005 17:57:32 +0000 (17:57 +0000)]
back to head

Original commit message from CVS:
back to head

18 years agorelease time
Thomas Vander Stichele [Mon, 3 Oct 2005 17:47:21 +0000 (17:47 +0000)]
release time

Original commit message from CVS:
release time

18 years agogst/gstpad.c (gst_pad_activate_push): There is a race condition whereby calling a...
Andy Wingo [Sun, 2 Oct 2005 23:24:25 +0000 (23:24 +0000)]
gst/gstpad.c (gst_pad_activate_push): There is a race condition whereby calling a pad's activatepush() function can s...

Original commit message from CVS:
2005-10-03  Andy Wingo  <wingo@pobox.com>

* gst/gstpad.c (gst_pad_activate_push): There is a race condition
whereby calling a pad's activatepush() function can start a thread
that starts to push or pull before the pad gets the FLUSHING flag
unset. Hack around it by holding the stream lock until the flag is
set. Need to replace this with a proper solution. Together with
the ghost pad fixes, this fixes mp3 playing/tagreading.

18 years agochangelog
Andy Wingo [Sun, 2 Oct 2005 23:21:04 +0000 (23:21 +0000)]
changelog

Original commit message from CVS:
changelog

18 years agodocs/design/part-gstghostpad.txt: Add a note about activation of proxy pads outside...
Andy Wingo [Sun, 2 Oct 2005 23:20:26 +0000 (23:20 +0000)]
docs/design/part-gstghostpad.txt: Add a note about activation of proxy pads outside of ghost pads.

Original commit message from CVS:
2005-10-03  Andy Wingo  <wingo@pobox.com>

* docs/design/part-gstghostpad.txt: Add a note about activation of
proxy pads outside of ghost pads.

* gst/gstghostpad.c: Implement the ghost pad activation design.

18 years agogst/gstobject.h (GST_OBJECT_REFCOUNT_VALUE): Just use the int.
Andy Wingo [Sun, 2 Oct 2005 18:57:07 +0000 (18:57 +0000)]
gst/gstobject.h (GST_OBJECT_REFCOUNT_VALUE): Just use the int.

Original commit message from CVS:
2005-10-02  Andy Wingo  <wingo@pobox.com>

* gst/gstobject.h (GST_OBJECT_REFCOUNT_VALUE): Just use the int.
It is volatile, after all.

* docs/design/part-gstghostpad.txt: Flesh out activation with
ghost pads.

* gst/base/gstbasesrc.c (gst_base_src_init): Use
GST_DEBUG_FUNCPTR.

18 years agoconfigure.ac: Fix (unused) AM_CONDITIONAL tests.
Tim-Philipp Müller [Sun, 2 Oct 2005 18:30:27 +0000 (18:30 +0000)]
configure.ac: Fix (unused) AM_CONDITIONAL tests.

Original commit message from CVS:
* configure.ac:
Fix (unused) AM_CONDITIONAL tests.

18 years agogst/gstutils.c: Add assertion that makes sure src_val is >=0, just like gst_query_new...
Tim-Philipp Müller [Sat, 1 Oct 2005 17:11:07 +0000 (17:11 +0000)]
gst/gstutils.c: Add assertion that makes sure src_val is >=0, just like gst_query_new_convert() has. (#315895)

Original commit message from CVS:
Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
* gst/gstutils.c: (gst_pad_query_convert):
Add assertion that makes sure src_val is >=0, just like
gst_query_new_convert() has. (#315895)

18 years agogst/elements/gsttee.c: Let's not iterate pads we're not interested in, it avoids...
Edward Hervey [Fri, 30 Sep 2005 15:43:03 +0000 (15:43 +0000)]
gst/elements/gsttee.c: Let's not iterate pads we're not interested in, it avoids getting sky-high refcounts on sinkpad.

Original commit message from CVS:
* gst/elements/gsttee.c: (gst_tee_do_push), (gst_tee_handle_buffer):
Let's not iterate pads we're not interested in, it avoids getting
sky-high refcounts on sinkpad.

18 years agogst/gstelement.c: Small tweak, element in ASYNC remains ASYNC.
Wim Taymans [Fri, 30 Sep 2005 08:29:02 +0000 (08:29 +0000)]
gst/gstelement.c: Small tweak, element in ASYNC remains ASYNC.

Original commit message from CVS:
* gst/gstelement.c: (gst_element_set_state),
(gst_element_change_state):
Small tweak, element in ASYNC remains ASYNC.

18 years agogst/base/gstbasesink.c: Only error is an error.
Wim Taymans [Fri, 30 Sep 2005 08:00:12 +0000 (08:00 +0000)]
gst/base/gstbasesink.c: Only error is an error.

Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_change_state):
Only error is an error.

* gst/gstbin.c: (gst_bin_change_state):
Better debugging.

* gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_chain):
Also call pad_block in pad alloc.

* gst/gstutils.c: (gst_flow_get_name):
Better debugging.

18 years agogst/base/gstbasesrc.c: Fix documentation typos. Add some more debug info.
Tim-Philipp Müller [Thu, 29 Sep 2005 20:26:12 +0000 (20:26 +0000)]
gst/base/gstbasesrc.c: Fix documentation typos. Add some more debug info.

Original commit message from CVS:
* gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_get_range):
Fix documentation typos. Add some more debug info.

18 years agodisable refcount checks until we track the dangling ref
Thomas Vander Stichele [Thu, 29 Sep 2005 20:16:42 +0000 (20:16 +0000)]
disable refcount checks until we track the dangling ref

Original commit message from CVS:
disable refcount checks until we track the dangling ref

18 years agogst/gstplugin.c: Make some error messages more end-user friendly.
David Schleef [Thu, 29 Sep 2005 19:45:27 +0000 (19:45 +0000)]
gst/gstplugin.c: Make some error messages more end-user friendly.

Original commit message from CVS:
* gst/gstplugin.c: (gst_plugin_load_file): Make some error messages
more end-user friendly.
* tools/gst-inspect.c: (main): Check if command-line argument is
a file and attempt to load that file as a plugin.

18 years agocheck/: fix tests for the new warning
Thomas Vander Stichele [Thu, 29 Sep 2005 18:37:48 +0000 (18:37 +0000)]
check/: fix tests for the new warning

Original commit message from CVS:

* check/gst/gstbin.c:
* check/states/sinks.c:
fix tests for the new warning
* check/gst/gstpipeline.c:
add a test for pipeline and bus interaction
* gst/gstelement.c:
elements should be NULL if they get disposed; add a warning if not

18 years agogst/gstobject.c: for 2.6 refcounting, make debug log more correct by printing the...
Thomas Vander Stichele [Thu, 29 Sep 2005 18:35:38 +0000 (18:35 +0000)]
gst/gstobject.c: for 2.6 refcounting, make debug log more correct by printing the actual refcounts at the time of swa...

Original commit message from CVS:

* gst/gstobject.c:
for 2.6 refcounting, make debug log more correct by printing
the actual refcounts at the time of swap (Wim)

18 years agouse message type names
Thomas Vander Stichele [Thu, 29 Sep 2005 18:25:50 +0000 (18:25 +0000)]
use message type names

Original commit message from CVS:
use message type names

18 years agochangelog
Andy Wingo [Thu, 29 Sep 2005 16:06:18 +0000 (16:06 +0000)]
changelog

Original commit message from CVS:
changelog

18 years agogst/gstbus.c (gst_bus_remove_signal_watch): New function, removes signal watches...
Andy Wingo [Thu, 29 Sep 2005 16:04:31 +0000 (16:04 +0000)]
gst/gstbus.c (gst_bus_remove_signal_watch): New function, removes signal watches previously added via gst_bus_add_sig...

Original commit message from CVS:
2005-09-29  Andy Wingo  <wingo@pobox.com>

* gst/gstbus.c (gst_bus_remove_signal_watch): New function,
removes signal watches previously added via
gst_bus_add_signal_watch.
(gst_bus_add_signal_watch): Don't return the source id, just store
it on the bus if there wasn't an id already.

* gst/gstbus.h (GstBus): Add a couple new fields. API changes for
add_signal_watch and remove_signal_watch.

18 years agolibs/gst/controller/gstcontroller.c: Better if we actually iterate the list :)
Edward Hervey [Thu, 29 Sep 2005 15:39:22 +0000 (15:39 +0000)]
libs/gst/controller/gstcontroller.c: Better if we actually iterate the list :)

Original commit message from CVS:
* libs/gst/controller/gstcontroller.c: (gst_controller_new_list):
Better if we actually iterate the list :)

18 years agocheck/gst/gstbin.c: Change for new bus API.
Wim Taymans [Thu, 29 Sep 2005 13:07:37 +0000 (13:07 +0000)]
check/gst/gstbin.c: Change for new bus API.

Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Change for new bus API.

* check/gst/gstbus.c: (message_func_eos), (message_func_app),
(send_messages), (GST_START_TEST), (gstbus_suite):
Change for new bus signal API.

* gst/gstbus.c: (gst_bus_class_init), (gst_bus_have_pending),
(gst_bus_source_prepare), (gst_bus_source_check),
(gst_bus_create_watch), (gst_bus_add_watch_full),
(gst_bus_add_watch), (gst_bus_poll), (gst_bus_async_signal_func),
(gst_bus_sync_signal_handler), (gst_bus_add_signal_watch):
* gst/gstbus.h:
Remove support for multiple GSources operating on different
message types as it is too complex and unneeded when using
signals.
Added support for receiving signals from the bus.

18 years agorename filter-caps to caps property
Thomas Vander Stichele [Thu, 29 Sep 2005 12:37:38 +0000 (12:37 +0000)]
rename filter-caps to caps property

Original commit message from CVS:

* docs/libs/tmpl/gstdataprotocol.sgml:
* docs/manual/advanced-dataaccess.xml:
* gst/elements/gstcapsfilter.c:
* gst/gstutils.c:
rename filter-caps to caps property

18 years agogst/gstvalue.c: More robust fraction string parsing.
Tim-Philipp Müller [Thu, 29 Sep 2005 12:05:51 +0000 (12:05 +0000)]
gst/gstvalue.c: More robust fraction string parsing.

Original commit message from CVS:
* gst/gstvalue.c: (gst_value_deserialize_fraction):
More robust fraction string parsing.
* docs/pwg/appendix-porting.xml:
Mention gst_pad_use_explicit_caps() => gst_pad_use_fixed_caps()

18 years agogst/gstcaps.c: Thou shalt not free a structure and then continue using it in the...
Tim-Philipp Müller [Thu, 29 Sep 2005 10:56:57 +0000 (10:56 +0000)]
gst/gstcaps.c: Thou shalt not free a structure and then continue using it in the next loop iteration.

Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_do_simplify):
Thou shalt not free a structure and then continue using it
in the next loop iteration.
* check/gst/gstcaps.c: (check_fourcc_list), (test_simplify),
(gst_caps_suite):
Add test case for caps simplification.

18 years agoremove two removed functions
Thomas Vander Stichele [Thu, 29 Sep 2005 09:44:35 +0000 (09:44 +0000)]
remove two removed functions

Original commit message from CVS:
remove two removed functions

18 years agocheck/gst/gstbin.c: Oops.
Wim Taymans [Thu, 29 Sep 2005 09:42:15 +0000 (09:42 +0000)]
check/gst/gstbin.c: Oops.

Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Oops.

18 years agocheck/gst/gstbin.c: Add bus to bin.
Wim Taymans [Thu, 29 Sep 2005 09:39:36 +0000 (09:39 +0000)]
check/gst/gstbin.c: Add bus to bin.

Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Add bus to bin.

* gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
A bin does not have a bus, it gets the bus from the parent.

* gst/gstelement.c: (gst_element_requires_clock),
(gst_element_provides_clock), (gst_element_is_indexable),
(gst_element_is_locked_state), (gst_element_change_state),
(gst_element_set_bus_func):
Small cleanups.

* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_init), (gst_pipeline_provide_clock_func):
The pipeline provides a bus.

18 years agogst/gstmessage.c (gst_message_parse_state_changed): Use gst_structure_get_enum instea...
Johan Dahlin [Thu, 29 Sep 2005 02:32:37 +0000 (02:32 +0000)]
gst/gstmessage.c (gst_message_parse_state_changed): Use gst_structure_get_enum instead of gst_structure_get_int

Original commit message from CVS:
* gst/gstmessage.c (gst_message_parse_state_changed): Use
gst_structure_get_enum instead of gst_structure_get_int

* gst/gststructure.c (gst_structure_get_enum): Impl.

* gst/gststructure.h (gst_structure_get_enum): Add

* docs/gst/gstreamer-sections.txt: Ditto

18 years agogst/gstmessage.c (gst_message_new_state_changed): Use
Johan Dahlin [Thu, 29 Sep 2005 01:57:00 +0000 (01:57 +0000)]
gst/gstmessage.c (gst_message_new_state_changed): Use

Original commit message from CVS:
* gst/gstmessage.c (gst_message_new_state_changed): Use
GST_TYPE_STATE instead of G_TYPE_INT, mainly for language bindings
which does introspection.
Reviewed by Christian Schaller

18 years agofixed umlauts in ChangeLog again
Stefan Kost [Wed, 28 Sep 2005 18:14:13 +0000 (18:14 +0000)]
fixed umlauts in ChangeLog again

Original commit message from CVS:
fixed umlauts in ChangeLog again

18 years agogst/gstinfo.c: don't do dummy g_strdup()s
Stefan Kost [Wed, 28 Sep 2005 17:30:13 +0000 (17:30 +0000)]
gst/gstinfo.c: don't do dummy g_strdup()s

Original commit message from CVS:
* gst/gstinfo.c: (gst_debug_log_default):
don't do dummy g_strdup()s
* libs/gst/controller/gstcontroller.c:
(on_object_controlled_property_changed),
(gst_controlled_property_new), (gst_controller_new_valist),
(gst_controller_new_list),
(gst_controller_remove_properties_valist), (gst_controller_set),
(gst_controller_get), (gst_controller_sync_values),
(gst_controller_get_value_array), (_gst_controller_class_init),
(gst_controller_get_type):
* libs/gst/controller/gstcontroller.h:
* libs/gst/controller/gstinterpolation.c:
(gst_controlled_property_find_timed_value_node):
convert // to /**/ comments

18 years agogst/gstbus.*: Added async-message and sync-message signals to the bus.
Wim Taymans [Wed, 28 Sep 2005 16:43:20 +0000 (16:43 +0000)]
gst/gstbus.*: Added async-message and sync-message signals to the bus.

Original commit message from CVS:
* gst/gstbus.c: (marshal_VOID__MINIOBJECT), (gst_bus_class_init),
(gst_bus_post), (poll_func), (gst_bus_async_signal_func),
(gst_bus_sync_signal_handler):
* gst/gstbus.h:
Added async-message and sync-message signals to the bus.
Added helper BusFunc to emit signals for all posted messages.

* gst/gstmessage.c: (gst_message_type_get_name),
(gst_message_type_to_quark), (gst_message_get_type):
* gst/gstmessage.h:
Register quarks for message names.

18 years agoadded another constructor for language bindings
Stefan Kost [Wed, 28 Sep 2005 16:39:29 +0000 (16:39 +0000)]
added another constructor for language bindings

Original commit message from CVS:
* docs/libs/gstreamer-libs-sections.txt:
* libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
(gst_controller_new_list):
* libs/gst/controller/gstcontroller.h:
added another constructor for language bindings

18 years agocheck/gst/gstpipeline.c: add another check
Thomas Vander Stichele [Wed, 28 Sep 2005 15:45:21 +0000 (15:45 +0000)]
check/gst/gstpipeline.c: add another check

Original commit message from CVS:

* check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
add another check
* gst/gstbus.c:
add some doc
* gst/gstinfo.c: (_gst_debug_init):
slightly more readable color for refcount debugging

18 years agogst/gstbin.c: Small doc fixes. get_clock -> provide_clock.
Wim Taymans [Wed, 28 Sep 2005 13:41:27 +0000 (13:41 +0000)]
gst/gstbin.c: Small doc fixes. get_clock -> provide_clock.

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_provide_clock_func),
(add_to_queue), (clear_queue), (reset_degree), (update_degree),
(find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
Small doc fixes. get_clock -> provide_clock.

* gst/gstelement.c: (gst_element_class_init),
(gst_element_provides_clock), (gst_element_provide_clock),
(gst_element_get_clock), (gst_element_commit_state),
(gst_element_lost_state):
* gst/gstelement.h:
Make get/set_clock() symetric. Add provide_clock vmethod since
that is actually what this function does.

* gst/gstpipeline.c: (gst_pipeline_class_init),
(gst_pipeline_change_state), (gst_pipeline_provide_clock_func),
(gst_pipeline_get_clock):
get_clock -> provide_clock.

18 years agogst/base/gstbasesrc.c (gst_base_src_unlock): Comment a bit in lieu of real docs...
Andy Wingo [Wed, 28 Sep 2005 13:05:12 +0000 (13:05 +0000)]
gst/base/gstbasesrc.c (gst_base_src_unlock): Comment a bit in lieu of real docs...

Original commit message from CVS:
2005-09-28  Andy Wingo  <wingo@pobox.com>

* gst/base/gstbasesrc.c (gst_base_src_unlock): Comment a bit in
lieu of real docs...

* gst/elements/gstfdsrc.c: Cleaned up a bit.

18 years agogst/elements/: Make element details static.
Tim-Philipp Müller [Wed, 28 Sep 2005 12:52:51 +0000 (12:52 +0000)]
gst/elements/: Make element details static.

Original commit message from CVS:
* gst/elements/gstcapsfilter.c:
* gst/elements/gstfakesink.c:
* gst/elements/gstfakesrc.c:
* gst/elements/gstfdsink.c:
* gst/elements/gstfdsrc.c:
* gst/elements/gstfilesink.c:
* gst/elements/gstfilesrc.c:
* gst/elements/gstidentity.c:
* gst/elements/gsttee.c:
* gst/elements/gsttypefindelement.c:
Make element details static.

18 years agogst/gstbin.c: Some documentation updates.
Wim Taymans [Wed, 28 Sep 2005 11:03:58 +0000 (11:03 +0000)]
gst/gstbin.c: Some documentation updates.

Original commit message from CVS:
* gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
(update_outdegree), (find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state), (gst_bin_dispose):
Some documentation updates.
Clean up dispose handlers.

* gst/gstobject.c: (gst_object_ref), (gst_object_unref):
* gst/gstpad.c: (gst_pad_dispose):
Clean up dispose handler.

* gst/gstpipeline.c: (gst_pipeline_change_state):
Removed spurious UNLOCK.

18 years agoadded two new functions to the docs documents all undocumented GstXXXFlags completed...
Stefan Kost [Tue, 27 Sep 2005 20:40:35 +0000 (20:40 +0000)]
added two new functions to the docs documents all undocumented GstXXXFlags completed some incomplete docs

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasesrc.h:
* gst/gstelement.h:
* gst/gstevent.h:
* gst/gstobject.h:
* gst/gstpad.h:
* gst/gstpipeline.c:
* gst/gstpipeline.h:
* gst/gstutils.h:
* gst/gstxml.h:
added two new functions to the docs
documents all undocumented GstXXXFlags
completed some incomplete docs

18 years agogst/: remove now useless and leaky resurrection code in dispose
Thomas Vander Stichele [Tue, 27 Sep 2005 18:33:48 +0000 (18:33 +0000)]
gst/: remove now useless and leaky resurrection code in dispose

Original commit message from CVS:

* gst/gstbin.c: (gst_bin_dispose):
* gst/gstelement.c: (gst_element_dispose):
remove now useless and leaky resurrection code in dispose
* gst/base/gstbasesrc.c: (gst_base_src_init):
* gst/gstelementfactory.c: (gst_element_factory_create):
* gst/gstobject.c: (gst_object_set_parent):
add some debugging

18 years agodocs/design/part-TODO.txt: Update TODO.
Wim Taymans [Tue, 27 Sep 2005 17:00:13 +0000 (17:00 +0000)]
docs/design/part-TODO.txt: Update TODO.

Original commit message from CVS:
* docs/design/part-TODO.txt:
Update TODO.

* gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
(update_outdegree), (find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state):
* gst/gstelement.h:
Remove element variable, we keep element info in the iterator now.

18 years agolibs/gst/dataprotocol/dataprotocol.c: Fix error-checking return values.
Andy Wingo [Tue, 27 Sep 2005 16:30:26 +0000 (16:30 +0000)]
libs/gst/dataprotocol/dataprotocol.c: Fix error-checking return values.

Original commit message from CVS:
2005-09-27  Andy Wingo  <wingo@pobox.com>

* libs/gst/dataprotocol/dataprotocol.c: Fix error-checking return
values.

18 years agocheck/gst/gstbin.c: Enable check that works now.
Wim Taymans [Tue, 27 Sep 2005 16:16:39 +0000 (16:16 +0000)]
check/gst/gstbin.c: Enable check that works now.

Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST):
Enable check that works now.

* gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
(update_outdegree), (find_element), (gst_bin_sort_iterator_next),
(gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
(gst_bin_iterate_sorted), (gst_bin_element_set_state),
(gst_bin_change_state):
* gst/gstbin.h:
Redid the state change algorithm using a topological sort algo.
Handles all cases correctly.
Exposed iterator for state change order.

* gst/gstelement.h:
Temp storage for state changes. Need to get rid of this soon.

18 years agogst/: Leak fixes, the fold functions need to unref the passed object and _get_parent_...
Wim Taymans [Tue, 27 Sep 2005 15:37:40 +0000 (15:37 +0000)]
gst/: Leak fixes, the fold functions need to unref the passed object and _get_parent_*() returns ref to parent.

Original commit message from CVS:
* gst/elements/gsttee.c: (gst_tee_init), (gst_tee_do_push):
* gst/gstutils.c: (intersect_caps_func), (gst_pad_proxy_getcaps),
(link_fold_func), (gst_pad_proxy_setcaps):
Leak fixes, the fold functions need to unref the passed object and
_get_parent_*() returns ref to parent.

18 years agocheck/gst/gstbuffer.c: Plug leak in test case and fix 'make check-valgrind'
Tim-Philipp Müller [Tue, 27 Sep 2005 13:25:18 +0000 (13:25 +0000)]
check/gst/gstbuffer.c: Plug leak in test case and fix 'make check-valgrind'

Original commit message from CVS:
* check/gst/gstbuffer.c: (test_make_writable):
Plug leak in test case and fix 'make check-valgrind'

18 years agogst/gstbuffer.c: Set READONLY flag on subbuffers, so that gst_buffer_make_writable...
Tim-Philipp Müller [Tue, 27 Sep 2005 13:07:14 +0000 (13:07 +0000)]
gst/gstbuffer.c: Set READONLY flag on subbuffers, so that gst_buffer_make_writable() works correctly in all circumsta...

Original commit message from CVS:
* gst/gstbuffer.c: (gst_subbuffer_init):
Set READONLY flag on subbuffers, so that gst_buffer_make_writable()
works correctly in all circumstances (we could have just copied
the parent buffer's readonly flag, but conceptually it seems
cleaner to mark all subbuffers as read-only). (based on patch
by Alessandro Decina, #314710).
* check/gst/gstbuffer.c: (create_read_only_buffer),
(test_make_writable), (test_subbuffer_make_writable),
(gst_test_suite):
Add some tests for gst_buffer_make_writable().

18 years agogst/gstbin.c: use gst_object_has_ancestor().
Wim Taymans [Tue, 27 Sep 2005 09:57:20 +0000 (09:57 +0000)]
gst/gstbin.c: use gst_object_has_ancestor().

Original commit message from CVS:
* gst/gstbin.c: (bin_element_is_semi_sink), (gst_bin_change_state):
use gst_object_has_ancestor().

* gst/gstobject.c: (gst_object_has_ancestor):
* gst/gstobject.h:
gst_object_has_ancestor() copied from gstbin.c as it is a
usefull function.

* tests/instantiate/create.c: (create_all_elements):
* tests/lat.c: (handoff_src), (handoff_sink):
* tests/sched/runxml.c: (main):
* tests/seeking/seeking1.c: (main):
* tests/threadstate/threadstate2.c: (bus_handler), (timeout_func),
(main):
Fix compilation of some tests.

18 years agogst/gsterror.h: Remove comment. GST_TYPE_G_ERROR is here to stay,
Tim-Philipp Müller [Tue, 27 Sep 2005 09:29:04 +0000 (09:29 +0000)]
gst/gsterror.h: Remove comment. GST_TYPE_G_ERROR is here to stay,

Original commit message from CVS:
* gst/gsterror.h:
Remove comment. GST_TYPE_G_ERROR is here to stay,
G_TYPE_ERROR has been WONTFIX'ed by the GLib folks
(#316961, #300610).

18 years agocheck/gst/gstbin.c: Added check that shows error in state change order.
Wim Taymans [Mon, 26 Sep 2005 18:22:07 +0000 (18:22 +0000)]
check/gst/gstbin.c: Added check that shows error in state change order.

Original commit message from CVS:
* check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
Added check that shows error in state change order.

18 years agogst/gstbin.c: Make state change function use 3 queues again, we were adding elements...
Wim Taymans [Mon, 26 Sep 2005 17:46:27 +0000 (17:46 +0000)]
gst/gstbin.c: Make state change function use 3 queues again, we were adding elements in the wrong order.

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_change_state):
Make state change function use 3 queues again, we were
adding elements in the wrong order.

* gst/gstghostpad.c: (gst_ghost_pad_do_unlink):
Some debug info,

* gst/gstpad.c: (gst_pad_dispose):
Added some debug info first.

18 years agodocs/design/: Replace all _pull_region() with _pull_range()
Tim-Philipp Müller [Mon, 26 Sep 2005 17:40:39 +0000 (17:40 +0000)]
docs/design/: Replace all _pull_region() with _pull_range()

Original commit message from CVS:
* docs/design/draft-push-pull.txt:
* docs/design/part-events.txt:
* docs/design/part-overview.txt:
* docs/design/part-scheduling.txt:
Replace all _pull_region() with _pull_range()

18 years agotry the fourth
Andy Wingo [Mon, 26 Sep 2005 16:19:27 +0000 (16:19 +0000)]
try the fourth

Original commit message from CVS:
try the fourth

18 years agofoo
Andy Wingo [Mon, 26 Sep 2005 16:12:07 +0000 (16:12 +0000)]
foo

Original commit message from CVS:
foo

18 years agogst/gstvalue.c (_gst_value_initialize): Better fakeout.
Andy Wingo [Mon, 26 Sep 2005 16:07:54 +0000 (16:07 +0000)]
gst/gstvalue.c (_gst_value_initialize): Better fakeout.

Original commit message from CVS:
2005-09-26  Andy Wingo  <wingo@pobox.com>

* gst/gstvalue.c (_gst_value_initialize): Better fakeout.

18 years agocheck/gst-libs/controller.c: Update for controller api change.
Andy Wingo [Mon, 26 Sep 2005 15:49:23 +0000 (15:49 +0000)]
check/gst-libs/controller.c: Update for controller api change.

Original commit message from CVS:
2005-09-26  Andy Wingo  <wingo@pobox.com>

* check/gst-libs/controller.c: Update for controller api change.

18 years agoRemove memchunk benchmark stuff, this is taken over by GLib bug 118439.
Andy Wingo [Mon, 26 Sep 2005 15:43:30 +0000 (15:43 +0000)]
Remove memchunk benchmark stuff, this is taken over by GLib bug 118439.

Original commit message from CVS:
2005-09-26  Andy Wingo  <wingo@pobox.com>

* configure.ac:
* tests/Makefile.am:
* tests/memchunk: Remove memchunk benchmark stuff, this is taken
over by GLib bug 118439.

* gst/base/gstbasesink.c (gst_base_sink_wait): Factor out the wait
routines to a function.

* docs/libs/gstreamer-libs-sections.txt: I am a good person today.

* libs/gst/controller/gsthelper.c:
* libs/gst/controller/gstcontroller.h (gst_controller_sync_values)
(gst_object_sync_values): Renamed from sink_values. Ugh.

* libs/gst/controller/gsthelper.c: Update for __gst_controller_key.

* libs/gst/controller/gstcontroller.c (__gst_controller_key):
Renamed from controller_key, as it is exported.

* gst/gstvalue.c (_gst_value_initialize): Fake out the compiler.

18 years agoremove queryutils headers after moving the two used functions to gstquery. also...
Thomas Vander Stichele [Mon, 26 Sep 2005 15:03:43 +0000 (15:03 +0000)]
remove queryutils headers after moving the two used functions to gstquery.  also fixes build problem for gstsiddec

Original commit message from CVS:
remove queryutils headers after moving the two used functions
to gstquery.  also fixes build problem for gstsiddec

18 years agoCorrect syntax for debug option in gst-launch manpage
Michael Smith [Mon, 26 Sep 2005 13:40:21 +0000 (13:40 +0000)]
Correct syntax for debug option in gst-launch manpage

Original commit message from CVS:
Correct syntax for debug option in gst-launch manpage

18 years agogst/base/gstbasesrc.c: Some more debugging info.
Wim Taymans [Mon, 26 Sep 2005 11:21:42 +0000 (11:21 +0000)]
gst/base/gstbasesrc.c: Some more debugging info.

Original commit message from CVS:
* gst/base/gstbasesrc.c: (gst_base_src_get_range),
(gst_base_src_is_seekable), (gst_base_src_change_state):
Some more debugging info.

18 years agoadded more docs
Stefan Kost [Sun, 25 Sep 2005 18:34:49 +0000 (18:34 +0000)]
added more docs

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/base/gstbasetransform.h:
* gst/gstindex.h:
added more docs

18 years agoinlined the last two docs files removed the tmpl directory from cvs (no more conflict...
Stefan Kost [Sun, 25 Sep 2005 12:11:39 +0000 (12:11 +0000)]
inlined the last two docs files removed the tmpl directory from cvs (no more conflicts here!)

Original commit message from CVS:
* docs/gst/.cvsignore:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstpipeline.sgml:
* docs/gst/tmpl/gstplugin.sgml:
* gst/gstpipeline.c:
* gst/gstplugin.c:
* gst/gstplugin.h:
inlined the last two docs files
removed the tmpl directory from cvs (no more conflicts here!)

18 years agoinlined two more docs factored gstpadtemplate out of gstpad
Stefan Kost [Sun, 25 Sep 2005 11:19:22 +0000 (11:19 +0000)]
inlined two more docs factored gstpadtemplate out of gstpad

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstpad.sgml:
* docs/gst/tmpl/gstpadtemplate.sgml:
* gst/Makefile.am:
* gst/gstpad.c: (gst_pad_class_init), (gst_pad_dispose),
(gst_pad_finalize), (gst_pad_set_pad_template):
* gst/gstpad.h:
* gst/gstpadtemplate.c: (gst_pad_template_get_type),
(gst_pad_template_class_init), (gst_pad_template_init),
(gst_pad_template_dispose), (name_is_valid),
(gst_static_pad_template_get), (gst_pad_template_new),
(gst_static_pad_template_get_caps), (gst_pad_template_get_caps),
(gst_pad_template_pad_created):
* gst/gstpadtemplate.h:
inlined two more docs
factored gstpadtemplate out of gstpad

18 years agocheck/gst/gstbin.c: Fix test case: we can't rely on a fixed state change order when...
Tim-Philipp Müller [Sat, 24 Sep 2005 14:35:07 +0000 (14:35 +0000)]
check/gst/gstbin.c: Fix test case: we can't rely on a fixed state change order when going from READY => PAUSED becaus...

Original commit message from CVS:
* check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
(test_children_state_change_order_semi_sink):
Fix test case: we can't rely on a fixed state change order when
going from READY => PAUSED because the sink might commit its
new state first when the first buffer created by the source
reaches the sink before the source has finished its change state.
(Test case still fails at times, see #316856, comment 5 onwards)

18 years agoVarious documentation updates.
Wim Taymans [Sat, 24 Sep 2005 14:14:03 +0000 (14:14 +0000)]
Various documentation updates.

Original commit message from CVS:
* docs/design/part-events.txt:
* docs/design/part-gstbus.txt:
* docs/design/part-gstpipeline.txt:
* docs/design/part-messages.txt:
* docs/design/part-overview.txt:
* docs/design/part-segments.txt:
* gst/gstbin.c:
* gst/gstbuffer.c:
* gst/gstclock.c:
* gst/gstelement.c:
* gst/gstevent.c:
* gst/gstfilter.c:
* gst/gstiterator.c:
Various documentation updates.

18 years agogst/gstclock.h: Well, that's embarassing. Luckily we weren't using
Thomas Vander Stichele [Sat, 24 Sep 2005 11:41:01 +0000 (11:41 +0000)]
gst/gstclock.h: Well, that's embarassing.  Luckily we weren't using

Original commit message from CVS:
* gst/gstclock.h:
Well, that's embarassing.  Luckily we weren't using
GST_CLOCK_DIFF anywhere.

18 years agocommon/gtk-doc.mak: don't fail on building XML, FC4 slave shows a bunch of doc missin...
Thomas Vander Stichele [Fri, 23 Sep 2005 18:08:59 +0000 (18:08 +0000)]
common/gtk-doc.mak: don't fail on building XML, FC4 slave shows a bunch of doc missing bits that I don't get

Original commit message from CVS:

* common/gtk-doc.mak:
don't fail on building XML, FC4 slave shows a bunch of doc
missing bits that I don't get
* gst/gstpad.c:
* gst/gstpipeline.c:
* gst/gststructure.c:
some doc updates

18 years agoAdd blurb about how the bus goes into flushing mode and drops all messages when its...
Tim-Philipp Müller [Fri, 23 Sep 2005 18:02:18 +0000 (18:02 +0000)]
Add blurb about how the bus goes into flushing mode and drops all messages when its bin goes from READY into NULL state.

Original commit message from CVS:
* docs/design/part-gstbin.txt:
* docs/design/part-gstbus.txt:
* gst/gstbus.c:
Add blurb about how the bus goes into flushing mode and
drops all messages when its bin goes from READY into NULL
state.

18 years agoadd a method to get a GstClockTime out of a structure
Thomas Vander Stichele [Fri, 23 Sep 2005 17:46:06 +0000 (17:46 +0000)]
add a method to get a GstClockTime out of a structure

Original commit message from CVS:

* docs/gst/gstreamer-sections.txt:
* gst/gststructure.c: (gst_structure_get_clock_time):
* gst/gststructure.h:
add a method to get a GstClockTime out of a structure

18 years agocheck/gst/gstbin.c: Added test to check state change order in bins (can still be...
Tim-Philipp Müller [Fri, 23 Sep 2005 17:17:42 +0000 (17:17 +0000)]
check/gst/gstbin.c: Added test to check state change order in bins (can still be made to fail here under heavy disk l...

Original commit message from CVS:
* check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
(test_children_state_change_order_semi_sink), (gst_bin_suite):
Added test to check state change order in bins (can still be made
to fail here under heavy disk load; bails out with 'Push on pad
fakesink:sink0, but it was not activated in push mode').
* gst/gstbin.c: (gst_bin_class_init), (gst_bin_change_state):
Fix state change order when there is only a semi sink (#316856)
* gst/gstbus.c: (gst_bus_class_init):
Use _class_peek_parent(), not _class_ref(); fix docs to say
'default main context' instead of 'mainloop' where that is
what's meant.
* gst/gstelement.c: (gst_element_commit_state),
(gst_element_set_state):
Fix typos in debug messages

18 years agofix docs
Thomas Vander Stichele [Fri, 23 Sep 2005 16:35:43 +0000 (16:35 +0000)]
fix docs

Original commit message from CVS:
fix docs

18 years agodon't break docs build
Thomas Vander Stichele [Fri, 23 Sep 2005 15:48:14 +0000 (15:48 +0000)]
don't break docs build

Original commit message from CVS:
don't break docs build

18 years agovarious doc updates
Thomas Vander Stichele [Fri, 23 Sep 2005 15:36:28 +0000 (15:36 +0000)]
various doc updates

Original commit message from CVS:

* docs/README:
* gst/gstpad.c: (gst_pad_class_init), (gst_pad_chain):
* gst/gstpluginfeature.c:
* gst/gstutils.c:
various doc updates
* gst/base/gstbasesink.c: (gst_base_sink_handle_object):
change an assert into an error until it gets fixed properly

18 years agoinlined 3 more biiiig doc files and added some missing docs on the fly
Stefan Kost [Fri, 23 Sep 2005 14:31:21 +0000 (14:31 +0000)]
inlined 3 more biiiig doc files and added some missing docs on the fly

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstelement.sgml:
* docs/gst/tmpl/gstinfo.sgml:
* docs/gst/tmpl/gstobject.sgml:
* gst/gstelement.c:
* gst/gstelement.h:
* gst/gstinfo.c:
* gst/gstinfo.h:
* gst/gstobject.c: (gst_object_class_init):
* gst/gstobject.h:
inlined 3 more biiiig doc files and added some missing docs on the fly

18 years agoput back source in registry. add checks for find_plugin.
Thomas Vander Stichele [Fri, 23 Sep 2005 11:41:30 +0000 (11:41 +0000)]
put back source in registry.  add checks for find_plugin.

Original commit message from CVS:

* check/gst/.cvsignore:
* check/gst/gstplugin.c: (GST_START_TEST), (gst_plugin_suite):
* gst/gstregistryxml.c: (load_plugin),
(gst_registry_xml_save_plugin):
put back source in registry.  add checks for find_plugin.
* testsuite/states/bin.c: (assert_state), (empty_bin),
(test_adding_one_element), (main):
* testsuite/states/locked.c: (main):
some compile/run fixes

18 years agofix leak in the test itself
Thomas Vander Stichele [Thu, 22 Sep 2005 20:02:11 +0000 (20:02 +0000)]
fix leak in the test itself

Original commit message from CVS:
fix leak in the test itself

18 years agogst/base/gstbasesink.c: Prepare for more accurate position reporting and query handling.
Wim Taymans [Thu, 22 Sep 2005 18:07:22 +0000 (18:07 +0000)]
gst/base/gstbasesink.c: Prepare for more accurate position reporting and query handling.

Original commit message from CVS:
* gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_send_event), (gst_base_sink_peer_query),
(gst_base_sink_query):
Prepare for more accurate position reporting and query
handling.

* gst/gstelement.c: (gst_element_send_event),
(gst_element_set_state):
Add some comment.

18 years agogst/gstquery.*: More documentation.
Wim Taymans [Thu, 22 Sep 2005 17:40:42 +0000 (17:40 +0000)]
gst/gstquery.*: More documentation.

Original commit message from CVS:
* gst/gstquery.c: (gst_query_new_segment), (gst_query_set_segment),
(gst_query_parse_segment):
* gst/gstquery.h:
More documentation.
Add segment query for future use.

18 years agogst/gstbin.c: Some more debug info.
Wim Taymans [Thu, 22 Sep 2005 16:51:27 +0000 (16:51 +0000)]
gst/gstbin.c: Some more debug info.

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_add_func):
Some more debug info.

* gst/gstelement.c: (gst_element_send_event):
Simplify send_event

* gst/gstelement.h:
Don't know how flags got broken.

* gst/gstquery.h:
Added new query.

18 years agocheck/gst/gstvalue.c: Add simplistic test suite for GST_TYPE_DATE serialisation and...
Tim-Philipp Müller [Thu, 22 Sep 2005 15:38:12 +0000 (15:38 +0000)]
check/gst/gstvalue.c: Add simplistic test suite for GST_TYPE_DATE serialisation and deserialisation.

Original commit message from CVS:
* check/gst/gstvalue.c: (test_date), (gst_value_suite):
Add simplistic test suite for GST_TYPE_DATE serialisation and
deserialisation.

18 years agoAdd GST_TYPE_DATE, a boxed type that wraps GDate, and the usual bunch of utility...
Tim-Philipp Müller [Thu, 22 Sep 2005 15:08:02 +0000 (15:08 +0000)]
Add GST_TYPE_DATE, a boxed type that wraps GDate, and the usual bunch of utility functions along with a hack that che...

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gststructure.c: (gst_structure_set_valist),
(gst_structure_get_date):
* gst/gststructure.h:
* gst/gstvalue.c: (gst_value_set_date), (gst_value_get_date),
(gst_date_copy), (gst_value_compare_date),
(gst_value_serialize_date), (gst_value_deserialize_date),
(gst_value_transform_date_string),
(gst_value_transform_string_date), (_gst_value_initialize):
* gst/gstvalue.h:
Add GST_TYPE_DATE, a boxed type that wraps GDate, and the usual
bunch of utility functions along with a hack that checks that
developers don't accidentally use G_TYPE_DATE where GST_TYPE_DATE
is required. Part of the grand scheme in #170777.

18 years agogst/gstconfig.h.in: Psych out gtk-doc.
Andy Wingo [Thu, 22 Sep 2005 12:05:05 +0000 (12:05 +0000)]
gst/gstconfig.h.in: Psych out gtk-doc.

Original commit message from CVS:
2005-09-22  Andy Wingo  <wingo@pobox.com>

* gst/gstconfig.h.in: Psych out gtk-doc.

* docs/gst/gstreamer-sections.txt: Add GST_HAVE_GLIB_2_8.

* check/Makefile.am (check_PROGRAMS): Add gstplugin to the tests.

* tools/gst-inspect.c (print_element_list): Plug some
inconsequential leaks.

* gst/gstregistry.c (gst_registry_get_default): Doc.

* gst/gsttypefindfactory.c (gst_type_find_factory_call_function):
* gst/gstelementfactory.c (gst_element_factory_create):
* gst/gstindexfactory.c (gst_index_factory_create): Update for
refcount changes.

* gst/gstpluginfeature.c (gst_plugin_feature_list_free): Doc.
(gst_plugin_feature_load): Doc, don't eat refs.

* gst/gstplugin.c (gst_plugin_load): Doc, don't eat refs.
(gst_plugin_list_free): Doc.
(gst_plugin_load_file): Doc updates.

18 years agogst/gstbuffer.c (gst_buffer_get_caps): Like all our _get accessors returning refcount...
Andy Wingo [Thu, 22 Sep 2005 09:30:41 +0000 (09:30 +0000)]
gst/gstbuffer.c (gst_buffer_get_caps): Like all our _get accessors returning refcounted objects, return a ref.

Original commit message from CVS:
2005-09-22  Andy Wingo  <wingo@pobox.com>

* gst/gstbuffer.c (gst_buffer_get_caps): Like all our _get
accessors returning refcounted objects, return a ref.

* check/gst/gstbuffer.c (GST_START_TEST): Use refcount-idempotent
accessor for caps. IDEMPOTENCE. Oh yes.

18 years agogst/gstinfo.c: Add mutex to serialise access to the hash table with the function...
Tim-Philipp Müller [Wed, 21 Sep 2005 21:39:06 +0000 (21:39 +0000)]
gst/gstinfo.c: Add mutex to serialise access to the hash table with the function pointer => function name string mapp...

Original commit message from CVS:
Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
* gst/gstinfo.c: (_gst_debug_nameof_funcptr),
(_gst_debug_register_funcptr):
Add mutex to serialise access to the hash table with
the function pointer => function name string mapping;
make that hash table static scope (#316809).
* gst/registries/.cvsignore:
Remove left-over file.

18 years agodocs/pwg/appendix-porting.xml: And something about newsegment events and caps-on...
Tim-Philipp Müller [Wed, 21 Sep 2005 15:55:12 +0000 (15:55 +0000)]
docs/pwg/appendix-porting.xml: And something about newsegment events and caps-on-buffers to the porting guide (feel f...

Original commit message from CVS:
* docs/pwg/appendix-porting.xml:
And something about newsegment events and caps-on-buffers to
the porting guide (feel free to improve).

18 years agoTest that removing probes from within the probe functions works.
Andy Wingo [Wed, 21 Sep 2005 13:24:33 +0000 (13:24 +0000)]
Test that removing probes from within the probe functions works.

Original commit message from CVS:
(test_buffer_probe_once): Test that removing probes from within
the probe functions works.

18 years agocheck/gst/gstutils.c (test_buffer_probe_n_times): Add tests for data and event probes...
Andy Wingo [Wed, 21 Sep 2005 13:11:22 +0000 (13:11 +0000)]
check/gst/gstutils.c (test_buffer_probe_n_times): Add tests for data and event probes on the same pad.

Original commit message from CVS:
2005-09-21  Andy Wingo  <wingo@pobox.com>

* check/gst/gstutils.c (test_buffer_probe_n_times): Add tests for
data and event probes on the same pad.

18 years agocheck/gst/gstutils.c: New file.
Andy Wingo [Wed, 21 Sep 2005 12:21:10 +0000 (12:21 +0000)]
check/gst/gstutils.c: New file.

Original commit message from CVS:
2005-09-21  Andy Wingo  <wingo@pobox.com>

* check/gst/gstutils.c: New file.
(test_buffer_probe_n_times): A simple buffer probe test. More to
come, foolios.

* gst/gstutils.c (gst_pad_add_buffer_probe): Connect to
have-data::buffer, not have-data.
(gst_pad_add_event_probe): Likewise for have-data::event.
(gst_pad_add_data_probe): More docs. The part about 'resolving the
peer' isn't quite right yet though.
(gst_pad_remove_buffer_probe, gst_pad_remove_event_probe)
(gst_pad_remove_data_probe): Change to take the guint handler_id
as their arg, not the function+data, which is more glib-like.

* gst/gstpad.c (gst_pad_emit_have_data_signal): Add a detail to
the signal emission to indicate if the data is a buffer or an
event.
(gst_pad_get_type): Initialize buffer and event quarks.
(gst_pad_class_init): have-data is now a detailed signal, yes it
is.

18 years agogst/: Don't put functional code in g_return_if_fail() or g_return_val_if_fail() state...
Tim-Philipp Müller [Wed, 21 Sep 2005 11:52:04 +0000 (11:52 +0000)]
gst/: Don't put functional code in g_return_if_fail() or g_return_val_if_fail() statements, otherwise things will bre...

Original commit message from CVS:
* gst/base/gstbasetransform.c: (gst_base_transform_transform_size):
* gst/gstutils.c: (gst_util_set_value_from_string),
(gst_util_set_object_arg):
Don't put functional code in g_return_if_fail() or
g_return_val_if_fail() statements, otherwise things will
break when G_DISABLE_CHECKS is defined during compilation.

18 years agoinlied another one and added some obvious docs
Stefan Kost [Wed, 21 Sep 2005 09:48:40 +0000 (09:48 +0000)]
inlied another one and added  some obvious docs

Original commit message from CVS:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstvalue.sgml:
* gst/gstvalue.c:
* gst/gstvalue.h:
inlied another one and added  some obvious docs

18 years agogst/elements/gstfdsrc.*: Properly implement fdsrc. Removed signal and timeout, better...
Wim Taymans [Wed, 21 Sep 2005 09:13:32 +0000 (09:13 +0000)]
gst/elements/gstfdsrc.*: Properly implement fdsrc. Removed signal and timeout, better implemented somewhere else.

Original commit message from CVS:
* gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
(gst_fdsrc_init), (gst_fdsrc_start), (gst_fdsrc_stop),
(gst_fdsrc_unlock), (gst_fdsrc_set_property),
(gst_fdsrc_get_property), (gst_fdsrc_create):
* gst/elements/gstfdsrc.h:
Properly implement fdsrc. Removed signal and timeout,
better implemented somewhere else.

18 years agoinlined more docs
Stefan Kost [Wed, 21 Sep 2005 08:58:48 +0000 (08:58 +0000)]
inlined more docs

Original commit message from CVS:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstimplementsinterface.sgml:
* gst/gstinterface.c:
inlined more docs

18 years agodocs/gst/: remove obsolete doc file
Stefan Kost [Wed, 21 Sep 2005 08:40:55 +0000 (08:40 +0000)]
docs/gst/: remove obsolete doc file

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* docs/gst/tmpl/.cvsignore:
* docs/gst/tmpl/gstenumtypes.sgml:
remove obsolete doc file

18 years agogst/gstelementfactory.c: Drink a little beer, fix a little leak.
David Schleef [Wed, 21 Sep 2005 07:37:02 +0000 (07:37 +0000)]
gst/gstelementfactory.c: Drink a little beer, fix a little leak.

Original commit message from CVS:
* gst/gstelementfactory.c: (gst_element_factory_make): Drink a
little beer, fix a little leak.