platform/upstream/gstreamer.git
16 years agolibs/gst/base/gstbasesink.c: Latency query is allowed after we are prerolled. Introdu...
Wim Taymans [Fri, 14 Sep 2007 15:52:27 +0000 (15:52 +0000)]
libs/gst/base/gstbasesink.c: Latency query is allowed after we are prerolled. Introduce a new flag for this and stop ...

Original commit message from CVS:
* libs/gst/base/gstbasesink.c: (gst_base_sink_init),
(gst_base_sink_preroll_queue_flush), (gst_base_sink_commit_state),
(gst_base_sink_wait_preroll), (gst_base_sink_needs_preroll),
(gst_base_sink_set_flushing), (gst_base_sink_query),
(gst_base_sink_change_state):
Latency query is allowed after we are prerolled. Introduce a new flag
for this and stop abusing other variables.

16 years agolibs/gst/base/gstbasesrc.c: Push OOB events downstream when we get them in send_event...
Wim Taymans [Thu, 13 Sep 2007 23:53:48 +0000 (23:53 +0000)]
libs/gst/base/gstbasesrc.c: Push OOB events downstream when we get them in send_event. This allows the application to...

Original commit message from CVS:
* libs/gst/base/gstbasesrc.c: (gst_base_src_send_event):
Push OOB events downstream when we get them in send_event. This allows
the application to insert events in the pipeline.
Add some more comments.

16 years agogst/: Move latency query from GstPipeline to GstBin so that we can also use it when...
Wim Taymans [Thu, 13 Sep 2007 21:27:33 +0000 (21:27 +0000)]
gst/: Move latency query from GstPipeline to GstBin so that we can also use it when async-handling is enabled on bins.

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_class_init), (clear_queue),
(do_bin_latency), (gst_bin_change_state_func):
* gst/gstpipeline.c: (gst_pipeline_change_state):
Move latency query from GstPipeline to GstBin so that we can also
use it when async-handling is enabled on bins.

16 years agolibs/gst/base/gstbasesrc.c: Update docs.
Wim Taymans [Thu, 13 Sep 2007 21:19:08 +0000 (21:19 +0000)]
libs/gst/base/gstbasesrc.c: Update docs.

Original commit message from CVS:
* libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
(gst_base_src_do_sync), (gst_base_src_change_state):
Update docs.
Clean up the timestamping and syncing code for pseudo live sources.

16 years agodocs/manual/appendix-checklist.xml: Mention less -R switch in the section about debug...
Steve Fink [Thu, 13 Sep 2007 19:27:53 +0000 (19:27 +0000)]
docs/manual/appendix-checklist.xml: Mention less -R switch in the section about debug output (#474055).

Original commit message from CVS:
Patch by: Steve Fink  <sphink gmail com>
* docs/manual/appendix-checklist.xml:
Mention less -R switch in the section about debug output (#474055).

16 years agoplugins/elements/gstqueue.c: Queue can latency to the pipeline up to the configured...
Wim Taymans [Thu, 13 Sep 2007 17:15:38 +0000 (17:15 +0000)]
plugins/elements/gstqueue.c: Queue can latency to the pipeline up to the configured max size in time.

Original commit message from CVS:
* plugins/elements/gstqueue.c: (gst_queue_handle_src_query):
Queue can latency to the pipeline up to the configured max size in time.
Report this fact in the latency query.

16 years agolibs/gst/controller/: Use gst_guint64_to_gdouble() when converting from a uint64 or
Sebastien Moutte [Thu, 13 Sep 2007 09:08:23 +0000 (09:08 +0000)]
libs/gst/controller/: Use gst_guint64_to_gdouble() when converting from a uint64 or

Original commit message from CVS:
Patch by: Sebastien Moutte <sebastien at moutte dot net>
* libs/gst/controller/gstinterpolation.c:
* libs/gst/controller/gstlfocontrolsource.c:
Use gst_guint64_to_gdouble() when converting from a uint64 or
GstClockTime to double to fix the build on win32. Fixes #474371.

16 years agogst/gstbuffer.c: Implement poisoning for GstBuffer if --enable-poisoning is specified.
Sebastian Dröge [Thu, 13 Sep 2007 08:42:55 +0000 (08:42 +0000)]
gst/gstbuffer.c: Implement poisoning for GstBuffer if --enable-poisoning is specified.

Original commit message from CVS:
* gst/gstbuffer.c: (gst_buffer_finalize):
Implement poisoning for GstBuffer if --enable-poisoning is specified.
When finalizing a buffer the complete struct is filled with 0xff,
thus making a use of the buffer after the final unref impossible.

16 years agotests/check/libs/controller.c: Use fail_unless_equals_int(a, b) instead of fail_unles...
Sebastian Dröge [Thu, 13 Sep 2007 08:36:37 +0000 (08:36 +0000)]
tests/check/libs/controller.c: Use fail_unless_equals_int(a, b) instead of fail_unless_equals (a == b) to get better ...

Original commit message from CVS:
* tests/check/libs/controller.c: (GST_START_TEST):
Use fail_unless_equals_int(a, b) instead of
fail_unless_equals (a == b) to get better output on failures.

16 years agotests/check/gst/gsturi.c: Also check for the other file URI variant on win32.
Tim-Philipp Müller [Wed, 12 Sep 2007 16:35:48 +0000 (16:35 +0000)]
tests/check/gst/gsturi.c: Also check for the other file URI variant on win32.

Original commit message from CVS:
* tests/check/gst/gsturi.c:
Also check for the other file URI variant on win32.

16 years agogst/gsturi.c: If there's no hostname, we want to return 'c:/foo/bar.txt' and not...
Tim-Philipp Müller [Wed, 12 Sep 2007 12:36:51 +0000 (12:36 +0000)]
gst/gsturi.c: If there's no hostname, we want to return 'c:/foo/bar.txt' and not '/c:/foo/bar.txt' on Windows. Fixes ...

Original commit message from CVS:
* gst/gsturi.c: (gst_uri_get_location):
If there's no hostname, we want to return 'c:/foo/bar.txt'
and not '/c:/foo/bar.txt' on Windows. Fixes #469402.
* tests/check/gst/gsturi.c:
Unit test for the above and a few more things.

16 years agodocs/design/part-live-source.txt: Add docs on how live sources should timestamp.
Wim Taymans [Tue, 11 Sep 2007 23:27:42 +0000 (23:27 +0000)]
docs/design/part-live-source.txt: Add docs on how live sources should timestamp.

Original commit message from CVS:
* docs/design/part-live-source.txt:
Add docs on how live sources should timestamp.
* libs/gst/base/gstbasesrc.c: (gst_base_src_do_sync):
Add some more debug info.
For subclasses that are live and like to sync, add aditional startup
latency to sync time and timestamps so that we timstamp according to the
design doc.

16 years agogst/gstbuffer.c: Also do a g_type_class_ref() for the subbuffer type in the init...
Tim-Philipp Müller [Tue, 11 Sep 2007 18:59:09 +0000 (18:59 +0000)]
gst/gstbuffer.c: Also do a g_type_class_ref() for the subbuffer type in the init function.

Original commit message from CVS:
* gst/gstbuffer.c:
Also do a g_type_class_ref() for the subbuffer type in
the init function.

16 years agoAdd function to perform a query on the peer of a pad.
Wim Taymans [Tue, 11 Sep 2007 15:55:50 +0000 (15:55 +0000)]
Add function to perform a query on the peer of a pad.

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gstpad.c: (gst_pad_peer_query):
* gst/gstpad.h:
Add function to perform a query on the peer of a pad.
API: gst_pad_peer_query()

16 years agotests/check/gst/gstsystemclock.c: Cleanup the test a little (use gst-logging and...
Stefan Kost [Tue, 11 Sep 2007 13:43:53 +0000 (13:43 +0000)]
tests/check/gst/gstsystemclock.c: Cleanup the test a little (use gst-logging and not g_message). Improve test to chec...

Original commit message from CVS:
* tests/check/gst/gstsystemclock.c:
Cleanup the test a little (use gst-logging and not g_message). Improve
test to check if a wait reached the target.

16 years agodocs/libs/gstreamer-libs-sections.txt: Add new API to docs and fix the build.
Tim-Philipp Müller [Tue, 11 Sep 2007 10:33:14 +0000 (10:33 +0000)]
docs/libs/gstreamer-libs-sections.txt: Add new API to docs and fix the build.

Original commit message from CVS:
* docs/libs/gstreamer-libs-sections.txt:
Add new API to docs and fix the build.

16 years agolibs/gst/base/gstbasesrc.*: Add property to make the basesrc timestamp buffers based...
Wim Taymans [Mon, 10 Sep 2007 16:50:11 +0000 (16:50 +0000)]
libs/gst/base/gstbasesrc.*: Add property to make the basesrc timestamp buffers based on the current running time.

Original commit message from CVS:
* libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
(gst_base_src_init), (gst_base_src_set_do_timestamp),
(gst_base_src_get_do_timestamp), (gst_base_src_set_property),
(gst_base_src_get_property), (gst_base_src_do_sync):
* libs/gst/base/gstbasesrc.h:
Add property to make the basesrc timestamp buffers based on the current
running time.
API: GstBaseSrc::do-timestamp
API: gst_base_src_set_do_timestamp()
API: gst_base_src_get_do_timestamp()

16 years agodocs/random/release: Really make sure translations are up-to-date before a release...
Tim-Philipp Müller [Sat, 8 Sep 2007 20:25:57 +0000 (20:25 +0000)]
docs/random/release: Really make sure translations are up-to-date before a release (#465010).

Original commit message from CVS:
* docs/random/release:
Really make sure translations are up-to-date before
a release (#465010).

16 years agoadd latest header files
Christian Schaller [Fri, 7 Sep 2007 14:46:52 +0000 (14:46 +0000)]
add latest header files

Original commit message from CVS:
add latest header files

16 years agogst/gstregistrybinary.c: Always destroy the timer, also in error cases.
Sebastian Dröge [Fri, 7 Sep 2007 04:50:23 +0000 (04:50 +0000)]
gst/gstregistrybinary.c: Always destroy the timer, also in error cases.

Original commit message from CVS:
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
Always destroy the timer, also in error cases.

16 years agodocs/manual/highlevel-xml.xml: Fix XML example code. Fixes #472714.
Wim Taymans [Wed, 5 Sep 2007 22:29:58 +0000 (22:29 +0000)]
docs/manual/highlevel-xml.xml: Fix XML example code. Fixes #472714.

Original commit message from CVS:
* docs/manual/highlevel-xml.xml:
Fix XML example code. Fixes #472714.

16 years agolibs/gst/base/gstbasesink.c: Protect eos and have_preroll with the OBJECT lock so...
Wim Taymans [Wed, 5 Sep 2007 22:12:42 +0000 (22:12 +0000)]
libs/gst/base/gstbasesink.c: Protect eos and have_preroll with the OBJECT lock so we don't need to take the PREROLL l...

Original commit message from CVS:
* libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
(gst_base_sink_wait_preroll), (gst_base_sink_needs_preroll),
(gst_base_sink_query):
Protect eos and have_preroll with the OBJECT lock so we don't need to
take the PREROLL lock when querying the latency. Fixes #473846.

16 years agogst/gstelement.c: Give some log-messages a category.
Stefan Kost [Wed, 5 Sep 2007 13:24:31 +0000 (13:24 +0000)]
gst/gstelement.c: Give some log-messages a category.

Original commit message from CVS:
* gst/gstelement.c:
Give some log-messages a category.

16 years agogst/gststructure.c: Fix fraction list fixation code. Take the fraction with the small...
Wim Taymans [Wed, 5 Sep 2007 01:00:50 +0000 (01:00 +0000)]
gst/gststructure.c: Fix fraction list fixation code. Take the fraction with the smallest difference with the target i...

Original commit message from CVS:
* gst/gststructure.c:
(gst_structure_fixate_field_nearest_fraction):
Fix fraction list fixation code. Take the fraction with the smallest
difference with the target instead of the first one in the list.
* tests/check/gst/gststructure.c: (GST_START_TEST),
(gst_structure_suite):
Added test to verify correct fraction list fixation behaviour.

16 years agowin32/common/libgstreamer.def: Export gst_bus_add_signal_watch too.
Tim-Philipp Müller [Sun, 2 Sep 2007 20:30:16 +0000 (20:30 +0000)]
win32/common/libgstreamer.def: Export gst_bus_add_signal_watch too.

Original commit message from CVS:
* win32/common/libgstreamer.def:
Export gst_bus_add_signal_watch too.

16 years agodocs/libs/gstreamer-libs-sections.txt: Add new methods to docs.
Wim Taymans [Thu, 30 Aug 2007 17:50:54 +0000 (17:50 +0000)]
docs/libs/gstreamer-libs-sections.txt: Add new methods to docs.

Original commit message from CVS:
* docs/libs/gstreamer-libs-sections.txt:
Add new methods to docs.
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_init), (gst_base_sink_set_ts_offset),
(gst_base_sink_get_ts_offset), (gst_base_sink_set_property),
(gst_base_sink_get_property), (gst_base_sink_wait_clock):
* libs/gst/base/gstbasesink.h:
Add ts-offset property to fine-tune the synchronisation.
API: GstBaseSink::ts-offset property
API: gst_base_sink_set_ts_offset()
API: gst_base_sink_get_ts_offset()

16 years agolibs/gst/base/gstbasesink.*: Add async property to instruct the sink never to inform...
Wim Taymans [Wed, 29 Aug 2007 20:57:58 +0000 (20:57 +0000)]
libs/gst/base/gstbasesink.*: Add async property to instruct the sink never to inform the parent about

Original commit message from CVS:
* libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
(gst_base_sink_init), (gst_base_sink_set_sync),
(gst_base_sink_get_sync), (gst_base_sink_set_max_lateness),
(gst_base_sink_get_max_lateness), (gst_base_sink_set_qos_enabled),
(gst_base_sink_is_qos_enabled), (gst_base_sink_set_async_enabled),
(gst_base_sink_is_async_enabled), (gst_base_sink_set_property),
(gst_base_sink_get_property), (gst_base_sink_change_state):
* libs/gst/base/gstbasesink.h:
Add async property to instruct the sink never to inform the parent about
ASYNC state changes, update docs.
Check argument with g_return_* for the public functions.
API: GstBaseSink::async property
API: gst_base_sink_set_async_enabled()
API: gst_base_sink_is_async_enabled()

16 years agolibs/gst/base/gstbasesink.c: Improve debugging.
Wim Taymans [Tue, 28 Aug 2007 15:02:19 +0000 (15:02 +0000)]
libs/gst/base/gstbasesink.c: Improve debugging.

Original commit message from CVS:
* libs/gst/base/gstbasesink.c: (gst_base_sink_loop):
Improve debugging.
* libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
(gst_base_src_default_query), (gst_base_src_wait),
(gst_base_src_do_sync), (gst_base_src_change_state):
Rearrange some code so that we can add support for measuring the
startup latency.

16 years agodocs/random/ensonic/dynlink.txt: More thoughs on this.
Stefan Kost [Mon, 27 Aug 2007 20:00:39 +0000 (20:00 +0000)]
docs/random/ensonic/dynlink.txt: More thoughs on this.

Original commit message from CVS:
* docs/random/ensonic/dynlink.txt:
More thoughs on this.
* plugins/elements/gstcapsfilter.c:
Add bugzilla ticket number to FIXME comment.

16 years agoremove temp files again
Thomas Vander Stichele [Sun, 26 Aug 2007 18:30:55 +0000 (18:30 +0000)]
remove temp files again

Original commit message from CVS:
remove temp files again

16 years agotest commit
Thomas Vander Stichele [Sun, 26 Aug 2007 16:42:36 +0000 (16:42 +0000)]
test commit

Original commit message from CVS:
test commit

16 years agotest commit
Thomas Vander Stichele [Sun, 26 Aug 2007 15:58:18 +0000 (15:58 +0000)]
test commit

Original commit message from CVS:
test commit

16 years agodocs/design/: Update some docs.
Wim Taymans [Fri, 24 Aug 2007 21:53:39 +0000 (21:53 +0000)]
docs/design/: Update some docs.

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

16 years agogst/Makefile.am: Revert patch which uses $(gst_headers) instead of $^ because it...
Jan Schmidt [Fri, 24 Aug 2007 16:39:06 +0000 (16:39 +0000)]
gst/Makefile.am: Revert patch which uses $(gst_headers) instead of $^ because it breaks make dist.

Original commit message from CVS:
* gst/Makefile.am:
Revert patch which uses $(gst_headers) instead of $^ because it
breaks make dist.

16 years agotests/check/gst/gstbin.c: Fix leaks in the new unit test.
Jan Schmidt [Fri, 24 Aug 2007 14:55:46 +0000 (14:55 +0000)]
tests/check/gst/gstbin.c: Fix leaks in the new unit test.

Original commit message from CVS:
* tests/check/gst/gstbin.c: (GST_START_TEST):
Fix leaks in the new unit test.

16 years agogst/gst.c: Don't use GST_INFO before the debug system is actually initialised (should...
Tim-Philipp Müller [Thu, 23 Aug 2007 20:41:30 +0000 (20:41 +0000)]
gst/gst.c: Don't use GST_INFO before the debug system is actually initialised (shouldn't do any harm, but won't print...

Original commit message from CVS:
* gst/gst.c:
Don't use GST_INFO before the debug system is actually initialised
(shouldn't do any harm, but won't print anything either, so we can
just as well remove it).
* gst/gstinfo.h:
GST_CAT_LEVEL_LOG_valist(), which is our inline helper function for
compilers that don't support variadic macros (such as MSVC), should
check for debug_level <= __gst_debug_min as well, since that's the
function called from all the level-specific GST_CAT_*_LOG_OBJECT()
inline helper functions. Should improve performance a bit, but also
makes sure uses of GST_INFO et.al are ignored if the debugging
system isn't initialised yet (instead of printing an assertion
failure).

16 years agogst/Makefile.am: Replace some non portable makefile constructs.
David Nečas [Thu, 23 Aug 2007 07:10:33 +0000 (07:10 +0000)]
gst/Makefile.am: Replace some non portable makefile constructs.

Original commit message from CVS:
patch by: David Nečas <yeti@physics.muni.cz>
* gst/Makefile.am:
Replace some non portable makefile constructs.

16 years agocommon/gtk-doc-plugins.mak: Grrrrr. Don't remove the types file on make clean.
Stefan Kost [Tue, 21 Aug 2007 14:10:09 +0000 (14:10 +0000)]
common/gtk-doc-plugins.mak: Grrrrr. Don't remove the types file on make clean.

Original commit message from CVS:
* common/gtk-doc-plugins.mak:
Grrrrr. Don't remove the types file on make clean.

16 years agotools/gst-launch.1.in: Add colorspace to example pipeline. Fixes #458274.
Wim Taymans [Mon, 20 Aug 2007 17:51:35 +0000 (17:51 +0000)]
tools/gst-launch.1.in: Add colorspace to example pipeline. Fixes #458274.

Original commit message from CVS:
* tools/gst-launch.1.in:
Add colorspace to example pipeline. Fixes #458274.

16 years agodocs/random/release: The release manager should run 'make download-po' before making...
Tim-Philipp Müller [Mon, 20 Aug 2007 12:31:54 +0000 (12:31 +0000)]
docs/random/release: The release manager should run 'make download-po' before making a release to make sure translati...

Original commit message from CVS:
* docs/random/release:
The release manager should run 'make download-po' before making a
release to make sure translations are up-to-date.
* po/LINGUAS:
* po/be.po:
* po/pl.po:
* po/rw.po:
Add some new translations.

16 years agotools/gst-launch.c: Don´t try to do any state management when a live pipeline posts...
Wim Taymans [Fri, 17 Aug 2007 13:48:24 +0000 (13:48 +0000)]
tools/gst-launch.c: Don´t try to do any state management when a live pipeline posts buffering messages.

Original commit message from CVS:
* tools/gst-launch.c: (event_loop), (main):
Don´t try to do any state management when a live pipeline posts
buffering messages.
Also make the buffering string translatable.

16 years agogst/gstbin.c: Improve debugging.
Wim Taymans [Thu, 16 Aug 2007 11:04:40 +0000 (11:04 +0000)]
gst/gstbin.c: Improve debugging.

Original commit message from CVS:
* gst/gstbin.c: (is_eos), (gst_bin_add_func),
(bin_handle_async_start), (gst_bin_handle_message_func):
Improve debugging.
When adding elements, insert messages into the bus of the newly added
element and make sure the element is the source of the message. This
allows the parent bin to intercept the message and do the
right thing. It also avoids us posting ASYNC_START and CLOCK_PROVIDE
messages to the app (which is not allowed).
Update some docs.
* tests/check/gst/gstghostpad.c: (GST_START_TEST):
Fix testsuite so that is does not work around messages that should not
have been posted in the first place.

16 years agogst/gstbin.c: Fix annoying bug in the sorted iterator where a sink that is not really...
Wim Taymans [Thu, 16 Aug 2007 10:27:16 +0000 (10:27 +0000)]
gst/gstbin.c: Fix annoying bug in the sorted iterator where a sink that is not really a sink (when it has downstream ...

Original commit message from CVS:
* gst/gstbin.c: (add_to_queue), (remove_from_queue), (clear_queue),
(update_degree), (gst_bin_sort_iterator_next):
Fix annoying bug in the sorted iterator where a sink that is not really
a sink (when it has downstream links) screwed up the iterator.
* tests/check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
Unit test to verify the fix.

16 years agogst/gstmessage.h: Add some more docs for the messages.
Wim Taymans [Thu, 16 Aug 2007 10:07:48 +0000 (10:07 +0000)]
gst/gstmessage.h: Add some more docs for the messages.

Original commit message from CVS:
* gst/gstmessage.h:
Add some more docs for the messages.
* libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
(gst_base_sink_query):
Add some more debugging.
* tools/gst-launch.c: (event_loop):
When interrupting, don't try to set pipeline to PAUSED twice.

16 years agogst/gstbin.c: Move ASYNC_START message posting to where it belongs, similar to async_...
Wim Taymans [Tue, 14 Aug 2007 14:10:36 +0000 (14:10 +0000)]
gst/gstbin.c: Move ASYNC_START message posting to where it belongs, similar to async_done.

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_add_func), (gst_bin_element_set_state),
(bin_handle_async_start), (gst_bin_handle_message_func):
Move ASYNC_START message posting to where it belongs, similar to
async_done.
Don't post ASYNC_START when we are in error.
Post ASYNC_START when we added an async element to a bin.

16 years agogst/gstindex.c: Fix index entry generation from vargs. Fixes #466595.
Julien Moutte [Tue, 14 Aug 2007 13:43:44 +0000 (13:43 +0000)]
gst/gstindex.c: Fix index entry generation from vargs. Fixes #466595.

Original commit message from CVS:
2007-08-14  Julien MOUTTE  <julien@moutte.net>

* gst/gstindex.c: (gst_index_add_association): Fix index entry
generation from vargs. Fixes #466595.

16 years agogst/gstbin.c: Always change the state of a NO_PREROLL element even if it has ASYNC...
Wim Taymans [Tue, 14 Aug 2007 13:37:16 +0000 (13:37 +0000)]
gst/gstbin.c: Always change the state of a NO_PREROLL element even if it has ASYNC elements inside (in case of a bin).

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_element_set_state):
Always change the state of a NO_PREROLL element even if it has ASYNC
elements inside (in case of a bin).
* tests/check/generic/sinks.c: (GST_START_TEST), (gst_sinks_suite):
Unit test for this case.

16 years agoAdd more missing docs.
Stefan Kost [Mon, 13 Aug 2007 13:33:07 +0000 (13:33 +0000)]
Add more missing docs.

Original commit message from CVS:
* libs/gst/check/gstbufferstraw.c:
* libs/gst/check/gstcheck.h:
* libs/gst/controller/gstcontroller.c:
* libs/gst/controller/gstcontrolsource.h:
* libs/gst/controller/gstlfocontrolsource.h:
* plugins/elements/gstcapsfilter.h:
* plugins/elements/gstfdsink.h:
* plugins/elements/gstfdsrc.h:
Add more missing docs.

16 years agogst/gststructure.c: Add Since tag to docs.
Wim Taymans [Sun, 12 Aug 2007 16:44:07 +0000 (16:44 +0000)]
gst/gststructure.c: Add Since tag to docs.

Original commit message from CVS:
* gst/gststructure.c:
Add Since tag to docs.

16 years agoAdd function to get uint from a structure.
Wim Taymans [Sun, 12 Aug 2007 16:40:59 +0000 (16:40 +0000)]
Add function to get uint from a structure.

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gststructure.c: (gst_structure_get_uint):
* gst/gststructure.h:
Add function to get uint from a structure.
API: gst_structure_get_uint()

16 years agogst/gstcaps.c: Fix proper check for simple caps.
Wim Taymans [Sun, 12 Aug 2007 16:38:40 +0000 (16:38 +0000)]
gst/gstcaps.c: Fix proper check for simple caps.

Original commit message from CVS:
* gst/gstcaps.c: (gst_caps_set_simple_valist),
(gst_caps_intersect):
Fix proper check for simple caps.

16 years agodocs/: Remove cruft and do some cleanups.
Stefan Kost [Fri, 10 Aug 2007 17:35:30 +0000 (17:35 +0000)]
docs/: Remove cruft and do some cleanups.

Original commit message from CVS:
* docs/gst/Makefile.am:
* docs/libs/Makefile.am:
Remove cruft and do some cleanups.
* docs/gst/gstreamer-docs.sgml:
* docs/libs/gstreamer-libs-docs.sgml:
Prepare for comming gtkdoc features (rebase against online docs).

16 years agodocs/gst/gstreamer-sections.txt: Add gst_registry_add_path to docs.
Michael Smith [Fri, 10 Aug 2007 14:52:41 +0000 (14:52 +0000)]
docs/gst/gstreamer-sections.txt: Add gst_registry_add_path to docs.

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add gst_registry_add_path to docs.

Also fix formatting of an older changelog entry

16 years agogst/gstregistry.h: Add gst_registry_add_path, which was missing from this header.
Michael Smith [Fri, 10 Aug 2007 14:40:26 +0000 (14:40 +0000)]
gst/gstregistry.h: Add gst_registry_add_path, which was missing from this header.

Original commit message from CVS:
* gst/gstregistry.h:
Add gst_registry_add_path, which was missing from this header.

16 years agolibs/gst/controller/gstlfocontrolsource.c: Printf format fix.
Tim-Philipp Müller [Fri, 10 Aug 2007 10:30:22 +0000 (10:30 +0000)]
libs/gst/controller/gstlfocontrolsource.c: Printf format fix.

Original commit message from CVS:
* libs/gst/controller/gstlfocontrolsource.c:
Printf format fix.

16 years agolibs/gst/base/gstbasesink.c: Don't send an async_start message during downwards state...
Philippe Kalaf [Thu, 9 Aug 2007 21:50:19 +0000 (21:50 +0000)]
libs/gst/base/gstbasesink.c: Don't send an async_start message during downwards state change if target state is less ...

Original commit message from CVS:
* libs/gst/base/gstbasesink.c:
Don't send an async_start message during downwards state change if target
state is less than READY

16 years agopo/: Added Hungarian translation.
Thomas Vander Stichele [Thu, 9 Aug 2007 10:50:22 +0000 (10:50 +0000)]
po/: Added Hungarian translation.

Original commit message from CVS:
translated by: Gabor Kelemen <kelemeng@gnome.hu>
* po/LINGUAS:
* po/hu.po:
Added Hungarian translation.

16 years agopo/: Updated translations.
Thomas Vander Stichele [Thu, 9 Aug 2007 10:48:53 +0000 (10:48 +0000)]
po/: Updated translations.

Original commit message from CVS:
* po/fi.po:
* po/it.po:
* po/nl.po:
* po/sv.po:
* po/uk.po:
Updated translations.

16 years agolibs/gst/controller/Makefile.am: Dist gstlfocontrolsourceprivate.h
Jan Schmidt [Tue, 7 Aug 2007 16:06:47 +0000 (16:06 +0000)]
libs/gst/controller/Makefile.am: Dist gstlfocontrolsourceprivate.h

Original commit message from CVS:
* libs/gst/controller/Makefile.am:
Dist gstlfocontrolsourceprivate.h

16 years agodocs/libs/gstreamer-libs.types: Don't register the enum type gst_lfo_waveform_get_typ...
Jan Schmidt [Tue, 7 Aug 2007 15:15:40 +0000 (15:15 +0000)]
docs/libs/gstreamer-libs.types: Don't register the enum type gst_lfo_waveform_get_type() in the .types file - only GO...

Original commit message from CVS:
* docs/libs/gstreamer-libs.types:
Don't register the enum type gst_lfo_waveform_get_type() in the
.types file - only GObject derived types belong.

16 years agogst/gstbuffer.h: Remove comma from last element in enum to avoid compile errors when...
Wim Taymans [Tue, 7 Aug 2007 14:04:22 +0000 (14:04 +0000)]
gst/gstbuffer.h: Remove comma from last element in enum to avoid compile errors when using -pendantic. Fixes #464366.

Original commit message from CVS:
Patch by: <arenevier at fdn dot fr>
* gst/gstbuffer.h:
Remove comma from last element in enum to avoid compile errors when
using -pendantic. Fixes #464366.

16 years agodocs/design/part-TODO.txt: Add some more TODO items
Wim Taymans [Tue, 7 Aug 2007 09:56:08 +0000 (09:56 +0000)]
docs/design/part-TODO.txt: Add some more TODO items

Original commit message from CVS:
* docs/design/part-TODO.txt:
Add some more TODO items
* gst/gstbin.c: (find_message), (gst_bin_change_state_func):
Improve debugging.
* gst/gstcaps.c: (gst_caps_intersect):
Optimize trivial intersection case between identical caps pointers.
* gst/gstelement.c: (gst_element_continue_state),
(gst_element_set_state_func):
* gst/gstpad.c:
Fix spelling and grammar mistakes.

16 years agopo/POTFILES.*: Update POTFILES. Fixes #461599.
Stefan Kost [Sun, 5 Aug 2007 14:48:06 +0000 (14:48 +0000)]
po/POTFILES.*: Update POTFILES. Fixes #461599.

Original commit message from CVS:
* po/POTFILES.in:
* po/POTFILES.skip:
Update POTFILES. Fixes #461599.

16 years agogst/gst.c: Fix confusing typo in debug output.
Sebastian Dröge [Fri, 3 Aug 2007 19:25:45 +0000 (19:25 +0000)]
gst/gst.c: Fix confusing typo in debug output.

Original commit message from CVS:
* gst/gst.c:
Fix confusing typo in debug output.

16 years agolibs/gst/controller/: API: Add GstLFOControlSource, a control source that gives value...
Sebastian Dröge [Fri, 3 Aug 2007 15:47:17 +0000 (15:47 +0000)]
libs/gst/controller/: API: Add GstLFOControlSource, a control source that gives values for specific timestamps based ...

Original commit message from CVS:
reviewed by: Stefan Kost <ensonic@users.sf.net>
* libs/gst/controller/Makefile.am:
* libs/gst/controller/gstlfocontrolsource.c: (_calculate_pos),
(gst_lfo_waveform_get_type), (gst_lfo_control_source_reset),
(gst_lfo_control_source_new),
(gst_lfo_control_source_set_waveform),
(gst_lfo_control_source_bind), (gst_lfo_control_source_init),
(gst_lfo_control_source_finalize),
(gst_lfo_control_source_dispose),
(gst_lfo_control_source_set_property),
(gst_lfo_control_source_get_property),
(gst_lfo_control_source_class_init):
* libs/gst/controller/gstlfocontrolsource.h:
* libs/gst/controller/gstlfocontrolsourceprivate.h:
API: Add GstLFOControlSource, a control source that gives values
for specific timestamps based on several periodic waveforms.
Fixes #459717.
* tests/check/libs/controller.c: (GST_START_TEST),
(gst_controller_suite):
* docs/libs/gstreamer-libs-docs.sgml:
* docs/libs/gstreamer-libs-sections.txt:
* docs/libs/gstreamer-libs.types:
Add documentation and unit tests for GstLFOControlSource.

16 years agoconfigure.ac: Back to CVS
Jan Schmidt [Fri, 3 Aug 2007 14:40:22 +0000 (14:40 +0000)]
configure.ac: Back to CVS

Original commit message from CVS:
* configure.ac:
Back to CVS

16 years agoRelease 0.10.14 RELEASE-0_10_14
Jan Schmidt [Fri, 3 Aug 2007 14:39:15 +0000 (14:39 +0000)]
Release 0.10.14

Original commit message from CVS:
Release 0.10.14

16 years agoUpdate .po files
Jan Schmidt [Fri, 3 Aug 2007 13:20:50 +0000 (13:20 +0000)]
Update .po files

Original commit message from CVS:
Update .po files

16 years agogst/gstelement.*: Make strings passed to gst_element_class_set_details_simple() const...
Tim-Philipp Müller [Thu, 2 Aug 2007 11:51:17 +0000 (11:51 +0000)]
gst/gstelement.*: Make strings passed to gst_element_class_set_details_simple() constant, as they should be (#462752).

Original commit message from CVS:
* gst/gstelement.c: (gst_element_class_set_details_simple):
* gst/gstelement.h:
Make strings passed to gst_element_class_set_details_simple()
constant, as they should be (#462752).

16 years agogst/gstbin.c: Don't forget about the fact that some element went ASYNC even after...
Wim Taymans [Thu, 2 Aug 2007 11:15:46 +0000 (11:15 +0000)]
gst/gstbin.c: Don't forget about the fact that some element went ASYNC even after a resync. This makes us post the AS...

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_change_state_func),
(bin_handle_async_done), (gst_bin_handle_message_func):
Don't forget about the fact that some element went ASYNC even after a
resync. This makes us post the ASYNC_DONE message correctly.
Fixes #462558.

16 years agogst/gstregistry.c: When replacing an existing feature in the registry, make sure...
Jan Schmidt [Tue, 31 Jul 2007 11:51:38 +0000 (11:51 +0000)]
gst/gstregistry.c: When replacing an existing feature in the registry, make sure to continue holding a reference unti...

Original commit message from CVS:
* gst/gstregistry.c: (gst_registry_add_feature):
When replacing an existing feature in the registry, make sure to
continue holding a reference until we've replaced the name string
within our feature hash table. Make sure to use g_hash_table_replace
instead of g_hash_table_insert to ensure the new name string is used
as a key instead of the old one that we're about to free.
Fixes: #462085

16 years agogst/gstpluginfeature.c: Revert patch from #459466 until after the release and we...
Jan Schmidt [Tue, 31 Jul 2007 10:10:27 +0000 (10:10 +0000)]
gst/gstpluginfeature.c: Revert patch from #459466 until after the release and we can work out exactly what the proble...

Original commit message from CVS:
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_set_name):
Revert patch from #459466 until after the release and we can work
out exactly what the problem is (if any).

17 years agoAPI: add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939).
Tim-Philipp Müller [Thu, 26 Jul 2007 15:48:40 +0000 (15:48 +0000)]
API: add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939).

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
* gst/gsttaglist.c:
* gst/gsttaglist.h:
API: add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939).

17 years agodocs/libs/Makefile.am: Include our build-prefix libs and includes before the generic...
Jan Schmidt [Thu, 26 Jul 2007 14:05:23 +0000 (14:05 +0000)]
docs/libs/Makefile.am: Include our build-prefix libs and includes before the generic ones to avoid linking against th...

Original commit message from CVS:
* docs/libs/Makefile.am:
Include our build-prefix libs and includes before the generic ones to
avoid linking against the installed libs when we want the build-tree
ones.

17 years agodocs/pwg/building-testapp.xml: Mention that GST_PLUGIN_PATH or --gst-plugin-path...
Steve Fink [Thu, 26 Jul 2007 08:46:46 +0000 (08:46 +0000)]
docs/pwg/building-testapp.xml: Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed if people try to bui...

Original commit message from CVS:
Patch by: Steve Fink  <sphink gmail com>
* docs/pwg/building-testapp.xml:
Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed
if people try to build or install the example from the plugin
template against a GStreamer from package using the configure
defaults.

17 years agotools/gst-inspect.1.in: Document --print-all and --print-plugin-auto-install-info...
Steve Fink [Wed, 25 Jul 2007 22:29:57 +0000 (22:29 +0000)]
tools/gst-inspect.1.in: Document --print-all and --print-plugin-auto-install-info command line options in man page.

Original commit message from CVS:
Patch by: Steve Fink  <sphink gmail com>
* tools/gst-inspect.1.in:
Document --print-all and --print-plugin-auto-install-info command
line options in man page.

17 years agodocs/gst/gstreamer-sections.txt: Add docs for new api function.
Wim Taymans [Wed, 25 Jul 2007 18:46:49 +0000 (18:46 +0000)]
docs/gst/gstreamer-sections.txt: Add docs for new api function.

Original commit message from CVS:
* docs/gst/gstreamer-sections.txt:
Add docs for new api function.

17 years agogst/gstelementfactory.*: API: gst_element_factory_has_interface()
Wim Taymans [Wed, 25 Jul 2007 18:37:12 +0000 (18:37 +0000)]
gst/gstelementfactory.*: API: gst_element_factory_has_interface()

Original commit message from CVS:
* gst/gstelementfactory.c: (gst_element_factory_has_interface):
* gst/gstelementfactory.h:
API: gst_element_factory_has_interface()
Added method to check if an element factory implements a named
interface.

17 years agoAnother conditional doc check.
Stefan Kost [Wed, 25 Jul 2007 13:00:23 +0000 (13:00 +0000)]
Another conditional doc check.

Original commit message from CVS:
* configure.ac:
* docs/gst/gstreamer.types.in:
Another conditional doc check.
* gst/gstmessage.c:
* gst/gstparamspecs.h:
* gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
* gst/gstvalue.c:
* gst/gstxml.h:
API-doc fixes.

17 years agogst/gstregistrybinary.c: Print error just once and with additional info.
Stefan Kost [Tue, 24 Jul 2007 13:44:04 +0000 (13:44 +0000)]
gst/gstregistrybinary.c: Print error just once and with additional info.

Original commit message from CVS:
* gst/gstregistrybinary.c: (gst_registry_binary_check_magic),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin),
(gst_registry_binary_read_cache):
Print error just once and with additional info.

17 years agolibs/gst/base/gsttypefindhelper.c: Cleanup the typefindhelper code and add private...
Stefan Kost [Tue, 24 Jul 2007 13:38:21 +0000 (13:38 +0000)]
libs/gst/base/gsttypefindhelper.c: Cleanup the typefindhelper code and add private doc comments.

Original commit message from CVS:
* libs/gst/base/gsttypefindhelper.c: (helper_find_peek),
(helper_find_suggest), (helper_find_get_length),
(gst_type_find_helper_get_range), (buf_helper_find_suggest),
(gst_type_find_helper_for_buffer):
Cleanup the typefindhelper code and add private doc comments.

17 years agoplugins/elements/gstcapsfilter.c: Fix capsfilter for cases where the caps set on...
Edward Hervey [Tue, 24 Jul 2007 12:32:31 +0000 (12:32 +0000)]
plugins/elements/gstcapsfilter.c: Fix capsfilter for cases where the caps set on capsfilter will provide additional i...

Original commit message from CVS:
* plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
(gst_capsfilter_transform_size), (gst_capsfilter_prepare_buf):
Fix capsfilter for cases where the caps set on capsfilter will provide
additional information.
Fixes #449197

17 years agogst/gsttypefindfactory.c: Fix docs that recommened wrong function to use.
Stefan Kost [Tue, 24 Jul 2007 11:31:09 +0000 (11:31 +0000)]
gst/gsttypefindfactory.c: Fix docs that recommened wrong function to use.

Original commit message from CVS:
* gst/gsttypefindfactory.c:
Fix docs that recommened wrong function to use.

17 years agotools/gst-inspect.c: Also give media-type for typefinders in element output.
Stefan Kost [Mon, 23 Jul 2007 13:03:43 +0000 (13:03 +0000)]
tools/gst-inspect.c: Also give media-type for typefinders in element output.

Original commit message from CVS:
* tools/gst-inspect.c: (print_plugin_features):
Also give media-type for typefinders in element output.

17 years agogst/gstregistry.*: Speed up gst_registry_lookup_feature_locked() by using a hashmap.
Stefan Kost [Mon, 23 Jul 2007 11:42:12 +0000 (11:42 +0000)]
gst/gstregistry.*: Speed up gst_registry_lookup_feature_locked() by using a hashmap.

Original commit message from CVS:
* gst/gstregistry.c: (gst_registry_init), (gst_registry_finalize),
(gst_registry_remove_features_for_plugin_unlocked),
(gst_registry_add_feature), (gst_registry_remove_feature),
(gst_registry_lookup_feature_locked):
* gst/gstregistry.h:
Speed up gst_registry_lookup_feature_locked() by using a hashmap.
Fixes #459501.

17 years agogst/gstpluginfeature.c: Avoid double memory usage for pluginfeature names. Fixes...
Stefan Kost [Mon, 23 Jul 2007 10:39:10 +0000 (10:39 +0000)]
gst/gstpluginfeature.c: Avoid double memory usage for pluginfeature names. Fixes #459466.

Original commit message from CVS:
* gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
(gst_plugin_feature_set_name):
Avoid double memory usage for pluginfeature names. Fixes #459466.

17 years agogst/gstpad.h: Small addition to GST_FLOW_IS_FATAL() docs: mention that elements drivi...
Tim-Philipp Müller [Sun, 22 Jul 2007 18:26:32 +0000 (18:26 +0000)]
gst/gstpad.h: Small addition to GST_FLOW_IS_FATAL() docs: mention that elements driving the pipeline may need to expl...

Original commit message from CVS:
* gst/gstpad.h:
Small addition to GST_FLOW_IS_FATAL() docs: mention that elements
driving the pipeline may need to explicitly check for NOT_LINKED as
well, since IS_FATAL doesn't cover that.

17 years agodocs/pwg/advanced-types.xml: Fix typo and duplicate entry in video formats list.
Tim-Philipp Müller [Sun, 22 Jul 2007 18:16:19 +0000 (18:16 +0000)]
docs/pwg/advanced-types.xml: Fix typo and duplicate entry in video formats list.

Original commit message from CVS:
* docs/pwg/advanced-types.xml:
Fix typo and duplicate entry in video formats list.

17 years agolibs/gst/controller/gstinterpolation.c: Also round to the nearest int when using...
Sebastian Dröge [Sun, 22 Jul 2007 12:18:46 +0000 (12:18 +0000)]
libs/gst/controller/gstinterpolation.c: Also round to the nearest int when using cubic interpolation.

Original commit message from CVS:
* libs/gst/controller/gstinterpolation.c:
Also round to the nearest int when using cubic interpolation.

17 years agolibs/gst/controller/gstinterpolation.c: When linearly interpolating integer types...
Jan Schmidt [Sat, 21 Jul 2007 21:20:37 +0000 (21:20 +0000)]
libs/gst/controller/gstinterpolation.c: When linearly interpolating integer types, round to the nearest int by adding...

Original commit message from CVS:
* libs/gst/controller/gstinterpolation.c:
When linearly interpolating integer types, round to the nearest int
by adding 0.5. Don't do it for float/double types.
Fixes the failing controller test on my machine, which is somehow
rounding differently than on the buildbots.

17 years agotools/gst-plot-timeline.py: Better log parsing (categories can have -). Adjust text...
Stefan Kost [Fri, 20 Jul 2007 07:36:44 +0000 (07:36 +0000)]
tools/gst-plot-timeline.py: Better log parsing (categories can have -). Adjust text vs. lines, so that they span the ...

Original commit message from CVS:
* tools/gst-plot-timeline.py:
Better log parsing (categories can have -). Adjust text vs. lines, so
that they span the same y-range.

17 years agodocs/random/ensonic/: Save my thoughts.
Stefan Kost [Fri, 20 Jul 2007 07:26:39 +0000 (07:26 +0000)]
docs/random/ensonic/: Save my thoughts.

Original commit message from CVS:
* docs/random/ensonic/audiobaseclasses.txt:
* docs/random/ensonic/dynlink.txt:
* docs/random/ensonic/profiling.txt:
Save my thoughts.
* docs/random/moving-plugins:
Add note to use g_assert type macros.

17 years agoAdd libm check as we use in for plugins.
Stefan Kost [Fri, 20 Jul 2007 07:09:11 +0000 (07:09 +0000)]
Add libm check as we use in for plugins.

Original commit message from CVS:
* configure.ac:
* libs/gst/check/Makefile.am:
Add libm check as we use in for plugins.

17 years agogst/gstbin.c: Check that the state_cookie hasn't changed since the continue_func...
Jan Schmidt [Wed, 18 Jul 2007 14:31:21 +0000 (14:31 +0000)]
gst/gstbin.c: Check that the state_cookie hasn't changed since the continue_func was scheduled. Avoids problems where...

Original commit message from CVS:
* gst/gstbin.c: (gst_bin_continue_func):
Check that the state_cookie hasn't changed since the continue_func
was scheduled. Avoids problems where the state changes back to
something it shouldn't be because it was changed in the meantime.

17 years agogst/gstregistrybinary.c: Fix memory leak. Be less verbose in the log.
Stefan Kost [Tue, 17 Jul 2007 09:44:51 +0000 (09:44 +0000)]
gst/gstregistrybinary.c: Fix memory leak. Be less verbose in the log.

Original commit message from CVS:
* gst/gstregistrybinary.c: (gst_registry_binary_save_const_string),
(gst_registry_binary_save_string),
(gst_registry_binary_save_pad_template),
(gst_registry_binary_save_feature),
(gst_registry_binary_save_plugin),
(gst_registry_binary_load_feature),
(gst_registry_binary_load_plugin),
(gst_registry_binary_read_cache):
Fix memory leak. Be less verbose in the log.

17 years agotests/check/elements/.cvsignore: Add file to cvsignore as commanded.
Jan Schmidt [Mon, 16 Jul 2007 16:44:31 +0000 (16:44 +0000)]
tests/check/elements/.cvsignore: Add file to cvsignore as commanded.

Original commit message from CVS:
* tests/check/elements/.cvsignore:
Add file to cvsignore as commanded.

17 years agotests/check/elements/multiqueue.c: Use a GStaticMutex to protect all cases where...
Jan Schmidt [Mon, 16 Jul 2007 16:04:49 +0000 (16:04 +0000)]
tests/check/elements/multiqueue.c: Use a GStaticMutex to protect all cases where libcheck fail_if/fail_unless macros ...

Original commit message from CVS:
* tests/check/elements/multiqueue.c: (mq_dummypad_chain),
(mq_dummypad_event), (run_output_order_test):
Use a GStaticMutex to protect all cases where libcheck
fail_if/fail_unless macros might be called from multiple threads
simultaneously to avoid errors like:
"check_pack.c:107: :-1081725400:Bad message type arg"

17 years agotests/check/pipelines/stress.c: Make sure we set the pipeline back to the NULL state...
Jan Schmidt [Mon, 16 Jul 2007 15:19:06 +0000 (15:19 +0000)]
tests/check/pipelines/stress.c: Make sure we set the pipeline back to the NULL state before dropping our final refere...

Original commit message from CVS:
* tests/check/pipelines/stress.c: (GST_START_TEST):
Make sure we set the pipeline back to the NULL state before
dropping our final reference.

17 years agotests/check/elements/tee.c: Make the tee stress-test a little less stressful so it...
Jan Schmidt [Mon, 16 Jul 2007 14:55:26 +0000 (14:55 +0000)]
tests/check/elements/tee.c: Make the tee stress-test a little less stressful so it doesn't just time out on slow-mach...

Original commit message from CVS:
* tests/check/elements/tee.c: (GST_START_TEST):
Make the tee stress-test a little less stressful so it doesn't just
time out on slow-machines, and remove a small race when it's starting
up by adding a get_state() call.

17 years agogst/gst.c: Avoid reading registry twice on startup. Fixes #457322.
Stefan Kost [Mon, 16 Jul 2007 12:36:18 +0000 (12:36 +0000)]
gst/gst.c: Avoid reading registry twice on startup. Fixes #457322.

Original commit message from CVS:
* gst/gst.c:
Avoid reading registry twice on startup. Fixes #457322.