]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gstreamer0-10.git/blob - ChangeLog
gst/gstregistrybinary.c: Fix memory leak. Be less verbose in the log.
[glsdk/gstreamer0-10.git] / ChangeLog
1 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
3         * gst/gstregistrybinary.c: (gst_registry_binary_save_const_string),
4         (gst_registry_binary_save_string),
5         (gst_registry_binary_save_pad_template),
6         (gst_registry_binary_save_feature),
7         (gst_registry_binary_save_plugin),
8         (gst_registry_binary_load_feature),
9         (gst_registry_binary_load_plugin),
10         (gst_registry_binary_read_cache):
11           Fix memory leak. Be less verbose in the log.
13 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
15         * tests/check/elements/.cvsignore:
16         Add file to cvsignore as commanded.
18 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
20         * tests/check/elements/multiqueue.c: (mq_dummypad_chain),
21         (mq_dummypad_event), (run_output_order_test):
22         Use a GStaticMutex to protect all cases where libcheck
23         fail_if/fail_unless macros might be called from multiple threads
24         simultaneously to avoid errors like:
25           "check_pack.c:107: :-1081725400:Bad message type arg"
27 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
29         * tests/check/pipelines/stress.c: (GST_START_TEST):
30         Make sure we set the pipeline back to the NULL state before
31         dropping our final reference.
33 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
35         * tests/check/elements/tee.c: (GST_START_TEST):
36         Make the tee stress-test a little less stressful so it doesn't just
37         time out on slow-machines, and remove a small race when it's starting 
38         up by adding a get_state() call.
40 2007-07-16  Stefan Kost  <ensonic@users.sf.net>
42         * gst/gst.c:
43           Avoid reading registry twice on startup. Fixes #457322.
45 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
47         * pkgconfig/gstreamer-check-uninstalled.pc.in:
48         * pkgconfig/gstreamer-check.pc.in:
49         Substitute the CFLAGS for libcheck into our .pc file too so that
50         dependent modules will pick it up properly if libcheck is installed
51         into some other prefix.
53 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
55         * configure.ac:
56         Revert the pkg-config check for libcheck, since it pulls in the
57         wrong non-PIC libcheck.a on Ubuntu and probably Fedora too. We need
58         a proper solution, either from the check project, or something else.
60 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
62         * configure.ac:
63           Use pkg-config to locate check.
65 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
67         * gst/gsttaglist.c:
68           Fix doc syntax.
70         * gst/gstutils.c:
71         * gst/gstutils.h:
72           Add deprecation guards.
74         * libs/gst/base/gstcollectpads.h:
75           Don't document object (this is implicitly private).
77 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
79         * gst/gststructure.c: (gst_structure_parse_value):
80           When deserialising foo=bar without a type cast, check if it's a
81           boolean before falling back to a string type, otherwise things like
82           audiotestsrc ! audio/x-raw-int,signed=true ! fakesink won't work,
83           because the filtercaps end up having a signed=(string)true field,
84           which causes problems later when intersection caps.
86         * tests/check/gst/gststructure.c: (GST_START_TEST):
87           Add a unit test for this.
89 2007-07-06  Sebastian Dröge  <slomo@circular-chaos.org>
91         Reviewed by: Stefan Kost <ensonic@users.sf.net>
93         * libs/gst/controller/Makefile.am:
94         * libs/gst/controller/gstcontroller.c:
95         (gst_controlled_property_add_interpolation_control_source),
96         (gst_controlled_property_new), (gst_controlled_property_free),
97         (gst_controller_find_controlled_property),
98         (gst_controller_new_valist), (gst_controller_new_list),
99         (gst_controller_new), (gst_controller_remove_properties_valist),
100         (gst_controller_remove_properties_list),
101         (gst_controller_remove_properties),
102         (gst_controller_set_property_disabled),
103         (gst_controller_set_disabled), (gst_controller_set_control_source),
104         (gst_controller_get_control_source), (gst_controller_get),
105         (gst_controller_sync_values), (gst_controller_get_value_array),
106         (_gst_controller_dispose), (gst_controller_get_type),
107         (gst_controlled_property_set_interpolation_mode),
108         (gst_controller_set), (gst_controller_set_from_list),
109         (gst_controller_unset), (gst_controller_unset_all),
110         (gst_controller_get_all), (gst_controller_set_interpolation_mode):
111         * libs/gst/controller/gstcontroller.h:
112         * libs/gst/controller/gstcontrollerprivate.h:
113         * libs/gst/controller/gstcontrolsource.c:
114         (gst_control_source_class_init), (gst_control_source_init),
115         (gst_control_source_get_value),
116         (gst_control_source_get_value_array), (gst_control_source_bind):
117         * libs/gst/controller/gstcontrolsource.h:
118         * libs/gst/controller/gsthelper.c: (gst_object_set_control_source),
119         (gst_object_get_control_source):
120         * libs/gst/controller/gstinterpolation.c:
121         (gst_interpolation_control_source_find_control_point_node),
122         (gst_interpolation_control_source_get_first_value),
123         (_interpolate_none_get), (interpolate_none_get),
124         (interpolate_none_get_boolean_value_array),
125         (interpolate_none_get_enum_value_array),
126         (interpolate_none_get_string_value_array),
127         (_interpolate_trigger_get), (interpolate_trigger_get),
128         (interpolate_trigger_get_boolean_value_array),
129         (interpolate_trigger_get_enum_value_array),
130         (interpolate_trigger_get_string_value_array):
131         * libs/gst/controller/gstinterpolationcontrolsource.c:
132         (gst_control_point_free), (gst_interpolation_control_source_reset),
133         (gst_interpolation_control_source_new),
134         (gst_interpolation_control_source_set_interpolation_mode),
135         (gst_interpolation_control_source_bind),
136         (gst_control_point_compare), (gst_control_point_find),
137         (gst_interpolation_control_source_set_internal),
138         (gst_interpolation_control_source_set),
139         (gst_interpolation_control_source_set_from_list),
140         (gst_interpolation_control_source_unset),
141         (gst_interpolation_control_source_unset_all),
142         (gst_interpolation_control_source_get_all),
143         (gst_interpolation_control_source_get_count),
144         (gst_interpolation_control_source_init),
145         (gst_interpolation_control_source_finalize),
146         (gst_interpolation_control_source_dispose),
147         (gst_interpolation_control_source_class_init):
148         * libs/gst/controller/gstinterpolationcontrolsource.h:
149         * libs/gst/controller/gstinterpolationcontrolsourceprivate.h:
150         API: Refactor GstController into the core controller which can take
151         a GstControlSource for providing actual values for timestamps.
152         Implement a interpolation control source and use this for backward
153         compatibility, deprecate a bunch of functions that are now handled
154         by GstControlSource or GstInterpolationControlSource.
155         Make it possible to disable the controller completely or only for
156         specific properties. Fixes #450711.
157         * docs/libs/gstreamer-libs-docs.sgml:
158         * docs/libs/gstreamer-libs-sections.txt:
159         * docs/libs/gstreamer-libs.types:
160         Add new functions and classes to the docs.
161         * tests/check/libs/controller.c: (GST_START_TEST),
162         (gst_controller_suite):
163         * tests/examples/controller/audio-example.c: (main):
164         Port unit test and example to the new API and add some new
165         unit tests.
167 2007-07-05  Wim Taymans  <wim.taymans@gmail.com>
169         Patch by: Mark Nauwelaerts <manauw at skynet be>
171         * plugins/elements/gstmultiqueue.c:
172         (gst_multi_queue_get_internal_links), (apply_buffer),
173         (single_queue_overrun_cb), (gst_single_queue_new):
174         Implement non-default GstPadIntLinkFunction for multiqueue pads so that
175         the pipeline layout can be tracked correctly. Fixes #453732.
177 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
179         * docs/gst/Makefile.am:
180         * docs/libs/Makefile.am:
181         * docs/plugins/Makefile.am:
182           Simplify --extra-dir as gtkdoc scans recursively.
184 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
186         * tools/gst-launch.c: (main):
187         When we got an error, there is no point in waiting for preroll when
188         shutting down.
190 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
192         * plugins/elements/gsttee.c: (gst_tee_base_init),
193         (gst_tee_request_new_pad), (gst_tee_release_pad),
194         (gst_tee_find_buffer_alloc), (gst_tee_buffer_alloc),
195         (gst_tee_do_push), (clear_pads), (gst_tee_handle_buffer),
196         (gst_tee_chain):
197         Be a lot smarter when deciding what srcpad to use for proxying
198         the buffer_alloc. Also handle pad added/removed when doing so.
199         Fixes #357959.
200         Keep track of what pads we already pushed on in case we have pads
201         added/removed while pushing. Fixes #374639 
203         * tests/check/Makefile.am:
204         * tests/check/elements/tee.c: (handoff), (GST_START_TEST),
205         (tee_suite):
206         Added unit test for pad resync.
208 2007-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
210         * po/nl.po:
211         * po/sv.po:
212           Updated translations.
214 2007-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
216         translation by: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>
218         * po/LINGUAS:
219         * po/fi.po:
220           Added new Finnish translation.
222 2007-06-28  Wim Taymans  <wim@fluendo.com>
224         * plugins/elements/gstmultiqueue.c: (apply_buffer),
225         (single_queue_overrun_cb):
226         When figuring out when a queue is filled, use our internal time estimate
227         based on segments, just like check_full does.
229 2007-06-27  Stefan Kost  <ensonic@users.sf.net>
231         * gst/gstminiobject.c: (gst_mini_object_get_type):
232           Remove 3 do-nothing methods.
234 2007-06-27  Wim Taymans  <wim@fluendo.com>
236         Patch by: Tim Angus <tim at ngus dot net>
238         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
239         (gst_capsfilter_set_property):
240         Take a reference instead of a copy when setting "caps".
241         Fix documentation to clarify this behaviour. Fixes #449414.
243 2007-06-27  Stefan Kost  <ensonic@users.sf.net>
245         * gst/gstindexfactory.c: (gst_index_factory_get_type):
246         * gst/gstplugin.c: (gst_plugin_init):
247         * gst/gstpluginfeature.c: (gst_plugin_feature_init):
248         * gst/gstquery.c: (gst_query_get_type):
249         * gst/gstregistry.c: (gst_registry_init):
250         * gst/gsturi.c: (gst_uri_handler_base_init):
251           Remove empty instance_init() functions to save relocs and lessen the
252           noise. Remove some of the function prototypes that are doubled by
253           G_DEFINE_TYPE.
254           
255 2007-06-27  Wim Taymans  <wim@fluendo.com>
257         Patch by: Étienne Noreau-Hébert <etienne at deepunder dot org>
259         * gst/gstghostpad.c: (gst_proxy_pad_save_thyself):
260         Add peer and direction in the XML serialisation of ghostpads.
261         Fixes #449226.
263 2007-06-26  Stefan Kost  <ensonic@users.sf.net>
265         * configure.ac:
266           Preserve useful information, thanks Tim.
268 2007-06-26  Jan Schmidt  <thaytan@noraisin.net>
270         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_init),
271         (gst_single_queue_flush), (apply_segment), (apply_buffer),
272         (gst_single_queue_push_one), (gst_multi_queue_loop),
273         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
274         (gst_multi_queue_src_activate_push), (wake_up_next_non_linked),
275         (compute_high_id), (gst_single_queue_new):
276         * plugins/elements/gstmultiqueue.h:
277         Take the multiqueue lock when updating the fill level so we don't get
278         confused. 
280         After applying a buffer or event on the src pad segment, make sure to
281         call gst_data_queue_limits_changed() to get the data queue to unblock
282         and check the filled state again.
283         
284         Rework the not-linked pad handling so the logic is that not-linked 
285         pads can push as fast as they like, but only so they never get 
286         ahead of any linked pads.
288         * tests/check/elements/multiqueue.c: (mq_sinkpad_to_srcpad),
289         (mq_dummypad_getcaps), (mq_dummypad_chain), (mq_dummypad_event),
290         (run_output_order_test), (GST_START_TEST), (multiqueue_suite):
292         Add a test to check that not-linked pads always stay behind
293         linked pads.
295         Fixes: #430682
297 2007-06-26  Jan Schmidt  <thaytan@mad.scientist.com>
299         * docs/random/release:
300           Some updates to the release procedure.
302 2007-06-26  Stefan Kost  <ensonic@users.sf.net>
304         * gst/gstelementfactory.c: (__gst_element_details_clear):
305           Microoptimization that saves stunning 80 bytes.
307 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
309         * docs/plugins/gstreamer-plugins.args:
310         * docs/plugins/inspect/plugin-coreelements.xml:
311         * docs/plugins/inspect/plugin-coreindexers.xml:
312           Update docs with caps info.
314 2007-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
316         * po/it.po:
317           Updated Italian translation.
319 2007-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
321         * ChangeLog:
322         * po/vi.po:
323           Update Vietnamese translations.
325 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
327         * libs/gst/base/gstbasesink.c:
328           Remove unused signal enum.
330 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
332         * docs/gst/gstreamer-sections.txt:
333         * gst/gstelement.c:
334         * gst/gstutils.c: (gst_type_register_static_full):
335         Beef up and include the docs for gst_type_register_static_full and
336         gst_element_class_set_details_simple and add the API keyword
337         in the ChangeLog.
339 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
341         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_set_property),
342         (update_time_level), (gst_single_queue_push_one),
343         (gst_multi_queue_chain), (gst_multi_queue_sink_event),
344         (single_queue_overrun_cb), (single_queue_underrun_cb),
345         (single_queue_check_full):
346         Fix setting max-* properties after adding queues.
347         Use IS_FILLED for checking visible items.
348         Signal overrun if multiple queues overrun.
349         Add extra debug output.
350         Patch by: Wim Taymans <wim@fluendo.com>
352 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
354         * gst/gstelement.c: (gst_element_class_set_details_simple):
355         * gst/gstelement.h:
356         * gst/gstutils.c: (gst_type_register_static_full):
357         * gst/gstutils.h:
358         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_base_init):
359         * plugins/elements/gstfakesink.c: (gst_fake_sink_base_init):
360         * plugins/elements/gstfakesrc.c: (gst_fake_src_base_init):
361         * plugins/elements/gstfdsink.c: (gst_fd_sink_base_init):
362         * plugins/elements/gstfdsrc.c: (gst_fd_src_base_init):
363         * plugins/elements/gstfilesink.c: (gst_file_sink_base_init):
364         * plugins/elements/gstfilesrc.c: (gst_file_src_base_init):
365         * plugins/elements/gstidentity.c: (gst_identity_base_init):
366         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init):
367         * plugins/elements/gstqueue.c: (gst_queue_base_init),
368         (apply_buffer), (gst_queue_chain):
369         * plugins/elements/gsttee.c: (gst_tee_base_init):
370         * plugins/elements/gsttypefindelement.c:
371         (gst_type_find_element_base_init),
372         (gst_type_find_element_class_init):
373           Saving relocations for GTypeInfo and GstElementDetails. Fixes #437457.
374           API: add gst_type_register_static_full
375           API: add gst_element_class_set_details_simple
377 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
379         * docs/pwg/advanced-types.xml:
380           Fix typo in iana.org URI.
382 2007-06-19  Andy Wingo  <wingo@pobox.com>
384         * tests/check/pipelines/simple-launch-lines.c
385         (test_state_change_returns): Enable pull-mode tests now that
386         basesink has been fixed.
388         * libs/gst/base/gstbasesink.c (gst_base_sink_needs_preroll):
389         Changed from gst_base_sink_is_prerolled, reversing the sense of
390         the return value. Returns FALSE also if the sink is in pull mode,
391         in which case it needs no preroll.
392         (gst_base_sink_query, gst_base_sink_change_state): Update for
393         needs_preroll change.
394         (gst_base_sink_change_state): Add a case for READY_TO_PAUSED after
395         chaining up, in which we return SUCCESS directly if we activated
396         in pull mode instead of ASYNC. Involves countering an async_start
397         message sent before chaining up; not sure if this is correct, in
398         an ideal world we only send async-start when activating in push
399         mode.
401         * tests/check/pipelines/simple-launch-lines.c
402         (test_state_change_returns): New test, partially disabled until
403         basesink is fixed.
405 2007-06-19  Wim Taymans  <wim@fluendo.com>
407         * plugins/elements/gstmultiqueue.c: (apply_buffer),
408         (gst_multi_queue_sink_event):
409         Fix event leak.
411 2007-06-19  Wim Taymans  <wim@fluendo.com>
413         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
414         (gst_bin_change_state_func), (bin_push_state_continue),
415         (bin_handle_async_start), (bin_handle_async_done),
416         (gst_bin_handle_message_func):
417         Move the common code for posting state-change messages into
418         one function.
419         Broadcast the state signal after we posted the messages.
420         Mark the bin as busy when it's doing a state-change.
421         Make sure async-start/done messages don't interfere with the bin's
422         state when it's busy.
423         After the state change, let the bin check which elements completed the
424         state change while it was busy so that it can update its state.
426 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
428         * docs/random/release:
429         Add a note about updating the doap file to the release checklist
431 2007-06-18  Wim Taymans  <wim@fluendo.com>
433         * plugins/elements/gstmultiqueue.c: (apply_buffer),
434         (gst_single_queue_push_one), (gst_multi_queue_chain),
435         (gst_multi_queue_sink_event):
436         Make sure we don't reference the buffer/event after we have given away
437         ownership in the queue.
439 2007-06-18  Wim Taymans  <wim@fluendo.com>
441         * plugins/elements/gstmultiqueue.c: (gst_single_queue_flush),
442         (gst_multi_queue_chain), (gst_multi_queue_sink_event):
443         Update queue state _after_ adding the item in the queue because else we
444         could end up being full without the element added yet.
446 2007-06-18  Wim Taymans  <wim@fluendo.com>
448         * gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
449         (gst_bin_remove_func), (gst_bin_get_state_func),
450         (gst_bin_element_set_state), (gst_bin_continue_func),
451         (bin_push_state_continue), (bin_handle_async_start),
452         (bin_handle_async_done), (gst_bin_handle_message_func):
453         * gst/gstbin.h:
454         Immediatly commit the toplevel bin state when receiving an async-done
455         message. This enables us to avoid spawning a thread to commit the state
456         in some common cases and it also avoids some races.
457         Avoid spawning a state thread when adding/removing async elements to a
458         toplevel bin. Instead we immediatly update the bin state.
459         Get rid of iterating all the children when getting the state in the bin
460         because it is now always up-to-date.
461         Fix bug where locked elements would always return _SUCCESS even it they
462         returned NO_PREROLL before being locked.
463         Fix the order of the state_change, async-start/done messages that was
464         sometimes incorrect.
465         Mark the state_dirty field as deprecated, we don't need it anymore as we
466         are always up-to-date.
468         * gst/gstelement.c: (gst_element_get_state_func),
469         (gst_element_continue_state):
470         Small debug inprovements.
471         Return the previous element state return when nothing is pending instead
472         of blindly returning SUCCESS.
474         * tests/check/generic/sinks.c: (GST_START_TEST), (pad_blocked_cb),
475         (gst_sinks_suite):
476         Add a whole bunch of new testcases.
478 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
480         * po/uk.po:
481         * po/vi.po:
482           Update translations.
484 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
486         * gst/gstpad.c:
487         Fix typo in the docs.
489 2007-06-15  Wim Taymans  <wim@fluendo.com>
491         * docs/libs/gstreamer-libs-sections.txt:
492         Add docs for new methods.
494 2007-06-15  Wim Taymans  <wim@fluendo.com>
496         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_item_destroy),
497         (gst_multi_queue_item_new):
498         Don't use GSlice because we don't depend on >= 2.10 yet.
500 2007-06-15  Wim Taymans  <wim@fluendo.com>
502         * plugins/elements/gstmultiqueue.c: (gst_single_queue_flush),
503         (update_time_level), (apply_segment), (apply_buffer),
504         (gst_single_queue_push_one), (gst_multi_queue_item_new),
505         (gst_multi_queue_loop), (gst_multi_queue_sink_activate_push),
506         (gst_multi_queue_sink_event), (single_queue_overrun_cb),
507         (single_queue_underrun_cb), (single_queue_check_full):
508         Remove debug printf.
510 2007-06-15  Wim Taymans  <wim@fluendo.com>
512         * libs/gst/base/gstdataqueue.c: (gst_data_queue_cleanup),
513         (gst_data_queue_finalize), (gst_data_queue_locked_is_empty),
514         (gst_data_queue_set_flushing), (gst_data_queue_push),
515         (gst_data_queue_pop), (gst_data_queue_drop_head),
516         (gst_data_queue_limits_changed), (gst_data_queue_get_level):
517         * libs/gst/base/gstdataqueue.h:
518         Various cleanups.
519         Added methods to get the current levels and to inform the queue that the
520         'full' limits changed.
522         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_init),
523         (gst_multi_queue_finalize), (gst_multi_queue_set_property),
524         (gst_single_queue_flush), (update_time_level), (apply_segment),
525         (apply_buffer), (gst_single_queue_push_one),
526         (gst_multi_queue_item_steal_object),
527         (gst_multi_queue_item_destroy), (gst_multi_queue_item_new),
528         (gst_multi_queue_loop), (gst_multi_queue_chain),
529         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
530         (gst_multi_queue_getcaps), (gst_multi_queue_src_activate_push),
531         (gst_multi_queue_src_query), (single_queue_overrun_cb),
532         (single_queue_underrun_cb), (single_queue_check_full),
533         (gst_single_queue_new):
534         Keep track of time in the queue by measuring the difference between
535         running_time on input and output. This gives more accurate results and
536         can compensate for segments correctly.
537         Make a queue by default only 5 buffers deep. We will now increase the
538         buffer size depending on the filledness of the other queues.
539         Factor out commong flush code.
540         Make sure we don't add additional refcounts to buffers when we can avoid
541         it.
542         Propagate GstFlowReturn differently.
543         Use GSlice for intermediate GstMultiQueueItems.
544         Keep track of EOS.
545         Resize queues on over and underruns based on filled level of other
546         queues.
547         When checking if the queue is filled, prefer to measure in time if we
548         can and fall back to bytes when no time is known.
550         * plugins/elements/gstqueue.c:
551         Fix return value.
553 2007-06-15  Wim Taymans  <wim@fluendo.com>
555         * libs/gst/base/gstbasetransform.c:
556         (gst_base_transform_sink_event):
557         Work around the brokenness of the event vmethod in basetransform. Prefer
558         to return TRUE when the subclass returned FALSE (meaning don't forward
559         the event). 
561         * libs/gst/base/gstbasetransform.h:
562         Clarify the docs.
564 2007-06-15  Wim Taymans  <wim@fluendo.com>
566         * gst/gstpad.c: (gst_pad_push_event), (gst_pad_send_event):
567         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
568         (gst_base_src_default_query), (gst_base_src_get_range),
569         (gst_base_src_start):
570         * tests/check/pipelines/parse-launch.c: (setup_pipeline):
571         Improve debugging.
573 2007-06-15  Stefan Kost  <ensonic@users.sf.net>
575         * docs/pwg/advanced-types.xml:
576           Added more formats to caps table.
578 2007-06-15  Stefan Kost  <ensonic@users.sf.net>
580         * tools/gst-launch.c: (main):
581           Remove crufy code. GOption does not need this workaround.
583 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
585         * libs/gst/controller/gstcontroller.c:
586         (gst_controlled_property_set_interpolation_mode):
587           Fix wrong getter for enums in controller.
589 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
591         * libs/gst/check/gstcheck.c: (gst_check_init):
592           Intercept criticals and warnings in the Gst-Phonon log domain, so
593           ASSERT_CRITICAL() etc. can be used in gst-phonon's unit tests as
594           well.
595         
596 2007-06-14  Edward Hervey  <edward@fluendo.com>
598         * gst/gstparamspecs.c: (_gst_param_fraction_validate):
599         Since this file doesn't include "gst.h" it will not go through the
600         macros that disable GST_LOG if debugging was disabled.
602 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
604         * libs/gst/check/Makefile.am:
605         * libs/gst/check/gstcheck.h:
606         * pkgconfig/gstreamer-check-uninstalled.pc.in:
607         * pkgconfig/gstreamer-check.pc.in:
608           Ugly 'fix' for the controller unit test on the p5 bot: in
609           fail_unless_equals_float() check whether the values are 'almost
610           equal' by allowing a small absolute error, which should be good
611           enough for our use cases (normal numbers and values close to 0).
612           Proper fixage left to floating point arithmetic aficionados.
614 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
616         * libs/gst/base/gstbasesink.c: (gst_base_sink_reset_qos),
617         (gst_base_sink_render_object), (gst_base_sink_get_position):
618           Add two breaks thats where missing.
620 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
622         * docs/libs/gstreamer-libs-sections.txt:
623         * libs/gst/check/gstcheck.h:
624           API: add fail_unless_equals_float() and assert_equals_float().
625           Add documentation for some of the macros.
627         * tests/check/libs/controller.c: (GST_START_TEST):
628           Use newly-added asserts.
630 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
632         * gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_push):
633           Show the caps change in the log to help spotting the case of not
634           exactly matching caps.
636 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
638         * docs/pwg/building-boiler.xml:
639           Fix typos, spotted by Thijs Vermeir (#447190).
641 2007-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
643         * docs/plugins/tmpl/.cvsignore:
644         Ignore file to keep the buildbots happy
646 2007-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
648         * docs/plugins/Makefile.am:
649         * docs/plugins/gstreamer-plugins-docs.sgml:
650         * docs/plugins/gstreamer-plugins-sections.txt:
651         Pull fdsink into the docs too.
653 2007-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
655         * libs/gst/controller/gstinterpolation.c:
656         Actually use the new functions with min/max checks for the trigger and
657         none interpolation modes for get() and get_value_array() instead of
658         just the latter.
660 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
662         * libs/gst/controller/gstcontroller.c:
663         (gst_controlled_property_free):
664         Unset the minimum and maximum GValues when freeing the corresponding
665         GstControllerProperty struct.
667 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
669         * libs/gst/controller/gstcontroller.c:
670         (gst_controlled_property_new):
671         * libs/gst/controller/gstcontrollerprivate.h:
672         * libs/gst/controller/gstinterpolation.c:
673         (gst_controlled_property_find_control_point_node),
674         (interpolate_none_get), (interpolate_none_get_enum_value_array),
675         (interpolate_none_get_string_value_array),
676         (interpolate_trigger_get),
677         (interpolate_trigger_get_enum_value_array),
678         (interpolate_trigger_get_string_value_array):
679         Protect against values larger or smaller than the minimum or maximum
680         allowed value for the property when using values that can be compared.
682         Optimize trigger interpolator a bit by taking the last requested value
683         into account instead of always looping through the complete list.
685         Fix coding style a bit, everywhere else we use "return foo" instead
686         of "return (foo)".
687         
688         * tests/check/libs/controller.c: (GST_START_TEST),
689         (gst_controller_suite):
690         Add unit test for the protection against too large or too small
691         values.
693 2007-06-08  Sebastian Dröge  <slomo@circular-chaos.org>
695         * docs/random/slomo/controller.txt:
696         Add some thoughts about the future of the controller.
698 2007-06-08  Wim Taymans  <wim@fluendo.com>
700         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
701         Don't overflow in retimestamping code.
703 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
705         * libs/gst/controller/gstinterpolation.c: (DEFINE_CUBIC_GET):
706         Use gst_util_guint64_to_gdouble for conversions.
707         * win32/common/libgstreamer.def:
708         Add new exported functions.
710 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
712         * gst/gstutils.c:
713           Small docs addition.
715 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
717         * README:
718           Remove that test line again.
720 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
722         * README:
723           Test commit mail sending.
725 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
727         * configure.ac:
728           Fix typo and test commit mail sending.
730 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
732         * tests/examples/controller/audio-example.c:
733           Improve comment and test commit mail sending.
735 2007-06-07  Wim Taymans  <wim@fluendo.com>
737         * gst/gstbin.c: (find_message), (bin_replace_message), (is_eos),
738         (gst_bin_remove_func), (gst_bin_element_set_state),
739         (bin_handle_async_start), (bin_handle_async_done),
740         (gst_bin_handle_message_func):
741         Add helper function to find messages.
742         Generate the async-done messages together with the state change
743         messages.
744         Small cleanups in handling toplevel bins.
746 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
748         * libs/gst/base/gstdataqueue.c:
749         * libs/gst/base/gstdataqueue.h:
750         * plugins/elements/gstmultiqueue.c: (gst_single_queue_push_one),
751         (gst_multi_queue_item_new), (gst_multi_queue_chain),
752         (gst_multi_queue_sink_event):
753         * tests/check/elements/multiqueue.c: (multiqueue_suite):
754           Fix multiqueue leaking buffers and events when downstream or the
755           queue are flushing. Make refcounting assumptions explicit and
756           document them (shouldn't break existing code that uses it other than
757           maybe leak miniobjects, but that already happens anyway). Add unit
758           test for the most common flushing case. Fixes #423700.
759           
760 2007-06-06  Sebastian Dröge  <slomo@circular-chaos.org>
762         * libs/gst/controller/gstcontroller.c:
763         Clarify docs: The get_all, get_value_array(s) functions
764         don't modify the GObject properties.
766 2007-06-06  Sebastian Dröge  <slomo@circular-chaos.org>
768         * libs/gst/controller/gstcontroller.c:
769         (gst_controlled_property_set_interpolation_mode),
770         (gst_controlled_property_prepend_default),
771         (gst_controlled_property_new), (gst_controller_set_unlocked),
772         (gst_controller_set), (gst_controller_set_from_list),
773         (gst_controller_unset), (gst_controller_unset_all):
774         * libs/gst/controller/gstcontrollerprivate.h:
775         * libs/gst/controller/gstinterpolation.c:
776         Factor out the 'set' logic into gst_controller_set_unlocked for the
777         gst_controller_set and gst_controller_set_from_list functions.
779         To make life of the interpolators easier always add a control point
780         at timestamp zero with the default value.
782         In the linear interpolator make things more obvious by better variable
783         naming (slope).
785         Implement cubic interpolation mode (by using a natural cubic spline)
786         and map the quadratic interpolation mode to this too (as quadratic
787         doesn't make much sense, see discussion on the list).
789         * tests/check/libs/controller.c: (GST_START_TEST),
790         (gst_controller_suite):
791         Add unit test for the cubic interpolation mode and check everywhere
792         if the interpolation mode could be set as expected.
794 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
796         * gst/gstparamspecs.c: (gst_param_spec_fraction_get_type):
797           Don't use GLib-2.10 functions, we still depend on
798           GLib-how-old-is-it-again-2.8.
800 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
802         * docs/gst/gstreamer-sections.txt:
803         * gst/Makefile.am:
804         * gst/gst.c:
805         * gst/gst.h:
806         * gst/gstparamspecs.c: (_gst_param_fraction_init),
807         (_gst_param_fraction_set_default), (_gst_param_fraction_validate),
808         (_gst_param_fraction_values_cmp),
809         (gst_param_spec_fraction_get_type), (gst_param_spec_fraction):
810         * gst/gstparamspecs.h:
811         * gst/gstvalue.c:
812         * tests/check/Makefile.am:
813         * tests/check/gst/.cvsignore:
814         * tests/check/gst/gstparamspecs.c: (gst_dummy_obj_base_init),
815         (gst_dummy_obj_class_init), (gst_dummy_obj_init),
816         (gst_dummy_obj_set_property), (gst_dummy_obj_get_property),
817         (GST_START_TEST), (gst_param_spec_suite):
818           API: add GstParamSpecFraction, so elements can have fraction
819           properties without lots of painful string parsing (#444648).
821 2007-06-05  Wim Taymans  <wim@fluendo.com>
823         * gst/gstobject.c: (gst_object_class_init):
824         Fix signal signature.
826         * gst/gstsegment.c:
827         Add small clarification in the api docs.
829         * plugins/elements/gstfilesrc.c: (gst_file_src_set_location):
830         States are protected with object lock.
832 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
834         * AUTHORS:
835         I should probably be listed as an author by now.
837         * docs/random/release:
838         Update the release doc
840 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
842         * gst/gstvalue.c:
843           Make docs for gst_value_compare() mention return enums that
844           actually exist.
846 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
848         * configure.ac:
849           Back to CVS
851 === release 0.10.13 ===
853 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
855         * configure.ac:
856           releasing 0.10.13, "With or without you"
858 2007-05-25  Wim Taymans  <wim@fluendo.com>
860         * gst/gstbin.c: (bin_handle_async_done):
861         Make sure that the child bin stops after completing the async state
862         change so that the parent can continue the state change to PLAYING.
863         Fixes #441159.
865 2007-05-25  Wim Taymans  <wim@fluendo.com>
867         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
868         (unref_data), (gst_collect_pads_remove_pad),
869         (gst_collect_pads_check_pads):
870         Use additional refcounting to avoid crashes when dynamically adding and
871         removing pads. Fixes #420206.
873 2007-05-24  Wim Taymans  <wim@fluendo.com>
875         * tools/gst-launch.c: (event_loop):
876         When buffering goes from a two digit to a single digit number, make sure
877         to remove the old second digit by writing a blank over it.
879 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
881         * libs/gst/base/gstdataqueue.c:
882           Eliminate tabs and trailing comma in enum list; fix some typos.
884 2007-05-24  Wim Taymans  <wim@fluendo.com>
886         * tests/check/gst/gstbin.c: (GST_START_TEST):
887         Allow refcount of 3 and 4 because some state thread might still be busy
888         with it.
890 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
892         * plugins/elements/Makefile.am:
893         * plugins/elements/gstmultiqueue.h:
894         * plugins/elements/gstqueue.h:
895           These are not installed headers, no need for padding.
897 2007-05-24  Wim Taymans  <wim@fluendo.com>
899         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_get_state_func),
900         (gst_bin_continue_func):
901         Enable latency for next release.
902         Restore STATE_LOCK around recalc_state that was left out during the
903         rewrite and could result in racy behaviour when _get_state and
904         recalc_state are run concurrently. See #440463.
906 2007-05-23  Wim Taymans  <wim@fluendo.com>
908         * tests/check/gst/gstsystemclock.c: (store_callback),
909         (GST_START_TEST):
910         Improve test_async_order to also work when both timers are already
911         expired when we get scheduled to check it.
913 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
915         * gst/gstbin.c: (gst_bin_init), (gst_bin_dispose),
916         (gst_bin_set_property), (gst_bin_get_property),
917         (gst_bin_remove_func), (gst_bin_handle_message_func):
918         * gst/gstbin.h:
919           'private' is a c++ keyword, let's not use that in header files,
920           otherwise c++ compilers will throw a tantrum.
922 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
924         * plugins/elements/gstelements.c:
925         * plugins/elements/gstfilesink.c: (gst_file_sink_do_seek),
926         (gst_file_sink_get_current_offset):
927         * plugins/indexers/gstindexers.c: (plugin_init):
928           Use #ifdef for HAVE_XYZ for consistency.
930         * tests/check/Makefile.am:
931         * tests/check/elements/.cvsignore:
932         * tests/check/elements/filesink.c: (setup_filesink),
933         (cleanup_filesink), (GST_START_TEST), (filesink_suite):
934           Add some unit tests for filesink.
936 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
938         Patch by: Mark Nauwelaerts <manauw at skynet be>
940         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
941         (gst_file_sink_query), (gst_file_sink_do_seek),
942         (gst_file_sink_get_current_offset), (gst_file_sink_render):
943         * plugins/elements/gstfilesink.h:
944           Fix position reporting; rename data_written member to current_pos to
945           reflect its real meaning (fixes #412648).
947 2007-05-22  Edward Hervey  <edward@fluendo.com>
949         * docs/gst/gstreamer-sections.txt:
950         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
951         (gst_bin_dispose), (gst_bin_set_property), (gst_bin_get_property),
952         (gst_bin_remove_func), (gst_bin_handle_message_func):
953         * gst/gstbin.h:
954         Add a property for bins that handle the state change of their childs.
955         Fixes #435880
957 2007-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
959         * libs/gst/controller/gstinterpolation.c:
960         Use an array of the correct type when using _get_value_array with
961         linear interpolation.
963 2007-05-22  Stefan Kost  <ensonic@users.sf.net>
965         * gst/gstelement.c (gst_element_requires_clock,
966           gst_element_provides_clock, gst_element_request_pad,
967           gst_element_class_set_details, gst_element_class_set_details_simple,
968           gst_element_default_send_event, gst_element_abort_state,
969           gst_element_continue_state, gst_element_set_state,
970           gst_element_set_state_func, iterator_activate_fold_with_resync):
971         * gst/gstpad.c (gst_pad_activate_pull, gst_pad_set_getcaps_function,
972           gst_pad_fixate_caps, gst_pad_configure_sink, gst_pad_configure_src,
973           gst_pad_query, gst_pad_save_thyself, handle_pad_block, gst_pad_push,
974           gst_pad_get_range, gst_pad_pull_range):
975         * gst/gstpad.h (GST_PAD_LINK_SUCCESSFUL, GST_FLOW_CUSTOM_SUCCESS,
976           GST_FLOW_NOT_SUPPORTED, GST_FLOW_IS_FATAL, GstPadActivateFunction,
977           GstPadActivateModeFunction, GstPadChainFunction,
978           GstPadGetCapsFunction, GstPadAcceptCapsFunction,
979           GstPadFixateCapsFunction, GstPadTemplate):
980         * gst/gstpipeline.c (gst_pipeline_change_state,
981           gst_pipeline_set_new_stream_time, gst_pipeline_use_clock,
982           gst_pipeline_set_clock, gst_pipeline_auto_clock,
983           gst_pipeline_get_delay):
984           Whitespace and docs fixes.
986 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
988         * libs/gst/controller/gstinterpolation.c:
989         (interpolate_trigger_get_enum_value_array),
990         (interpolate_trigger_get_string_value_array):
991         Add support for retrieving value arrays when using the trigger
992         interpolation mode. 
994 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
996         * libs/gst/controller/gstcontroller.c:
997         (gst_controller_get_value_array):
998         * libs/gst/controller/gstcontroller.h:
999         Clarify the docs of gst_controller_get_value_array(): The array where
1000         the values should be written to must be allocated as there seems to be
1001         no way to get the size of a random GType. This doesn't change any
1002         behaviour. Also fix some typos all over the place and remove an unused,
1003         commented function that is not necessary as g_object_set() could be
1004         used instead.
1005         * tests/check/libs/controller.c: (GST_START_TEST),
1006         (gst_controller_suite):
1007         Add unit test for gst_controller_get_value_array().
1009 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
1011         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
1013         Disable part of the gst_buffer_try_new_and_alloc test, because
1014         it can happily succeed on 64-bit systems where there's more address
1015         space available.
1017 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1019         * tests/check/gst/gstpad.c: (GST_START_TEST), (gst_pad_suite):
1020         Add unit test for the improved caps checking from bug #421543.
1022 2007-05-21  Wim Taymans  <wim@fluendo.com>
1024         * docs/design/part-synchronisation.txt:
1025         Small addition.
1027         * gst/gstbin.c: (gst_bin_query):
1028         * plugins/elements/gstqueue.c: (apply_segment):
1029         Improve debugging.
1031         * gst/gstmessage.h:
1032         Improve docs.
1034 2007-05-21  Wim Taymans  <wim@fluendo.com>
1036         * gst/gstpad.c: (gst_pad_get_caps_unlocked),
1037         (gst_pad_acceptcaps_default), (gst_pad_configure_sink),
1038         (gst_pad_configure_src):
1039         Added simple version of improved caps checking. It was previously
1040         assumed that a setcaps function would check the validity of the caps but
1041         people prefer us to check caps against the template automatically. 
1042         Fixes #421543.
1044 2007-05-21  Wim Taymans  <wim@fluendo.com>
1046         * libs/gst/base/gstbasetransform.h:
1047         Fix macro for locking/unlocking the transform lock.
1049 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
1051         * docs/plugins/tmpl/.cvsignore:
1052           Ignore more.
1054 2007-05-18  Edward Hervey  <edward@fluendo.com>
1056         * plugins/elements/gstqueue.c: (gst_queue_loop):
1057         Hello, I am Mr Taymans' personal debugger. Today I will introduce a fix
1058         for the subtle art of warning a potentially blocking thread that it
1059         should check the source pad return value, and relay the information
1060         upstream.
1062 2007-05-18  Edward Hervey  <edward@fluendo.com>
1064         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event):
1065         Release the queue lock !
1067 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
1069         * docs/libs/gstreamer-libs-sections.txt:
1070         Add the two new controller functions to the appropiate places.
1072 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
1074         reviewed by: Stefan Kost <ensonic@users.sf.net>
1076         * libs/gst/controller/gstcontroller.c:
1077         (gst_controller_suggest_next_sync), (gst_controller_sync_values),
1078         (_gst_controller_get_property), (_gst_controller_set_property),
1079         (_gst_controller_init), (_gst_controller_class_init):
1080         * libs/gst/controller/gstcontroller.h:
1081         * libs/gst/controller/gsthelper.c: (gst_object_suggest_next_sync),
1082         (gst_object_get_control_rate), (gst_object_set_control_rate):
1083         API: gst_controller_suggest_next_sync(), gst_object_suggest_next_sync()
1084         Add API that provides sync suggestion timestamps for elements that
1085         call gst_object_sync_values() from which those elements can subdivide
1086         their processing loop to get the best results for the controlled
1087         properties. For now it just suggests last_sync + control_rate as
1088         new timestamp but this will be improved in the future.
1090         While doing that change the control-rate property to a GstClockTime
1091         from guint and change it's meaning from samples to nanoseconds as
1092         the GstController doesn't know anything about sampling rate. Strictly
1093         speaking this breaks ABI but as the control-rate property didn't do
1094         anything in the past and as such couldn't be used this should be no
1095         problem.        
1097 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
1099         reviewed by: Stefan Kost <ensonic@users.sf.net>
1101         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
1102         (gst_controller_unset_all):
1103         * libs/gst/controller/gstcontrollerprivate.h:
1104         * libs/gst/controller/gstinterpolation.c:
1105         (gst_controlled_property_find_control_point_node):
1106         Save last synced value from the list to continue searching from there
1107         in future syncs. This speeds everything up a bit.
1108         
1109 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
1111         reviewed by: Stefan Kost <ensonic@users.sf.net>
1113         * libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
1114         (gst_control_point_find), (gst_controlled_property_new),
1115         (gst_control_point_free), (gst_controlled_property_free),
1116         (gst_controller_set), (gst_controller_set_from_list),
1117         (gst_controller_unset), (gst_controller_unset_all),
1118         (gst_controller_sync_values):
1119         * libs/gst/controller/gstcontroller.h:
1120         * libs/gst/controller/gstcontrollerprivate.h:
1121         * libs/gst/controller/gstinterpolation.c:
1122         (gst_controlled_property_find_control_point_node),
1123         (interpolate_none_get), (interpolate_trigger_get):
1124         Add a new private GstControlPoint struct which "inherits" from
1125         GstTimedValue to allow different interpolators to store internal
1126         values next to each control point. From the outside everything is
1127         still a GstControlPoint so we don't loose binary compatibility.
1128         Also fixup all the GValue handling to not leak GValues or list nodes.
1129         * tests/check/libs/controller.c: (GST_START_TEST):
1130         Free the list nodes and GValues in the controller_misc test.
1132 2007-05-17  Edward Hervey  <edward@fluendo.com>
1134         * gst/gstsegment.c:
1135         Small doc fix.
1137 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
1139         * gst/gstplugin.c: (gst_plugin_load_file):
1140           If we fail to load a plugin because of unresolved symbols or missing
1141           libraries and spew a warning to stderr, we may just as well mention
1142           which plugin it was that failed to load.
1144 2007-05-13  David Schleef  <ds@schleef.org>
1146         * docs/Makefile.am: the gtk-doc makefile snippet correctly
1147           handles the case when ENABLE_GTK_DOC is false, and installs
1148           the prebuilt documentation.  So gtk-doc subdirs are 
1149           unconditionally enabled.  Fixes: #349099.
1151 2007-05-13  David Schleef  <ds@schleef.org>
1153         * gst/gstutils.h: Reword some documentation.
1155 2007-05-12  David Schleef  <ds@schleef.org>
1157         * gst/gstplugin.c: gst_plugin_register_func() doesn't actually
1158           do anything with the passed "module" parameter, so remove it.
1159           Allows removal of additional vestigal code.
1161 2007-05-12  David Schleef  <ds@schleef.org>
1163         * gst/gstplugin.c:
1164           Using sigaction should depend on HAVE_SIGACTION, not HAVE_WIN32.
1165           Switch to using g_stat() because it's more portable.
1167 2007-05-12  David Schleef  <ds@schleef.org>
1169         * gst/gst.c:
1170           Add GST_DISABLE_OPTION_PARSING, in order to disable option
1171           parsing for embedded systems.
1172         * gst/gstelementfactory.c:
1173           Allow gst_element_register() to be called with plugin==NULL.
1174           Did nobody notice that static elements were broken?
1176 2007-05-12  Wim Taymans  <wim@fluendo.com>
1178         * tools/gst-launch.c: (event_loop):
1179         Give more interesting info when buffering starts and stops.
1180         Fix case where buffering starts but we fail to update the buffering flag
1181         because the target state is not PLAYING.
1183 2007-05-12  Wim Taymans  <wim@fluendo.com>
1185         * plugins/elements/gstqueue.c: (gst_queue_init),
1186         (gst_queue_finalize), (update_time_level), (apply_segment),
1187         (apply_buffer), (gst_queue_locked_flush),
1188         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
1189         (gst_queue_handle_sink_event), (gst_queue_chain),
1190         (gst_queue_push_one), (gst_queue_loop):
1191         * plugins/elements/gstqueue.h:
1192         Refactor an cleanup queue a bit.
1193         Do better time level calculations that also work when the srcpad is not
1194         yet running.
1195         Remove some unneeded debug lines.
1197         * tests/check/elements/queue.c: (GST_START_TEST), (queue_suite):
1198         Added testcase for time level measurement.
1199         Try to make some stuff more racefree.
1201 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
1203         * gst/gsturi.c: (gst_element_make_from_uri):
1204           Don't leak plugin feature.
1206         * tests/check/Makefile.am:
1207         * tests/check/gst/.cvsignore:
1208         * tests/check/gst/gsturi.c: (GST_START_TEST), (gst_uri_suite):
1209           Add brain-dead unit test.
1211 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
1213         Patch by: Jeroen Wouters <woutersj at gmail com>
1215         * gst/gsturi.c: (gst_uri_get_protocol), (search_by_entry):
1216           Treat protocol strings in a case-insensitive way (#437563).
1218 2007-05-11  Michael Smith <msmith@fluendo.com>
1220         * gst/gstplugin.c: (gst_plugin_load_file):
1221         * gst/gstregistry.c: (gst_registry_scan_path_level):
1222           Don't print a g_warning for any failure to load a shared object.
1223           Instead, push this down into gstplugin.c, and warn _only_ if we
1224           failed to open the module (i.e. failure to link).
1225           Avoids warnings on normal, working, non-plugin .so files.
1227 2007-05-11  Stefan Kost  <ensonic@users.sf.net>
1229         * gst/gstplugin.c (gst_plugin_load_file):
1230         * gst/gstregistry.c (GST_CAT_DEFAULT,
1231           gst_registry_lookup_feature_locked, gst_registry_scan_path_level):
1232           Print a g_warning if there was an error when loading a plugins during
1233           registry scan. The shuld help beginners starting with gst-plugin
1234           template.
1236 2007-05-10  Wim Taymans  <wim@fluendo.com>
1238         * plugins/elements/gstqueue.c: (gst_queue_class_init),
1239         (update_time_level), (gst_queue_locked_flush),
1240         (gst_queue_handle_sink_event), (gst_queue_chain),
1241         (gst_queue_push_one), (gst_queue_loop):
1242         * plugins/elements/gstqueue.h:
1243         Be smarter when calculating the current amount of data in the queue by
1244         measuring the difference between start and end timestamps (in running
1245         time) inside the queue. Fixes #432876.
1246         API: GstQueue::pushing to notify elements that we are pushing data again
1247         since the running signal is rather broken for this purpose.
1249 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
1251         * plugins/elements/gstqueue.c (_do_init, gst_queue_signals,
1252           gst_queue_base_init, gst_queue_init):
1253           use GST_BOILERPLATE
1255 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
1257         * win32/common/libgstreamer.def:
1258         Add new exported functions.
1259         * win32/vs6/grammar.dsp:
1260         Use grammar pre-generated files.
1262 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
1264         Based on patch by: Peter Kjellerstedt  <pkj at axis com>
1266         * gst/Makefile.am:
1267         * gst/gstparse.c: (gst_parse_launchv), (gst_parse_launch):
1268         * gst/gstparse.h:
1269         * gst/gstutils.c: (gst_parse_bin_from_description):
1270         * gst/gstutils.h:
1271           Maintain API and ABI when --disable-parse is used. Now that
1272           we have an appropriate error code, we can just return NULL and the
1273           appropriate error when gst_parse_launch() is used despite it having
1274           been disabled (#342564).
1276         * tests/check/Makefile.am:
1277         * tests/check/pipelines/.cvsignore:
1278         * tests/check/pipelines/parse-disabled.c:
1279           Make sure these functions exist and return NULL plus a GError when
1280           --disable-parse is used.
1282 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
1284         * tests/benchmarks/complexity.c: (main):
1285         * tests/benchmarks/mass-elements.c: (main):
1286           Set a good example and don't leak messages.
1288 2007-05-06  Stefan Kost  <ensonic@users.sf.net>
1290         * docs/gst/Makefile.am:
1291         * docs/libs/Makefile.am:
1292           Correct fixxrefs options.
1294         * docs/plugins/Makefile.am:
1295         * docs/plugins/gstreamer-plugins-docs.sgml:
1296         * docs/plugins/gstreamer-plugins-sections.txt:
1297         * plugins/elements/Makefile.am:
1298         * plugins/elements/gstcapsfilter.c (gst_capsfilter_details):
1299         * plugins/elements/gstcapsfilter.h (__GST_CAPSFILTER_H__,
1300           GST_TYPE_CAPSFILTER, GST_CAPSFILTER, GST_CAPSFILTER_CLASS,
1301           GST_IS_CAPSFILTER, GST_IS_CAPSFILTER_CLASS, GstCapsFilter,
1302           GstCapsFilterClass, _GstCapsFilter, trans, filter_caps,
1303           _GstCapsFilterClass, trans_class):
1304         * plugins/elements/gstelements.c (name, rank, type, _elements):
1305         * plugins/elements/gstidentity.c
1306           (gst_identity_check_imperfect_timestamp,
1307           gst_identity_check_imperfect_offset):
1308           Document capsfilter and add doc-blurb to identity.
1310 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
1312         * libs/gst/controller/gstcontroller.c:
1313         (gst_controlled_property_set_interpolation_mode):
1314         * libs/gst/controller/gstinterpolation.c:
1315           Don't crash if someone tries to set an interpolation mode that
1316           is invalid or that isn't supported yet. Fixes #422295.
1318         * tests/check/libs/controller.c: (GST_START_TEST),
1319         (gst_controller_suite):
1320           Add a test case for the above.
1322 2007-05-03  Edward Hervey  <edward@fluendo.com>
1324         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
1325         Properly set the last_stop position on GstSegment. This will only happen
1326         if there is a buffer to push out.
1328 2007-05-03  Wim Taymans  <wim@fluendo.com>
1330         * libs/gst/base/gstbasetransform.c:
1331         (gst_base_transform_buffer_alloc):
1332         always_in_place does not mean that the sink and source caps are the
1333         same! Make sure we don't blindly proxy the buffer_alloc in this case.
1335 2007-05-03  Wim Taymans  <wim@fluendo.com>
1337         * docs/libs/gstreamer-libs-sections.txt:
1338         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
1339         (gst_base_src_default_query), (gst_base_src_get_range):
1340         * libs/gst/base/gstbasesrc.h:
1341         API: gst_base_src_query_latency(). Added method so that subclasses can
1342         easily get the latency values of the base source class.
1344 2007-05-02  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
1346         * tools/gst-inspect.c (print_implementation_info):
1347         Remove 0.8 cruft.
1349 2007-05-02  Tim-Philipp Müller  <tim at centricular dot net>
1351         * tools/Makefile.am:
1352         * tools/gst-launch.1.in:
1353           Don't create a customised man page based on the host architecture,
1354           describe the default registry path generically. That way the man
1355           page is the same for all architectures and packagers have one
1356           multilib issue less to deal with. Fixes #434926.
1358 2007-05-02  Wim Taymans  <wim@fluendo.com>
1360         * gst/gstpad.c:
1361         Fix documentation as spotted by rg on IRC. 
1363 2007-04-29  Stefan Kost  <ensonic@users.sf.net>
1365         * gst/gstutils.c:
1366           Improve docs for gst_element_{link,unlink}.
1368 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
1370         * docs/design/part-events.txt:
1371         * docs/design/part-overview.txt:
1372         * gst/gstevent.c:
1373         * gst/gsturi.c:
1374         * gst/gsturi.h:
1375         * libs/gst/base/gstbasesink.c:
1376           Typo fixes; minor docs addition.
1378 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
1380         * docs/gst/gstreamer-sections.txt:
1381         * gst/gsturi.c: (get_element_factories_from_uri_protocol),
1382         (gst_uri_protocol_is_supported), (gst_element_make_from_uri):
1383         * gst/gsturi.h:
1384         API: Add gst_uri_protocol_is_supported(), which checks if a sink
1385         or src that supports a given URI protocol exists.
1387 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
1389         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
1390         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
1391         Set the location to NULL if "file://" is set as URI. Otherwise
1392         some random previous URI would still be set if "file://" is
1393         set on an already used filesink/filesrc.
1395 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
1397         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
1398         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
1399         Special case the "file://" URI as as this is used by some
1400         applications to test with gst_element_make_from_uri if there's
1401         an element that supports the URI protocol.
1402         Also move the g_path_is_absolute() check for the location part
1403         of the URI to also check this for "file://localhost/bla" URIs.
1405 2007-04-26  Tim-Philipp Müller  <tim at centricular dot net>
1407         * docs/gst/gstreamer-sections.txt:
1408         * gst/gstbuffer.c: (gst_buffer_try_new_and_alloc):
1409         * gst/gstbuffer.h:
1410         * tests/check/gst/gstbuffer.c: (GST_START_TEST),
1411         (gst_buffer_suite):
1412           API: add gst_buffer_try_new_and_alloc() plus unit test (#431940).
1414 2007-04-26  Stefan Kost  <ensonic@users.sf.net>
1416         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache),
1417         (gst_registry_binary_load_pad_template),
1418         (gst_registry_binary_load_plugin),
1419         (gst_registry_binary_read_cache):
1420         * gst/gstregistrybinary.h:
1421           Implement no-mmap alternative for registry reading. Do code cleanups.
1422           Add more comments about avoiding strdups for all text data. Comments
1423           welcome.
1425 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
1427         * gst/gstregistrybinary.h (GstBinaryPluginElement,
1428           GstBinaryPluginFeature, _GstBinaryElementFactory, plugin_feature,
1429           GstBinaryElementFactory, _GstBinaryTypeFindFactory, plugin_feature):
1430           Comment structs and reformat to fix the build (that stuff should go
1431           into a priv. header).
1433 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
1435         * gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
1436         (gst_registry_binary_load_feature):
1437         * gst/gstregistrybinary.h:
1438           Refactor so that we can implement multiple features. Add support for
1439           TypeFindFactory features.
1441 2007-04-24  Stefan Kost  <ensonic@users.sf.net>
1443         Patch by: Peter Kjellerstedt <Peter.Kjellerstedt@axis.com>
1445         * configure.ac:
1446           Fix AM_CONDITIONAL(GST_DISABLE_GST_DEBUG,...) and update comment.
1448 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
1450         * gst/gstbin.c: (gst_bin_element_set_state),
1451         (iterator_activate_fold_with_resync), (gst_bin_continue_func),
1452         (bin_handle_async_done), (gst_bin_handle_message_func):
1453           Fix build with --gst-disable-gst-debug
1455 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
1457         * libs/gst/base/gstbasetransform.c: (gst_base_transform_activate):
1458           Make sure streaming has finished before calling the ::stop() vfunc,
1459           since that vfunc might clear state which is being used in the
1460           streaming thread. This fixes a race that caused crashes in
1461           audioresample when shutting down a pipeline (#420106).
1463 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
1465         * docs/gst/gstreamer-sections.txt:
1466           That was one byte missing.
1468 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
1470         * configure.ac:
1471         * docs/gst/gstreamer-sections.txt:
1472         * gst/Makefile.am:
1473         * gst/gstconfig.h.in:
1474         * gst/gstobject.c: (gst_object_class_init),
1475         (gst_signal_object_class_init):
1476         * gst/gstobject.h:
1477           2nd attempt to have a xml-less build as a joined effort of #413123
1478           and #421480.
1480 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
1482         * docs/design/draft-tagreading.txt:
1483           Added open issues/thoughts to draft.
1485 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
1487         * gst/parse/grammar.tab.pre.c:
1488         * gst/parse/grammar.tab.pre.h:
1489         * gst/parse/lex._gst_parse_yy.pre.c:
1490         Update the prebuild parser sources.
1492 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
1494         * gst/parse/Makefile.am:
1495         And now fix the building of the flex sources. Now everything should
1496         work as expected.
1498 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
1500         * gst/parse/Makefile.am:
1501         Now hopefully fix the build failures by setting proper rule
1502         dependencies and moving instead of copying.
1504 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
1506         * tests/benchmarks/complexity.gnuplot:
1507         * tests/benchmarks/complexity.scm:
1508         * tests/benchmarks/mass-elements.gnuplot:
1509         * tests/benchmarks/mass-elements.scm:
1510           Total licensification.
1512 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
1514         * gst/parse/Makefile.am:
1515           Fix the build by correcting the rule that gave wrong files to flex.
1517 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
1519         * tests/benchmarks/complexity.c:
1520         * tests/benchmarks/mass-elements.c:
1521           Change licence to LGPL as granted by Benjamin and Andy.
1523 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
1525         * gst/parse/Makefile.am:
1526         Add correct grammar.tab.h dependency if compiling without new enough
1527         flex. Fixes #431150.
1529 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
1531         * gst/parse/Makefile.am:
1532         Fix typo and use outdated sources if the flex/bison sources are newer
1533         than the pregenerated ones but flex is too old. Print a warning in
1534         that case. This should fix the build on the build bot.
1536 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
1538         Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
1539         * gst/parse/Makefile.am:
1540         * gst/parse/grammar.y:
1541         * gst/parse/parse.l:
1542         Make the parser reentrant and recursively callable. This requires flex
1543         >= 2.5.31, for older versions pregenerated sources are used as we
1544         can't bump the build dependency. Finally fixes #349180.
1546         * gst/gstparse.c: (gst_parse_launch):
1547         Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
1548         now anyway.
1550         * docs/gst/Makefile.am:
1551         * docs/gst/Makefile.am:
1552         * gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
1553         (__gst_parse_strfree), (__gst_parse_link_new),
1554         (__gst_parse_link_free), (__gst_parse_chain_new),
1555         (__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
1556         (gst_parse_element_set), (gst_parse_free_link),
1557         (gst_parse_found_pad), (gst_parse_perform_delayed_link),
1558         (gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
1559         (_gst_parse_launch):
1560         * gst/parse/grammar.tab.pre.h:
1561         * gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
1562         (yy_get_previous_state), (yy_try_NUL_trans), (input),
1563         (_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
1564         (_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
1565         (_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
1566         (_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
1567         (_gst_parse_yypop_buffer_state),
1568         (_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
1569         (_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
1570         (yy_fatal_error), (_gst_parse_yyget_extra),
1571         (_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
1572         (_gst_parse_yyget_in), (_gst_parse_yyget_out),
1573         (_gst_parse_yyget_leng), (_gst_parse_yyget_text),
1574         (_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
1575         (_gst_parse_yyset_column), (_gst_parse_yyset_in),
1576         (_gst_parse_yyset_out), (_gst_parse_yyget_debug),
1577         (_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
1578         (_gst_parse_yyset_lval), (_gst_parse_yylex_init),
1579         (yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
1580         (yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
1581         (_gst_parse_yyfree):
1582         If the installed flex version is too old use pre-generated parser
1583         sources. These pre-generated parser sources are always updated when
1584         the actual flex/bison sources change but require everybody who wants
1585         to change something in the parser to have flex >= 2.5.31 installed.
1587 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
1589         * common/m4/gst-gettext.m4:
1590         * gst/gst-i18n-lib.h:
1591           Make --disable-nls to work
1593 2007-04-17  Wim Taymans  <wim@fluendo.com>
1595         * gst/gstconfig.h.in:
1596         Revert previous change that broke the build.
1598 2007-04-17  Stefan Kost  <ensonic@users.sf.net>
1600         * configure.ac:
1601         * gst/Makefile.am:
1602         * gst/gstconfig.h.in:
1603           Drop libxml2 dependency when building with 
1604           --enable-binary-registry --disable-loadsave
1606 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
1608         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache),
1609         (gst_registry_binary_read_cache):
1610         * gst/gstregistrybinary.h:
1611           Remove unnecessary <sys/mman.h> include which broke the win32 build
1612           with MingW; move includes from header file to .c file, even if the
1613           header file isn't installed; use g_strerror() where UTF-8 strings
1614           are expected, such as in GST_DEBUG messages.
1616 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
1618         * docs/libs/gstreamer-libs-sections.txt:
1619         Remove bogus addition for API I didn't end up keeping.
1621         * libs/gst/base/gstbasesrc.h:
1622         Mention Since: 0.10.13 in the documentation.
1624         Add the API keyword to the previous ChangeLog entry.
1626 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
1628         * docs/libs/gstreamer-libs-sections.txt:
1629         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
1630         (gst_base_src_default_prepare_seek_segment),
1631         (gst_base_src_prepare_seek_segment), (gst_base_src_perform_seek):
1632         * libs/gst/base/gstbasesrc.h:
1633         Allow basesrc derived classes to execute seeks in other formats
1634         by providing a prepare_seek_segment vmethod. Sub-classes can choose
1635         to prepare the GstSegment in any format that their perform_seek method
1636         will be able to understand. The default implementation provides the
1637         old behaviour of attempting to convert the seek offsets to the 
1638         configured native format.
1640         API: basesrc::prepare_seek_segment vmethod.
1642 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
1644         * gst/gstelement.c: (gst_element_get_state_func):
1645         Don't output the same debug statement twice.
1647         * libs/gst/base/gstadapter.c: (gst_adapter_try_to_merge_up),
1648         (gst_adapter_peek), (gst_adapter_take_buffer):
1649         Optimise the case where we have buffers at the head of the queue that
1650         can be joined quickly (because they're contiguous sub-buffers) by
1651         merging them together rather than copying data out into new memory.
1653         * gst/parse/grammar.y:
1654         * tests/check/pipelines/parse-launch.c:
1655         Fix a leak in an error path for parse_launch, and add a check 
1656         for it to the testsuite.
1658 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
1660         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_release_pad):
1661           Don't deadlock when releasing a pad - gst_pad_set_active may try
1662           and take the multiqueue lock too.
1664 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
1666         * gst/gsterror.c: (_gst_core_errors_init):
1667         * gst/gsterror.h:
1668           API: add GST_CORE_ERROR_DISABLED (#392804).
1670 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
1672         * docs/faq/gst-uninstalled:
1673           don't get empty paths on the PATH variables
1674         * gst/gstpad.c (gst_pad_is_active, gst_pad_set_blocked_async):
1675           Don't format for the uncommon terminal width of 84 characters.
1677 2007-04-06  Wim Taymans  <wim@fluendo.com>
1679         * gst/gstpipeline.c: (reset_stream_time),
1680         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time):
1681         Only try to select a different pipeline clock when we went back to
1682         PAUSED and not when we merely got flushed.
1684 2007-04-05  Michael Smith  <msmith@fluendo.com>
1686         * tools/gst-launch.1.in:
1687           fractions are better supported in gstreamer than ractions, so
1688           suggest using those.
1690 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
1692         Submitted by: Mogens Jaeger <mogens@jaeger.tf>
1694         * po/LINGUAS:
1695         * po/da.po:
1696           Added Danish translation.
1698 2007-04-05  Wim Taymans  <wim@fluendo.com>
1700         * libs/gst/base/gstbasesink.c:
1701         (gst_base_sink_queue_object_unlocked), (gst_base_sink_event):
1702         Fix leak caused when refusing newsegment after EOS.
1704         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init),
1705         (gst_fake_sink_init), (gst_fake_sink_set_property),
1706         (gst_fake_sink_get_property), (gst_fake_sink_preroll),
1707         (gst_fake_sink_render), (gst_fake_sink_change_state):
1708         * plugins/elements/gstfakesink.h:
1709         Add num-buffers property to make the element generate EOS after a
1710         configurable amount of buffers.
1711         API: fakesink::num-buffers property.
1713         * tests/check/elements/fakesink.c: (GST_START_TEST),
1714         (fakesink_suite):
1715         Fix GstBus leak in test.
1716         Test for fakesink num-buffers.
1718 2007-04-05  Wim Taymans  <wim@fluendo.com>
1720         * libs/gst/base/gstbasesink.c:
1721         (gst_base_sink_queue_object_unlocked), (gst_base_sink_event),
1722         (gst_base_sink_change_state):
1723         Don't accept anything after an EOS, return UNEXPECTED instead.
1725         * tests/check/elements/fakesink.c: (GST_START_TEST),
1726         (fakesink_suite):
1727         Unit test for new EOS behaviour.
1729 2007-04-05  Wim Taymans  <wim@fluendo.com>
1731         * gst/gstelement.c: (gst_element_get_request_pad):
1732         Make padtemplates also work when they don't contain %s or %d.
1734 2007-04-05  Wim Taymans  <wim@fluendo.com>
1736         * docs/gst/gstreamer-sections.txt:
1737         * gst/gstclock.c: (gst_clock_adjust_unlocked),
1738         (gst_clock_unadjust_unlocked), (gst_clock_set_calibration):
1739         * gst/gstclock.h:
1740         Improve _adjust_unlocked() so that it overflows less.
1741         Add gst_clock_unadjust_unlocked to convert from external time to
1742         internal time based on calibration.
1743         Add some more debug.
1744         API: GstClock::gst_clock_unadjust_unlocked()
1746 2007-04-03  Wim Taymans  <wim@fluendo.com>
1748         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
1750         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_release_pad):
1751         Deactivate pads and free GstSingleQueue with gst_single_queue_free()
1752         when releasing sink pad. Fixes #425400.
1754 2007-04-02  Stefan Kost  <ensonic@users.sf.net>
1756         * docs/random/ensonic/dynlink.txt:
1757           More work on proposal for new core api.
1759         * docs/libs/gstreamer-libs-sections.txt:
1760         * libs/gst/base/gstbasetransform.h:
1761           API: GST_BASE_TRANSFORM_LOCK/UNLOCK added
1762           
1763         * libs/gst/controller/gstcontroller.c:
1764         (on_object_controlled_property_changed),
1765         (gst_controller_sync_values),
1766         (gst_controller_set_interpolation_mode):
1767         * libs/gst/controller/gstcontroller.h:
1768           Less verbose logging add docs for unimplemented parts and correctly
1769           return when using unavailable parts.
1771 2007-03-29  Jan Schmidt  <thaytan@mad.scientist.com>
1773         * gst/gstclock.c: (gst_clock_set_master), (do_linear_regression):
1774         Move all the debug to the CLOCK category, and associate it with
1775         the clock object.
1777 2007-03-29  Jan Schmidt  <thaytan@mad.scientist.com>
1779         * libs/gst/base/gstadapter.c: (gst_adapter_take_buffer):
1780         Make take_buffer a bit quicker by removing redundant checks
1781         caused by calling gst_adapter_take.
1783 2007-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1785         * plugins/elements/gstmultiqueue.c: (gst_single_queue_free):
1786           Don't leak GCond.
1788         * tests/check/Makefile.am:
1789         * tests/check/elements/.cvsignore:
1790         * tests/check/elements/multiqueue.c: (setup_multiqueue),
1791         (GST_START_TEST), (multiqueue_suite):
1792           Add some dead simple unit tests for the 'multiqueue' element
1793           (some bits don't work yet and are disabled for now).
1795 2007-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1797         * gst/gstelement.c: (gst_element_get_request_pad),
1798         (gst_element_class_get_request_pad_template):
1799           Make gst_element_get_request_pad() create request pads only for
1800           request pad templates and not for, say, sometimes pad templates.
1802 2007-03-28  Stefan Kost  <ensonic@users.sf.net>
1804         * docs/design/draft-klass.txt:
1805           Add example that needs more thinking.
1806         
1807         * docs/design/draft-missing-plugins.txt:
1808           More thoughts about wrapper plugins.
1809         
1810         * docs/random/ensonic/embedded.txt:
1811         * docs/random/ensonic/profiling.txt:
1812           More design work.
1814 2007-03-25  Wim Taymans  <wim@fluendo.com>
1816         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range),
1817         (gst_base_src_loop):
1818         Only push the segment events in the PLAYING state for live sources.
1820 2007-03-23  Jan Schmidt  <thaytan@mad.scientist.com>
1822         * gst/gstpipeline.c: (gst_pipeline_change_state):
1823         Modify the clock distribution path in PAUSED->PLAYING so that we 
1824         never attempt to choose a new clock unless we're actually leaving
1825         the PAUSED state for the first time. This prevents choosing a
1826         different clock when the state_change gets called for a 2nd time due
1827         to some element doing an async state change.
1829 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
1831         * gst/gstpad.c: (gst_pad_set_caps), (gst_pad_configure_sink),
1832         (gst_pad_configure_src), (gst_pad_alloc_buffer_full),
1833         (gst_pad_chain_unchecked), (gst_pad_push):
1834         Revert last commit. This needs some more thoughts.
1836 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
1838         * gst/gstpad.c: (gst_pad_set_caps), (gst_pad_alloc_buffer_full),
1839         (gst_pad_chain_unchecked), (gst_pad_push):
1840         Check in set_caps if the caps are compatible with the pad and remove
1841         two functions that are redundant now. Fixes #421543.
1843 2007-03-22  Wim Taymans  <wim@fluendo.com>
1845         * tests/check/gst/gstsystemclock.c: (GST_START_TEST),
1846         (mixed_thread), (mixed_async_cb), (gst_systemclock_suite):
1847         Unref some more to make valgrind happy.
1849 2007-03-22  Wim Taymans  <wim@fluendo.com>
1851         * gst/gstsystemclock.c: (gst_system_clock_id_wait_jitter_unlocked),
1852         (gst_system_clock_id_wait_jitter),
1853         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
1854         Fix anoying regression that survived a few releases. When adding an
1855         async entry while blocking on a sync entry, the sync entry will unblock
1856         but still be busy, so it should continue to wait instead of returning
1857         _BUSY to the app.
1858         Add some comments here and there.
1860         * tests/check/gst/gstsystemclock.c: (mixed_thread),
1861         (mixed_async_cb), (GST_START_TEST), (gst_systemclock_suite):
1862         Add testcase for this.
1864 2007-03-22  Wim Taymans  <wim@fluendo.com>
1866         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
1867         Handle errors from the clock sync better, only UNSCHEDULED indicates a
1868         WRONG_STATE and can silently pause the task. All other cases should
1869         error out.
1871 2007-03-22  Wim Taymans  <wim@fluendo.com>
1873         Patch by: Ville Syrjala <syrjala at sci dot fi>
1875         * gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_send_event):
1876         Fix possible deadlock if pad eventfunc is not specified.  Fixes #421177.
1877         Improve debugging.
1879 2007-03-21  Michael Smith  <msmith@fluendo.com>
1881         * docs/pwg/advanced-types.xml:
1882           Fix some errors in the typefinding docs pointed out on irc.
1884 2007-03-21  Jan Schmidt  <thaytan@mad.scientist.com>
1886         * libs/gst/base/gstbasesrc.c:
1887         Clarify FIXME comment in the face of having added unlock_stop()
1889 2007-03-21  Wim Taymans  <wim@fluendo.com>
1891         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_element_set_state):
1892         Prepare for release where we warn against possible app breakage in the
1893         case of live pipelines along with an env var to enable/disable live
1894         preroll mode (GST_COMPAT=[no-]live-preroll).
1896 2007-03-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1898         * plugins/elements/gstidentity.c (gst_identity_check_imperfect_offset):
1899         So we should use correct constants for checking for None offset.
1901 2007-03-20  Wim Taymans  <wim@fluendo.com>
1903         * docs/design/part-block.txt:
1904         Mention the fact that the newly switched element should be set to at
1905         least PAUSED.
1907 2007-03-20  Wim Taymans  <wim@fluendo.com>
1909         * gst/gst.c:
1910         Fix compilation with registry disabled as spotted by Saur.
1912 2007-03-20  Wim Taymans  <wim@fluendo.com>
1914         Patch by: Olivier Crete <tester at tester dot ca>
1916         * gst/gstelement.c: (gst_element_sync_state_with_parent):
1917         Look at the pending state too when syncing the element state to the
1918         parent. Fixes #420133.
1920 2007-03-19  Jan Schmidt  <thaytan@mad.scientist.com>
1922         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_flushing),
1923         (gst_base_sink_change_state):
1924         * libs/gst/base/gstbasesink.h:
1925         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
1926         (gst_base_src_default_event), (gst_base_src_unlock_stop),
1927         (gst_base_src_deactivate):
1928         * libs/gst/base/gstbasesrc.h:
1929         Add ::unlock_stop to basesrc and basesink. This allows an opportunity
1930         for sub-classes to correctly clear any state they set trying to
1931         unlock, such as clearing out unlock commands from a command fd.
1932         API: basesrc::unlock_stop
1933         API: basesink::unlock_stop
1935         * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init),
1936         (gst_fd_sink_render), (gst_fd_sink_unlock),
1937         (gst_fd_sink_unlock_stop):
1938         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init),
1939         (gst_fd_src_init), (gst_fd_src_unlock), (gst_fd_src_unlock_stop),
1940         (gst_fd_src_create), (gst_fd_src_get_size), (gst_fd_src_do_seek):
1942         Implement unlock_stop in fdsrc and fdsink.
1943         Implement seeking in fdsrc when a seekable fd is passed, as in
1944         gst-launch-0.10 fdsrc ! ... ! xvimagesink < /path/to/file
1946 2007-03-19  Wim Taymans  <wim@fluendo.com>
1948         Patch by: Evan Nemerson <evan at coeus dash group dot com>
1950         * gst/gstelement.c: (gst_element_class_init):
1951         Fix pad-added and pad-removed signal signatures so that the pad type is
1952         stated as GST_TYPE_PAD instead of G_TYPE_OBJECT. Fixes #419851.
1954 2007-03-19  Wim Taymans  <wim@fluendo.com>
1956         * docs/gst/gstreamer-sections.txt:
1957         Add new element field and method.
1959         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
1960         (bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
1961         (gst_bin_recalc_state), (gst_bin_get_state_func),
1962         (gst_bin_element_set_state), (gst_bin_change_state_func),
1963         (gst_bin_continue_func), (bin_bus_handler),
1964         (bin_push_state_continue), (bin_handle_async_start),
1965         (bin_handle_async_done), (gst_bin_handle_message_func):
1966         Make async state changes a bit smarter by using new ASYNC_START and
1967         ASYNC_DONE messages. This reduces the number of times we run the state
1968         recalculation thread.
1969         Don't change state of element with a pending ASYNC_START message.
1970         Deprecate STATE_DIRTY messages.
1971         
1972         * gst/gstelement.c: (gst_element_init), (gst_element_send_event),
1973         (gst_element_get_state_func), (gst_element_continue_state),
1974         (gst_element_lost_state), (gst_element_set_state_func),
1975         (gst_element_change_state):
1976         * gst/gstelement.h:
1977         Keep the state that was last set by the app in a new element field.
1978         Don't allow state changes when handling an element event.
1979         Post ASYNC_START and ASYNC_DONE messages.
1980         Change lost_state so that we go to PAUSED and wait for the parent to set
1981         us to PLAYING again (so latency calculation can be performed)
1982         Export gst_element_change_state() method so that subclasses can use it.
1983         API: gst_element_change_state()
1984         API: GST_STATE_TARGET
1986         * gst/gstpipeline.c: (gst_pipeline_class_init),
1987         (reset_stream_time), (gst_pipeline_change_state),
1988         (gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
1989         Using the new ASYNC_START message we can reset the base_time when
1990         needed. This can then be used to implement base_time redistribution in
1991         flushing seeks so that we can remove the explicit seek handling.
1992         Perform latency query and configuration when going to PLAYING.
1994         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
1995         (gst_base_sink_query), (gst_base_sink_change_state):
1996         Post new ASYNC_START/ASYNC_DONE messages.
1998         * tests/check/generic/sinks.c: (GST_START_TEST):
1999         Fix test because the bin will not set the async element to PLAYING right
2000         away.
2002         * tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
2003         Make the message check a little stronger.
2004         Handle ASYNC messages.
2006         * tests/check/pipelines/cleanup.c: (GST_START_TEST):
2007         * tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
2008         Expect ASYNC_DONE messages.
2010 2007-03-19  Wim Taymans  <wim@fluendo.com>
2012         * docs/gst/gstreamer-sections.txt:
2013         * gst/gstmessage.c: (gst_message_new_async_start),
2014         (gst_message_new_async_done), (gst_message_parse_info),
2015         (gst_message_parse_async_start):
2016         * gst/gstmessage.h:
2017         Add ASYNC_START and ASYNC_DONE messages to prepare for latency
2018         support.
2020 2007-03-15  Tim-Philipp Müller  <tim at centricular dot net>
2022         * tools/gst-inspect.c:
2023         (print_plugin_automatic_install_info_codecs):
2024           Now that we don't check for the 'Codec' keyword any longer in the
2025           klass, we shouldn't spew a warning if the klass isn't a decoder or
2026           encoder (since it might be a Source/Network, for example).
2028 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
2030         * tools/gst-inspect.c:
2031         (print_plugin_automatic_install_info_codecs):
2032           Don't require decoder/demuxer/depayloader elements or
2033           encoder/muxer/paylader elements to have 'Codec' as part of their
2034           factory class string when introspecting a plugin's capabilities.
2035           draft-klass.txt mentions that it might be removed in future, and
2036           flump3dec doesn't have it as part of its class string, so chances
2037           are others might also not have it.
2039 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2041         * po/af.po:
2042         * po/az.po:
2043         * po/bg.po:
2044         * po/ca.po:
2045         * po/cs.po:
2046         * po/de.po:
2047         * po/en_GB.po:
2048         * po/fr.po:
2049         * po/it.po:
2050         * po/nb.po:
2051         * po/nl.po:
2052         * po/ru.po:
2053         * po/sq.po:
2054         * po/sr.po:
2055         * po/sv.po:
2056         * po/tr.po:
2057         * po/uk.po:
2058         * po/vi.po:
2059         * po/zh_CN.po:
2060         * po/zh_TW.po:
2061           Update translations from translation project
2063 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
2065         * gst/gstchildproxy.c: (gst_child_proxy_get_property),
2066         (gst_child_proxy_set_property):
2067           Invert precondition check to be alike the ones in the mimiced gobject
2068           api.
2070 2007-03-13  Stefan Kost  <ensonic@users.sf.net>
2072         * docs/design/draft-tagreading.txt:
2073         * docs/random/ensonic/audiobaseclasses.txt:
2074           Do some Architect work.
2076         * gst/gstobject.c: (gst_object_set_name):
2077           Add a WARNING.
2079         * gst/gstpad.c:
2080           Add docs that point from gst_pad_get_range to gst_pad_pull_range
2082 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
2084         * gst/gstsystemclock.c: (gst_system_clock_init),
2085         (gst_system_clock_start_async), (gst_system_clock_id_wait_async):
2086         Defer starting the async system clock thread until the first async
2087         wait is scheduled. Fixes #414986.
2089 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
2091         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_finalize),
2092         (gst_single_queue_free):
2093           Fix small leak (free GstSingleQueue structure too, not only contents).
2095 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
2097         * gst/gstbin.c:(gst_bin_add):
2098         Use GST_STR_NULL to prevent NULL pointer to be passed to GST_CAT_DEBUG.
2099         * win32/common/libgstbase.def:
2100         * win32/common/libgstreamer.def:
2101         Add new exported functions.
2103 2007-03-09  Wim Taymans  <wim@fluendo.com>
2105         * docs/plugins/gstreamer-plugins-sections.txt:
2106         Fix GstTee docs.
2108 2007-03-09  Wim Taymans  <wim@fluendo.com>
2110         * docs/gst/gstreamer-sections.txt:
2111         * gst/gstbuffer.c: (gst_buffer_copy_metadata), (_gst_buffer_copy):
2112         * gst/gstbuffer.h:
2113         Add metadata copy functions. Fixes #393099.
2114         API: gst_buffer_copy_metadata()
2116         * gst/gstutils.c: (gst_buffer_stamp):
2117         * libs/gst/base/gstbasetransform.c:
2118         (gst_base_transform_prepare_output_buffer):
2119         Use new metadata copy functions.
2121 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
2123         * plugins/elements/gstidentity.c: (gst_identity_class_init),
2124         (gst_identity_init), (gst_identity_check_perfect),
2125         (gst_identity_check_imperfect_timestamp),
2126         (gst_identity_check_imperfect_offset), (gst_identity_transform_ip),
2127         (gst_identity_set_property), (gst_identity_get_property):
2128         * plugins/elements/gstidentity.h:
2129         Separate out check-imperfect-timestamp and check-imperfect-offset.
2130         Put back check-perfect as it was to keep compatibility.
2132 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
2134         * gst/gstelement.c: (gst_element_dispose):
2135         There's no need to warn if VOID_PENDING is not NONE here, as
2136         long as the state is NULL it's ok, and that's checked immediately
2137         above.
2139 2007-03-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2141         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
2142         Fix check for perfect stream to ignore buffers with -1 
2143         offsets/offset ends when checking data contiguity.
2145 2007-03-08  Wim Taymans  <wim@fluendo.com>
2147         * tools/gst-launch.c: (event_loop):
2148         Print INFO messages.
2150 2007-03-08  Wim Taymans  <wim@fluendo.com>
2152         * libs/gst/base/gstbasetransform.c:
2153         (gst_base_transform_sink_eventfunc),
2154         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
2155         (gst_base_transform_activate):
2156         * libs/gst/base/gstbasetransform.h:
2157         Add support for dropping buffers with custom GstFlowReturn.
2158         Set DISCONT flags on outgoing buffers based on QoS, incomming DISCONT
2159         buffers or dropped buffers.
2161         * docs/libs/gstreamer-libs-sections.txt:
2162         docs for new custom return code.
2164         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
2165         Use drop support in base class to implement drop-probability.
2167 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
2169         * gst/gst.c: (load_plugin_func):
2170         * gst/gstplugin.c: (gst_plugin_load_by_name), (gst_plugin_load):
2171         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
2172         * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
2173           Remove newlines at end of debug log strings.
2175 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2177         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
2178         Only post bus message at max, once per buffer received.
2180 2007-03-07  Wim Taymans  <wim@fluendo.com>
2182         * docs/design/Makefile.am:
2183         * docs/design/part-synchronisation.txt:
2184         Add doc about synchronisation
2186         * docs/design/draft-latency.txt:
2187         * docs/design/part-TODO.txt:
2188         * docs/design/part-clocks.txt:
2189         * docs/design/part-events.txt:
2190         * docs/design/part-gstbus.txt:
2191         * docs/design/part-gstpipeline.txt:
2192         * docs/design/part-live-source.txt:
2193         * docs/design/part-messages.txt:
2194         * docs/design/part-overview.txt:
2195         * docs/design/part-streams.txt:
2196         * docs/design/part-trickmodes.txt:
2197         Documentation updates.
2199 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
2201         * gstreamer.doap:
2202         Update the doap file.
2204 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2206         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
2207         Rename non-perfect to imperfect for Mike and for the sanctity of the
2208         language.
2209         Also make sure bus message gets emitted for data-incontiguities.
2211 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2213         * plugins/elements/gstidentity.c: (gst_identity_check_perfect),
2214         (gst_identity_start):
2215         * plugins/elements/gstidentity.h:
2216         Emit bus message if check-perfect is true and we encounter a
2217         non-perfect stream between 2 consecutive buffers.
2218         Fixes #415394.
2220 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
2222         * configure.ac:
2223         Back to CVS
2225 === release 0.10.12 ===
2227 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
2229         * configure.ac:
2230           releasing 0.10.12, "Inevitable Demise"
2232 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
2234         * configure.ac:
2235          Version 0.10.11.2 (0.10.12 pre-release)
2236          Bump libtool versioning.
2238 2007-03-01  Stefan Kost  <ensonic@users.sf.net>
2240         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
2241           Log flow-names and not numbers.
2243 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
2245         * configure.ac:
2246           Convert to new AG_GST style.
2248 2007-02-28  Wim Taymans  <wim@fluendo.com>
2250         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency):
2251         Don't unref query twice.
2253 2007-02-28  Wim Taymans  <wim@fluendo.com>
2255         * gst/gstvalue.c: (gst_value_transform_object_string),
2256         (_gst_value_initialize):
2257         Implement GstObject -> string transform so we print object names
2258         when serializing GValues containing GstObjects.
2260 2007-02-28  Wim Taymans  <wim@fluendo.com>
2262         * docs/gst/gstreamer-sections.txt:
2263         Add new stuff to docs.
2265 2007-02-28  Wim Taymans  <wim@fluendo.com>
2267         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
2268         (gst_base_sink_queue_object_unlocked), (gst_base_sink_send_event),
2269         (gst_base_sink_change_state):
2270         Improve latency query code.
2271         Don't leak latency events.
2273         * tests/check/gst/gstbin.c: (GST_START_TEST):
2274         Improve debugging.
2276 2007-02-28  Wim Taymans  <wim@fluendo.com>
2278         * gst/gstelement.c: (gst_element_message_full),
2279         (gst_element_get_state_func):
2280         * gst/gstelement.h:
2281         Improve docs a little. Added Since: for new macro.
2283         * gst/gstobject.c: (gst_object_sink):
2284         * gst/gstpipeline.c: (gst_pipeline_change_state),
2285         (gst_pipeline_set_new_stream_time):
2286         * gst/gstpipeline.h:
2287         Improve debugging and docs.
2289         * gst/gstutils.c: (gst_element_state_change_return_get_name):
2290         Improve debugging.
2292 2007-02-28  Wim Taymans  <wim@fluendo.com>
2294         * gst/gstelement.c: (gst_element_message_full),
2295         (gst_element_set_locked_state), (gst_element_get_state_func),
2296         (gst_element_change_state):
2297         Handle INFO messages from the GST_ELEMENT_INFO macro as well.
2298         Documentation updates.
2299         Small code cleanups.
2301         * gst/gstmessage.c: (gst_message_new_info),
2302         (gst_message_parse_info):
2303         * gst/gstmessage.h:
2304         API: gst_message_new_info()
2305         API: gst_message_parse_info()
2306         Add INFO message create and parse code.
2308 2007-02-28  Wim Taymans  <wim@fluendo.com>
2310         * gst/gstbin.c: (bin_query_min_max_init), (bin_query_latency_fold),
2311         (bin_query_latency_done):
2312         Also report the live parameter of a latency query.
2314 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
2316         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
2317           Copy the current generic/states example from -base and adapt so
2318           we can use the exact same code everywhere.
2319           Check a STATES_IGNORE_ELEMENTS env var which can be used
2320           to ignore certain element factories for this test, which is
2321           what is being done in -base
2322         * tests/check/Makefile.am:
2323           Mention this environment variable.
2325 2007-02-27  Wim Taymans  <wim@fluendo.com>
2327         * docs/gst/gstreamer-sections.txt:
2328         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
2329         (gst_bus_timed_pop), (gst_bus_pop):
2330         * gst/gstbus.h:
2331         API: gst_bus_timed_pop()
2332         Implement gst_bus_timed_pop() to do a blocking timed wait for a
2333         message to arrive on the bus.
2335         * tests/check/gst/gstbus.c: (GST_START_TEST), (pop_thread),
2336         (gst_bus_suite):
2337         Two unit tests for new _timed_pop() function.
2339 2007-02-23  Wim Taymans  <wim@fluendo.com>
2341         * gst/gstpipeline.c: (gst_pipeline_change_state),
2342         (gst_pipeline_provide_clock_func), (gst_pipeline_set_delay):
2343         Don't ref a NULL clock in _provide_clock_func().
2344         Don't allow an INVALID delay.
2345         Don't try to calculate base_time with an invalid start_time.
2346         Also distribute and notify a NULL clock when it was selected.
2348         * tools/gst-launch.c: (event_loop):
2349         Don't crash when a NULL clock was selected in the pipeline.
2351 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
2353         * docs/design/Makefile.am:
2354         * docs/design/draft-missing-plugins.txt:
2355         * docs/random/draft-missing-plugins.txt:
2356           Some small updates: update plugin system identifier prefix
2357           ('gstreamer.net' to 'gstreamer'), mention our new install
2358           API in libgstbaseutils rather than libgimme-codec, add
2359           reference to the online docs.
2361 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2363         * win32/common/config.h:
2364           Pretty sure Bill never made a powerpc version.  Powerpc hackers,
2365           use moap cl ci to only check in what is mentioned in the ChangeLog.
2367 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2369         * docs/gst/gstreamer-sections.txt:
2370         * gst/gstelement.h:
2371           Fix up documentation to link to the correct GstGError section.
2372           Add GST_ELEMENT_INFO macro since someone else added a Info message.
2374 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2376         * tools/gst-launch.c: (event_loop):
2377           Make sure that we actually show the important message part of a
2378           warning message.
2379           No need to check if the gerror is not NULL to free; first of all
2380           g_free accepts NULL; and second the default error handler would
2381           segfault if gerror was NULL.
2383 2007-02-21  Wim Taymans  <wim@fluendo.com>
2385         * docs/gst/gstreamer-sections.txt:
2386         Removed docs as well.
2388 2007-02-21  Wim Taymans  <wim@fluendo.com>
2390         * gst/gstmessage.c: (gst_message_parse_duration):
2391         * gst/gstmessage.h:
2392         Remove new messages for release.
2394 2007-02-20  Wim Taymans  <wim@fluendo.com>
2396         * docs/design/part-gstghostpad.txt:
2397         * gst/gstghostpad.c: (gst_ghost_pad_dispose),
2398         (gst_ghost_pad_new_full):
2399         Make the ghostpad a parent of the internal pad again for better backward
2400         compatibility. Don't write code that relies on this however.
2402         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_activate_push),
2403         (gst_pad_link_check_hierarchy):
2404         Require that parents should be GstElements in the hierarchy check.
2406 2007-02-20  Wim Taymans  <wim@fluendo.com>
2408         * gst/gstbin.c: (bin_replace_message), (gst_bin_add_func),
2409         (gst_bin_change_state_func), (bin_query_min_max_init),
2410         (bin_query_latency_fold), (bin_query_latency_done),
2411         (gst_bin_query):
2412         Improve debug info.
2413         Implement latency query.
2415 2007-02-20  Wim Taymans  <wim@fluendo.com>
2417         * docs/design/part-gstghostpad.txt:
2418         * gst/gstghostpad.c: (gst_ghost_pad_class_init),
2419         (gst_ghost_pad_internal_do_activate_push),
2420         (gst_ghost_pad_internal_do_activate_pull),
2421         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
2422         (gst_ghost_pad_do_link), (gst_ghost_pad_dispose),
2423         (gst_ghost_pad_new_full), (gst_ghost_pad_set_target):
2424         Do not set the internal pad as a parent anymore so we can avoid
2425         hierarchy linking errors when the ghostpad has no parent yet. This also
2426         fixes failed activation because of unlinked internal pads, which in
2427         turn fixes the impossible case where you have to activate a pad before
2428         you can add it to a running element.
2429         Also fix the docs.
2431         * gst/gstpad.c: (pre_activate), (post_activate),
2432         (gst_pad_set_active), (gst_pad_activate_pull),
2433         (gst_pad_activate_push), (gst_pad_check_pull_range):
2434         Add some more debug info.
2435         Mark activation mode in pre_activate so that we don't try to activate in
2436         endless loops. Fixes #385084.
2438 2007-02-19  Wim Taymans  <wim@fluendo.com>
2440         * libs/gst/base/gstbasetransform.c: (gst_base_transform_init),
2441         (gst_base_transform_check_get_range):
2442         Implement a checkgetrange function instead of relying on the default
2443         core behaviour that assumes we can operate in pull mode if we have a
2444         getrange function. First step at fixing #385084.
2446 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
2448         * gst/gstchildproxy.h:
2449         * libs/gst/base/gstbasesink.h:
2450         * libs/gst/base/gstbasesrc.h:
2451         * libs/gst/base/gstbasetransform.h:
2452         More docs coverage and some ChangeLog surgery (add missing names)
2454 2007-02-15  Wim Taymans  <wim@fluendo.com>
2456         * docs/design/part-TODO.txt:
2457         * docs/design/part-activation.txt:
2458         * docs/design/part-block.txt:
2459         * docs/design/part-buffering.txt:
2460         * docs/design/part-clocks.txt:
2461         * docs/design/part-element-source.txt:
2462         * docs/design/part-events.txt:
2463         * docs/design/part-gstbin.txt:
2464         * docs/design/part-gstbus.txt:
2465         * docs/design/part-gstpipeline.txt:
2466         * docs/design/part-live-source.txt:
2467         * docs/design/part-messages.txt:
2468         * docs/design/part-overview.txt:
2469         * docs/design/part-qos.txt:
2470         * docs/design/part-query.txt:
2471         * docs/design/part-states.txt:
2472         * docs/design/part-trickmodes.txt:
2473         Some doc updates. Start renaming from stream_time to running_time where
2474         it was used wrongly.
2476 2007-02-15  Wim Taymans  <wim@fluendo.com>
2478         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query):
2479         Answer LATENCY query.
2481 2007-02-15  Wim Taymans  <wim@fluendo.com>
2483         * tests/check/gst/gstevent.c: (event_probe), (test_event),
2484         (GST_START_TEST):
2485         Improve debugging.
2487 2007-02-15  Wim Taymans  <wim@fluendo.com>
2489         * gst/gstpad.c: (gst_pad_get_internal_links_default),
2490         (gst_pad_dispatcher):
2491         Improve debugging of default pad dispatcher and query functions.
2493 2007-02-15  Wim Taymans  <wim@fluendo.com>
2495         * docs/gst/gstreamer-sections.txt:
2496         Remove old unused method.
2498 2007-02-13  Wim Taymans  <wim@fluendo.com>
2500         * tests/check/gst/gstsegment.c: (GST_START_TEST):
2501         Fix check
2503 2007-02-13  Wim Taymans  <wim@fluendo.com>
2505         * docs/design/part-seeking.txt:
2506         Some small update.
2508         * gst/gstsegment.c: (gst_segment_set_seek):
2509         Revert old bogus change that should make seeking work again.
2511 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
2513         * docs/random/ensonic/dynlink.txt:
2514         * docs/random/ensonic/interfaces.txt:
2515         * docs/random/ensonic/receipies.txt:
2516           Possible dynamic reconnection api, plus some type fixes the other two
2517           docs.
2519 2007-02-13  Sebastian Dröge  <slomo@circular-chaos.org>
2521         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
2522         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
2523         Also check for an absolute path following file:// in the filesrc
2524         element. Remove redundant check and call g_path_is_absolute() on the
2525         unescaped location.
2527 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
2529         * docs/design/draft-klass.txt:
2530           Add existing category analysis.
2531           
2532         * gst/gstcaps.c:
2533           Fix doc example, framerate is a fraction.
2535 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
2537         * configure.ac:
2538         * docs/gst/Makefile.am:
2539         * docs/gst/gstreamer-sections.txt:
2540         * docs/libs/Makefile.am:
2541           Erm, forgot a bunch of --extra-dir.
2543 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
2545         * configure.ac:
2546         * docs/gst/Makefile.am:
2547         * docs/libs/Makefile.am:
2548         * docs/plugins/Makefile.am:
2549           Add crossreferences to glib/gobject docs.
2551 2007-02-12  Wim Taymans  <wim@fluendo.com>
2553         * docs/design/draft-latency.txt:
2554         Small update.
2556         * docs/libs/gstreamer-libs-sections.txt:
2557         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
2558         (gst_base_sink_get_latency), (gst_base_sink_query_latency),
2559         (gst_base_sink_wait_clock), (gst_base_sink_send_qos),
2560         (gst_base_sink_perform_qos), (gst_base_sink_queue_object_unlocked),
2561         (gst_base_sink_chain_unlocked), (gst_base_sink_send_event),
2562         (gst_base_sink_get_position), (gst_base_sink_query),
2563         (gst_base_sink_change_state):
2564         * libs/gst/base/gstbasesink.h:
2565         API: gst_base_sink_query_latency() to let subclasses query the upstream
2566         latency.
2567         API: gst_base_sink_get_latency() to let subclasses query the configured
2568         latency in the sink.
2569         Implement query and set latency.
2570         Update some docs.
2571         As spotted by Will Newton <will dot newton at gmail dot com>: Make sure we
2572         don't continue preroll when we are flushing. Fixes #405284.
2574         * tests/check/pipelines/stress.c: (change_state_timeout),
2575         (quit_timeout), (GST_START_TEST), (stress_suite):
2576         Test for #405284.
2578 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
2580         Patch by: René Stadler <mail at renestadler de>
2582         * docs/gst/gstreamer-sections.txt:
2583         * gst/gsttaglist.c: (_gst_tag_initialize):
2584         * gst/gsttaglist.h:
2585           API: add GST_TAG_REFERENCE_LEVEL (#403597).
2587 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
2589         * docs/libs/Makefile.am:
2590           Fix path to core docs.
2592         * gst/gstbin.c: (gst_bin_get_by_interface),
2593         (gst_bin_iterate_all_by_interface):
2594           Refix docs by also renaming 'interface' to 'iface' in implementation.
2596         * docs/gst/gstreamer-sections.txt:
2597         * gst/gstcaps.c:
2598         * gst/gstchildproxy.c: (gst_child_proxy_base_init):
2599         * gst/gstchildproxy.h:
2600         * gst/gstelementfactory.c:
2601         * gst/gstpadtemplate.h:
2602         * libs/gst/controller/gstcontroller.c:
2603         (gst_controlled_property_new):
2604           Document more.
2606 2007-02-10  Sébastien Moutte  <sebastien@moutte.net>
2608         * gst/gstbin.h:(gst_bin_get_by_interface),
2609         (gst_bin_iterate_all_by_interface):
2610         Replace interface parameter name by iface as interface is 
2611         a reserved keyword in Visual Studio for C++ projects so it removes
2612         a build error for application developpers using VS.
2613         * plugins/elements/gstfilesrc.c:(gst_file_src_uri_set_uri):
2614         Fix a bug on Windows in uri format check. Now the prefix checked
2615         is file:// and next we check if the path after file:// is absolute.
2616         * win32/common/libgstbase.def:
2617         * win32/common/libgstdataprotocol.def:
2618         * win32/common/libgstgstreamer.def:
2619         Add new exported functions.
2621 2007-02-09  Andy Wingo  <wingo@pobox.com>
2623         * tests/check/pipelines/simple-launch-lines.c
2624         (simple_launch_lines_suite, test_tee): Disable tee test until I
2625         have time to fix it :-(
2627         * tests/check/Makefile.am (noinst_HEADERS): 
2628         * tests/check/libs/libsabi.c: 
2629         * tests/check/libs/struct_ppc32.h: Add ABI checks for PPC32.
2630         * tests/check/gst/gstabi.c: 
2631         * tests/check/gst/struct_ppc32.h: Add ABI checks for PPC32.
2633         * tests/check/pipelines/simple-launch-lines.c (test_tee): Add
2634         tests for push and pull tee behavior.
2636         * plugins/elements/gsttee.h: 
2637         * plugins/elements/gsttee.c: Describe has-sink-loop better, and
2638         mark as deprecated as well as unimplemented. It was a crack idea.
2639         Add support for tee operating in pull mode, off by default.
2641         * gst/gstregistryxml.c (load_feature, load_plugin): Drop some
2642         normal-case logs down to LOG, raise errors to WARNING.
2643         (gst_registry_xml_read_cache): Don't log before calling a function
2644         that logs.
2646         * gst/gstregistry.c (gst_registry_finalize): Less debug on program
2647         exit (registry finalize).
2648         (gst_registry_add_plugin, gst_registry_add_feature): No need for a
2649         DEBUG log when we emit signals that people don't even have the
2650         chance to connect to.
2651         (gst_registry_scan_path_level): Less logging in the normal case.
2653 2007-02-05  Sebastian Dröge  <slomo@circular-chaos.org>
2655         Patch by: Michal Benes <michal dot benes at itonis dot tv>
2657         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
2658         Correctly generate EOS for non-seekable files. We don't have a total
2659         length for them and would get an unexpected end of file if we only
2660         special-cased for regular files. (Fixes: #404569)
2662 2007-02-05  Sebastian Dröge  <slomo@circular-chaos.org>
2664         * tests/check/elements/filesrc.c: (GST_START_TEST),
2665         (filesrc_suite):
2666         Add unit test for the GstURIHandler interface in filesrc. This also
2667         tests the newly added file://localhost/foo/bar support.
2669 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
2671         * gst/gstelementfactory.h:
2672           The klass string is not a hierarchy. Add reference to the design doc
2673           for more information and common types.
2675 2007-02-02  Wim Taymans  <wim@fluendo.com>
2677         * gst/gstquery.c: (gst_query_new_latency):
2678         Remove old structure field.
2680 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
2682         * tools/gst-launch.1.in:
2683           Give example for network streaming (#351998)
2685 2007-02-02  Wim Taymans  <wim@fluendo.com>
2687         * docs/gst/gstreamer-sections.txt:
2688         Add docs for new methods.
2690         * gst/gstevent.c: (gst_event_new_latency),
2691         (gst_event_parse_latency):
2692         * gst/gstevent.h:
2693         Add new LATENCY event to configure latency in a pipeline.
2694         API: gst_event_new_latency
2695         API: gst_event_parse_latency
2697         * gst/gstmessage.c: (gst_message_new_buffering),
2698         (gst_message_new_lost_preroll), (gst_message_new_prerolled),
2699         (gst_message_new_latency), (gst_message_parse_buffering),
2700         (gst_message_parse_lost_preroll):
2701         * gst/gstmessage.h:
2702         Added messages used in draft-latency.
2703         API: gst_message_new_lost_preroll
2704         API: gst_message_parse_lost_preroll
2705         API: gst_message_new_prerolled
2706         API: gst_message_new_latency
2708         * gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
2709         (gst_query_parse_latency):
2710         * gst/gstquery.h:
2711         Implemented new latency query as in design doc.
2712         API: gst_query_new_latency
2713         API: gst_query_set_latency
2714         API: gst_query_parse_latency
2716 2007-02-02  Wim Taymans  <wim@fluendo.com>
2718         * docs/design/draft-latency.txt:
2719         Slight redesign to allow for dynamic latency adjustments.
2721         * docs/design/part-negotiation.txt:
2722         Fix some typos.
2724 2007-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
2726         reviewed by: Wim Taymans <wim@fluendo.com>
2728         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
2729         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
2730         Allow file://localhost/foo/bar URLs and correctly fail for every other
2731         hostname that one sets. This was gnomevfssrc is linked for those if
2732         installed as it can handle it (#403172)
2734 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
2736         reviewed by: Tim-Philipp Müller <tim at centricular dot net>
2738         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
2739         (unref_data), (gst_collect_pads_add_pad_full):
2740         * libs/gst/base/gstcollectpads.h:
2741         Don't put the previously added destroy notify in the GstCollectData
2742         struct as all it's padding is already used and we don't want to break
2743         ABI. Instead put in the pad's GObject data for now. This should be
2744         cleaned up for 0.11 (#402393).
2746 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
2748         reviewed by: Wim Taymans <wim@fluendo.com>
2750         * docs/libs/gstreamer-libs-sections.txt:
2751         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
2752         (unref_data), (gst_collect_pads_add_pad),
2753         (gst_collect_pads_add_pad_full):
2754         * libs/gst/base/gstcollectpads.h:
2755         API: Add function to specify a destroy notification for custom
2756         GstCollectData when adding new pads in GstCollectPads (#402393).
2758 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
2760         * po/sv.po:
2761           Update Swedish translation (#378255).
2763 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
2765         * docs/design/draft-klass.txt:
2766           Fix the previous change, this is a list of categories and not a hierarchy.
2768 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
2770         * docs/design/draft-klass.txt:
2771           Add info about how to get a list of used classes.
2773 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
2775         * plugins/elements/gsttypefindelement.c:
2776         (gst_type_find_element_chain_do_typefinding),
2777         (gst_type_find_element_change_state):
2778           Don't leak found caps in chain function (no idea why that never
2779           showed up as a leak anywhere).
2781 2007-01-30  Stefan Kost  <ensonic@users.sf.net>
2783         * gst/gstplugin.h:
2784           Fix and expand GstPluginDesc API docs.
2786 2007-01-29  Stefan Kost  <ensonic@users.sf.net>
2788         * gst/gstcaps.c:
2789         * gst/gstelementfactory.c:
2790         * gst/gstpadtemplate.h:
2791           api doc fixes
2793         * libs/gst/controller/gstcontroller.c:
2794         (gst_controlled_property_new):
2795         * tests/examples/controller/audio-example.c:
2796           comment fixes
2798 2007-01-29  Stefan Kost  <ensonic@users.sf.net>
2800         * configure.ac:
2801           comment about refining the xml deps
2803         * docs/manuals.mak:
2804           comments about moving away from jade for docs
2805         
2806         * gst/gst.c:
2807           recommit the ifdefs to use the binary registry
2808         
2809         * gst/gstbin.c: (gst_bin_change_state_func):
2810           this break is obsolete
2812         * gst/gstelementfactory.h:
2813           better GST_ELEMENT_DETAILS docs, add comment about translation
2815         * gst/gstinfo.h:
2816           remove eol slash
2818         * gst/gstobject.c: (gst_signal_object_get_type):
2819           add G_UNLIKELY as usual
2821         * gst/gstpad.c: (gst_pad_event_default):
2822           add fall trhu comment
2824         * gst/gstregistrybinary.c: (gst_registry_binary_write),
2825         (gst_registry_binary_initialize_magic),
2826         (gst_registry_binary_save_string),
2827         (gst_registry_binary_save_pad_template),
2828         (gst_registry_binary_save_feature),
2829         (gst_registry_binary_save_plugin),
2830         (gst_registry_binary_write_cache),
2831         (gst_registry_binary_check_magic),
2832         (gst_registry_binary_load_pad_template),
2833         (gst_registry_binary_load_feature),
2834         (gst_registry_binary_load_plugin),
2835         (gst_registry_binary_read_cache):
2836           comment typo and formatting
2838         * gst/gstutils.c: (gst_element_state_get_name),
2839         (gst_element_state_change_return_get_name):
2840           remove obsolete breaks
2842         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
2843           add FIXME 0.11 and remove cpp comment
2845 2007-01-29  Edward Hervey  <edward@fluendo.com>
2847         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
2848         Fix print statement in an even more portable way.
2850 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
2852         * docs/gst/gstreamer-sections.txt:
2853         * gst/gstutils.h:
2854           API: add GST_ROUND_DOWN_* macros (#401781).
2856 2007-01-27  Tim-Philipp Müller  <tim at centricular dot net>
2858         * docs/gst/gstreamer.types.in:
2859         * gst/gstregistry.c: (gst_registry_class_init):
2860           Document registry signals and make gtk-doc pick them up (#401381).
2862 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
2864         * docs/pwg/building-testapp.xml:
2865           Add some audioconverts and audioresample to the pipeline, and some
2866           more comments and error handling.
2868 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
2870         * docs/manual/manual.xml:
2871         * docs/pwg/pwg.xml:
2872           Fix typo (#400987).
2874 2007-01-26  Wim Taymans  <wim@fluendo.com>
2876         * gst/gstcaps.c: (gst_static_caps_get):
2877         Init caps flags too.
2879 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
2881         Patch by: Jindrich Makovicka <jindrich.makovick at itonis dot tv>
2883         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
2884         If not using mmap'ed files try to seek to the end instead of the
2885         start to determine whether we can seek at all. This fixes the case
2886         of 2GB+ files over NFS, where seeks in the first 2GB can succeed but
2887         seeks for everything afterwards fail. Fixes #400656
2889 2007-01-25  Wim Taymans  <wim@fluendo.com>
2891         * gst/gstcaps.c: (_gst_caps_free), (gst_static_caps_get):
2892         Add some refcount debugging.
2893         Make gst_static_caps_get threadsafe, which is needed when autoplugging
2894         in multiple streaming threads.
2896 2007-01-25  Wim Taymans  <wim@fluendo.com>
2898         Patch by: David Schleef <ds at schleef dot org>
2900         * docs/libs/gstreamer-libs-sections.txt:
2901         * libs/gst/base/gstadapter.c: (gst_adapter_copy):
2902         * libs/gst/base/gstadapter.h:
2903         API: gst_adapter_copy() that can reduce the amount of memcpy when
2904         getting data from the adapter. Fixes #388201.
2906 2007-01-25  Edward Hervey  <edward@fluendo.com>
2908         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
2909         In print statements, "%x" is for guint. Fixes build on macosx.
2911 2007-01-24  Edward Hervey  <edward@fluendo.com>
2913         * plugins/elements/gstmultiqueue.c:
2914         (gst_multi_queue_loop):
2915         Small fix.
2916         (single_queue_overrun_cb), (single_queue_underrun_cb),
2917         (single_queue_check_full), (gst_single_queue_new):
2918         Implement single queue growth system.
2919         This uses the extra-size properties, and will grow single queues by
2920         that much if one goes full whereas there are others empty. This is
2921         called extra-mode in the code.
2922         When a single queue's levels go back below the initial max-size
2923         limits, it is no longer in extra-mode. This is to ensure we don't
2924         consume too much memory.
2925         Fixes #399875
2927 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
2929         * gst/gst.c: (gst_init_get_option_group):
2930           Make warning about late g_thread_init() calls a bit more explicit,
2931           so that it's more obvious to application developers what they need
2932           to do if a user files a bug against their application.
2934 2007-01-22  Edward Hervey  <edward@fluendo.com>
2936         * plugins/elements/gstmultiqueue.c:
2937         (gst_multi_queue_src_activate_push), (gst_single_queue_new):
2938         Remove previous hack of unsetting the flushing flag for the source pad
2939         instead of activating it. Instead, fix the source pad activate function
2940         so that it no longer depends on having a parent set or not.
2942 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
2944         Patch by: Carlos Sanmartin Dominguez <csanmartin@igalia.com>
2946         * docs/manual/basics-bus.xml:
2947           Fix example code, gst_element_unref() doesn't exist any longer.
2949 2007-01-21  Tim-Philipp Müller  <tim at centricular dot net>
2951         Patch by: Mark Nauwelaerts <manauw at skynet be>
2953         * gst/gstpad.c:
2954           Fix two docs typoes (#399094).
2956 2007-01-19  Edward Hervey  <edward@fluendo.com>
2958         * docs/faq/gst-uninstalled:
2959         Add gst-plugins-base/gst/utils/ to LD_LIBRARY_PATH so that plugins
2960         depending on libgstbaseutils can work in uninstalled environment.
2962 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
2964         * gst/gsttaglist.h:
2965         * gst/gsttagsetter.c:
2966         Add more docs regarding tag merge-modes and when to send tags. Fix 'since'
2967         statement for new tag.
2969 2007-01-17  Edward Hervey  <edward@fluendo.com>
2971         * plugins/elements/gstmultiqueue.c: (gst_single_queue_new):
2972         When dynamically creating single queues, activate sinkpad before adding
2973         it.
2974         We should be doing the same thing for the source pad, but we can't
2975         since it would call a method which needs the parent to be set in order
2976         to work propertly. Instead of activating the source pad, we just unset
2977         the flushing flag, which is the minimal requirement for adding a pad
2978         to an element in a state greater than READY.
2980 2007-01-17  Edward Hervey  <edward@fluendo.com>
2982         * docs/faq/gst-uninstalled:
2983         Add DYLD_LIBRARY_PATH declarations so we can also use this script on
2984         Mac OS X.
2986 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
2988         * tests/check/gst/gstabi.c:
2989         * tests/check/gst/struct_hppa.h:
2990         * tests/check/libs/libsabi.c:
2991         * tests/check/libs/struct_hppa.h:
2992           Add ABI structs for HPPA (see #393796).
2994 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
2996         * libs/gst/check/gstcheck.c: (gst_check_abi_list):
2997           Actually write ABI structs to the file specified in the GST_ABI
2998           environment variable, as the message we print claims we would.
3000 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
3002         * tests/check/gst/gsttask.c:
3003           Fix header comment.
3005 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
3007         * gst/gsttaglist.c: (_gst_tag_initialize):
3008           Change tag type from STRING to DOUBLE. Apply ChangeLog surgery for my
3009           previous two entries.
3011 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
3013         * docs/gst/gstreamer-sections.txt:
3014         * gst/gsttaglist.c: (_gst_tag_initialize):
3015         * gst/gsttaglist.h:
3016           Add tag support for beat-per-minute.
3018 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
3020         * gst/gstregistrybinary.c: (gst_registry_binary_write),
3021         (gst_registry_binary_initialize_magic),
3022         (gst_registry_binary_save_string), (gst_registry_binary_make_data),
3023         (gst_registry_binary_save_pad_template),
3024         (gst_registry_binary_save_feature),
3025         (gst_registry_binary_save_plugin),
3026         (gst_registry_binary_write_cache),
3027         (gst_registry_binary_check_magic),
3028         (gst_registry_binary_load_pad_template),
3029         (gst_registry_binary_load_feature),
3030         (gst_registry_binary_load_plugin),
3031         (gst_registry_binary_read_cache):
3032         * gst/gstregistrybinary.h:
3033           Use glib types, cleanup comments, impement interfaces and uri-types.
3035 2007-01-13  Andy Wingo  <wingo@pobox.com>
3037         * gst/gstpad.c (gst_pad_get_range, gst_pad_pull_range): Allow
3038         getrange() to return buffers with other caps, while we fix
3039         demuxers and typefind, or otherwise change part-negotiation.txt.
3041 2007-01-12  Andy Wingo  <wingo@pobox.com>
3043         * libs/gst/base/gstbasetransform.c (gst_base_transform_activate):
3044         Factor start/stop into this private function instead of partially
3045         in activate functions and partially in the change_state function.
3046         Fixes setup before the element has changed from READY->PAUSED, as
3047         is the case in pull-mode pipelines.
3048         (gst_base_transform_sink_activate_push)
3049         (gst_base_transform_src_activate_pull): Refactor to use
3050         gst_base_transform_activate().
3051         (gst_base_transform_change_state): Removed, not needed any more.
3053         * libs/gst/base/gstbasesink.c (gst_base_sink_negotiate_pull):
3054         Truncate before fixating.
3055         
3056         * libs/gst/base/gstbasesink.c (gst_base_sink_negotiate_pull):
3057         Don't set_caps() if the result of fixating is ANY, as it's not
3058         supported, and not necessary in the case of a link with no
3059         template caps on either side. Fixes tests/check/libs/basesrc in
3060         some pull-mode tests.
3062         * libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate):
3063         (gst_base_transform_init, gst_base_transform_sink_activate_push)
3064         (gst_base_transform_src_activate_pull): 
3065         Track the activation mode.
3066         (gst_base_transform_setcaps): In pull mode, when activating the
3067         src pad, after activating the sink pad, activate the sink pad's
3068         peer, as discussed in part-negotiation.txt.
3070         * libs/gst/base/gstbasesrc.h: 
3071         * libs/gst/base/gstbasesrc.c (gst_base_src_fixate): Add fixate
3072         vmethod, as in basesink.
3074         * libs/gst/base/gstbasesink.h: Reformat docs, add fixate vmethod.
3076         * libs/gst/base/gstbasesink.c (gst_base_sink_pad_setcaps): In pull
3077         mode, first proxy the setcaps to the peer pad.
3078         (gst_base_sink_pad_fixate): Add a fixate function that calls the
3079         new fixate vmethod.
3080         (gst_base_sink_default_activate_pull): Rename from
3081         gst_base_sink_activate_pull.
3082         (gst_base_sink_negotiate_pull): New function, performs negotiation
3083         in pull mode before calling ::activate_pull().
3084         (gst_base_sink_pad_activate_pull): Actually call the activate_pull
3085         vmethod instead of the default implementation. I have no idea how
3086         this worked before. Negotiate before calling activate_pull.
3088         * gst/gstpad.c (gst_pad_activate_pull): Refuse to activate unlinked
3089         sink pads in pull mode. In addition to being correct, fixes
3090         filesrc ! decodebin ! identity ! fakesink.
3091         (gst_pad_get_range, gst_pad_pull_range): Don't call
3092         gst_pad_set_caps() if the caps changes; instead error out with
3093         GST_FLOW_NOT_NEGOTIATED, as discussed in part-negotiation.txt.
3095 2007-01-12  Andy Wingo  <wingo@pobox.com>
3097         * docs/design/part-negotiation.txt: Update with more policy.
3099 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
3101         * libs/gst/check/gstbufferstraw.h:
3102         * libs/gst/check/gstcheck.h:
3103           Add G_BEGIN_DECLS and G_END_DECLS. Move GST_CHECK_MAIN where it
3104           belongs.
3106 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
3108         * tests/check/Makefile.am:
3109         * tests/check/gst/.cvsignore:
3110         * tests/check/gst/gsttagsetter.c: (gst_dummy_enc_add_interfaces),
3111         (gst_dummy_enc_base_init), (gst_dummy_enc_class_init),
3112         (gst_dummy_enc_init), (tag_list_foreach), (tag_setter_list_length),
3113         (GST_START_TEST), (gst_tag_setter_suite):
3114           Add minimal unit test for beforementioned GstTagSetter bug.
3116 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
3118         Patch by: René Stadler <mail at renestadler dot de>
3120         * gst/gsttagsetter.c: (gst_tag_setter_merge_tags):
3121           gst_tag_list_merge() returns a new list, so it's not the best idea
3122           to ingore its return value. Effectively meant that tags could only
3123           be merged on a GstTagSetter once using _merge_tags(). Fixes #395554.
3124           Also add function guard to require a non-NULL taglist as input (has
3125           always been so due to gst_tag_list_copy(), just making it explicit).
3127 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
3129         * docs/random/draft-missing-plugins.txt:
3130           Some additions: mention new API that is supposed to be used at the
3131           various stages; short blob about new gst-inspect introspection
3132           option; mention potential future problem with plugins that have
3133           a dynamic list of elements (such as ladspa, pitfdll, libvisual).
3135 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
3137         * tools/gst-inspect.c:
3138         (print_plugin_automatic_install_info_codecs),
3139         (print_plugin_automatic_install_info_protocols),
3140         (print_plugin_automatic_install_info), (main):
3141         Add --print-plugin-auto-install-info option to gst-inspect, so we can
3142         introspect plugin files and get machine-parsable output that corresponds
3143         to the last bit of the missing-plugin installer string (small gotcha:
3144         doesn't take into account ranks).
3146 2007-01-11  Stefan Kost  <ensonic@users.sf.net>
3148         * configure.ac:
3149         * docs/gst/gstreamer-sections.txt:
3150         * gst/Makefile.am:
3151         * gst/gstregistry.c: (gst_registry_lookup_feature_locked),
3152         (gst_registry_lookup_locked):
3153         * gst/gstregistry.h:
3154         * gst/gstregistrybinary.c: (gst_registry_binary_write),
3155         (gst_registry_binary_initialize_magic),
3156         (gst_registry_binary_save_string),
3157         (gst_registry_binary_save_pad_template),
3158         (gst_registry_binary_save_feature),
3159         (gst_registry_binary_save_plugin),
3160         (gst_registry_binary_write_cache),
3161         (gst_registry_binary_check_magic),
3162         (gst_registry_binary_load_pad_template),
3163         (gst_registry_binary_load_feature),
3164         (gst_registry_binary_load_plugin),
3165         (gst_registry_binary_read_cache):
3166         * gst/gstregistrybinary.h:
3167         * gst/gstregistryxml.c: (load_feature),
3168         (gst_registry_xml_read_cache):
3169           commit binary registry (disabled by default, see #359653)
3171 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
3173         * tests/check/gst/gstpad.c: (test_get_allowed_caps):
3174           Fix 'make check' too.
3176 2007-01-10  Andy Wingo  <wingo@pobox.com>
3178         * docs/design/part-negotiation.txt: Fix a typo, add a couple
3179         notes.
3180         
3181         * docs/design/part-negotiation.txt: Update with, um, one way that
3182         pull-mode negotiation might work?
3184         * gst/gstpad.h: 
3185         * gst/gstpad.c (gst_pad_get_allowed_caps): Remove the restriction
3186         that the pad must be a src pad; makes sense to call it the other
3187         way in pull mode, and the logic is symmetric anyway.
3189 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
3191         * plugins/elements/gstfilesink.c:
3192           Include <stdio.h> for fseeko().
3194 2007-01-10  Wim Taymans  <wim@fluendo.com>
3196         * gst/gstevent.c:
3197         * gst/gstevent.h:
3198         Reserve LATENCY event.
3200 2007-01-09  Wim Taymans  <wim@fluendo.com>
3202         * docs/design/draft-latency.txt:
3203         Updates.
3205 2007-01-09  Wim Taymans  <wim@fluendo.com>
3207         * docs/design/draft-latency.txt:
3208         Updates.
3210         * gst/gstelement.h:
3211         * gst/gststructure.c:
3212         * gst/gsttrace.c:
3213         Small typo fixes.
3215 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
3217         * tests/check/.cvsignore:
3218           Ignore test-registry.xml as well.
3220 2007-01-09  Wim Taymans  <wim@fluendo.com>
3222         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
3223         unref data at the end when we are done with the pad.
3225 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
3227         * docs/gst/gstreamer-sections.txt:
3228         * gst/gst.c: (load_plugin_func), (scan_and_update_registry),
3229         (init_post), (gst_deinit), (gst_update_registry):
3230         * gst/gst.h:
3231           API: add gst_update_registry() (#391296).
3233         * tests/check/Makefile.am:
3234         * tests/check/gst/gstregistry.c:
3235         * tests/check/gst/.cvsignore:
3236           Simple unit test for the above.
3238 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
3240         * gst/gstregistry.c: (gst_registry_scan_path_level):
3241           Plugin extension on HP-UX is .sl, add that to the list of approved
3242           plugin extensions (see #393796).
3244         * tests/check/gst/gstpad.c: (GST_START_TEST):
3245           ulong => gulong. Fixes compilation with HP-UX compiler.
3247         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
3248           Fix compilation if valgrind headers are not available.
3250 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
3252         * win32/common/libgstreamer.def: 
3253           Add new exported function.
3254         * win32/vs6/libgstbase.dsp: 
3255           Add gstdataqueue.c to the build.
3256         * win32/vs6/libgstcoreelements.dsp:
3257           Add gstmultiqueue.c to the build.
3258         
3259 2007-01-06  Andy Wingo  <wingo@pobox.com>
3261         * libs/gst/base/gstbasesink.h: New GstBaseSinkClass vmethod,
3262         activate_pull(), providing for a way to specialize the process of
3263         spawning a thread to pull on the sink pad. There is a default
3264         implementation.
3266         * libs/gst/base/gstbasesink.c (gst_base_sink_pad_activate_pull)
3267         (gst_base_sink_pad_activate_push, gst_base_sink_pad_activate)
3268         (gst_base_sink_init): Renamed pad activation functions (inserting
3269         "_pad" in their names). Refactor to use the new activate_pull
3270         vmethod, as appropriate.
3271         (gst_base_sink_class_init, gst_base_sink_activate_pull): Set the
3272         default activate_pull function to start a task pulling from the
3273         sink pad, as before.
3275         * gst/gstpad.c (gst_pad_get_range, gst_pad_pull_range): Set caps
3276         on the pads if necessary, as in push()/chain(). Update docs.
3277         Shouldn't affect existing pull() usage as it is currently only
3278         being used on buffers without caps.
3280 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
3282         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
3283         (init_pre):
3284           Call g_thread_init() first thing in gst_init() / gst_check_init().
3285           When initialisation is done via gst_init_get_option_group() and
3286           GOption parsing, issue a warning if the GLib thread system has not
3287           been initialised yet by the time gst_init_get_option_group() is
3288           called, as it's quite likely other GLib functions such as
3289           g_option_context_new() have been called already then, and
3290           g_thread_init() must be called before any other GLib function. The
3291           application in question must be fixed in that case, since memory
3292           corruption might happen otherwise.
3293           We issue the warning because even if the GLib folks decide to work
3294           around the problem on their end in future, this is still an issue
3295           with all GLib versions >= 2.10.0, so we should warn until we depend
3296           on a GLib version we know to be safe.
3297           Update documentation as well.
3298           Closes bug #391278.
3300 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
3302         * tools/gst-inspect.c: (main):
3303         * tools/gst-launch.c: (main):
3304         * tools/gst-typefind.c: (main):
3305         * tools/gst-xmlinspect.c: (main):
3306           Call g_thread_init() really really early, before any other GLib
3307           function (see #342564 and recent discussion on gtk-devel-list).
3309 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
3311         Patch by: Vincent Torri  <vtorri at univ-evry dot fr>
3313         * gst/gst_private.h:
3314         * gst/gstconfig.h.in:
3315         * gst/gstinfo.h:
3316           On win32, all the __declspec stuff for symbol exporting is
3317           apparently only needed with MSVC, but doesn't work with MingW.
3318           Fixes compilation with MingW and #391909.
3320 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
3322         * libs/gst/base/gstbasesrc.c: (gst_base_src_activate_push):
3323           Change some GST_ERROR_OBJECT that aren't really errors to
3324           GST_WARNING_OBJECT in order to reduce terminal spam.
3326 2007-01-04  Stefan Kost  <ensonic@users.sf.net>
3328         * tests/check/Makefile.am:
3329           disable test again, as there seem to be still race problems
3331 2007-01-04  Stefan Kost  <ensonic@users.sf.net>
3333         * tests/check/Makefile.am:
3334         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
3335         (GST_START_TEST), (queue_suite):
3336           enable queue test again, add tests for the leaky behaviour
3338 2007-01-02  Tim-Philipp Müller  <tim at centricular dot net>
3340         * configure.ac:
3341         * tests/examples/Makefile.am:
3342           Compile adapter test/example only if the required headers are
3343           available (fixes #391915).
3345 2007-01-01  David Schleef  <ds@schleef.org>
3347         * gst/gstplugin.c:
3348           Restore the previous signal handler for SIGSEGV instead of
3349           setting to default, since we may have stolen it away from
3350           someone.  (i.e., Mono)
3352 2006-12-26  Tim-Philipp Müller  <tim at centricular dot net>
3354         * docs/random/draft-missing-plugins.txt:
3355           Some small additions and clarifications.
3357 2006-12-26  Tim-Philipp Müller  <tim at centricular dot net>
3359         * gst/gstregistryxml.c: (gst_registry_save_escaped):
3360           Make sure we don't pass non-UTF-8 strings to g_markup_escape(),
3361           since that can lead to random memory corruptions and crashes
3362           (may or may not be related to #383244, #386711, and #386711).
3364 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3366         * tests/check/.cvsignore:
3367         * tests/check/Makefile.am:
3368           sync .cvsignome and CLEANFILES
3370 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3372         * tests/check/Makefile.am:
3373           fix distcheck
3375 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3377         * docs/design/part-states.txt:
3378           two tiny additional comments
3379         
3380         * gst/gststructure.c:
3381           doc fixing
3383         * tests/check/Makefile.am:
3384         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
3385         (GST_START_TEST):
3386           disable test for now, unless it gets fixed
3388 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3390         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
3391         (GST_START_TEST):
3392           fix race in underrun test
3394 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3396         * tests/check/elements/.cvsignore:
3397           ignore more
3399         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
3400         (GST_START_TEST):
3401           try to narrow test failure
3403 2006-12-21  David Schleef  <ds@schleef.org>
3405         * plugins/elements/gstfakesrc.c:
3406           Use g_random_int_range(), since it produces better random
3407           numbers in a range than almost-correct floating point code.
3409 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
3411         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
3412         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
3413         (gst_check_teardown_sink_pad):
3414           do not automatically (de)activate pads
3416         * tests/check/Makefile.am:
3417         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
3418         (setup_queue), (cleanup_queue), (GST_START_TEST), (queue_suite):
3419           add new, yet simple tests for queue
3421         * tests/check/elements/fakesrc.c: (cleanup_fakesrc):
3422         * tests/check/elements/fdsrc.c: (cleanup_fdsrc):
3423         * tests/check/elements/filesrc.c: (cleanup_filesrc),
3424         (GST_START_TEST):
3425         * tests/check/elements/identity.c: (cleanup_identity):
3426           consistent pad (de)activation
3428 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
3430         Patch by: Sebastian Dröge  <slomo ubuntu com>
3432         * libs/gst/base/gstcollectpads.c:
3433           Fix two doc typos (#387866).
3435 2006-12-19  Tim-Philipp Müller  <tim at centricular dot net>
3437         * docs/manual/advanced-dparams.xml:
3438           Fix typo (g_object_control_properties() doesn't exist).
3440 2006-12-19  Edward Hervey  <edward@fluendo.com>
3442         * gst/gstsegment.c: (gst_segment_set_seek):
3443         Fine tune the cases where the segment start/stop values are really
3444         updated.
3445         * tests/check/gst/gstsegment.c: (GST_START_TEST):
3446         Add tests for the return values of gst_segment_set_seek().
3448 2006-12-19  Tim-Philipp Müller  <tim at centricular dot net>
3450         * gst/gst.c:
3451           Docs typo fix.
3453         * plugins/elements/gstqueue.c: (gst_queue_class_init),
3454         (gst_queue_init):
3455           Fix incorrect documentation and flesh it out a bit more.
3456           Set default values for the max properties on the GParamSpec as well,
3457           so it shows up correctly in gst-inspect.
3459 2006-12-18  Stefan Kost  <ensonic@users.sf.net>
3461         * plugins/elements/gstqueue.c: (queue_leaky_get_type):
3462           Correct docs of queue, add more detail and crosslink it more.
3464 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
3466         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
3467           Print additional debug info when the stream isn't perfectly
3468           timestamped; don't try to use invalid durations.
3470 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
3472         * docs/design/Makefile.am:
3473           Dist new design docs.
3475 2006-12-16  Wim Taymans  <wim@fluendo.com>
3477         Patch by: Sjoerd Simons <sjoerd at luon dot net>
3479         * libs/gst/base/gstcollectpads.c: (ref_data), (unref_data),
3480         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
3481         (gst_collect_pads_stop), (gst_collect_pads_event),
3482         (gst_collect_pads_chain):
3483         * libs/gst/base/gstcollectpads.h:
3484         Add refcounting to the collectpads data so we can track when it's safe
3485         to free the data. Fixes #383382.
3487 2006-12-15  Wim Taymans  <wim@fluendo.com>
3489         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
3490         (gst_collect_pads_remove_pad):
3491         Automatically activate/deactivate pads when they are added to a
3492         started/stoped collectpads.
3494 2006-12-15  Wim Taymans  <wim@fluendo.com>
3496         * gst/gstelement.c: (gst_element_add_pad):
3497         * gst/gstghostpad.c: (gst_ghost_pad_new_full):
3498         * gst/gstpad.c: (gst_pad_init):
3499         Set pads to FLUSHING when they are created. Check, warn and fix when a
3500         demuxer adds an inactive pad to itself when running. Fixes #339326.
3502 2006-12-15  Wim Taymans  <wim@fluendo.com>
3504         * gst/gstelement.c: (gst_element_class_init),
3505         (gst_element_default_send_event), (gst_element_send_event),
3506         (gst_element_default_query), (gst_element_query):
3507         Expose default element send_event and query handling as vmethods that
3508         subclasses can chain up to.
3510 2006-12-15  Wim Taymans  <wim@fluendo.com>
3512         * gst/gstelement.c: (gst_element_set_state_func):
3513         Small documentation fixes.
3515 2006-12-15  Wim Taymans  <wim@fluendo.com>
3517         * docs/design/draft-latency.txt:
3518         Checked in draft for handling latency in pipelines.
3520 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3522         * Makefile.am:
3523         * gstreamer.doap:
3524         * gstreamer.spec.in:
3525           adding .doap file
3527 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
3529         * gst/gst.c: (init_pre), (init_post):
3530           init_pre() and init_post() might be called via our GOptionGroup or
3531           from gst_init(), and we should skip both of them if we've already
3532           been initialised, otherwise we will init some things twice or add
3533           two default log functions.
3535 2006-12-13  Edward Hervey  <edward@fluendo.com>
3537         * docs/manual/basics-bus.xml:
3538         No, gst_main_loop does not exist. Its g_main_loop.
3539         Discovered by somebody who abused the copy-paste technique of coding :)
3541 2006-12-13  Tim-Philipp Müller  <tim at centricular dot net>
3543         * gst/gstghostpad.c:
3544           Log ghostpad debug stuff to the GST_PADS category as well rather
3545           than just to the default category.
3547 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
3549         * configure.ac:
3550         * gst/gst.c: (init_pre):
3551           Add some basic system details such as OS and architecture
3552           to the debug output if possible, courtesy of uname().
3554 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
3556         * docs/gst/running.xml:
3557           Document GST_REGISTRY_FORK and GST_DEBUG_NO_COLOR
3558           environment variables.
3560 2006-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
3562         * tests/check/gst/gstbin.c: (GST_START_TEST):
3563         It is acceptable to have a refcount of 2 or 3 at this point in the
3564         test, because the pipeline might be just posting its state_change
3565         message. The next line then waits for that message to appear using
3566         bus_poll, so that should be fine too.
3568 2006-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
3570         * gst/gst.c: (ensure_current_registry_forking):
3571         Ignore EINTR when reading from the child registry pipe.
3572         Explicitly ignore the return value from close, since it makes no
3573         difference.
3575         * gst/gstminiobject.c: (gst_mini_object_ref),
3576         (gst_mini_object_unref):
3577         When debugging refcounts, check GST_IS_MINI_OBJECT and warn.
3579         * gst/gstregistry.c: (_priv_gst_registry_remove_cache_plugins):
3580         When removing cached plugins, remove their features too, so they're
3581         not visible after they've disappeared.
3583         * gst/gstutils.c: (prepare_link_maybe_ghosting):
3584         In the unlikely case that we are linking pads with no parents, don't
3585         crash trying to get the non-existent parent bin.
3587         * gst/parse/grammar.y:
3588         Output debug in the PIPELINE category
3590 2005-03-08  Wim Taymans  <wim@fluendo.com>
3592         Patch by: René Stadler <mail at renestadler dot de>
3594         * gst/gstclock.c: (gst_clock_new_periodic_id):
3595         Reject invalid clock times for interval of periodic ids.
3596         Fixes ##383506.
3598 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
3600         * gst/gstelementfactory.c: (gst_element_factory_create):
3601         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
3602         * gst/gsttypefindfactory.c: (gst_type_find_factory_call_function):
3603         * tools/gst-inspect.c: (print_element_info):
3604         Fix refcounting of gst_plugin_feature_load to match the docs. 
3605         Fixes: #380129
3607 2006-12-07  Wim Taymans  <wim@fluendo.com>
3609         * libs/gst/base/gstbasesink.c: (gst_base_sink_event),
3610         (gst_base_sink_get_position):
3611         Improve debugging of events.
3613 2006-12-07  Wim Taymans  <wim@fluendo.com>
3615         Patch by: René Stadler <mail at renestadler dot de>
3617         * gst/gstclock.c: (gst_clock_id_wait):
3618         Make period ids add the interval to the origial requested time instead
3619         of the possibly updated time which can be wrong when there are multiple
3620         waiters for the same id. Fixes #382592.
3622         * gst/gstsystemclock.c: (gst_system_clock_async_thread),
3623         (gst_system_clock_id_wait_jitter_unlocked),
3624         (gst_system_clock_id_wait_jitter):
3625         Fix restart in the async notify thread when an async entry is added to
3626         the front of the list. Fixes #381492. 
3628         * tests/check/gst/gstsystemclock.c: (store_callback),
3629         (notify_callback), (GST_START_TEST), (gst_systemclock_suite):
3630         Added test for multiple async waits.
3631         Added test for async wait order.
3633 2006-12-07  Wim Taymans  <wim@fluendo.com>
3635         * gst/gstbin.c: (gst_bin_query):
3636         Add some more docs about the POSITION query.
3638 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
3640         * configure.ac:
3641         Bump version nano - back to CVS.
3643 === release 0.10.11 ===
3645 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
3647         * configure.ac:
3648           releasing 0.10.11, "Love never runs on time"
3650 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
3652         * win32/common/libgstbase.def:
3653         * win32/common/libgstreamer.def:
3654         * win32/vs8/libgstbase.vcproj:
3655         * win32/vs8/libgstcoreelements.vcproj:
3656         * win32/vs8/libgstreamer.vcproj:
3657         Fix compilation on win32 under VS8
3658         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
3659         Partially fixes #381175
3661 2006-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
3663         * gst/gstvalue.c: (gst_value_compare_fraction):
3664         If someone is foolish enough to compare 2 fractions with denominator =
3665         0, return UNORDERED rather than aborting.
3667 2006-11-28  Edward Hervey  <edward@fluendo.com>
3669         * libs/gst/base/Makefile.am:
3670         * libs/gst/base/gstdataqueue.c: (gst_data_queue_get_type),
3671         (gst_data_queue_base_init), (gst_data_queue_class_init),
3672         (gst_data_queue_init), (gst_data_queue_new),
3673         (gst_data_queue_cleanup), (gst_data_queue_finalize),
3674         (gst_data_queue_locked_flush), (gst_data_queue_locked_is_empty),
3675         (gst_data_queue_locked_is_full), (gst_data_queue_flush),
3676         (gst_data_queue_is_empty), (gst_data_queue_is_full),
3677         (gst_data_queue_set_flushing), (gst_data_queue_push),
3678         (gst_data_queue_pop), (gst_data_queue_drop_head),
3679         (gst_data_queue_set_property), (gst_data_queue_get_property):
3680         * libs/gst/base/gstdataqueue.h:
3681         New GstDataQueue object for threadsafe queueing. Most useful for
3682         elements that need some queueing functionnality.
3683         * docs/libs/gstreamer-libs-docs.sgml:
3684         * docs/libs/gstreamer-libs-sections.txt:
3685         Insert documentation for GstDataQueue
3686         * plugins/elements/Makefile.am:
3687         * plugins/elements/gstelements.c:
3688         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init),
3689         (gst_multi_queue_class_init), (gst_multi_queue_init),
3690         (gst_multi_queue_finalize), (gst_multi_queue_set_property),
3691         (gst_multi_queue_get_property), (gst_multi_queue_request_new_pad),
3692         (gst_multi_queue_release_pad), (gst_single_queue_push_one),
3693         (gst_multi_queue_item_destroy), (gst_multi_queue_item_new),
3694         (gst_multi_queue_loop), (gst_multi_queue_chain),
3695         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
3696         (gst_multi_queue_getcaps), (gst_multi_queue_bufferalloc),
3697         (gst_multi_queue_src_activate_push), (gst_multi_queue_acceptcaps),
3698         (gst_multi_queue_src_event), (gst_multi_queue_src_query),
3699         (wake_up_next_non_linked), (compute_next_non_linked),
3700         (single_queue_overrun_cb), (single_queue_underrun_cb),
3701         (single_queue_check_full), (gst_single_queue_new):
3702         * plugins/elements/gstmultiqueue.h:
3703         New multiqueue element, using GstDataQueue. Used for queuing multiple
3704         streams.
3705         Closes #344639 and #347785
3707 2006-11-22  Stefan Kost  <ensonic@users.sf.net>
3709         * docs/pwg/advanced-types.xml:
3710           add more missing type details
3712         * tools/gst-run.c: (main):
3713           remove unused variable
3715 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
3717         * docs/libs/Makefile.am:
3718         * docs/libs/gstreamer-libs.types:
3719           add types of base classes to enable gobject specific stuff in the docs
3721         * docs/random/ensonic/embedded.txt:
3722           more ideas about isolating platform specific things
3724 2006-11-20  Wim Taymans  <wim@fluendo.com>
3726         Patch by: Sebastian Dröge <slomo at ubuntu dot com>
3728         * libs/gst/check/gstcheck.h:
3729         Fix compilation and running against 0.9.4. Fixes #377332.
3731 2006-11-20  Wim Taymans  <wim@fluendo.com>
3733         * gst/gstsegment.c: (gst_segment_set_seek),
3734         (gst_segment_set_newsegment_full), (gst_segment_to_stream_time),
3735         (gst_segment_to_running_time):
3736         Fix boundary checking in to_running_time() and to_stream_time().
3737         Fixes #377183.
3739         * tests/check/gst/gstsegment.c: (GST_START_TEST):
3740         stream and running time can now be calculated for the complete
3741         clipped segment.
3743 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
3745         * gst/gstpad.c: (gst_pad_push_event):
3746           Can't access event structure after giving away ownership of
3747           the event.
3749 2006-11-15  Stefan Kost  <ensonic@users.sf.net>
3751         * docs/random/ensonic/embedded.txt:
3752         * docs/random/ensonic/profiling.txt:
3753         * docs/random/ensonic/receipies.txt:
3754           more thinking
3756 2006-11-13  Wim Taymans  <wim@fluendo.com>
3758         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
3760         * gst/gstpad.c:
3761         Fix documentation for gst_pad_dispatcher. Fixes #374475.
3763 2006-11-13  Wim Taymans  <wim@fluendo.com>
3765         Patch by: Jonathan Matthew <jonathan at kaolin dot wh9 dot net>
3767         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
3768         Store new length in segment duration so we don't keep on calling the
3769         potentially expensize get_size() call. Fixes #370865.
3771 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
3773         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
3775         * win32/common/libgstreamer.def:
3776           Add two missing symbols (#366492).
3778 2006-11-10  Jan Schmidt  <thaytan@mad.scientist.com>
3780         * libs/gst/base/gstadapter.c: (gst_adapter_flush),
3781         (gst_adapter_take_buffer):
3782         Fix format string to use all its arguments.
3783         Remove useless >= check on a guint
3785 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
3787         * tests/examples/adapter/.cvsignore:
3788         Ignore build file as commanded by the build-bot
3790 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
3792         * tests/examples/adapter/Makefile.am:
3793         * tests/examples/adapter/adapter_test.c: (run_test_take),
3794         (run_test_take_buffer), (run_tests), (main):
3796         Add new files from the previous commit
3798 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
3800         * Makefile.am:
3801         * configure.ac:
3802         * libs/gst/base/gstadapter.c: (gst_adapter_clear),
3803         (gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
3804         (gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
3805         * libs/gst/base/gstadapter.h:
3806         * tests/check/libs/adapter.c: (create_and_fill_adapter),
3807         (GST_START_TEST), (gst_adapter_suite):
3808         * tests/examples/Makefile.am:
3809         Do some optimisation work in GstAdapter to avoid copies in more cases.
3810         It could still do slightly better by merging buffers when
3811         gst_buffer_is_span_fast is true, but is already faster. 
3813         Also, avoid traversing a single-linked list to append each incoming 
3814         buffer inside the adapter.
3816         Add simple test app that times the adapter behaviour in different
3817         situations, and extend the unit test to check that bytes enter and
3818         exit the adapter in their original order.
3820 2006-11-08  Tim-Philipp Müller  <tim at centricular dot net>
3822         * docs/random/draft-missing-plugins.txt:
3823           Update: use element message instead of adding a new message
3824           type to the core; don't provide GStreamer API to initiate the
3825           plugin download, just provide API to compose the strings needed
3826           and let an external libgimmestuff handle the rest.
3828 2006-11-08  Jan Schmidt  <thaytan@mad.scientist.com>
3830         * tools/gst-inspect.c: (print_element_properties_info):
3831         Print a string instead of 'unknown type' for GValueArray properties
3833 2006-11-08  Christian F.K. Schaller  <christian@fluendo.com>
3835         * docs/random/draft-missing-plugins.txt:
3836         More small fixes.
3838 2006-11-07  Tim-Philipp Müller  <tim at centricular dot net>
3840         * tests/examples/typefind/typefind.c: (type_found), (main):
3841           Make typefind element example work again (#371894); add a
3842           license header.
3844 2006-11-07  Tim-Philipp Müller  <tim at centricular dot net>
3846         * docs/random/draft-missing-plugins.txt:
3847           Commit initial draft about how to deal with missing plugins,
3848           needs work (API too).
3850 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
3852         * docs/pwg/advanced-types.xml:
3853           documents the new caps elements (see #363118)
3855 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
3857         * gst/gstplugin.c: (gst_plugin_load_file):
3858         * plugins/elements/gstfilesrc.c: (gst_mmap_buffer_finalize),
3859         (gst_file_src_map_region), (gst_file_src_start):
3860         * plugins/indexers/gstfileindex.c: (gst_file_index_load),
3861         (gst_file_index_commit):
3862           Use g_strerror() instead of strerror() - we want UTF-8.
3864 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
3866         Patch by: Peter Kjellerstedt <pkj at axis com>
3868         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
3869           Another printf fix (#371493).
3871 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
3873         * tests/check/gst/gsttag.c:
3874           relicence (okay with author=company)
3876 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
3878         * gst/gstpad.c: (gst_pad_event_default_dispatch),
3879         (gst_pad_push_event):
3880           Enhance debug and improve docs
3881         
3882         * gst/gsturi.c:
3883           Fix docs
3885 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
3887         * docs/random/ensonic/distributed.txt:
3888         * docs/random/ensonic/profiling.txt:
3889           more ideas
3891 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
3893         * docs/gst/gstreamer-sections.txt:
3894           add new API and fix the build
3895           
3896         * gst/gstbin.c: (gst_bin_recalc_state):
3897         * gst/gstelement.c: (gst_element_message_full),
3898         (gst_element_get_state_func), (gst_element_set_state_func):
3899           use new API and improve logging
3900         
3901         * gst/gstutils.c: (gst_element_state_change_return_get_name):
3902         * gst/gstutils.h:
3903           API: add function to get StateChangereturn names to improve logs 
3905 2006-11-04  Thomas Vander Stichele  <thomas at apestaart dot org>
3907         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
3908           I'm considering shooting the next person to put strerror stuff
3909           in the translateable part of the message.
3911 2006-11-03  Wim Taymans  <wim@fluendo.com>
3913         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
3914         Get the type and printf conversion specifiers right.
3916 2006-11-03  Wim Taymans  <wim@fluendo.com>
3918         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
3920         * gst/gstpad.c: (gst_pad_init), (pre_activate),
3921         (gst_pad_set_blocked_async), (gst_pad_acceptcaps_default),
3922         (gst_pad_accept_caps), (handle_pad_block), (gst_pad_push_event):
3923         Some small cleanups. Improve debugging.
3924         * gst/gstpad.h:
3925         Signal all waiting threads with a broadcast instead of just one.
3926         Fixes #369942.
3928 2006-11-03  Wim Taymans  <wim@fluendo.com>
3930         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd),
3931         (gst_fd_src_create):
3932         Add some debugging. 
3933         Only update fd when it's different from the old.
3935 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
3937         * plugins/elements/gstfilesrc.c: (gst_file_src_create_mmap):
3938           Printf fixes for PPC/OSX, take two (#369366).
3940 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
3942         Based on patch by: Jan David Mol  <j.j.d.mol at tudelft nl>
3944         * plugins/elements/gstfilesink.c: (gst_file_sink_class_init):
3945         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
3946         (gst_file_src_map_small_region), (gst_file_src_create_mmap):
3947           Printf fixes for gsize parameters on PPC/OSX (#369366). Also,
3948           don't cast to long long for portability reasons, but use
3949           GLib's types instead.
3951 2006-10-30  Michael Smith  <msmith@fluendo.com>
3953         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
3954           Get the arguments to lseek() the right way around.
3955           Fixes 367677.
3957 2006-10-30  Wim Taymans  <wim@fluendo.com>
3959         Patch by: gorshkov <gorshkov at oghma dot on dot ca>
3961         * gst/gstinfo.h:
3962         _declspec should be __declspec (two underscores, not one). Fixes 366572.
3964 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
3966         Patch by: Kjartan Maraas  <kmaraas at gnome org>
3968         * docs/design/part-MT-refcounting.txt:
3969         * docs/random/wtay/capsnego2-docs:
3970         * gst/gstclock.c:
3971         * gst/gstxml.c:
3972           Typo fixes (#366212).
3974 2006-10-28  Wim Taymans  <wim@fluendo.com>
3976         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
3978         * gst/gst.c:
3979         * win32/common/libgstbase.def:
3980         * win32/common/libgstreamer.def:
3981         * win32/vs8/libgstbase.vcproj:
3982         * win32/vs8/libgstcontroller.vcproj:
3983         Add needed entries in .def files.
3984         Use HAVE_UNISTD_H.
3985         Rearrange def files in vs8 solutions. Fixes #366286.
3987 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
3989         * win32/common/gstconfig.h:
3990           Add GST_SEGMENT_FORMAT and GST_USING_PRINTF_EXTENSION to the
3991           hand-made win32 gstconfig.h. Fixes #366321.
3993 2006-10-27  Wim Taymans  <wim@fluendo.com>
3995         * gst/gstghostpad.c: (gst_proxy_pad_do_acceptcaps),
3996         (gst_ghost_pad_new_full):
3997         Make acceptcaps return TRUE when we don't have a target, just like
3998         setcaps does.
4000 2006-10-27  Wim Taymans  <wim@fluendo.com>
4002         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
4003         Revert previous commit, 0 sized buffers are allowed. Reopens #363095.
4005 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
4007         * gst/gststructure.c: (gst_structure_id_set_value):
4008           If someone tries to set a non-UTF8 string field on a structure,
4009           don't just print a warning, but also ignore the request and do
4010           not change/add that field to the structure.
4012         * tests/check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
4013           Test for the above.
4015 2006-10-25  David Schleef  <ds@schleef.org>
4017         * gst/gstinfo.c:
4018           g_hash_table_insert() needs a cast to a non-const pointer duh.
4020 2006-10-25  David Schleef  <ds@schleef.org>
4022         * gst/gstinfo.c:
4023         * gst/gstinfo.h:
4024           Change name parameter of _gst_debug_register_funcptr to const
4025           to reflect the constness of its use in the function as well
4026           as to quiet a gcc warning.
4028 2006-10-25  Edward Hervey  <edward@fluendo.com>
4030         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
4031         Don't push the buffer if it's empty.
4032         Closes #363095
4034 2006-10-24  Wim Taymans  <wim@fluendo.com>
4036         * gst/gstevent.h:
4037         Add small comment.
4039         * libs/gst/base/gstbasetransform.c:
4040         (gst_base_transform_sink_eventfunc):
4041         Debug segment values *after* updating them as this is more
4042         interesting.
4044 2006-10-23  Wim Taymans  <wim@fluendo.com>
4046         * docs/design/part-events.txt:
4047         Update some docs.
4049         * docs/design/part-block.txt:
4050         * gst/gstpad.c: (gst_pad_is_blocking), (handle_pad_block),
4051         (gst_pad_push_event):
4052         Revert BLOCKING patch, it tries to be smart without really having a
4053         clear idea what or how. So, now we discard all FLUSHING events again on
4054         a blocking pad. Should fix gnonlin again.
4056 2006-10-23  Wim Taymans  <wim@fluendo.com>
4058         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
4060         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
4061         (gst_base_src_start), (gst_base_src_activate_push):
4062         Make sure size is always initialized. Fixes #364388.
4064 2006-10-20  Stefan Kost  <ensonic@users.sf.net>
4066         * docs/random/ensonic/distributed.txt:
4067           add some ideas about doing distributed processing
4069         * docs/random/ensonic/profiling.txt:
4070           get_rusage look promising
4072 2006-10-18  Stefan Kost  <ensonic@users.sf.net>
4074         * docs/manual/basics-helloworld.xml:
4075           Add a cast in example to fix compile warning
4077 2006-10-18  Wim Taymans  <wim@fluendo.com>
4079         * gst/gstsegment.c: (gst_segment_set_last_stop),
4080         (gst_segment_set_seek), (gst_segment_set_newsegment_full):
4081         Relax arg checking again, -1 is allowed.
4083 2006-10-18  Wim Taymans  <wim@fluendo.com>
4085         * gst/gstsegment.c: (gst_segment_set_last_stop),
4086         (gst_segment_set_seek), (gst_segment_set_newsegment_full):
4087         _set_last_stop() must be with a value != -1
4088         A _TYPE_SET to -1 means seek to 0.
4089         Calc last_stop correctly for negative rates.
4090         Make sure we work with positive durations when updating a segment.
4092 2006-10-18  Wim Taymans  <wim@fluendo.com>
4094         * docs/design/part-live-source.txt:
4095         * gst/gstclock.h:
4096         Small docs fixes.
4098 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
4100         * gst/gstbuffer.h:
4101           Add an explicit cast to GstBuffer** to keep old code that added an
4102           explicit cast to GstMiniObject** for gst_mini_object_replace()
4103           compiling without warning.
4105 2006-10-18  Stefan Kost  <ensonic@users.sf.net>
4107         * gst/gstvalue.c: (gst_value_set_date), (gst_date_copy):
4108           check for validity of dates
4110 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
4112         * docs/gst/gstreamer-sections.txt:
4113           Forgot this one, makes gtk-doc shut up.
4115 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
4117         Patch by: Peter Kjellerstedt <pkj at axis com>
4119         * gst/gstobject.h:
4120           Don't define xmlNodePtr to gpointer if the core was built with
4121           --disable-loadsave and --disable-registry, this will break
4122           applications that want to use libxml2 but are buildling against a
4123           core that doesn't use libxml2. Use an intermediary type GstXmlNodePtr
4124           instead so we don't have to mess with the libxml2 namespace
4125           (#361675).
4127 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
4129         * gst/gstbuffer.h:
4130           Fix gst_buffer_replace() macro to avoid gst_mini_object_replace()-related
4131           type-punned pointer warnings.
4133 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
4135         * gst/gstelement.h:
4136           Add casts to the correct return type to state <=> state transition
4137           macros.
4139 2006-10-16  Stefan Kost  <ensonic@users.sf.net>
4141         * docs/design/part-live-source.txt:
4142           describe howto handle latency
4143         
4144         * docs/random/ensonic/profiling.txt:
4145           more ideas
4147         * tools/gst-plot-timeline.py:
4148           fix log parsing for solaris, remove unused function
4150 2006-10-16  Wim Taymans  <wim@fluendo.com>
4152         * docs/design/part-trickmodes.txt:
4153         * gst/gstevent.c:
4154         Update some docs regarding reverse playback.
4156 2006-10-15  Tim-Philipp Müller  <tim at centricular dot net>
4158         Patch by: Marcus Granado  <mrc dot gran at gmail com>
4160         * win32/vs8/grammar.vcproj:
4161           Error out with a warning if glib-genmarshal.exe is not in path,
4162           instead of creating bogus gstmarshal.[ch] files. Fixes #361720.
4164 2006-10-13  Wim Taymans  <wim@fluendo.com>
4166         * gst/gstsegment.c: (gst_segment_set_seek):
4167         When seeking to stop -1, set last_stop (current position) to the
4168         duration of the segment.
4170 2006-10-13  Wim Taymans  <wim@fluendo.com>
4172         * gst/gstelement.h:
4173         Clarify _NO_PREROLL a bit more.
4175         * gst/gstevent.c:
4176         Fix docs.
4178         * gst/gstpad.c: (gst_pad_link_check_hierarchy),
4179         (gst_pad_get_caps_unlocked), (gst_pad_save_thyself),
4180         (handle_pad_block), (gst_pad_push_event), (gst_pad_send_event):
4181         Patch by: Yves Lefebvre <ivanohe at abacom dot com> Fix possible deadlock
4182         due to wrong locking order. Fixes #361769.
4183         Remove some redundant/misplaced checks in pad_block.
4185         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
4186         For negative rates, count backwards from the duration.
4188 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
4190         * gst/gsterror.c: (_gst_library_errors_init):
4191           Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come
4192           up with something better).
4194 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
4196         * win32/vs6/libgstreamer.dsp:
4197         * win32/vs7/libgstreamer.vcproj:
4198         * win32/vs8/libgstreamer.vcproj:
4199           Don't reference glib-compat.c which is currently not used and not
4200           disted; add gstquark.c which was recently added. Fixes #361730.
4202 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
4204         * win32/common/libgstbase.def:
4205         * win32/common/libgstcontroller.def:
4206         * win32/common/libgstreamer.def:
4207           Add gst_caps_merge() and a bunch of other recently-added functions.
4208           Fixes #361732.
4210 2006-10-11  Wim Taymans  <wim@fluendo.com>
4212         * docs/plugins/gstreamer-plugins.args:
4213         * docs/plugins/inspect/plugin-coreelements.xml:
4214         * docs/plugins/inspect/plugin-coreindexers.xml:
4215         Update element args.
4217         * gst/gstsystemclock.c:
4218         Small comment update.
4220         * plugins/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
4221         (gst_tee_request_new_pad), (gst_tee_release_pad),
4222         (gst_tee_buffer_alloc), (gst_tee_sink_activate_push),
4223         (gst_tee_sink_activate_pull):
4224         * plugins/elements/gsttee.h:
4225         Some tee loving:
4226         Add default property defines.
4227         Implement release pad function.
4228         Give properties better blubs etc.
4229         Activate pads before adding them to a running tee.
4230         Do simple buffer_alloc on the first requested pad.
4231         Post error when activation fails.
4233 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
4235         * gst/gst.c: (ensure_current_registry_forking):
4236           Check return value of write() to make compiler happy.
4238 2006-10-11  Wim Taymans  <wim@fluendo.com>
4240         Patch by: Sjoerd Simons <sjoerd at luon dot net>
4242         * plugins/elements/gstqueue.c: (gst_queue_chain):
4243         Recheck queue filledness after signalling the overrun when we're about
4244         to leak downstream because we released the lock when emitting the signal
4245         and the queue could be empty again. Fixes #352345.
4247 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
4249         * libs/gst/controller/gstcontroller.c: (gst_controller_new_list):
4250           Fix refcounting here too, just like we did for _new_valist() a few
4251           days ago (#357180) (thanks to René Stadler). Also remove all those
4252           'Since: 0.9' from the gtk-doc blobs.
4254         * tests/check/libs/controller.c: (controller_refcount_new_list),
4255         (gst_controller_suite):
4256           Unit test for the above.
4258 2006-10-10  Wim Taymans  <wim@fluendo.com>
4260         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
4262         * gst/gstpad.c: (gst_pad_get_caps_unlocked),
4263         (gst_pad_save_thyself):
4264         Update some docs.
4265         Write pad direction in XML output. Fixes #345496.
4267 2006-10-10  Wim Taymans  <wim@fluendo.com>
4269         Patch by: René Stadler <mail at renestadler dot de>
4271         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
4272         (gst_controller_new_list), (_gst_controller_dispose),
4273         (_gst_controller_finalize), (_gst_controller_class_init):
4274         Take ref to controlled object so that it cannot disappear. 
4275         Fixes #357432.
4277 2006-10-10  Wim Taymans  <wim@fluendo.com>
4279         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
4280         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
4281         (gst_check_teardown_sink_pad):
4282         Activate/deactivate pads in setup/teardown respectively.
4284 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4286         Patch by: Josep Torre Valles <josep@fluendo.com>
4288         * gst/Makefile.am:
4289         Cast values when making gstenumtypes.h.  This pacifies Forte
4290         so it doesn't warn about the ~0 as GST_MESSAGE_ANY not fitting
4291         in the enumeration.
4293 2006-10-09  Wim Taymans  <wim@fluendo.com>
4295         * gst/gstevent.c: (gst_event_new_seek), (gst_event_parse_seek):
4296         Rename some more @cur to @start to fix docs. 
4298         * gst/gstsegment.c: (gst_segment_set_seek):
4299         Fix typo.
4300         time and start must always stay in sync as defined in design doc.
4302         * gst/gsttaglist.c: (gst_tag_list_is_empty):
4303         Rename param to fix docs.
4305         * tests/check/gst/gstsegment.c: (GST_START_TEST):
4306         Check that start and time are in sync.
4308         * tests/check/pipelines/parse-launch.c:
4309         (gst_parse_test_element_change_state):
4310         Activate pad before adding to the element.
4312 2006-10-09  Wim Taymans  <wim@fluendo.com>
4314         * docs/design/part-qos.txt:
4315         Fix typo.
4317         * gst/gstevent.c:
4318         * gst/gstevent.h:
4319         Update seek event docs regarding negative rates.
4320         Rename @cur to @start. 
4322         * gst/gstsegment.c: (gst_segment_set_seek):
4323         * gst/gstsegment.h:
4324         Update set_seek docs regarding negative rates.
4325         Correctly update last_stop to @stop when dealing with negative
4326         rates.
4327         Rename @cur to @start. 
4329         * tests/check/gst/gstpad.c: (GST_START_TEST):
4330         Activate pads before trying to use them.
4332         * tests/check/gst/gstsegment.c: (GST_START_TEST),
4333         (gst_segment_suite):
4334         Add simple check for segments and negative rates.
4336 2006-10-09  Tim-Philipp Müller  <tim at centricular dot net>
4338         * gst/gsttaglist.c: (gst_tag_list_is_empty):
4339         * gst/gsttaglist.h:
4340         * docs/gst/gstreamer-sections.txt:
4341           API: add gst_tag_list_is_empty() (#360467).
4343         * tests/check/gst/gsttag.c: (GST_START_TEST):
4344           And a test case.
4346 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4348         * gst/gstmessage.h:
4349         Revert change from earlier wrt GST_MESSAGE_TYPE_ANY having
4350         a value that doesn't fit on enumeration.
4352 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4354         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
4355         Remove local debugging system and use Gstreamer's instead.
4357 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4359         Patch by: Josep Torre Valles <josep@fluendo.com>
4361         * common/m4/gst-error.m4:
4362         Disable warning of statement not reached on Forte.
4363         * gst/gstmessage.h:
4364         Fix warning on Forte (value doesn't fit on enumeration).
4365         * libs/gst/base/gstbasesink.c: (gst_base_sink_chain_unlocked):
4366         Fix warning on Forte (value doesn't fit on enumeration).
4367         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
4368         DEBUG macro says it takes minimum of 2 args and so Forte
4369         complains about the use with just 1 arg.
4370         * plugins/elements/gstfdsink.c:
4371         * plugins/elements/gstfdsrc.c:
4372         * plugins/elements/gstfilesink.c:
4373         * plugins/elements/gstfilesrc.c:
4374         Use correct return type for the uri handler implementations.
4376         All these fix warnings in Forte.  Fixes bug #360860.
4378 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
4380         * gst/gstelement.h:
4381           gcc versions prior to gcc 3.3 apparently complain about a NULL printf
4382           format string, so don't use G_GNUC_PRINTF for those versions.
4384 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
4386         * gst/gsttaglist.c: (gst_is_tag_list):
4387         * gst/gsttaglist.h:
4388           Minor fixes to GST_IS_TAG_LIST and gst_is_tag_list().
4390         * tests/check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
4391           Small test for the above.
4393 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
4395         * gst/gsttaglist.h:
4396           Less tabs, more spaces.
4398 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
4400         * gst/gstinfo.h:
4401           Those two function declarations do actually belong there, revert
4402           commit from yesterday that turned them intro macros.
4404 2006-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4406         Patch by: Josep Torre Valles <josep@fluendo.com>
4408         * gst/gst.c: (gst_init_get_option_group):
4409         Fix empty declaration and type mismatch.
4410         * gst/gstbin.c: (gst_bin_change_state_func):
4411         Fix type mismatch.
4412         * gst/gstelement.c: (gst_element_continue_state),
4413         (gst_element_set_state_func), (gst_element_change_state),
4414         (gst_element_change_state_func):
4415         Fix type mismatches.
4416         * gst/gstinfo.c: (gst_debug_compare_log_function_by_func),
4417         (gst_debug_remove_log_function), (_gst_debug_nameof_funcptr):
4418         Cast as appropriate.
4419         * gst/gstobject.c: (gst_class_signal_connect):
4420         Cast as appropriate.  The function pointer parameter really
4421         has the wrong type but would break API if we change it.
4422         * gst/gstquery.c:
4423         Fix redefinition of _FILE_OFFSET_BITS caused on Solaris wrt
4424         order of including string.h.
4425         * gst/gstutils.c: (gst_element_state_get_name):
4426         Remove unreachable line.
4427         * gst/gstxml.c: (gst_xml_parse_doc):
4428         Fix type mismatch.
4429         All these caught by Forte.
4431 2006-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4433         Patch by: Josep Torre Valles <josep@fluendo.com>
4435         * common/m4/gst-error.m4:
4436         Fixed bug #360151.
4437         We need to disable warnings on Forte for empty declarations
4438         due to gst-indent adding ;s to lines that just use macros
4439         where the macro actually doesn't need a ; at end to end
4440         statement.
4442 2006-10-06  Wim Taymans  <wim@fluendo.com>
4444         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
4445         (gst_file_sink_close_file), (gst_file_sink_event),
4446         (gst_file_sink_render):
4447         Add some FIXME for the NEWSEGMENT handling.
4449 2006-10-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4451         * gst/parse/grammar.y:
4452         Remove static function gst_parse_element_lock as all it does
4453         is return.  Looks like cruft from 0.8.
4455 2006-10-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4457         Patch by: Josep Torre Valles <josep@fluendo.com>
4459         * common/m4/gst-error.m4:
4460         * configure.ac:
4461         * libs/gst/net/Makefile.am:
4462         Fix a compilation issue with Forte on Solaris.  inet_aton is in
4463         libresolv.
4465 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
4467         * gst/gstpad.c: (pre_activate):
4468         * gst/gstregistry.c: (gst_registry_scan_path_level):
4469         * gst/gstregistryxml.c: (load_plugin):
4470         * libs/gst/controller/gstcontroller.c:
4471         (gst_controlled_property_set_interpolation_mode):
4472         * libs/gst/dataprotocol/dataprotocol.c:
4473         (gst_dp_packet_from_event_1_0):
4474         * libs/gst/net/gstnetclientclock.c:
4475         (gst_net_client_clock_observe_times):
4476         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
4477           Printf fixes.
4479 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
4481         * configure.ac:
4482         * docs/gst/gstreamer-sections.txt:
4483         * gst/gstconfig.h.in:
4484         * gst/gstelement.h:
4485         * gst/gstinfo.h:
4486           Add GST_USING_PRINTF_EXTENSION to gstconfig.h so that we know
4487           whether we can use G_GNUC_PRINTF in other header files and at
4488           least check the printf format/arguments of debug messages and
4489           GST_ELEMENT_ERROR messages when the printf extension is not
4490           being used.
4491           Replace more tabs with spaces in gstinfo.h and remove two spurious
4492           function declarations in GST_DISABLE_DEBUG part with macros.
4494 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
4496         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_post):
4497           More docs for the sync-message signal (mention that it is not
4498           emitted by default); log message structures of messages posted on
4499           the bus as well.
4501 2006-10-03  Jan Schmidt  <thaytan@mad.scientist.com>
4503         * gst/gst.c: (ensure_current_registry_forking):
4504         Use a pipe pair to receive status results from the forked child, and
4505         ignore the result from waitpid. Fixes #355499
4507 2006-10-02  Wim Taymans  <wim@fluendo.com>
4509         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
4510         (gst_ghost_pad_suite):
4511         Fix leak in check.
4513 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
4515         * gst/gstpad.c:
4516           Add 'Since: 0.10.11' to gst_pad_is_blocking() gtk-doc blurb.
4518 2006-10-02  Edward Hervey  <edward@fluendo.com>
4520         * docs/design/part-block.txt:
4521         Further explain the use of flushing on blocked pads.
4522         * docs/gst/gstreamer-sections.txt:
4523         * gst/gstpad.c: (gst_pad_is_blocking), (handle_pad_block),
4524         (gst_pad_push_event):
4525         * gst/gstpad.h:
4526         Added new GstPadFlag : GST_PAD_BLOCKING.
4527         Adds the notion of pads really blocking, which enables to properly
4528         handle FLUSH_START/FLUSH_STOP events on blocked pads.
4529         Fixes #358999
4530         API: gst_pad_is_blocking()
4531         API: GST_PAD_IS_BLOCKING() macro
4532         API: GST_PAD_BLOCKING GstPadFlag
4533         
4534 2006-10-02  Wim Taymans  <wim@fluendo.com>
4536         Patch by: mrcgran <mrc.gran at gmail dot com>
4538         * gst/gstghostpad.c: (gst_proxy_pad_do_getcaps):
4539         Filter the proxied caps against the padtemplate if we have one.
4541         * gst/gstquery.c: (gst_query_new_segment):
4542         Add include for gstinfo.h so that compilation with
4543         -DGST_DISABLE_GST_DEBUG works again. Fixes #358436.
4545 2006-10-02  Wim Taymans  <wim@fluendo.com>
4547         Patch by: Alessandro Decina  <alessandro at nnva org>
4549         * plugins/elements/gstfilesink.c: (gst_file_sink_init),
4550         (gst_file_sink_set_location), (gst_file_sink_open_file),
4551         (gst_file_sink_close_file), (gst_file_sink_event),
4552         (gst_file_sink_render):
4553         Set file to NULL when closing filesink so that we can set a new filename
4554         in READY. Fixes #358613.
4556 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
4558         Patch by: Alessandro Decina  <alessandro at nnva org>
4560         * gst/gstevent.c: (_gst_event_copy):
4561           Fix gst_mini_object_make_writable() and gst_event_copy() for events
4562           with event structures by setting the parent refcount address of the
4563           copied structure to the address of the refcount member of the newly
4564           copied event rather than the address of the refcount member of the
4565           original event. Fixes #358737.
4567         * tests/check/gst/gstevent.c: (GST_START_TEST):
4568           Unit test for the above.
4570 2006-09-29  Stefan Kost  <ensonic@users.sf.net>
4572         * docs/design/Makefile.am:
4573           Dist some more files.
4575 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
4577         * tests/check/libs/controller.c: (GST_START_TEST),
4578         (gst_controller_suite):
4579           Add test for the previous fix; add some more tests
4580           for correct refcounting behaviour; fix a few leaks
4581           in test cases; call gst_controller_init() at start
4582           of all tests.
4584 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
4586         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
4587         (gst_controller_set_from_list):
4588           Don't g_return_val_if_fail() on timed values with invalid timestamps
4589           inside a critical section without unlocking the mutex. Spotted by
4590           René Stadler. (#357617)
4591           Also, fix up refcounting properly: when returning an existing
4592           controller, we should increase the reference only once and not
4593           once per property and when trying to control a property again
4594           we should also increase the refcount.
4596 2006-09-29  Wim Taymans  <wim@fluendo.com>
4598         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
4599         * libs/gst/net/gstnettimeprovider.c:
4600         (gst_net_time_provider_thread):
4601         Stop reading commands when EOF as well.
4603         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init):
4604         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init):
4605         * plugins/elements/gstidentity.c: (gst_identity_class_init):
4606         Unify description of the dump property.
4608 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
4610         * tests/examples/manual/.cvsignore:
4611         OK, so it's actually cvsignore that needs changing. Stop laughing.
4613 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
4615         * tests/examples/manual/Makefile.am:
4616         Gah, declare vars *before* using them
4618 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
4620         * gst/gst.c: (init_pre), (scan_and_update_registry),
4621         (ensure_current_registry_nonforking),
4622         (ensure_current_registry_forking), (ensure_current_registry),
4623         (init_post), (gst_debug_help), (gst_deinit):
4624         * gst/gst_private.h:
4625         * gst/gstregistry.c: (gst_registry_finalize),
4626         (gst_registry_remove_features_for_plugin_unlocked),
4627         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
4628         (gst_registry_scan_path),
4629         (_priv_gst_registry_remove_cache_plugins),
4630         (_priv_gst_registry_cleanup):
4631         * gst/gstregistry.h:
4632         Re-commit the registry changes, along with an extra fix:
4633           When a cached plugin is encountered at a different file path,
4634           update the stored path in the registry cache so that the parent
4635           process knows where it actually is now when it re-reads the registry
4636           cache. Fixes the thing that broke distcheck with the previous commit.
4638         * tests/check/Makefile.am:
4639         Clean up files named 'core' too when running make clean.
4641         * tests/examples/manual/Makefile.am:
4642         Set up a registry path for running these tests, and clean it properly
4643         for distcheck.
4645 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
4647         * configure.ac:
4648         Don't pull in gmodule-2.0.pc as a dependency in our .pc files - we
4649         want gmodule-no-export-2.0.pc instead so that we don't drag in
4650         --export-dynamic on every project that links to GStreamer.
4652         Also, make our export regex only match the start of symbols, rather 
4653         than any symbol that contains '_gst' somewhere.
4655         * libs/gst/check/Makefile.am:
4656         The libgstcheck we build does however need export-dynamic, as it
4657         produces some symbols that don't match our _gst... style regex.
4658         Fixes: #318031
4660 2006-09-27  Jan Schmidt  <thaytan@mad.scientist.com>
4662         * gst/gst.c: (init_pre), (scan_and_update_registry),
4663         (ensure_current_registry_nonforking),
4664         (ensure_current_registry_forking), (ensure_current_registry),
4665         (init_post), (gst_debug_help), (gst_deinit):
4666         * gst/gst_private.h:
4667         * gst/gstregistry.c: (gst_registry_finalize),
4668         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
4669         (gst_registry_scan_path), (_gst_registry_remove_cache_plugins),
4670         (_gst_registry_cleanup):
4671         * gst/gstregistry.h:
4672           Revert previous change until I figure out why it breaks distcheck.
4674 2006-09-27  Jan Schmidt  <thaytan@mad.scientist.com>
4676         * gst/gst.c: (init_pre), (scan_and_update_registry),
4677         (ensure_current_registry_nonforking),
4678         (ensure_current_registry_forking), (ensure_current_registry),
4679         (init_post), (gst_debug_help), (gst_deinit):
4681           Make init_pre and init_post take the full complement of GOptionFunc
4682           args so they can return useful GErrors. Make the registry updating
4683           functions do so.
4685           Call _priv_gst_registry_remove_cache_plugins after scanning files to
4686           ensure that the registry we're about to write out doesn't contain
4687           stale information about old-deleted plugin files.
4689           Make _priv_gst_registry_remove_cache_plugins return a boolean so
4690           that deletion of plugin files is considered a registry change.
4692         * gst/gst_private.h:
4693         * gst/gstregistry.c: (gst_registry_finalize),
4694         (gst_registry_remove_features_for_plugin_unlocked),
4695         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
4696         (gst_registry_scan_path),
4697         (_priv_gst_registry_remove_cache_plugins),
4698         (_priv_gst_registry_cleanup):
4699         * gst/gstregistry.h:
4700         Rename _gst_registry_remove_cache_plugins and _gst_registry_cleanup
4701         by adding _priv prefix, so that they won't appear in the global
4702         symbol table. They still do atm though because of #318031. Move the
4703         prototypes to gst_private.h
4705         When removing a plugin, remove all features for that plugin too. 
4706         Fixes #340878.
4708 2006-09-27  Wim Taymans  <wim@fluendo.com>
4710         * docs/random/moving-plugins:
4711         Make it clear that the "compiled-in descriptions" really mean
4712         the element details.
4714         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
4715         (gst_base_sink_wait_preroll):
4716         Update docs.
4718         * docs/libs/gstreamer-libs-sections.txt:
4719         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
4720         (gst_base_src_get_range), (gst_base_src_activate_push):
4721         * libs/gst/base/gstbasesrc.h:
4722         Added function to block while waiting for PLAYING, this function
4723         is used by live sources that block on the clock.
4724         API: gst_base_src_wait_playing()
4726 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
4728         Patch by: Peter Kjellerstedt <pkj at axis com>
4730         * Makefile.am:
4731           gst-element-check.m4 is generated and should therefore be
4732           copied from the build dir rather than the source dir (#357593).
4733           'make distcheck' hasn't noticed this because we were disting
4734           the file as well, so stop doing that.
4736 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
4738         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
4739           Add some tests for gst_caps_intersect().
4741         * tools/gst-launch.c: (event_loop):
4742           Print all buffering percentages we get, even the 100% one.
4744 2006-09-26  Wim Taymans  <wim@fluendo.com>
4746         * tools/gst-inspect.c: (print_element_properties_info),
4747         (print_signal_info):
4748         Fix printing of flags to match the look of enums.
4750 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
4752         * gst/gstelementfactory.c:
4753           Fix typo in docs blurb.
4755 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
4757         * gst/gsturi.c: (search_by_entry):
4758           Don't assert/crash here if a uri handler doesn't return any
4759           supported protocols. The list of protocols could be generated
4760           dynamically at runtime or at plugin registration, and an error
4761           in the underlying library shouldn't be fatal (#353301).
4763 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
4765         * gst/gstinfo.c:
4766           Fix warning if HAVE_PRINTF_EXTENSION is undefined
4767           (spotted by Peter Kjellerstedt).
4769 2006-09-23  Wim Taymans  <wim@fluendo.com>
4771         Based on patch by: Antoine Tremblay <hexa00 at gmail dot com>
4773         * libs/gst/base/gstbasesrc.c:
4774         (gst_base_src_default_check_get_range), (gst_base_src_start),
4775         (gst_base_src_activate_push), (gst_base_src_activate_pull),
4776         (gst_base_src_change_state):
4777         Match _start/_stop calls in the activate functions. Remove redundant
4778         _stop call from the state change function. Fixes #356910.
4779         Turn failure DEBUG into ERROR. 
4781 2006-09-22  Wim Taymans  <wim@fluendo.com>
4783         * docs/design/part-buffering.txt:
4784         * gst/gstmessage.c: (gst_message_new_buffering),
4785         (gst_message_parse_buffering):
4786         Update docs about buffering.
4788         * docs/design/part-trickmodes.txt:
4789         Fix typo.
4791 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
4793         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
4794         (gst_controller_new_list):
4795           Ref instances when returning them again (fixes #357180)
4797 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
4799         * gst/gstghostpad.c: (gst_ghost_pad_set_target):
4800           Don't forget to release proxy lock when there's an error.
4802 2006-09-20  Jan Schmidt  <thaytan@mad.scientist.com>
4804         * gst/gstcaps.h:
4805           Add extra initialisers for Caps things, to fix some plugin warnings
4806           when using -Wextra
4808 2006-09-18  Wim Taymans  <wim@fluendo.com>
4810         * gst/gstghostpad.c: (gst_ghost_pad_new_full):
4811           Also set template on the internal pad so that a getcaps from the 
4812           target pad returns the template caps.
4814 2006-09-18  Wim Taymans  <wim@fluendo.com>
4816         * gst/gstelement.c: (gst_element_post_message),
4817         (gst_element_dispose):
4818         Use _DEBUG_OBJECT some more.
4820         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
4821         Avoid typechecks.
4823         * tools/gst-launch.c: (main):
4824         If the toplevel element is not a GstPipeline, it must be put in a
4825         pipeline so that a bus and clock is selected.
4827 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
4829         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query):
4830           JITTER, RATE, and LATENCY query should be handled by the
4831           default case and not by the CONVERT query code.
4833 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
4835         * gst/gstformat.c: (gst_format_register):
4836           Fix locking order (must take lock before using n_values).
4838         * gst/gstvalue.c: (gst_value_serialize_enum),
4839         (gst_value_deserialize_enum_iter_cmp),
4840         (gst_value_deserialize_enum):
4841           Fix serialisation/deserialisation of custom registered GstFormats.
4843         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
4844           Unit test for custom format serialisation/deserialisation.
4846 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
4848         * docs/pwg/building-boiler.xml:
4849         * plugins/elements/gstcapsfilter.c:
4850         More G_OBJECT macro fixing. Also Fix some details on the plugin-stamp
4851         section.
4853 2006-09-16  Edward Hervey  <edward@fluendo.com>
4855         * libs/gst/base/gstbasetransform.c:
4856         (gst_base_transform_buffer_alloc):
4857         Check if requested caps are the same as the sinks caps IF
4858         ->have_same_caps is TRUE. If they are not, act as if have_same_caps
4859         is FALSE.
4860         This fixes the renegotiation issues stated in #352827.
4862 2006-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4864         * configure.ac:
4865         * docs/manual/advanced-autoplugging.xml:
4866         * tests/examples/Makefile.am:
4867         * tests/examples/manual/.cvsignore:
4868         * tests/examples/manual/Makefile.am:
4869         * tests/examples/manual/extract.pl:
4870           Extract the manual examples again like we used to do.
4871           Fix one of them.
4873 2006-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4875         * win32/common/config.h:
4876           update for version
4878 2006-09-16  Stefan Kost  <ensonic@users.sf.net>
4880         * gst/gsterror.c:
4881           Documents how to receive errors.
4883 2006-09-15  Wim Taymans  <wim@fluendo.com>
4885         * tools/gst-launch.c: (sigint_handler_sighandler), (check_intr),
4886         (event_loop), (main):
4887         Added some comments here and there.
4888         Post an application message when an interrupt is caught instead of doing
4889         an uncontrolled state change.
4890         Clean up the event loop.
4891         Handle buffering messages, pause/resume the pipeline.
4892         Make shutdown because of an interrupt more reliable.
4894 2006-09-15  Wim Taymans  <wim@fluendo.com>
4896         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
4897         (gst_base_sink_wait_preroll), (gst_base_sink_do_sync),
4898         (gst_base_sink_preroll_object):
4899         Make sure that our internal state is correct when we commit our state
4900         asynchronously. This solves a race where a state change to PLAYING
4901         could cause the sink to remain blocked in preroll in some situations.
4903 2006-09-15  Wim Taymans  <wim@fluendo.com>
4905         * tools/gst-inspect.c: (print_element_properties_info),
4906         (print_signal_info):
4907         List flags as hex so it's easier to deal with.
4909 2006-09-15  Wim Taymans  <wim@fluendo.com>
4911         * docs/libs/gstreamer-libs-sections.txt:
4912         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_preroll),
4913         (gst_base_sink_do_sync):
4914         * libs/gst/base/gstbasesink.h:
4915         Expose logic to wait for preroll so that subclasses such as audiosink
4916         can also use this method.
4917         API: gst_base_sink_wait_preroll()
4919 2006-09-15  Wim Taymans  <wim@fluendo.com>
4921         * gst/gstobject.c: (gst_object_set_parent):
4922         * gst/gstpipeline.c: (do_pipeline_seek):
4923         Small cleanups in docs and code.
4925         * gst/gstsegment.c: (gst_segment_clip):
4926         * tests/check/gst/gstsegment.c: (GST_START_TEST):
4927         if stop == start and start is in the segment, no clipping should be
4928         done. Also add a test for this.
4930 2006-09-15  Wim Taymans  <wim@fluendo.com>
4932         * docs/design/part-buffering.txt:
4933         * docs/gst/gstreamer-sections.txt:
4934         * gst/gstmessage.c: (gst_message_new_buffering),
4935         (gst_message_parse_buffering):
4936         * gst/gstmessage.h:
4937         Added methods to create and parse BUFFERING messages.
4938         Added preliminary docs about buffering.
4939         API: gst_message_new_buffering
4940         API: gst_message_parse_buffering
4942 2006-09-06  Wim Taymans  <wim@fluendo.com>
4944         * gst/gstbin.c:
4945         Update documentation.
4947         * gst/gstelement.c: (gst_element_class_init),
4948         (gst_element_release_request_pad), (gst_element_set_clock),
4949         (gst_element_get_index), (gst_element_add_pad),
4950         (gst_element_remove_pad), (gst_element_get_random_pad),
4951         (gst_element_send_event), (gst_element_get_query_types),
4952         (gst_element_query), (gst_element_post_message),
4953         (gst_element_message_full), (gst_element_continue_state),
4954         (gst_element_lost_state), (gst_element_save_thyself),
4955         (gst_element_restore_thyself):
4956         Documentation updates.
4957         Rename last bit of the new-pad -> pad-added signal rename.
4958         Fix the case where an element query would only work if the source
4959         pad was linked.
4960         Avoid some useless type checking in message handling.
4962         * gst/gstevent.c:
4963         * gst/gstevent.h:
4964         * gst/gstutils.c:
4965         Documentation updates.
4967 2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4969         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
4970           add an INFO line for when we actually update the fd
4972 2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
4974         * configure.ac:
4975           back to TRUNK
4977 === release 0.10.10 ===
4979 2006-09-14  Thomas Vander Stichele <thomas at apestaart dot org>
4981         * configure.ac:
4982           releasing 0.10.10, "Pais"
4984 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
4986         * docs/manual/advanced-position.xml:
4987           Fix typo in sample code.
4989 2006-09-05  Wim Taymans  <wim@fluendo.com>
4991         * libs/gst/net/gstnetclientclock.c: (inet_aton),
4992         (gst_net_client_clock_init), (gst_net_client_clock_finalize),
4993         (gst_net_client_clock_do_select), (gst_net_client_clock_new):
4994         * libs/gst/net/gstnetclientclock.h:
4995         * libs/gst/net/gstnettimepacket.c: (gst_net_time_packet_send):
4996         * libs/gst/net/gstnettimepacket.h:
4997         * libs/gst/net/gstnettimeprovider.c: (inet_aton),
4998         (gst_net_time_provider_init), (gst_net_time_provider_finalize),
4999         (gst_net_time_provider_thread), (gst_net_time_provider_new):
5000         * libs/gst/net/gstnettimeprovider.h:
5001         Make stuff compile on windows. Fixes #345295.
5003 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
5005         * gst/gst.c: (ensure_current_registry_forking):
5006           Print better details when child was terminated by signal.
5008 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
5010         * gst/gstregistryxml.c: (gst_registry_xml_save_feature):
5011           Print a warning rather than g_assert() if a plugin feature
5012           is a URI handler but returns no protocols (#353976).
5014 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
5016         * docs/random/moving-plugins:
5017         Fix two typos.         
5019 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
5021         * gst/gstinfo.c: (_gst_debug_nameof_funcptr):
5022           Fix locking order, handle NULL function values properly.
5024         * gst/gstinfo.h:
5025           Fix docs.
5027         * gst/gstpad.c: (gst_pad_buffer_alloc_unchecked):
5028           Initialise variable before using it and fix debug statement to
5029           print the address of the function rather than the address of the
5030           variable on the stack holding the address of the function.
5032 2006-09-01  Wim Taymans  <wim@fluendo.com>
5034         * gst/gstghostpad.c: (gst_proxy_pad_do_event),
5035         (gst_proxy_pad_do_bufferalloc), (gst_proxy_pad_do_chain),
5036         (gst_proxy_pad_do_getrange), (gst_proxy_pad_do_checkgetrange),
5037         (gst_proxy_pad_set_target_unlocked), (gst_ghost_pad_parent_set),
5038         (gst_ghost_pad_parent_unset),
5039         (gst_ghost_pad_internal_do_activate_push),
5040         (gst_ghost_pad_internal_do_activate_pull),
5041         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
5042         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
5043         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
5044         (gst_ghost_pad_new_full), (gst_ghost_pad_new_no_target),
5045         (gst_ghost_pad_new), (gst_ghost_pad_new_from_template),
5046         (gst_ghost_pad_new_no_target_from_template),
5047         (gst_ghost_pad_get_target), (gst_ghost_pad_set_target):
5048         More cleanups.
5049         Avoid needless typechecking in macros.
5050         Since the internal pad is always present and never changes, there is
5051         no need to locking or ref when retrieving it.
5052         Improve debugging a bit.
5053         Handle link errors when setting the target. Fixes #341029.
5055 2006-09-01  Wim Taymans  <wim@fluendo.com>
5057         * docs/libs/gstreamer-libs-sections.txt:
5058         * docs/plugins/gstreamer-plugins-sections.txt:
5059         Fix docs some more.
5061         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
5062         (gst_collect_pads_event):
5063         * libs/gst/base/gstcollectpads.h:
5064         Documentation updates.
5065         Free queued buffer when removing a pad.
5067 2006-08-31  Michael Smith  <msmith@fluendo.com>
5069         * gst/gstutils.c: (gst_element_link_pads),
5070         (gst_element_link_pads_filtered):
5071           Ensure that we set a capsfilter to NULL if we failed to link it
5072           when doing filtered linking, to avoid criticals.
5074           No need to check for unreffing srcpad, which is explicly NULLed
5075           above (a trivial code cleanup).
5077 2006-08-31  Wim Taymans  <wim@fluendo.com>
5079         * docs/design/part-gstghostpad.txt:
5080         Update ascii art in documentation.
5082         * gst/gstghostpad.c: (gst_proxy_pad_do_internal_link),
5083         (gst_proxy_pad_set_target_unlocked), (gst_proxy_pad_init),
5084         (gst_ghost_pad_parent_set), (gst_ghost_pad_parent_unset),
5085         (gst_ghost_pad_internal_do_activate_push),
5086         (gst_ghost_pad_internal_do_activate_pull),
5087         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
5088         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
5089         (gst_ghost_pad_dispose), (gst_ghost_pad_new_full),
5090         (gst_ghost_pad_set_target):
5091         Small cleanups and leak fixes.
5092         Remove some checks now that the internal pad is never NULL.
5093         Fix the case where linking pads without a target would create nasty
5094         criticals. Fixes #341029.
5095         Don't assign a GstPadLinkReturn to a gboolean and mess up the return
5096         value of _set_target().
5098         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
5099         (gst_ghost_pad_suite):
5100         Some more tests for creating and linking untargeted ghostpads.
5102 2006-08-31  Edward Hervey  <edward@fluendo.com>
5104         * docs/gst/gstreamer-sections.txt:
5105         * gst/gstghostpad.c: (gst_proxy_pad_do_getcaps),
5106         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target_unlocked),
5107         (gst_proxy_pad_dispose), (gst_ghost_pad_new_full),
5108         (gst_ghost_pad_new_no_target), (gst_ghost_pad_new),
5109         (gst_ghost_pad_new_from_template),
5110         (gst_ghost_pad_new_no_target_from_template):
5111         * gst/gstghostpad.h:
5112         Refactored *_new() functions.
5113         Templates are now used as a g_object_new() parameter.
5114         Use template in _do_getcaps() if we don't have a target.
5115         Small documentation cleanups.
5116         Added two new constructors:
5117         gst_ghost_pad_new_from_template()
5118         gst_ghost_pad_new_no_target_from_template()
5119         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
5120         (gst_ghost_pad_suite):
5121         Added tests for new ghostpad instanciation functions.
5123         API additions: gst_ghost_pad_new_from_template,
5124         gst_ghost_pad_new_no_target_from_template
5126 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
5128         * docs/random/ensonic/profiling.txt:
5129           Ideas about qos profiling.
5131 2006-08-29  Wim Taymans  <wim@fluendo.com>
5133         * gst/gstcaps.c: (gst_caps_structure_is_subset_field):
5134         Code cleanups.
5135         Fix memleak.
5137 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
5139         * gst/gstxml.c:
5140           Improve and detypofy docs.
5142         * tests/check/Makefile.am:
5143         * tests/check/gst/.cvsignore:
5144         * tests/check/gst/gstxml.c: (GST_START_TEST), (gst_xml_suite):
5145           Add a basic test suite for GstXML.
5147 2006-08-29  Wim Taymans  <wim@fluendo.com>
5149         * gst/gstelement.c: (activate_pads), (clear_caps),
5150         (iterator_activate_fold_with_resync), (gst_element_pads_activate):
5151         Clear the pad caps when the element shut down all of the pads and
5152         is not streaming data that could modify the caps. 
5153         Fixes #352958.
5155 2006-08-28  Michael Smith  <msmith@fluendo.com>
5157         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
5158           Revert previous change; I misunderstood single-segment mode.
5160 2006-08-28  Michael Smith  <msmith@fluendo.com>
5162         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
5163           Unset DISCONT on buffers when using single-segment mode.
5165 2006-08-28  Wim Taymans  <wim@fluendo.com>
5167         * gst/gstcaps.c: (gst_caps_merge_structure):
5168         * gst/gstcaps.h:
5169         Fix docs and indentation again.
5171         * tests/check/gst/gstquery.c: (GST_START_TEST):
5172         Fix leak in tests and add some more tests.
5174 2006-08-28  Edward Hervey  <edward@fluendo.com>
5176         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
5177         Inform GstSegment of the last stop position in order for the current
5178         segment to have a proper duration if it doesn't have a specific stop
5179         position from which a duration could be calculated.
5180         This bug was noticeable when a non-flushing, non-update new segment was
5181         followed by another segment (all buffers from the new segment were being
5182         dropped).
5184 2006-08-28  Wim Taymans  <wim@fluendo.com>
5186         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek):
5187         Small comment update.
5189         * plugins/elements/gstidentity.c: (gst_identity_class_init),
5190         (gst_identity_transform_ip):
5191         Drop-probability is broken, mention this in the code with a 
5192         FIXME and also in the property description.
5193         Make silent also be silent about the drop messages.
5195 2006-08-28  Tim-Philipp Müller  <tim at centricular dot net>
5197         * docs/manual/appendix-win32.xml:
5198           Remove mention of popt, we don't depend on that any
5199           longer (#353136). Add some comments pointing out that
5200           this section is slightly outdated.
5202 2006-08-28  Wim Taymans  <wim@fluendo.com>
5204         Patch by: Torsten Schoenfeld <kaffeetisch at gmx dot de>
5206         * gst/gstquery.c: (gst_query_new_segment):
5207         * tests/check/gst/gstquery.c: (GST_START_TEST):
5208         Initialize variables when creating a new segment query.
5209         Fixes #353121.
5211 2006-08-28  Wim Taymans  <wim@fluendo.com>
5213         Patch by: Torsten Schoenfeld <kaffeetisch at gmx dot de>
5215         * gst/gstelement.c: (gst_element_get_bus):
5216         * tests/check/gst/gstelement.c: (GST_START_TEST):
5217         Check for NULL before _reffing the bus. Fixes #353122.
5219 2006-08-25  Tim-Philipp Müller  <tim at centricular dot net>
5221         * docs/manual/basics-bus.xml:
5222           Docs update: fix wrong callback return value explanation; add
5223           some lines about the implicit relationship between main loop
5224           and main context; remove duplicate main loop variable declaration.
5226 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
5228         * tests/check/gst/gstcaps.c: (GST_START_TEST):
5229           Don't leak caps in unit test; add a few more simple
5230           checks. 
5232 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
5234         * docs/gst/gstreamer-sections.txt:
5235         * gst/gstcaps.c: (gst_caps_structure_is_subset_field),
5236         (gst_caps_structure_is_subset), (gst_caps_merge),
5237         (gst_caps_merge_structure):
5238         * gst/gstcaps.h:
5239         * libs/gst/base/gstbasetransform.c:
5240         (gst_base_transform_transform_caps):
5241         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
5242           implement caps merging (fixes #352580)
5244 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
5246         * tools/Makefile.am:
5247         * tools/gst-plot-timeline.py:
5248           add debug-log plotting developer tool (#340674)
5250 2006-08-23  Wim Taymans  <wim@fluendo.com>
5252         * gst/gstpad.c: (gst_pad_start_task), (gst_pad_pause_task),
5253         (gst_pad_stop_task):
5254         Improve debugging for task functions.
5256         * gst/gsttask.c: (gst_task_func), (gst_task_set_lock),
5257         (gst_task_start), (gst_task_pause), (gst_task_join):
5258         Make sure that the task function started and finished after a 
5259         join(). 
5260         Don't try to push the task function on the threadpool multiple
5261         times.
5262         Improve the g_warning message with some useful suggestions
5263         about how to fix the problem. 
5265 2006-08-23  Wim Taymans  <wim@fluendo.com>
5267         * gst/gstutils.c: (gst_pad_proxy_getcaps):
5268         Handle RESYNC correctly in _proxy_getcaps.
5270 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
5272         * gst/gstxml.c: (gst_xml_dispose), (gst_xml_parse_file),
5273         (gst_xml_parse_memory), (gst_xml_get_element):
5274           Chain up to parent class in dispose function and also
5275           unref the elements in the toplevel_elements GList.
5276           Don't leak XmlDocPtr in _parse_file() and _parse_memory().
5277           Always return a reference in gst_xml_get_element() rather
5278           than only sometimes.
5280         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
5281           Don't leak GstXml object.
5283 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
5285         * docs/gst/gstreamer-sections.txt:
5286         * gst/gstcaps.c: (gst_structure_is_equal_foreach),
5287         (gst_caps_merge):
5288         * gst/gstcaps.h:
5289         * libs/gst/base/gstbasetransform.c:
5290         (gst_base_transform_transform_caps):
5291           API: Add gst_caps_merge() and use it in basetransform, fixes #345444
5292           in a better way
5294 2006-08-21  Edward Hervey  <edward@fluendo.com>
5296         * gst/gstxml.c: (gst_xml_class_init), (gst_xml_dispose):
5297         Implement GObject::dispose virtual method in GstXML so we can free the
5298         top_elements GList.
5300 2006-08-21  Wim Taymans  <wim@fluendo.com>
5302         * gst/gstbuffer.c: (gst_buffer_make_metadata_writable),
5303         (gst_buffer_create_sub):
5304         Copy duration/offset_end/caps when creating a subbuffer of the
5305         complete parent.
5306         Make the subbuffer read-only when we make the metadata writable for
5307         now. Fixes #351768.
5309         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
5310         Added check for metadata copy when creating subbuffers.
5312 2006-08-21  Edward Hervey  <edward@fluendo.com>
5314         * libs/gst/base/gstbasetransform.c:
5315         (gst_base_transform_buffer_alloc):
5316         Only call downstream buffer_alloc if transform element is passthrough
5317         or always_in_place. Closes #350449.
5319 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
5321         * ChangeLog:
5322           ChangeLog surgery to add comments to previous changes
5324 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
5326         * gst/gst.c:
5327           Add comments
5329         * gst/gstpad.c: (gst_pad_set_active):
5330           Be more verbose in the log
5332         * libs/gst/base/gstbasetransform.c:
5333         (gst_base_transform_transform_caps):
5334           Simplify caps to get rid of duplicates, fixes #345444
5336 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
5338         * gst/gstvalue.c:
5339         * gst/gstvalue.h:
5340           Use these optimizations only internally.
5342 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
5344         * gst/gstvalue.c: (gst_value_compare_list),
5345         (gst_value_compare_fraction_range),
5346         (gst_value_intersect_fraction_fraction_range),
5347         (gst_value_intersect_fraction_range_fraction_range),
5348         (gst_value_subtract_fraction_fraction_range),
5349         (gst_value_subtract_fraction_range_fraction_range),
5350         (gst_value_get_compare_func), (gst_value_compare),
5351         (gst_value_compare_with_func):
5352         * gst/gstvalue.h:
5353           Saves the expensive lookup of the compare function in many cases
5354          (#345444)
5356 2006-08-18  Edward Hervey  <edward@fluendo.com>
5358         * tests/check/gst/gstinfo.c: (gst_info_suite):
5359         Disable test that require gstdebug if it wasn't built in core.
5361 2006-08-18  Stefan Kost  <ensonic@users.sf.net>
5363         * docs/random/ensonic/logging.txt:
5364           update ideas
5365           
5366         * gst/gstinfo.c: (gst_debug_log_default):
5367           reorder fields, save some columns, add optional color codes for log
5368           levels
5370 2006-08-18  Stefan Kost  <ensonic@users.sf.net>
5372         * docs/random/ensonic/logging.txt:
5373           add ideas about making the logs a bit more useful
5375 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
5377         * docs/pwg/advanced-events.xml:
5378         * docs/pwg/titlepage.xml:
5379           Update for 0.10 API (#340627). Add myself
5380           to authors list.
5382 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
5384         * docs/libs/gstreamer-libs-docs.sgml:
5385         * docs/libs/gstreamer-libs-sections.txt:
5386         * libs/gst/check/gstbufferstraw.c:
5387           Make gstcheck stuff show up in docs (still needs to
5388           be documented properly though).
5390 2006-08-16  Jan Schmidt  <thaytan@mad.scientist.com>
5392         * docs/gst/gstreamer-sections.txt:
5393         * gst/Makefile.am:
5394         * gst/gst.c: (init_post):
5395         * gst/gst_private.h:
5396         * gst/gstquark.c: (_priv_gst_quarks_initialize):
5397         * gst/gstquark.h:
5398         * gst/gstquery.c: (gst_query_new_position),
5399         (gst_query_set_position), (gst_query_parse_position),
5400         (gst_query_new_duration), (gst_query_set_duration),
5401         (gst_query_parse_duration), (gst_query_new_convert),
5402         (gst_query_set_convert), (gst_query_parse_convert),
5403         (gst_query_new_segment), (gst_query_set_segment),
5404         (gst_query_parse_segment), (gst_query_new_seeking),
5405         (gst_query_set_seeking), (gst_query_parse_seeking):
5406         Add internal helpers for pre-registering quarks from static strings
5407         and using the quark values directly instead of looking them up when
5408         creating and parsing queries. Can be used for event construction too.
5409         Closes #350432.
5411 2006-08-16  Wim Taymans  <wim@fluendo.com>
5413         * gst/gstbin.c:
5414         Fix bogus docs.
5416 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
5418         * gst/gstutils.c: (gst_util_set_value_from_string):
5419           Fix memleak (#351502).
5421         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
5422           Add unit test for most of gst_util_set_value_from_string()
5423           (not that one would want to encourage use of this function).
5425 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
5427         * libs/gst/check/gstcheck.h:
5428           Use const gchar * variables in fail_unless_equals_string
5429           macro to avoid compiler warnings (and don't use tabs for
5430           indenting).
5432 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
5434         * tools/gst-launch.c: (print_tag):
5435           More space on the left for the tag names, to cater
5436           for the 'extended comment' tag (not touching the
5437           string for the first line since it's translated).
5439 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
5441         * libs/gst/check/gstcheck.h:
5442           Fix ASSERT_CRITICAL and ASSERT_WARNING macros to actually
5443           print something when they fail.
5445 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
5447         * docs/gst/gstreamer-sections.txt:
5448         * gst/gsttaglist.c: (_gst_tag_initialize):
5449         * gst/gsttaglist.h:
5450           API: add GST_TAG_EXTENDED_COMMENT (#350935).
5451           Also change merge function for GST_TAG_COMMENT to
5452           use_first.
5454 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
5456         * gst/gstinfo.c: (gst_debug_print_object):
5457           Make GST_PTR_FORMAT print messages as well.
5459         * tests/check/gst/gstinfo.c: (printf_extension_log_func),
5460         (GST_START_TEST), (gst_info_suite):
5461           More tests.
5463 2006-08-14  Edward Hervey  <edward@fluendo.com>
5465         * gst/gstelementfactory.c: (gst_element_register):
5466         If the GstElementClass doesn't have a GstElementDetails with all fields
5467         filled up correctly (longname, description AND author), then error out
5468         nicely instead of crashing.
5470 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
5472         * gst/gststructure.c:
5473           Fix typo in docs and re-wrap docs blurb to not exceed 80 chars/line.
5475         * gst/gstvalue.h:
5476           Expand on the difference between arrays and lists as we use them.
5477           
5478 2006-08-14  Wim Taymans  <wim@fluendo.com>
5480         * libs/gst/base/gstbasesrc.c: (gst_base_src_change_state):
5481         If the parent state change function failed, don't assume we can safely
5482         stop the source, this will be done when the pads are deactivated.
5484 2006-08-14  Wim Taymans  <wim@fluendo.com>
5486         * gst/gstbuffer.c:
5487         * gst/gsttask.c: (gst_task_join):
5488         Small doc updates.
5490         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_activate_push),
5491         (gst_pad_stop_task):
5492         When pad (de)activation failed for some reason, restore the old
5493         activation mode and set the pad to flushing instead of assuming the
5494         pad is deactivated.
5495         If the _task_join() failed, reinstall the task on the pad so that it can
5496         be stopped later and return an error.
5498 2006-08-11  Andy Wingo  <wingo@pobox.com>
5500         * configure.ac:
5501         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packetizer_new):
5502         * tests/check/libs/gdp.c: (gst_dp_suite): GST_DISABLE_DEPRECATED
5503         is only for users of API that don't want to see deprecated
5504         functions in the headers; people that want to compile out
5505         deprecated code should pass -DGST_REMOVE_DEPRECATED into the
5506         CFLAGS. Fixes the build of multifdsink, or will soon..
5508 2006-08-11  Wim Taymans  <wim@fluendo.com>
5510         * docs/gst/gstreamer-sections.txt:
5511         Add GstClockClass vmethod docs.
5513         * gst/gstcaps.h:
5514         Mark #endif with comment for associated #if
5516         * gst/gstclock.c: (gst_clock_id_wait):
5517         * gst/gstclock.h:
5518         Add vmethod wait_jitter to avoid an unneeded _get_time() for
5519         most clock implementations.
5520         Document vmethods.
5521         Flesh out docs about resolution methods.
5522         API: GstClockClass::wait_jitter
5524         * gst/gstsystemclock.c: (gst_system_clock_class_init),
5525         (gst_system_clock_async_thread),
5526         (gst_system_clock_id_wait_jitter_unlocked),
5527         (gst_system_clock_id_wait_jitter):
5528         Use base class wait_jitter variant for improved performance
5529         due to less clock polling.
5531 2006-08-11  Edward Hervey  <edward@fluendo.com>
5533         * gst/gst.c: (gst_init_check), (init_post):
5534         Set gst as being initialized before scanning/updating the registry,
5535         since there might be my python plugin loader that calls gst_init() and
5536         we don't want to loop back in.
5537         Closes #350879
5539 2006-08-11  Wim Taymans  <wim@fluendo.com>
5541         * docs/design/part-qos.txt:
5542         Bring docs in line with the code. Mostly the sign of the jitter was
5543         wrong in the docs. Fixes #349943.
5545         * gst/gstclock.c:
5546         Fix the docs for the jitter.
5548         * gst/gstevent.c: (gst_event_new_custom), (gst_event_new_tag),
5549         (gst_event_parse_tag), (gst_event_new_buffer_size),
5550         (gst_event_parse_buffer_size), (gst_event_parse_qos),
5551         (gst_event_new_seek), (gst_event_parse_seek),
5552         (gst_event_new_navigation):
5553         Make sure the GstStructure has no parent when creating custom
5554         events.
5555         Add some more argument checking so that we avoid 0.0 rates.
5556         Flesh out the docs for the QoS event some more.
5558 2006-08-11  Wim Taymans  <wim@fluendo.com>
5560         * docs/gst/gstreamer-sections.txt:
5561         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
5562         (ensure_current_registry_forking), (ensure_current_registry),
5563         (parse_one_option), (parse_goption_arg), (gst_deinit),
5564         (gst_registry_fork_is_enabled), (gst_registry_fork_set_enabled):
5565         * gst/gst.h:
5566         Doc updates.
5567         Added API and command line option to disable registry forking in
5568         addition to the environment variable.
5569         Constify some static arrays.
5570         Added some more debug.
5571         Don't deinit twice.
5572         API: gst_registry_fork_is_enabled()
5573         API: gst_registry_fork_set_enabled()
5574         API: --gst-disable-registry-fork command line option
5575         Fixes #348918.
5577 2006-08-11  Tim-Philipp Müller  <tim at centricular dot net>
5579         * gst/gst.c: (gst_init):
5580           Fix typo in error message.
5582 2006-08-10  Stefan Kost  <ensonic@users.sf.net>
5584         * libs/gst/controller/gstcontroller.h:
5585           fix ABI size-correction
5587         * tests/check/libs/gdp.c: (gst_dp_suite):
5588           make tests that use deprecated API conditional
5590 2006-08-10  Stefan Kost  <ensonic@users.sf.net>
5592         * docs/libs/gstreamer-libs-sections.txt:
5593         * libs/gst/controller/gstcontroller.c:
5594         (_gst_controller_get_property), (_gst_controller_set_property),
5595         (_gst_controller_init), (_gst_controller_class_init):
5596         * libs/gst/controller/gstcontroller.h:
5597         * libs/gst/controller/gsthelper.c: (gst_object_get_control_rate),
5598         (gst_object_set_control_rate):
5599           API: add gst_object_{s,g}et_control_rate(), add private data section,
5600           fix docs
5602         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packetizer_new):
5603         * libs/gst/dataprotocol/dataprotocol.h:
5604           add deprecation guards to make gtk-doc happy and allow disabling cruft
5606 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
5608         * tests/check/Makefile.am:
5609         * tests/check/gst/.cvsignore:
5610           Let's enable the new unit test as well.
5612 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
5614         * configure.ac:
5615         * docs/gst/gstreamer-sections.txt:
5616         * gst/gstconfig.h.in:
5617         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_segment),
5618         (_gst_info_printf_extension_ptr),
5619         (_gst_info_printf_extension_segment):
5620           API: add GST_SEGMENT_FORMAT, which is a printf extension we
5621           register that lets us easily dump GstSegments into debug
5622           logs (#350419).
5624         * tests/check/gst/gstinfo.c: (segment_printf_extension_log_func),
5625         (info_segment_format_printf_extension), (gst_info_suite):
5626           Add simple unit test that logs a bunch of different segments (not
5627           valgrinded at the moment because of leaks in
5628           gst_debug_add_log_function).
5630 2006-08-09  Edward Hervey  <edward@fluendo.com>
5632         * libs/gst/base/gstbasetransform.c:
5633         (gst_base_transform_buffer_alloc):
5634         Even if we can't figure out the proper format to request downstream,
5635         call buffer_alloc() downstream with the input parameters without setting
5636         the caps on the srcpad. This will force negotiation in the chain
5637         function.
5638         Closes #350449
5640 2006-08-08  Edward Hervey  <edward@fluendo.com>
5642         * gst/gstghostpad.c: (gst_ghost_pad_do_unlink):
5643         Unlinking from a pad without a target is now a perfectly valid case
5644         which should NOT raise an assertion.
5645         This case would happen if a linked ghostpad its target set to NULL after
5646         it was previously linked.
5648 2006-08-08  Edward Hervey  <edward@fluendo.com>
5650         * tests/check/libs/gdp.c:
5651         Also comment out the test (see below).
5653 2006-08-08  Edward Hervey  <edward@fluendo.com>
5655         * tests/check/libs/gdp.c: (gst_dp_suite):
5656         Use the architecture information from config.h and not gcc macros
5657         in order to properly disable a test that fails on PPC64.
5659 2006-08-04  Tim-Philipp Müller  <tim at centricular dot net>
5661         * gst/gstelement.c: (gst_element_remove_pad):
5662           Don't crash printing the warning if the pad has no parent.
5664 2006-08-02  Wim Taymans  <wim@fluendo.com>
5666         * libs/gst/dataprotocol/dataprotocol.c:
5667         (gst_dp_header_from_buffer_any), (gst_dp_packet_from_caps_any),
5668         (gst_dp_crc), (gst_dp_header_payload_length),
5669         (gst_dp_header_payload_type), (gst_dp_packet_from_event),
5670         (gst_dp_packet_from_event_1_0), (gst_dp_buffer_from_header),
5671         (gst_dp_caps_from_packet), (gst_dp_event_from_packet_0_2),
5672         (gst_dp_event_from_packet), (gst_dp_validate_header),
5673         (gst_dp_validate_payload):
5674         Make debug category static
5675         Constify the crc table.
5676         Do some more arg checking in public functions.
5677         Fix some docs and do some small cleanups.
5679         * tests/check/libs/gdp.c: (GST_START_TEST), (gst_dp_suite):
5680         Add some more checks to see if GDP deals with bogus input.
5682 2006-07-31  Wim Taymans  <wim@fluendo.com>
5684         * gst/gstvalue.c: (gst_value_compare_list):
5685         Fix GstValueList comparison code. Fixes #347293.
5687         * tests/check/gst/gstvalue.c: (GST_START_TEST):
5688         Check to test GstValueList comparison.
5690 2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
5692         * gst/gstelementfactory.c: (gst_element_factory_create):
5693         Remove unnecessary ref/unref pair
5695         * gst/parse/grammar.y:
5696         Make sure to free the parse buffer on all code paths.
5697         Move a g_free up to the error handler where it's easier to see.
5699         * tests/check/gst/gstevent.c: (test_event):
5700         Extending timeout for downstream travelling events to 10 seconds to
5701         hopefully avoid intermittent failure on the buildbots.
5703         * tests/check/pipelines/parse-launch.c: (run_delayed_test):
5704         Don't manually set the state of the src element - it will happen as a
5705         natural consequence of the pipeline changing state, and that way it
5706         will do it in the right order too.
5708 2006-07-31  Wim Taymans  <wim@fluendo.com>
5710         * libs/gst/base/gstbasetransform.c:
5711         (gst_base_transform_buffer_alloc):
5712         Use OBJECT_LOCK and refcounting to get the pad caps in the
5713         buffer_alloc function because the caps could change while we are
5714         busy with them. Fixes #349105
5716 2006-07-31  Wim Taymans  <wim@fluendo.com>
5718         * gst/gstutils.c: (gst_pad_get_fixed_caps_func):
5719         Protect _PAD_CAPS with OBJECT_LOCK.
5721 2006-07-31  Wim Taymans  <wim@fluendo.com>
5723         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_dispose),
5724         (gst_pad_get_property), (gst_pad_activate_pull),
5725         (gst_pad_activate_push), (gst_pad_set_blocked_async),
5726         (gst_pad_set_activate_function),
5727         (gst_pad_set_activatepull_function),
5728         (gst_pad_set_activatepush_function), (gst_pad_set_chain_function),
5729         (gst_pad_set_getrange_function),
5730         (gst_pad_set_checkgetrange_function), (gst_pad_set_event_function),
5731         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
5732         (gst_pad_set_internal_link_function), (gst_pad_set_link_function),
5733         (gst_pad_set_unlink_function), (gst_pad_set_getcaps_function),
5734         (gst_pad_set_acceptcaps_function),
5735         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
5736         (gst_pad_set_bufferalloc_function), (gst_pad_link_check_hierarchy),
5737         (gst_pad_get_caps_unlocked), (gst_pad_get_caps),
5738         (gst_pad_peer_get_caps), (gst_pad_accept_caps),
5739         (gst_pad_peer_accept_caps), (gst_pad_set_caps),
5740         (gst_pad_configure_sink), (gst_pad_configure_src),
5741         (gst_pad_get_allowed_caps), (gst_pad_get_negotiated_caps),
5742         (gst_pad_buffer_alloc_unchecked), (gst_pad_alloc_buffer_full),
5743         (gst_pad_query), (gst_pad_load_and_link), (handle_pad_block),
5744         (gst_pad_chain_unchecked), (gst_pad_push), (gst_pad_get_range),
5745         (gst_pad_send_event):
5746         Use _DEBUG_OBJECT when it makes sense.
5747         Protect GST_PAD_CAPS with the OBJECT_LOCK.
5748         Small cleanups and code reflows.
5749         Avoid caps refcounting in _accept_caps.
5750         Refactor alloc_buffer so that the code performed on the peer is in a
5751         separate function. Also if the pad does not implement a buffer alloc
5752         function, we should still check if the pad is flushing before falling
5753         back to the default allocator.
5755 2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
5757         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
5758         Make all uses of identity and fakesink have silent=true to avoid
5759         serialising every passing data structure, which is breaking tests
5760         on FC4 for some unknown reason.
5762 2006-07-30  Stefan Kost  <ensonic@users.sf.net>
5764         * gst/parse/Makefile.am:
5765         * gst/parse/grammar.y:
5766         * gst/parse/parse.l:
5767           Reverted previous patch as it required to bump the flex dependency to
5768           2.5.31, where fc4/5 seem to ship only the ancient 2.5.4a :(
5770 2006-07-30  Stefan Kost  <ensonic@users.sf.net>
5772         Patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
5774         * gst/parse/Makefile.am:
5775         * gst/parse/grammar.y:
5776         * gst/parse/parse.l:
5777           push & pop the state of the lexer for reentrant use case
5778           Fixes #349180
5780 2006-07-29  Tim-Philipp Müller  <tim at centricular dot net>
5782         * libs/gst/base/gstbasesrc.h:
5783           Note in the docs that the ::newsegment vfunc is not actually used by
5784           GstBaseSrc.
5786 2006-07-28  Wim Taymans  <wim@fluendo.com>
5788         * libs/gst/base/gstcollectpads.c:
5789         (gst_collect_pads_set_flushing_unlocked), (gst_collect_pads_pop),
5790         (gst_collect_pads_clear), (gst_collect_pads_flush),
5791         (gst_collect_pads_event), (gst_collect_pads_chain):
5792         When flushing a pad, also clear the queued buffer so that we don't
5793         accidentally use it when we shouldn't.
5794         Fix leaks by inreffing incomming buffer.
5795         Flush out queued buffers in case of errors.
5796         Fixes #347452.
5798 2006-07-28  Wim Taymans  <wim@fluendo.com>
5800         * docs/random/phonon-gst:
5801         Random notes about a Phonon backend.
5803 2006-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
5805         * libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
5806         Extra debug output
5807         * tests/check/libs/gdp.c: (gst_dp_suite):
5808         Take a whack at fixing the ppc compile using a different define to
5809         disable the broken test.
5811         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
5812         Remove excess g_print()
5814 2006-07-27  Jan Schmidt <thaytan@mad.scientist.com>
5816         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
5817         Oops, meant to uncomment this line too to dampen the noise a bit.
5819 2006-07-27  Jan Schmidt <thaytan@mad.scientist.com>
5821         * gst/parse/grammar.y:
5822         * gst/parse/parse.l:
5823         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe),
5824         (GST_START_TEST), (parse_suite):
5825         Fix some of the leaks exposed by extending the parse-launch testsuite,
5826         and move the 3 I can't figure out into a separate test that won't run
5827         the pipelines unless the appropriate line is uncommented.
5829 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
5831         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
5832           Requesting 0 bytes before the end of the file should result in
5833           FLOW_OK and an empty buffer, not FLOW_UNEXPECTED. Thank you
5834           unit test.
5836 2006-07-27  Wim Taymans  <wim@fluendo.com>
5838         * gst/gstcaps.c: (gst_static_caps_get), (gst_caps_get_structure):
5839         Fix useless assert, a uint is always positive.
5841         * gst/gststructure.c: (gst_structure_nth_field_name),
5842         (gst_structure_foreach), (gst_structure_map_in_place):
5843         Check input arguments for public functions to avoid obvious crashes.
5845         * plugins/elements/gstfakesink.c: (gst_fake_sink_render):
5846         * plugins/elements/gstfakesink.h:
5847         Do less useless typechecking.
5849 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
5851         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init):
5852           Do not use mmap() by default since there are a number of error
5853           conditions that we would like to handle in a non-fatal way that
5854           will result in a SIGBUS if we use mmap(). Examples: external
5855           devices (USB harddrive, portable music player) being unplugged
5856           while in use; file on mounted CD/DVD that can't be read because
5857           the medium is partly damaged. Fixes #348455 and #348475.
5859 2006-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
5861         * gst/gstquery.h:
5862         Delete unused and misleading define of GST_QUERY_TYPE_RATE_DEN -
5863         rates are a gdouble
5865 2006-07-26  Stefan Kost  <ensonic@users.sf.net>
5867         * gst/gstregistry.c:
5868           Move big documentation comment into class section header, so that it
5869           appears in the API docs.
5871 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
5873         * docs/gst/gstreamer-sections.txt:
5874         Oops. Commit the docs additions too for new API.
5875         Also, remove the mention of the non-existent GST_QUERY_TYPE_RATE_DEN
5877 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
5879         * gst/gststructure.c: (gst_structure_id_set),
5880         (gst_structure_id_set_valist):
5881         * gst/gststructure.h:
5882         Add API for setting values into structures without performing
5883         a quark lookup, if the appropriate quark is already known.
5885         API: gst_structure_id_set
5886         API: gst_structure_id_set_valist
5888         * gst/parse/grammar.y:
5889         * gst/parse/parse.l:
5890         Remove some dead code shown by the coverage information.
5891         Don't throw a critical g_warning when encountering a syntax error,
5892         just warn and let the normal error path handle it.
5894         * plugins/elements/gstelements.c:
5895         Bump the rank of filesink up to PRIMARY so that it is preferred over
5896         gnomevfssink for file:// sink uri's
5898         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe),
5899         (GST_START_TEST), (run_delayed_test),
5900         (gst_parse_test_element_base_init),
5901         (gst_parse_test_element_class_init), (gst_parse_test_element_init),
5902         (gst_parse_test_element_change_state),
5903         (gst_register_parse_element), (parse_suite):
5904         Beef up the tests for parse syntax to check that more error cases
5905         fail as they are supposed to. Increases the test coverage a bit.
5907 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
5909         * docs/manual/basics-elements.xml:
5910           Fix gst_element_link() example.
5912         * gst/gstutils.c:
5913           Mention in API docs that one should usually gst_bin_add()
5914           elements to a bin or pipeline before doing the linking.
5915           
5916 2006-07-26  Wim Taymans  <wim@fluendo.com>
5918         * gst/gstbuffer.c: (gst_buffer_get_type), (gst_buffer_new),
5919         (gst_subbuffer_get_type), (gst_buffer_create_sub):
5920         Avoid function call for known types by keeping the buffer and
5921         subbuffer GType global.
5923         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
5924         Random silly optimisations in read() path.
5926 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
5928         * tools/gst-launch.c: (main):
5929           If the top-level of the parse is a normal bin, it doesn't do the
5930           right logic to run as a top-level element, so place it inside a
5931           pipeline.
5933 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
5935         * plugins/elements/gstfilesrc.c: (gst_file_src_set_property):
5936           Remove superfluous g_object_notify() calls, GObject does
5937           that for us automatically.
5939 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
5941         * gst/gstinfo.h:
5942           on Win32, use dllspec to export the debug category symbols
5944 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
5946         * gst/gsttaglist.c: (_gst_tag_initialize):
5947           Allow more than one GST_TAG_IMAGE per taglist.
5949 2006-07-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5951         * gst/gstminiobject.c:
5952           update docs
5953         * plugins/elements/gstfdsrc.c: (gst_fd_src_set_property),
5954         (gst_fd_src_create):
5955           log recurring events at LOG level
5956           add more debug for when the fd gets set
5958 2006-07-21  Stefan Kost  <ensonic@users.sf.net>
5960         * gst/gstparse.c: (gst_parse_launch):
5961           Also remove reentrance checks if flex is MT safe (#348179)
5962          Fix my empty ChangeLog entry below
5964 2006-07-21  Andy Wingo  <wingo@pobox.com>
5966         * docs/libs/gstreamer-libs-sections.txt: Attempt to pacify buildbot.
5968         * libs/gst/check/Makefile.am
5969         (libgstcheck_@GST_MAJORMINOR@include_HEADERS)
5970         (libgstcheck_@GST_MAJORMINOR@_la_SOURCES): 
5971         * libs/gst/check/gstbufferstraw.h:
5972         * libs/gst/check/gstbufferstraw.c: Add some new hype testing
5973         functions, thus proving I am still a GStreamer haxor. OK I wrote
5974         them a long time ago, but anyways.
5976 2006-07-21  Stefan Kost  <ensonic@users.sf.net>
5978         * configure.ac:
5979         * gst/gstparse.c: (gst_parse_launch):
5980           Check for flex version and omit mutex if we have a MT save flex
5981           (fixes #348179)
5983 2006-07-21  Wim Taymans  <wim@fluendo.com>
5985         * gst/gstparse.c: (gst_parse_launch):
5986         Protect recursive calls to _parse with a recursive mutex
5987         and busy flag.
5989 2006-07-21  Wim Taymans  <wim@fluendo.com>
5991         * tests/check/gst/gstpad.c: (GST_START_TEST):
5992         Fix leak in test.
5994 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
5996         * gst/gstparse.c: (gst_parse_launch):
5997           Do not hang on recursive usage of gst_parse_launch()
5999 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
6001         * gst/gsttaglist.c:
6002           Add some more docs, comments and FIXME 0.11s here and there
6003           and also fix some typos.
6005 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
6007         * gst/gstsegment.h:
6008           Convert tabs to spaces for better readability. 
6010 2006-07-20  Edward Hervey  <edward@fluendo.com>
6012         * tests/check/libs/gdp.c: (gst_dp_suite):
6013         the test_buffer test fails at line 140 on ppc64 at the following
6014         check:
6015         fail_unless (GST_BUFFER_FLAG_IS_SET (newbuffer,
6016                 GST_BUFFER_FLAG_IN_CAPS),
6017                 "GST_BUFFER_IN_CAPS flag should have been copied !");
6018         See bug #348114 for more details.
6020 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
6022         * docs/pwg/advanced-scheduling.xml:
6023         * gst/gstpad.c:
6024           Fix typos (#348000).
6026 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
6028         * docs/pwg/intro-basics.xml:
6029           Fix wrong links (#347927).
6031 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
6033         * gst/gstregistry.h:
6034         * gst/gstregistryxml.c: (load_feature),
6035         (gst_registry_xml_read_cache), (gst_registry_xml_save_feature):
6036         * win32/common/config.h:
6037           make --disable-index work (#342564)
6039 2006-07-18  Wim Taymans  <wim@fluendo.com>
6041         Patch by: Peter Kjellerstedt <pkj at axis dot com>
6043         * gst/Makefile.am:
6044         * gst/gsttrace.h:
6045         The attached patch adds two missing defines to gsttrace.h when tracing
6046         is disabled.  It also corrects one existing define.
6047         Fixes #347756.
6049 2006-07-17  Wim Taymans  <wim@fluendo.com>
6051         * docs/gst/gstreamer-sections.txt:
6052         * gst/gst.c: (gst_segtrap_is_enabled), (gst_segtrap_set_enabled):
6053         * gst/gst.h:
6054         * gst/gstplugin.c: (_gst_plugin_fault_handler_restore):
6055         Add two functions to check and change the SIGSEGV behaviour
6056         when loading plugins.
6057         Don't mess with the SIGSEGV handler when we were told not to.
6058         Fixes #347794.
6059         API: gst_segtrap_is_enabled
6060         API: gst_segtrap_set_enabled
6062 2006-07-14  Wim Taymans  <wim@fluendo.com>
6064         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
6065         * tests/check/elements/filesrc.c: (GST_START_TEST):
6066         Revert fix for regression in #347408 after release.
6068 2006-07-14  Tim-Philipp Müller  <tim at centricular dot net>
6070         Patch by: Antoine Tremblay <hexa00 at gmail com>
6072         * gst/gstutils.c: (gst_element_unlink):
6073           Free iterator when done (#347311).
6075         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
6076           And add a test case for this.
6078 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
6080         * configure.ac:
6081         Bump nano back to CVS
6083 === release 0.10.9 ===
6085 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
6087         * configure.ac:
6088           releasing 0.10.9, "On the road again"
6090 2006-07-13  Wim Taymans  <wim@fluendo.com>
6092         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
6093         * tests/check/elements/filesrc.c: (GST_START_TEST):
6094         Revert pull-0 fix for release. Disable check. Fixes #347408.
6096 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6098         * libs/gst/dataprotocol/dataprotocol.c:
6099         (gst_dp_event_from_packet_1_0):
6100           Fixes #347337: failure to deserialize event packets with
6101           empty payload (only event type)
6103 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6105         * gst/Makefile.am:
6106           do not install a .c file in the header directory
6108 2006-07-13  Edward Hervey  <edward@fluendo.com>
6110         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked):
6111         GhostPad no longer implicitely use the padtemplates of the targets.
6112         Fixes #347384
6114 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
6116         * gst/gstvalue.c: (gst_value_compare_list),
6117         (gst_value_compare_array), (_gst_value_initialize):
6118         * tests/check/gst/gstvalue.c: (GST_START_TEST):
6119         Make GstValueArray comparison be order dependent as designed.
6120         Add checks for value lists and value array comparisons.
6121         Fixes #347221
6123 2006-07-11  Edward Hervey  <edward@fluendo.com>
6125         * gst/gstbin.c: (activate_pads),
6126         (iterator_activate_fold_with_resync), (gst_bin_src_pads_activate),
6127         (gst_bin_change_state_func):
6128         (de)activate src pads before calling state_change on the childs.
6129         This is to avoid the case where a src ghostpad is blocked (holding the
6130         stream lock), which would block the deactivation of the ghostpad's
6131         target pad.
6132         * gst/gstghostpad.c: (gst_proxy_pad_do_query_type),
6133         (gst_proxy_pad_do_event), (gst_proxy_pad_do_query),
6134         (gst_proxy_pad_do_internal_link), (gst_proxy_pad_do_bufferalloc),
6135         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange),
6136         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_getcaps),
6137         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
6138         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target_unlocked),
6139         (gst_proxy_pad_set_target), (gst_proxy_pad_get_internal),
6140         (gst_proxy_pad_dispose), (gst_proxy_pad_init),
6141         (gst_ghost_pad_parent_set), (gst_ghost_pad_parent_unset),
6142         (gst_ghost_pad_class_init),
6143         (gst_ghost_pad_internal_do_activate_push),
6144         (gst_ghost_pad_internal_do_activate_pull),
6145         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
6146         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
6147         (gst_ghost_pad_dispose), (gst_ghost_pad_new_no_target),
6148         (gst_ghost_pad_new), (gst_ghost_pad_set_target):
6149         GhostPads now create their internal GstProxyPad at creation (and not
6150         when they're linked, as it was being done previously).
6151         The internal and target pads are linked straight away.
6152         The data will also travel through the other pad in order to make
6153         pad blocking and probes non-hackish (the probe/block now really happens
6154         on the GhostPad and not on the target).
6155         * gst/gstpad.c: (gst_pad_set_blocked_async),
6156         (gst_pad_link_prepare), (gst_pad_push_event):
6157         Remove previous ghostpad cruft.
6158         * gst/gstutils.c: (gst_pad_add_data_probe),
6159         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
6160         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
6161         (gst_pad_remove_buffer_probe):
6162         Remove previous ghost pad cruft.
6163         Added more detailed debug statements.
6164         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
6165         Fix the testsuite for refcounting changes.
6166         The comments about who has references were correct, but the refcount
6167         being checked wasn't the same (!?!).
6169         Fixes #341029
6171 2006-07-10  Stefan Kost  <ensonic@users.sf.net>
6173         * docs/gst/gstreamer-sections.txt:
6174         * gst/gstconfig.h.in:
6175         More docs for configuration options, add docs to gtk-doc.
6177 2006-07-10  Stefan Kost  <ensonic@users.sf.net>
6179         * gst/Makefile.am:
6180         * gst/gstconfig.h.in:
6181         * win32/common/config.h:
6182         Fix build when disabling tracing (fixes #344016). Also start to document
6183         the defines that disable the sub-systems.
6185 2006-07-10  Edward Hervey  <edward@fluendo.com>
6187         * gst/gst.c: (ensure_current_registry_forking):
6188         let's make valgrind happy...
6190 2006-07-09  Wim Taymans  <wim@fluendo.com>
6192         * gst/gstelement.c: (activate_pads),
6193         (iterator_activate_fold_with_resync), (gst_element_pads_activate):
6194         Better pad activation code: Reset the collect value too on resync.
6195         Add some comments.
6197 2006-07-09  Wim Taymans  <wim@fluendo.com>
6199         * gst/gstpad.c: (gst_pad_init), (gst_pad_activate_pull),
6200         (gst_pad_activate_push):
6201         Use some more macros where it makes sense.
6202         Allow pad mode switching instead of asserting. When a pad
6203         is activated in one mode and we activate it in another, 
6204         deactivate it first before activating it in a different mode.
6205         Fixes #329198.
6207 2006-07-08  Andy Wingo  <wingo@pobox.com>
6209         * tools/gst-launch.c (main): Handle err == NULL.
6211         * gst/gst.c (init_post, ensure_current_registry)
6212         (ensure_current_registry_forking)
6213         (ensure_current_registry_nonforking): Reduce #ifdef ratnest by
6214         factoring out the registry scanning into separate functions. Don't
6215         fork for the rescan is GST_REGISTRY_FORK=no; useful in debugging.
6216         Better environment var name/interface suggestions accepted.
6218 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
6220         * gst/gstobject.c: (gst_object_set_name_default),
6221         (gst_object_set_name):
6222           Random micro-optimisation: don't use a hash table
6223           with strings as keys and the usual strdup/strcmp
6224           involved, but rather just use the GQuark of the
6225           type name as key, since it needs to be looked up
6226           anyway to get the type name string.
6228         * tests/check/gst/gstobject.c: (GST_START_TEST):
6229           Fix various leaks.
6231 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
6233         * gst/gstbin.c: (compare_interface), (gst_bin_get_by_interface),
6234         (gst_bin_iterate_all_by_interface):
6235           Can't use GPOINTER_TO_INT and GINT_TO_POINTER with GTypes.
6236           GTypes are gulongs and thus the top 4 bytes might be cut
6237           off on some platforms when doing GPOINTER_TO_INT, leading
6238           to invalid GTypes and bad things happening (see RH bug #179654).
6239           Also add a check to make sure the type passed in is really
6240           an interface type.
6242 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
6244         * .cvsignore:
6245           Ignore more.
6247 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
6249         * Makefile.am:
6250         * configure.ac:
6251         * gst-element-check.m4:
6252         * gst-element-check.m4.in:
6253           Make gst-element-check-$VERSION.m4 call gst-inspect-$VERSION
6254           instead of the unversioned gst-inspect (#324176, #168659).
6256 2006-07-06  Wim Taymans  <wim@fluendo.com>
6258         * gst/gstmessage.h:
6259         Use a valid int for the _MESSAGE_ANY enum value to avoid compiler
6260         warnings.
6262 2006-07-06  Wim Taymans  <wim@fluendo.com>
6264         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
6265         (gst_base_src_wait), (gst_base_src_update_length),
6266         (gst_base_src_get_range), (gst_base_src_default_check_get_range),
6267         (gst_base_src_check_get_range), (gst_base_src_pad_check_get_range),
6268         (gst_base_src_loop), (gst_base_src_start),
6269         (gst_base_src_activate_pull):
6270         Update docs.
6271         blocksize == 0 now means the default blocksize when working in push
6272         based mode.
6273         Remove some pointless asserts in _wait function.
6274         Fix offset/length calculations and EOS handling. We can now pull 0
6275         bytes as well, which is allowed.
6276         use _check_get_range() to decide if we can operate in _pull based
6277         mode.
6278         Fix refcounting leak when check_get_range function was not 
6279         implemented.
6280         API GstBaseSrc::blocksize range can be 0 too now (default)
6282         * tests/check/elements/filesrc.c: (GST_START_TEST),
6283         (filesrc_suite):
6284         Added check to test _get_range() behaviour.
6286 2006-07-06  Wim Taymans  <wim@fluendo.com>
6288         * gst/gstpad.c: (gst_pad_chain_unchecked), (gst_pad_chain),
6289         (gst_pad_push), (gst_pad_check_pull_range), (gst_pad_get_range),
6290         (gst_pad_pull_range):
6291         * gst/gstpad.h:
6292         Lots of comments and docs added to the pad functions.
6293         Flesh out the expected behaviour of the get_range() functions.
6295 2006-07-06  Wim Taymans  <wim@fluendo.com>
6297         * gst/gstbus.h:
6298         * gst/gstclock.h:
6299         * gst/gstevent.h:
6300         * gst/gstiterator.h:
6301         * gst/gstpad.h:
6302         * gst/gstplugin.h:
6303         * gst/gsttask.h:
6304         Remove comma at end of enumerator list. 
6306 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
6308         * win32/common/libgstbase.def:
6309         * win32/common/libgstdataprotocol.def:
6310         * win32/common/libsgtreamer.def:
6311         Add new exported functions.
6313 2006-07-05  Wim Taymans  <wim@fluendo.com>
6315         * libs/gst/base/gstpushsrc.c: (gst_push_src_check_get_range):
6316         Add some more docs here and there.
6318 2006-07-05  Wim Taymans  <wim@fluendo.com>
6320         * libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_object),
6321         (gst_base_sink_loop), (gst_base_sink_get_position):
6322         When operating in pull mode update the offset so that we
6323         read sequentially.
6325 2006-07-05  Wim Taymans  <wim@fluendo.com>
6327         * gst/gstregistryxml.c: (read_string):
6328         Avoid strdup. (will happen in libxml, but hey!)
6330         * gst/gsturi.c:
6331         Add some more docs.
6333 2006-07-05  Wim Taymans  <wim@fluendo.com>
6335         * gst/gstbuffer.c: (_gst_buffer_copy), (gst_buffer_create_sub):
6336         * tests/check/gst/gstbuffer.c: (GST_START_TEST),
6337         (gst_buffer_suite):
6338         No point in checking if the size of the subbuffer > 0, the
6339         code handles it correclty as demonstrated by unit test.
6340         Also add a unit test for the zero sized _new_and_alloc and
6341         _copy. Fixes #346663.
6343 2006-07-05  Wim Taymans  <wim@fluendo.com>
6345         * libs/gst/base/gstbasetransform.c:
6346         (gst_base_transform_prepare_output_buffer),
6347         (gst_base_transform_buffer_alloc),
6348         (gst_base_transform_handle_buffer):
6349         Make sure the buffer we pass to transform_ip has a refcount of
6350         1 and thus is writable. Fixes #343196
6352 2006-07-04  Jan Schmidt  <thaytan@mad.scientist.com>
6354         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
6355         (gst_file_src_init), (gst_file_src_set_property),
6356         (gst_file_src_get_property), (gst_file_src_map_region):
6357         * plugins/elements/gstfilesrc.h:
6358         Add "sequential" property, off by default, to use madvise and hint
6359         to the kernel that sequential access is desired.
6360         Touch all retrieved pages by default to ensure they are pulled
6361         into memory. (Closes #345720)
6363 2006-07-03  Wim Taymans  <wim@fluendo.com>
6365         * docs/design/part-block.txt:
6366         * docs/design/part-dynamic.txt:
6367         Small docs updates.
6369 2006-07-03  Wim Taymans  <wim@fluendo.com>
6371         * gst/gstcaps.c: (gst_caps_new_empty), (_gst_caps_free),
6372         (gst_caps_unref), (gst_static_caps_get),
6373         (gst_caps_append_structure):
6374         * gst/gstclock.c: (gst_clock_entry_new), (_gst_clock_id_free):
6375         Use GSlice when the glib we build against is >= 2.10
6377 2006-07-03  Wim Taymans  <wim@fluendo.com>
6379         * gst/gstelement.c: (gst_element_pads_activate):
6380         Small cleanup in pad activation code.
6382 2006-07-03  Wim Taymans  <wim@fluendo.com>
6384         Patch by: Peter Kjellerstedt <pkj at axis dot com>
6386         * gst/gst-i18n-app.h:
6387         * gst/gst-i18n-lib.h:
6388         * tools/gst-inspect.c: (print_signal_info):
6389         The attached patch will make the inclusion of gettext.h unconditional in
6390         gst/gst-i18n-app.h and gst/gst-i18n-lib.h, and it will remove the inclusion of
6391         libintl.h in tools/gst-inspect.c.
6392         This allows use of --disable-nls again and fixes #344642.
6394 2006-07-03  Edward Hervey  <edward@fluendo.com>
6396         * gst/gstpad.c: (handle_pad_block), (gst_pad_push_event):
6397         Implement pad blocking on events according to part-block.txt.
6398         More comments on behaviour.
6399         * tests/check/gst/gstevent.c: (test_event):
6400         Send event to peer pad of blocked pad (else it will block).
6402 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6404         * libs/gst/check/gstcheck.c: (gst_check_message_error),
6405         (gst_check_run_suite):
6406           if we get the wrong message, give us the types as string
6407         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
6408           Fix a translatable
6409         * tests/check/elements/filesrc.c: (GST_START_TEST):
6410           add a test for trying to open a non-existing file
6412 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6414         * tests/check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
6415           add a test for adding self
6417 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6419         * libs/gst/check/gstcheck.h:
6420           add some assert_ as alias for fail_unless_*
6421         * tests/check/gst/gst.c: (GST_START_TEST), (gst_suite):
6422           increase test coverage
6424 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6426         * Makefile.am:
6427           include lcov.mak for lcov coverage generation
6428         * tools/Makefile.am:
6429           add to CLEANFILES
6431 2006-07-02  Edward Hervey  <edward@fluendo.com>
6433         * tests/check/elements/.cvsignore:
6434         moaping
6436 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6438         * configure.ac:
6439           don't set CFLAGS and friends for gcov, done from GST_GCOV now
6440         * tests/check/Makefile.am:
6441           clean up gcov files
6443 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6445         * gst/gstcaps.c: (gst_caps_remove_and_get_structure):
6446           remove gst_caps_simplify; it was not declared and not used
6447           and deprecated in 0.8
6449 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6451         * docs/faq/gst-uninstalled:
6452           don't put empty paths on PYTHONPATH
6453         * docs/gst/gstreamer-sections.txt:
6454           remove some symbols that are not there
6456 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6458         * gst/gstcaps.c: (gst_caps_compare_structures):
6459           whitespace fixes
6460         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
6461         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
6462           add more tests
6464 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6466         * libs/gst/dataprotocol/Makefile.am:
6467           build dataprotocol test by linking to the lib, instead of
6468           compiling the source, so we get coverage
6469         * tests/check/Makefile.am:
6470         * tests/check/elements/filesrc.c: (event_func), (setup_filesrc),
6471         (cleanup_filesrc), (GST_START_TEST), (filesrc_suite):
6472           add a test for filesrc
6474 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6476         * tests/check/gst/gststructure.c: (GST_START_TEST),
6477         (gst_structure_suite):
6478           Push coverage from 59.04% to 70.00%
6480 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6482         * tests/check/Makefile.am:
6483           gst-inspect every element; this makes sure that we also get
6484           coverage on element's get/set functions
6486 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
6488         * configure.ac:
6489           set CFLAGS and friends to -O0 if gcov is being used
6490           add GCOV LIBS
6491         * gst/Makefile.am:
6492         * libs/gst/base/Makefile.am:
6493         * libs/gst/check/Makefile.am:
6494         * libs/gst/controller/Makefile.am:
6495         * libs/gst/dataprotocol/Makefile.am:
6496         * libs/gst/net/Makefile.am:
6497         * plugins/elements/Makefile.am:
6498         * plugins/indexers/Makefile.am:
6499           add makefile rules to generate gcov data and clean up
6500         * tests/check/Makefile.am:
6501           add a coverage target that generates an html overview
6502           of coverage data
6504 2006-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6506         * tests/check/elements/fakesink.c:
6507         * tests/check/elements/fakesrc.c:
6508         * tests/check/elements/fdsrc.c:
6509         * tests/check/elements/identity.c:
6510         * tests/check/generic/sinks.c: (gst_sinks_suite):
6511         * tests/check/generic/states.c:
6512         * tests/check/gst/gst.c:
6513         * tests/check/gst/gstabi.c:
6514         * tests/check/gst/gstbin.c:
6515         * tests/check/gst/gstbuffer.c: (gst_buffer_suite):
6516         * tests/check/gst/gstbus.c: (gst_bus_suite):
6517         * tests/check/gst/gstcaps.c: (GST_START_TEST):
6518         * tests/check/gst/gstelement.c:
6519         * tests/check/gst/gstevent.c: (gst_event_suite):
6520         * tests/check/gst/gstghostpad.c:
6521         * tests/check/gst/gstiterator.c: (gst_iterator_suite):
6522         * tests/check/gst/gstmessage.c: (gst_message_suite):
6523         * tests/check/gst/gstminiobject.c:
6524         * tests/check/gst/gstobject.c:
6525         * tests/check/gst/gstpad.c:
6526         * tests/check/gst/gstpipeline.c:
6527         * tests/check/gst/gstplugin.c:
6528         * tests/check/gst/gstquery.c: (gst_query_suite):
6529         * tests/check/gst/gstsegment.c: (gst_segment_suite):
6530         * tests/check/gst/gststructure.c:
6531         * tests/check/gst/gstsystemclock.c:
6532         * tests/check/gst/gsttag.c:
6533         * tests/check/gst/gsttask.c: (gst_task_suite):
6534         * tests/check/gst/gstutils.c:
6535         * tests/check/gst/gstvalue.c:
6536         * tests/check/libs/adapter.c:
6537         * tests/check/libs/basesrc.c:
6538         * tests/check/libs/collectpads.c:
6539         * tests/check/libs/controller.c:
6540         * tests/check/libs/gdp.c: (gst_dp_suite):
6541         * tests/check/libs/gstnetclientclock.c:
6542         * tests/check/libs/gstnettimeprovider.c:
6543         * tests/check/libs/libsabi.c: (libsabi_suite):
6544         * tests/check/libs/typefindhelper.c:
6545         * tests/check/pipelines/cleanup.c:
6546         * tests/check/pipelines/parse-launch.c:
6547         * tests/check/pipelines/simple-launch-lines.c:
6548         * tests/check/pipelines/stress.c: (stress_suite):
6549           use the new macro
6551 2006-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6553         * libs/gst/check/gstcheck.c: (gst_check_run_suite):
6554         * libs/gst/check/gstcheck.h:
6555           create a macro and function so that the simple unit test
6556           case can be just one macro to create main()
6558 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
6560         * gst/gstbin.c: (gst_bin_restore_thyself):
6561         * gst/gstxml.c: (gst_xml_make_element):
6562           Fix deserialisation from XML. Set parent manually
6563           instead of using gst_bin_add(), since gst_bin_add()
6564           will unlink all pads of the element being added.
6565           Fixes #341667.
6567 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
6569         Patch by: Peter Kjellerstedt <pkj at axis com>
6571         * gst/gst.c: (prepare_for_load_plugin_func), (split_and_iterate):
6572           Fix missing g_strdup() and double free when using the
6573           --gst-plugin-load command line option (#346097).
6575 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
6577         * gst/gstinfo.c:
6578           Promote GST_DEBUG_CATEGORY_STATIC in example in docs.
6580         * libs/gst/net/gstnetclientclock.c:
6581         * libs/gst/net/gstnettimeprovider.c:
6582           Use GST_DEBUG_CATEGORY_STATIC here too (#342503).
6584 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
6586         * docs/manual/advanced-dataaccess.xml:
6587           Fix buffer probe example compilation in
6588           ADM (#345708).
6589         
6590 2006-06-22  Edward Hervey  <edward@fluendo.com>
6592         * gst/gstelement.c: (gst_element_pads_activate):
6593         We need to deactivate src pads first and then sink pads.
6594         The reason is the src pads might be blocking while holding the streaming
6595         lock, so we need to deactivate them first so that deactivating the sink
6596         pads doesn't block (since it will require the streaming lock).
6598 2006-06-22  Wim Taymans  <wim@fluendo.com>
6600         * libs/gst/base/gstbasetransform.c:
6601         (gst_base_transform_buffer_alloc):
6602         Forgot to remove two unneeded unrefs.
6603         Simplify a check _is_equal allready checks the obvious case.
6605 2006-06-22  Wim Taymans  <wim@fluendo.com>
6607         * docs/design/part-block.txt:
6608         Some docs about what pad_block should do.
6610 2006-06-22  Wim Taymans  <wim@fluendo.com>
6612         * gst/gstcaps.c: (gst_caps_replace):
6613         Fix crasher when passed NULL. Doc clarification.
6614         Optimize for the trivial case.
6616         * gst/gstpipeline.c: (gst_pipeline_change_state):
6617         Small cleanups.
6619         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
6620         Small documentation cleanup.
6622         * libs/gst/base/gstbasetransform.c:
6623         (gst_base_transform_buffer_alloc):
6624         Don't use silly gst_pad_get_negotiated_caps, GST_PAD_CAPS
6625         is what we need and it avoids a whole lot of redundant 
6626         refcount operations.
6628 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
6630         Patch by: Philip Jägenstedt  <philip at lysator liu se>
6632         * docs/manual/advanced-dataaccess.xml:
6633           Fix 'Embedding static elements' section to use
6634           GST_PLUGIN_DEFINE_STATIC (#345607).
6636 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
6638         * tests/check/pipelines/simple-launch-lines.c: (test_stop_from_app):
6639           Attempt to 'fix' spuriously failing test case: it seems like the
6640           timeout of half a second is simply too small when the system is under
6641           load otherwise, and the timeout doesn't really seem to serve any
6642           particular purpose here. Give the pipeline a few seconds to preroll
6643           first, and then give it another half a second to go from PAUSED to
6644           PLAYING and marshal the message into the main thread.
6646 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
6648         * tools/gst-feedback-m.m:
6649           Don't only use unversioned tools, try versioned tools as well
6650           (#345086).
6652 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
6654         * gst/gstbus.c: (gst_bus_class_init):
6655           Fix some typos, make docs more explicit.
6657 2006-06-20  Wim Taymans  <wim@fluendo.com>
6659         * tests/check/gst/gstghostpad.c: (block_callback),
6660         (GST_START_TEST), (gst_ghost_pad_suite):
6661         Added some more ghostpad tests, mainly blocking
6662         and probes.
6664 2006-06-16  Wim Taymans  <wim@fluendo.com>
6666         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
6667         (gst_file_sink_close_file), (gst_file_sink_do_seek),
6668         (gst_file_sink_event), (gst_file_sink_render):
6669         * plugins/elements/gstfilesink.h:
6670         Check if we can seek in the file instead of assuming
6671         we always can. Post an error when we are asked to seek in a
6672         non-seekable file (like a fifo). Fixes #343312.
6673         Some cleanups.
6675 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
6677         * tools/gst-launch.1.in:
6678           Un-garble (fourcc) bit in filtered caps section.
6680 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
6682         * docs/manual/advanced-autoplugging.xml:
6683         * docs/manual/basics-helloworld.xml:
6684         * docs/manual/highlevel-components.xml:
6685           Don't leak bus reference in sample code.
6687 2006-06-15  Tim-Philipp Müller  <tim at centricular dot net>
6689         * autogen.sh:
6690           Add default for new --enable-plugin-docs switch.
6692         * configure.ac:
6693           Use new GST_PLUGIN_DOCS macro to check for pyxml etc.
6694           Fixes #344039.
6696         * docs/Makefile.am:
6697           Use new ENABLE_PLUGIN_DOCS conditional.
6699 2006-06-14  Wim Taymans  <wim@fluendo.com>
6701         * gst/gstbin.c: (bin_query_duration_done), (gst_bin_query):
6702         Make it clear with a FIXME and a real define what the #if 0
6703         previously disabled.
6705 2006-06-14  Wim Taymans  <wim@fluendo.com>
6707         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
6708         (gst_base_sink_preroll_object), (gst_base_sink_get_position):
6709         * libs/gst/base/gstbasetransform.c:
6710         (gst_base_transform_sink_eventfunc):
6711         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
6712         Don't randomly and silently reset a segment when the format 
6713         changes as this is a bug somewhere upstream. Fixes #330379.
6715 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
6717         Patch by: Wouter Paesen  <wouter at kangaroot net>
6719         * libs/gst/controller/gstcontroller.c:
6720         (gst_controlled_property_new):
6721           Fix controlling of float properties (#344849).
6723         * tests/check/libs/controller.c:
6724         (gst_test_mono_source_get_property),
6725         (gst_test_mono_source_set_property),
6726         (gst_test_mono_source_class_init), (GST_START_TEST):
6727           While we're at it, add some float stuff to unit test.
6729 2006-06-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6731         * docs/README:
6732         * docs/images/gdp-header.svg:
6733           add a gdp image
6734         * docs/libs/Makefile.am:
6735         * docs/libs/gdp-header.png:
6736         * libs/gst/dataprotocol/dataprotocol.c:
6737           add it to the API docs
6738         * docs/manual/intro-motivation.xml:
6739           fix typo
6741 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
6743         * gst/gst.c: (scan_and_update_registry), (init_post):
6744           If the fork()'ed child process can't write the updated registry cache
6745           file to disk for some reason, make it exit with a failure exit code,
6746           so that the parent can then re-scan the plugins itself and update the
6747           registry structures in memory and work with that (rather than failing
6748           when creating elements because seemingly no plugins are available).
6749           Refactor registry scanning code into separate function for this and
6750           also separate fork() and non-fork() code paths. Fixes #344748.
6752 2006-06-13  Wim Taymans  <wim@fluendo.com>
6754         * docs/manual/advanced-dataaccess.xml:
6755         Fix wrong PluginDesc. Fixes #344755.
6757 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
6759         * gst/gstregistryxml.c: (gst_registry_xml_write_cache):
6760           Fix silly bug that prevented us from creating
6761           ~/.gstreamer-0.10 and writing the registry in one
6762           go (the first call to g_mkstemp() would overwrite the
6763           placeholder in the template string, so the second call
6764           to g_mkstemp() after creating the missing directory
6765           would then error out with 'invalid argument').
6767 2006-06-13  Edward Hervey  <edward@fluendo.com>
6769         * gst/gst.c: (init_post):
6770         Free string.
6772 2006-06-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6774         * gst/glib-compat-private.h:
6775         * gst/glib-compat.c:
6776         * gst/glib-compat.h:
6777         * gst/gstvalue.c: (gst_value_serialize_flags):
6778           remove GLib 2.6 compatibility code
6780 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
6782         * gst/parse/Makefile.am:
6783           Fix build with 'make -j N' even more (#340016).
6785 2006-06-12  Wim Taymans  <wim@fluendo.com>
6787         * docs/gst/gstreamer-sections.txt:
6788         Fix docs.
6790 2006-06-12  Wim Taymans  <wim@fluendo.com>
6792         * gst/gstsegment.c: (gst_segment_set_duration),
6793         (gst_segment_set_last_stop), (gst_segment_set_seek),
6794         (gst_segment_set_newsegment_full), (gst_segment_to_stream_time),
6795         (gst_segment_to_running_time), (gst_segment_clip):
6796         Use G_UNLIKELY to help the compiler a bit.
6798 2006-06-12  Wim Taymans  <wim@fluendo.com>
6800         Patch by: Stefan Kost <ensonic at sonicpulse dot de>
6802         * gst/gstevent.c: (gst_event_get_type):
6803         * gst/gstmessage.c:
6804         * gst/gstpad.c: (gst_pad_chain_unchecked), (gst_pad_chain),
6805         (gst_pad_push):
6806         constify quark registration strings. Fixes #344115
6807         Avoid unneeded type checking is _pad_push() by internally
6808         calling gst_pad_chain_unchecked().
6810 2006-06-12  Wim Taymans  <wim@fluendo.com>
6812         * gst/gstbuffer.c: (gst_buffer_get_type), (gst_buffer_finalize),
6813         (_gst_buffer_copy), (gst_buffer_is_metadata_writable),
6814         (gst_subbuffer_finalize), (gst_buffer_create_sub),
6815         (gst_buffer_is_span_fast), (gst_buffer_span):
6816         Init _type for consistency.
6817         Use _FLAGS macro to avoid type check.
6818         Avoid unneeded type checks in subbufer code.
6820 2006-06-12  Wim Taymans  <wim@fluendo.com>
6822         * gst/gst.c: (gst_debug_help):
6823         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
6824         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
6825         (gst_plugin_feature_list_free):
6826         * gst/gstregistry.c: (gst_registry_add_plugin),
6827         (gst_registry_add_feature), (gst_registry_plugin_filter),
6828         (gst_registry_feature_filter), (gst_registry_find_plugin),
6829         (gst_registry_find_feature), (gst_registry_get_plugin_list),
6830         (gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
6831         * gst/gstregistryxml.c: (load_feature),
6832         (gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
6833         * gst/gstminiobject.c: (gst_mini_object_unref),
6834         (gst_mini_object_replace), (gst_value_mini_object_free),
6835         (gst_value_mini_object_copy):
6836         Use _CAST macros to avoid unneeded type checking.
6837         Added some more G_UNLIKELY.
6839 2006-06-12  Wim Taymans  <wim@fluendo.com>
6841         * gst/gstbuffer.h:
6842         Avoid unneeded type checking.
6843         API: GST_BUFFER_IS_DISCONT
6845         * gst/gstminiobject.h:
6846         Avoid type check in flag accessor.
6848         * gst/gstelementfactory.h:
6849         * gst/gstplugin.h:
6850         * gst/gstpluginfeature.h:
6851         Add _CAST macros.
6852         API: GST_ELEMENT_FACTORY_CAST
6853         API: GST_PLUGIN_CAST
6854         API: GST_PLUGIN_FEATURE_CAST
6856 2006-06-12  Wim Taymans  <wim@fluendo.com>
6858         * gst/gstobject.c: (gst_object_get_type), (gst_object_ref),
6859         (gst_object_unref):
6860         Add G_UNLIKELY in type registration.
6861         Avoid type check in _ref/_unref since that is also
6862         done in glib.
6864 2006-06-12  Wim Taymans  <wim@fluendo.com>
6866         * gst/gsterror.c: (gst_g_error_get_type):
6867         * gst/gstpadtemplate.c: (gst_pad_template_get_type),
6868         (gst_static_pad_template_get_type):
6869         * gst/gsttaglist.c: (gst_tag_list_get_type):
6870         * gst/gsttagsetter.c: (gst_tag_setter_get_type):
6871         * gst/gsttypefindfactory.c: (gst_type_find_factory_get_type):
6872         * gst/gsturi.c: (gst_uri_handler_get_type):
6873         * gst/gstvalue.c: (gst_date_get_type):
6874         * gst/gstxml.c: (gst_xml_get_type):
6875         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_type),
6876         (gst_base_sink_preroll_object), (gst_base_sink_get_position):
6877         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_type):
6878         Add G_UNLIKELY in type registration.
6880 2006-06-12  Wim Taymans  <wim@fluendo.com>
6882         * tools/gst-inspect.c: (print_signal_info):
6883         Properly print enum values.
6885 2006-06-12  Wim Taymans  <wim@fluendo.com>
6887         * gst/gstinfo.c: (gst_debug_set_active),
6888         (gst_debug_category_set_threshold), (_gst_debug_nameof_funcptr):
6889         * gst/gstinfo.h:
6890         Add some G_[UN]LIKELY.
6891         Maintain __gst_debug_min to avoid formatting the arguments of
6892         debug messages that will be dropped anyway to avoid a lot of 
6893         overhead from the debugging system.
6895 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
6897         * po/POTFILES.in:
6898         * po/POTFILES.skip:
6899           add missing files containing translatable strings, tell intltool about
6900           one exception
6902 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
6904         * tests/check/libs/.cvsignore:
6905         add test-binary to ignore list
6907 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
6909         * docs/libs/gstreamer-libs-docs.sgml:
6910         reorder (put dp into a chapter) and indent
6912 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6914         * configure.ac:
6915           back to HEAD
6917 === release 0.10.8 ===
6919 2006-06-10  Thomas Vander Stichele <thomas at apestaart dot org>
6921         * configure.ac:
6922           releasing 0.10.8, "Soepeke, ik zie ou nog altijd nie"
6924 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6926         * gst/gst.c: (init_post):
6927           move pid declaration to declaration block
6929 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
6931         * gst/gst.c: (init_post):
6932           use _exit() instead of exit() in our forked child; this ensures
6933           that none of the registered exit handlers from whatever is using
6934           GStreamer get executed.  This fixes gnome-mixer-applet failing
6935           to load, because ORBit would shut down.
6936           Spotted by: Edward Hervey  <edward@fluendo.com>
6937           Fix suggested by: Tim-Philipp Müller  <tim at centricular dot net>
6938           Fixes #344474
6940 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6942         * configure.ac:
6943           back to TRUNK
6945 === release 0.10.7 ===
6947 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
6949         * configure.ac:
6950           releasing 0.10.7, "Soepeke, ik zie ou"
6952 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
6954         * configure.ac:
6955         * po/af.po:
6956         * po/az.po:
6957         * po/bg.po:
6958         * po/ca.po:
6959         * po/cs.po:
6960         * po/de.po:
6961         * po/en_GB.po:
6962         * po/fr.po:
6963         * po/it.po:
6964         * po/nb.po:
6965         * po/nl.po:
6966         * po/ru.po:
6967         * po/sq.po:
6968         * po/sr.po:
6969         * po/sv.po:
6970         * po/tr.po:
6971         * po/uk.po:
6972         * po/vi.po:
6973         * po/zh_CN.po:
6974         * po/zh_TW.po:
6975         * win32/common/config.h:
6976           0.10.6.2 prerelease
6978 2006-06-07  Wim Taymans  <wim@fluendo.com>
6980         * gst/gstindex.c: (gst_index_gtype_resolver):
6981         * tools/gst-xmlinspect.c: (print_plugin_info):
6982         Fix leak spotted by coverity checker. Fixes #343827
6983         Fix another other leak found by paolo borelli.
6985 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
6987         * libs/gst/dataprotocol/dataprotocol.c:
6988         (gst_dp_header_from_buffer_any), (gst_dp_packet_from_caps_any),
6989         (gst_dp_version_get_type), (gst_dp_init),
6990         (gst_dp_header_from_buffer), (gst_dp_header_from_buffer_1_0),
6991         (gst_dp_packet_from_caps), (gst_dp_packet_from_caps_1_0),
6992         (gst_dp_packet_from_event), (gst_dp_packet_from_event_1_0),
6993         (gst_dp_event_from_packet_0_2), (gst_dp_event_from_packet_1_0),
6994         (gst_dp_event_from_packet), (gst_dp_packetizer_new),
6995         (gst_dp_packetizer_free):
6996         * libs/gst/dataprotocol/dataprotocol.h:
6997           API: add a GstDPPacketizer object, and create/free functions
6998           API: add GstDPVersion enum
6999           Add 1.0 event function that uses the string serialization
7000           Serialize more useful buffer flags
7001           Fixes #343988
7003 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7005         * tests/check/Makefile.am:
7006         * tests/check/gst/gstabi.c:
7007         * tests/check/gst/struct_ppc64.h:
7008         * tests/check/libs/libsabi.c:
7009         * tests/check/libs/struct_ppc64.h:
7010           add ppc64 structure sizes
7012 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7014         * tests/check/Makefile.am:
7015         * tests/check/gst/gstabi.c:
7016         * tests/check/gst/struct_x86_64.h:
7017         * tests/check/libs/libsabi.c:
7018         * tests/check/libs/struct_x86_64.h:
7019           generate and add structure size lists for x86_64
7021 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7023         * libs/gst/check/gstcheck.c: (gst_check_abi_list):
7024         * libs/gst/check/gstcheck.h:
7025           factor out the method from tests that checks size of structures,
7026           and add code to generate the header containing these sizes
7027         * tests/check/gst/gstabi.c: (GST_START_TEST):
7028         * tests/check/gst/struct_i386.h:
7029         * tests/check/libs/libsabi.c: (GST_START_TEST):
7030         * tests/check/libs/struct_i386.h:
7031           use it
7033 2006-06-06  Michael Smith  <msmith@fluendo.com>
7035         * gst/gstsegment.h:
7036           Don't use c++-style comments, fixes #343929
7038 2006-06-05  Edward Hervey  <edward@fluendo.com>
7040         * gst/gst.c:
7041         plugin_paths is not used if we build without registry support.
7043         * gst/gstsegment.c: (gst_segment_copy): 
7044         _copy() was always returning NULL...
7046 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
7048         * libs/gst/dataprotocol/dataprotocol.c:
7049         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
7050         (gst_dp_packet_from_event):
7051           factor out CRC code
7053 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
7055         * libs/gst/check/gstcheck.c: (gst_check_teardown_src_pad):
7056           make sure we unset caps
7058 2006-06-02  Michael Smith  <msmith@fluendo.com>
7060         * libs/gst/check/gstcheck.c: (gst_check_init),
7061         (gst_check_chain_func):
7062         * libs/gst/check/gstcheck.h:
7063           Add a cond/mutex to the check support lib, signal this whenever we
7064           add to the buffers list. This will allow tests to not busy-wait on
7065           the buffer-list.
7067 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
7069         * libs/gst/dataprotocol/dataprotocol.c:
7070         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
7071         (gst_dp_packet_from_event):
7072           factor out some common header init code
7074 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
7076         * docs/libs/gstreamer-libs-sections.txt:
7077         * docs/libs/tmpl/gstdataprotocol.sgml:
7078         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
7079         * libs/gst/dataprotocol/dataprotocol.h:
7080           API: make gst_dp_crc() public
7082 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
7084         * plugins/indexers/gstindexers.c: (plugin_init):
7085         conditionally register fileindexer (fixes #343598)
7087 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
7089         * gst/gsttagsetter.h:
7090         Can't cast ifaces to a class
7092         * libs/gst/net/gstnetclientclock.h:
7093         * libs/gst/net/gstnettimeprovider.h:
7094         * plugins/elements/gstfakesink.h:
7095         * plugins/elements/gstfakesrc.h:
7096         * plugins/elements/gstfdsink.h:
7097         * plugins/elements/gstfdsrc.h:
7098         * plugins/elements/gstfilesink.h:
7099         * plugins/elements/gstfilesrc.h:
7100         * plugins/elements/gstidentity.h:
7101         * plugins/elements/gstqueue.h:
7102         * plugins/elements/gsttee.h:
7103         * plugins/indexers/gstfileindex.c:
7104         * plugins/indexers/gstmemindex.c:
7105         * tests/old/examples/plugins/example.h:
7106         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
7108 2006-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
7110         * libs/gst/dataprotocol/dataprotocol.c:
7111         (gst_dp_header_from_buffer):
7112           make sure we zero the whole ABI-compatible area
7114 2006-06-01  Wim Taymans  <wim@fluendo.com>
7116         Patch by: Alessandro Decina <alessandro at nnva dot org>
7118         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_stop):
7119         Make sure the EOS flag is cleared from pads after a flush
7120         or stop. Fixes #343538.
7122         * tests/check/libs/collectpads.c: (GST_START_TEST),
7123         (gst_collect_pads_suite):
7124         Added test for collectpads reusage after EOS.
7126 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
7128         * gst/gst.c:
7129          set #include <sys/wait.h> in a #ifdef #ifdef HAVE_FORK
7130         * win32/common/libgstbase.def:
7131          export gst_collect_pads_set_flushing
7132         * win32/common/libgstreamer.def:
7133          export gst_pad_set_acceptcaps_function, gst_structure_empty_new,
7134          gst_value_fraction_multiply
7135         * win32/vs6/gst_inspect.dsp:
7136          add a link to intl.lib
7138 2006-05-30  Wim Taymans  <wim@fluendo.com>
7140         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
7141         (gst_collect_pads_chain):
7142         Handle the case where a pad is removed from the collection
7143         that could cause the other pads to become collectable.
7145 2006-05-30  Wim Taymans  <wim@fluendo.com>
7147         * gst/gstelement.c:
7148         Clarify the use of _release_request_pad() and
7149         _get_request_pad() a bit better.
7151         * libs/gst/base/gstadapter.c: (gst_adapter_peek),
7152         (gst_adapter_take_buffer):
7153         Fix some doc and comment typos.
7155 2006-05-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
7157         * docs/gst/gstreamer-sections.txt:
7158         * docs/libs/gstreamer-libs-sections.txt:
7159           add declared symbols
7161 2006-05-30  Jan Schmidt  <thaytan@mad.scientist.com>
7163         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
7164         Add debug that can be enabled using a #define at the top of the file,
7165         for dumping stats about how late/early we were when waking up from
7166         waiting on the clock.
7168 2006-05-30  Wim Taymans  <wim@fluendo.com>
7170         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_check_pads):
7171         When rebuilding the pad list, don't leak the previous list.
7173 2006-05-30  Wim Taymans  <wim@fluendo.com>
7175         Patch by: Lutz Mueller <lutz at topfrose dot de>
7177         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
7178         (gst_base_src_get_query_types), (gst_base_src_update_length):
7179         Publish supported query types.
7180         Update last_stop field in get_range mode so the position
7181         query works. Fixes #342321.
7183 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
7185         * docs/gst/gstreamer-sections.txt:
7186         * gst/gsttaglist.c: (_gst_tag_initialize):
7187         * gst/gsttaglist.h:
7188           API: add GST_TAG_PREVIEW_IMAGE (#343341).
7190 2006-05-30  Wim Taymans  <wim@fluendo.com>
7192         Patch by: Alessandro Decina <alessandro at nnva dot org>
7194         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
7195         Unlock mutex when removing an unknown pad.
7196         Fixes #343334.
7198         * tests/check/Makefile.am:
7199         * tests/check/libs/collectpads.c: (collected_cb), (push_buffer),
7200         (push_event), (setup), (teardown), (GST_START_TEST),
7201         (gst_collect_pads_suite), (main):
7202         Added collecpads check, disabled for now as check crashes for
7203         some reason.
7205 2006-05-29  Wim Taymans  <wim@fluendo.com>
7207         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize):
7208         Don't leak pads lists.
7210 2006-05-29  Wim Taymans  <wim@fluendo.com>
7212         * docs/libs/gstreamer-libs-sections.txt:
7213         * libs/gst/base/gstcollectpads.c:
7214         (gst_collect_pads_set_flushing_unlocked),
7215         (gst_collect_pads_set_flushing), (gst_collect_pads_start),
7216         (gst_collect_pads_stop):
7217         * libs/gst/base/gstcollectpads.h:
7218         API: gst_collect_pads_set_flushing()
7219         Added api to set the pads to flushing, useful for seeking
7220         code in elements using collectpads.
7221         Clear segment when receiving a flush.
7223 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
7225         * gst/gst.c: (add_path_func), (init_post):
7226           Don't scan registry paths passed via --gst-plugin-path immediately
7227           (will crash, because absolutely nothing is set up and no types are
7228           registered etc.); do this later in init_post(). Fixes #343057.
7230 2006-05-28  Thomas Vander Stichele  <thomas at apestaart dot org>
7232         * gst/gst.c: (init_post):
7233           if we have fork, fork while reading/rebuilding the registry
7234           so the parent doesn't take the hit of having all plugins loaded
7235           in memory.  Fixes #342777.
7236         * configure.ac:
7237           Check if we have fork()
7238         * win32/common/config.h.in:
7239           no fork() on win32
7241 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
7243         * plugins/elements/gstelements.c:
7244         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
7245         (gst_file_src_init), (gst_file_src_set_property),
7246         (gst_file_src_get_property), (gst_file_src_start):
7247         * plugins/elements/gstfilesrc.h:
7248           API: GstFileSrc::use-mmap
7250         Add a use-mmap property to enable easier testing of all code paths.
7251         Bump rank to PRIMARY, so filesrc is the preferred file reader and used
7252         in the absence of gnomevfssrc. (Closes #340501)
7254 2006-05-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7256         * tools/gst-inspect.c:
7257         Add missing include, removes warning of ngettext not being defined on
7258         some arches.
7260 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
7262         * gst/gstvalue.c: (gst_value_deserialize_fraction):
7263         Handle NULL input and output pointers silently as a failed conversion,
7264         rather than g_warnings.
7266 2006-05-25  Wim Taymans  <wim@fluendo.com>
7268         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_start):
7269         Initialize variable before using. Fixes #342820.
7271 2006-05-24  Tim-Philipp Müller  <tim at centricular dot net>
7273         * libs/gst/base/gsttypefindhelper.c: (buf_helper_find_peek):
7274           Fix off-by-one bug that would only allow peeks of N-1 bytes
7275           from the start even if the buffer to typefind on contains
7276           in fact N bytes of data (makes vorbis typefinding from a
7277           vorbis identification header buffer work).
7279         * tests/check/Makefile.am:
7280         * tests/check/libs/.cvsignore:
7281         * tests/check/libs/typefindhelper.c: (GST_START_TEST),
7282         (gst_typefindhelper_suite), (main), (foobar_typefind),
7283         (plugin_init):
7284           Add very basic unit test for gst_type_find_helper_for_buffer()
7285           that checks for the problem fixed above.
7287 2006-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7289         * tools/gst-inspect.c: (print_interfaces),
7290         (print_element_properties_info), (print_element_list), (main):
7291           add more translatable strings
7293 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
7295         Patch by: Julien Moutte  <julien at moutte net>
7297         * docs/gst/gstreamer-sections.txt:
7298           Make new GST_FLOW_IS_SUCCESS macro visible in docs.
7299           
7300         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init),
7301         (gst_fake_sink_preroll):
7302         * plugins/elements/gstfakesink.h:
7303           API: Add new GstFakeSink::preroll-handoff signal (#337100).
7305 2006-05-23  Wim Taymans  <wim@fluendo.com>
7307         * gst/gstpad.c: (gst_flow_get_name), (gst_flow_to_quark):
7308         * gst/gstpad.h:
7309         Added _CUSTOM error and success GstFlowReturn that can be
7310         used be elements internally. 
7311         Added macro to check for SUCCESS flowreturns.
7312         API: GST_FLOW_CUSTOM_SUCCESS
7313         API: GST_FLOW_CUSTOM_ERROR
7314         API: GST_FLOW_IS_SUCCESS
7316         * tests/check/gst/gstpad.c: (GST_START_TEST), (gst_pad_suite):
7317         Added check for GstFlowReturn sanity.
7319 2006-05-23  Wim Taymans  <wim@fluendo.com>
7321         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
7323         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
7324         (gst_collect_pads_event):
7325         clear/reset segment info in FLUSH_STOP.
7326         Fixes #336929.
7328 2006-05-22  Stefan Kost  <ensonic@users.sf.net>
7330         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_stop),
7331         (gst_collect_pads_check_collected):
7332         Flush queued buffer on _stop(), fixes playing again (#342454)
7334 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
7336         * tests/check/gst/gststructure.c: (GST_START_TEST),
7337         (gst_structure_suite):
7338           add a test for a complete structure
7340 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
7342         * docs/faq/developing.xml:
7343         * docs/faq/faq.xml:
7344         * docs/faq/troubleshooting.xml:
7345         * docs/faq/using.xml:
7346           Some minor FAQ updates that won't change the fact that
7347           our FAQ is badly structured, full of information hardly
7348           anyone new to GStreamer needs to know and lacking lots
7349           of information people constantly ask for.
7350           
7351 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
7353         * gst/gstpad.c: (gst_pad_set_caps):
7354           Short-circuit gst_pad_set_caps if setting the existing
7355           caps pointer again, and avoid printing debug and 
7356           reffing/unreffing the caps.
7358         * plugins/elements/gstqueue.c: (gst_queue_push_one):
7359           There's actually no need to set the caps before pushing -
7360           the acceptcaps method will handle it anyway.
7362 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
7364         * docs/gst/gstreamer-sections.txt:
7365         * win32/common/libgstreamer.def:
7366         * gst/gstutils.c: (gst_element_seek_simple):
7367         * gst/gstutils.h:
7368           API: add gst_element_seek_simple() (#342238).
7370 2006-05-18  Edward Hervey  <edward@fluendo.com>
7372         * gst/gsttypefind.c: (gst_type_find_get_type):
7373         * gst/gsttypefind.h:
7374         Added GST_TYPE_TYPE_FIND and gst_type_find_get_type() so a GType gets
7375         registered for GstTypeFind pointers. This allows wrapping the structure
7376         in bindings (i.e. gst-python).
7378 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
7380         * gst/gsttagsetter.c:
7381           Docs additions and fixes (see #339918).
7383 2006-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
7385         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
7386         The caps intersection algorithm can produce multiple copies of the
7387         caps. Until that is fixed, we need to simplify the result to be
7388         sure whether the allowed caps are fixed or not.
7390         * plugins/elements/gstqueue.c: (gst_queue_init),
7391         (gst_queue_bufferalloc), (gst_queue_acceptcaps),
7392         (gst_queue_push_one):
7393         Proxied buffer alloc should not set the caps on the source pad.
7394         When pushing buffers, we always accept the caps change that triggers.
7395         This prevents negotiation errors caused by caps changing mid-stream 
7396         and then being refused on our source pad (because upstream is now
7397         refusing those caps).
7399 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
7401         * tests/examples/helloworld/helloworld.c: (main):
7402           Must plug audioconvert and audioresample between decoder
7403           and audio sink.
7405 2006-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
7407         * gst/gstregistryxml.c: (read_string), (load_pad_template),
7408         (load_feature), (load_plugin):
7409         Allow empty strings for some of the plugin fields so we don't 
7410         drop valid plugin entries that were written out correctly
7411         (Fixes #341479)
7413 2006-05-17  Sebastien Moutte  <sebastien@moutte.net>
7414         
7415         * gst/gstregistryxml.c: (gst_registry_xml_write_cache):
7416           Use g_remove and g_rename instead of remove and rename that don't 
7417           handle utf8 characters. rename was failing for users who had specific
7418           characters in their name then the registry was built at each 
7419           gstreamer init.
7420         * win32/vs6/gst_inspect.dsp:
7421         * win32/vs6/gst_launch.dsp:
7422         * win32/vs6/libgstbase.dsp:
7423         * win32/vs6/libgstcoreelements.dsp:
7424         * win32/vs6/libgstreamer.dsp:
7425           Use a debug version of libxml2 (libxml2D.lib,libxml2D.dll) for DEBUG 
7426           build of libgstreamer and clean unused libraries in projects link 
7427           settings.
7429 2006-05-17  Edward Hervey  <edward@fluendo.com>
7431         * plugins/elements/gstqueue.c: (gst_queue_push_one):
7432         The queue is not responsible for pushing an EOS when receiving a fatal
7433         flow error. It's up to the real element driving the pipeline to do that.
7435 2006-05-16  Edward Hervey  <edward@fluendo.com>
7437         * plugins/elements/gstqueue.c: (gst_queue_push_one):
7438         The queue was posting a non-needed GST_MESSAGE_ERROR when pushing a
7439         buffer returned a fatal error. It should just send an EOS and stop
7440         its task.
7441         Upstream elements will then properly receive the GST_FLOW_UNEXPECTED
7442         when pushing buffers on the queue and will be able to handle the event.
7444 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
7446         * docs/manual/basics-bins.xml:
7447         * docs/manual/basics-init.xml:
7448           Fix typos and minor errors in sample code (#341856).
7450 2006-05-16  Wim Taymans  <wim@fluendo.com>
7452         * docs/design/part-qos.txt:
7453         Fix indexes in formulas to make more sense.
7455 2006-05-15  Wim Taymans  <wim@fluendo.com>
7457         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
7458         Don't report POSITION based on clock time if sync is
7459         disabled in a sink.
7461 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
7463         * gst/gstobject.h:
7464           Add cast to make compiler happy - refcount variable was a gint
7465           in GstObject but is a guint in GObject and g_atomic_int_get()
7466           wants a gint *.
7468 2006-05-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7470         * gst/parse/Makefile.am:
7471           chain commands using &&, which also makes parallel make work
7473 2006-05-14  Tim-Philipp Müller  <tim at centricular dot net>
7475         * docs/gst/gstreamer-sections.txt:
7476         * gst/gstevent.c:
7477         * gst/gstevent.h:
7478         * gst/gstmessage.h:
7479           Minor docs fixes.
7481 === release 0.10.6 ===
7483 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
7485         * configure.ac:
7486           releasing 0.10.6, "Take the cannoli"
7488 2006-05-13  Tim-Philipp Müller  <tim at centricular dot net>
7490         * tools/gst-launch.c: (print_tag):
7491           Fix use of uninitialized variable in the hypothetical
7492           case that some broken plugin creates a GST_TAG_IMAGE
7493           tag containing a NULL buffer (#341667).
7495 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
7497         * tools/gst-launch.c: (print_tag):
7498           Print something more intelligible for image tags when
7499           using the -t switch (#341556).
7501 2006-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
7503         * Makefile.am:
7504           updates for win32
7505         * configure.ac:
7506           define GST_MAJORMINOR so we have it available in win32/common/config.h
7507           Possibly remove it from our Makefile.am files later
7508         * win32/common/config.h:
7509         * win32/common/config.h.in:
7510           added GST_MAJORMINOR
7511         * win32/common/gstenumtypes.c: (register_gst_resource_error):
7512         * win32/common/gstversion.h:
7513           updated
7515 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
7517         * win32/MANIFEST:
7518           Update win32 files listing.
7519         * win32/common/gstversion.h:
7520           Add GST_MAJORMINOR definition.
7521         * win32/common/libgstreamer.def:
7522           Add new exported functions.
7523           
7524 2006-05-12  Michael Smith  <msmith@fluendo.com>
7526         * gst/gstplugin.c: (gst_plugin_load_file):
7527           If an so file has no plugin entry point, unload the module.
7529 2006-05-11  Wim Taymans  <wim@fluendo.com>
7531         * plugins/elements/gstqueue.c: (gst_queue_chain), (gst_queue_loop),
7532         (gst_queue_set_property):
7533         Don't forget to signal the _chain or _loop function 
7534         when the queue size or thresholds change since that might
7535         cause them to make progres again.
7537 2006-05-11  Stefan Kost  <ensonic@users.sf.net>
7539         * gst/gstclock.c: (gst_clock_class_init):
7540         * gst/gstindex.c: (gst_index_class_init):
7541         * gst/gstobject.c: (gst_object_class_init):
7542         * gst/gstpad.c: (gst_pad_class_init):
7543         * gst/gstpipeline.c: (gst_pipeline_class_init):
7544         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
7545         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init):
7546         * libs/gst/base/gstbasetransform.c:
7547         (gst_base_transform_class_init):
7548         * libs/gst/net/gstnetclientclock.c:
7549         (gst_net_client_clock_class_init):
7550         * libs/gst/net/gstnettimeprovider.c:
7551         (gst_net_time_provider_class_init):
7552         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init):
7553         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init):
7554         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init):
7555         * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init):
7556         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
7557         * plugins/elements/gstfilesink.c: (gst_file_sink_class_init):
7558         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init):
7559         * plugins/elements/gstidentity.c: (gst_identity_class_init):
7560         * plugins/elements/gsttee.c: (gst_tee_class_init):
7561         * tests/old/examples/plugins/example.c: (gst_example_class_init):
7562         * tests/old/testsuite/threads/signals.c: (gst_test_class_init):
7563           G_OBJECT_CLASS macro usage batch cleanup, fixes #337747 for core
7565 2006-05-11  Wim Taymans  <wim@fluendo.com>
7567         * gst/gstbuffer.c: (_gst_buffer_initialize):
7568         Register subbufer along with the buffer type so that
7569         it does not accidentally gets registered from N
7570         different streaming threads in a non threadsafe way.
7572 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
7574         * gst/gstbuffer.h:
7575         * gst/gstevent.h:
7576         * gst/gstmessage.h:
7577           Make gtk-doc generate docs for our inlined gst_buffer_ref(),
7578           gst_event_ref() and gst_message_ref() functions again
7579           (ugly hack, please do fix if there's a better way besides
7580           overrides.txt, which doesn't seem to work).
7582 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7584         * libs/gst/check/gstcheck.h:
7585           add an assert for setting state to avoid lots of repetitive code
7586           in the future
7588 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7590         * gst/gstvalue.c: (gst_value_serialize_flags):
7591           fix a leak if no flags are set
7592         * tests/check/gst/gstvalue.c: (GST_START_TEST):
7593           fix leak in tests
7595 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
7597         * docs/manual/basics-pads.xml:
7598           Expand a bit on caps and filtered links and update
7599           examples that were still using the no longer existing
7600           gst_pad_link_filtered() (#338206).
7602 2006-05-10  Wim Taymans  <wim@fluendo.com>
7604         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
7605         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
7606         (gst_collect_pads_set_flushing), (gst_collect_pads_start),
7607         (gst_collect_pads_stop):
7608         * libs/gst/base/gstcollectpads.h:
7609         No need to call _stop in _finalize.
7610         Iterate the main pad list in _finalize.
7611         Added some more debug.
7612         Free lists and data in the right order.
7613         Also free data whem doing _remove_pad when stopped for
7614         backward compatibility protect ::started with PAD_LOCK as
7615         well.
7617 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7619         * gst/gststructure.c: (gst_structure_gtype_from_abbr),
7620         (gst_structure_parse_value):
7621           add some comments
7622           rename a method so that it actually says what it does better
7624 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
7626         * gst/gstevent.c: (_gst_event_initialize):
7627         * gst/gstformat.c: (_gst_format_initialize):
7628           make sure some essential types used by events are registered
7629           as part of gst_init()
7630         * gst/gstvalue.c: (gst_value_serialize_flags):
7631           if no flags are set, serialize them to a value that represents NONE
7632           so that deserializing them works
7633         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
7634           add tests for serialization and deserialization of flags
7636 2006-05-10  Wim Taymans  <wim@fluendo.com>
7638         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_collect),
7639         (gst_collect_pads_collect_range), (gst_collect_pads_available),
7640         (gst_collect_pads_check_pads), (gst_collect_pads_check_collected),
7641         (gst_collect_pads_event), (gst_collect_pads_chain):
7642         Update docs.
7643         Better debug info.
7644         Catch and return errors from the collect function
7645         Refuse data on eos pads.
7647 2006-05-10  Edward Hervey  <edward@fluendo.com>
7649         * gst/gstinterface.h:
7650         GST_IMPLEMENTS_INTERFACE and GST_IS_IMPLEMENTS_INTERFACE use the normal
7651         GInterface type checking.
7652         They were previously using non-defined macros.
7654 2006-05-09  Wim Taymans  <wim@fluendo.com>
7656         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_init),
7657         (gst_collect_pads_finalize), (gst_collect_pads_add_pad),
7658         (gst_collect_pads_remove_pad), (gst_collect_pads_set_flushing),
7659         (gst_collect_pads_start), (gst_collect_pads_stop),
7660         (gst_collect_pads_peek), (gst_collect_pads_pop),
7661         (gst_collect_pads_available), (gst_collect_pads_read),
7662         (gst_collect_pads_flush), (gst_collect_pads_check_pads),
7663         (gst_collect_pads_is_collected), (gst_collect_pads_event),
7664         (gst_collect_pads_chain):
7665         * libs/gst/base/gstcollectpads.h:
7666         Clean up the mess that is collectpads, add comments and
7667         FIXMEs where needed.
7668         Maintain a separate pad list so we can add pads while
7669         collecting the other ones. For this we need a new separate 
7670         lock (see comics).
7671         Fix memory leak in finalize.
7672         Refactor some weird code to set/unset pad flushing flags, mark
7673         with comments.
7674         Don't crash in _available, _read, _flush when we're EOS.
7676         * tests/check/libs/.cvsignore:
7677         Ignore adapter check binary.
7679 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7681         * gst/gstindex.c: (gst_index_resolver_get_type):
7682         * plugins/elements/gstfakesink.c:
7683         (gst_fake_sink_state_error_get_type):
7684         * plugins/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
7685         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type):
7686         * plugins/elements/gstqueue.c: (queue_leaky_get_type):
7687           Const-ify GEnumValue arrays.
7689 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7691         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
7692           Add test case for flags + gst_buffer_make_metadata_writable().
7694 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7696         * gst/gstbuffer.c: (gst_buffer_make_metadata_writable):
7697           gst_buffer_make_metadata_writable() should maintain the
7698           buffer flags (those that make sense at least) (see #340859).
7700 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7702         * tools/gst-inspect.c:
7703         * tools/gst-launch.c:
7704         * tools/gst-typefind.c:
7705         * tools/gst-xmlinspect.c:
7706         * tools/tools.h:
7707           Fix up includes: need to include stdlib.h in tools.h for exit().
7709 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7711         * gst/gsttaglist.c: (_gst_tag_initialize):
7712         * gst/gsttaglist.h:
7713           API: add GST_TAG_IMAGE tag (#340721).
7715 2006-05-08  Wim Taymans  <wim@fluendo.com>
7717         * gst/gstquery.c:
7718         Added some docs for the segment query.
7720 2006-05-08  Wim Taymans  <wim@fluendo.com>
7722         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
7723         (gst_base_src_loop), (gst_base_src_change_state):
7724         Always push non-flushing serialized events in the streaming 
7725         thread.
7727 2006-05-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7729         * gst/gsterror.c: (_gst_stream_errors_init):
7730           Add a missing error string.
7732 2006-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
7734         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment):
7735         Add applied_rate to the debug
7737         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek):
7738         Copy applied_rate into the outgoing NEWSEGMENT event
7740 2006-05-08  Wim Taymans  <wim@fluendo.com>
7742         Patch by: Philippe Rouquier <philippero at libertysurf dot fr>
7744         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_flushing),
7745         (gst_base_sink_change_state):
7746         call ::unlock before taking the PREROLL_LOCK so we can safely
7747         handle elements that lock in ::render.
7748         Fixes #340174.
7750 2006-05-08  Edward Hervey  <edward@fluendo.com>
7752         * autogen.sh: (CONFIGURE_DEF_OPT): 
7753         Darwin's libtoolize is in fact called glibtoolize.
7754         Adding glibtoolize to the list of accepted names for libtoolize.
7756 2006-05-08  Wim Taymans  <wim@fluendo.com>
7758         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
7759         Unify error handling, don't post an error message
7760         when a push() returns EOS but perform our normal EOS
7761         handling code. Fixes #340772.
7763 2006-05-08  Wim Taymans  <wim@fluendo.com>
7765         * docs/design/part-overview.txt:
7766         Make upsteam/downstream concepts more clear.
7767         Give an example of serialized/non-serialized events.
7769         * docs/design/part-events.txt:
7770         * docs/design/part-streams.txt:
7771         Mention applied_rate.
7773         * docs/design/part-trickmodes.txt:
7774         Mention applied rate, flesh out some more use cases.
7776         * gst/gstevent.c: (gst_event_new_new_segment),
7777         (gst_event_parse_new_segment), (gst_event_new_new_segment_full),
7778         (gst_event_parse_new_segment_full), (gst_event_new_tag),
7779         (gst_event_parse_tag), (gst_event_new_buffer_size),
7780         (gst_event_parse_buffer_size), (gst_event_new_qos),
7781         (gst_event_parse_qos), (gst_event_parse_seek),
7782         (gst_event_new_navigation):
7783         * gst/gstevent.h:
7784         Add applied_rate field to NEWSEGMENT event.
7785         API: gst_event_new_new_segment_full()
7786         API: gst_event_parse_new_segment_full()
7788         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
7789         (gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
7790         (gst_segment_to_stream_time), (gst_segment_to_running_time):
7791         * gst/gstsegment.h:
7792         Add applied_rate to GstSegment structure.
7793         Make calculation of stream_time and running_time more correct
7794         wrt rate/applied_rate.
7795         Add some more docs.
7796         API: GstSegment::applied_rate field
7797         API: gst_segment_set_newsegment_full();
7799         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
7800         (gst_base_sink_get_sync_times), (gst_base_sink_get_position):
7801         * libs/gst/base/gstbasetransform.c:
7802         (gst_base_transform_sink_eventfunc),
7803         (gst_base_transform_handle_buffer):
7804         Parse and use applied_rate in the GstSegment field.
7806         * tests/check/gst/gstevent.c: (GST_START_TEST):
7807         Add check for applied_rate field.
7809         * tests/check/gst/gstsegment.c: (GST_START_TEST),
7810         (gstsegments_suite):
7811         Add more checks for various GstSegment operations.
7813 2006-05-08  Wim Taymans  <wim@fluendo.com>
7815         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
7816         (gst_base_sink_do_sync), (gst_base_sink_chain_unlocked),
7817         (gst_base_sink_get_position), (gst_base_sink_change_state):
7818         Store the sync time of the buffer end position separatly in a
7819         new variable eos_rtime so we can properly sync the EOS event.
7820         Fixes #340697.
7821         Fix the docs for gst_base_sink_set_qos_enabled().
7822         Don't set segment start to invalid value when we receive a 
7823         non TIME newsegment.
7824         get closer to handling position reporting for negative rates 
7825         correctly.
7827 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
7829         * gst/gstcaps.c:
7830         Docs about how to print caps for debug purposes.
7832         * gst/gstpadtemplate.c: (gst_static_pad_template_get):
7833         use gst_caps_make_writable instead of gst_caps_copy, Fixes #340608
7835 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
7837         * gst/gstelement.c:
7838           use full enum names and preprend a '%' in docs strings to make recent 
7839           gtk-doc turn that into a link
7841 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
7843         * docs/manual/basics-bins.xml:
7844         * docs/manual/basics-bus.xml:
7845         * docs/manual/basics-pads.xml:
7846           Some typo fixes, some additions, some clarifications. 
7848 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
7850         * tools/gst-inspect.c: (main):
7851         * tools/gst-launch.c: (main):
7852         * tools/gst-run.c: (main):
7853         * tools/gst-typefind.c: (main):
7854         * tools/gst-xmlinspect.c: (main):
7855           Use the string passed to g_option_context_new() for
7856           what it's intended for - the program name is already
7857           printed elsewhere.
7859 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
7861         * tools/Makefile.am:
7862         * tools/gst-inspect.c: (main):
7863         * tools/gst-launch.c: (main):
7864         * tools/gst-xmlinspect.c: (main):
7865         * tools/tools.h:
7866           Add back --version command line option (#340460).
7868         * tools/gst-typefind.c: (have_type_handler), (typefind_file), (main):
7869           Add --version option and use GOption for argument parsing; refactor a
7870           bit; accept directories as arguments and recurse into them; lastly,
7871           print a decent error message when things go wrong.
7873 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
7875         * docs/manual/basics-bins.xml:
7876         Don't mention GstThread (#340611)
7877         * docs/manual/basics-elements.xml:
7878         Update link to GObject tutorial (#340607)
7879         
7880 2006-05-05  Wim Taymans  <wim@fluendo.com>
7882         * gst/gstbuffer.h:
7883         * gst/gstminiobject.c:
7884         Add note about refcounting and miniobject/buffer writeability
7885         to docs. Fixes #340604
7887         * gst/gstelementfactory.h:
7888         Added some explanation about @klass.
7890 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
7892         * docs/manual/intro-motivation.xml:
7893         * docs/manual/manual.xml:
7894         Avoid CORBA & Bonobo references (#340598)
7896 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
7898         * docs/manual/basics-bus.xml:
7899         * docs/manual/basics-pads.xml:
7900         Fix up some inaccuracies and omissions (#340609)
7901         
7902 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
7904         * gst/gstghostpad.c:
7905           Small typo in docs (#340625)
7907 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
7909         * gst/parse/Makefile.am:
7910           Make 'make -j' proof (see #340698).
7912 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
7914         * configure.ac:
7915           Require GLib-2.8 here as well.
7917 2006-05-05  Wim Taymans  <wim@fluendo.com>
7919         * gst/glib-compat.c:
7920         * gst/gst.c: (init_pre):
7921         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
7922         (gst_object_unref), (gst_object_replace), (gst_object_dispose),
7923         (gst_object_dispatch_properties_changed):
7924         * gst/gstobject.h:
7925         * gst/gstregistryxml.c: (gst_registry_xml_read_cache):
7926         * gst/gststructure.c: (gst_structure_set_valist):
7927         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
7928         Remove pre glib2.8 compatibility, fixes #340508
7930 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
7932         * gst/gsttaglist.h:
7933           Mention type of tags in doc blurbs.
7935 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
7937         * gst/gstpad.c: (gst_pad_init), (gst_pad_configure_sink),
7938         (gst_pad_configure_src), (gst_pad_push):
7939         Restore acceptcaps checking behaviour now that good plugins have
7940         been released.
7942 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
7944         Patch by: James Andrewartha <trs80 at tartarus uwa edu au>
7946         * gst/gst.c:
7947         * gst/gstbus.c:
7948         * gst/gstclock.c:
7949         * gst/gstevent.c:
7950         * gst/gstformat.c:
7951         * gst/gstmessage.c:
7952         * gst/gstparse.c:
7953         * gst/gstquery.c:
7954         * gst/gstutils.c:
7955         * gst/parse/Makefile.am:
7956         * libs/gst/base/gstadapter.c:
7957         * libs/gst/base/gstbasesrc.c:
7958         * libs/gst/base/gstpushsrc.c:
7959         * libs/gst/base/gsttypefindhelper.c:
7960         * plugins/elements/gstfakesrc.c:
7961         * plugins/elements/gstidentity.c:
7962           Make sure gstprivate.h and/or config.h are
7963           always included first, otherwise some of our
7964           defines (like _FILE_OFFSET_BITS) might be
7965           redefined in the system headers. Fixes build
7966           on opensolaris (#340016).
7968 2006-05-04  Wim Taymans  <wim@fluendo.com>
7970         * docs/libs/gstreamer-libs-sections.txt:
7971         API: addition: gst_adapter_take_buffer()
7972         
7973         * libs/gst/base/gstadapter.c: (gst_adapter_push),
7974         (gst_adapter_peek), (gst_adapter_take), (gst_adapter_take_buffer),
7975         (gst_adapter_available_fast):
7976         * libs/gst/base/gstadapter.h:
7977         Prepare for optimizing the hell out of this hugely inefficient
7978         piece of code. 
7979         Added gst_adapter_take_buffer() so we can at least start thinking
7980         about subbuffering and merging.
7981         Added some comments.
7983         * tests/check/Makefile.am:
7984         * tests/check/libs/adapter.c: (GST_START_TEST),
7985         (gst_adapter_suite), (main):
7986         Added GstAdapter check.
7988 2006-05-04  Wim Taymans  <wim@fluendo.com>
7990         * docs/design/part-overview.txt:
7991         Fix some typos, add blurb about buffer flags.
7993 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7995         * docs/libs/gstreamer-libs-sections.txt:
7996           make sure GstBaseTransformClass shows up in the docs
7997         * libs/gst/base/gstbasetransform.c:
7998         * libs/gst/base/gstbasetransform.h:
7999           move docs so gtk-doc picks it up now
8001 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
8003         * docs/libs/gstreamer-libs-sections.txt:
8004           add missing symbols to docs
8006 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
8008         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
8009           back out the newsegment handling change, see #340060 for ongoing
8010           discussion
8012 2006-04-30  Tim-Philipp Müller  <tim at centricular dot net>
8014         * tools/gst-run.c: (get_candidates), (main):
8015           Fix wrong g_file_test() usage (see glib docs for why it doesn't
8016           work); fix typo in error message. Fixes #340079.
8018 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8020         * common/Makefile.am:
8021         * docs/Makefile.am:
8022         * docs/faq/Makefile.am:
8023         * docs/gst/Makefile.am:
8024         * docs/libs/Makefile.am:
8025         * docs/manual/Makefile.am:
8026         * docs/plugins/Makefile.am:
8027         * docs/pwg/Makefile.am:
8028         * docs/slides/Makefile.am:
8029         * docs/upload.mak:
8030         * common/upload.mak:
8031           move upload.mak to common
8033 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8035         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
8036           add more asserts on refcounts
8037           do more cleanup at end of tests
8038           fix test leaks showing in FC5
8040 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
8042         * plugins/elements/gsttypefindelement.c:
8043         (gst_type_find_element_handle_event):
8044         reverted wrong change and reflowed code to avoid others falling into
8045         this trap
8047 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8049         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
8050           fix changelog entry about last collectpads change,
8051           add notes about proper fix
8053 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8055         * gst/gst.c:
8056         * gst/gstregistry.c: (gst_registry_scan_path_level),
8057         (gst_registry_scan_path):
8058         * gst/gstregistry.h:
8059           only write out registry if it has changed, fixes #338339
8061 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8063         * gst/gstbin.c:
8064         * gst/gstpipeline.c:
8065         * plugins/elements/gstcapsfilter.c:
8066         * plugins/elements/gstfakesink.c:
8067         * plugins/elements/gstfakesrc.c:
8068         * plugins/elements/gstfdsink.c:
8069         * plugins/elements/gstfdsrc.c:
8070         * plugins/elements/gstfilesink.c:
8071         * plugins/elements/gstfilesrc.c:
8072         * plugins/elements/gstidentity.c:
8073         * plugins/elements/gstqueue.c:
8074         * plugins/elements/gsttee.c:
8075         * plugins/elements/gsttypefindelement.c:
8076         (gst_type_find_element_handle_event):
8077           make GstElementDetails const
8079 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8081         * libs/gst/base/gstbasesink.c: (gst_base_sink_event):
8082         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
8083         (gst_collect_pads_is_collected), (gst_collect_pads_event):
8084           more detailed debug and formatting cleanup,
8085           forward newsegments to src-pad (so that e.g. adder not eats them)
8087 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8089         * gst/gstutils.c: (gst_element_link_pads):
8090           cleanup double code
8092 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
8094         * libs/gst/controller/gstcontroller.c:
8095         (gst_controller_sync_values):
8096           some little tuning
8097         * tests/check/libs/controller.c: (GST_START_TEST),
8098         (gst_controller_suite):
8099           a new test for live value handling
8101 2006-04-28  Wim Taymans  <wim@fluendo.com>
8103         * gst/gstutils.c: (push_and_ref):
8104         Added some more docs.
8105         Fix refcount issue whith gst_element_found_tags() helper 
8106         function. Fixes #338335
8108         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
8109         Added testsuite for gst_element_found_tags().
8111 2006-04-28  Michael Smith  <msmith@fluendo.com>
8113         * gst/gstvalue.c: (gst_value_serialize_flags):
8114           Avoid NULL dereference when trying to serialize flags containing
8115           invalid values.
8117 2006-04-28  Michael Smith  <msmith@fluendo.com>
8119         * plugins/elements/gsttypefindelement.c:
8120         (gst_type_find_element_handle_event):
8121           If we get EOS before any data is accumulated, don't use
8122           uninitialised local variables.
8124 2006-04-28  Michael Smith  <msmith@fluendo.com>
8126         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
8127         (gst_dp_event_from_packet):
8128           Fixes in reading/writing events over GDP (not currently used?) - 
8129           dereferencing NULL events for unknown/invalid event types, memory
8130           leak, and change g_warning to GST_WARNING.
8132 2006-04-28  Wim Taymans  <wim@fluendo.com>
8134         * libs/gst/base/gstbasesink.c: (gst_base_sink_is_too_late),
8135         (gst_base_sink_do_render_stats), (gst_base_sink_render_object),
8136         (gst_base_sink_get_position), (gst_base_sink_change_state):
8137         When frame dropping is enabled, we should not ignore frames
8138         without a duration.
8139         Update some documentation.
8141 2006-04-28  Wim Taymans  <wim@fluendo.com>
8143         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
8144         (gst_base_src_send_event), (gst_base_src_change_state):
8145         Documentation updates.
8147 2006-04-28  Wim Taymans  <wim@fluendo.com>
8149         * plugins/elements/gstfdsink.c: (gst_fd_sink_render),
8150         (gst_fd_sink_check_fd), (gst_fd_sink_update_fd):
8151         handle EAGAIN, EINTR and short writes correctly. Also clean
8152         up some error cases, avoid a deadlock on bad file descriptors and
8153         use GST_DEBUG_OBJECT.
8154         Fixes #339843
8156 2006-04-28  Wim Taymans  <wim@fluendo.com>
8158         * gst/gstvalue.c: (gst_value_serialize_buffer),
8159         (gst_value_deserialize_buffer):
8160         Don't try to serialize a GValue with a NULL buffer. 
8161         Fixes #339821.
8163         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
8164         Added check for serialisation of NULL buffers.
8166 2006-04-28  Wim Taymans  <wim@fluendo.com>
8168         * gst/gstminiobject.c: (gst_value_take_mini_object):
8169         Taking a NULL miniobject is valid, fix the case where
8170         we try to unref the NULL miniobject.
8172 2006-04-28  Wim Taymans  <wim@fluendo.com>
8174         Patch by: Stefan Kost <ensonic at sonicpulse dot de>
8176         * gst/gstbin.c: (gst_bin_handle_message_func):
8177         Update docs.
8178         Don't leak bin refcount when a state recalc is
8179         in progress and we delay another one #339808.
8181 2006-04-28  Wim Taymans  <wim@fluendo.com>
8183         * docs/design/part-TODO.txt:
8184         Mention QoS as an ongoing work item.
8186         * docs/design/part-buffering.txt:
8187         New doc about buffering that needs to be fleshed out
8188         at some point.
8190         * docs/design/part-qos.txt:
8191         More QoS policy for decoders/demuxers/transforms
8193         * docs/design/part-trickmodes.txt:
8194         Small update.
8196 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8198         * configure.ac:
8199           back to HEAD
8201 === release 0.10.5 ===
8203 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
8205         * configure.ac:
8206           releasing 0.10.5, "Fogo"
8208 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
8210         patch by: Wim Taymans
8212         * gst/gstpad.c: (gst_pad_init), (gst_pad_configure_sink),
8213         (gst_pad_configure_src), (gst_pad_push):
8214         * gst/gstpipeline.c: (gst_pipeline_init):
8215           Fix internal data flow errors.  Fixes #338711.
8217 2006-04-12  Wim Taymans  <wim@fluendo.com>
8219         * tests/check/gst/gstelement.c: (GST_START_TEST):
8220         Don't leak the factory.
8222 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
8224         * configure.ac:
8225         * win32/common/config.h:
8226           prerelease
8228 2006-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8230         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
8231         (gst_controller_unset_all):
8232           Free allocated GstTimedValues when freeing list nodes.
8233           Should fix leaks 'make check-valgrind' complains about.
8235         * win32/common/libgstcontroller.def:
8236           Add gst_controller_unset_all.
8238 2006-04-11  Stefan Kost  <ensonic@users.sf.net>
8240         * docs/libs/gstreamer-libs-sections.txt:
8241         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
8242         (gst_controller_unset_all):
8243         * libs/gst/controller/gstcontroller.h:
8244         API: Added new method gst_controller_unset_all()
8245         fixed gst_controller_unset()
8246         * tests/check/libs/controller.c: (GST_START_TEST),
8247         (gst_controller_suite):
8248         Added two testcases for new and fixed method
8250 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
8252         * libs/gst/net/gstnettimepacket.c: (gst_net_time_packet_send):
8253           MSG_DONTWAIT is not defined on Cygwin, so work
8254           around that (fixes #317048).
8255           
8256 2006-04-11  Wim Taymans  <wim@fluendo.com>
8258         * gst/gstelementfactory.c: (gst_element_register),
8259         (gst_element_factory_create), (gst_element_factory_make):
8260         Some cleanups.
8261         Fixed a FIXME.
8262         Updated docs (Fixes #131079)
8264         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
8265         Small cleanups.
8267         * tests/check/gst/gstelement.c: (GST_START_TEST),
8268         (gst_element_suite):
8269         Added testcase for elementfactory class field.
8271 2006-04-10  Wim Taymans  <wim@fluendo.com>
8273         * gst/gstsegment.c:
8274         Added some more docs.
8276         * libs/gst/base/gstbasesink.c: (gst_base_sink_perform_qos),
8277         (gst_base_sink_reset_qos):
8278         Calculate more accurate rate values.
8280 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
8282         * gst/gst_private.h:
8283           add a new #ifdef to use __declspec(dllimport) only for
8284           other modules and not for gstreamer core
8285         * gst/gstbasesink.c: (gst_base_sink_perform_qos):
8286           use gst_guint64_to_gdouble for conversion
8287         * win32/common/libgstreamer.def:
8288           add new exported functions
8289         * win32/vs6/gst_inspect.dsp:
8290         * win32/vs6/gst_launch.dsp:
8291         * win32/vs6/libgstbase.dsp:
8292         * win32/vs6/libgstcontroller.dsp:
8293         * win32/vs6/libgstcoreelements.dsp:
8294         * win32/vs6/libgstdataprotocol.dsp:
8295         * win32/vs6/libgstnet.dsp:
8296           update project files
8298 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
8300         * gst/gstbuffer.c: (gst_subbuffer_class_init):
8301         * gst/gstclock.c: (gst_clock_class_init):
8302         * gst/gstelement.c: (gst_element_class_init):
8303         * gst/gstindex.c: (gst_index_class_init):
8304         * gst/gstindexfactory.c: (gst_index_factory_class_init):
8305         * gst/gstobject.c: (gst_object_class_init),
8306         (gst_signal_object_class_init):
8307         * gst/gstpad.c: (gst_pad_class_init):
8308         * gst/gstpadtemplate.c: (gst_pad_template_class_init):
8309         * gst/gstpluginfeature.c: (gst_plugin_feature_class_init):
8310         * gst/gstregistry.c: (gst_registry_class_init):
8311         * gst/gstsystemclock.c: (gst_system_clock_class_init):
8312         * gst/gsttask.c: (gst_task_class_init):
8313         * gst/gstxml.c: (gst_xml_class_init):
8314         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
8315         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
8316         (gst_base_src_loop):
8317         * libs/gst/controller/gstcontroller.c:/
8318         (_gst_controller_class_init):
8319         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
8320         * plugins/indexers/gstfileindex.c: (gst_file_index_class_init):
8321         * plugins/indexers/gstmemindex.c: (gst_mem_index_class_init):
8322         * tests/old/examples/plugins/example.c: (gst_example_class_init):
8323         * tests/old/testsuite/threads/signals.c: (gst_test_class_init):
8324         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
8326 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
8328         * gst/gstpad.c: (gst_pad_link):
8329           Must set peer pads before calling the link function, otherwise
8330           a task started from a link function might get a flow-not-linked
8331           result when trying to push because the other thread where the
8332           linking happens hasn't had a chance to set the peers yet. This
8333           might happen for example when a queue gets linked to a downstream
8334           element, as queue starts a streaming task when its source pad
8335           gets linked. Happens in real life when playing back flac/musepack
8336           files in playbin (#332390).
8337           
8338 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
8340         * gst/gstindex.h:
8341         * gst/gstxml.h:
8342         * libs/gst/base/gstadapter.h:
8343         * libs/gst/base/gstbasesink.h:
8344         * libs/gst/base/gstbasesrc.h:
8345         * libs/gst/base/gstbasetransform.h:
8346         * libs/gst/base/gstcollectpads.h:
8347         * libs/gst/base/gstpushsrc.h:
8348         Fix broken GObject macros
8350 2006-04-07  Wim Taymans  <wim@fluendo.com>
8352         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
8353         Initialize start and stop times, thanks valgrind.
8355 2006-04-07  Wim Taymans  <wim@fluendo.com>
8357         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
8358         Be a bit nicer to badly behaving upstream elements that expect
8359         us to deal with non TIME segments and timestamps (such as fakesrc
8360         in the testsuite).
8362 2006-04-07  Wim Taymans  <wim@fluendo.com>
8364         * gst/gstbus.c:
8365         Small documentation clarification about the signal watch.
8367         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
8368         (gst_base_sink_wait_clock), (gst_base_sink_do_sync),
8369         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
8370         (gst_base_sink_do_render_stats), (gst_base_sink_render_object),
8371         (gst_base_sink_get_position_last),
8372         (gst_base_sink_get_position_paused), (gst_base_sink_change_state):
8373         Convert and store timestamps in stream time and running time, the
8374         raw timestamps are not useful, also document this better.
8375         Use different window sizes for good and bad QoS observations so
8376         we react to badness a little quicker.
8377         Keep track of the amount of rendered and dropped buffers.
8378         Send QoS timestamps in running time.
8380         * libs/gst/base/gstbasetransform.c:
8381         (gst_base_transform_sink_eventfunc),
8382         (gst_base_transform_handle_buffer):
8383         Compare QoS timestamps against running time.
8385 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
8387         * gst/gstpad.c:
8388           Typo fixes in docs.
8390 2006-04-06  Michael Smith  <msmith@fluendo.com>
8392         * gst/gstpad.c: (gst_pad_set_property):
8393           Use g_value_get_object() instead of g_value_dup_gst_object(),
8394           to avoid double-reffing the pad template (which we then sink,
8395           so this worked previously if (and only if) the pad template
8396           was floating.
8398         * gst/gstpadtemplate.c: (gst_pad_template_init),
8399         (gst_pad_template_pad_created):
8400           Never return floating references to pad templates, create
8401           them as initially-sunken.
8403           Document an extra function (and make this stop sinking our
8404           pad template, since that is now guaranteed to do nothing,
8405           since we created it sunken).
8407         * gst/gstghostpad.c:
8408           Fix docs typo.
8410 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
8412         * gst/gstinfo.c: (__gst_in_valgrind):
8413           Add some newlines.
8415         * plugins/elements/gsttypefindelement.c:
8416         (gst_type_find_element_chain):
8417           Don't leak buffer caps.
8419 2006-04-06  Michael Smith  <msmith@fluendo.com>
8421         * gst/parse/grammar.y:
8422           Fix a leak in parse-launch for any source-or-sink named element 
8423           references used.
8425         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
8426           Unref the pipeline if it exists after we've failed parsing.
8428 2006-04-05  Michael Smith  <msmith@fluendo.com>
8430         * gst/gstpipeline.c: (gst_pipeline_init):
8431           When we create a pipeline bus, initially create it in flushing mode.
8432           Fixes leaks in at least one test, and makes a new pipeline work the
8433           same as one that has gone to READY and then back to NULL.
8435         * gst/gstelement.c:
8436           Typo fix in docs.
8438 2006-04-05  Michael Smith  <msmith@fluendo.com>
8440         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
8441           Unref a pad we reffed.
8442         * tests/check/gst/gstutils.c: (GST_START_TEST):
8443           Unref bins
8445 2006-04-05  Michael Smith  <msmith@fluendo.com>
8447         * gst/gstquery.c: (gst_query_set_formats),
8448         (gst_query_set_formatsv):
8449           Fix leaking GValues in queries, as shown by valgrind/testsuite.
8451 2006-04-05  Michael Smith  <msmith@fluendo.com>
8453         * tests/check/generic/sinks.c: (GST_START_TEST):
8454           Fix a variety of memleaks in sinks check, which are only sometimes 
8455           shown by running the tests under valgrind (weird?).
8457 2006-04-05  Jan Schmidt  <thaytan@mad.scientist.com>
8459         * docs/version.entities.in:
8460           Fix the substituted entity name after thomas' changes on the
8461           weekend.
8463 2006-04-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8465         * gst/gstinfo.c: (__gst_in_valgrind): Use printf instead of
8466         VALGRIND_PRINTF
8467         
8468 2006-04-05  Andy Wingo  <wingo@pobox.com>
8470         * gst/gstpad.c (gst_pad_set_blocked_async): More debug.
8472         * libs/gst/base/gstbasetransform.c
8473         (gst_base_transform_sink_eventfunc): When resetting our segment on
8474         FLUSH_STOP, also update the flag saying we haven't seen a
8475         newsegment.
8477 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
8479         Patch by: Paolo Borelli  <pborelli at katamail dot com>
8481         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_class_init),
8482         (gst_plugin_check_license):
8483           minor clean-ups: G_DEFINE_TYPE already takes care of the
8484           parent_class stuff, no need to do it twice. Mark array of
8485           license strings as constant. (#337103)
8486           
8487 2006-04-04  Michael Smith  <msmith@fluendo.com>
8489         * tools/gst-inspect.c: (print_element_list):
8490           Free the right plugin list; fixes a memory leak.
8492 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
8494         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
8496         * plugins/elements/gstfilesink.c: (gst_file_sink_render):
8497           Don't error out on empty buffers (#336945).
8498           
8499 2006-04-04  Jan Schmidt  <thaytan@mad.scientist.com>
8501         * docs/libs/gstreamer-libs-sections.txt:
8502         * gst/gsttaglist.c:
8503         * libs/gst/base/gstbasesink.c:
8504         * libs/gst/base/gstbasesink.h:
8505         * libs/gst/base/gstbasesrc.c:
8506         * libs/gst/base/gstbasesrc.h:
8507           Documentation updates. Make BaseSink and BaseSrc docs contain the
8508           class structure so that people can actually see the prototypes for
8509           virtual functions they're supposed to be overriding.
8511 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
8513         * plugins/elements/gsttypefindelement.c:
8514         (gst_type_find_element_chain):
8515           More debug info; when skipping typefinding, send cached
8516           events in all cases.
8518 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
8520         * configure.ac:
8521           use new AS_VERSION and AS_NANO macros
8522         * gst/gst-i18n-lib.h:
8523         * gst/gst.c:
8524         * gst/gsterror.c:
8525         * gst/gstversion.h.in:
8526         * win32/common/config.h:
8527         * win32/common/config.h.in:
8528           update accordingly
8530 2006-03-31  Michael Smith  <msmith@fluendo.com>
8532         * plugins/elements/gsttypefindelement.c:
8533         (gst_type_find_element_chain):
8534           Do not typefind content if the buffers already have caps.
8535           Neccesary for icydemux (#333657), and the right thing to do anyway.
8537 2006-03-30  Wim Taymans  <wim@fluendo.com>
8539         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
8540         (gst_base_sink_finalize), (gst_base_sink_set_qos_enabled),
8541         (gst_base_sink_is_qos_enabled), (gst_base_sink_do_sync),
8542         (gst_base_sink_record_qos_observation),
8543         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
8544         (gst_base_sink_is_too_late), (gst_base_sink_render_object),
8545         (gst_base_sink_change_state):
8546         More QoS measurements as described in the design doc.
8547         Get rid of ringbuffer with observations, running average is
8548         more simple and equally good.
8549         Calculates valid proportion now.
8550         Added beginning of flood measurement.
8552 2006-03-29  Wim Taymans  <wim@fluendo.com>
8554         * docs/design/part-qos.txt:
8555         * gst/gstclock.c:
8556         Small documentation updates and additions.
8558 2006-03-29  Wim Taymans  <wim@fluendo.com>
8560         * libs/gst/base/gstbasesrc.c: (gst_base_src_finalize),
8561         (gst_base_src_send_event), (gst_base_src_loop),
8562         (gst_base_src_change_state):
8563         Perform the EOS logic when we reach the segment stop position.
8564         Fix compilation on gcc4.1
8566 2006-03-29  Wim Taymans  <wim@fluendo.com>
8568         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
8570         * plugins/elements/gstqueue.c: (gst_queue_init),
8571         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
8572         (gst_queue_set_property):
8573         * plugins/elements/gstqueue.h:
8574         In queue, when EOS is received, if minimum threshold > max_size -
8575         current_level, there is chance that queue blocks forever in conditional
8576         item del wait. This is because the queue is not emptied completely due
8577         to minimum threshold.  Here is another approach. Instead of setting
8578         cur_levels to max in EOS, just zero all minimum threshold levels. This
8579         should make sure that queue gives out all data. When going to READY
8580         (stop) state, just reset the original minimum threshold levels.
8581         Fixes #336336.
8583 2006-03-29  Tim-Philipp Müller  <tim at centricular dot net>
8585         * plugins/elements/gsttypefindelement.c: (stop_typefinding),
8586         (gst_type_find_element_handle_event),
8587         (gst_type_find_element_send_cached_events),
8588         (gst_type_find_element_change_state):
8589         * plugins/elements/gsttypefindelement.h:
8590           When typefinding is done in push mode, we should cache
8591           events we receive during typefinding instead of just
8592           dropping them (e.g. newsegment, custom events from
8593           dvdreadsrc etc.) and then send them out once we've
8594           determined the type of the stream (and decodebin
8595           has had a chance to plug in a decoder/demuxer).
8596           
8597 2006-03-27  Wim Taymans  <wim@fluendo.com>
8599         * docs/design/part-qos.txt:
8600         First QoS ideas.
8602 2006-03-27  Wim Taymans  <wim@fluendo.com>
8604         Inspired by a patch of: Lutz Mueller <lutz at topfrose dot de>
8606         * libs/gst/base/gstbasesrc.c: (gst_base_src_finalize),
8607         (gst_base_src_send_event), (gst_base_src_change_state):
8608         Handle element seek correctly when we are streaming.
8609         Fixes #326998.
8611 2006-03-24  Michael Smith  <msmith@fluendo.com>
8613         * docs/faq/gst-uninstalled:
8614           Set up LD_LIBRARY_PATH to point at all the gstreamer libs. This will
8615           allow you to correctly run intalled applications built against old 
8616           core, using plugins that require updated core (e.g. running
8617           installed totem against a full uninstalled gstreamer stack)
8619 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
8621         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_is_collected):
8622         more debug details
8624 2006-03-24  Wim Taymans  <wim@fluendo.com>
8626         * docs/gst/gstreamer-sections.txt:
8627         Rearrange the order of the methods so that related methods
8628         are grouped together in sections.
8630 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
8632         * gst/gstelement.c:
8633           Little clarification in the docs
8635 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
8637         * docs/README:
8638         formatting fix
8639         * plugins/elements/gstidentity.c:
8640         * plugins/elements/gstqueue.c:
8641         * plugins/elements/gsttee.c:
8642         * plugins/elements/gsttypefindelement.c:
8643         GST_ELEMENT_DETAILS formatting
8645 2006-03-24  Wim Taymans  <wim@fluendo.com>
8647         * libs/gst/base/gstbasesink.h:
8648         Only add fields, not insert or we break ABI.
8650 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
8652         * win32/common/libgstbase.def:
8653         * win32/common/libgstreamer.def:
8654           Update, add recently added functions.
8656 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
8658         * docs/gst/gstreamer-sections.txt:
8659         * gst/gstutils.c: (gst_pad_query_peer_position),
8660         (gst_pad_query_peer_duration), (gst_pad_query_peer_convert):
8661         * gst/gstutils.h:
8662           API: add some new utility functions:
8663            - gst_pad_query_peer_position()
8664            - gst_pad_query_peer_duration()
8665            - gst_pad_query_peer_convert()
8666           
8667 2006-03-23  Wim Taymans  <wim@fluendo.com>
8669         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
8670         (gst_base_sink_init), (gst_base_sink_finalize),
8671         (gst_base_sink_set_qos_enabled), (gst_base_sink_is_qos_enabled),
8672         (gst_base_sink_set_property), (gst_base_sink_get_property),
8673         (gst_base_sink_commit_state), (gst_base_sink_get_sync_times),
8674         (gst_base_sink_wait_clock), (gst_base_sink_do_sync),
8675         (gst_base_sink_add_qos_observation), (gst_base_sink_send_qos),
8676         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
8677         (gst_base_sink_is_too_late), (gst_base_sink_render_object),
8678         (gst_base_sink_preroll_object), (gst_base_sink_event),
8679         (gst_base_sink_chain_unlocked), (gst_base_sink_get_position_last),
8680         (gst_base_sink_get_position_paused), (gst_base_sink_get_position),
8681         (gst_base_sink_query), (gst_base_sink_change_state):
8682         Decouple max-lateness and the fact that QoS messages are generated
8683         with a new property (qos).
8684         added API: GstBaseSink::async_play()
8685         Add vmethod so subclasses can be notified of ASYNC playing
8686         state changes.
8687         Collect timestamp start and stop to report better current
8688         position in EOS/PLAYING/PAUSED/READY/NULL.
8689         Refactor QoS/frame dropping and other measurements.
8690         API: GstBaseSrc::qos
8691         Fixes #326311
8693         * libs/gst/base/gstbasesink.h:
8694         Added Private struct.
8695         API: gst_base_sink_set_qos_enabled()
8696         API: gst_base_sink_is_qos_enabled()
8698 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
8700         * gst/gstregistryxml.c: (gst_registry_xml_read_cache):
8701           If compiling against GLib-2.8 or newer, try to read the
8702           registry file using GMappedFile first before falling back
8703           to fopen() + fread() (#332151).
8705 2006-03-22  Wim Taymans  <wim@fluendo.com>
8707         * gst/gstinfo.c: (gst_debug_set_active),
8708         (gst_debug_category_set_threshold):
8709         Disable debugging unless explicitly activated.
8710         Fixes #335480.
8712 2006-03-22  Wim Taymans  <wim@fluendo.com>
8714         * gst/gstelement.c: (gst_element_set_locked_state),
8715         (gst_element_dispose):
8716         Cleanup the error case.
8718         * gst/gstobject.c: (gst_object_dispose):
8719         print a critical when some object was disposed with
8720         a parent, also revive the object since it might
8721         crash the parent.
8723 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
8725         * tools/gst-launch.1.in:
8726           Fix another typo.
8728 2006-03-21  Thomas Vander Stichele  <thomas at apestaart dot org>
8730         * configure.ac:
8731         * tests/check/Makefile.am:
8732           disable some tests when we don't have a registry
8733         * tests/check/gst/gstutils.c: (gst_utils_suite):
8734           don't build the part that needs parsing
8736 2006-03-21  Thomas Vander Stichele  <thomas at apestaart dot org>
8738         * gst/Makefile.am
8739         * tests/examples/Makefile.am:
8740           fix --disable-parse build
8742 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8744         * tools/gst-feedback.1.in:
8745           Fix typo: s/feeback/feedback/ (#133494).
8747 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8749         * tools/Makefile.am:
8750         * tools/gst-launch.1.in:
8751           Add FILES section and correct entry about GST_REGISTRY_PATH
8752           environment variable (#133495; #133494).
8754 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8756         * tools/Makefile.am:
8757         * tools/gst-md5sum.1.in:
8758         * tools/gst-md5sum.c:
8759           Remove gst-md5sum and man page (the md5sink element
8760           required was removed ages ago)
8762 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8764         * gst/gststructure.c: (gst_structure_id_set_value):
8765           Make sure that string fields in structures/taglists
8766           contain valid UTF-8 - we don't want to pass rubbish to
8767           applications because of a buggy plugin (cp. #334167).
8769 2006-03-21  Edward Hervey  <edward@fluendo.com>
8771         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
8772         (gst_bin_handle_message_func):
8773         * gst/gstclock.c: (gst_clock_dispose), (gst_clock_set_master):
8774         * gst/gstelement.c: (gst_element_set_clock), (gst_element_dispose),
8775         (gst_element_set_bus_func):
8776         * gst/gstghostpad.c: (gst_proxy_pad_dispose):
8777         * gst/gstminiobject.c: (gst_value_set_mini_object),
8778         (gst_value_take_mini_object):
8779         * gst/gstpad.c: (gst_pad_set_pad_template):
8780         * gst/gstpipeline.c: (gst_pipeline_dispose),
8781         (gst_pipeline_use_clock), (gst_pipeline_auto_clock):
8782         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_pop),
8783         (gst_collect_pads_chain):
8784         * libs/gst/net/gstnettimeprovider.c:
8785         (gst_net_time_provider_set_property):
8786         Series of fixes for dereferenced pointers that gcc 4.1 complains about.
8787         It's in fact all issues with gst_*object_replace().
8789 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
8791         Patch by: Loïc Minier  <lool + gnome at via dot ecp dot fr>
8792         
8793         * pkgconfig/gstreamer-check-uninstalled.pc.in:
8794         * pkgconfig/gstreamer-check.pc.in:
8795           Use @CHECK_LIBS@ here instead of hard-coding -lcheck (#334109).
8797 2006-03-21  Edward Hervey  <edward@fluendo.com>
8799         * gst/gstbuffer.h:
8800         * gst/gstevent.h:
8801         * gst/gstmessage.h:
8802         gst_[buffer|event|message]_ref() macros are replaced by a static
8803         inline functions because gcc-4.1 will about if the return value
8804         isn't used.
8805         * tests/check/gst/gstevent.c: (event_probe):
8806         gst_event_ref now has to be given a GstEvent* , fix check accordingly.
8808 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
8810         * gst/gstutils.h:
8811         Add G_UNLIKELY to our boilerplate to optimise the 'already registered
8812         the type' case. (Closes: #335195 for now). In the future, when we
8813         depend on GLib 2.10, we could also intern the type name using
8814         g_intern_static_string()
8816 2006-03-20  Wim Taymans  <wim@fluendo.com>
8818         * gst/gstbin.c: (gst_bin_handle_message_func),
8819         (bin_query_max_init), (bin_query_position_fold),
8820         (bin_query_position_done), (gst_bin_query):
8821         Position query should also take max of all streams.
8823 2006-03-20  Wim Taymans  <wim@fluendo.com>
8825         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
8826         (gst_fake_src_finalize):
8827         Fix leaks in fakesrc.
8829         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
8830         Fix leaks in the testcase.
8832 2006-03-19  Sebastien Moutte  <sebastien@moutte.net>
8834         * gst/gst_private.h:
8835           add win32 specific import decoration(__declspec(dllimport)) 
8836           for all extern GstDebugCategory * variables
8837         * win32/common/libgstbase.def:
8838         * win32/common/libgstcontroller.def:
8839         * win32/common/libgstreamer.def:
8840           Add some exports, remove empty lines
8841         * win32/common/libgstdataprotocol.def:
8842         * win32/common/libgstdataprotocol.dsp:
8843         * win32/common/libgstnet.def:
8844         * win32/common/libgstnet.dsp:
8845           new project files and exportation files added
8846         
8847 2006-03-19  Wim Taymans  <wim@fluendo.com>
8849         * tests/check/libs/basesrc.c: (eos_event_counter):
8850         Use proper return value for probe.
8852 2006-03-17  Wim Taymans  <wim@fluendo.com>
8854         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_alloc_buffer_full),
8855         (gst_pad_push):
8856         Don't leak buffers, caps and pads on negotiation errors.
8858 2006-03-16  Stefan Kost  <ensonic@users.sf.net>
8860         * docs/faq/cvs.xml:
8861         * docs/faq/dependencies.xml:
8862         * docs/faq/developing.xml:
8863         * docs/faq/faq.xml:
8864         * docs/faq/general.xml:
8865         * docs/faq/getting.xml:
8866         * docs/faq/legal.xml:
8867         * docs/faq/troubleshooting.xml:
8868         * docs/faq/using.xml:
8869         Faq review and update.
8871 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
8873         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_alloc_buffer_full),
8874         (gst_pad_push):
8875         Don't pound the cpu to pieces by checking get_caps when accept_caps
8876         is called with the same caps as the pad already has.
8877         Use GST_DEBUG_OBJECT when outputting caps change information.
8879 2006-03-15  Wim Taymans  <wim@fluendo.com>
8881         * gst/gstclock.c: (gst_clock_class_init):
8882         Fix docs.
8884 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
8886         * gst/gstbuffer.h:
8887         Documentation fix.
8889         * gst/gstpad.c: (gst_pad_init), (gst_pad_acceptcaps_default),
8890         (gst_pad_accept_caps), (gst_pad_configure_sink),
8891         (gst_pad_configure_src), (gst_pad_chain), (gst_pad_push):
8892         Make the default acceptcaps behaviour be to check the requested 
8893         caps against the gst_pad_get_caps output. 
8895         Ensure that gst_pad_accept_caps is used to check caps when a pad
8896         doesn't have a setcaps function, so that pads automatically refuse 
8897         caps that they don't allow in their pad template. (Fixes #332986)
8899         When a buffer with attached caps is pushed, ensure that the source 
8900         pad receives those caps even if the element didn't call
8901         gst_pad_set_caps first.
8903 2006-03-15  Wim Taymans  <wim@fluendo.com>
8905         * libs/gst/base/gstadapter.c:
8906         Add some docs.
8908 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
8910         * win32/common/libgstbase.def:
8911         * win32/common/libgstcontroller.def:
8912         * win32/common/libgstreamer.def:
8913           Add a whole bunch of missing functions (#334434).
8915 2006-03-14  Wim Taymans  <wim@fluendo.com>
8917         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
8918         (gst_base_sink_get_sync_times), (gst_base_sink_wait_clock),
8919         (gst_base_sink_do_sync), (gst_base_sink_do_qos):
8920         Better debug info when we receive a segment event.
8921         Reorganize a bit so we can pass the get_times() results around.
8922         Use the segment format when calculating the running time.
8923         Don't do QoS is sync is disabled or we have no clock or the
8924         element does not want us to sync to the clock.
8925         Don't drop buffers if QoS is disabled for now.
8927 2006-03-14  Wim Taymans  <wim@fluendo.com>
8929         * gst/gstclock.c: (gst_clock_class_init), (do_linear_regression):
8930         Marked the stats property as unimplemented so people don't get
8931         wild ideas.
8932         Add debug message when regression goes wrong.
8933         Added some more docs.
8935 2006-03-14  Wim Taymans  <wim@fluendo.com>
8937         * gst/gstsegment.c: (gst_segment_to_stream_time):
8938         Return correct return type in case of errors.
8940 2006-03-14  Wim Taymans  <wim@fluendo.com>
8942         * gst/gstformat.c: (gst_format_get_name), (gst_format_to_quark):
8943           Don't segfault on invalid formats.
8945 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
8947         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
8948           Can't use gst_segment_to_running_time() when the segment
8949           is not in GST_TIME_FORMAT (like with filesink, for example).
8950           Stops flac encoding pipelines from spewing critical warnings
8951           at EOS (#331248).
8952           
8953 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
8955         * gst/gstpipeline.c: (gst_pipeline_class_init):
8956           Add 'Since: 0.10.5' to gtk-doc blurb for added property.
8958         * plugins/elements/gsttypefindelement.c:
8959         (gst_type_find_element_handle_event):
8960           Don't try to typefind empty streams.
8962 2006-03-14  Wim Taymans  <wim@fluendo.com>
8964         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync),
8965         (gst_base_sink_do_qos):
8966         Separate QoS calculation.
8967         Only drop buffers when lateness is bigger than the 
8968         duration of the buffer.
8970 2006-03-13  Wim Taymans  <wim@fluendo.com>
8972         * gst/gstpipeline.c: (gst_pipeline_set_property),
8973         (gst_pipeline_get_property), (do_pipeline_seek),
8974         (gst_pipeline_change_state), (gst_pipeline_set_delay),
8975         (gst_pipeline_get_delay):
8976         Don't deadlock when reading properties.
8978 2006-03-13  Wim Taymans  <wim@fluendo.com>
8980         * libs/gst/base/gstbasetransform.c:
8981         (gst_base_transform_class_init), (gst_base_transform_init),
8982         (gst_base_transform_sink_event),
8983         (gst_base_transform_sink_eventfunc),
8984         (gst_base_transform_src_event), (gst_base_transform_src_eventfunc),
8985         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
8986         (gst_base_transform_set_property),
8987         (gst_base_transform_get_property),
8988         (gst_base_transform_change_state), (gst_base_transform_update_qos),
8989         (gst_base_transform_set_qos_enabled),
8990         (gst_base_transform_is_qos_enabled):
8991         * libs/gst/base/gstbasetransform.h:
8992         Make basetransform virtual method for src events too.
8993         Handle QOS in basetransform.
8994         API: gst_base_transform_update_qos()
8995         API: gst_base_transform_set_qos_enabled()
8996         API: gst_base_transform_is_qos_enabled()
8998 2006-03-13  Wim Taymans  <wim@fluendo.com>
9000         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
9001         (gst_base_sink_do_sync):
9002         Small cleanups.
9003         Use QOS debug category.
9005 2006-03-13  Wim Taymans  <wim@fluendo.com>
9007         * plugins/elements/gstqueue.c:
9008         Very small doc update.
9010 2006-03-13  Wim Taymans  <wim@fluendo.com>
9012         * gst/gst_private.h:
9013         * gst/gstinfo.c: (_gst_debug_init):
9014         Added QOS debug category
9016 2006-03-13  Wim Taymans  <wim@fluendo.com>
9018         * docs/gst/gstreamer-sections.txt:
9019         * gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
9020         * gst/gstbin.h:
9021         * gst/gstbus.c: (gst_bus_class_init):
9022         * gst/gstbus.h:
9023         * gst/gstclock.c:
9024         * gst/gstelement.c: (gst_element_set_locked_state):
9025         * gst/gstsegment.c:
9026         Documentation updates.
9028         * gst/gstpipeline.c: (gst_pipeline_get_type),
9029         (gst_pipeline_class_init), (gst_pipeline_init),
9030         (gst_pipeline_dispose), (gst_pipeline_set_property),
9031         (gst_pipeline_get_property), (do_pipeline_seek),
9032         (gst_pipeline_send_event), (gst_pipeline_change_state),
9033         (gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
9034         (gst_pipeline_get_delay):
9035         * gst/gstpipeline.h:
9036         Added methods for setting the delay.
9037         API: gst_pipeline_set_delay()
9038         API: gst_pipeline_get_delay()
9039         Add pipeline debug category
9040         Various cleanups.
9041         Updated docs.
9042         Don't reset stream time when seek failed.
9044 2006-03-13  Wim Taymans  <wim@fluendo.com>
9046         * docs/design/draft-klass.txt:
9047         * docs/design/part-clocks.txt:
9048         * docs/design/part-events.txt:
9049         * docs/design/part-gstbin.txt:
9050         * docs/design/part-gstpipeline.txt:
9051         * docs/design/part-messages.txt:
9052         * docs/design/part-negotiation.txt:
9053         * docs/design/part-overview.txt:
9054         * docs/design/part-preroll.txt:
9055         * docs/design/part-seeking.txt:
9056         * docs/design/part-states.txt:
9057         * docs/design/part-streams.txt:
9058         Documentation updates.
9060 2006-03-12  Julien MOUTTE  <julien@moutte.net>
9062         * gst/gsttaglist.c: Fix rubbish docs that are encouraging
9063         us to leak strings...
9065 2006-03-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9067         * libs/gst/net/gstnettimeprovider.c:
9068           fix docs
9069         * win32/common/config.h:
9070           update
9072 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
9074         Patch by: Julio M. Merino Vidal <jmmv at netbsd org>
9076         * configure.ac:
9077           Don't check for libgnomeui (leftover from old examples
9078           that aren't built or disted any longer) (#334303).
9079           
9080 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
9082         * plugins/elements/gstfdsink.c: (gst_fd_sink_render):
9083         * plugins/elements/gstfilesink.c: (gst_file_sink_render):
9084           Emit RESOURCE_NO_SPACE_LEFT error here as well when
9085           there's no space left on the device.
9087 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
9089         * gst/gstclock.h:
9090           Fix GST_CLOCK_TIME_IS_VALID signedness issues - we need
9091           to cast the input to GstClockTime before comparing with
9092           another GstClockTime value.
9094 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9096         * configure.ac:
9097           back to trunk
9099 === release 0.10.4 ===
9101 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
9103         * configure.ac:
9104           releasing 0.10.4, "Light"
9106 2006-03-10  Michael Smith  <msmith@fluendo.com>
9108         * libs/gst/dataprotocol/dataprotocol.c:
9109           Fix docs for dataprocotol to not get the return types completely
9110           wrong for a few functions.
9112 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9114         * docs/gst/gstreamer-sections.txt:
9115         * gst/gstpipeline.c: (gst_pipeline_class_init),
9116         (gst_pipeline_init), (gst_pipeline_set_property),
9117         (gst_pipeline_get_property), (gst_pipeline_change_state),
9118         (gst_pipeline_set_auto_flush_bus),
9119         (gst_pipeline_get_auto_flush_bus):
9120         * gst/gstpipeline.h:
9121           Add new API: gst_pipeline_set_auto_flush_bus() and
9122           gst_pipeline_get_auto_flush_bus() to disable automatic
9123           flushing of the pipeline's GstBus when going from READY
9124           to NULL state (#332045).
9126 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9128         * docs/gst/gstreamer-sections.txt:
9129         * gst/gsturi.c: (gst_uri_has_protocol):
9130         * gst/gsturi.h:
9131            Add new API: gst_uri_has_protocol() (#333779).
9133 2006-03-09  Wim Taymans  <wim@fluendo.com>
9135         * gst/gstclock.c: (gst_clock_entry_new),
9136         (gst_clock_id_compare_func), (gst_clock_id_wait),
9137         (gst_clock_id_wait_async), (gst_clock_id_unschedule),
9138         (gst_clock_init), (gst_clock_get_internal_time),
9139         (gst_clock_set_master), (do_linear_regression),
9140         (gst_clock_add_observation), (gst_clock_set_property):
9141         * gst/gstclock.h:
9142         Review docs.
9143         Small cleanups.
9144         Fix a possible segfault when the window-size is made smaller.
9145         Calculate jitter before performing the clock wait. Ideally
9146         the clock implementation should calculate jitter but we need
9147         API breakage for that.
9149         * gst/gstsystemclock.c: (gst_system_clock_init):
9150         Docs review.
9151         
9152         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync):
9153         Remove leftover else
9155         * tests/check/gst/gstsystemclock.c: (GST_START_TEST),
9156         (gst_systemclock_suite):
9157         Added check to test GST_CLOCK_DIFF.
9159 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
9161         * libs/gst/base/gsttypefindhelper.c: (helper_find_get_length),
9162         (gst_type_find_helper_get_range):
9163           If we are provided with the size, we should implement
9164           GstTypeFind::get_length, so that typefind functions who
9165           want to can actually peek at the middle of a file.
9167 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
9169         * docs/manual/advanced-dataaccess.xml:
9170           Add some very very basic error checking.
9172         * docs/pwg/appendix-checklist.xml:
9173           Some updates to the list of things to check when writing an element.
9175 2006-03-08  Wim Taymans  <wim@fluendo.com>
9177         * docs/design/part-element-transform.txt:
9178         Added some docs about the design of tranform elements.
9180         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
9181         (gst_base_src_loop), (gst_base_src_change_state):
9182         Mark buffers with the DISCONT flag.
9184 2006-03-08  Michael Smith  <msmith@fluendo.com>
9186         * gst/gstregistry.h:
9187         * gst/gstregistryxml.c: (gst_registry_save),
9188         (gst_registry_save_escaped), (gst_registry_xml_save_caps),
9189         (gst_registry_xml_save_pad_template),
9190         (gst_registry_xml_save_feature), (gst_registry_xml_save_plugin),
9191         (gst_registry_xml_write_cache):
9192           Rewrite registry-saving to avoid race conditions and check for
9193           failed writes.
9195 2006-03-08  Wim Taymans  <wim@fluendo.com>
9197         * libs/gst/base/gstbasetransform.c:
9198         (gst_base_transform_transform_caps),
9199         (gst_base_transform_transform_size),
9200         (gst_base_transform_prepare_output_buffer),
9201         (gst_base_transform_get_unit_size),
9202         (gst_base_transform_buffer_alloc),
9203         (gst_base_transform_handle_buffer),
9204         (gst_base_transform_change_state):
9205         Cleanups, separate normal flow from errors, add sensible
9206         DEBUG lines.
9207         Don't try to renegotiate when allocating an output buffer.
9208         Also copy DISCONT buffer flag when copying a buffer.
9209         Reset the transform after we finish streaming, not during.
9211 2006-03-08  Wim Taymans  <wim@fluendo.com>
9213         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync):
9214         Use last buffer timestamp in qos message.
9216 2006-03-07  Wim Taymans  <wim@fluendo.com>
9218         Patch by: Christophe Fergeau
9220         * docs/pwg/advanced-tagging.xml:
9221         * docs/pwg/building-pads.xml:
9222           fixes #333416
9224 2006-03-07  Wim Taymans  <wim@fluendo.com>
9226         * docs/libs/gstreamer-libs-sections.txt:
9227         Added basesink new methods.
9229         * gst/gstevent.c:
9230         * gst/gstevent.h:
9231         Docs updates. Flesh out the QoS docs.
9233         * libs/gst/base/gstadapter.c:
9234         Small doc clarification about ownership and flushing.
9236         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_sync),
9237         (gst_base_sink_get_sync), (gst_base_sink_set_max_lateness),
9238         (gst_base_sink_get_max_lateness), (gst_base_sink_set_property),
9239         (gst_base_sink_get_property), (gst_base_sink_do_sync):
9240         * libs/gst/base/gstbasesink.h:
9241         API additions: 
9242         Added new methods to allow subclass to control max-lateness 
9243         and sync.
9244         Generate very basic QoS events based on last sync observation.
9245         Updated docs, fix typo, added some QoS blurb.
9247         * libs/gst/base/gstbasesrc.c:
9248         Remove obsolete _get_state() calls from docs.
9250 2006-03-07  Wim Taymans  <wim@fluendo.com>
9252         * docs/libs/gstreamer-libs-sections.txt:
9253         * libs/gst/base/gstbasetransform.h:
9254         API addition: Fix #333669, Add pad accessor defines for GstBaseTransform
9255         Fix docs for GstBaseSrc.
9257 2006-03-07  Wim Taymans  <wim@fluendo.com>
9259         * docs/gst/gstreamer-sections.txt:
9260         * gst/gstbuffer.h:
9261         * gst/gstvalue.c:
9262         * libs/gst/base/gstbasetransform.h:
9263         Small documentation fixes.
9265 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
9267         * gst/gstvalue.c:
9268           Document thread-unsafety of gst_value_register_foo_func()
9269           when used at the same time as gst_value_foo() (#322628).
9271 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
9273         * libs/gst/base/gstpushsrc.c: (gst_push_src_class_init),
9274         (gst_push_src_check_get_range):
9275           Push sources don't support pull mode by default.
9277 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
9279         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
9280         (gst_base_src_init), (gst_base_src_pad_check_get_range),
9281         (gst_base_src_default_check_get_range):
9282         * libs/gst/base/gstbasesrc.h:
9283           API addition:  Add ::check_get_range() vfunc to GstBaseSrc (#332611),
9284           provide default implementation, and rename
9285           gst_base_src_check_get_range() to
9286           gst_base_src_pad_check_get_range() for clarity.
9288 2006-03-06  Wim Taymans  <wim@fluendo.com>
9290         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
9291         Make property overridable.
9293 2006-03-06  Wim Taymans  <wim@fluendo.com>
9295         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
9296         (gst_base_sink_init), (gst_base_sink_set_property),
9297         (gst_base_sink_get_property), (gst_base_sink_do_sync):
9298         * libs/gst/base/gstbasesink.h:
9299         API addition: Make max-lateness a property.
9301 2006-03-06  Wim Taymans  <wim@fluendo.com>
9303         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_clock),
9304         (gst_base_sink_do_sync), (gst_base_sink_render_object):
9305         Don't ever draw a frame that is >10ms late.
9307 2006-03-06  Michael Smith  <msmith@fluendo.com>
9309         * gst/gstmessage.c: (_gst_message_copy):
9310           When copying a message, set the parent_refcount of the enclosed
9311           structure to point at the copy, not the original message.
9313 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
9315         Patch by: Christophe Fergeau
9317         * gst/gstutils.h:
9318           Do proper cast here to make GST_BOILERPLATE_WITH_INTERFACE
9319           usable in c++ code (#333417)
9321 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9323         * gst/gstclock.h:
9324           Show GST_CLOCK_TIME_NONE as 99:99:99.999999999
9326 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
9328         * libs/gst/base/gstbasetransform.c:
9329         (gst_base_transform_transform_caps):
9330           Make sure caps are writable before passing them to
9331           gst_caps_append().
9333 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
9335         * gst/gsterror.h:
9336           Fix some minor docs errors.
9338 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
9340           Patch by: Ross Burton <ross at burtonini dot com>
9342         * gst/gsterror.c: (_gst_resource_errors_init):
9343         * gst/gsterror.h:
9344           Add GST_RESOURCE_ERROR_NO_SPACE_LEFT (for #333352;
9346 2006-03-03  Jan Schmidt  <thaytan@mad.scientist.com>
9348         * gst/gst.c:
9349         Add a check and output a g_warning when GStreamer is built
9350         against GLib 2.6 but running against 2.8 or higher, and vice 
9351         versa. (Closes: #323542)
9353 2006-03-03  Jan Schmidt  <thaytan@mad.scientist.com>
9355         * gst/parse/parse.l:
9356           Commit patch for parse_launch syntax from #331255. Removes 
9357           support for quoted strings and mimetypes when writing filtered 
9358           caps. See the bug report for more details - I'm pretty sure this
9359           obscure feature is not in use by _anyone_ anywhere.
9361           With this simple change, the size of the gstreamer.so here 
9362           drops from 2193KB to 1565KB.
9364 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
9366         * plugins/elements/gsttypefindelement.h:
9367         * plugins/elements/gsttypefindelement.c:
9368         (gst_type_find_element_src_event), (start_typefinding),
9369         (stop_typefinding), (gst_type_find_element_handle_event),
9370         (gst_type_find_element_chain),
9371         (gst_type_find_element_chain_do_typefinding):
9372           Use gst_type_find_helper_for_buffer() for chain-based
9373           typefinding.
9375 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
9377         * plugins/elements/gsttypefindelement.c:
9378         (gst_type_find_element_class_init),
9379         (gst_type_find_element_set_property),
9380         (gst_type_find_element_get_property):
9381           Deprecate "maximum" property (not only was it only taken into
9382           account for typefinding in push-mode anyway, it also was never
9383           actually possible to set it in the first place because the
9384           property was registered with the numeric property ID for the
9385           "minimum" property). Register "maximum" property correctly,
9386           for the sake of future copy'n'pasters. Remove some cruft
9387           from property get/set functions.
9389 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
9391         * plugins/elements/gsttypefindelement.c:
9392         (gst_type_find_element_activate):
9393           Use gst_type_find_helper_get_range() here, so we
9394           can honour the "minimum" property and also emit
9395           the signal with the correct probability of the found caps.
9397 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
9399         * docs/libs/gstreamer-libs-sections.txt:
9400         * libs/gst/base/gsttypefindhelper.c: (helper_find_peek),
9401         (helper_find_suggest), (gst_type_find_helper_get_range),
9402         (gst_type_find_helper):
9403         * libs/gst/base/gsttypefindhelper.h:
9404           New API: gst_type_find_helper_get_range() (#333042).
9406 2006-03-02  Michael Smith  <msmith@fluendo.com>
9408         * gst/gstregistryxml.c: (load_feature):
9409           Asserting on a failure to read part of the registry is Not Cool.
9410           Just log a warning and return NULL (which is already handled)
9412 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
9414         * win32/common/libgstbase.def:
9415           added export of gst_type_find_helper_for_buffer
9416         * win32/common/libgstbase.def:
9417           added some exports : gst_bin_iterate_elements, gst_iterator_resync,
9418           gst_ghost_pad_get_target
9420 2006-02-28  Wim Taymans  <wim@fluendo.com>
9422         * docs/design/draft-klass.txt:
9423         We use Filter now.
9424         Added Connector to mark elements that are only used to
9425         allow pipeline connections.
9426         Moved Debug to extra feature since most of them are 
9427         functionally something else.
9429 2006-02-28  Wim Taymans  <wim@fluendo.com>
9431         * docs/design/draft-klass.txt:
9432         Some updates and clarifications.
9434 2006-02-28  Wim Taymans  <wim@fluendo.com>
9436         * docs/design/draft-klass.txt:
9437         Proposal for klass field values.
9439         * docs/design/part-streams.txt:
9440         Start of a doc describing stream anatomy.
9442 2006-02-28  Wim Taymans  <wim@fluendo.com>
9444         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_handle_message_func):
9445         Help the compiler a bit with type registration.
9446         Use existing forward cod path instead of duplicating it when 
9447         handling a message.
9448         
9449         * gst/gstbus.c: (gst_bus_get_type):
9450         * gst/gstcaps.c: (gst_caps_get_type), (gst_static_caps_get_type):
9451         * gst/gstchildproxy.c: (gst_child_proxy_get_type):
9452         * gst/gstclock.c: (gst_clock_get_type):
9453         * gst/gstelement.c: (gst_element_get_type),
9454         * gst/gstelementfactory.c: (gst_element_factory_get_type):
9455         * gst/gstindexfactory.c: (gst_index_factory_get_type):
9456         * gst/gstminiobject.c: (gst_mini_object_get_type):
9457         * gst/gstpad.c: (gst_pad_get_type):
9458         * gst/gstsegment.c: (gst_segment_get_type):
9459         * gst/gststructure.c: (gst_structure_get_type):
9460         * gst/gstsystemclock.c: (gst_system_clock_get_type):
9461         * gst/gsttask.c: (gst_task_get_type), (gst_task_join):
9462         * gst/gstvalue.c:
9463         Help compiler with type registration.
9465         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event):
9466         Small doc update.
9468 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
9470         * plugins/elements/gsttypefindelement.c:
9471         (gst_type_find_element_handle_event):
9472           When we get an EOS event and have not found a type yet
9473           (most likely because we had not yet accumulated
9474           TYPE_FIND_MIN_SIZE of data yet), try to determine the
9475           type given the data we have so far. Fixes typefinding
9476           for very short streams again, most notably quicktime
9477           redirections as used on Apple's trailer site (#331701).
9479 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
9481         * libs/gst/base/gsttypefindhelper.c: (type_find_factory_rank_cmp),
9482         (gst_type_find_helper):
9483           Try typefinding factories with the highest rank first.
9485 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
9487         * docs/libs/gstreamer-libs-docs.sgml:
9488         * docs/libs/gstreamer-libs-sections.txt:
9489         * libs/gst/base/gsttypefindhelper.c:
9490           Add section for typefind helper and add documentation
9491           for the old and the new function.
9493 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
9495         * libs/gst/base/gsttypefindhelper.c: (buf_helper_find_peek),
9496         (buf_helper_find_suggest), (type_find_factory_rank_cmp),
9497         (gst_type_find_helper_for_buffer):
9498         * libs/gst/base/gsttypefindhelper.h:
9499           New API: gst_type_find_helper_for_buffer() (#332723).
9500           
9501 2006-02-27  Michael Smith  <msmith@fluendo.com>
9503         Patch by: Loïc Minier
9505         * configure.ac:
9506         * docs/Makefile.am:
9507         * docs/slides/Makefile.am:
9508           prevent CVS directories getting disted.
9510 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
9512         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref):
9513           Use the REFCOUNTING category for caps refcounting.
9514           
9515 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
9517         * plugins/elements/gsttypefindelement.c: (stop_typefinding):
9518           This should be 0 not GST_CLOCK_TIME_NONE (see #331701).
9520 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
9522         * plugins/elements/gsttypefindelement.c:
9523         (gst_type_find_element_activate):
9524           Use gst_pad_check_pull_range() before _activate_pull()
9525           to avoid unnecessary open/close (see #331690).
9527 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
9529         * gst/gstutils.c:
9530           Docs enhancement: make it crystal clear what the
9531           gst_pad_add_*_probe() callbacks should look like.
9533 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
9535         * libs/gst/base/gstbasesrc.c:
9536           Document how applications can stop recording from
9537           live sources (see #330996).
9539 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9541         * tests/check/Makefile.am:
9542         * tests/check/libs/basesrc.c: (eos_event_counter),
9543         (basesrc_eos_events_pull), (basesrc_eos_events_push),
9544         (basesrc_eos_events_push_live_op), (basesrc_eos_events_pull_live_op),
9545         (gst_basesrc_suite), (main):
9546           ... and add some tests for the base source EOS stuff.
9548 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9550         * tests/check/gst/gstutils.c: (test_buffer_probe_n_times):
9551           Test case originally showed the problem fixed below,
9552           but was then amended. Add checks back at the place
9553           where they used to be.
9555 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9557         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
9558         (gst_base_src_init), (gst_base_src_loop),
9559         (gst_base_src_activate_push), (gst_base_src_activate_pull),
9560         (gst_base_src_change_state):
9561         * libs/gst/base/gstbasesrc.h:
9562           Don't unconditionally send EOS when going from PAUSED to
9563           READY state, esp. make sure we don't send two EOS events
9564           in some cases (e.g. one when reaching EOS and one when
9565           going from PAUSED to READY). Also, we don't want to send
9566           EOS events when operating in pull mode. However, we do
9567           want to send an EOS event when shutting down a live
9568           source explicitly, for example (fixes #330996).
9569           
9570 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9572         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
9573           Update src->read_position after a seek when not using mmap.
9574           Fixes #332277, patch by: Renchi Raju <renchi gmail com>
9576 2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
9578         * gst/Makefile.am:
9579         * gst/gstparse.h:
9580         * gst/gstutils.c:
9581         * gst/gstutils.h:
9582         Make things work with --disable-parse as they do with 
9583         --disable-load-save - the symbols involved disappear, but the
9584         header is still installed and GST_DISABLE_PARSE is included via
9585         gstconfig.h
9587 2006-02-20  Julien MOUTTE  <julien@moutte.net>
9589         * libs/gst/base/gstbasetransform.c:
9590         (gst_base_transform_change_state): Fix a stupid bug. I was 
9591         sure I compiled that.
9593 2006-02-20  Julien MOUTTE  <julien@moutte.net>
9595         * gst/gstpad.c: (gst_pad_set_blocked_async):
9596         * gst/gstutils.c: (gst_pad_add_data_probe),
9597         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
9598         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
9599         (gst_pad_remove_buffer_probe): Make those function act on the
9600         ghostpad target when it's a ghostpad. (Closes #331727)
9602 2006-02-20  Julien MOUTTE  <julien@moutte.net>
9604         * libs/gst/base/gstbasetransform.c:
9605         (gst_base_transform_change_state): Make basetransform reusable.
9606         (Closes #331898)
9608 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
9610         * docs/random/release:
9611         Move the current documentation of how to do a release to the top
9612         of the file.
9614         * gst/gstbin.c: (gst_bin_class_init),
9615         (gst_bin_handle_message_func):
9616         Allow multiple state-recalculation threads. (Closes #328873)
9618 2006-02-19  Julien MOUTTE  <julien@moutte.net>
9620         * gst/gstinfo.h: Add GST_STR_NULL to the second string.
9621         * gst/gstpad.c: (gst_pad_set_event_function),
9622         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
9623         (gst_pad_set_getcaps_function): GST_DEBUG_PAD_NAME evaluates to
9624         2 strings. You can't use the STR_NULL macro on that.
9626 2006-02-19  Sebastien Moutte <sebastien@moutte.net>
9628         * gst/gstpad.c: (gst_pad_set_event_function),
9629         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
9630         (gst_pad_set_getcaps_function)
9631         * gst/parse/grammar.y: (gst_parse_found_pad), (gst_parse_perform_delayed_link)
9632           Fixed NULL pointer used in GST_CAT_DEBUG using GST_STR_NULL macro
9633           So now, we can use --gst-debug-level=5 on Windows
9634         * win32/common/libgstcontroller.def:
9635           Added export of gst_controller_init
9636         * win32/vs6/libgstcontroller.dsp:
9637           Fixed Release post build configuration
9639 2006-02-17  Wim Taymans  <wim@fluendo.com>
9641         * tests/check/gst/gstquery.c: (GST_START_TEST):
9642         Added another check.
9644 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
9646         * plugins/elements/gsttypefindelement.c: (find_peek):
9647           We can do peeks at non-zero offsets, as long as they
9648           fall within the buffer we have.
9650 2006-02-15  Jan Schmidt  <thaytan@mad.scientist.com>
9652         * tests/check/Makefile.am:
9653         * tests/check/pipelines/parse-launch.c: (setup_pipeline),
9654         (expected_fail_pipe), (check_pipeline_runs), (GST_START_TEST),
9655         (parse_suite), (main):
9656           Add testsuite for parse launch syntax
9658 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
9660         * plugins/elements/gsttypefindelement.c:
9661         (gst_type_find_element_chain):
9662           When typefinding is unsuccessful in the chain function, don't
9663           error out immediately. Only error out with NO_CAPS_FOUND if
9664           the amount of data is at least MAX_TYPEFIND_SIZE bytes,
9665           otherwise simply wait for more data so we can try typefinding
9666           again with more data later. Also, don't attempt to typefind
9667           if we have less than MIN_TYPEFIND_SIZE data available. Overall,
9668           this should improve typefinding from network sources where the
9669           size of the first buffer can be somewhat random.
9671 2006-02-14  Wim Taymans  <wim@fluendo.com>
9673         * docs/gst/gstreamer-sections.txt:
9674         * gst/gstpadtemplate.c:
9675         * gst/gstpadtemplate.h:
9676         Fix padtemplate docs, fixes #328805.
9678 2006-02-14  Wim Taymans  <wim@fluendo.com>
9680         * tools/gst-launch.c: (main):
9681         NO_PREROLL is not an ERROR so don't send confusing messages
9682         to the user.
9684 2006-02-14  Wim Taymans  <wim@fluendo.com>
9686         Patch by: Torsten Schoenfeld
9688         * gst/gstregistry.c: (gst_registry_get_default),
9689         (_gst_registry_cleanup):
9690         Protect default registry with lock and ref/sink it.
9691         Fixes #324818
9693 2006-02-14  Wim Taymans  <wim@fluendo.com>
9695         * gst/gstbuffer.c:
9696         * gst/gstquery.c: (gst_query_list_add_format),
9697         (gst_query_set_formatsv), (gst_query_parse_formats_length),
9698         (gst_query_parse_formats_nth):
9699         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
9700         Docs fixes.
9702 2006-02-14  Wim Taymans  <wim@fluendo.com>
9704         * docs/gst/gstreamer-sections.txt:
9705         Reworked query docs.
9707         * gst/gstquery.c: (gst_query_new_formats),
9708         (gst_query_list_add_format), (gst_query_set_formats),
9709         (gst_query_set_formatsv), (gst_query_parse_formats_length),
9710         (gst_query_parse_formats_nth):
9711         * gst/gstquery.h:
9712         Flesh out formats query, added some new methods.
9713         Fix part of #324398.
9715         * tests/check/gst/gstquery.c: (GST_START_TEST), (gstquery_suite):
9716         Added query creation tests.
9718 2006-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
9720         * gst/gstpad.c: (fixate_value):
9721         Add a default fixation for fraction lists.
9723 2006-02-13  Wim Taymans  <wim@fluendo.com>
9725         * gst/gsttask.c: (gst_task_init), (gst_task_func),
9726         (gst_task_set_lock), (gst_task_start), (gst_task_pause),
9727         (gst_task_join):
9728         * gst/gsttask.h:
9729         Detect and warn for obvious deadlocks. fixes #320340
9730         Fix error case where lock was not released.
9732         * tests/check/Makefile.am:
9733         * tests/check/gst/gsttask.c: (task_func2), (GST_START_TEST),
9734         (task_func), (gst_element_suite), (main):
9735         Add task check.
9737 2006-02-13  Wim Taymans  <wim@fluendo.com>
9739         * docs/gst/gstreamer-sections.txt:
9740         * gst/gstbus.c:
9741         Add new functions to docs.
9743 2006-02-13  Wim Taymans  <wim@fluendo.com>
9745         * docs/design/part-TODO.txt:
9746         Updated TODO list, basesrc supports seeking to non-bytes
9747         formats.
9749         * docs/design/part-element-sink.txt:
9750         Update docs.
9752         * gst/gstbin.c: (bin_replace_message),
9753         (gst_bin_handle_message_func):
9754         * gst/gstbus.c: (gst_bus_post), (gst_bus_pop):
9755         * gst/gstevent.c: (gst_event_finalize):
9756         * gst/gstpad.c: (gst_pad_event_default_dispatch),
9757         (gst_pad_send_event):
9758         Use shiny new _TYPE_NAME macros.
9760         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
9761         Move debug statement up.
9763         * gst/gstelement.c: (gst_element_set_locked_state):
9764         Add some debugging.
9766 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
9768         * docs/gst/gstreamer-sections.txt:
9769         * gst/gstmessage.h:
9770         * gst/gstquery.h:
9771           New API: add GST_MESSAGE_TYPE_NAME and GST_QUERY_TYPE_NAME
9772           macros (#330906). Also, document the already existing
9773           GST_QUERY_TYPE macro.
9775 2006-02-13  Wim Taymans  <wim@fluendo.com>
9777         * tests/check/gst/gstutils.c: (data_probe), (buffer_probe),
9778         (event_probe), (GST_START_TEST):
9779         Only events up to the pipeline EOS are counted, there are
9780         some more when going to NULL currently which we don't care
9781         about for now.
9783 2006-02-13  Wim Taymans  <wim@fluendo.com>
9785         * gst/gstpad.c: (gst_pad_send_event):
9786         Correctly check flushing and emit probes. fixes #330125
9788 2006-02-10  Andy Wingo  <wingo@pobox.com>
9790         * gst/gstbus.c (gst_bus_class_init): Declare our private data
9791         structure.
9792         (gst_bus_init): Cache the location of the private data in the
9793         instance structure.
9794         (gst_bus_enable_sync_message_emission) 
9795         (gst_bus_disable_sync_message_emission): Implement new public
9796         functions.
9797         (gst_bus_post): Emit the sync-message signal if the user asked for
9798         it. Fixes #330684.
9800         * gst/gstbus.h (GstBus): Use a padding pointer to cache the
9801         location of the bus-private structure.
9802         (gst_bus_enable_sync_message_emission)
9803         (gst_bus_disable_sync_message_emission): API addition
9805 2006-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
9807         Patch by: Vincent Torri
9809         * docs/pwg/building-boiler.xml:
9810         PWG patch from #326800
9812 2006-02-09  Tim-Philipp Müller  <tim at centricular dot net>
9814         * configure.ac:
9815         * docs/Makefile.am:
9816         * docs/design/Makefile.am:
9817           Dist design docs.
9819 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
9821         * configure.ac:
9822           back to CVS
9824 === release 0.10.3 ===
9826 2006-02-08  Jan Schmidt <thaytan@mad.scientist.com>
9828         * configure.ac:
9829           releasing 0.10.3, "Like a virgin"
9831 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
9833         * configure.ac:
9834           2nd prerelease of 0.10.3
9835           Bump libtool versioning.
9837 2006-02-07  Andy Wingo  <wingo@pobox.com>
9839         * libs/gst/base/gstcollectpads.c (gst_collect_pads_chain): Only
9840         update last_stop if we're in TIME format and the timestamp is
9841         valid.
9843         * libs/gst/base/gstcollectpads.c (gst_collect_pads_event) 
9844         * libs/gst/base/gstbasetransform.c (gst_base_transform_eventfunc): 
9845         * libs/gst/base/gstbasesink.c (gst_base_sink_configure_segment):
9846         If we get a new newsegment with a different format, adapt
9847         accordingly.
9849         * gst/gstclock.c (gst_clock_set_calibration): Accept a numerator
9850         of 0. Not a problem, really.
9852         * libs/gst/base/gstbasesink.c (gst_base_sink_chain_unlocked): Only
9853         warn if sync=true.
9855 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
9857         * configure.ac:
9858           Prelease of 0.10.3
9860 2006-02-06  Sebastien Moutte  <sebastien@moutte.net>
9862         * win32/vs7:
9863           project files updated to the default vs7 configuration
9864         * win32/common/libgstbase.def:
9865         * win32/common/libgstreamer.def:
9866           added new symbols,
9867           removed empty lines,
9868           sorted all exported symbols alphabetically
9869         * win32/common/dirent.c:
9870         * win32/common/dirent.h:
9871         * win32/common/gchar.h:
9872           use windows line end.
9873           
9874 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9876         * libs/gst/base/gstbasesrc.c: (gst_base_src_change_state):
9877           Send EOS event when stopping.
9879 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
9881         * docs/README:
9882           Tell folks what to do if the plugin-foobar.xml file
9883           hasn't been generated for a newly-added plugin.
9885 2006-02-05  Julien MOUTTE  <julien@moutte.net>
9887         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
9888         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
9889         (gst_collect_pads_start), (gst_collect_pads_stop),
9890         (gst_collect_pads_event): Collectpads now holds a reference
9891         to the GstPad that was added. Indeed we don't want to look
9892         at pads that might just go away with no warning...
9894 2006-02-05  Julien MOUTTE  <julien@moutte.net>
9896         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
9897         (gst_collect_pads_start), (gst_collect_pads_stop),
9898         (gst_collect_pads_event), (gst_collect_pads_chain):
9899         * libs/gst/base/gstcollectpads.h: Handle flush. Adapted from
9900         Mark Nauwelaerts's patch on bug #328491.
9902 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
9904         * tests/check/gst/gstutils.c: (test_parse_bin_from_description),
9905         (gst_utils_suite):
9906           Add some simple tests for gst_parse_bin_from_description() and
9907           gst_bin_find_unconnected_pad() (#329069).
9909 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
9911         * tools/gst-launch.c: (event_loop), (main):
9912           Catch errors during preroll (#320084).
9914 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
9916         * plugins/elements/gsttypefindelement.c:
9917         (gst_type_find_element_activate):
9918           Post TYPE_NOT_FOUND error message when typefinding
9919           is unsuccessful in the activate function as well.
9921 2006-02-02  Wim Taymans  <wim@fluendo.com>
9923         * docs/design/part-element-sink.txt:
9924         Updated doc.
9926 2006-02-02  Wim Taymans  <wim@fluendo.com>
9928         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync),
9929         (gst_base_sink_render_object),
9930         (gst_base_sink_queue_object_unlocked):
9931         Only keep track of prerollable items when we are 
9932         prerolling.
9933         Before rendering after preroll, always check if we
9934         have queued items.
9935         Added some more debugging.
9937 2006-02-02  Wim Taymans  <wim@fluendo.com>
9939         * gst/gstelement.c: (gst_element_continue_state),
9940         (gst_element_set_state_func), (gst_element_change_state):
9941         Fixed #326576, been running this for quite some time with
9942         no regressions at all.
9944 2006-02-02  Wim Taymans  <wim@fluendo.com>
9946         * common/gst.supp:
9947         Added more suppressions
9949 2006-02-02  Wim Taymans  <wim@fluendo.com>
9951         * docs/design/part-element-sink.txt:
9952         Updated document.
9954         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
9955         (gst_base_sink_finalize), (gst_base_sink_preroll_queue_flush),
9956         (gst_base_sink_configure_segment), (gst_base_sink_commit_state),
9957         (gst_base_sink_get_sync_times), (gst_base_sink_wait_clock),
9958         (gst_base_sink_do_sync), (gst_base_sink_render_object),
9959         (gst_base_sink_preroll_object),
9960         (gst_base_sink_queue_object_unlocked),
9961         (gst_base_sink_queue_object), (gst_base_sink_event),
9962         (gst_base_sink_chain_unlocked), (gst_base_sink_chain),
9963         (gst_base_sink_loop), (gst_base_sink_activate_pull),
9964         (gst_base_sink_get_position), (gst_base_sink_change_state):
9965         * libs/gst/base/gstbasesink.h:
9966         Totally refactored matching the design doc.
9967         Use two segments, one to clip incomming buffers and another to
9968         perform sync.
9969         Handle queueing correctly, bypass the queue when playing.
9970         Make EOS cancelable.
9971         Handle errors correctly when operating in pull based mode.
9973         * tests/check/elements/fakesink.c: (GST_START_TEST),
9974         (fakesink_suite):
9975         Added new check for sinks.
9977 2006-02-02  Wim Taymans  <wim@fluendo.com>
9979         * gst/gstsegment.c: (gst_segment_clip):
9980         No reason to refuse to clip when start == -1
9982 2006-02-02  Stefan Kost  <ensonic@users.sf.net>
9984         * docs/README:
9985         * docs/manual/intro-basics.xml:
9986         * docs/manual/intro-preface.xml:
9987         * docs/manual/manual.xml:
9988         * docs/pwg/advanced-dparams.xml:
9989         * docs/pwg/intro-basics.xml:
9990         * docs/pwg/intro-preface.xml:
9991         * docs/pwg/pwg.xml:
9992           describe dparams (controller) for plugins
9993           unify docs a little more
9995 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
9997         * docs/gst/gstreamer-sections.txt:
9998         * gst/gstutils.c: (element_find_unconnected_pad),
9999         (gst_bin_find_unconnected_pad), (gst_parse_bin_from_description):
10000         * gst/gstutils.h:
10001           Add new API: gst_parse_bin_from_description() and
10002           gst_bin_find_unconnected_pad() (#329069).
10004 2006-02-01  Stefan Kost  <ensonic@users.sf.net>
10006         * docs/manual/README:
10007           uncover a nasty detail of the docs build
10009 2006-01-31  Wim Taymans  <wim@fluendo.com>
10011         * gst/gstbin.c: (bin_remove_messages), (bin_query_duration_done):
10012         Don't cache duration messages if we're not going to use or
10013         free them.
10015 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
10017         * docs/manual/advanced-dparams.xml:
10018         * docs/pwg/advanced-dparams.xml:
10019           more dparam docs
10020         * gst/gstindex.c:
10021           fix docs
10022         * libs/gst/controller/lib.c: (gst_controller_init):
10023           init just once
10025 2006-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
10027         * gst/gstelement.c: (gst_element_message_full):
10028           also show file/line/func if no additional debug was given
10030 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
10031         
10032         * win32/vs7/grammar.vcproj:
10033           activate copy of autogenerated files for Release mode
10035 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
10036         
10037         * win32/common/libgstreamer.def:
10038           export gst_value_compare
10040 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
10042         * plugins/elements/Makefile.am:
10043         * plugins/elements/gstelements.c:
10044         * plugins/elements/gstfdsink.c: (_do_init),
10045         (gst_fd_sink_base_init), (gst_fd_sink_class_init),
10046         (gst_fd_sink_init), (gst_fd_sink_dispose), (gst_fd_sink_query),
10047         (gst_fd_sink_render), (gst_fd_sink_check_fd), (gst_fd_sink_start),
10048         (gst_fd_sink_stop), (gst_fd_sink_unlock), (gst_fd_sink_update_fd),
10049         (gst_fd_sink_set_property), (gst_fd_sink_uri_get_type),
10050         (gst_fd_sink_uri_get_protocols), (gst_fd_sink_uri_get_uri),
10051         (gst_fd_sink_uri_set_uri), (gst_fd_sink_uri_handler_init):
10052         * plugins/elements/gstfdsink.h:
10053         Port fdsink to 0.10 (patch by Philippe Rouquier) (Fixes #325490)
10055 2006-01-30  Stefan Kost  <ensonic@users.sf.net>
10057         * docs/manual/advanced-dparams.xml:
10058           describe controller
10059         * docs/manual/advanced-position.xml:
10060         * docs/manual/basics-init.xml:
10061         * docs/manual/manual.xml:
10062         * docs/manual/titlepage.xml:
10063         * docs/pwg/pwg.xml:
10064         * docs/pwg/titlepage.xml:
10065           cleanup xml (more to come)
10066         * libs/gst/controller/gstcontroller.c:
10067           fix typo
10069 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
10070         
10071         * win32/vs6/grammar.dsp:
10072           add autogen of gstmarshal.c,h for Release mode
10073                 
10074 2006-01-30  Wim Taymans  <wim@fluendo.com>
10076         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
10077         (gst_base_sink_preroll_queue_empty), (gst_base_sink_commit_state),
10078         (gst_base_sink_handle_object), (gst_base_sink_event),
10079         (gst_base_sink_is_prerolled), (gst_base_sink_wait),
10080         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
10081         (gst_base_sink_handle_buffer), (gst_base_sink_set_flushing),
10082         (gst_base_sink_deactivate), (gst_base_sink_activate),
10083         (gst_base_sink_activate_pull), (gst_base_sink_get_position),
10084         (gst_base_sink_query), (gst_base_sink_change_state):
10085         Basesink cleanups, remove some old code.
10086         Handle the case where a subclass can preroll in the render
10087         method (mostly audiosinks).
10088         Handle more events.
10089         Remove some locks around variables that are now protected
10090         with the PREROLL_LOCK (clock_id, flushing, ..).
10091         Optimize position query some more, do correct locking.
10092         Remove old code to push queue in state change, this is not
10093         needed anymore since preroll blocks on all prerollable items 
10094         now.
10095         Almost implemented as described in design doc.
10097 2006-01-30  Wim Taymans  <wim@fluendo.com>
10099         * tests/check/gst/gstbin.c: (GST_START_TEST):
10100         Wait for refcount to settle down before checking.
10102 2006-01-30  Wim Taymans  <wim@fluendo.com>
10104         * docs/design/part-element-sink.txt:
10105         Pseudo code overview of desired sink behaviour regarding
10106         preroll.
10108 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
10109         * win32/vs6/grammar.dsp:
10110           fix some bugs in Release mode for autogenerated files
10111                 
10112 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
10113         * win32/common/libgstbase.def:
10114         * win32/common/libgstreamer.def:
10115           export some new symbols: gst_base_src_set_format,
10116           gst_iterator_next, gst_structure_set_valist
10118 2006-01-29  Julien MOUTTE  <julien@moutte.net>
10120         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked):
10121         Set pad functions unconditionally. Fixes #329105.
10123 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
10124         * win32/vs8:
10125           add vs8 project files created by Sergey Scobich
10127 2006-01-28  Jan Schmidt  <thaytan@mad.scientist.com>
10129         * gst/gstutils.c: (gst_element_unlink_pads):
10130         Don't leak pad references.
10132         * tests/check/elements/fakesink.c: (GST_START_TEST):
10133         * tests/check/generic/sinks.c: (GST_START_TEST):
10134         * tests/check/generic/states.c: (GST_START_TEST):
10135         * tests/check/gst/gstbin.c: (GST_START_TEST):
10136         * tests/check/gst/gstcaps.c: (GST_START_TEST):
10137         * tests/check/gst/gstelement.c: (GST_START_TEST):
10138         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
10139         * tests/check/gst/gstiterator.c: (GST_START_TEST):
10140         * tests/check/gst/gstvalue.c: (GST_START_TEST):
10141         Fix a bunch of leaks. Make generic/sinks.c
10142         use a bit less cpu by slowing the buffer rate
10143         between fakesrc and fakesink.
10144         
10145 2006-01-27  Stefan Kost  <ensonic@users.sf.net>
10146         * gst/gstcaps.c:
10147         * gst/gstelement.c: (gst_element_send_event):
10148         * gst/gstevent.c:
10149         * gst/gstinfo.c:
10150         * gst/gstiterator.c:
10151         * gst/gstiterator.h:
10152         * gst/gstpad.c: (gst_pad_send_event):
10153         * gst/gststructure.c:
10154         * gst/gsturi.c:
10155         * gst/gstutils.c:
10156         * gst/gstvalue.c:
10157         * libs/gst/base/gstadapter.c:
10158           doc fixes, to link to function, just write gst_cool_function(), don't
10159           prefix with '#'
10161 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
10163         * plugins/elements/gsttee.c: (gst_tee_do_push),
10164         (gst_tee_handle_buffer):
10165         Always prefer an actual return value from a src
10166         pad in place of NOT_LINKED. This means we return
10167         WRONG_STATE when all src pads are WRONG_STATE
10168         instead of NOT_LINKED.
10170         Lock when replacing the last message to prevent
10171         racing with the get_property method.
10173         Add debug output
10175 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
10177         * tests/check/Makefile.am:
10178         * tests/check/gst/gstquery.c: (GST_START_TEST), (gstquery_suite),
10179         (main):
10180         Add a very simple check that should have caught the memleak I fixed
10181         last night (if not for the slice allocator hiding it)
10183 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
10185         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
10186         (gst_bin_remove_func), (gst_bin_handle_message_func),
10187         (bin_query_duration_fold), (bin_query_generic_fold):
10188         Clean up references to the clock provider when disposed or when
10189         handling a clock-lost message from it.
10191         Unref sinks when performing a query via gst_iterator_fold, as the
10192         gst_bin_iterate_sinks iterator refs each item. (Fixes #323874)
10194         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_dispose),
10195         (gst_clock_set_master):
10196         Drop our reference to the master clock, if any, when we are disposed.
10198         * gst/gsttypefindfactory.c: (gst_type_find_factory_dispose):
10199         Chain up in dispose. 
10201 2006-01-26  Wim Taymans  <wim@fluendo.com>
10203         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
10204         Add some debugging.
10206 2006-01-26  Julien MOUTTE  <julien@moutte.net>
10208         * plugins/elements/gsttee.c: (gst_tee_do_push),
10209         (gst_tee_handle_buffer): Apply patch from #328715. Tee now
10210         handles pad being NOT_LINKED or in WRONG_STATE.
10212 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
10214         * win32/MANIFEST:
10215           more updating
10217 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
10219         * win32/MANIFEST:
10220           remove obsolete entry
10222 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
10224         * docs/gst/gstreamer-sections.txt:
10225         * gst/gstbin.c: (bin_element_is_src), (src_iterator_filter),
10226         (gst_bin_iterate_sources), (gst_bin_send_event):
10227         * gst/gstbin.h:
10228         * gst/gstelement.c: (gst_element_send_event):
10229         * gst/gstevent.c:
10230         * gst/gstpad.c: (gst_pad_send_event):
10231           added code for downstream events, reviewed docs in gstevent.c
10233 2006-01-25  Julien MOUTTE  <julien@moutte.net>
10235         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
10236         We only query position using the clock in the playing state.
10237         Query peer in the other cases.
10238         * win32/common/config.h: Updates.
10240 2006-01-24  Wim Taymans  <wim@fluendo.com>
10242         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
10243         A clock entry that is scheduled for the exact time of the
10244         clock is still in time.
10246         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
10247         (gst_base_sink_do_sync):
10248         Add some more debug info.
10250 2006-01-23  Sebastien Moutte  <sebastien@moutte.net>
10252         * win32/vs7:
10253           Add new vs7 project files and solution.
10255 2006-01-23  Sebastien Moutte  <sebastien@moutte.net>
10257         * win32/vs7:
10258           all files removed as they were out-dated.
10260 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10262         * docs/random/release:
10263           update notes
10264         * gst/gstbin.c: (gst_bin_init):
10265         * gst/gstbus.c: (gst_bus_new):
10266         * gst/gstbus.h:
10267         * gst/gstpipeline.c: (gst_pipeline_init):
10268           use gst_bus_new(), improve logging, fix docs
10269         * win32/common/config.h:
10270           update for cvs build
10272 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10274         * autogen.sh:
10275           up required version of automake to 1.7
10277 2006-01-20  Sebastien Moutte  <sebastien@moutte.net>
10279         * win32/common/libgstreamer.def:
10280           export gst_buffer_is_metadata_writable
10282 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
10284         * docs/gst/gstreamer-sections.txt:
10285         * gst/gstevent.h:
10286           Add gst_event_replace() (#327001)
10288 2006-01-20  Wim Taymans  <wim@fluendo.com>
10290         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked):
10291         Make it actually compile too..
10293 2006-01-20  Wim Taymans  <wim@fluendo.com>
10295         * gst/gstcaps.c:
10296         Clarify behaviour of _is_equal() when passing NULL parameters.
10298         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
10299         (gst_pad_set_caps):
10300         Cleanups. Don't unref NULL caps.
10301         When setting the same caps, protect caps of the pad with
10302         proper lock.
10303         Use full functionality of _is_equal() when comparing caps.
10305 2006-01-20  Jan Schmidt  <thaytan@mad.scientist.com>
10307         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_is_collected):
10308         Don't loop infinitely if there are no buffers to present. Partially
10309         fixes #327197, but collectpads is just broken for reusing elements
10310         to do multiple encodes atm.
10312 2006-01-20  Jan Schmidt  <thaytan@mad.scientist.com>
10314         * tools/gst-inspect.c: (print_element_features):
10315         * tools/gst-xmlinspect.c: (main):
10316         URL_HANDLER is not a plugin feature we can search for in
10317         the registry.
10319 2006-01-19  Edward Hervey  <edward@fluendo.com>
10321         * gst/gstelement.c: (gst_element_pads_activate): 
10322         When activating, do src pads first, then sink pads.
10323         When de-activating, do sink pads first, then src pads.
10325 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
10327         * docs/gst/gstreamer-sections.txt:
10328         Add gst_index_add_associationv to the docs
10330 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
10332         * gst/gstevent.c:
10333           Fix docs typo
10335         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event),
10336         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop):
10337           Do some refactoring. Doesn't actually change functionality,
10338           but makes landing the DRAIN event easier later.
10340 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
10342         * docs/pwg/advanced-scheduling.xml:
10343           Update from 0.9.x to 0.10 API and make example a bit
10344           clearer.
10346 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
10348         * docs/gst/gstreamer-sections.txt:
10349         Add gst_buffer_(is|make)_metadata_writable methods.
10351 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
10353         * docs/design/part-sparsestreams.txt:
10354         Update sparse streams doc, hopefully for greater clarity
10356 2006-01-18  Jan Schmidt  <thaytan@mad.scientist.com>
10358         * docs/design/part-events.txt:
10359         Remove mention of FILLER events.
10360         Add DRAIN event.
10362         * docs/design/part-sparsestreams.txt:
10363         Write some things about using NEWSEGMENT to keep sparse streams
10364         flowing.
10366 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
10368         * gst/gstbin.c: (gst_bin_dispose):
10369           Guard gst_object_unref call against a NULL object (dispose
10370           can theoretically be called multiple times).
10371           
10372 2006-01-18  Wim Taymans  <wim@fluendo.com>
10374         * gst/gstbin.c: (gst_bin_element_set_state):
10375         * gst/gstclock.c: (gst_clock_id_wait):
10376         Added some more debug info.
10378         * libs/gst/base/gstadapter.c:
10379         Added more docs.
10381         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
10382         (gst_base_sink_do_sync), (gst_base_sink_chain):
10383         Added some comments.
10385 2006-01-18  Wim Taymans  <wim@fluendo.com>
10387         * tests/check/Makefile.am:
10388         * tests/check/elements/fakesink.c: (chain_async_buffer),
10389         (chain_async), (chain_async_return), (GST_START_TEST),
10390         (fakesink_suite), (main):
10391         Added fakesink test that checks prerolling and clipping
10392         behaviour.
10394         * tests/check/gst/gstutils.c: (GST_START_TEST):
10395         Make check run faster so that buildbots don't timeout.
10397 2006-01-18  Wim Taymans  <wim@fluendo.com>
10399         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
10400         (gst_base_sink_do_sync):
10401         Some cleanups.
10402         When the sink finishes blocking on the preroll buffer, it can
10403         immediatly render it instead of rendering when the next buffer
10404         arrives.
10406 2006-01-18  Wim Taymans  <wim@fluendo.com>
10408         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_property),
10409         (gst_base_sink_get_property), (gst_base_sink_do_sync),
10410         (gst_base_sink_chain):
10411         Small cleanups.
10412         GST_ELEMENT_CLOCK and sync are protected with LOCK.
10413         Don't store _last_stop if the buffer is dropped.
10415 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
10417         * plugins/elements/gsttypefindelement.c:
10418         (gst_type_find_element_class_init):
10419           'have-type' signal needs to be G_SIGNAL_RUN_FIRST, as it is the
10420           object method handler that sets the caps on the pad and we want
10421           that to happen before we emit the signal (fixes e.g. feeding a
10422           plain text file to decodebin).
10424 2006-01-18  Christian Schaller  <Christian@fluendo.com>
10426         * gst/gstplugin.c: Add MPL and Proprietary as license options
10428 2006-01-18  Andy Wingo  <wingo@pobox.com>
10430         * gst/gstindex.h (gst_index_add_associationv): Add to header. The
10431         symbol was exported before, it appears this was just an oversight.
10432         Fixes #168703.
10433         Patch by: Torsten Schoenfeld <kaffeetisch at gmx.de>
10435         * gst/gstindex.c (gst_index_add_associationv): Changed int in
10436         prototype to gint. OK since this prototype was not in the header.
10438 2006-01-17  Andy Wingo  <wingo@pobox.com>
10440         * gst/gstregistry.c (_gst_registry_remove_cache_plugins): Lock the
10441         registry while we remove plugins.
10443         * tools/gst-inspect.c (print_element_info): Don't unref the
10444         factory arg, that should be the responsibility of whatever code
10445         received the ref. Fixes a double-free when called from
10446         print_element_list via gst-inspect-0.10 -a. Fixes #327324.
10447         (main): Unref the factory if we have one.
10448         (print_element_list): No change -- relies on the
10449         plugin_feature_list_free to free the list of features.
10451 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
10453         * gst/gstbuffer.c: (gst_buffer_is_metadata_writable),
10454         (gst_buffer_make_metadata_writable):
10455         * gst/gstbuffer.h:
10456         * libs/gst/base/gstbasetransform.c:
10457         (gst_base_transform_prepare_output_buf):
10458         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
10459         * tests/check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
10460           Replace gst_buffer_(make|is)_metadata_writable patch now
10461           that the release is out.
10463 2006-01-17  Andy Wingo  <wingo@pobox.com>
10465         * gst/gstregistry.c: Reflow design comment. Update so as to speak
10466         in the present tense without reference to versions.
10468         * gst/gstregistry.c (gst_registry_add_plugin)
10469         (gst_registry_remove_plugin, gst_registry_remove_feature)
10470         (gst_registry_find_feature, gst_registry_get_feature_list)
10471         (gst_registry_get_plugin_list, gst_registry_lookup_feature)
10472         (gst_registry_lookup, gst_registry_scan_path)
10473         (_gst_registry_remove_cache_plugins)
10474         (gst_registry_get_feature_list_by_plugin): Add argument
10475         validation.
10477 === release 0.10.2 ===
10479 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
10481         * configure.ac:
10482           releasing 0.10.2, "If man is five"
10484 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
10486         * gst/gstbuffer.c:
10487         * gst/gstbuffer.h:
10488         * libs/gst/base/gstbasetransform.c:
10489         (gst_base_transform_prepare_output_buf):
10490         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
10491         * tests/check/gst/gstbuffer.c: (gst_test_suite):
10492           Back out patch until after the release.
10494 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
10496         * gst/gstminiobject.c:
10497           Spelling fix in docs.
10498         * ChangeLog - remove conflict indicator
10500 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
10502         Reviewed By: Andy Wingo
10504         * gst/gstbuffer.c: (gst_buffer_is_metadata_writable),
10505         (gst_buffer_make_metadata_writable):
10506         * gst/gstbuffer.h:
10507           Add gst_buffer_(is|make)_metadata_writable as analogues of
10508           gst_buffer_(is|make)_writable.
10510         * libs/gst/base/gstbasetransform.c:
10511         (gst_base_transform_prepare_output_buf):
10512         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
10513           Use name gst_buffer_(is|make)_metadata_writable functions.
10515         * tests/check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
10516           Test gst_buffer_(is|make)_metadata_writable
10517         
10518           (Closes: #324162)
10520 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
10522         * docs/manual/Makefile.am:
10523           don't do parallel make
10524         * configure.ac:
10525           AC_SUBST HOST_CPU
10526         * win32/common/config.h.in:
10527           add generations for HOST_CPU and GST_MAJORMINOR
10528         * win32/common/config.h:
10529           commit generated result
10531 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
10533         * docs/manual/appendix-integration.xml:
10534           Update GNOME integration section to use gst_init_get_option_group()
10535           instead of the old popt stuff (#322911). Also, GNOME applications
10536           should  now use gconf*sink and gconf*src instead of the old gconf
10537           helper lib we had.
10539 2006-01-13  Stefan Kost  <ensonic@users.sf.net>
10542         * docs/gst/gstreamer-docs.sgml:
10543         * docs/gst/gstreamer-sections.txt:
10544         * docs/libs/gstreamer-libs-sections.txt:
10545           add new API entries to the docs
10546         * libs/gst/controller/Makefile.am:
10547         * libs/gst/controller/gstcontroller.c:
10548         * libs/gst/controller/gstcontroller.h:
10549         * libs/gst/controller/gstcontrollerprivate.h:
10550         * libs/gst/controller/gsthelper.c:
10551         * libs/gst/controller/gstinterpolation.c:
10552           move private structs to private header
10553         * po/README:
10554           gstreamer-0.7 -> gstreamer-0.10
10555         * tests/check/libs/struct_i386.h:
10556           remove private structs
10558 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10560         * plugins/indexers/Makefile.am:
10561           Fixes as part of #317048
10563 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10565         * plugins/indexers/Makefile.am:
10566           fix #316086 - compilation when mmap is missing
10568 2006-01-12  Sebastien Moutte  <sebastien@moutte.net>
10570         * libs/gst/base/gstbasesink.c:
10571           *cur = (now - base) * basesink->segment.abs_rate + time; replaced by 
10572           *cur = gst_guint64_to_gdouble(now - base) * basesink->segment.abs_rate + time; for vs6
10573         * win32/common/config.h:
10574           added some defines GST_MAJORMINOR and HOST_CPU
10575         * win32/common/libgstbase.def:
10576         * win32/common/libgstreamer.def:
10577           added some exported functions.
10579 2006-01-12  Stefan Kost  <ensonic@users.sf.net>
10581         * libs/gst/controller/gstcontroller.c:
10582         (gst_controlled_property_set_interpolation_mode),
10583         (gst_controlled_property_new):
10584         * libs/gst/controller/gstcontroller.h:
10585         * libs/gst/controller/gstinterpolation.c:
10586         (interpolate_none_get_string_value_array):
10587           make G_TYPE_STRING controlable
10589 2006-01-12  Stefan Kost  <ensonic@users.sf.net>
10591         * tools/README:
10592         * tools/gst-feedback.1.in:
10593         * tools/gst-inspect.1.in:
10594         * tools/gst-launch.1.in:
10595         * tools/gst-md5sum.1.in:
10596         * tools/gst-typefind.1.in:
10597         * tools/gst-xmlinspect.1.in:
10598         * tools/gst-xmllaunch.1.in:
10599           cleanup man-pages, remove reference to gst-register, document env-vars
10601 2006-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
10603         * gst/gstbuffer.c: (gst_buffer_span):
10604           gst_buffer_span should copy the timestamp of the first buffer
10605           if they were both originally overlapping subbuffers of the 
10606           same parent, using the same logic as the 'slow copy' case.
10608 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
10610         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_pop):
10611           Need to awaken ALL the pads when we pop a buffer, otherwise
10612           collectpads only works when there is 2 input streams.
10614 2006-01-11  Stefan Kost  <ensonic@users.sf.net>
10616         * docs/random/ensonic/media-device-daemon.txt:
10617           more ideas (dbus)
10618         * gst/gstbuffer.c:
10619           fix doc example, add clarification
10620         * tools/gst-launch.1.in:
10621           add initial info about GST_PLUGIN_PATH, needs more work
10623 2006-01-11  Tim-Philipp Müller  <tim at centricular dot net>
10625         * docs/manual/basics-bins.xml:
10626         * docs/manual/basics-elements.xml:
10627         * docs/manual/intro-basics.xml:
10628           Some more minor docs additions and updates.
10630 2006-01-11  Wim Taymans  <wim@fluendo.com>
10632         * docs/manual/basics-bins.xml:
10633         * docs/manual/basics-elements.xml:
10634         Some small fixes as pointed out by Ser-ver on IRC.
10636 2006-01-10  Edward Hervey  <edward@fluendo.com>
10638         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
10639         Set the buffer offset/offset_end to GST_CLOCK_TIME_NONE when using
10640         the single-segment mode.
10642 2006-01-10  Brian Cameron  <brian dot cameron at sun dot com>
10644         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
10646         * libs/gst/base/gstbasesrc.c: (gst_base_src_init),
10647         (gst_base_src_perform_seek), (gst_base_src_send_event),
10648         (gst_base_src_set_property), (gst_base_src_get_property),
10649         (gst_base_src_loop), (gst_base_src_start),
10650         (gst_base_src_activate_push):
10651         * libs/gst/base/gstbasesrc.h:
10652           Name (private) union; makes Sun's Forte compiler happy (#324900).
10654 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
10656         * README:
10657           gst-register is gone.
10659 2006-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
10661         * gst/gstvalue.c: (_gst_value_initialize):
10662           make the G_TYPE_DATE instantiation work if debug is disabled
10664 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
10666         * gst/gstmessage.c: (gst_message_parse_tag),
10667         (gst_message_parse_error), (gst_message_parse_warning):
10668           Don't crash when return location for error/warning debug
10669           string is NULL; add fact that return locations can be
10670           NULL to docs where appropriate.
10672 2006-01-05  Wim Taymans  <wim@fluendo.com>
10674         * gst/gstplugin.c: (gst_plugin_load_file):
10675         Replace strdup by g_strdup.
10677 2006-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10679         * docs/pwg/advanced-types.xml:
10680           fix doc borkage
10682 2006-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
10684         submitted by: Abel Cheung
10686         * po/LINGUAS:
10687         * po/zh_TW.po:
10688           Added Chinese (traditional) translation
10690 2006-01-04  Wim Taymans  <wim@fluendo.com>
10692         * docs/manual/basics-pads.xml:
10693         * docs/plugins/Makefile.am:
10694         * docs/plugins/gstreamer-plugins-docs.sgml:
10695         * docs/plugins/gstreamer-plugins-sections.txt:
10696         * docs/pwg/advanced-clock.xml:
10697         * docs/pwg/advanced-scheduling.xml:
10698         * docs/pwg/advanced-types.xml:
10699         * plugins/elements/gstfdsink.c:
10700         * plugins/elements/gstfdsrc.c:
10701         * plugins/elements/gstfdsrc.h:
10702         * plugins/elements/gstidentity.c: (gst_identity_class_init):
10703         * plugins/elements/gstidentity.h:
10704         * plugins/elements/gstqueue.h:
10705         * plugins/elements/gsttee.c:
10706         * plugins/elements/gsttee.h:
10707         * plugins/elements/gsttypefindelement.c:
10708         (gst_type_find_element_class_init):
10709         * plugins/elements/gsttypefindelement.h:
10710         Small updates to various docs.
10711         Added core plugins to docs.
10713 2006-01-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
10715         * common/gst.supp:
10716           add a suppression for liboil's uninitialized variable
10718 2006-01-02  James Livingston  <jrl at ids dot org dot au>
10720         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
10722         * gst/gstutils.h:
10723           Add prototype for _get_type() function to GST_BOILERPLATE_FULL
10724           macro, so that gcc doesn't complain if the -Wmissing-prototypes
10725           compiler switch is being used (#325429).
10727 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
10729         * gst/gstbin.c: (gst_bin_query):
10730           Disable duration query caching in bins until it gets
10731           fixed (see #324807).
10733 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
10735         * tools/gst-inspect.c: (print_element_properties_info):
10736           Handle properties of POINTER and BOXED type.
10738 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
10740         * gst/gst.c: (init_post):
10741           Init tags stuff and some other things before loading
10742           any static plugins (there may be other static plugins
10743           than just the GStreamer ones, and they may want to
10744           register their own tags or formats or whatever, and
10745           preferably without segfaulting).
10747         * plugins/elements/gstqueue.c: (gst_queue_handle_src_query):
10748           Print at least a warning in the debug logs if we drop a
10749           query just because we don't know how to adjust the value
10750           in the particular format.
10752 2005-12-24  David Schleef  <ds@schleef.org>
10754         * tools/gstreamer-completion:
10755           Replacement for gst-complete written in sh and sed.  Only
10756           completes names of features, but that's 90% of what I want
10757           it for.  Properties are not available in registry.xml.  (Maybe
10758           they should be...)
10760 === release 0.10.1 ===
10762 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
10764         * configure.ac:
10765           releasing 0.10.1, "Nollaig chridheil"
10767 2005-12-22  Tim-Philipp Müller  <tim at centricular dot net>
10769         * docs/faq/cvs.xml:
10770           Add missing quote, should be make ERROR_CFLAGS="".
10772 2005-12-20  Wim Taymans  <wim@fluendo.com>
10774         * docs/design/part-trickmodes.txt:
10775         More documentation on trickmodes.
10777 2005-12-20  Edward Hervey  <edward@fluendo.com>
10779         * gst/gstcaps.c: (gst_static_caps_get_type):
10780         * gst/gstcaps.h:
10781           API addition: GST_TYPE_STATIC_CAPS
10782         Added gpointer GType for GstStaticCaps so we can wrap them in bindings.
10783         * gst/gstpadtemplate.c: (gst_static_pad_template_get_type):
10784         * gst/gstpadtemplate.h:
10785           API addition: GST_TYPE_STATIC_PAD_TEMPLATE
10786         Added gpointer GType for GstStaticPadTemplate so we can wrap them in
10787         bindings.
10789 2005-12-18  Wim Taymans  <wim@fluendo.com>
10791         * libs/gst/base/gstadapter.c:
10792         * libs/gst/base/gstadapter.h:
10793         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
10794         (gst_base_sink_get_position):
10795         * libs/gst/base/gstbasesink.h:
10796         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
10797         (gst_base_src_default_query), (gst_base_src_default_do_seek),
10798         (gst_base_src_do_seek), (gst_base_src_perform_seek),
10799         (gst_base_src_send_event), (gst_base_src_update_length),
10800         (gst_base_src_get_range), (gst_base_src_loop),
10801         (gst_base_src_start):
10802         * libs/gst/base/gstbasesrc.h:
10803         * libs/gst/base/gstbasetransform.h:
10804         * libs/gst/base/gstcollectpads.h:
10805         * libs/gst/base/gstpushsrc.c:
10806         * libs/gst/base/gstpushsrc.h:
10807         * libs/gst/dataprotocol/dataprotocol.c:
10808         * libs/gst/dataprotocol/dataprotocol.h:
10809         * libs/gst/net/gstnetclientclock.h:
10810         * libs/gst/net/gstnettimeprovider.h:
10811         Documentation updates.
10813 2005-12-18  Tim-Philipp Müller  <tim at centricular dot net>
10815         * docs/manual/basics-helloworld.xml:
10816           Remove superfluous closing bracket in helloworld example.
10818 2005-12-17  Tim-Philipp Müller  <tim at centricular dot net>
10820         * tools/gst-launch.1.in:
10821           Update gst-launch man page; add a section with useful
10822           environment variables. Fixes #323882.
10824 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
10826         * gst/gst.c:
10827         * gst/gst_private.h:
10828           change some char* into char[]
10830 2005-12-16  Wim Taymans  <wim@fluendo.com>
10832         * gst/gstregistryxml.c: (load_feature):
10833         Cleanups.
10834         Don't use g_object_unref on GstObjects so that we avoid
10835         leaks on unsafe glibs.
10837 2005-12-16  Wim Taymans  <wim@fluendo.com>
10839         * gst/gstbin.c: (gst_bin_recalc_state):
10840         Small doc updates.
10842 2005-12-16  Wim Taymans  <wim@fluendo.com>
10844         * common/check.mak:
10845         Added make forever target for check.
10847 2005-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
10849         * gst/gst.c: (init_post):
10850           make the registry cache file HOST_CPU-dependent
10852 2005-12-16  Andy Wingo  <wingo@pobox.com>
10854         * plugins/elements/gstbufferstore.c
10855         (gst_buffer_store_cleared_func): Pay attention to g_list_append
10856         return value.
10858         * tests/check/gst/gstobject.c
10859         (test_fake_object_name_threaded_unique): Pay attention to
10860         g_list_sort return value.
10862 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10864         * tools/gst-feedback-m.m:
10865           Update for 0.9/0.10 (fixes #323870).
10867 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
10869         * gst/gstminiobject.c: (gst_value_mini_object_lcopy):
10870           Fix lcopy for mini objects, the mini object needs to be ref'ed.
10871           
10872         * tests/check/gst/gstminiobject.c: (my_foo_init),
10873         (my_foo_get_property), (my_foo_set_property), (my_foo_class_init),
10874         (test_value_collection), (gst_mini_object_suite):
10875           Add test to ensure refcounts end up as expected when passing
10876           GstMiniObjects through g_object_get() and g_object_set().
10878 2005-12-14  Julien MOUTTE  <julien@moutte.net>
10880         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
10881         (gst_collect_pads_remove_pad), (gst_collect_pads_is_collected),
10882         (gst_collect_pads_event), (gst_collect_pads_chain): Refactoring
10883         of collectpads. This version removes a lot of races without
10884         touching API/ABI. Yay !
10886 2005-12-14  Jan Schmidt  <thaytan@mad.scientist.com>
10888         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_link_prepare):
10889           Don't allow activation of a srcpad in pull_range if it has no
10890           getrange function.
10891           Change some debug statements to be a little clearer
10893         * plugins/elements/gsttypefindelement.c:
10894         (gst_type_find_handle_src_query):
10895           Check that we have a peer before executing queries thereupon.
10897         * tests/examples/metadata/read-metadata.c: (message_loop):
10898           Use gst_bus_pop instead of gst_bus_poll when we just want it to
10899           immediately return us any available message with 0 timeout.
10901 2005-12-12  Michael Smith  <msmith@fluendo.com>
10903         * gst/gsttypefindfactory.c: (gst_type_find_factory_call_function):
10904           Don't unref factories after calling them.
10905         * libs/gst/base/gsttypefindhelper.c: (gst_type_find_helper):
10906         * plugins/elements/gsttypefindelement.c:
10907         (gst_type_find_element_chain):
10908           Free lists of factories after using them. Fixing typefinding memory
10909           leaks.
10911 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
10913         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
10914         (gst_plugin_feature_load):
10915           more meaningful debug output
10916         * configure.ac:
10917         * tests/Makefile.am:
10918         * tests/old/examples/Makefile.am:
10919           make make distcheck happy again
10921 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
10923         * plugins/elements/gsttypefindelement.c: (stop_typefinding):
10924           Catch the special case where we are operating chain-based,
10925           but the downstream peer pad has no chain function. Emit a
10926           custom error message in this case instead of letting the
10927           core generate one implying that this is some sort of core
10928           bug. It's not, it just means that whatever got plugged
10929           into the pipeline downstream when we announced the type
10930           can only operate pull-based, while our source can only
10931           operate push-based (e.g. http://foo/bar.mov ! qtdemux ! ...)
10932           Error string has not been marked for translation yet, as
10933           it probably needs some more work first.
10935         (gst_type_find_element_get_best_possibility):
10936           Add helper function to find the best of all available
10937           found possibilities that qualify given the min. threshold.
10939         (gst_type_find_element_handle_event):
10940           Fix the case where we get an EOS while still in TYPEFIND
10941           mode (we want to chose the best of all possible types,
10942           not just the first type that happens to be in our unsorted
10943           list of possible types).
10945         (gst_type_find_element_chain):
10946           Make sure we return GST_FLOW_ERROR when we errored out
10947           in stop_typefinding(); also, don't just find the best of
10948           all found type entries and then use the last examined
10949           type entry, but actually use the best entry.
10951 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
10953         * tests/examples/typefind/typefind.c: (type_found):
10954         * tests/examples/xml/runxml.c: (xml_loaded):
10955           More gcc4 fixes and a mem leak fix.
10957 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
10959         * tests/examples/xml/createxml.c: (object_saved):
10960           gcc 4 fixes
10962 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
10964         * tests/Makefile.am:
10965           enable the examples even more
10967 2005-12-12  Andy Wingo  <wingo@pobox.com>
10969         * libs/gst/net/gstnettimeprovider.c
10970         (gst_net_time_provider_class_init, gst_net_time_provider_init)
10971         (gst_net_time_provider_set_property)
10972         (gst_net_time_provider_get_property):
10973         API addition: Export "active" as a GObject property.
10974         (gst_net_time_provider_thread): Only respond to time queries if
10975         the time provider is active.
10977         * libs/gst/net/gstnettimeprovider.h: Add an "active" boolean to
10978         NetTimeProvider, preserving binary compat.
10980 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
10982         * tests/examples/controller/audio-example.c: (main):
10983         * tests/examples/launch/Makefile.am:
10984           convert comments again
10986 2005-12-12  Wim Taymans  <wim@fluendo.com>
10988         * libs/gst/base/gstpushsrc.c:
10989         Fix typo.
10991 2005-12-12  Wim Taymans  <wim@fluendo.com>
10993         * docs/libs/gstreamer-libs-sections.txt:
10994         Added new symbol to docs.
10996         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
10997         (gst_base_src_init), (gst_base_src_set_format),
10998         (gst_base_src_default_query), (gst_base_src_query),
10999         (gst_base_src_default_do_seek), (gst_base_src_do_seek),
11000         (gst_base_src_perform_seek), (gst_base_src_send_event),
11001         (gst_base_src_default_event), (gst_base_src_event_handler),
11002         (gst_base_src_set_property), (gst_base_src_get_property),
11003         (gst_base_src_wait), (gst_base_src_do_sync),
11004         (gst_base_src_update_length), (gst_base_src_get_range),
11005         (gst_base_src_check_get_range), (gst_base_src_loop),
11006         (gst_base_src_default_negotiate), (gst_base_src_start),
11007         (gst_base_src_activate_push), (gst_base_src_activate_pull),
11008         (gst_base_src_change_state):
11009         * libs/gst/base/gstbasesrc.h:
11010         Implement seeking to other formats than _BYTES.
11011         Implement more seeking methods correctly.
11012         Doc updates.
11013         Added query vmethod.
11014         Added do_seek vmethod to make life easier for subclasses
11015         when seeking.
11016         API addition: gst_base_src_set_format()
11018 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
11020         * tests/examples/Makefile.am:
11021           added that too
11023 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
11025         * configure.ac:
11026         * docs/random/ensonic/media-device-daemon.txt:
11027         * tests/examples/controller/.cvsignore:
11028         * tests/examples/controller/Makefile.am:
11029         * tests/examples/controller/audio-example.c: (main):
11030         * tests/examples/helloworld/.cvsignore:
11031         * tests/examples/helloworld/Makefile.am:
11032         * tests/examples/helloworld/helloworld.c: (event_loop), (main):
11033         * tests/examples/launch/.cvsignore:
11034         * tests/examples/launch/Makefile.am:
11035         * tests/examples/launch/mp3parselaunch.c: (event_loop), (main):
11036         * tests/examples/metadata/.cvsignore:
11037         * tests/examples/metadata/Makefile.am:
11038         * tests/examples/metadata/read-metadata.c: (message_loop),
11039         (make_pipeline), (print_tag), (main):
11040         * tests/examples/queue/.cvsignore:
11041         * tests/examples/queue/Makefile.am:
11042         * tests/examples/queue/queue.c: (event_loop), (main):
11043         * tests/examples/typefind/.cvsignore:
11044         * tests/examples/typefind/Makefile.am:
11045         * tests/examples/typefind/typefind.c: (type_found), (event_loop),
11046         (main):
11047         * tests/examples/xml/.cvsignore:
11048         * tests/examples/xml/Makefile.am:
11049         * tests/examples/xml/createxml.c: (object_saved), (main):
11050         * tests/examples/xml/runxml.c: (xml_loaded), (event_loop), (main):
11051         * tests/old/examples/Makefile.am:
11052         * tests/old/examples/TODO:
11053         * tests/old/examples/controller/.cvsignore:
11054         * tests/old/examples/controller/Makefile.am:
11055         * tests/old/examples/controller/audio-example.c:
11056         * tests/old/examples/helloworld/.cvsignore:
11057         * tests/old/examples/helloworld/Makefile.am:
11058         * tests/old/examples/helloworld/helloworld.c:
11059         * tests/old/examples/launch/.cvsignore:
11060         * tests/old/examples/launch/Makefile.am:
11061         * tests/old/examples/launch/mp3parselaunch.c:
11062         * tests/old/examples/launch/mp3play:
11063         * tests/old/examples/manual/Makefile.am:
11064         * tests/old/examples/metadata/Makefile.am:
11065         * tests/old/examples/metadata/read-metadata.c:
11066         * tests/old/examples/queue/.cvsignore:
11067         * tests/old/examples/queue/Makefile.am:
11068         * tests/old/examples/queue/queue.c:
11069         * tests/old/examples/typefind/.cvsignore:
11070         * tests/old/examples/typefind/Makefile.am:
11071         * tests/old/examples/typefind/typefind.c:
11072         * tests/old/examples/xml/.cvsignore:
11073         * tests/old/examples/xml/Makefile.am:
11074         * tests/old/examples/xml/createxml.c:
11075         * tests/old/examples/xml/runxml.c:
11076           applied some simple fixing to some examples
11077           re-enabled the working examples
11079 2005-12-12  Wim Taymans  <wim@fluendo.com>
11081         * gst/gstsegment.c: (gst_segment_init),
11082         (gst_segment_set_last_stop), (gst_segment_set_seek),
11083         (gst_segment_set_newsegment), (gst_segment_to_stream_time),
11084         (gst_segment_to_running_time):
11085         Added more documentation.
11086         Make sure the last_pos value is updated properly.
11087         Make sure to_stream_time and to_running_time don't
11088         operate on wrong values.
11090         * tests/check/gst/gstsegment.c: (GST_START_TEST):
11091         Update check.
11093 2005-12-12  Michael Smith  <msmith@fluendo.com>
11095         * plugins/elements/gsttypefindelement.c: (free_entry),
11096         (gst_type_find_element_chain):
11097           Now that we're not leaking factories, make sure we keep references
11098           to them while we need them.
11100 2005-12-12  Thomas Vander Stichele  <thomas at apestaart dot org>
11102         * tests/check/gst/struct_i386.h:
11103           ifdef out the XML structs
11105 2005-12-12  Thomas Vander Stichele  <thomas at apestaart dot org>
11107         * gst/gstvalue.c: (gst_value_transform_double_fraction):
11108           floor is not needed, F is always positive; this obviates the
11109           need for adding -lm when building without libxml
11111 2005-12-12  Wim Taymans  <wim@fluendo.com>
11113         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
11114         Take current playback rate into account when reporting
11115         the position.
11117 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
11119         * docs/manual/mime-world.fig:
11120           Let's try this again, this time with a file that is
11121           actually in XFig format.
11123 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
11125         * docs/manual/mime-world.fig:
11126           Add audioconvert element to diagram so that it
11127           matches the text and the code (fixes #319526).
11129 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
11131         * docs/pwg/building-chainfn.xml:
11132         * docs/pwg/building-pads.xml:
11133         * docs/pwg/building-state.xml:
11134         * docs/pwg/other-source.xml:
11135           Update state change stuff for 0.10 (fixes #322969).
11137 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
11139         * docs/manual/advanced-dataaccess.xml:
11140         * docs/manual/appendix-checklist.xml:
11141         * docs/manual/appendix-programs.xml:
11142         * docs/manual/basics-pads.xml:
11143         * docs/manual/highlevel-components.xml:
11144         * docs/manual/manual.xml:
11145           Update for 0.10: s/0.9/0.10/; s/audioscale/audiorsample/;
11146           add converters in front of pipelines; remove curly
11147           brackets for threads stuff, they no longer exist; use
11148           GST_TYPE_FRACTION for framerates; update some pieces of
11149           code to 0.10, but there's plenty more to do.
11151         * docs/manual/appendix-porting.xml:
11152           Expand on asynchroneous state changes; s/0.9/0.10/;
11153           mention disappearance of gst_init_get_popt_table()
11154           (fixes #322916).
11156 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
11158         * docs/faq/using.xml:
11159           Spider no longer exists, and neither does gst-launch-ext.
11160           Update examples to use decodebin and playbin and put
11161           converters in front of sinks (fixes #323726).
11163 2005-12-09  Michael Smith  <msmith@fluendo.com>
11165         * plugins/elements/gsttypefindelement.c: (find_peek),
11166         (gst_type_find_element_chain):
11167           Fix leaking element factories in typefinding.
11168           Fix problem where we forgot about a probable type on non-seekable
11169           files, and thus later mis-typefound it.
11171 2005-12-09  Michael Smith  <msmith@fluendo.com>
11173         * common/m4/gst-makecontext.m4:
11174         * common/m4/gst-mcsc.m4:
11175         * configure.ac:
11176         * win32/common/config.h:
11177         * win32/common/config.h.in:
11178           Remove makecontext stuff; not used in 0.10 and causes problems on
11179           HPUX according to bug #322441
11181 2005-12-07  Wim Taymans  <wim@fluendo.com>
11183         * tests/check/Makefile.am:
11184         * tests/check/libs/libsabi.c: (GST_START_TEST), (gstabi_suite),
11185         (main):
11186         * tests/check/libs/struct_i386.h:
11187         Added ABI check for libs
11189 2005-12-07  Wim Taymans  <wim@fluendo.com>
11191         * tests/check/Makefile.am:
11192         And add the struct_i386.h to dist.
11194 2005-12-07  Wim Taymans  <wim@fluendo.com>
11196         * tests/check/Makefile.am:
11197         * tests/check/gst/.cvsignore:
11198         * tests/check/gst/gstabi.c: (GST_START_TEST), (gstabi_suite),
11199         (main):
11200         * tests/check/gst/struct_i386.h:
11201         Added check for ABI compatibility.
11203 2005-12-07  Wim Taymans  <wim@fluendo.com>
11205         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
11206         (gst_fake_src_get_times), (gst_fake_src_create):
11207         Fix broken sync option, fixes #323259
11209 2005-12-07  Wim Taymans  <wim@fluendo.com>
11211         * gst/gstbuffer.c:
11212         Small docs update.
11214         * gst/gstcaps.c: (gst_caps_is_equal):
11215         Don't assert on NULL <--> X. Fixes #323260
11217         * gst/gstminiobject.c: (gst_mini_object_replace):
11218         If we're doing atomic operations, we might just as well use
11219         the proper way to get an atomic pointer.
11221         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
11222         Clean up debugging.
11224 2005-12-07  Michael Smith  <msmith@fluendo.com>
11226         * gst/parse/grammar.y:
11227           Remove handling of { } for threads.
11229 2005-12-06  David Schleef  <ds@schleef.org>
11231         * libs/gst/base/gstbasetransform.c: speling fix.
11233 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
11235         * docs/libs/tmpl/gstdataprotocol.sgml:
11236         * docs/random/omega/testing/gstobject.c:
11237         * gst/gst.c:
11238         * gst/gstclock.c:
11239         * gst/gstelement.c:
11240         * gst/gstelementfactory.c:
11241         * gst/gsterror.c:
11242         * gst/gstevent.c:
11243         * gst/gstghostpad.c:
11244         * gst/gstinfo.c:
11245         * gst/gstpadtemplate.c:
11246         * gst/gstregistryxml.c:
11247         * gst/gsttaglist.c:
11248         * gst/gsttagsetter.c:
11249         * gst/gsttypefind.c:
11250         * gst/gstvalue.c:
11251         * libs/gst/base/gstbasesrc.c:
11252         * libs/gst/net/gstnetclientclock.c:
11253         * libs/gst/net/gstnettimeprovider.c:
11254         * plugins/elements/gstfakesrc.c:
11255         * plugins/elements/gstfdsrc.c:
11256         * plugins/elements/gstfilesrc.c:
11257         * plugins/elements/gstidentity.c:
11258         * plugins/elements/gstqueue.c:
11259         * plugins/elements/gsttypefindelement.c:
11260         * plugins/indexers/gstfileindex.c:
11261         * plugins/indexers/gstmemindex.c:
11262         * tests/check/gst/gsttag.c:
11263         * tests/old/examples/cutter/cutter.c:
11264         * tests/old/examples/mixer/mixer.c:
11265         * tests/old/examples/xml/runxml.c: (main):
11266         * tests/old/testsuite/caps/normalisation.c:
11267         * tests/old/testsuite/debug/global.c:
11268         * tests/old/testsuite/parse/parse1.c:
11269         * tools/gst-xmlinspect.c:
11270         * win32/common/dirent.c:
11271           expand tabs
11273 === release 0.10.0 ===
11275 2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11277         * configure.ac:
11278           releasing 0.10.0, "Maroilles"
11280 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11282         submitted by: Funda Wang <fundawang@linux.net.cn>
11284         * po/LINGUAS:
11285         * po/zh_CN.po:
11286           added Chinese (Traditional) translation
11288 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11290         * docs/gst/gstreamer-sections.txt:
11291         * docs/libs/tmpl/gstdataprotocol.sgml:
11292         * docs/random/thomasvs/TODO:
11293         * gst/gstutils.c:
11294         * gst/gstutils.h:
11295           fix docs
11297 2005-12-05  Andy Wingo  <wingo@pobox.com>
11299         patch by: Wim Taymans <wim@fluendo.com>
11301         * libs/gst/base/gstbasetransform.c
11302         (gst_base_transform_prepare_output_buf)
11303         (gst_base_transform_buffer_alloc):
11304         * plugins/elements/gstqueue.c (gst_queue_bufferalloc): Call
11305         alloc_buffer_and_set_caps.
11307         * gst/gstpad.c (gst_pad_alloc_buffer): Changed to not call
11308         set_caps on the source pad.
11309         (gst_pad_alloc_buffer_and_set_caps): New function, does what
11310         alloc_buffer used to do. Fixes #322874.
11312         * docs/gst/gstreamer-sections.txt: 
11313         * docs/design/part-negotiation.txt: 
11314         * docs/pwg/advanced-negotiation.xml: Update for the alloc_buffer
11315         changes.
11317 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
11319         patch by: Sebastien Moutte
11321         * win32/MANIFEST:
11322         * win32/common/config.h.in:
11323         * win32/vs6/libgstcontroller.dsp:
11324           win32 build fixes
11326 2005-12-05  Wim Taymans  <wim@fluendo.com>
11328         * gst/gstcaps.c: (gst_caps_is_equal):
11329         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
11330         (gst_fake_src_create):
11331         Back out previous code changes, leave doc updates, file bugs 
11332         instead. 
11334 2005-12-05  Wim Taymans  <wim@fluendo.com>
11336         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
11337         (gst_fake_src_get_times), (gst_fake_src_create):
11338         * plugins/elements/gstfakesrc.h:
11339         Fix broken sync code.
11341 2005-12-05  Wim Taymans  <wim@fluendo.com>
11343         * gst/gstcaps.c: (gst_caps_is_equal):
11344         Comparing NULL against !NULL yields different caps, not a
11345         failure.
11347 2005-12-05  Wim Taymans  <wim@fluendo.com>
11349         * gst/gstpipeline.c:
11350         Fix small typo in docs.
11352 2005-12-05  Andy Wingo  <wingo@pobox.com>
11354         patch by: Thomas Vander Stichele  <thomas at apestaart dot org>
11356         * gst/gst.c (init_post): remove hard-coded 0.9 location for
11357         registries/plugins with a MAJORMINOR one.
11358         (plugin_desc): Rename library from gstcoreleements to
11359         staticelements. Fixes #323222.
11361 2005-12-05  Tim-Philipp Müller  <tim at centricular dot net>
11363         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init):
11364           Change debug category to 'collectpads' from 'collect_pads'
11365           (fixes #323250).
11367 2005-12-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11369         patch by: Sebastien Moutte
11371         * libs/gst/controller/gstinterpolation.c:
11372           use convert function for uint64/double
11373         * win32/vs6/libgstcontroller.dsp:
11374           link to GLib
11376 2005-12-04  Thomas Vander Stichele  <thomas at apestaart dot org>
11378         * gst/gstutils.c: (gst_util_guint64_to_gdouble),
11379         (gst_util_gdouble_to_guint64), (gst_util_uint64_scale_int64):
11380         * gst/gstutils.h:
11381         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
11382           add tests that seem to show that the guint64/gdouble conversions
11383           are correct.
11385 2005-12-02  Wim Taymans  <wim@fluendo.com>
11387         * gst/gstregistry.c: (gst_registry_add_path):
11388         * gst/gstregistry.h:
11389         * gst/gstregistryxml.c:
11390         Fix docs again.
11392 2005-12-02  Wim Taymans  <wim@fluendo.com>
11394         * gst/gstutils.c: (gst_util_uint64_scale_int64),
11395         (gst_util_uint64_scale_int):
11396         Small cleanup.
11398         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object):
11399         Add debug log line.
11401         * libs/gst/base/gstbasetransform.c: (gst_base_transform_event):
11402         Add FIXME.
11404 2005-12-02  Thomas Vander Stichele  <thomas at apestaart dot org>
11406         * win32/MANIFEST:
11407         * win32/common/config.h:
11408         * win32/vs6/gstreamer.dsw:
11409         * win32/vs6/libgstcoreelements.dsp:
11410         * win32/vs6/libgstelements.dsp:
11411           renamed core elements plugin
11413 2005-12-02  Thomas Vander Stichele  <thomas at apestaart dot org>
11415         * tools/gst-run.c: (compare_major_minor), (find_highest_version),
11416         (get_candidates):
11417           do piece-wise major/minor comparison so 0.9 < 0.10
11418           also allow .exe extensions for tools
11420 2005-12-02  Michael Smith  <msmith@fluendo.com>
11422         * gst/gst.c:
11423           Escape a % to make gtkdoc happier; bug 322958.
11425 === release 0.9.7 ===
11427 2005-12-01  Thomas Vander Stichele <thomas (at) apestaart (dot) org>
11429         * configure.ac:
11430           releasing 0.9.7, "My Dog Has No Nose"
11432 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11434         * common/gst-xmlinspect.py:
11435         * configure.ac:
11436         * docs/libs/tmpl/gstdataprotocol.sgml:
11437         * docs/random/release:
11438         * po/af.po:
11439         * po/az.po:
11440         * po/bg.po:
11441         * po/ca.po:
11442         * po/cs.po:
11443         * po/de.po:
11444         * po/en_GB.po:
11445         * po/fr.po:
11446         * po/it.po:
11447         * po/nb.po:
11448         * po/nl.po:
11449         * po/ru.po:
11450         * po/sq.po:
11451         * po/sr.po:
11452         * po/sv.po:
11453         * po/tr.po:
11454         * po/uk.po:
11455         * po/vi.po:
11456         * win32/common/config.h:
11457         * win32/common/config.h.in:
11458         * win32/vs6/gst_inspect.dsp:
11459         * win32/vs6/gst_launch.dsp:
11460         * win32/vs6/libgstbase.dsp:
11461         * win32/vs6/libgstelements.dsp:
11462         * win32/vs6/libgstreamer.dsp:
11463         * win32/vs7/GStreamer.vcproj:
11464         * win32/vs7/gst-inspect.vcproj:
11465         * win32/vs7/gst-launch.vcproj:
11466         * win32/vs7/libgstbase.vcproj:
11467           bump GST_MAJORMINOR to 0.10
11468           reset libtool version
11470 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11472         * po/LINGUAS:
11473         * po/bg.po:
11474           Added Bulgarian translation by (Alexander Shopov)
11476 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11478         * tests/check/gst/gstplugin.c:
11479           fix test
11481 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11483         * common/gst-xmlinspect.py:
11484         * common/gtk-doc-plugins.mak:
11485         * configure.ac:
11486         * docs/Makefile.am:
11487         * docs/gst/Makefile.am:
11488         * docs/gst/gstreamer-docs.sgml:
11489         * docs/gst/gstreamer-sections.txt:
11490         * docs/gst/gstreamer.types:
11491         * docs/gst/gstreamer.types.in:
11492         * docs/plugins/Makefile.am:
11493         * docs/plugins/gstreamer-plugins-docs.sgml:
11494         * docs/plugins/gstreamer-plugins-sections.txt:
11495         * docs/plugins/gstreamer-plugins.types:
11496         * docs/plugins/inspect.stamp:
11497         * docs/plugins/inspect/plugin-coreelements.xml:
11498         * docs/plugins/inspect/plugin-coreindexers.xml:
11499         * docs/plugins/scanobj-build.stamp:
11500         * gstreamer.spec.in:
11501         * plugins/elements/Makefile.am:
11502         * plugins/elements/gstelements.c:
11503         * plugins/elements/gstfakesink.c:
11504         * plugins/elements/gstfakesrc.c:
11505         * plugins/elements/gstfilesink.c:
11506         * plugins/elements/gstfilesrc.c:
11507         * plugins/elements/gstqueue.c:
11508         * plugins/indexers/Makefile.am:
11509         * plugins/indexers/gstindexers.c:
11510           document core plugins in a separate document just like all the
11511           others
11512           rename these plugins to something starting with core
11514 2005-12-01  Andy Wingo  <wingo@pobox.com>
11516         * gst/gstevent.h (struct _GstEvent): Meant to remove the extra
11517         padding here before, but it missed the commit.
11519 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11521         * libs/gst/controller/gstinterpolation.c:
11522           whitespace prices have crashed, we should feel free to use some now
11523           use gst_guint64_to_gdouble
11525 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11527         * libs/gst/controller/gstcontroller.c:
11528         * libs/gst/controller/gsthelper.c:
11529         * libs/gst/controller/gstinterpolation.c:
11530         * libs/gst/controller/lib.c:
11531           wrap config.h include
11533 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11535         * docs/gst/gstreamer-sections.txt:
11536           update docs
11538 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
11540         * plugins/elements/gstelements.c:
11541         * plugins/elements/gstfdsink.c: (gst_fd_sink__base_init),
11542         (gst_fd_sink__class_init), (gst_fd_sink__init),
11543         (gst_fd_sink__chain), (gst_fd_sink__set_property),
11544         (gst_fd_sink__get_property):
11545         * plugins/elements/gstfdsink.h:
11546         * plugins/elements/gstfdsrc.c: (_do_init), (gst_fd_src_base_init),
11547         (gst_fd_src_class_init), (gst_fd_src_init), (gst_fd_src_dispose),
11548         (gst_fd_src_update_fd), (gst_fd_src_start), (gst_fd_src_stop),
11549         (gst_fd_src_unlock), (gst_fd_src_set_property),
11550         (gst_fd_src_get_property), (gst_fd_src_create),
11551         (gst_fd_src_is_seekable), (gst_fd_src_get_size),
11552         (gst_fd_src_uri_get_type), (gst_fd_src_uri_get_protocols),
11553         (gst_fd_src_uri_get_uri), (gst_fd_src_uri_set_uri),
11554         (gst_fd_src_uri_handler_init):
11555         * plugins/elements/gstfdsrc.h:
11556         * plugins/elements/gstqueue.c: (gst_queue_get_type):
11557           more anal cleanup
11559 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
11561         * docs/gst/Makefile.am:
11562         * docs/gst/gstreamer.types.in:
11563         * gst/Makefile.am:
11564           fix the docs build
11566 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11568         * configure.ac:
11569         * gst/Makefile.am:
11570         * gst/gst.c:
11571         * gst/gstplugin.h:
11572         * gst/gstregistry.h:
11573         * tests/benchmarks/complexity.c:
11574         * tests/benchmarks/mass-elements.c:
11575         * tests/check/Makefile.am:
11576         * tools/Makefile.am:
11577         * tools/gst-inspect.c:
11578         * tools/gst-xmlinspect.c:
11579           various fixes to make
11580           --disable-nls --disable-registry --disable-loadsave
11581           --disable-parse --disable-gst-debug
11582           work and get the core .so down to 360444 bytes after stripping
11584 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11586         * Makefile.am:
11587         * configure.ac:
11588           descend into tests
11589         * docs/random/thomasvs/TODO:
11590         * tests/Makefile.am:
11591         * tests/README:
11592           add a README
11594 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11596         * win32/GStreamer.vcproj:
11597         * win32/MANIFEST:
11598         * win32/Makefile:
11599         * win32/Makefile.inspect:
11600         * win32/Makefile.launch:
11601         * win32/Makefile.register:
11602         * win32/README.txt:
11603         * win32/gst-inspect.vcproj:
11604         * win32/gst-launch.vcproj:
11605         * win32/gst-register.vcproj:
11606         * win32/gstelements.vcproj:
11607         * win32/gstgetbits.def:
11608         * win32/gstgetbits.vcproj:
11609         * win32/gstreamer-dbg.def:
11610         * win32/gstreamer.def:
11611         * win32/libgstbase.def:
11612         * win32/libgstbase.vcproj:
11613         * win32/link_oldruntime.c:
11614         * win32/mman.c:
11615         * win32/mman.h:
11616         * win32/mman.inl:
11617         * win32/msvc71.sln:
11618           move even more stuff, win32/ is nice and clean now
11620 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11622         * libs/gst/control/.cvsignore:
11623         * win32/MANIFEST:
11624         * win32/config.h:
11625         * win32/dirent.c:
11626         * win32/dirent.h:
11627         * win32/gstbytestream.def:
11628         * win32/gstbytestream.vcproj:
11629         * win32/gstconfig.h:
11630         * win32/gstenumtypes.c:
11631         * win32/gstenumtypes.h:
11632         * win32/gstoptimalscheduler.vcproj:
11633         * win32/gstversion.h:
11634         * win32/gtchar.h:
11635         * win32/testsuite/bins.vcproj:
11636         * win32/testsuite/bytestream.vcproj:
11637         * win32/testsuite/caps.vcproj:
11638         * win32/testsuite/cleanup.vcproj:
11639         * win32/testsuite/clock.vcproj:
11640         * win32/testsuite/debug.vcproj:
11641         * win32/testsuite/dlopen.vcproj:
11642         * win32/testsuite/dynparams.vcproj:
11643         * win32/testsuite/elements.vcproj:
11644         * win32/testsuite/ghostpads.vcproj:
11645         * win32/testsuite/indexers.vcproj:
11646         * win32/testsuite/negotiation.vcproj:
11647         * win32/testsuite/parse.vcproj:
11648         * win32/testsuite/plugin.vcproj:
11649         * win32/testsuite/refcounting.vcproj:
11650         * win32/testsuite/schedulers.vcproj:
11651         * win32/testsuite/states.vcproj:
11652         * win32/testsuite/tags.vcproj:
11653         * win32/testsuite/threads.vcproj:
11654           remove old win32 stuff that isn't maintained and should be
11655           reorganized
11657 2005-11-30  Andy Wingo  <wingo@pobox.com>
11659         * configure.ac (GST_PKG_DEPS): Revert previous patch, makes
11660         loading the gst.interfaces python module bork.
11662         * configure.ac (GST_PKG_DEPS): Use gmodule-no-export-2.0.pc,
11663         available since GLib 2.2. Fixes #318031.
11665 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11667         * Makefile.am:
11668         * check/.cvsignore:
11669         * check/Makefile.am:
11670         * check/elements/.cvsignore:
11671         * check/elements/fakesrc.c:
11672         * check/elements/fdsrc.c:
11673         * check/elements/identity.c:
11674         * check/generic/.cvsignore:
11675         * check/generic/states.c:
11676         * check/gst-libs/.cvsignore:
11677         * check/gst-libs/controller.c:
11678         * check/gst-libs/gdp.c:
11679         * check/gst/.cvsignore:
11680         * check/gst/capslist.h:
11681         * check/gst/gst.c:
11682         * check/gst/gstbin.c:
11683         * check/gst/gstbuffer.c:
11684         * check/gst/gstbus.c:
11685         * check/gst/gstcaps.c:
11686         * check/gst/gstelement.c:
11687         * check/gst/gstevent.c:
11688         * check/gst/gstghostpad.c:
11689         * check/gst/gstiterator.c:
11690         * check/gst/gstmessage.c:
11691         * check/gst/gstminiobject.c:
11692         * check/gst/gstobject.c:
11693         * check/gst/gstpad.c:
11694         * check/gst/gstpipeline.c:
11695         * check/gst/gstplugin.c:
11696         * check/gst/gstsegment.c:
11697         * check/gst/gststructure.c:
11698         * check/gst/gstsystemclock.c:
11699         * check/gst/gsttag.c:
11700         * check/gst/gstutils.c:
11701         * check/gst/gstvalue.c:
11702         * check/net/.cvsignore:
11703         * check/net/gstnetclientclock.c:
11704         * check/net/gstnettimeprovider.c:
11705         * check/pipelines/.cvsignore:
11706         * check/pipelines/cleanup.c:
11707         * check/pipelines/simple_launch_lines.c:
11708         * check/pipelines/stress.c:
11709         * check/states/.cvsignore:
11710         * check/states/sinks.c:
11711         * configure.ac:
11712         * examples/Makefile.am:
11713         * examples/appreader/.cvsignore:
11714         * examples/appreader/Makefile.am:
11715         * examples/appreader/appreader.c:
11716         * examples/controller/.cvsignore:
11717         * examples/controller/Makefile.am:
11718         * examples/controller/audio-example.c:
11719         * examples/cutter/.cvsignore:
11720         * examples/cutter/Makefile.am:
11721         * examples/cutter/cutter.c:
11722         * examples/cutter/cutter.h:
11723         * examples/events/Makefile.am:
11724         * examples/events/seek.c:
11725         * examples/helloworld/.cvsignore:
11726         * examples/helloworld/Makefile.am:
11727         * examples/helloworld/helloworld.c:
11728         * examples/helloworld2/.cvsignore:
11729         * examples/helloworld2/Makefile.am:
11730         * examples/helloworld2/helloworld2.c:
11731         * examples/launch/.cvsignore:
11732         * examples/launch/Makefile.am:
11733         * examples/launch/mp3parselaunch.c:
11734         * examples/launch/mp3play:
11735         * examples/manual/.cvsignore:
11736         * examples/manual/Makefile.am:
11737         * examples/manual/extract.pl:
11738         * examples/metadata/Makefile.am:
11739         * examples/metadata/read-metadata.c:
11740         * examples/mixer/.cvsignore:
11741         * examples/mixer/Makefile.am:
11742         * examples/mixer/mixer.c:
11743         * examples/mixer/mixer.h:
11744         * examples/pingpong/.cvsignore:
11745         * examples/pingpong/Makefile.am:
11746         * examples/pingpong/pingpong.c:
11747         * examples/plugins/.cvsignore:
11748         * examples/plugins/Makefile.am:
11749         * examples/plugins/example.c:
11750         * examples/plugins/example.h:
11751         * examples/pwg/.cvsignore:
11752         * examples/pwg/Makefile.am:
11753         * examples/pwg/extract.pl:
11754         * examples/queue/.cvsignore:
11755         * examples/queue/Makefile.am:
11756         * examples/queue/queue.c:
11757         * examples/queue2/.cvsignore:
11758         * examples/queue2/Makefile.am:
11759         * examples/queue2/queue2.c:
11760         * examples/queue3/.cvsignore:
11761         * examples/queue3/Makefile.am:
11762         * examples/queue3/queue3.c:
11763         * examples/queue4/.cvsignore:
11764         * examples/queue4/Makefile.am:
11765         * examples/queue4/queue4.c:
11766         * examples/retag/.cvsignore:
11767         * examples/retag/Makefile.am:
11768         * examples/retag/retag.c:
11769         * examples/retag/transcode.c:
11770         * examples/thread/.cvsignore:
11771         * examples/thread/Makefile.am:
11772         * examples/thread/thread.c:
11773         * examples/typefind/.cvsignore:
11774         * examples/typefind/Makefile.am:
11775         * examples/typefind/typefind.c:
11776         * examples/xml/.cvsignore:
11777         * examples/xml/Makefile.am:
11778         * examples/xml/createxml.c:
11779         * examples/xml/runxml.c:
11780         * tests/Makefile.am:
11781         * tests/check/Makefile.am:
11782         * testsuite/.cvsignore:
11783         * testsuite/Makefile.am:
11784         * testsuite/Rules:
11785         * testsuite/caps/.cvsignore:
11786         * testsuite/caps/Makefile.am:
11787         * testsuite/caps/app_fixate.c:
11788         * testsuite/caps/audioscale.c:
11789         * testsuite/caps/caps.c:
11790         * testsuite/caps/caps.h:
11791         * testsuite/caps/caps_strings:
11792         * testsuite/caps/compatibility.c:
11793         * testsuite/caps/deserialize.c:
11794         * testsuite/caps/enumcaps.c:
11795         * testsuite/caps/eratosthenes.c:
11796         * testsuite/caps/filtercaps.c:
11797         * testsuite/caps/fixed.c:
11798         * testsuite/caps/fraction-convert.c:
11799         * testsuite/caps/fraction-multiply-and-zero.c:
11800         * testsuite/caps/intersect2.c:
11801         * testsuite/caps/intersection.c:
11802         * testsuite/caps/normalisation.c:
11803         * testsuite/caps/random.c:
11804         * testsuite/caps/renegotiate.c:
11805         * testsuite/caps/sets.c:
11806         * testsuite/caps/simplify.c:
11807         * testsuite/caps/string-conversions.c:
11808         * testsuite/caps/structure.c:
11809         * testsuite/caps/subtract.c:
11810         * testsuite/caps/union.c:
11811         * testsuite/debug/.cvsignore:
11812         * testsuite/debug/Makefile.am:
11813         * testsuite/debug/category.c:
11814         * testsuite/debug/commandline.c:
11815         * testsuite/debug/global.c:
11816         * testsuite/debug/output.c:
11817         * testsuite/debug/printf_extension.c:
11818         * testsuite/dlopen/.cvsignore:
11819         * testsuite/dlopen/Makefile.am:
11820         * testsuite/dlopen/dlopen_gst.c:
11821         * testsuite/dlopen/loadgst.c:
11822         * testsuite/elements/.cvsignore:
11823         * testsuite/elements/Makefile.am:
11824         * testsuite/elements/gst-inspect-check.in:
11825         * testsuite/elements/struct_i386.h:
11826         * testsuite/elements/struct_size.c:
11827         * testsuite/indexers/.cvsignore:
11828         * testsuite/indexers/Makefile.am:
11829         * testsuite/indexers/cache1.c:
11830         * testsuite/indexers/indexdump.c:
11831         * testsuite/parse/.cvsignore:
11832         * testsuite/parse/Makefile.am:
11833         * testsuite/parse/parse1.c:
11834         * testsuite/parse/parse2.c:
11835         * testsuite/plugin/.cvsignore:
11836         * testsuite/plugin/Makefile.am:
11837         * testsuite/plugin/README:
11838         * testsuite/plugin/dynamic.c:
11839         * testsuite/plugin/linked.c:
11840         * testsuite/plugin/loading.c:
11841         * testsuite/plugin/registry.c:
11842         * testsuite/plugin/static.c:
11843         * testsuite/plugin/static2.c:
11844         * testsuite/plugin/testplugin.c:
11845         * testsuite/plugin/testplugin2.c:
11846         * testsuite/plugin/testplugin2_s.c:
11847         * testsuite/plugin/testplugin_s.c:
11848         * testsuite/refcounting/.cvsignore:
11849         * testsuite/refcounting/Makefile.am:
11850         * testsuite/refcounting/bin.c:
11851         * testsuite/refcounting/element.c:
11852         * testsuite/refcounting/element_pad.c:
11853         * testsuite/refcounting/mainloop.c:
11854         * testsuite/refcounting/mem.c:
11855         * testsuite/refcounting/mem.h:
11856         * testsuite/refcounting/object.c:
11857         * testsuite/refcounting/pad.c:
11858         * testsuite/refcounting/sched.c:
11859         * testsuite/refcounting/thread.c:
11860         * testsuite/states/.cvsignore:
11861         * testsuite/states/Makefile.am:
11862         * testsuite/states/bin.c:
11863         * testsuite/states/locked.c:
11864         * testsuite/states/parent.c:
11865         * testsuite/threads/.cvsignore:
11866         * testsuite/threads/159566.c:
11867         * testsuite/threads/159852.c:
11868         * testsuite/threads/Makefile.am:
11869         * testsuite/threads/queue.c:
11870         * testsuite/threads/signals.c:
11871         * testsuite/threads/staticrec.c:
11872         * testsuite/threads/thread.c:
11873         * testsuite/threads/threadb.c:
11874         * testsuite/threads/threadc.c:
11875         * testsuite/threads/threadd.c:
11876         * testsuite/threads/threade.c:
11877         * testsuite/threads/threadf.c:
11878         * testsuite/threads/threadg.c:
11879         * testsuite/threads/threadh.c:
11880         * testsuite/threads/threadi.c:
11881           move all of these under tests
11883 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11885         * configure.ac:
11886         * tests/Makefile.am:
11887           fix distcheck
11889 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11891         * docs/gst/gstreamer-sections.txt:
11892         * tests/sched/.cvsignore:
11893         * tests/sched/Makefile.am:
11894         * tests/sched/cases/(fs-fs).xml:
11895         * tests/sched/cases/(fs-i-fs).xml:
11896         * tests/sched/cases/(fs-i-i-fs).xml:
11897         * tests/sched/cases/(fs-i-q[i-fs]).xml:
11898         * tests/sched/dynamic-pipeline.c:
11899         * tests/sched/interrupt1.c:
11900         * tests/sched/interrupt2.c:
11901         * tests/sched/interrupt3.c:
11902         * tests/sched/runtestcases:
11903         * tests/sched/runxml.c:
11904         * tests/sched/sched-stress.c:
11905         * tests/sched/sort.c:
11906         * tests/sched/testcases:
11907         * tests/sched/testcases1.tc:
11908         * tests/seeking/.cvsignore:
11909         * tests/seeking/Makefile.am:
11910         * tests/seeking/seeking1.c:
11911         * tests/threadstate/.cvsignore:
11912         * tests/threadstate/Makefile.am:
11913         * tests/threadstate/test1.c:
11914         * tests/threadstate/test2.c:
11915         * tests/threadstate/threadstate1.c:
11916         * tests/threadstate/threadstate2.c:
11917         * tests/threadstate/threadstate3.c:
11918         * tests/threadstate/threadstate4.c:
11919         * tests/threadstate/threadstate5.c:
11920           remove obsolete tests
11921         * configure.ac:
11922         * tests/bench-complexity.scm:
11923         * tests/bench-mass_elements.scm:
11924         * tests/complexity.c:
11925         * tests/complexity.gnuplot:
11926         * tests/instantiate/.cvsignore:
11927         * tests/instantiate/Makefile.am:
11928         * tests/instantiate/caps.c:
11929         * tests/mass_elements.c:
11930         * tests/network-clock-utils.scm:
11931         * tests/network-clock.scm:
11932         * tests/plot-data:
11933         First pass at cleaning up tests/ dir before moving the rest
11934         Combined with CVS surgery
11936 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11938         * po/POTFILES.in:
11939           queue has moved, update
11941 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11943         * docs/gst/gstreamer-sections.txt:
11944           remove double entries from the docs
11945         * gst/gst_private.h:
11946         * gst/gstinfo.c: (_gst_debug_init):
11947           remove the THREAD debug category
11948         * gst/Makefile.am:
11949         * gst/gstqueue.c:
11950         * gst/gstqueue.h:
11951         * docs/gst/gstreamer.types:
11952         * plugins/elements/gstqueue.c: (gst_queue_get_type),
11953         (gst_queue_init), (gst_queue_finalize), (gst_queue_change_state):
11954           completely move queue and fix up debugging categories
11956 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11958         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
11959           make initialization portable, using LL is not
11961 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11963         * win32/common/gstconfig.h:
11964           add large padding
11966 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11968         * win32/common/libgstreamer.def:
11969           rename symbols; sort base section
11971 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11973         * gst/gstclock.c: (do_linear_regression):
11974           remove crack non-portable handrolled DEBUG macro
11976 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
11978         * docs/random/release:
11979           update notes
11980         * win32/common/gstenumtypes.c: (register_gst_object_flags),
11981         (gst_object_flags_get_type), (register_gst_bin_flags),
11982         (gst_bin_flags_get_type), (register_gst_buffer_flag),
11983         (gst_buffer_flag_get_type), (register_gst_bus_flags),
11984         (gst_bus_flags_get_type), (register_gst_bus_sync_reply),
11985         (gst_bus_sync_reply_get_type), (register_gst_caps_flags),
11986         (gst_caps_flags_get_type), (register_gst_clock_return),
11987         (gst_clock_return_get_type), (register_gst_clock_entry_type),
11988         (gst_clock_entry_type_get_type), (register_gst_clock_flags),
11989         (gst_clock_flags_get_type), (register_gst_state),
11990         (gst_state_get_type), (register_gst_state_change_return),
11991         (gst_state_change_return_get_type), (register_gst_state_change),
11992         (gst_state_change_get_type), (register_gst_element_flags),
11993         (gst_element_flags_get_type), (register_gst_core_error),
11994         (gst_core_error_get_type), (register_gst_library_error),
11995         (gst_library_error_get_type), (register_gst_resource_error),
11996         (gst_resource_error_get_type), (register_gst_stream_error),
11997         (gst_stream_error_get_type), (register_gst_event_type_flags),
11998         (gst_event_type_flags_get_type), (register_gst_event_type),
11999         (gst_event_type_get_type), (register_gst_seek_type),
12000         (gst_seek_type_get_type), (register_gst_seek_flags),
12001         (gst_seek_flags_get_type), (register_gst_format),
12002         (gst_format_get_type), (register_gst_index_certainty),
12003         (gst_index_certainty_get_type), (register_gst_index_entry_type),
12004         (gst_index_entry_type_get_type),
12005         (register_gst_index_lookup_method),
12006         (gst_index_lookup_method_get_type), (register_gst_assoc_flags),
12007         (gst_assoc_flags_get_type), (register_gst_index_resolver_method),
12008         (gst_index_resolver_method_get_type), (register_gst_index_flags),
12009         (gst_index_flags_get_type), (register_gst_debug_level),
12010         (gst_debug_level_get_type), (register_gst_debug_color_flags),
12011         (gst_debug_color_flags_get_type), (register_gst_iterator_result),
12012         (gst_iterator_result_get_type), (register_gst_iterator_item),
12013         (gst_iterator_item_get_type), (register_gst_message_type),
12014         (gst_message_type_get_type), (register_gst_mini_object_flags),
12015         (gst_mini_object_flags_get_type), (register_gst_pad_link_return),
12016         (gst_pad_link_return_get_type), (register_gst_flow_return),
12017         (gst_flow_return_get_type), (register_gst_activate_mode),
12018         (gst_activate_mode_get_type), (register_gst_pad_direction),
12019         (gst_pad_direction_get_type), (register_gst_pad_flags),
12020         (gst_pad_flags_get_type), (register_gst_pad_presence),
12021         (gst_pad_presence_get_type), (register_gst_pad_template_flags),
12022         (gst_pad_template_flags_get_type), (register_gst_pipeline_flags),
12023         (gst_pipeline_flags_get_type), (register_gst_plugin_error),
12024         (gst_plugin_error_get_type), (register_gst_plugin_flags),
12025         (gst_plugin_flags_get_type), (register_gst_rank),
12026         (gst_rank_get_type), (register_gst_query_type),
12027         (gst_query_type_get_type), (register_gst_tag_merge_mode),
12028         (gst_tag_merge_mode_get_type), (register_gst_tag_flag),
12029         (gst_tag_flag_get_type), (register_gst_task_state),
12030         (gst_task_state_get_type), (register_gst_alloc_trace_flags),
12031         (gst_alloc_trace_flags_get_type),
12032         (register_gst_type_find_probability),
12033         (gst_type_find_probability_get_type), (register_gst_uri_type),
12034         (gst_uri_type_get_type), (register_gst_parse_error),
12035         (gst_parse_error_get_type):
12036         * win32/common/gstenumtypes.h:
12037         * win32/common/gstversion.h:
12038           update visual studio generated files
12040 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12042         * win32/vs6/libgstbase.dsp:
12043         * win32/vs6/libgstelements.dsp:
12044           update project files for new locations
12046 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
12048         * Makefile.am:
12049           remove some files
12050         * README:
12051           reinstate and update
12052         * DEVEL:
12053         * REQUIREMENTS:
12054           removed
12055         * LICENSE:
12056         * docs/random/LICENSE:
12057           moved to random
12059 2005-11-30  Edward Hervey  <edward@fluendo.com>
12061         * gst/gsttypefind.c: (gst_type_find_register):
12062         * gst/gsttypefind.h:
12063         * gst/gsttypefindfactory.c: (gst_type_find_factory_init),
12064         (gst_type_find_factory_dispose):
12065         * gst/gsttypefindfactory.h:
12066         Fix memory leak in GstTypeFindFactory.
12068 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12070         * gst/gst.c:
12071         * plugins/elements/Makefile.am:
12072         * plugins/elements/gstelements.c:
12073         * plugins/elements/gstqueue.c:
12074           move queue from core to the elements plugin
12076 2005-11-29  Andy Wingo  <wingo@pobox.com>
12078         * libs/gst/base/gstbasetransform.h: 
12079         * libs/gst/base/gstbasesrc.h: 
12080         * libs/gst/base/gstbasesink.h: en-LARGE the padding.
12082         * gst/gstconfig.h.in (GST_PADDING_LARGE): New define, the number
12083         of pointers by which to pad very extensible base classes (like the
12084         ones in libs/gst/base).
12086 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12088         * docs/gst/gstreamer-docs.sgml:
12089         * docs/gst/gstreamer-sections.txt:
12090         * docs/libs/gstreamer-libs-docs.sgml:
12091         * docs/libs/gstreamer-libs-sections.txt:
12092           moving documentation from core to lib
12094 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12096         * check/Makefile.am:
12097         * configure.ac:
12098         * docs/gst/Makefile.am:
12099         * gst/Makefile.am:
12100         * gst/base/.cvsignore:
12101         * gst/base/Makefile.am:
12102         * gst/base/README:
12103         * gst/base/gstadapter.c:
12104         * gst/base/gstadapter.h:
12105         * gst/base/gstbasesink.c:
12106         * gst/base/gstbasesink.h:
12107         * gst/base/gstbasesrc.c:
12108         * gst/base/gstbasesrc.h:
12109         * gst/base/gstbasetransform.c:
12110         * gst/base/gstbasetransform.h:
12111         * gst/base/gstcollectpads.c:
12112         * gst/base/gstcollectpads.h:
12113         * gst/base/gstpushsrc.c:
12114         * gst/base/gstpushsrc.h:
12115         * gst/base/gsttypefindhelper.c:
12116         * gst/base/gsttypefindhelper.h:
12117         * gst/check/Makefile.am:
12118         * gst/check/gstcheck.c:
12119         * gst/check/gstcheck.h:
12120         * gst/net/Makefile.am:
12121         * gst/net/gstnet.h:
12122         * gst/net/gstnetclientclock.c:
12123         * gst/net/gstnetclientclock.h:
12124         * gst/net/gstnettimepacket.c:
12125         * gst/net/gstnettimepacket.h:
12126         * gst/net/gstnettimeprovider.c:
12127         * gst/net/gstnettimeprovider.h:
12128         * libs/gst/Makefile.am:
12129         * libs/gst/base/Makefile.am:
12130         * libs/gst/base/gstbasetransform.c:
12131         * libs/gst/check/Makefile.am:
12132         * plugins/elements/Makefile.am:
12133         * po/POTFILES.in:
12134           CVS surgery + support to move base, check, and net out of gst
12135           and into libs/gst
12137 2005-11-29  Andy Wingo  <wingo@pobox.com>
12139         * gst/gstevent.h (struct _GstEvent): Only one pointer of padding.
12141         * gst/gststructure.h (struct _GstStructure): Only one pointer of
12142         padding.
12144         * gst/gstquery.h (struct _GstQuery): Only one pointer of padding.
12146         * gst/gstpluginfeature.h: Remove a comment in PluginFeature.
12148         * gst/gstplugin.h (struct _GstPluginClass): Add some padding.
12150         * gst/gstobject.h: (struct _GstObject): Only one pointer of
12151         padding; reduces object size by about 30%. We don't expect
12152         anything else to go into gstobject.
12154         * gst/gstminiobject.h (struct _GstMiniObject)
12155         (struct _GstMiniObjectClass): Only one pointer of padding; the
12156         payload is only a pointer and two ints anyway. For the class there
12157         are only two methods as well.
12158         
12159         * gst/gstelement.h (struct _GstElementClass): Removed
12160         the state_changed signal callback, it is not used.
12162 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12164         * docs/gst/gstreamer.types:
12165           fix includes, though they are a little dinky
12167 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12169         * check/Makefile.am:
12170           look in the right place for elements, a lot more chance of
12171           success
12172         * gst/Makefile.am:
12173           remove indexers and elements subdirs
12174         * plugins/Makefile.am:
12175           make indexers conditional
12177 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
12179         * Makefile.am:
12180         * configure.ac:
12181         * plugins/elements/Makefile.am:
12182         * plugins/elements/gstcapsfilter.c:
12183         * plugins/elements/gstfilesink.c:
12184         * plugins/elements/gstfilesrc.c:
12185         * plugins/elements/gstidentity.c:
12186         * plugins/indexers/Makefile.am:
12187           do CVS surgery and related build fixery to move elements
12188           and indexers in a new gstreamer/plugins directory, out of the
12189           gst/ directory
12191 2005-11-29  Andy Wingo  <wingo@pobox.com>
12193         * check/Makefile.am:
12194         * pkgconfig/gstreamer-net-uninstalled.pc.in:
12195         * pkgconfig/gstreamer-net.pc.in:
12196         * gst/net/Makefile.am: Rename gstnet-tempname to gstnet. Fixes
12197         #322257.
12199 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12201         * tools/Makefile.am:
12202         * tools/gst-complete.1.in:
12203         * tools/gst-complete.c:
12204         * tools/gst-compprep.1.in:
12205         * tools/gst-compprep.c:
12206           removing -compprep and -complete
12208 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12210         * gst/gstevent.c: (gst_event_new_new_segment),
12211         (gst_event_parse_new_segment):
12212         * gst/gstevent.h:
12213           fix #320529 - clean up new_segment API and structure.
12214           Let's hope everyone was using the methods, and not the structure.
12216 2005-11-29  Edward Hervey  <edward@fluendo.com>
12218         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
12219         (gst_base_sink_event), (gst_base_sink_do_sync),
12220         (gst_base_sink_activate_pull), (gst_base_sink_change_state):
12221         Properly handle non GST_FORMAT_TIME segment
12222         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
12223         Properly handle non GST_FORMAT_TIME segment
12224         * gst/gstsegment.c:
12225         This function is valid if the accumulator is 0 and the format
12226         is different from the requested format.
12227         
12228 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
12230         * docs/gst/gstreamer-sections.txt:
12231         Add gst_query_new_seeking and gst_query_parse_seeking to the
12232         docs.
12234 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
12236         * gst/base/gstbasetransform.c: (gst_base_transform_buffer_alloc):
12237           Treat a pad alloc with new caps the same as if we were not
12238           negotiated, in order to allow a changing upstream output
12239           to produce a new format of data.
12241 2005-11-29  Edward Hervey  <edward@fluendo.com>
12243         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
12244         (gst_base_transform_event), (gst_base_transform_eventfunc):
12245         The event virtual method is now properly implemented, with a default
12246         handler
12247         Sub classes should call the parent_class event method. They should
12248         return FALSE if they had a problem handling the given event, or don't
12249         want GstBaseTransform to send that even downstream
12250         * gst/elements/gstidentity.c: (gst_identity_class_init),
12251         (gst_identity_init), (gst_identity_event),
12252         (gst_identity_transform_ip), (gst_identity_set_property),
12253         (gst_identity_get_property):
12254         * gst/elements/gstidentity.h:
12255         Added the single-segment boolean property.
12256         If set to TRUE, it will output a single segment of data, starting from
12257         0, will eat up all incoming newsegment, and modify the timestamp of the
12258         buffers accordingly
12260 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
12262         * gst/gstghostpad.c: (gst_proxy_pad_get_target):
12263           Don't ref NULL target pad (#322751). Improve docs.
12265 2005-11-29  Michael Smith  <msmith@fluendo.com>
12267         * gst/gstregistryxml.c: (load_plugin):
12268           Don't crash if we failed to load a feature from a plugin. 
12270 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12272         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
12273         (GST_START_TEST):
12274           use more check API and less GLib API
12276 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12278         * Makefile.am:
12279           don't run checks if we don't have check
12280         * common/check.mak:
12281           remove the registry when running make torture
12282         * docs/gst/gstreamer-sections.txt:
12283           remove second multiply
12284         * gst/gstqueue.c: (gst_queue_loop):
12285           fix a compile warning when disabling debug
12287 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
12289         * gst/gstinfo.h:
12290         Hey! Let's print the pad name if the pointer != NULL instead
12291         of when it == NULL :-)
12293 2005-11-28  Wim Taymans  <wim@fluendo.com>
12295         * check/gst/gstutils.c: (GST_START_TEST):
12296         Updated check, add some scaling accuracy checking code.
12298         * gst/gstutils.c: (gst_util_div128_64),
12299         (gst_util_uint64_scale_int64), (gst_util_uint64_scale),
12300         (gst_util_uint64_scale_int):
12301         Fix 6 times faster division code. Optimize for common 
12302         1/1 and less common X/1 cases.
12304 2005-11-28  Wim Taymans  <wim@fluendo.com>
12306         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
12307         More checks.
12309         * gst/gstclock.c: (gst_clock_finalize), (gst_clock_set_master),
12310         (do_linear_regression), (gst_clock_add_observation):
12311         Cleanups.
12312         Release lock when the clock cannot be slaved.
12313         Catch the case where the regression returned an invalid denominator.
12315         * gst/gstutils.c: (gst_util_div128_64_iterate),
12316         (gst_util_div128_64), (gst_util_uint64_scale_int64),
12317         (gst_util_uint64_scale), (gst_util_uint64_scale_int):
12318         Add protentially more performant non-iterative 128/64 divide function
12319         that unfortunatly does not work yet.
12320         Shortcut the trivial 0/X = 0 case.
12321         Remove the warnings on overflow.
12323 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12325         * gst/gstplugin.c: (gst_plugin_register_func):
12326           everything causing a plugin not to load should be at least a WARNING
12328 2005-11-28  Stefan Kost  <ensonic@users.sf.net>
12330         * docs/random/ensonic/dparams.txt:
12331           some TODOs for the next dev cycle
12332         * libs/gst/controller/gstcontroller.c:
12333         (gst_controlled_property_set_interpolation_mode),
12334         (gst_controlled_property_new):
12335         * libs/gst/controller/gstcontroller.h:
12336           use base type to assign acccessor functions
12338 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
12340         * check/Makefile.am:
12341         Oops, that should have been top_srcdir
12343 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
12345         * check/Makefile.am:
12346         * check/elements/fdsrc.c: (GST_START_TEST):
12347         Use a cmdline define to specify the location of a file to use for
12348         testing, to avoid breaking distcheck.
12350 2005-11-28  Andy Wingo  <wingo@pobox.com>
12352         * gst/gstpad.c (fixate_value): Use array functions for arrays.
12354 2005-11-28  Edward Hervey  <edward@fluendo.com>
12356         * tools/gst-launch.c: (main):
12357         Clarify the output strings, makes it easier to translate.
12358         Fixes #322626
12360 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
12362         * gst/Makefile.am:
12363           don't try and build net if we don't even have <sys/socket.h>
12365 2005-11-27  Jan Schmidt  <thaytan@mad.scientist.com>
12367         * check/Makefile.am:
12368         * check/elements/fdsrc.c: (event_func), (setup_fdsrc),
12369         (cleanup_fdsrc), (GST_START_TEST), (fdsrc_suite), (main):
12370           Add tests for fdsrc seekability
12372         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
12373         (gst_fdsrc_init), (gst_fdsrc_update_fd), (gst_fdsrc_start),
12374         (gst_fdsrc_set_property), (gst_fdsrc_is_seekable),
12375         (gst_fdsrc_get_size), (gst_fdsrc_uri_set_uri):
12376         * gst/elements/gstfdsrc.h:
12377           fdsrc should not be a 'live' source.
12378           Implement seeking on seekable fd's.
12380         * gst/gstquery.c: (gst_query_new_seeking),
12381         (gst_query_parse_seeking):
12382         * gst/gstquery.h:
12383           Implement SEEKING query functions: 
12384             *_new_seeking and *_parse_seeking
12386 2005-11-27  Stefan Kost  <ensonic@users.sf.net>
12388         * gst/gstelement.c: (gst_element_dispose):
12389           don't loop forever
12391         * gst/gstiterator.c:
12392         * gst/gststructure.c:
12393           doc fixes
12395         * libs/gst/controller/gstcontroller.c:
12396         (gst_controlled_property_set_interpolation_mode):
12397         * libs/gst/controller/gstcontroller.h:
12398         * libs/gst/controller/gstinterpolation.c:
12399         (interpolate_none_get_enum_value_array):
12400           support controlling enums
12402 2005-11-27  Tim-Philipp Müller  <tim at centricular dot net>
12404         * gst/gstvalue.c:
12405           Improve documentation for gst_value_union().
12407         * gst/gstvalue.h:
12408           Change return value for union, intersect and subtract functions
12409           from gint to gboolean.
12411 2005-11-27  Tim-Philipp Müller  <tim at centricular dot net>
12413         * gst/gstvalue.c: (gst_value_serialize_any_list),
12414         (gst_value_transform_any_list_string),
12415         (gst_value_deserialize_list), (gst_value_deserialize_array),
12416         (gst_value_set_int_range), (gst_value_deserialize_int_range),
12417         (gst_value_set_double_range), (gst_value_deserialize_double_range),
12418         (gst_value_set_fraction_range_full),
12419         (gst_value_deserialize_fraction_range),
12420         (gst_value_deserialize_caps), (gst_value_deserialize_buffer),
12421         (gst_value_deserialize_boolean),
12422         (gst_value_deserialize_int_helper), (gst_value_deserialize_double),
12423         (gst_value_serialize_float), (gst_value_deserialize_float),
12424         (gst_string_wrap), (gst_value_deserialize_string),
12425         (gst_value_deserialize_enum), (gst_value_deserialize_flags),
12426         (gst_value_union_int_range_int_range),
12427         (gst_value_intersect_int_range_int_range),
12428         (gst_value_intersect_double_range_double_range),
12429         (gst_value_create_new_range), (gst_value_subtract_int_range_int),
12430         (gst_value_subtract_int_range_int_range),
12431         (gst_value_subtract_double_double_range),
12432         (gst_value_subtract_double_range_double_range),
12433         (gst_value_deserialize_fraction):
12434         * gst/gstvalue.h:
12435           Use gint, gdouble and gchar in our API instead of int, double and
12436           char (and make usage in gstvalue.c more consistent).
12438 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12440         * check/Makefile.am:
12441         * libs/gst/controller/Makefile.am:
12442         * libs/gst/dataprotocol/Makefile.am:
12443           fix up Makefile.am and remove GST_ENABLE_NEW
12445 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12447         * configure.ac:
12448         * gst/Makefile.am:
12449         * gst/base/Makefile.am:
12450         * gst/check/Makefile.am:
12451         * gst/elements/Makefile.am:
12452         * gst/net/Makefile.am:
12453           update LDFLAGS use some more
12455 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
12457         * common/m4/gst-doc.m4:
12458           Fixes #312589
12460 2005-11-26  Edward Hervey  <edward@fluendo.com>
12462         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
12463         This shouldn't issue a g_warning since it returns NULL if it
12464         couldn't find the plugin, and all functions using this behave
12465         properly on a NULL return. Switching to a GST_WARNING.
12467 2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>
12469         * gst/gstbin.c: (gst_bin_handle_message_func):
12470         Don't leak clock messages.
12472 2005-11-25  Wim Taymans  <wim@fluendo.com>
12474         * gst/gstutils.c: (gst_util_uint64_scale_int64),
12475         (gst_util_uint64_scale_int):
12476         Optimisations, remove unneeded vars.
12478 2005-11-25  Wim Taymans  <wim@fluendo.com>
12480         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
12481         Added more checks for the high precision uint64 cases.
12483         * gst/gstutils.c: (gst_util_uint64_scale_int64),
12484         (gst_util_uint64_scale), (gst_util_uint64_scale_int):
12485         Implement high precision (guint64 * guint64) / guint64.
12487 2005-11-24  Wim Taymans  <wim@fluendo.com>
12489         * gst/base/gstbasesrc.c: (gst_base_src_query):
12490         Fix wrong percentage query.
12492         * gst/gstutils.c: (gst_util_uint64_scale),
12493         (gst_util_uint64_scale_int):
12494         Add some more common cases that can be handled 
12495         efficiently to _scale.
12497 2005-11-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12499         * check/gst/gstminiobject.c: (thread_ref), (GST_START_TEST),
12500         (gst_mini_object_suite):
12501           don't use check calls from threads; check probably isn't
12502           threadsafe and using a lock to make it threadsafe would
12503           defeat the purpose of this check
12504         * gst/check/gstcheck.c:
12505         * gst/check/gstcheck.h:
12506           use GST_DEBUG some more
12508 2005-11-24  Wim Taymans  <wim@fluendo.com>
12510         * gst/gstutils.c: (gst_util_uint64_scale),
12511         (gst_util_uint64_scale_int):
12512         Chain trivial case to _scale_int.
12514 2005-11-24  Wim Taymans  <wim@fluendo.com>
12516         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
12517         Added test for scaling.
12519         * gst/gstclock.h:
12520         Small doc fix.
12522         * gst/gstutils.c: (gst_util_uint64_scale_int):
12523         Implemented high precision scaling code.
12525 2005-11-24  Stefan Kost  <ensonic@users.sf.net>
12527         * gst/gstinfo.h:
12528           do not crash on pad==NULL
12530 2005-11-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12532         Patch by: Stefan Kost
12534         * common/gtk-doc.mak:
12535         * docs/gst/Makefile.am:
12536         * docs/libs/Makefile.am:
12537           Fix distcheck issues for the libraries docs build
12538           Closes #319599.
12540 2005-11-24  Michael Smith <msmith@fluendo.com>
12542         * docs/manual/basics-helloworld.xml:
12543           Fix bug #315027: memory leak in example code in docs.
12545 2005-11-24  Michael Smith <msmith@fluendo.com>
12547         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
12548           Unlock the PREROLL_LOCK in a failure case.
12550 2005-11-24  Wim Taymans  <wim@fluendo.com>
12552         * docs/gst/gstreamer-sections.txt:
12553         * gst/base/gstadapter.h:
12554         * gst/base/gstbasesink.h:
12555         * gst/base/gstbasesrc.h:
12556         * gst/base/gstbasetransform.h:
12557         * gst/base/gstpushsrc.h:
12558         * gst/elements/gstfakesink.h:
12559         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type):
12560         * gst/elements/gstfakesrc.h:
12561         * gst/elements/gstfilesink.h:
12562         * gst/elements/gstfilesrc.h:
12563         * gst/gst.c:
12564         * gst/gstbin.c:
12565         * gst/gstbuffer.c: (_gst_buffer_copy):
12566         * gst/gstbus.h:
12567         * gst/gstcaps.c:
12568         * gst/gstchildproxy.c:
12569         * gst/gstclock.c:
12570         * gst/gstelement.c:
12571         * gst/gstelementfactory.c:
12572         * gst/gstelementfactory.h:
12573         * gst/gstevent.c:
12574         * gst/gstghostpad.h:
12575         * gst/gstindex.h:
12576         * gst/gstinterface.h:
12577         * gst/gstminiobject.c:
12578         * gst/gstminiobject.h:
12579         * gst/gstpad.c:
12580         * gst/gstpad.h:
12581         * gst/gstpadtemplate.h:
12582         * gst/gstpipeline.h:
12583         * gst/gstpluginfeature.h:
12584         * gst/gstquery.h:
12585         * gst/gstqueue.h:
12586         * gst/gsttaglist.c:
12587         * gst/gsttaglist.h:
12588         * gst/gsttagsetter.c:
12589         * gst/gsttagsetter.h:
12590         * gst/gsttrace.c:
12591         * gst/gsttrace.h:
12592         * gst/gsttypefind.h:
12593         * gst/gsturi.h:
12594         * gst/gstvalue.c:
12595         * gst/net/gstnetclientclock.c:
12596         * gst/net/gstnetclientclock.h:
12597         * gst/net/gstnettimepacket.c:
12598         * gst/net/gstnettimeprovider.c:
12599         * gst/net/gstnettimeprovider.h:
12600         Doc fixes.
12602 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12604         * configure.ac: back to HEAD
12606 === release 0.9.6 ===
12608 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
12610         * configure.ac:
12611           releasing 0.9.6, "Always On Time"
12613 2005-11-23  Wim Taymans  <wim@fluendo.com>
12615         * docs/gst/gstreamer-sections.txt:
12616         * gst/glib-compat.c:
12617         * gst/gsttagsetter.c:
12618         * gst/gstvalue.c:
12619         * gst/net/gstnetclientclock.c:
12620         * gst/net/gstnettimepacket.h:
12621         Doc updates.
12623 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12625         * docs/faq/using.xml:
12626         * docs/libs/tmpl/gstcontrol.sgml:
12627         * docs/manual/advanced-dparams.xml:
12628         * docs/manual/appendix-checklist.xml:
12629         * docs/manual/basics-elements.xml:
12630         * docs/pwg/other-source.xml:
12631         * docs/random/moving-plugins:
12632         * gst/gstpad.c:
12633         * tools/gst-launch.1.in:
12634           remove mentions of sinesrc
12636 2005-11-23  Michael Smith <msmith@fluendo.com>
12638         * docs/gst/gstreamer-sections.txt:
12639           Update for new API and API changes.
12640         * gst/gstobject.h:
12641           Documentation fix: GST_TRYLOCK -> GST_OBJECT_TRYLOCK
12642         * gst/gstvalue.c:
12643           Documentation typo fix.
12644         * gst/net/gstnettimepacket.c:
12645           Documentation fixes for arguments.
12647 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
12649         * gst/gststructure.c: (gst_structure_get_fraction),
12650         (gst_structure_parse_value),
12651         (gst_structure_fixate_field_nearest_fraction):
12652         * gst/gststructure.h:
12653         * gst/gstutils.c: (gst_util_uint64_scale_int):
12654         * gst/gstutils.h:
12655         * scripts/update-funcnames:
12656         API Changes. 
12657         Rename gst_util_clock_time_scale to gst_util_uint64_scale_int
12658         Make gst_structure_fixate_field_nearest_fraction take a numerator
12659         and denominator argument instead of a GValue
12660         add gst_structure_get_fraction helper function.
12662 2005-11-23  Wim Taymans  <wim@fluendo.com>
12664         * docs/design/part-TODO.txt:
12665         Update TODO.
12667         * gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
12668         * gst/net/gstnetclientclock.h:
12669         Use parent fields for timeout and window_size.
12671 2005-11-23  Andy Wingo  <wingo@pobox.com>
12673         * check/net/gstnetclientclock.c (test_functioning): Adjust to
12674         rate_num/rate_denom change.
12676         * gst/net/gstnetclientclock.c
12677         (gst_net_client_clock_observe_times): Take the SLAVE_LOCK not the
12678         OBJECT_LOCK. Don't call add_observation with the lock.
12680         * gst/gstclock.c (gst_clock_init): Initialize the rate as a
12681         fraction.
12682         (gst_clock_adjust_unlocked): Adjust using uint64_scale and the
12683         rate fraction.
12684         (gst_clock_set_calibration, gst_clock_get_calibration): Change to
12685         deal with rate as a fraction whose numerator and denominator are
12686         GstClockTime values.
12687         (gst_clock_set_master): Only use the OBJECT_LOCK to set the
12688         master; the other fields are protected by the SLAVE_LOCK.
12689         (do_linear_regression): Note that this must be called with the
12690         SLAVE_LOCK.
12691         (gst_clock_add_observation): Take the SLAVE_LOCK, not the
12692         OBJECT_LOCK. Call set_calibration instead of touching the
12693         variables directly.
12694         (gst_clock_set_property, gst_clock_get_property): Protect
12695         master/slave parameters with the SLAVE_LOCK.
12697         * gst/gstclock.h (GstClock): Remove rate, add rate_numerator and
12698         rate_denominator. PR3C1S3. Add a new lock, the SLAVE_LOCK, and
12699         note that all of the instance variables that add_observation and
12700         the set_master functions use are protected by that lock and not
12701         the OBJECT_LOCK.
12702         (GST_CLOCK_SLAVE_LOCK, GST_CLOCK_SLAVE_UNLOCK): New macros.
12704         * gst/gstclock.c (gst_clock_add_observation): No longer requires
12705         the caller to take the object lock.
12707 2005-11-23  Wim Taymans  <wim@fluendo.com>
12709         * gst/gsterror.c: (_gst_core_errors_init):
12710         * gst/gsterror.h:
12711         Add error for clock stuff.
12713         * gst/gstpipeline.c: (gst_pipeline_change_state),
12714         (gst_pipeline_set_clock):
12715         Post clock error when clock cannot be used in a pipeline.
12717 2005-11-23  Stefan Kost  <ensonic@users.sf.net>
12719         * docs/gst/gstreamer-sections.txt:
12720           make two symbols from gstinfo private for the docs
12721         * gst/base/gstcollectpads.h:
12722         * gst/gstutils.c:
12723           fix doc typos, update docs
12725 2005-11-22  Wim Taymans  <wim@fluendo.com>
12727         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
12728         (gst_base_sink_wait), (gst_base_sink_do_sync),
12729         (gst_base_sink_handle_event):
12730         * gst/base/gstbasesink.h:
12731         No need to store the clock, the parent element class already
12732         has it.
12734         * gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
12735         Updates for clock_set returning a gboolean
12737         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
12738         (gst_clock_id_wait_async), (gst_clock_class_init),
12739         (gst_clock_init), (gst_clock_finalize),
12740         (gst_clock_get_internal_time), (gst_clock_get_time),
12741         (gst_clock_slave_callback), (gst_clock_set_master),
12742         (gst_clock_get_master), (do_linear_regression),
12743         (gst_clock_add_observation), (gst_clock_set_property),
12744         (gst_clock_get_property):
12745         * gst/gstclock.h:
12746         Implement master/slave. When setting a clock as a slave, a
12747         periodic timeout is scheduled to sample master and slave times.
12748         Then the slave clock is recalibrated to match offset and rate
12749         of the master clock.
12750         Update logging a bit.
12751         Add flag so that a clock can state that is cannot be slaved to
12752         another clock.
12754         * gst/gstelement.c: (gst_element_set_clock):
12755         * gst/gstelement.h:
12756         The set clock returns a gboolean for when an element cannot
12757         deal with the selected clock in the pipeline. 
12759         * gst/gstpipeline.c: (gst_pipeline_change_state),
12760         (gst_pipeline_set_clock):
12761         * gst/gstpipeline.h:
12762         Handle the case where the selected clock cannot be set on
12763         the pipeline.
12765         * gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
12766         (gst_net_client_clock_init), (gst_net_client_clock_finalize),
12767         (gst_net_client_clock_set_property),
12768         (gst_net_client_clock_get_property),
12769         (gst_net_client_clock_observe_times):
12770         * gst/net/gstnetclientclock.h:
12771         Use regression code in GstClock parent, remove duplicated
12772         functionality.
12774 2005-11-22  Michael Smith <msmith@fluendo.com>
12776         * gst/gstutils.c: (gst_util_clock_time_scale):
12777         * gst/gstutils.h:
12778         * docs/gst/gstreamer-sections.txt:
12779           Rename method to have extra underscore.
12781 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
12783         * gst/elements/Makefile.am:
12784         * gst/elements/gstfakesink.c: (gst_fake_sink_state_error_get_type):
12785         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
12786         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type),
12787         (gst_fake_src_init), (gst_fake_src_prepare_buffer),
12788         (gst_fake_src_alloc_buffer), (gst_fake_src_get_size):
12789         * gst/elements/gstfakesrc.h:
12790         * gst/gstqueue.c: (queue_leaky_get_type):
12791           correctly fix GEnumValues so that nick is the short lowercase
12792           dashed tag
12793         * tools/gst-inspect.c: (print_element_properties_info):
12794           also show the nick, since it's useful to use from parse_launch
12795           syntax
12796           Fixes #322139
12798 2005-11-22  Michael Smith <msmith@fluendo.com>
12800         * gst/gstutils.c: (gst_util_clocktime_scale):
12801         * gst/gstutils.h:
12802         * docs/gst/gstreamer-sections.txt:
12803           Add util method for scaling a clocktime by a fraction. Useful 
12804           implementation is left as an exercise for the reader.
12806 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12808         * gst/gstvalue.c: (gst_value_collect_fraction_range):
12809         If needed, allocate storage in the destination value during
12810         collection.
12812 2005-11-22  Edward Hervey  <edward@fluendo.com>
12814         * docs/gst/gstreamer-sections.txt:
12815         * gst/Makefile.am:
12816         * gst/gst.h:
12817         * gst/gsturitype.c:
12818         * gst/gsturitype.h:
12819         * gst/gstutils.c: (gst_util_set_object_arg):
12820         * tools/gst-compprep.c: (main):
12821         * tools/gst-inspect.c: (print_element_properties_info):
12822         Removed GstURI, closes bug #321061
12824 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12826         * check/gst/gststructure.c: (GST_START_TEST):
12827         * gst/gststructure.c: (gst_structure_parse_value):
12828           Oops, broke automatic string type parsing.
12829           Add a test to catch it in future.
12831 2005-11-22  Andy Wingo  <wingo@pobox.com>
12833         * gst/gsttagsetter.c (gst_tag_setter_get_tag_merge_mode) 
12834         (gst_tag_setter_set_tag_merge_mode, gst_tag_setter_get_tag_list):
12835         Actually rename the function implementations. Grr.
12837 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12839         * check/gst/capslist.h:
12840           Comment test cases
12841         * check/gst/gststructure.c: (GST_START_TEST),
12842         (gst_structure_suite):
12843           Test automatic value type detection in gst_structure_from_string.
12844         * gst/gststructure.c: (gst_structure_parse_value):
12845           Add fraction as a type we try and guess automatically in
12846           caps/structure strings.
12848 2005-11-22  Andy Wingo  <wingo@pobox.com>
12850         patch by: Torsten Schoenfeld <kaffeetisch gmx de>
12852         * gst/gsttagsetter.h:
12853         * gst/gsttagsetter.c: (gst_tag_setter_merge_tags)
12854         (gst_tag_setter_add_tags, gst_tag_setter_add_tag_values)
12855         (gst_tag_setter_add_tag_valist)
12856         (gst_tag_setter_add_tag_valist_values): Renamed from _merge, _add,
12857         _add_values, _add_valist, and _add_valist_values. Since this is an
12858         interface the function suffixes should be more explicit so
12859         language binding don't end up with element.add_valist ->
12860         gst_tag_setter_add_valist, for example. Fixes #322069.
12862 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12864         * check/gst/gstcaps.c: (GST_START_TEST):
12865           Extend caps string tests to check that a caps to string
12866           conversion is reversible and produces the same caps.
12868         * gst/gststructure.c: (gst_structure_value_get_generic_type):
12869           Output "fraction" as the generic type fraction range, so caps
12870           serialisation and deserialisation works.
12871         * check/gst/capslist.h:
12872         * gst/gstvalue.c: (gst_value_deserialize_fraction):
12873           Support 'MIN' and 'MAX' for deserialising fractions.
12875 2005-11-22  Andy Wingo  <wingo@pobox.com>
12877         * gst/gstevent.h (gst_event_new_new_segment)
12878         (gst_event_parse_new_segment, gst_event_new_buffer_size)
12879         (gst_event_parse_buffer_size, gst_ghost_pad_new_no_target):
12880         Renamed from *_newsegment, *_buffersize, *_notarget.
12882         * scripts/update-funcnames: New script, performs the changes
12883         listed above.
12885 2005-11-22  Wim Taymans  <wim@fluendo.com>
12887         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
12888         Make sure the GstFlowReturn is returned.
12890         * gst/gstbus.c: (gst_bus_add_signal_watch_full),
12891         (gst_bus_add_signal_watch):
12892         * gst/gstbus.h:
12893         add gst_bus_add_signal_watch_full.
12895         * gst/gstplugin.c: (gst_plugin_load_file):
12896         Small style cleanup.
12898 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12900         * check/gst/gstevent.c: (test_event), (GST_START_TEST):
12901           Block the fakesrc srcpad when we send an event, to avoid
12902           contention on the stream_lock causing random test failures.
12904 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12906         * check/gst/gstvalue.c: (GST_START_TEST):
12907         * gst/gstvalue.c: (gst_value_fraction_subtract):
12908           Fix subtraction.
12910 2005-11-22  Stefan Kost  <ensonic@users.sf.net>
12912         * gst/gst.h:
12913           include "gstchildproxy.h"
12914         * gst/gstchildproxy.h:
12915         * libs/gst/controller/gstcontroller.h:
12916           use G_GNUC_NULL_TERMINATED
12918 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
12920         * check/gst/capslist.h:
12921         * check/gst/gstcaps.c: (GST_START_TEST):
12922         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
12923         * gst/gststructure.c: (gst_structure_parse_range),
12924         (gst_structure_fixate_field_nearest_fraction):
12925         * gst/gststructure.h:
12926         * gst/gstvalue.c: (gst_value_init_fraction_range),
12927         (gst_value_free_fraction_range), (gst_value_copy_fraction_range),
12928         (gst_value_collect_fraction_range),
12929         (gst_value_lcopy_fraction_range), (gst_value_set_fraction_range),
12930         (gst_value_set_fraction_range_full),
12931         (gst_value_get_fraction_range_min),
12932         (gst_value_get_fraction_range_max),
12933         (gst_value_serialize_fraction_range),
12934         (gst_value_transform_fraction_range_string),
12935         (gst_value_compare_fraction_range),
12936         (gst_value_deserialize_fraction_range),
12937         (gst_value_intersect_fraction_fraction_range),
12938         (gst_value_intersect_fraction_range_fraction_range),
12939         (gst_value_subtract_fraction_fraction_range),
12940         (gst_value_subtract_fraction_range_fraction),
12941         (gst_value_subtract_fraction_range_fraction_range),
12942         (gst_value_collect_fraction), (gst_value_fraction_multiply),
12943         (gst_value_fraction_subtract), (gst_value_deserialize_fraction),
12944         (gst_value_transform_string_fraction), (_gst_value_initialize):
12945         * gst/gstvalue.h:
12946           Implement fraction ranges and extend GstFraction to support
12947           arithmetic subtraction, as well as deserialization from integer
12948           strings such as "100"
12949           Add a testsuite as for int and double range set operations
12951 2005-11-21  Andy Wingo  <wingo@pobox.com>
12953         * gst/gsttaglist.h: 
12954         * gst/gstcaps.h: 
12955         * gst/gststructure.h: Add glib-compat.h.
12957 2005-11-21  Wim Taymans  <wim@fluendo.com>
12959         * gst/gstbin.c: (gst_bin_change_state_func):
12960         Fix for #321595
12962 2005-11-21  Wim Taymans  <wim@fluendo.com>
12964         * gst/gstsegment.h:
12965         And add a nice define too.
12967 2005-11-21  Wim Taymans  <wim@fluendo.com>
12969         * gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
12970         (gst_segment_new), (gst_segment_free), (gst_segment_init),
12971         (gst_segment_set_duration), (gst_segment_set_last_stop),
12972         (gst_segment_set_seek), (gst_segment_set_newsegment),
12973         (gst_segment_to_stream_time), (gst_segment_to_running_time),
12974         (gst_segment_clip):
12975         * gst/gstsegment.h:
12976         Make binding friendly.
12978 2005-11-21  Andy Wingo  <wingo@pobox.com>
12980         * gst/gsttagsetter.h: 
12981         * gst/gsttaglist.h: 
12982         * gst/gststructure.h: 
12983         * gst/gstcaps.h: 
12984         * gst/gstutils.h: Sprinkle NULL_TERMINATED to taste. Fixes
12985         #319940.
12987         * gst/gsterror.c (_gst_core_errors_init):
12988         * gst/gsterror.h (GST_CORE_ERROR_MISSING_PLUGIN): New error
12989         category.
12991         * gst/Makefile.am (gst_headers): Add glib-compat.h.
12992         (noinst_HEADERS): noinst the -private.
12994 2005-11-21  Michael Smith <msmith@fluendo.com>
12996         * gst/gstplugin.h:
12997         * gst/gstregistry.h:
12998           Remove unimplemented declarations for which we can see no sensible
12999           use.
13001 2005-11-21  Andy Wingo  <wingo@pobox.com>
13003         * gst/gst.h: Include glib-compat.h.
13005         * gst/glib-compat.h: Add G_GNUC_NULL_TERMINATED.
13007         * gst/glib-compat.c: Include the public and the private header.
13009         * gst/glib-compat-private.h: Copied here from glib-compat.h.
13011         * gst/gstvalue.c: 
13012         * gst/gstpad.c: 
13013         * gst/gstregistryxml.c: s/glib-compat/glib-compat-private/.
13015         * check/gst/gstevent.c (create_custom_events): Check that
13016         FLUSH_STOP is serialized.
13018         * check/elements/identity.c (event_func): 
13019         * check/elements/fakesrc.c (event_func): No stream lock, the core
13020         takes it.
13022         * gst/base/gstbasetransform.c (gst_base_transform_event): No more
13023         stream lock taking, yay.
13025         * gst/gstevent.h (GST_EVENT_FLUSH_STOP): Marked as serialized to
13026         ensure that core takes the stream lock.
13028         * gst/base/gstbasesrc.c (gst_base_src_do_seek): Update for stream
13029         lock name change.
13031         * gst/base/gstbasesink.c (gst_base_sink_event): No need to take
13032         the stream lock for EOS, NEWSEGMENT, or FLUSH_STOP, the core does
13033         it already. For the flush start we do take it though so we get the
13034         right preroll state change messages.
13036         * gst/gstqueue.c (gst_queue_sink_activate_push): No need to take
13037         the stream lock here, the core does it for us.
13039         * gst/gstpad.h (GST_PAD_GET_STREAM_LOCK): Renamed from
13040         GST_STREAM_GET_LOCK.
13041         (GST_PAD_STREAM_LOCK, GST_PAD_STREAM_TRYLOCK) 
13042         (GST_PAD_STREAM_UNLOCK, GST_PAD_STREAM_UNLOCK_FULL) 
13043         (GST_PAD_STREAM_LOCK_FULL): Renamed from GST_STREAM_*.
13044         (GST_PAD_GET_PREROLL_LOCK): Renamed from GST_PREROLL_GET_LOCK.
13045         (GST_PAD_PREROLL_LOCK, GST_PAD_PREROLL_TRYLOCK) 
13046         (GST_PAD_PREROLL_UNLOCK): Renamed from GST_PREROLL_*.
13048         * gst/gstpad.c: Update for stream lock name change.
13050         * gst/base/gstbasesink.c: Update for preroll lock name change.
13052 2005-11-21  Wim Taymans  <wim@fluendo.com>
13054         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_master),
13055         (gst_clock_get_master):
13056         * gst/gstclock.h:
13057         * gst/gstsystemclock.c: (gst_system_clock_init):
13058         Convert Clock flags to object flags.
13059         Added methods to manage master/slave clocks.
13061 2005-11-21  Wim Taymans  <wim@fluendo.com>
13063         * check/gst/gstsegment.c: (GST_START_TEST):
13064         * docs/design/part-TODO.txt:
13065         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
13066         (gst_base_sink_event), (gst_base_sink_do_sync),
13067         (gst_base_sink_activate_pull), (gst_base_sink_get_position),
13068         (gst_base_sink_query), (gst_base_sink_change_state):
13069         * gst/base/gstbasesink.h:
13070         * gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
13071         (gst_base_src_default_newsegment),
13072         (gst_base_src_configure_segment), (gst_base_src_do_seek),
13073         (gst_base_src_get_range), (gst_base_src_loop),
13074         (gst_base_src_change_state):
13075         * gst/base/gstbasesrc.h:
13076         * gst/base/gstbasetransform.c:
13077         (gst_base_transform_prepare_output_buf),
13078         (gst_base_transform_event), (gst_base_transform_change_state):
13079         * gst/base/gstbasetransform.h:
13080         * gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
13081         (gst_collect_pads_event):
13082         * gst/base/gstcollectpads.h:
13083         * gst/elements/gstfakesrc.c: (gst_fake_src_init),
13084         (gst_fake_src_create):
13085         * gst/elements/gstfakesrc.h:
13086         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
13087         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
13088         (gst_segment_set_last_stop), (gst_segment_set_seek),
13089         (gst_segment_set_newsegment), (gst_segment_to_stream_time),
13090         (gst_segment_to_running_time), (gst_segment_clip):
13091         * gst/gstsegment.h:
13092         More segment updates, replace code in plugins with segment
13093         helper functions.
13095 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
13097         * gst/elements/gstfdsrc.c: (gst_fdsrc_uri_set_uri):
13098         Don't ignore sscanf results
13100 2005-11-21  Andy Wingo  <wingo@pobox.com>
13102         * gst/gstpad.h (GST_IS_PAD_FAST): Removed.
13104         * *.h:
13105         * *.c: Ran scripts/update-macros. Oh yes.
13107         * gst/gstobject.h (GST_OBJECT_GET_LOCK, GST_OBJECT_LOCK)
13108         (GST_OBJECT_TRYLOCK, GST_OBJECT_UNLOCK): Renamed from
13109         GST_GET_LOCK, etc.
13111         * scripts/update-macros: New script. Run it on your files to
13112         change GST_LOCK to GST_OBJECT_LOCK, and the same for UNLOCK as
13113         well.
13115 2005-11-21  Stefan Kost  <ensonic@users.sf.net>
13117         * docs/gst/Makefile.am:
13118         * docs/gst/gstreamer-docs.sgml:
13119         * docs/gst/gstreamer-sections.txt:
13120         * docs/gst/gstreamer.types:
13121         * gst/gstinfo.h:
13122           more docs fixes, add new api to the docs
13124 2005-11-21  Andy Wingo  <wingo@pobox.com>
13126         * gst/gstbin.c (gst_bin_remove_func): Wim claims I can remove this
13127         state_broadcast call.
13129         * gst/gstsegment.c (gst_segment_init): Initialize abs_rate.
13131 2005-11-21  Julien MOUTTE  <julien@moutte.net>
13133         * gst/gstvalue.c: (gst_value_intersect_array): Fix wrong
13134         function calls for arrays.
13136 2005-11-21  Stefan Kost  <ensonic@users.sf.net>
13138         * docs/random/ensonic/media-device-daemon.txt:
13139           wild idea, can this be done?
13140         * docs/gst/gstreamer-sections.txt:
13141         * gst/gsterror.h:
13142         * gst/gstfilter.c:
13143         * gst/gstfilter.h:
13144         * gst/gstplugin.h:
13145         * gst/gstpluginfeature.c:
13146         * gst/gsttrace.c:
13147         * gst/gstvalue.c:
13148         * gst/gstvalue.h:
13149           doc fixes and additions
13151 2005-11-21  Andy Wingo  <wingo@pobox.com>
13153         * gst/base/gstbasesrc.c (GST_LIVE_BROADCAST, GST_LIVE_SIGNAL) 
13154         (GST_LIVE_TIMED_WAIT, GST_LIVE_WAIT, GST_LIVE_GET_COND) 
13155         (GST_LIVE_UNLOCK, GST_LIVE_TRYLOCK, GST_LIVE_LOCK) 
13156         (GST_LIVE_GET_LOCK): Moved here from gstbasesrc.h. They are
13157         private to the basesrc implementation.
13159         * gst/gstpad.c (gst_pad_send_event): Doc more. Take stream lock on
13160         behalf of event function if necessary. It should no longer be
13161         necessary to take the stream lock in pad's event functions. Fixes
13162         #320299.
13164 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
13165         * docs/gst/gstreamer-sections.txt:
13166         * gst/gststructure.c: (gst_structure_fixate_field_nearest_int),
13167         (gst_structure_fixate_field_nearest_double),
13168         (gst_structure_fixate_field_boolean):
13169         * gst/gststructure.h:
13170         * win32/common/libgstreamer.def:
13171         * win32/gstreamer.def:
13173         Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
13174         (#322027)
13176 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
13178         * gst/elements/gstfdsrc.c: (_do_init), (gst_fdsrc_class_init),
13179         (gst_fdsrc_init), (gst_fdsrc_dispose), (gst_fdsrc_set_property),
13180         (gst_fdsrc_uri_get_type), (gst_fdsrc_uri_get_protocols),
13181         (gst_fdsrc_uri_get_uri), (gst_fdsrc_uri_set_uri),
13182         (gst_fdsrc_uri_handler_init):
13183         * gst/elements/gstfdsrc.h:
13184           Port fd:// URI handler from 0.8 to fdsrc
13186 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13188         * gst/gstvalue.c: (gst_value_transform_fourcc_string),
13189         (gst_value_serialize_fourcc):
13190         * gst/gstvalue.h:
13191           Drop leading '%' from GST_FOURCC_FORMAT, thus making it
13192           consistent with our other format defines (#320324).
13194 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13196         * gst/gstvalue.c: (gst_value_is_fixed):
13197           Revert previous commit. Value lists are by definition
13198           not fixed, as they are a list of possible values.
13200 2005-11-21  Andy Wingo  <wingo@pobox.com>
13202         * gst/gstevent.h (GST_EVENT_FILLER): Removed. Can be added back
13203         during the stable series if we need it. Fixes #319178.
13205         * gst/gstevent.c (gst_event_new_filler): Removed.
13207         * check/gst/gstevent.c: Update comment about filler events.
13209 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13211         * gst/gstvalue.c: (gst_value_is_fixed):
13212           Should handle both value arrays and value lists.
13214 2005-11-21  Andy Wingo  <wingo@pobox.com>
13216         patch by: Alessandro Dessina <alessandro nnva org>
13218         * gst/gstvalue.c (gst_value_is_fixed): Use gst_value_array
13219         functions to access arrays. Fixes #321962.
13221 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13223         * docs/gst/gstreamer.types:
13224           gst_collectpads_get_type => gst_collect_pads_get_type.
13225           
13226         * gst/base/gstbasetransform.c:
13227           Remove unused SIGNAL_HANDOFF enum.
13229 2005-11-21  Andy Wingo  <wingo@pobox.com>
13231         * gst/gstevent.h (GstEventTypeFlags): New data type, the flags of
13232         the event type (upstream, downstream, serialized). Renamed
13233         GST_EVDIR_* and GST_EVSER to GST_EVENT_TYPE_*.
13234         (GstEventType): Use GstEventTypeFlags. Rename CUSTOM_UP to
13235         CUSTOM_UPSTREAM, CUSTOM_DS to CUSTOM_DOWNSTREAM, etc.
13237         * gst/gstevent.c: Update for new CUSTOM event names.
13239         * check/gst/gstevent.c: Update check for new CUSTOM event names.
13241         * gst/gstevent.h:
13242         * gst/gstevent.c (gst_event_type_get_flags): New function. Fixes
13243         bug #319392.
13245 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13247         * docs/gst/gstreamer-sections.txt:
13248         * win32/common/libgstbase.def:
13249         * win32/libgstbase.def:
13250         * gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
13251         (gst_collect_pads_class_init), (gst_collect_pads_init),
13252         (gst_collect_pads_finalize), (gst_collect_pads_new),
13253         (gst_collect_pads_set_function), (gst_collect_pads_add_pad),
13254         (gst_collect_pads_remove_pad), (gst_collect_pads_is_active),
13255         (gst_collect_pads_collect), (gst_collect_pads_collect_range),
13256         (gst_collect_pads_start), (gst_collect_pads_stop),
13257         (gst_collect_pads_peek), (gst_collect_pads_pop),
13258         (gst_collect_pads_available), (gst_collect_pads_read),
13259         (gst_collect_pads_flush), (gst_collect_pads_event),
13260         (gst_collect_pads_chain):
13261         * gst/base/gstcollectpads.h:
13262           Rename gst_collecpads_foo() => gst_collect_pads_foo(). Document
13263           unimplemented functions as unimplemented. Add padding to
13264           GstCollectData. (#320766, #320423)
13266 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
13268         * gst/gstmessage.c:
13269           Improve docs for DURATION message (usage of duration parameter)
13270           (#320113)
13272 2005-11-20  Wim Taymans  <wim@fluendo.com>
13274         * check/Makefile.am:
13275         * check/gst/gstsegment.c: (GST_START_TEST), (gstevents_suite),
13276         (main):
13277         * gst/Makefile.am:
13278         * gst/gst.h:
13279         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
13280         (gst_segment_set_seek), (gst_segment_set_newsegment),
13281         (gst_segment_to_stream_time), (gst_segment_to_running_time),
13282         (gst_segment_clip):
13283         * gst/gstsegment.h:
13284         Added segment helper structure and methods. Not fully implemented
13285         yet.
13286         Added segment check.
13288 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
13290         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
13291           Add a deserialisation test for fractions
13292         * examples/metadata/read-metadata.c: (message_loop),
13293         (make_pipeline), (main):
13294           Fix up metadata reading sample.
13295         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
13296           Debug format fix
13297         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
13298           Don't try and fixate empty caps
13299         * gst/gst_private.h:
13300           Wrap in G_BEGIN_DECLS/G_END_DECLS
13301         * gst/gstvalue.c: (gst_value_collect_fraction),
13302         (gst_value_set_fraction), (gst_value_get_fraction_denominator),
13303         (gst_value_transform_string_fraction),
13304         (gst_value_compare_fraction):
13305           Add some extra guards to ensure that we don't end up 
13306           with an invalid denominator of 0 in a gstfraction and
13307           that fractions always get reduced.
13309 2005-11-20  Wim Taymans  <wim@fluendo.com>
13311         * docs/gst/gstreamer-sections.txt:
13312         * gst/gstbuffer.h:
13313         * gst/gstelement.c:
13314         * gst/gstformat.c:
13315         * gst/gstformat.h:
13316         * gst/gstindex.h:
13317         * gst/gstquery.c:
13318         * gst/gstquery.h:
13319         * gst/gstvalue.c:
13320         Doc fixes.
13322 2005-11-20  Wim Taymans  <wim@fluendo.com>
13324         * docs/design/part-TODO.txt:
13325         * gst/gstcaps.h:
13326         Make a proper enum of the flag.
13328 2005-11-19  Wim Taymans  <wim@fluendo.com>
13330         * docs/design/part-TODO.txt:
13331         * gst/gstformat.c: (_gst_format_initialize), (gst_format_get_name),
13332         (gst_format_to_quark), (gst_format_register):
13333         * gst/gstformat.h:
13334         * gst/gstquery.c: (_gst_query_initialize),
13335         (gst_query_type_get_name), (gst_query_type_to_quark),
13336         (gst_query_type_register):
13337         * gst/gstquery.h:
13338         Add type to quark and type to string conversions.
13340 2005-11-19  Andy Wingo  <wingo@pobox.com>
13342         * gst/gstbuffer.h (GST_BUFFER_FLAG_ORIGINAL): Removed. Fixes
13343         #320097.
13345 2005-11-19  Wim Taymans  <wim@fluendo.com>
13347         * docs/design/part-TODO.txt:
13348         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_provide_clock_func),
13349         (gst_bin_add_func), (gst_bin_remove_func), (bin_bus_handler),
13350         (gst_bin_handle_message_func):
13351         * gst/gstbin.h:
13352         Make message handling overridable.
13354 2005-11-19  Andy Wingo  <wingo@pobox.com>
13356         * gst/gstpad.h (GST_PAD_IS_USABLE): Removed. Fixes #321235.
13358         * gst/gstclock.h:
13359         * gst/gstclock.c (GstClock, GstClockClass): Change resolution to
13360         be a GstClockTime.
13361         (gst_clock_set_resolution, gst_clock_get_resolution): Resolution
13362         is a GstClockTime. Fixes #321710.
13364         * gst/gstclock.h (GstClock): Remove offset property. Add
13365         internal_calibration and external_calibration. Fix padding. Pad
13366         also by GstClockTime so we don't run into problems.
13368         * gst/gstclock.c (gst_clock_set_rate_offset): Remove.
13369         (gst_clock_get_rate_offset): Remove.
13370         (gst_clock_set_time_adjust): Remove. Fixes #321712.
13372         * gst/gstutils.h:
13373         * gst/gstutils.c (g_static_rec_cond_wait)
13374         (g_static_rec_cond_timed_wait): Removed, no longer needed.
13376         * gst/gstbin.c: Remove terrible continue_state prototype.
13378         * gst/gstelement.h (gst_element_continue_state): Make public.
13380         * gst/gstelement.h:
13381         * gst/gstelement.c (gst_element_commit_state): Removed, replaced
13382         by continue_state. Fixes #319389.
13384         * gst/gstindex.h (GstIndexFilter): Actually pass on the user_data.
13385         Really fixes #168438. However I don't see anywhere where the
13386         filter function is called... stupid GStreamer...
13387         
13388         * gst/gstindex.h (GstIndex): Add field for user_data_destroy. We
13389         don't have a dispose function, so it won't get called when the
13390         object is unreffed, but oh well!
13392         * gst/gstindex.c (gst_index_set_filter_full): New API function,
13393         allows a destroy function to be set so user_data can be freed.
13394         Fixes #168438.
13395         (gst_index_set_filter): Call gst_index_set_filter_full.
13397         * check/gst/gstvalue.c (test_string): Add test for bug #165650.
13399         * gst/gstvalue.c (gst_string_wrap): Trying to serialize a NULL
13400         string should produce an error, given the lack of a way to
13401         represent NULL strings. Fixes #165650.
13402         
13403         * gst/gstvalue.h: 
13404         * gst/gstvalue.c (gst_value_array_append_value) 
13405         (gst_value_array_prepend_value, gst_value_array_get_size) 
13406         (gst_value_array_get_value): New API, copied from
13407         gst_value_list_*, only operates on arrays.
13408         (gst_value_list_append_value, gst_value_list_prepend_value) 
13409         (gst_value_list_concat, gst_value_list_get_size) 
13410         (gst_value_list_get_value): Only operate on lists. Fixes #156633.
13412         * gst/gstvalue.c (gst_value_init_list_or_array): Renamed from
13413         init_list, because it works on both.
13414         (copy_garray_of_gstvalue): Renamed from gst_value_list_copy_array.
13415         (gst_value_copy_list_or_array): Renamed from copy_list.
13416         (gst_value_free_list_or_array): Renamed from free_list.
13417         (gst_value_collect_list_or_array): Renamed from collect_list.
13418         (gst_value_lcopy_list_or_array): Renamed from lcopy_list.
13419         (gst_value_list_or_array_peek_pointer): Renamed from
13420         list_peek_pointer.
13421         (_gst_value_array_value_table, _gst_value_list_value_table):
13422         Update value table functions.
13423         (gst_value_compare_list_or_array): Renamed from compare_list.
13425         * gsttaglist.h: Whoops, foreach function returns void. Also fix
13426         some constness.
13428         * gst/gsttaglist.c:
13429         * gst/gsttaglist.h (gst_tag_list_foreach): Operates on a const
13430         GstTagList*. Fixes #143472.
13432         * gst/gststructure.h: Clarify what the foreach/map functions can
13433         or can't do to their arguments.
13435 2005-11-18  Wim Taymans  <wim@fluendo.com>
13437         * gst/gstclock.c: (gst_clock_set_calibration),
13438         (gst_clock_get_calibration):
13439         Doc and API fixes.
13440         Calibration can be set with internal time equal to current
13441         internal time too.
13443 2005-11-18  Thomas Vander Stichele  <thomas at apestaart dot org>
13445         * gst/gsterror.c:
13446         * gst/gsterror.h:
13447           document
13449 2005-11-18  Andy Wingo  <wingo@pobox.com>
13451         * configure.ac: 
13452         * pkgconfig/gstreamer-net.pc.in:
13453         * pkgconfig/gstreamer-net-uninstalled.pc.in:
13454         * pkgconfig/Makefile.am: Add net pkgconfig files.
13456 2005-11-18  Stefan Kost  <ensonic@users.sf.net>
13458         * gst/gstcaps.c:
13459         * gst/gstghostpad.c:
13460         * gst/gsttrace.c:
13461         * gst/gstvalue.c:
13462         * gst/gstvalue.h:
13463           docs fixes
13465 2005-11-18  Andy Wingo  <wingo@pobox.com>
13467         * gst/net/gstnetclientclock.c: Turn off debugging.
13469         * check/net/gstnetclientclock.c (test_functioning): Assert that the
13470         times connverge somewhat. Can't make a real test.
13472         * gst/net/gstnetclientclock.c (do_linear_regression): Use all
13473         integer arithmetic. Return the minimum of the domain, which can be
13474         set as "internal" for gst_clock_set_calibration.
13475         (gst_net_client_clock_observe_times): Call _set_calibration.
13476         (gst_net_client_clock_new): Call _set_calibration instead of
13477         rate_offset.
13479         * check/net/gstnetclientclock.c (test_functioning): Use the right
13480         adjustment api.
13482         * gst/gstclock.h:
13483         * gst/gstclock.c (gst_clock_get_calibration) 
13484         (gst_clock_set_calibration): New functions, obsolete the ones I
13485         added yesterday. Doh. Precision issues mean we have to extrapolate
13486         from a point in the more recent past than 1970.
13487         (gst_clock_get_rate_offset, gst_clock_set_rate_offset): Mark as
13488         obsolete.
13489         (gst_clock_adjust_unlocked): Use the right calibration data.
13491 2005-11-18  Edward Hervey  <edward@fluendo.com>
13493         * gst/base/gstbasesink.c: (gst_base_sink_change_state): 
13494         Also reset the ->current_* values in READY->PAUSED
13496 2005-11-18  Andy Wingo  <wingo@pobox.com>
13498         * gst/net/gstnetclientclock.c (gst_net_client_clock_thread):
13499         Whoops, check the right fd. Also add some debugging.
13500         (gst_net_client_clock_observe_times): Adjust for int64 offset.
13501         (do_linear_regression): Add a crapload of debugging. Subtract off
13502         the minimum values from the input series to discard unneeded bits.
13503         Use only int arithmetic. There is still double arithmetic when
13504         calculating the intercept that needs fixing. Return boolean to
13505         indicate success; FALSE would mean the domain or range is too
13506         great. Still needs fixes.
13508 2005-11-18  Wim Taymans  <wim@fluendo.com>
13510         * gst/base/gstbasesink.c: (gst_base_sink_get_position):
13511         For the current position in stream time, we need to subtract
13512         accumulated time.
13513         
13514         * gst/gstsystemclock.c: (gst_system_clock_async_thread):
13515         Release lock before calling the callback function of async
13516         entries.
13518 2005-11-18  Andy Wingo  <wingo@pobox.com>
13520         * gst/net/gstnetclientclock.c (gst_net_client_clock_class_init):
13521         Port goes all the way to MAXUINT16.
13523         * gst/net/gstnettimeprovider.c: Make the port range the same as
13524         for the kernel: 0 assigns, otherwise ports are less than
13525         MAXUINT16.
13527         * check/net/gstnettimeprovider.c: Adapt for 0 == kernel assigns
13528         port change.
13530         * check/net/gstnetclientclock.c (test_functioning): Add the start
13531         of another test. 
13533 2005-11-18  Wim Taymans  <wim@fluendo.com>
13535         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
13536         (gst_bin_remove_func), (bin_bus_handler):
13537         * gst/gstbin.h:
13538         Removing a clock provider from a bin, triggers a clock lost message
13539         so that a new clock will be selected.
13540         Adding a clock to a bin triggers a clock provider message.
13541         Make sure we reselect a clock when we received a clock lost message.
13542         Keep a reference to the element that provided the clock.
13544 2005-11-18  Andy Wingo  <wingo@pobox.com>
13546         * gst/net/gstnetclientclock.c (gst_net_client_clock_new): Adjust
13547         the clock initially so it produces values around the base time.
13548         (gst_net_client_clock_class_init): Typo fix.
13549         (gst_net_client_clock_thread): Add note on when the socket gets
13550         closed.
13552 2005-11-17  Wim Taymans  <wim@fluendo.com>
13554         * gst/net/gstnetclientclock.c: (gst_net_client_clock_finalize):
13555         Free remote and local time arrays.
13557 2005-11-17  Wim Taymans  <wim@fluendo.com>
13559         * gst/net/gstnetclientclock.c: (do_linear_regression),
13560         (gst_net_client_clock_do_select), (gst_net_client_clock_thread):
13561         Fix compilation, uninitialized vars and a forgotten continue.
13563 2005-11-17  Andy Wingo  <wingo@pobox.com>
13565         * check/Makefile.am (check_PROGRAMS): 
13566         * check/net/gstnetclientclock.c: Add a most minimal test for the
13567         net client clock. More to come later.
13569         * gst/net/gstnet.h: 
13570         * gst/net/Makefile.am: Add netclientclock.
13572         * gst/net/gstnetclientclock.h:
13573         * gst/net/gstnetclientclock.c: New files, implement an untested
13574         GstClock that takes its time from a network time provider.
13575         Implements the algorithm in network-clock.scm.
13577         * tests/network-clock.scm (*window-size*): Rename from
13578         *queue-length*.
13579         * tests/network-clock.scm (network-time): 
13580         * tests/network-clock-utils.scm (q-push): Update callers.
13582 2005-11-17  Wim Taymans  <wim@fluendo.com>
13584         * gst/gstbin.c: (gst_bin_provide_clock_func),
13585         (gst_bin_sort_iterator_new):
13586         And unref the child too..
13588 2005-11-17  Wim Taymans  <wim@fluendo.com>
13590         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
13591         (gst_bin_sort_iterator_new), (gst_bin_iterate_sorted):
13592         Refactor the sort iterator so it can be used while holding the
13593         LOCK too.
13594         Make clock selection select a clock closest to the source.
13596 2005-11-17  Michael Smith <msmith@fluendo.com>
13598         * gst/gstclock.c: (gst_clock_init), (gst_clock_adjust_unlocked),
13599         (gst_clock_set_rate_offset), (gst_clock_get_rate_offset):
13600         * gst/gstclock.h:
13601           Anonymous structs are a gcc (and some other compilers) extension, so
13602           don't use them. Since this is only for ABI-compatibility, and our
13603           API/ABI freeze is over in a few days, this whole thing will only
13604           last a few days, so don't bother trying to think up a meaningful
13605           name for the struct.
13607 2005-11-17  Andy Wingo  <wingo@pobox.com>
13609         * gst/gstclock.h (GstClock): Add rate and offset properties,
13610         preserving ABI stability. Add rate/offset accessors. Will file bug
13611         for the freeze break.
13613         * gst/gstclock.c (gst_clock_adjust_unlocked): Implement using rate
13614         and offset, trying to keep precision and avoiding
13615         underflow/overflow.
13616         (gst_clock_set_rate_offset, gst_clock_get_rate_offset): New
13617         functions. Make gst_clock_set_time_adjust obsolete.
13618         (gst_clock_set_time_adjust): Note that this function is obsolete.
13619         Will file bug soon.
13621         * gst/base/gstbasetransform.h: Make the ABI-stability hack
13622         greppable by using GST_PADDING-1+1.
13624 2005-11-17  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
13626         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13628         * gst/gstmessage.c: (gst_message_parse_clock_lost):
13629           Assertion should check for CLOCK_LOST, not NEW_CLOCK (#321648).
13631         * gst/gstpadtemplate.h:
13632         * gst/gstpluginfeature.h:
13633           Don't use c++ style comments in headers (#321638).
13635 2005-11-16  Andy Wingo  <wingo@pobox.com>
13637         * gst/net/gstnettimepacket.c (gst_net_time_packet_send): Free
13638         buffer.
13640         * check/net/gstnettimeprovider.c: Check to see that the time
13641         provider actually provides times. Works, yo!
13643 2005-11-16  Wim Taymans  <wim@fluendo.com>
13645         * check/Makefile.am:
13646         Enable more tests.
13648         * check/elements/fakesrc.c: (GST_START_TEST):
13649         Set element to NULL before disposing it.
13651 2005-11-16  Andy Wingo  <wingo@pobox.com>
13653         * gst/net/Makefile.am:
13654         * gst/net/gstnet.h:
13655         * gst/net/gstnettimeprovider.c: 
13656         * gst/net/gstnettimeprovider.h: Use the timepacket stuff in the
13657         provider, include it from gstnet.h, and add it to the build.
13659         * gst/net/gstnettimepacket.h: 
13660         * gst/net/gstnettimepacket.c: New files, abstracts out the packet
13661         sending and receiving.
13663 2005-11-16  Wim Taymans  <wim@fluendo.com>
13665         * check/Makefile.am:
13666         Enable valgrind check.
13668         * gst/elements/gstfakesrc.c: (gst_fake_src_alloc_parent),
13669         (gst_fake_src_alloc_buffer):
13670         Fix memleak.
13672 2005-11-16  Wim Taymans  <wim@fluendo.com>
13674         * gst/net/gstnettimeprovider.c: (gst_net_time_provider_finalize):
13675         Call parent finalize too.
13677 2005-11-16  Wim Taymans  <wim@fluendo.com>
13679         * check/Makefile.am:
13680         Enable valgrind check that should work fine now.
13682         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
13683         * gst/gstqueue.c: (gst_queue_init):
13684         Fix memleaks in pad allocation.
13686 2005-11-16  Andy Wingo  <wingo@pobox.com>
13688         * gst/net/Makefile.am:
13689         * gst/net/gstnet.h: New part of core to hold network elements and
13690         objects. Put in core because it exposes API that applications want
13691         to use. The library is named libgstnet-tempname right now because
13692         of the existing libgstnet in gst-plugins-base. Solution is
13693         probably to rename the one in plugins-base; will file a bug for
13694         the freeze break.
13696         * gst/net/gstnettimeprovider.c: 
13697         * gst/net/gstnettimeprovider.h: New object to export a GstClock's
13698         get_time call over the network.
13700         * configure.ac: 
13701         * gst/Makefile.am (lib_LTLIBRARIES): Add gstnet to the build.
13703         * check/Makefile.am:
13704         * check/net/gstnettimeprovider.c: A most minimal test suite. Will
13705         get additions shortly.
13707 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13709         * gst/gstpad.c: (gst_pad_new_from_static_template):
13710         * gst/gstpad.h:
13711           add gst_pad_new_from_static_template functions
13712         * gst/check/gstcheck.c: (gst_check_setup_src_pad),
13713         (gst_check_setup_sink_pad):
13714         * gst/elements/gsttee.c: (gst_tee_init):
13715           and use them
13717 2005-11-16  Wim Taymans  <wim@fluendo.com>
13719         * gst/gstpad.c: (gst_pad_pause_task):
13720         Removed warning, it's not really an error either.
13722 2005-11-16  Wim Taymans  <wim@fluendo.com>
13724         * gst/base/gstbasetransform.c:
13725         (gst_base_transform_prepare_output_buf),
13726         (gst_base_transform_event):
13727         Check if the caps are NULL, this can happen if the element
13728         is shutting down and the pad caps are set to NULL.
13730 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13732         * gst/elements/gsttee.c: (gst_tee_init):
13733           fix pad template leak in tee
13735 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13737         * gst/glib-compat.c: (g_value_dup_gst_object):
13738         * gst/glib-compat.h:
13739         * gst/gstpad.c: (gst_pad_set_property):
13740           use gst_object_ref when setting the pad template; this will
13741           trigger the pad template leaks on GLib 2.6 and the slaves
13743 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13745         * gst/glib-compat.c: (gst_flags_get_first_value):
13746         * gst/glib-compat.h:
13747         * gst/gstregistryxml.c:
13748           remove functions copied from GLib 2.6
13750 2005-11-16  Michael Smith <msmith@fluendo.com>
13752         * gst/Makefile.am:
13753           Don't link against VALGRIND_LIBS. That was always the wrong thing to
13754           do, but only breaks with newer valgrind versions. We're not a
13755           valgrind tool, we have no link-time dependencies on libcoregrind.
13757 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13759         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
13760           some debug changes
13761         * gst/gstmessage.h:
13762           typo fixes
13764 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
13766         * gst/base/gstbasesrc.c: (gst_base_src_init):
13767         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
13768         * gst/gstqueue.c: (gst_queue_init):
13769         * gst/gstregistryxml.c: (load_feature):
13770           Revert all these unrefs, they don't even pass make check !
13772 2005-11-15  Johan Dahlin  <johan@gnome.org>
13774         * gst/base/gstbasesrc.c: (gst_base_src_init):
13775         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
13776         * gst/gstqueue.c: (gst_queue_init): 
13777         Free pad templates, fixes a couple of leaks.
13779 2005-11-15  Daniel Fischer  <dan at f3c dot com>
13781         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
13783         * gst/gstpad.c: (gst_pad_get_property):
13784           GST_PAD_PAD_TEMPLATE(pad) gets the pad template, while
13785           GST_PAD_TEMPLATE(pad) does a cast. We want the former here.
13786           (#321452)
13788 2005-11-15  Wim Taymans  <wim@fluendo.com>
13790         * gst/gstevent.c:
13791         Small doc update.
13793 2005-11-15  Andy Wingo  <wingo@pobox.com>
13795         * gst/gstelement.c (gst_element_set_base_time): Add debugging.
13797         * gst/gstpipeline.c (gst_pipeline_set_new_stream_time): Document
13798         using GST_CLOCK_TIME_NONE to disable base time management.
13799         (do_pipeline_seek, gst_pipeline_change_state): Don't reset stream
13800         time if it was NONE before.
13801         (gst_pipeline_change_state): Only munge the base time if
13802         stream_time != GST_CLOCK_TIME_NONE.
13804         * check/gst/gstpipeline.c (test_base_time): Punt around the
13805         problem of the probe not being called, because that's not the
13806         issue I'm looking at. Add a check that setting stream_time to NONE
13807         disables base time management.
13808         
13809 2005-11-15  Wim Taymans  <wim@fluendo.com>
13811         * gst/base/gstbasesink.c: (gst_base_sink_change_state):
13812         segment_stop == -1 at startup.
13814         * gst/base/gstbasetransform.c: (gst_base_transform_event),
13815         (gst_base_transform_change_state):
13816         Init segment values at start.
13818 2005-11-15  Wim Taymans  <wim@fluendo.com>
13820         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
13821         0 segment values are 0 in any format.
13823         * gst/base/gstbasetransform.c: (gst_base_transform_event):
13824         * gst/base/gstbasetransform.h:
13825         Parse newsegment correctly in basetransform
13827         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
13828         Sync to clock using updated segment values.
13830 2005-11-15  Andy Wingo  <wingo@pobox.com>
13832         * check/gst/gstpipeline.c (test_base_time): Add check that the
13833         base time and stream time are reset correctly.
13835 2005-11-15  Wim Taymans  <wim@fluendo.com>
13837         * docs/design/part-TODO.txt:
13838         Some more TODO items.
13840 2005-11-15  Andy Wingo  <wingo@pobox.com>
13842         * gst/elements/gstfakesrc.c (gst_fake_src_create): It's not an
13843         error if the user selected "no clock" as the clocking method.
13845         * check/gst/gstpipeline.c (test_base_time): New test for buffer
13846         timestamps with live capture.
13848         * gst/elements/gstfakesrc.c (gst_fake_src_create): If the datarate
13849         is 0 but we are a live source, timestamp the buffers using the
13850         element's clock.
13852 2005-11-14  Stefan Kost  <ensonic@users.sf.net>
13854         * docs/gst/gstreamer-sections.txt:
13855         * gst/gsterror.c:
13856         * gst/gstghostpad.c:
13857         * gst/gstobject.h:
13858         * gst/gstxml.c:
13859           more section docs
13861 2005-11-14  Wim Taymans  <wim@fluendo.com>
13863         * common/gst.supp:
13864           add suppressions from Wim's Debian machine
13866 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
13868         * common/gst.supp:
13869           add suppressions from Andy's AMD64 Ubuntu machine
13871 2005-11-14  Andy Wingo  <wingo@pobox.com>
13873         * gst/gstpad.c (gst_pad_set_active): Change docs; parent's
13874         STATE_LOCK not necessary. Fixes #311489.
13876         * gst/gsterror.c (FILE_A_BUG): Be polite *and* helpful. Fixes
13877         #305291.
13879         * gst/gstindex.c (gst_index_add_object): Note in the docs that
13880         this function is not implemented.
13882 2005-11-14  Julien MOUTTE  <julien@moutte.net>
13884         * gst/base/gstbasetransform.c:
13885         (gst_base_transform_prepare_output_buf):
13886         Ref the source pad caps while we need them.
13887         Fixes (#321386)
13889 2005-11-11  Wim Taymans  <wim@fluendo.com>
13891         * docs/gst/gstreamer-sections.txt:
13892         Added some docs for GstCollectData.
13894         * gst/base/gstadapter.c:
13895         Some small code example fix.
13897         * gst/base/gstcollectpads.c:
13898         * gst/base/gstcollectpads.h:
13899         Document some more.
13901 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
13903         * configure.ac: back to HEAD
13905 === release 0.9.5 ===
13907 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
13909         * configure.ac:
13910           releasing 0.9.5, "Bike Lunch Day"
13912 2005-11-11  Wim Taymans  <wim@fluendo.com>
13914         * gst/gstbuffer.c: (_gst_buffer_copy):
13915         Copy more flags.
13917         * gst/gstcaps.c: (gst_caps_is_equal):
13918         Fix some docs.
13919         Make _is_equal fast in the trivial cases.
13921         * gst/gstminiobject.c:
13922         * gst/gstminiobject.h:
13923         More docs. Spifify .h file.
13925         * gst/gstutils.c:
13926         Small doc update.
13928 2005-11-11  Wim Taymans  <wim@fluendo.com>
13930         * gst/base/gstbasetransform.c:
13931         (gst_base_transform_prepare_output_buf),
13932         (gst_base_transform_handle_buffer):
13933         Small cleanups.
13934         If we're processing a buffer and need to allocate an output
13935         buffer, we cannot accept a format change. If we did get a 
13936         format change, we have to alloc a buffer ourselves of the 
13937         right size.
13939 2005-11-11  Wim Taymans  <wim@fluendo.com>
13941         * gst/gstpad.c: (gst_pad_get_caps), (gst_pad_peer_get_caps):
13942         While checking the flag for reentrancy in the gstcaps function
13943         is nice to detect recursive invocations, it also makes it 
13944         impossible to call getcaps from multiple threads, which must be
13945         possible. So, checking for recursive calls has to go.
13947 2005-11-11  Michael Smith <msmith@fluendo.com>
13949         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
13950           Don't sync on buffers that fall partially outside our current
13951           segment. Prevents an assertion failure/abort playing some files.
13953 2005-11-10  Andy Wingo  <wingo@pobox.com>
13955         * check/gst/gstbin.c (test_message_state_changed_children): Style
13956         fix..
13958         * gst/gstbus.c (poll_destroy, poll_func, gst_bus_poll): Implement
13959         gst_bus_poll with the signal watch. Ensures that poll and a signal
13960         watch see the same messages.
13962         * check/gst/gstbus.c (test_watch_with_poll): New test, checks that
13963         a poll and a watch at the same time get the same messages.
13965 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13967         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps):
13968         * gst/gstcaps.c: (gst_caps_intersect):
13969           Don't call gst_caps_do_simplify - it doesn't respect order of caps
13970           and it's not needed.
13972 2005-11-10  Wim Taymans  <wim@fluendo.com>
13974         * docs/design/part-TODO.txt:
13975         Updated todo.
13977 2005-11-10  Wim Taymans  <wim@fluendo.com>
13979         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
13980         * gst/base/gstbasesrc.c: (gst_base_src_wait),
13981         (gst_base_src_do_sync), (gst_base_src_get_range):
13982         Implement clock sync in base class.
13984 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13986         patch by: Tim-Philipp Müller <tim at centricular dot net>
13988         * gst/gststructure.c: (gst_structure_parse_field),
13989         (gst_structure_from_string):
13990           Forward-port a 0.8 patch to handle escaped spaces in structure string,
13991           so that gst_parse_launch() can deal with spaces in filtered link
13992           caps (fixes #164479)
13993         * check/gst/capslist.h:
13994         * check/gst/gststructure.c: (GST_START_TEST):
13995           add unit tests for this change
13997 2005-11-10  Wim Taymans  <wim@fluendo.com>
13999         * docs/gst/gstreamer-sections.txt:
14000         * gst/gstelement.c:
14001         * gst/gstelement.h:
14002         Fix docs, move some STATE macros to private.
14004 2005-11-10  Wim Taymans  <wim@fluendo.com>
14006         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
14007         Added check for bug #317341
14009         * gst/gstbuffer.c:
14010         * gst/gstbuffer.h:
14011         Some more spiffifying.
14013         * gst/gstghostpad.c: (gst_ghost_pad_do_link):
14014         Call peer linkfunction if we are a source pad. Totally fixes
14015         #317341
14017         * gst/gstpad.c:
14018         Update docs, source pads should call the peer linkfunction
14019         so they can atomically perform the pad link.
14021 2005-11-09  Wim Taymans  <wim@fluendo.com>
14023         * gst/gstbuffer.c:
14024         * gst/gstbuffer.h:
14025         Uber-spiffy-spiffify some more.
14027 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
14029         * gst/base/gstcollectpads.c: (gst_collectpads_add_pad):
14030         * gst/elements/gstfilesink.c: (gst_file_sink_init):
14031         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
14032         * gst/gstghostpad.c: (gst_ghost_pad_set_internal),
14033         (gst_ghost_pad_init), (gst_ghost_pad_new_notarget):
14034         * gst/gstpad.c: (gst_pad_init):
14035           Use GST_DEBUG_FUNCPTR() more extensively.
14037 2005-11-09  Wim Taymans  <wim@fluendo.com>
14039         * gst/gstobject.c: (gst_object_class_init):
14040         * gst/gstobject.h:
14041         Documentation fixes.
14043 2005-11-09  Edward Hervey  <edward@fluendo.com>
14045         * gst/gsttypefindfactory.c:
14046         Fix docs.
14047         
14048 2005-11-09  Edward Hervey  <edward@fluendo.com>
14050         * gst/base/gsttypefindhelper.c:
14051         * gst/gsttypefind.c:
14052         * gst/gsttypefind.h:
14053         Fix docs.
14055 2005-11-09  Wim Taymans  <wim@fluendo.com>
14057         * gst/gstiterator.c:
14058         Fix revision data.
14060         * gst/gsttask.c:
14061         * gst/gsttask.h:
14062         Fix docs.
14064 2005-11-09  Wim Taymans  <wim@fluendo.com>
14066         * gst/gstevent.h:
14067         * gst/gsturi.h:
14068         Fix docs.
14070 2005-11-09  Wim Taymans  <wim@fluendo.com>
14072         * docs/gst/gstreamer-sections.txt:
14073         Moved the message async delivery private lock and cond
14074         to the private section.
14076         * gst/gstmessage.c:
14077         * gst/gstmessage.h:
14078         Fixed docs.
14080 2005-11-09  Edward Hervey  <edward@fluendo.com>
14082         * docs/gst/gstreamer-sections.txt:
14083         * gst/gsturi.c:
14084         * gst/gsturi.h:
14085         Document GstURIHandler
14087 2005-11-09  Wim Taymans  <wim@fluendo.com>
14089         * gst/gstiterator.c: (gst_iterator_fold), (gst_iterator_foreach),
14090         (gst_iterator_find_custom):
14091         * gst/gstiterator.h:
14092         Fix iterator docs.
14094 2005-11-09  Wim Taymans  <wim@fluendo.com>
14096         * gst/gstbin.h:
14097         Document another field.
14099         * gst/gststructure.c:
14100         * gst/gststructure.h:
14101         Document.
14103 2005-11-09  Wim Taymans  <wim@fluendo.com>
14105         * gst/gstbin.h:
14106         Documented structs.
14108 2005-11-09  Wim Taymans  <wim@fluendo.com>
14110         * docs/gst/gstreamer-sections.txt:
14111         Added some new macros.
14113         * gst/gstclock.c:
14114         * gst/gstclock.h:
14115         * gst/gstobject.h:
14116         Docs updates.
14118 2005-11-09  Wim Taymans  <wim@fluendo.com>
14120         * docs/design/part-TODO.txt:
14121         Some more items for the TODO
14123         * gst/gstcaps.c:
14124         * gst/gstcaps.h:
14125         Document GstCaps.
14127 2005-11-09  Andy Wingo  <wingo@pobox.com>
14129         * gst/base/gstbasesink.c: Add the beginning of docs here -- have
14130         to work on something else now tho...
14132         * gst/base/gstadapter.c: More adapter docs.
14134         * gst/elements/gstfilesink.c (gst_file_sink_start) 
14135         (gst_file_sink_stop): New functions, replace the state change
14136         handler.
14137         (gst_file_sink_class_init): Hook up the start and stop functions.
14138         (gst_file_sink_base_init): Don't set the state change handler any
14139         more. It was a bit ugly too, being set from here...
14140         (gst_file_sink_get_property, gst_file_sink_set_property):
14141         Cleanups...
14142         (gst_file_sink_set_location): More robust check that doesn't call
14143         GST_STATE. Ugggggg.
14145 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
14147         * gst/base/gstbasetransform.c: (gst_base_transform_event):
14148           Hold STREAM_LOCK while pushing newsegment or tag events as well.
14150 2005-11-08  Wim Taymans  <wim@fluendo.com>
14152         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
14153         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
14154         (gst_base_sink_chain), (gst_base_sink_change_state):
14155         * gst/base/gstbasesink.h:
14156         * gst/base/gstbasesrc.h:
14157         * gst/gstelement.h:
14158         * gst/gstevent.h:
14159         Avoid excessive typechecking in macros.
14161         * gst/gstminiobject.c: (gst_mini_object_get_type),
14162         (gst_mini_object_init), (gst_mini_object_new),
14163         (gst_mini_object_free):
14164         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
14165         (gst_object_finalize):
14166         Remove cruft code, optimize alloc_trace.
14168 2005-11-07  Thomas Vander Stichele  <thomas at apestaart dot org>
14170         * docs/faq/gst-uninstalled:
14171           fix up PS1 for systems that try to reset it
14173 2005-11-07  Wim Taymans  <wim@fluendo.com>
14175         * gst/base/gstbasesrc.c: (gst_base_src_init),
14176         (gst_base_src_get_range):
14177         Set the segment_end to -1 initially. Fixed typefind.
14179 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
14181         * gst/base/gstadapter.c:
14182           Debug category should be 'adapter', not 'GstAdapter'.
14183           
14184         * gst/base/gstcollectpads.c: (gst_collectpads_base_init),
14185         (gst_collectpads_class_init), (gst_collectpads_init),
14186         (gst_collectpads_peek), (gst_collectpads_pop),
14187         (gst_collectpads_event), (gst_collectpads_chain):
14188           Add debug category and some debugging output. Use boilerplate
14189           macros. Remove some extraneous words from docs.
14191 2005-11-05  Andy Wingo  <wingo@pobox.com>
14193         * gst/base/gstpushsrc.c: Shorten by 30% via use of boilerplate
14194         macro.
14196 2005-11-04  Stefan Kost  <ensonic@users.sf.net>
14198         * docs/gst/gstreamer-sections.txt:
14199         * gst/gstcaps.h:
14200         * gst/gstinfo.c:
14201         * gst/gstminiobject.h:
14202         * gst/gstobject.h:
14203         * gst/gstutils.h:
14204           more docs added
14206 2005-11-04  Wim Taymans  <wim@fluendo.com>
14208         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
14209         Small update to stop at the configured segment_end
14210         position.
14212 2005-11-04  Stefan Kost  <ensonic@users.sf.net>
14214         * gst/gstregistry.c:
14215         * gst/gstregistry.h:
14216           added missing docs
14218 2005-11-04  Edward Hervey  <edward@fluendo.com>
14220         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
14221         Check if we are doing a segment seek and have arrived at the
14222         end of that segment.
14224 2005-11-04  Wim Taymans  <wim@fluendo.com>
14226         * gst/gstbus.c: (gst_bus_post), (gst_bus_set_sync_handler):
14227         Don't leak a mutex unlock in case of an error.
14229         * gst/gstbus.h:
14230         Doc fixes.
14232 2005-11-04  Wim Taymans  <wim@fluendo.com>
14234         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_init),
14235         (gst_bus_post):
14236         Get the context to wake up only once.
14238 2005-11-03  Wim Taymans  <wim@fluendo.com>
14240         * check/states/sinks.c: (GST_START_TEST):
14241         Uncomment fixed check.
14243         * docs/design/part-TODO.txt:
14244         Updated TODO.
14246         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14247         (gst_base_sink_handle_object), (gst_base_sink_do_sync),
14248         (gst_base_sink_get_position):
14249         If we are going to PLAYING, post the right pending state
14250         when we post the intermediate paused message.
14252         * gst/gstelement.c: (gst_element_continue_state),
14253         (gst_element_set_state_func), (gst_element_change_state):
14254         Don't post state changes that were between the same state
14255         and were not ASYNC.
14257 2005-11-03  Stefan Kost  <ensonic@users.sf.net>
14259         * docs/gst/gstreamer-sections.txt:
14260         * gst/gstcaps.h:
14261         * gst/gstinfo.c:
14262         * gst/gstminiobject.h:
14263         * gst/gstobject.h:
14264         * gst/gstutils.h:
14265           more docs and doc style fixes
14267 2005-11-03  Stefan Kost  <ensonic@users.sf.net>
14269         * docs/gst/gstreamer-sections.txt:
14270         * gst/gstelement.c:
14271         * gst/gstminiobject.c:
14272         doc fixes
14274 2005-11-03  Andy Wingo  <wingo@pobox.com>
14276         * check/states/sinks.c (test_livesrc_sink): Add checks that the
14277         state-changed messages actually have the right order and the right
14278         values.
14280 2005-11-03  Wim Taymans  <wim@fluendo.com>
14282         * check/states/sinks.c: (GST_START_TEST), (gst_object_suite):
14283         Added some more checks. Specifically the case where NO_PREROLL
14284         elements are in the pipeline.
14286         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14287         (gst_base_sink_handle_object), (gst_base_sink_do_sync),
14288         (gst_base_sink_get_position):
14289         Post READY->PAUSED state change messages too.
14290         Fix bug where VOID was posted as pending state...
14292         * gst/gstbin.c: (gst_bin_recalc_state):
14293         use _element_continue_state() to continue the state change.
14295         * gst/gstelement.c: (gst_element_continue_state),
14296         (gst_element_commit_state), (gst_element_set_state_func),
14297         (gst_element_change_state), (gst_element_change_state_func):
14298         Lots of state change cleanups, assign the STATE_RETURN in
14299         a new continue_state() function that also propagates the
14300         last return value from a state change to the app.
14301         Update some debug statements with proper category.
14303 2005-11-03  Wim Taymans  <wim@fluendo.com>
14305         * docs/design/part-events.txt:
14306         * docs/design/part-gstpipeline.txt:
14307         * docs/design/part-messages.txt:
14308         * docs/design/part-overview.txt:
14309         * docs/design/part-seeking.txt:
14310         * docs/design/part-states.txt:
14311         * docs/design/part-trickmodes.txt:
14312         * docs/manual/advanced-position.xml:
14313         Small docs updates.
14315         * gst/gstobject.h:
14316         People think !! is ugly, this looks better.
14318         * gst/gstpad.c: (gst_pad_set_blocked_async):
14319         Remove !! since it's fixed elsewhere now.
14321 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
14323         * gst/gstminiobject.h:
14324         * gst/gstobject.h:
14325           Add !! to _FLAG_IS_SET macros to make the result boolean.
14327 2005-11-03  Edward Hervey  <edward@fluendo.com>
14329         * gst/gstpad.c: (gst_pad_set_blocked_async):
14330         comparing a flag and a gboolean rarely returns coherent results...
14331         Added two characters (!!) to make that work correctly.
14332         
14333 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
14335         * gst/gstbus.c: (gst_bus_class_init):
14336           Fix some typos.
14337           
14338         * gst/gstqueue.c: (gst_queue_loop):
14339           Don't assume a miniobject that isn't a buffer is an
14340           event (it could be that there is a refcounting
14341           problem somewhere and the pointer is stale and
14342           refers to an already destroyed miniobject).
14344 2005-11-03  Julien MOUTTE  <julien@moutte.net>
14346         * gst/gstpad.c: (gst_pad_alloc_buffer): Fix some typos.
14348 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
14350         * docs/manual/advanced-position.xml:
14351           Update seek example and explanations to current 0.9 API.
14353         * gst/elements/gsttypefindelement.c:
14354         (gst_type_find_element_activate):
14355           Remove FIXME comment now that the found caps
14356           are unreffed.
14358 2005-11-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14360         * gst/gstregistryxml.c: (load_feature):
14361           Add another GST_STR_NULL instance
14363 2005-11-02  Edward Hervey  <edward@fluendo.com>
14365         * gst/gstpad.c: (handle_pad_block):
14366         Follow-up to Wim's patch, solves deadlock for blocked and flushing pads
14367         
14368 2005-11-02  Wim Taymans  <wim@fluendo.com>
14370         * gst/gstbin.c:
14371         Fix typo in docs.
14373         * gst/gstelement.c: (gst_element_commit_state):
14374         Remove unused value.
14376         * gst/gstiterator.c:
14377         Mention that the returned element is reffed in the docs.
14379 2005-11-02  Wim Taymans  <wim@fluendo.com>
14381         * gst/gstpad.c: (gst_pad_alloc_buffer), (handle_pad_block),
14382         (gst_pad_push), (gst_pad_push_event):
14383         Unlock blocked pads when they are flushed.
14385 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14387         * docs/README:
14388         * docs/gst/gstreamer-sections.txt:
14389         * gst/gstbin.c:
14390           doc updates
14391         * gst/gstregistry.c: (gst_registry_scan_path_level):
14392           fix for a nasty little missed situation where an installed plug-in
14393           which was in the cache did not get overridden by an uninstalled one
14394           which was earlier in the plugin path because the newly created plugin
14395           for the uninstalled one (not in the registry) didn't get its
14396           ->registered set to TRUE
14398 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
14400         * gst/base/gstcollectpads.c: (gst_collectpads_set_function),
14401         (gst_collectpads_add_pad), (gst_collectpads_remove_pad),
14402         (gst_collectpads_is_active), (gst_collectpads_collect),
14403         (gst_collectpads_collect_range), (gst_collectpads_start),
14404         (gst_collectpads_stop), (gst_collectpads_peek),
14405         (gst_collectpads_pop), (gst_collectpads_available),
14406         (gst_collectpads_read), (gst_collectpads_flush):
14407           Guard public API with assertions.
14408         
14409         * gst/gstpad.c:
14410           Fix docs for gst_pad_set_link_function().
14412 2005-11-02  Johan Dahlin  <johan@gnome.org>
14414         * gst/elements/gsttypefindelement.c (gst_type_find_element_activate): 
14415         Unref found_caps after we used it.
14417 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
14419         * gst/base/gstcollectpads.c: (gst_collectpads_peek):
14420           Don't try to ref NULL.
14422 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14424         * win32/common/config.h.in:
14425           provide a GST_FUNCTION that just gives a string for now
14427 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
14429         * win32/common/gstenumtypes.c: (register_gst_object_flags),
14430         (gst_object_flags_get_type), (register_gst_bin_flags),
14431         (gst_bin_flags_get_type), (register_gst_buffer_flag),
14432         (gst_buffer_flag_get_type), (register_gst_bus_flags),
14433         (gst_bus_flags_get_type), (register_gst_bus_sync_reply),
14434         (gst_bus_sync_reply_get_type), (register_gst_clock_return),
14435         (gst_clock_return_get_type), (register_gst_clock_entry_type),
14436         (gst_clock_entry_type_get_type), (register_gst_clock_flags),
14437         (gst_clock_flags_get_type), (register_gst_state),
14438         (gst_state_get_type), (register_gst_state_change_return),
14439         (gst_state_change_return_get_type), (register_gst_state_change),
14440         (gst_state_change_get_type), (register_gst_element_flags),
14441         (gst_element_flags_get_type), (register_gst_core_error),
14442         (gst_core_error_get_type), (register_gst_library_error),
14443         (gst_library_error_get_type), (register_gst_resource_error),
14444         (gst_resource_error_get_type), (register_gst_stream_error),
14445         (gst_stream_error_get_type), (register_gst_event_type),
14446         (gst_event_type_get_type), (register_gst_seek_type),
14447         (gst_seek_type_get_type), (register_gst_seek_flags),
14448         (gst_seek_flags_get_type), (register_gst_format),
14449         (gst_format_get_type), (register_gst_index_certainty),
14450         (gst_index_certainty_get_type), (register_gst_index_entry_type),
14451         (gst_index_entry_type_get_type),
14452         (register_gst_index_lookup_method),
14453         (gst_index_lookup_method_get_type), (register_gst_assoc_flags),
14454         (gst_assoc_flags_get_type), (register_gst_index_resolver_method),
14455         (gst_index_resolver_method_get_type), (register_gst_index_flags),
14456         (gst_index_flags_get_type), (register_gst_debug_level),
14457         (gst_debug_level_get_type), (register_gst_debug_color_flags),
14458         (gst_debug_color_flags_get_type), (register_gst_iterator_result),
14459         (gst_iterator_result_get_type), (register_gst_iterator_item),
14460         (gst_iterator_item_get_type), (register_gst_message_type),
14461         (gst_message_type_get_type), (register_gst_mini_object_flags),
14462         (gst_mini_object_flags_get_type), (register_gst_pad_link_return),
14463         (gst_pad_link_return_get_type), (register_gst_flow_return),
14464         (gst_flow_return_get_type), (register_gst_activate_mode),
14465         (gst_activate_mode_get_type), (register_gst_pad_direction),
14466         (gst_pad_direction_get_type), (register_gst_pad_flags),
14467         (gst_pad_flags_get_type), (register_gst_pad_presence),
14468         (gst_pad_presence_get_type), (register_gst_pad_template_flags),
14469         (gst_pad_template_flags_get_type), (register_gst_pipeline_flags),
14470         (gst_pipeline_flags_get_type), (register_gst_plugin_error),
14471         (gst_plugin_error_get_type), (register_gst_plugin_flags),
14472         (gst_plugin_flags_get_type), (register_gst_rank),
14473         (gst_rank_get_type), (register_gst_query_type),
14474         (gst_query_type_get_type), (register_gst_tag_merge_mode),
14475         (gst_tag_merge_mode_get_type), (register_gst_tag_flag),
14476         (gst_tag_flag_get_type), (register_gst_task_state),
14477         (gst_task_state_get_type), (register_gst_alloc_trace_flags),
14478         (gst_alloc_trace_flags_get_type),
14479         (register_gst_type_find_probability),
14480         (gst_type_find_probability_get_type), (register_gst_uri_type),
14481         (gst_uri_type_get_type), (register_gst_parse_error),
14482         (gst_parse_error_get_type):
14483         * win32/common/gstversion.h:
14484           update win32 copies
14486 2005-11-01  Luca Ognibene  <luogni@tin.it>
14488         * gst/gst.c:
14489           fix docs. popt is dead, long live GOption.
14491 2005-10-31  Wim Taymans  <wim@fluendo.com>
14493         * gst/gstbuffer.h:
14494         Small doc fix.
14496 2005-10-31  Andy Wingo  <wingo@pobox.com>
14498         * Boo!
14500         * gst/gstqueue.c (gst_queue_chain): Fix downstream leaky mode.
14502         * gst/gstobject.c (gst_object_dispatch_properties_changed): No
14503         need to serialize property notifications on GLib 2.8. GLib 2.6 has
14504         the possibility of deadlocks here if code calling notify() or
14505         set() has a lock that can be taken in another notify handler (ABBA
14506         with class lock and e.g. python GIL state lock).
14508 2005-10-28  Julien MOUTTE  <julien@moutte.net>
14510         * gst/gstbus.c: Doc updates.
14512 2005-10-28  Wim Taymans  <wim@fluendo.com>
14514         * docs/design/part-TODO.txt:
14515         * gst/gstiterator.c:
14516         * gst/gstsystemclock.c:
14517         * gst/gstsystemclock.h:
14518         Doc updates.
14520 2005-10-28  Edward Hervey  <edward@fluendo.com>
14522         * docs/gst/gstreamer-docs.sgml:
14523         * docs/gst/gstreamer-sections.txt:
14524         the GstURIType documentation page is private, it only defines GstURIType
14525         which should be defined in the GstURIHandler page
14526         
14527 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14529         * gst/gstbin.c: (gst_bin_class_init):
14530         * gst/gstbin.h:
14531         * gst/gstutils.c:
14532         Documentation updates.
14534 2005-10-28  Wim Taymans  <wim@fluendo.com>
14536         * docs/gst/gstreamer-sections.txt:
14537         * gst/gstclock.c:
14538         * gst/gstclock.h:
14539         Documented the clocks.
14541 2005-10-28  Stefan Kost  <ensonic@users.sf.net>
14543         * docs/gst/gstreamer-sections.txt:
14544           move some macros to private sections
14545         * gst/gstminiobject.c:
14546         * gst/gstminiobject.h:
14547           add descriptions provided by ds and some more
14548         * gst/gstpad.h:
14549           mark macro as to be removed
14551 2005-10-28  Wim Taymans  <wim@fluendo.com>
14553         * docs/design/part-TODO.txt:
14554         Add an item to TODO.
14556         * gst/gstiterator.c: (gst_iterator_fold),
14557         (gst_iterator_find_custom):
14558         * gst/gstiterator.h:
14559         Add iterator docs.
14561 2005-10-28  Wim Taymans  <wim@fluendo.com>
14563         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
14564         (gst_base_transform_init):
14565         Don't leak class.
14567         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_loop):
14568         An EOS event marks the queue as completely filled.
14570 2005-10-27  Wim Taymans  <wim@fluendo.com>
14572         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
14573         (gst_base_sink_do_sync), (gst_base_sink_get_position):
14574         Some more debugging.
14576         * gst/base/gstbasetransform.c: (gst_base_transform_finalize),
14577         (gst_base_transform_init), (gst_base_transform_buffer_alloc),
14578         (gst_base_transform_event), (gst_base_transform_getrange),
14579         (gst_base_transform_chain):
14580         * gst/base/gstbasetransform.h:
14581         Fix debugging,
14582         Protect transform and concurrent buffer alloc with a new lock.
14583         Try not to break ABI/API.
14585 2005-10-27  Wim Taymans  <wim@fluendo.com>
14587         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
14588         (gst_base_src_init), (gst_base_src_query),
14589         (gst_base_src_default_newsegment),
14590         (gst_base_src_configure_segment), (gst_base_src_do_seek),
14591         (gst_base_src_send_event), (gst_base_src_event_handler),
14592         (gst_base_src_pad_get_range), (gst_base_src_loop),
14593         (gst_base_src_unlock), (gst_base_src_default_negotiate),
14594         (gst_base_src_start), (gst_base_src_deactivate),
14595         (gst_base_src_activate_push), (gst_base_src_change_state):
14596         Move some stuff around and cleanup things.
14598 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
14600         * gst/base/gstbasesrc.c: (gst_base_src_query):
14601           Add missing break statements.
14603 2005-10-27  Wim Taymans  <wim@fluendo.com>
14605         * check/gst/gstbin.c: (GST_START_TEST):
14606         An extra refcount is taken in basesrc.
14608         * gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
14609         (gst_base_src_get_range), (gst_base_src_pad_get_range),
14610         (gst_base_src_loop):
14611         Small cleanups, check for flushing after being unlocked from the 
14612         LIVE_LOCK. take refcounts correctly (not yet everywhere).
14613         Don't send out EOS when going to READY.
14615 2005-10-27  Wim Taymans  <wim@fluendo.com>
14617         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
14618         (gst_base_sink_get_position):
14619         Some more debug.
14621         * gst/gstbin.c: (message_check), (bin_replace_message),
14622         (bin_remove_messages), (is_eos), (gst_bin_add_func),
14623         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
14624         (bin_query_duration_init), (bin_query_duration_fold),
14625         (bin_query_duration_done), (bin_query_generic_fold),
14626         (gst_bin_query):
14627         * tools/gst-launch.c: (main):
14628         Remove old option.
14630 2005-10-26  Stefan Kost  <ensonic@users.sf.net>
14632         * examples/controller/audio-example.c: (main):
14633         * examples/queue/queue.c: (event_loop):
14634         * gst/base/gstbasetransform.h:
14635         * gst/gstelement.c: (gst_element_send_event):
14636         * gst/gstevent.h:
14637         * gst/gstpad.c: (gst_pad_send_event):
14638           fixing examples
14639           fixing docs typos
14640           changing log priority in error situations
14642 2005-10-25  Wim Taymans  <wim@fluendo.com>
14644         * gst/gstbin.c: (message_check), (bin_replace_message),
14645         (bin_remove_messages), (is_eos), (gst_bin_add_func),
14646         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
14647         (bin_query_duration_init), (bin_query_duration_fold),
14648         (bin_query_duration_done), (bin_query_generic_fold),
14649         (gst_bin_query):
14650         Some doc and debug updates.
14651         Cache previously requested query DURATION for speed. invalidate
14652         cached duration if element posts a DURATION message.
14654 2005-10-25  Wim Taymans  <wim@fluendo.com>
14656         * docs/design/part-TODO.txt:
14657         Update TODO.
14659         * gst/gstbin.c: (message_check), (bin_replace_message),
14660         (bin_remove_messages), (is_eos), (gst_bin_add_func),
14661         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
14662         (bin_query_duration_init), (bin_query_duration_fold),
14663         (bin_query_duration_done), (bin_query_generic_fold),
14664         (gst_bin_query):
14665         Handle SEGMENT_START/DONE messages correctly.
14666         More evolved query algorithm that handles duration queries
14667         correctly.
14669         * gst/gstelement.c: (gst_element_send_event), (gst_element_query),
14670         (gst_element_get_state_func), (gst_element_abort_state),
14671         (gst_element_commit_state), (gst_element_lost_state):
14672         Some more debugging.
14674         * gst/gstmessage.h:
14675         Added doc.
14677 2005-10-25  Wim Taymans  <wim@fluendo.com>
14679         * gst/base/gstbasesink.c: (gst_base_sink_get_position):
14680         Don't use invalid stream_time.
14682         * gst/gstevent.c: (gst_event_new_newsegment):
14683         stream_time in newsegment cannot be undefined.
14685 2005-10-24  Wim Taymans  <wim@fluendo.com>
14687         * gst/gstbus.c:
14688         Doc fix.
14690         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
14691         (gst_queue_loop):
14692         Fix potential deadlock when QUEUE_LOCK is taken before STREAM_LOCK.
14694 2005-10-24  Stefan Kost  <ensonic@users.sf.net>
14696         * docs/libs/tmpl/gstdparam.sgml:
14697         * docs/libs/tmpl/gstdplinint.sgml:
14698         * docs/libs/tmpl/gstdpman.sgml:
14699         * docs/libs/tmpl/gstdpsmooth.sgml:
14700         * docs/libs/tmpl/gstunitconvert.sgml:
14701           these are obsolete
14703 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14705         * configure.ac:
14706           back to HEAD
14708 === release 0.9.4 ===
14710 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14712         * configure.ac:
14713           releasing 0.9.4, "Tyrannosaurus Rex"
14715 2005-10-23  Tim-Philipp Müller  <tim at centricular dot net>
14717         * gst/elements/gstfilesink.c: (gst_file_sink_do_seek),
14718         (gst_file_sink_get_current_offset):
14719           Use fseeko() and ftello() if available. When falling back on
14720           lseek() to get the current offset, fflush() first to make sure
14721           everything is up-to-date and we get the right offset.
14723 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
14725         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
14726         * gst/base/gstbasesrc.c: (gst_base_src_loop):
14727         * gst/gsterror.c: (_gst_stream_errors_init):
14728         * gst/gsterror.h:
14729         * gst/gstqueue.c: (gst_queue_loop):
14730         * po/POTFILES.in:
14731           remove prematurely added error category and clean up the instances
14733 2005-10-21  Wim Taymans  <wim@fluendo.com>
14735         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14736         (gst_base_sink_get_position), (gst_base_sink_query),
14737         (gst_base_sink_change_state):
14738         Simply set the right flag when going to playing, that's all
14739         we need to do instead of calling a function inside the object
14740         lock (that could take the lock as well and deadlock)
14742 2005-10-21  Wim Taymans  <wim@fluendo.com>
14744         * gst/base/gstbasesrc.c: (gst_base_src_do_seek),
14745         (gst_base_src_loop):
14746         Don't warn, the peer element knows what to do best when
14747         the seek failed, it might try something else.
14749 2005-10-21  Wim Taymans  <wim@fluendo.com>
14751         * gst/base/gstbasesrc.c: (gst_base_src_init),
14752         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start):
14753         Fix seeking.
14755 2005-10-21  Wim Taymans  <wim@fluendo.com>
14757         * docs/design/part-segments.txt:
14758         More docs.
14760         * gst/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
14761         Correctly set caps, even on the subbufer.
14763 2005-10-21  Wim Taymans  <wim@fluendo.com>
14765         * docs/gst/gstreamer-docs.sgml:
14766         * docs/gst/gstreamer-sections.txt:
14767         * gst/gstelement.h:
14768         * gst/gstevent.c:
14769         * gst/gstevent.h:
14770         * gst/gstmessage.h:
14771         * gst/gstpad.h:
14772         * gst/gstparse.h:
14773         * gst/gsttask.c: (gst_task_finalize), (gst_task_func):
14774         * gst/gsttask.h:
14775         * gst/gstutils.c:
14776         * gst/gstutils.h:
14777         And 2% more doc coverage.
14779 2005-10-21  Andy Wingo  <wingo@pobox.com>
14781         * gst/base/gstbasesrc.c (gst_base_src_query): Clean up percent
14782         position reporting.
14784 2005-10-20  Wim Taymans  <wim@fluendo.com>
14786         * gst/gsterror.c: (gst_error_get_message):
14787         * gst/gstparse.h:
14788         * gst/gstquery.h:
14789         * gst/gststructure.c:
14790         * gst/gsttrace.c:
14791         * gst/gstutils.c:
14792         More docs.
14794 2005-10-20  Wim Taymans  <wim@fluendo.com>
14796         * gst/gstbuffer.h:
14797         * gst/gstpad.c:
14798         * gst/gstparse.c:
14799         Another 1% more coverage.
14801 2005-10-20  Wim Taymans  <wim@fluendo.com>
14803         * docs/gst/gstreamer-sections.txt:
14804         * gst/gstelement.c: (gst_element_get_state_func),
14805         (gst_element_abort_state), (gst_element_commit_state),
14806         (gst_element_lost_state):
14807         * gst/gstevent.h:
14808         * gst/gstquery.c: (gst_query_set_position),
14809         (gst_query_parse_position), (gst_query_set_duration),
14810         (gst_query_parse_duration), (gst_query_new_convert):
14811         * gst/gstutils.c:
14812         Yay! 1% more docs coverage.
14814 2005-10-20  Wim Taymans  <wim@fluendo.com>
14816         * gst/gstpad.h:
14817         * gst/gstquery.c: (gst_query_set_position),
14818         (gst_query_parse_position), (gst_query_set_duration),
14819         (gst_query_parse_duration), (gst_query_new_convert):
14820         * gst/gstquery.h:
14821         * gst/gstutils.c: (gst_element_query_convert):
14822         * gst/gstutils.h:
14823         Docs and consistency fixes.
14825 2005-10-20  Wim Taymans  <wim@fluendo.com>
14827         * gst/gsttask.c:
14828         * gst/gsttask.h:
14829         More docs.
14831 2005-10-20  Wim Taymans  <wim@fluendo.com>
14833         * gst/gstbin.c: (message_check), (bin_replace_message),
14834         (bin_remove_messages), (is_eos), (gst_bin_add_func),
14835         (update_degree), (gst_bin_sort_iterator_next),
14836         (gst_bin_change_state_func), (gst_bin_dispose), (bin_bus_handler):
14837         Reworked the message handling a bit, cache the messages instead of
14838         only the senders. alows us to do more in the future.
14840 2005-10-20  Wim Taymans  <wim@fluendo.com>
14842         * docs/design/part-TODO.txt:
14843         Update TODO
14845         * gst/base/gstbasesink.c: (gst_base_sink_get_position),
14846         (gst_base_sink_query):
14847         Don't use clock time to report position when in EOS.
14849 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
14851         * tools/gst-inspect.c: (print_interfaces),
14852         (print_element_properties_info), (print_element_info):
14853           Fix interface output with gst-inspect -a; don't print
14854           newlines after double/float properties.
14856 2005-10-20  Wim Taymans  <wim@fluendo.com>
14858         * gst/base/gstbasesink.c: (gst_base_sink_get_position),
14859         (gst_base_sink_query):
14860         Speed up current position calculation.
14862         * gst/base/gstbasesrc.c: (gst_base_src_query),
14863         (gst_base_src_default_newsegment):
14864         Correctly set stream position in newsegment.
14866         * gst/gstbin.c: (gst_bin_add_func), (add_to_queue),
14867         (update_degree), (gst_bin_sort_iterator_next),
14868         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free):
14869         * gst/gstmessage.c: (gst_message_new_custom):
14870         Clean up debugging info
14872         * gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
14873         (gst_queue_loop), (gst_queue_handle_src_query):
14874         Pause task faster.
14876 2005-10-19  Wim Taymans  <wim@fluendo.com>
14878         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14879         (gst_base_sink_handle_object), (gst_base_sink_query), (do_playing):
14880         Fix query handling again.
14882 2005-10-19  Wim Taymans  <wim@fluendo.com>
14884         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14885         (gst_base_sink_handle_object), (gst_base_sink_query), (do_playing):
14886         * gst/base/gstbasesrc.c: (gst_base_src_query):
14887         * gst/elements/gstfilesink.c: (gst_file_sink_query):
14888         * gst/elements/gsttypefindelement.c:
14889         (gst_type_find_handle_src_query), (find_element_get_length),
14890         (gst_type_find_element_activate):
14891         API change fix.
14893         * gst/gstquery.c: (gst_query_new_position),
14894         (gst_query_set_position), (gst_query_parse_position),
14895         (gst_query_new_duration), (gst_query_set_duration),
14896         (gst_query_parse_duration), (gst_query_set_segment),
14897         (gst_query_parse_segment):
14898         * gst/gstquery.h:
14899         Bundling query position/duration is not a good idea since duration
14900         does not change much and we don't want to recalculate it for every
14901         position query, so they are separated again..
14902         Base value in segment query is not needed.
14904         * gst/gstqueue.c: (gst_queue_handle_src_query):
14905         * gst/gstutils.c: (gst_element_query_position),
14906         (gst_element_query_duration), (gst_pad_query_position),
14907         (gst_pad_query_duration):
14908         * gst/gstutils.h:
14909         Updates for query API change.
14910         Added some docs here and there.
14912 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
14914         * check/gst/gstbin.c: (GST_START_TEST):
14915         * check/gst/gstghostpad.c: (GST_START_TEST):
14916         * check/pipelines/cleanup.c: (GST_START_TEST):
14917           wait on thread to die so we can check refcount correctly
14919 2005-10-18  Wim Taymans  <wim@fluendo.com>
14921         * check/pipelines/stress.c: (GST_START_TEST):
14922         Make check a little more time consuming.
14924 2005-10-18  Wim Taymans  <wim@fluendo.com>
14926         * check/Makefile.am:
14927         * check/pipelines/stress.c: (GST_START_TEST),
14928         (simple_launch_lines_suite), (main):
14929         Small state change torture test.
14931         * docs/design/part-states.txt:
14932         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
14933         (gst_base_sink_handle_object), (gst_base_sink_event), (do_playing),
14934         (gst_base_sink_change_state):
14935         Never take state lock from streaming thread, clean up ugly
14936         hacks. Unfortunatly core does not yet support nice ways to
14937         async commit state.
14938         
14939         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_recalc_state),
14940         (bin_bus_handler):
14941         Start state recalc if a STATE_DIRTY message is posted, but only
14942         on the toplevel bin.
14944         * gst/gstelement.c: (gst_element_sync_state_with_parent),
14945         (gst_element_get_state_func), (gst_element_abort_state),
14946         (gst_element_commit_state), (gst_element_lost_state),
14947         (gst_element_set_state_func), (gst_element_change_state):
14948         * gst/gstelement.h:
14949         State variables are now protected with the LOCK, the state
14950         lock is only used to serialize _set_state().
14952 2005-10-18  Wim Taymans  <wim@fluendo.com>
14954         * check/gst/gstbin.c: (GST_START_TEST):
14955         * check/gst/gstmessage.c: (GST_START_TEST):
14956         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
14957         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
14958         (bin_bus_handler):
14959         * gst/gstelement.c: (gst_element_abort_state),
14960         (gst_element_commit_state), (gst_element_lost_state):
14961         * gst/gstmessage.c: (gst_message_new_state_changed),
14962         (gst_message_new_state_dirty), (gst_message_new_segment_start),
14963         (gst_message_new_segment_done), (gst_message_new_duration),
14964         (gst_message_parse_state_changed),
14965         (gst_message_parse_segment_start),
14966         (gst_message_parse_segment_done), (gst_message_parse_duration):
14967         * gst/gstmessage.h:
14968         * tools/gst-launch.c: (event_loop):
14969         Seriously, this is better than a previous commit as we only need
14970         to notify the fact that an element changed state in a streaming
14971         thread, marking the state of the parents dirty, hence the 
14972         STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
14973         message.
14975 2005-10-18  Wim Taymans  <wim@fluendo.com>
14977         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_get_state_func),
14978         (gst_bin_recalc_func):
14979         * gst/gstelement.c: (gst_element_set_clock),
14980         (gst_element_abort_state), (gst_element_lost_state):
14981         Cleanups, prepare for state change fixes.
14983 2005-10-18  Wim Taymans  <wim@fluendo.com>
14985         * gst/gstbin.h:
14986         * gst/gstelement.c: (gst_element_class_init),
14987         (gst_element_set_state), (gst_element_set_state_func):
14988         * gst/gstelement.h:
14989         Pending ABI changes.
14990         GThreadPool in GstBinClass to monitor async state changes.
14991         state_cookie in GstElement to detect concurrent gst/set state.
14992         set_state is now virtual too in case a very complicated element
14993         has to be constructed.
14995 2005-10-18  Wim Taymans  <wim@fluendo.com>
14997         * check/gst/gstbin.c: (GST_START_TEST):
14998         * check/gst/gstmessage.c: (GST_START_TEST):
14999         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
15000         * gst/gstbin.c: (bin_bus_handler):
15001         * gst/gstelement.c: (gst_element_commit_state),
15002         (gst_element_lost_state):
15003         * gst/gstmessage.c: (gst_message_new_state_changed),
15004         (gst_message_new_segment_start), (gst_message_new_segment_done),
15005         (gst_message_new_duration), (gst_message_parse_state_changed),
15006         (gst_message_parse_segment_start),
15007         (gst_message_parse_segment_done), (gst_message_parse_duration):
15008         * gst/gstmessage.h:
15009         * tools/gst-launch.c: (event_loop):
15010         Make messages future proof.
15011         state-change gets a flag if it was a message comming from the
15012         streaming thread.
15013         segment-start/stop can also be specified in other formats.
15014         A message to notify an app that a pipeline changed playback 
15015         duration.
15016         Also fix a GstMessage leak in -launch
15018 2005-10-18  Andy Wingo  <wingo@pobox.com>
15020         * gst/gstelement.c (gst_element_dispose): More helpful message.
15022 2005-10-18  Thomas Vander Stichele  <thomas at apestaart dot org>
15024         reviewed by: <delete if not using a buddy>
15026         * common/gtk-doc.mak:
15028 2005-10-18  Thomas Vander Stichele  <thomas at apestaart dot org>
15030         * gst/gstregistry.c: (gst_registry_scan_path_level):
15031           unref a plug-in we get that was already initialized
15033 2005-10-18  Stefan Kost  <ensonic@users.sf.net>
15035         * docs/gst/gstreamer-sections.txt:
15036         * docs/libs/gstreamer-libs-sections.txt:
15037         * gst/gstelement.h:
15038           add new api entries
15039           hide internal macro
15041 2005-10-17  Andy Wingo  <wingo@pobox.com>
15043         * gst/base/gstcollectpads.c (gst_collectpads_chain): Slight
15044         cleanup.
15046         * gst/Makefile.am (gstenumtypes.c): Threadsafe now.
15048         * gst/gstevent.c (gst_event_new, gst_event_finalize): LOG.
15050         * gst/gstelement.c (gst_element_get_state_func): s/INFO/DEBUG/.
15051         (gst_element_get_state_func): Better debug message.
15052         (gst_element_commit_state): s/INFO/DEBUG/.
15053         (gst_element_lost_state, gst_element_change_state): 
15055         * gst/gstmessage.c (gst_message_init): s/INFO/LOG/.
15056         (gst_message_new_custom): s/INFO/LOG/.
15058 2005-10-17  Michael Smith <msmith@fluendo.com>
15060         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
15061           Check if end time is valid using end time, not start time.
15063 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
15065         * check/gst-libs/controller.c: (GST_START_TEST),
15066         (gst_controller_suite):
15067         * libs/gst/controller/gstcontroller.c:
15068         (gst_controlled_property_set_interpolation_mode):
15069         * libs/gst/controller/gstcontroller.h:
15070         * libs/gst/controller/gstinterpolation.c:
15071         * testsuite/controller/.cvsignore:
15072         * testsuite/controller/Makefile.am:
15073         * testsuite/controller/interpolator.c:
15074           merge controller testsuites
15075           fix broken tests
15076           remove mem-chunk from docs
15078 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15080         * gst/gstmemchunk.c:
15081         * gst/gstmemchunk.h:
15082         * gst/gsttrashstack.c:
15083         * gst/gsttrashstack.h:
15084           out.  get out.  you're fired.  to the Attic !
15086 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
15088         * gst/gstcaps.c: (gst_caps_intersect):
15089           fix signedness issues in a (hopefully) correct way
15090         * gst/gstelement.c: (gst_element_pads_activate):
15091           some debugging
15092         * gst/gstobject.c: (gst_object_set_parent):
15093           some debugging
15095 2005-10-17  Julien MOUTTE  <julien@moutte.net>
15097         * gst/gstvalue.h: Fix prototypes.
15099 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15101         * docs/gst/gstreamer-sections.txt:
15102         * gst/gst.c: (gst_version_string):
15103         * gst/gst.h:
15104         * gst/gstversion.h.in:
15105         * win32/common/libgstreamer.def:
15106           add gst_version_string ()
15108 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15110         * configure.ac:
15111           clean up further
15112         * gst/gst.c: (init_post):
15113         * win32/common/config.h.in:
15114           it's PLUGINDIR now
15115         * gst/gstcaps.c: (gst_caps_intersect):
15116           use gint64, the range could be bigger than a guint
15118 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15120         * gst/gstclock.h:
15121           document potential problem in 2038
15123 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15125         * gst/gstcaps.c: (gst_caps_intersect):
15126           Fix guint j diving under 0
15128 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15130         * configure.ac:
15131         * win32/common/config.h:
15132         * win32/common/config.h.in:
15133           check for process.h, declares getpid() on Windows
15134         * gst/gstinfo.c:
15135           include process.h if we have it
15136         * gst/gstmemchunk.c: (populate), (gst_mem_chunk_new):
15137         * gst/gstmemchunk.h:
15138           fix signedness issues
15139         * win32/common/libgstreamer.def:
15140           fix get_type's
15142 2005-10-16  Julien MOUTTE  <julien@moutte.net>
15144         * gst/gstcaps.c: (gst_caps_intersect): Fix a bad bug with a simple
15145         fix. Because of unsigned ints, caps intersection was going nuts and
15146         trying to access structures with G_MAXUINT index. That fixes
15147         videotestsrc ! ffmpegcolorspace ! fakesink
15148         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked): logs
15149         consistency.
15151 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15153         * configure.ac:
15154           use the gettext macro
15155         * gst/elements/gstelements.c:
15156         * gst/gst.c:
15157         * gst/indexers/gstindexers.c:
15158           update for GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN
15159         * win32/common/config.h:
15160           updated config.h
15161         * win32/common/config.h.in:
15162           add the template to generate config.h
15163         * win32/common/gstenumtypes.c:
15164         * win32/common/gstversion.h:
15165           updated copies
15167 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
15169         * gst/gst.c: (gst_version):
15170         * gst/gstversion.h.in:
15171           add the nano
15173 2005-10-15  Tim-Philipp Müller  <tim at centricular dot net>
15175         * gst/gstevent.h:
15176           Oops, add missing closing bracket.
15178 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15180         * configure.ac:
15181           use common m4's for argument checking
15183 2005-10-15  Tim-Philipp Müller  <tim at centricular dot net>
15185         * docs/gst/gstreamer-sections.txt:
15186         * gst/gstevent.h:
15187           Add GST_EVENT_TYPE_NAME() macro.
15189 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15191         * gst/gstinfo.c:
15192         * gst/gstpluginfeature.c:
15193         * gst/gsttask.c:
15194           privatize more symbols
15196 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15198         * configure.ac:
15199           add srcdir, builddir includes to GST_ALL_CFLAGS, since
15200           everything that uses GStreamer API should have the includes
15202 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15204         * docs/gst/gstreamer-sections.txt:
15205         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
15206         * gst/gstvalue.h:
15207           give each value a _get_type, removes the DATA exports
15209 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15211         * gst/gst.c:
15212         * gst/gst.h:
15213           remove _gst_registry_auto_load, not used anymore
15214         * gst/gstbin.c: (gst_bin_get_type):
15215         * gst/gstbin.h:
15216         * gst/gstelement.c: (gst_element_get_type):
15217         * gst/gstelement.h:
15218         * gst/gstobject.c: (gst_object_get_type):
15219         * gst/gstobject.h:
15220         * gst/gstpad.c: (gst_pad_get_type):
15221         * gst/gstpad.h:
15222           make _get_type functions similar, fixes data export from library
15224 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15226         * configure.ac:
15227           correctly make conditionals
15228         * gst/elements/Makefile.am:
15229         * gst/elements/gstelements.c:
15230           fix typo causing fdsrc not to build
15232 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15234         * testsuite/Makefile.am:
15235         * testsuite/bytestream/.cvsignore:
15236         * testsuite/bytestream/Makefile.am:
15237         * testsuite/bytestream/filepadsink.c:
15238         * testsuite/bytestream/gstbstest.c:
15239         * testsuite/bytestream/test1.c:
15240         * testsuite/bytestream/testfile1:
15241         * testsuite/caps/normalisation.c:
15242         * testsuite/caps/random.c: (main):
15243         * testsuite/cleanup/.cvsignore:
15244         * testsuite/cleanup/Makefile.am:
15245         * testsuite/cleanup/cleanup1.c:
15246         * testsuite/cleanup/cleanup2.c:
15247         * testsuite/cleanup/cleanup3.c:
15248         * testsuite/cleanup/cleanup4.c:
15249         * testsuite/cleanup/cleanup5.c:
15250         * testsuite/controller/interpolator.c:
15251         * testsuite/debug/printf_extension.c: (main):
15252         * testsuite/elements/tee.c:
15253         * testsuite/negotiation/.cvsignore:
15254         * testsuite/negotiation/Makefile.am:
15255         * testsuite/negotiation/pad_link.c:
15256         * testsuite/pad/Makefile.am:
15257         * testsuite/pad/chainnopull.c:
15258         * testsuite/pad/getnopush.c:
15259         * testsuite/pad/link.c:
15260         * testsuite/refcounting/sched.c: (create_pipeline):
15261         * testsuite/registry/Makefile.am:
15262         * testsuite/registry/gst-print-formats.c:
15263         * testsuite/schedulers/.cvsignore:
15264         * testsuite/schedulers/142183-2.c:
15265         * testsuite/schedulers/142183.c:
15266         * testsuite/schedulers/143777-2.c:
15267         * testsuite/schedulers/143777.c:
15268         * testsuite/schedulers/147713.c:
15269         * testsuite/schedulers/147819.c:
15270         * testsuite/schedulers/147894-2.c:
15271         * testsuite/schedulers/147894.c:
15272         * testsuite/schedulers/Makefile.am:
15273         * testsuite/schedulers/group_link.c:
15274         * testsuite/schedulers/queue_link.c:
15275         * testsuite/schedulers/relink.c:
15276         * testsuite/schedulers/unlink.c:
15277         * testsuite/schedulers/unref.c:
15278         * testsuite/schedulers/useless_iteration.c:
15279         * testsuite/states/bin.c:
15280           clean out/remove some stuff from the testsuite directories
15282 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15284         * configure.ac:
15285           check for some headers
15286         * gst/elements/Makefile.am:
15287         * gst/elements/gstelements.c:
15288           don't compile fdsrc without sys/socket.h
15289         * gst/indexers/Makefile.am:
15290         * gst/indexers/gstindexers.c: (plugin_init):
15291           don't compile fileindex without mmap
15293 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
15295         * configure.ac:
15296           reorganize
15297           clean up
15298           document more
15299           remove cruft
15300         * check/Makefile.am:
15301         * docs/gst/Makefile.am:
15302         * examples/helloworld/Makefile.am:
15303         * gst/Makefile.am:
15304         * gst/base/Makefile.am:
15305         * gst/check/Makefile.am:
15306         * gst/elements/Makefile.am:
15307         * gst/indexers/Makefile.am:
15308         * gst/parse/Makefile.am:
15309         * libs/gst/controller/Makefile.am:
15310         * libs/gst/dataprotocol/Makefile.am:
15311         * examples/helloworld/helloworld.c: (event_loop):
15312           compile fixes, though it's not being compiled currently
15314 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
15316         * check/gst/gsttag.c: (test_date_tags), (gst_tag_suite):
15317           Add some simple tests for the new taglist date API.
15319 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
15321         * gst/elements/gstfakesink.c: (gst_fake_sink_render):
15322         * gst/elements/gstfakesrc.c: (gst_fake_src_create):
15323           Beautify 'last-message' output: print 'none' for buffer timestamps
15324           and durations if none is set; improve alignment with next messages.
15326 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
15328         * gst/gstpluginfeature.c: (gst_plugin_feature_check_version):
15329         * gst/gstpluginfeature.h:
15330         * gst/gstregistry.c: (gst_default_registry_check_feature_version):
15331         * gst/gstregistry.h:
15332         * docs/gst/gstreamer-sections.txt:
15333           Add new API to check plugin feature version requirements.
15335         * check/gst/gstplugin.c: (test_version_checks), (gst_plugin_suite):
15336           Some basic tests for the above.         
15338 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15340         * gst/gststructure.c: (gst_structure_to_string):
15341           guard against NULL printf - happens when for example
15342           a message structure with GstClock gets serialized
15344 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
15346         * gst/base/gstcollectpads.c: (gst_collectpads_event):
15347           Fix presumable copy'n'pasto.
15349 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15351         * gst/elements/gstfakesrc.h:
15352         * gst/elements/gstfilesrc.c: (gst_file_src_create_read):
15353         * gst/elements/gsttypefindelement.c:
15354           fix some signedness
15355         * gst/elements/gstfilesink.c: (gst_file_sink_render):
15356           I wonder if this could actually write +2GB files before
15358 2005-10-13  Andy Wingo  <wingo@pobox.com>
15360         * libs/gst/dataprotocol/dataprotocol.c (gst_dp_packet_from_caps):
15361         Fix Timmeke Waymans bug.
15362         (gst_dp_caps_from_packet): Make sure we pass a NUL-terminated
15363         string of the proper length to gst_caps_from_string. There's a
15364         potential for, before this fix, that this could cause someone
15365         connecting over the network to cause a segfault if the payload is
15366         not NUL-terminated.
15368 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
15370         * docs/design/draft-push-pull.txt:
15371         * docs/design/part-overview.txt:
15372         * docs/random/TODO-pre-0.9:
15373         * docs/random/old/ChangeLog.gstreamer:
15374         * gst/base/gstpushsrc.c:
15375         * gst/gstclock.c:
15376           fixed typos
15378 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15380         * gst/glib-compat.c: (gst_flags_get_first_value):
15381         * gst/glib-compat.h:
15382         * gst/gstvalue.c: (gst_value_deserialize_int_helper),
15383         (gst_value_compare_double), (gst_value_serialize_flags):
15384           GLib 2.6 g_flags_get_first_value has a bug that triggers an
15385           infinite loop
15387 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15389         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
15390         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
15391           fix up debugging
15392         * tools/gst-launch.c: (event_loop):
15393           print out clock nicely
15395 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
15397         * docs/gst/gstreamer-sections.txt:
15398         * gst/gsttaglist.h:
15399         * gst/gsttaglist.c: (_gst_tag_initialize), (gst_tag_list_get_date),
15400         (gst_tag_list_get_date_index):
15401           Added gst_tag_list_get_date() and gst_tag_list_get_date_index().
15402           GST_TAG_DATE now has a tag type of GST_TYPE_DATE (#170777).
15404 2005-10-13  Julien MOUTTE  <julien@moutte.net>
15406         * gst/base/gstcollectpads.c: (gst_collectpads_event),
15407         (gst_collectpads_chain):
15408         * gst/base/gstcollectpads.h: Handle newsegment and store informations
15409         in CollectData.
15411 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
15413         * docs/gst/gstreamer-sections.txt:
15414         * gst/gst.c:
15415         * gst/gsterror.h:
15416         * tools/gst-inspect.c: (main):
15417         * tools/gst-launch.c: (main):
15418         * tools/gst-run.c: (main):
15419         * tools/gst-xmlinspect.c: (main):
15420           fix GOption context leaks
15421           doc fixes
15423 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
15425         * gst/gstbus.c:
15426           use HAVE_UNISTD_H
15427         * win32/common/config.h:
15428           update config
15429         * win32/vs6/grammar.dsp:
15430         * win32/vs6/libgstelements.dsp:
15431         * win32/vs6/libgstreamer.dsp:
15432           update vs6 files
15434 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15436         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
15437         * gst/base/gstbasesrc.c: (gst_base_src_query):
15438           fix more guint64<->gdouble conversions
15440 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15442         * Makefile.am:
15443           add win32-update target
15444         * win32/common/gstconfig.h:
15445         * win32/common/gstenumtypes.c:
15446         * win32/common/gstenumtypes.h:
15447         * win32/common/gstversion.h:
15448           add files that visual studio can't generate
15450 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15452         * Makefile.am:
15453           add a win32-update target
15454         * configure.ac:
15456 2005-10-12  Wim Taymans  <wim@fluendo.com>
15458         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
15459         (reset_degree), (gst_bin_dispose), (bin_bus_handler):
15460         * gst/gstelement.c: (gst_element_commit_state),
15461         (gst_element_set_state):
15462         Protect flags with proper lock.
15463         unref provided cached clock in dispose.
15465 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
15467         * gst/gst.c:
15468         * gst/gstminiobject.h:
15469         * gst/gstpad.h:
15470         * win32/gstenumtypes.c: (gst_mini_object_flags_get_type):
15471           removed unused flags from miniobject
15472           doc fixes
15474 2005-10-12  Wim Taymans  <wim@fluendo.com>
15476         * gst/elements/gstfilesink.c: (gst_file_sink_do_seek),
15477         (gst_file_sink_event), (gst_file_sink_render):
15478         Flush before seeking.
15480 2005-10-12  Andy Wingo  <wingo@pobox.com>
15482         * gst/gst.c (gst_init_check): Ignore unknown options, as has
15483         always been the case.
15485 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
15487         * check/gst/gstbin.c: (GST_START_TEST):
15488         * docs/gst/gstreamer-sections.txt:
15489         * gst/base/gstbasesink.c: (gst_base_sink_init):
15490         * gst/base/gstbasesrc.c: (gst_base_src_init),
15491         (gst_base_src_get_range), (gst_base_src_check_get_range),
15492         (gst_base_src_start), (gst_base_src_stop):
15493         * gst/base/gstbasesrc.h:
15494         * gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
15495         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
15496         (bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
15497         (bin_bus_handler):
15498         * gst/gstbin.h:
15499         * gst/gstbuffer.h:
15500         * gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
15501         * gst/gstbus.h:
15502         * gst/gstelement.c: (gst_element_is_locked_state),
15503         (gst_element_set_locked_state), (gst_element_commit_state),
15504         (gst_element_set_state):
15505         * gst/gstelement.h:
15506         * gst/gstindex.c: (gst_index_init):
15507         * gst/gstindex.h:
15508         * gst/gstminiobject.h:
15509         * gst/gstobject.c: (gst_object_init), (gst_object_sink),
15510         (gst_object_set_parent):
15511         * gst/gstobject.h:
15512         * gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
15513         (gst_pad_get_caps_unlocked), (gst_pad_set_caps):
15514         * gst/gstpad.h:
15515         * gst/gstpadtemplate.h:
15516         * gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
15517         (gst_pipeline_use_clock), (gst_pipeline_auto_clock):
15518         * gst/gstpipeline.h:
15519         * gst/indexers/gstfileindex.c: (gst_file_index_load),
15520         (gst_file_index_commit):
15521         * testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
15522         * testsuite/pad/link.c: (gst_test_src_init),
15523         (gst_test_filter_init), (gst_test_sink_init):
15524         * testsuite/states/locked.c: (main):
15525           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
15526           moved bitshift from macro to enum definition
15528 2005-10-12  Wim Taymans  <wim@fluendo.com>
15530         * gst/base/gstbasesink.c: (gst_base_sink_handle_buffer):
15531         * gst/elements/gstfilesink.c: (gst_file_sink_event),
15532         (gst_file_sink_render):
15533         Some more debugging info.
15535 2005-10-12  Wim Taymans  <wim@fluendo.com>
15537         * docs/design/part-states.txt:
15538         * tools/gst-launch.c: (main):
15539         Some doc updates.
15540         Revert non-intentional change.
15542 2005-10-12  Wim Taymans  <wim@fluendo.com>
15544         * check/gst/gstbin.c: (GST_START_TEST):
15545         * check/gst/gstelement.c: (GST_START_TEST):
15546         * check/gst/gstevent.c: (GST_START_TEST), (test_event):
15547         * check/gst/gstghostpad.c: (GST_START_TEST):
15548         * check/gst/gstpipeline.c: (GST_START_TEST):
15549         * check/pipelines/simple_launch_lines.c: (run_pipeline):
15550         * check/states/sinks.c: (GST_START_TEST):
15551         * gst/elements/gsttypefindelement.c: (stop_typefinding):
15552         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
15553         (gst_bin_remove_func), (gst_bin_get_state_func),
15554         (gst_bin_recalc_state), (gst_bin_change_state_func),
15555         (bin_bus_handler):
15556         * gst/gstelement.c: (gst_element_get_state_func),
15557         (gst_element_get_state), (gst_element_abort_state),
15558         (gst_element_commit_state), (gst_element_set_state),
15559         (gst_element_change_state), (gst_element_change_state_func):
15560         * gst/gstelement.h:
15561         * gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
15562         (gst_pipeline_provide_clock_func):
15563         * gst/gstutils.c: (gst_element_link_pads_filtered):
15564         * tools/gst-launch.c: (main):
15565         * tools/gst-typefind.c: (main):
15566         Use GstClockTime in _get_state() instead of GTimeVal.
15567         Remove old code in gstutils.c
15569 2005-10-12  Andy Wingo  <wingo@pobox.com>
15571         * gst/gstregistry.h (gst_registry_scan_paths): Not implemented, so
15572         removed.
15574         * gst/gstpad.c (gst_pad_pause_task): Actually return FALSE if
15575         there is no task. Shouldn't affect any code, as nothing in our
15576         plugins checks this return value.
15577         (gst_pad_stop_task): Also take the stream lock if the pad has no
15578         task. Docs updated.
15580 2005-10-12  Wim Taymans  <wim@fluendo.com>
15582         * gst/gstpad.c: (pre_activate), (post_activate),
15583         (gst_pad_activate_pull), (gst_pad_activate_push):
15584         Cleanup activation code. Reset old state if
15585         activation failed.
15587 2005-10-12  Wim Taymans  <wim@fluendo.com>
15589         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
15590         (gst_base_sink_change_state):
15591         No need to prerol after receiving EOS.
15593         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
15594         * gst/elements/gstfakesrc.c: (gst_fake_src_event_handler):
15595         * gst/elements/gstidentity.c: (gst_identity_event):
15596         Print events more verbosely.
15598 2005-10-12  Wim Taymans  <wim@fluendo.com>
15600         * check/Makefile.am:
15601         * check/states/sinks.c: (GST_START_TEST), (gst_object_suite):
15602         * check/states/sinks2.c:
15603         Moved sinks2 testcode in sinks check.
15605         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
15606         (gst_bin_remove_func), (gst_bin_recalc_state),
15607         (gst_bin_change_state_func), (bin_bus_handler):
15608         Fix potential race condition when _get_state() iterated over an
15609         ASYNC element right before it posted a state completion.
15611         * gst/gstclock.h:
15612         Do proper cast here.
15614         * gst/gstevent.c: (gst_event_new_newsegment),
15615         (gst_event_parse_newsegment):
15616         A playback rate of 0.0 is not allowed.
15618 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15620         * win32/common/config.h:
15621         * win32/common/dirent.c: (_topendir), (_treaddir), (_tclosedir),
15622         (_trewinddir), (_ttelldir), (_tseekdir):
15623         * win32/common/dirent.h:
15624         * win32/common/gtchar.h:
15625         * win32/common/libgstbase.def:
15626         * win32/common/libgstreamer.def:
15627         * win32/vs6/grammar.dsp:
15628         * win32/vs6/gst_inspect.dsp:
15629         * win32/vs6/gst_launch.dsp:
15630         * win32/vs6/gstreamer.dsw:
15631         * win32/vs6/libgstbase.dsp:
15632         * win32/vs6/libgstelements.dsp:
15633         * win32/vs6/libgstreamer.dsp:
15634           Visual Studio 6 project files, and a new common directory.
15635           Phear.
15637 2005-10-11  Wim Taymans  <wim@fluendo.com>
15639         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
15640         (gst_base_sink_do_sync), (gst_base_sink_query),
15641         (gst_base_sink_change_state):
15642         * gst/base/gstbasesink.h:
15643         Correctly parse newsegment info.
15645 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15647         * gst/gst.c: (init_post):
15648           split plugin paths correctly
15650 2005-10-11  Wim Taymans  <wim@fluendo.com>
15652         * check/gst/gstevent.c: (GST_START_TEST):
15653         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
15654         (gst_base_sink_change_state):
15655         * gst/base/gstbasesrc.c: (gst_base_src_default_newsegment):
15656         * gst/base/gstbasetransform.c: (gst_base_transform_event):
15657         * gst/elements/gstfilesink.c: (gst_file_sink_event):
15658         * gst/gstevent.c: (gst_event_new_newsegment),
15659         (gst_event_parse_newsegment):
15660         * gst/gstevent.h:
15661         Added extra flag to newsegment for future API freeze.
15662         Updated check and base elements.
15664 2005-10-11  Julien MOUTTE  <julien@moutte.net>
15666         * gst/base/gstcollectpads.c: (gst_collectpads_init),
15667         (gst_collectpads_add_pad), (gst_collectpads_pop),
15668         (gst_collectpads_event), (gst_collectpads_chain):
15669         * gst/base/gstcollectpads.h: Handle EOS correctly.
15671 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15673         * tools/gst-launch.c: (main):
15674           more null protecting
15676 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15678         * gst/gst-i18n-lib.h:
15679           check for ENABLE_NLS, not GETTEXT_PACKAGE
15680         * gst/gstregistry.c: (gst_registry_add_plugin),
15681         (gst_registry_scan_path_level),
15682         (_gst_registry_remove_cache_plugins):
15683           protect possibly NULL strings
15684         * gst/parse/types.h:
15685           config.h already included before
15686         * tools/gst-inspect.c: (main):
15687           sys/wait.h also doesn�t exist on mingw, so change the ifdef check
15688           check for ENABLE_NLS, not GETTEXT_PACKAGE
15689         * tools/gst-launch.c: (main):
15690           check for ENABLE_NLS, not GETTEXT_PACKAGE
15692 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15694         * configure.ac:
15695           if we don't have glib, fail before testing 2.8
15696         * gst/base/gstbasetransform.c: (gst_base_transform_change_state):
15697           fix a leak, should fix plugins-base testsuite
15699 2005-10-11  Andy Wingo  <wingo@pobox.com>
15701         * gst/gstpad.c (pre_activate): Renamed from pre_activate_switch,
15702         take the mode we're going to as an arg. Go head and set the mode
15703         and flushing flags now, so that if the activate function starts a
15704         thread all the flags will be in the right state.
15705         (post_activate): Renamed also. Just handle making sure streaming
15706         finishes for the deactivation case, and setting the deactivated
15707         mode.
15708         (gst_pad_set_active): Complain loudly if deactivation fails.
15709         (gst_pad_activate_pull): Adapt to pre/post_activate changes.
15710         (gst_pad_activate_push): Adapt to pre/post_activate changes,
15711         remove the terrible hack.
15713 2005-10-11  Wim Taymans  <wim@fluendo.com>
15715         * gst/gstbin.c: (gst_bin_init), (gst_bin_provide_clock_func),
15716         (is_eos), (gst_bin_add_func), (gst_bin_remove_func),
15717         (gst_bin_recalc_state), (gst_bin_change_state_func),
15718         (gst_bin_dispose), (bin_bus_handler):
15719         * gst/gstbin.h:
15720         Prepare to make current EOS message queue more generic.
15721         Fix some typos.
15723         * gst/gstevent.c: (gst_event_new_newsegment),
15724         (gst_event_parse_newsegment):
15725         * gst/gstevent.h:
15726         Rename base to stream_time.
15728         * gst/gstmessage.h:
15729         Fix typo in docs.
15731 2005-10-11  Wim Taymans  <wim@fluendo.com>
15733         * gst/gstbin.c: (gst_bin_init), (gst_bin_provide_clock_func),
15734         (gst_bin_add_func), (gst_bin_remove_func), (gst_bin_recalc_state),
15735         (gst_bin_change_state_func), (bin_bus_handler):
15736         * gst/gstbin.h:
15737         Work on proper clock selection.
15739 2005-10-11  Edward Hervey  <edward@fluendo.com>
15741         * libs/gst/controller/gstcontroller.c: (gst_controller_remove_properties_list): 
15742         * libs/gst/controller/gstcontroller.h:
15743         Added GList* version of _remove_properties() in order to be able to wrap
15744         it in bindings.
15746 2005-10-11  Wim Taymans  <wim@fluendo.com>
15748         * docs/design/part-states.txt:
15749         Some more docs.
15751         * gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_recalc_state),
15752         (gst_bin_change_state_func), (bin_bus_handler):
15753         Doc updates. Don't distribute the same clock over and over again.
15755         * gst/gstclock.c:
15756         * gst/gstclock.h:
15757         Doc updates.
15759         * gst/gstpad.c: (gst_flow_get_name), (gst_flow_to_quark),
15760         (gst_pad_get_type), (gst_pad_push), (gst_pad_push_event),
15761         (gst_pad_send_event):
15762         * gst/gstpad.h:
15763         Make probe emission threadsafe again.
15764         Register quarks and move _get_name() from utils.
15765         Doc updates.
15767         * gst/gstpipeline.c: (gst_pipeline_class_init),
15768         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
15769         Only redistribute the clock of it changed.
15771         * gst/gstsystemclock.h:
15772         Doc updates. 
15774         * gst/gstutils.c:
15775         * gst/gstutils.h:
15776         Moved the _flow_get_name() to GstPad.
15778 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15780         * check/gst-libs/gdp.c: (GST_START_TEST):
15781         * check/gst/gstcaps.c: (GST_START_TEST):
15782         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
15783         (gst_dp_dump_byte_array), (gst_dp_header_from_buffer),
15784         (gst_dp_packet_from_caps):
15785           fix more valgrind warnings before turning up the heat
15787 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
15789         * gst/parse/grammar.y:
15790           some cleanup before the hacking
15792 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15794         * gst/base/gstbasesrc.c: (gst_base_src_query):
15795           use conversions
15796         * gst/gstutils.c: (gst_guint64_to_gdouble),
15797         (gst_gdouble_to_guint64), (gst_util_uint64_scale):
15798         * gst/gstutils.h:
15799           externalize, basesrc uses it
15800           obviously the implementation needs testing
15802 2005-10-10  Wim Taymans  <wim@fluendo.com>
15804         * tests/sched/Makefile.am:
15805         * tests/sched/sort.c: (make_pipeline1), (make_pipeline2),
15806         (make_pipeline3), (make_pipeline4), (print_elem), (main):
15808 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15810         * gst/gstutils.c: (guint64_to_gdouble), (gst_util_uint64_scale):
15811           apparently converting from guint64 to double is not implemented
15812           on MSVC
15814 2005-10-10  Wim Taymans  <wim@fluendo.com>
15816         * check/Makefile.am:
15817         * check/generic/states.c: (GST_START_TEST):
15818         * check/gst/gstbin.c: (GST_START_TEST):
15819         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
15820         * check/states/sinks.c: (GST_START_TEST):
15821         * check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
15822         (main):
15823         Check fixes, use API as stated in design docs, remove hacks.
15825         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
15826         (gst_base_sink_change_state):
15827         Catch stopping our task while we're shutting down.
15829         * gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
15830         (gst_bin_remove_func), (gst_bin_get_state_func),
15831         (gst_bin_recalc_state), (gst_bin_change_state_func),
15832         (bin_bus_handler):
15833         * gst/gstbin.h:
15834         * gst/gstelement.c: (gst_element_init),
15835         (gst_element_get_state_func), (gst_element_abort_state),
15836         (gst_element_commit_state), (gst_element_lost_state),
15837         (gst_element_set_state), (gst_element_change_state),
15838         (gst_element_change_state_func):
15839         * gst/gstelement.h:
15840         New state change algorithm (see #318116)
15842         * gst/gstpipeline.c: (gst_pipeline_class_init),
15843         (gst_pipeline_init), (gst_pipeline_set_property),
15844         (gst_pipeline_get_property), (do_pipeline_seek),
15845         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
15846         * gst/gstpipeline.h:
15847         Remove crude state change hacks.
15849         * gst/gstutils.h:
15850         Remove crude hacks.
15852         * tools/gst-launch.c: (main):
15853         Fixes for state change. Needs some more work to fully use the
15854         new stuff.
15856 2005-10-10  Andy Wingo  <wingo@pobox.com>
15858         * tests/Makefile.am (noinst_PROGRAMS): No more init.c.
15860         * gst/gst.c (G_OPTION_FLAG_NO_ARG): Apparently GLib 2.8 requires
15861         this flag, but it's not even in GLib 2.6. Odd. Hack around the
15862         issue.
15864 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15866         * gst/gstiterator.c: (gst_iterator_new):
15867           Fix my previous commit: GTypes passed to gst_iterator_new()
15868           can be fundamental types.
15870 2005-10-10  Wim Taymans  <wim@fluendo.com>
15872         * gst/gstelement.c: (gst_element_iterate_pad_list),
15873         (gst_element_iterate_pads), (gst_element_iterate_src_pads),
15874         (gst_element_iterate_sink_pads):
15875         Use src/sink pads lists for the respective iterators instead
15876         of filtering.
15878 2005-10-10  Andy Wingo  <wingo@pobox.com>
15880         Merged in popt removal + GOption addition patch from Ronald, bug
15881         #169772.
15883         * docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
15884         GstElement macros around, remove popt-related symbols, add goption
15885         stuff.
15887         * configure.ac: Remove popt checks, require GLib 2.6 for GOption.
15888         
15889         * docs/gst/Makefile.am:
15890         * docs/libs/Makefile.am: No POPT_CFLAGS.
15891         
15892         * examples/manual/Makefile.am:
15893         * docs/manual/basics-init.xml: Doc updates with an example.
15894         
15895         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
15896         (gst_init), (parse_one_option), (parse_goption_arg):
15897         * gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
15898         bit of hand merging and debugging to get the GOption stuff working
15899         tho.
15900         
15901         * tests/Makefile.am:
15902         * tools/Makefile.am:
15903         * tools/gst-inspect.c: (main):
15904         * tools/gst-launch.c: (main):
15905         * tools/gst-run.c: (main):
15906         * tools/gst-xmlinspect.c: (main): Thanks Ronald!
15908 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15910         * gst/gstiterator.c: (gst_iterator_new):
15911           Add assertions to make sure passed GType is likely to really
15912           be a GType (as the compiler won't catch it if the size and
15913           GType arguments get mixed up, see #318447).
15915 2005-10-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
15917         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
15919         * gst/gstbin.c: (gst_bin_iterate_sorted):
15920           Pass GType and size arguments to gst_iterator_new() in the right
15921           order (maybe we should make _new() take the GType as first argument
15922           just like _new_list()?) (#318447).
15923           
15925 2005-10-10  Wim Taymans  <wim@fluendo.com>
15927         * gst/gstelement.c: (gst_element_finalize):
15928         And free the GStaticRecMutex too
15930 2005-10-10  Andy Wingo  <wingo@pobox.com>
15932         * gst/gstelement.c (gst_element_init, gst_element_finalize):
15933         Allocate and free the mutex properly.
15935         * gst/gstelement.h (GST_STATE_UNLOCK_FULL, GST_STATE_LOCK_FULL):
15936         New macros.
15937         (GstElement): The state_lock is now recursive. Rebuild your
15938         plugins, suckers. Old macros adapted.
15940         * docs/gst/gstreamer-sections.txt: Doc updates.
15942         * gst/gstutils.h:
15943         * gst/gstutils.c (g_static_rec_cond_timed_wait) 
15944         (g_static_rec_cond_wait): Ported from state changes patch, while
15945         we wait on bug #317802 to be solved in a well-distributed GLib.
15947         * gst/gstelement.c (gst_element_change_state_func): Renamed from
15948         gst_element_change_state, variable name changes.
15949         (gst_element_change_state): Split out of gst_element_set_state in
15950         preparation for the state change merge. Doesn't pay attention to
15951         the 'transition' argument.
15952         (gst_element_set_state): Updates, hopefully purely cosmetic.
15953         (gst_element_sync_state_with_parent): MT-safety. Ported from the
15954         state change patch.
15955         (gst_element_get_state_func): Renamed from get_state, cosmetic
15956         changes.
15958 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15960         * gst/elements/gstelements.c:
15961         * win32/GStreamer.vcproj:
15962         * win32/config.h:
15963         * win32/dirent.c: (_tseekdir):
15964         * win32/gst-inspect.vcproj:
15965         * win32/gst-launch.vcproj:
15966         * win32/gstconfig.h:
15967         * win32/gstelements.vcproj:
15968         * win32/gstenumtypes.c: (gst_object_flags_get_type):
15969         * win32/gstreamer.def:
15970         * win32/msvc71.sln:
15971           updates for the win32 build (patch from Sebastien Moutte)
15973 2005-10-10  Andy Wingo  <wingo@pobox.com>
15975         * gst/gstbin.c (gst_bin_get_state_func): Renamed from
15976         gst_bin_get_state, cleaned up (but no logic changes).
15977         (bin_element_is_sink): Comment updates.
15978         (sink_iterator_filter): Remove needless cast.
15979         (gst_bin_iterate_sinks): Doc update.
15980         (gst_bin_change_state_func): Renamed from gst_bin_change_state,
15981         cleaned up (but no logic changes).
15983         * check/states/sinks.c (test_src_sink): Cleanups from the state
15984         change patch.
15985         (test_livesrc_sink): Sync on the state.
15987         * check/pipelines/simple_launch_lines.c (run_pipeline): Merge from
15988         the state change patch.
15990         * check/gst/gstghostpad.c (test_ghost_pads): Merge from the state
15991         change patch.
15993         * check/gst/gstbin.c: Merge in some style fixes and additional
15994         checks from Wim's state change patch.
15996 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
15998         * gst/base/gsttypefindhelper.c: (helper_find_peek),
15999         (gst_type_find_helper):
16000           Check whether we have the requested data already in our list of
16001           cached buffers before pulling a new buffer; also make the buffer
16002           list a GSList. Speeds up typefinding by ca. 5-10% altogether.
16004 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
16006         * gst/gstcaps.c:
16007         * gst/gstevent.c:
16008           doc updates
16009         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
16010           don't use long long, it's not portable.  Replacing with
16011           gint64 seems to work; let's hope no skeletons fall out of the closet.
16013 2005-10-10  Andy Wingo  <wingo@pobox.com>
16015         * autogen.sh (CONFIGURE_DEF_OPT): No more --plugin-buiddir, yay
16017 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
16019         * docs/gst/gstreamer-sections.txt:
16020         * gst/gstevent.c:
16021         * gst/gstevent.h:
16022         * gst/gstinfo.c:
16023         * gst/gstinfo.h:
16024         * gst/gstmessage.c: (gst_message_parse_state_changed):
16025         * gst/gstpad.c:
16026         * gst/gstpad.h:
16027           more docs, fix compilation
16029 2005-10-09  Philippe Khalaf <burger@speedy.org>
16030         * gst/gstmessage.c:
16031           Fixed a few forgotten variables on previous commit
16033 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
16035         * gst/base/gsttypefindhelper.c: (helper_find_peek):
16036           Fix evil typefind crasher: getrange() might return a short
16037           buffer at the end of a file, but gst_type_find_peek() must
16038           either return the full data as requested or NULL, but
16039           never a short buffer.
16041 2005-10-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16043         * gst/gstmessage.c: (gst_message_new_state_changed),
16044         (gst_message_parse_state_changed):
16045         * gst/gstmessage.h:
16046           don't use "new", it's a C++ keyword
16048 2005-10-08  Wim Taymans  <wim@fluendo.com>
16050         * gst/gstbin.c: (is_eos), (update_degree), (gst_bin_query):
16051         * gst/gstelement.c: (gst_element_post_message):
16052         * gst/gstpipeline.c: (gst_pipeline_change_state):
16053         Small docs and debug updates.
16055 2005-10-08  Stefan Kost  <ensonic@users.sf.net>
16057         * docs/gst/gstreamer-sections.txt:
16058         * gst/gstelementfactory.c:
16059         * gst/gstevent.c:
16060         * gst/gsttaglist.c:
16061           more docs
16063 2005-10-08  Wim Taymans  <wim@fluendo.com>
16065         * gst/gstbin.c: (is_eos), (update_degree), (gst_bin_change_state),
16066         (gst_bin_dispose), (bin_bus_handler):
16067         Fix typos, add comments.
16068         Clear EOS list when going to PAUSED from any direction and do it
16069         in a threadsafe way.
16070         Get base time in a threadsafe way too.
16071         Fix confusing debug in the change_state function.
16072         Various other small cleanups.
16073         
16074         * gst/gstelement.c: (gst_element_post_message):
16075         Fix very verbose bus posting code.
16077         * gst/gstpipeline.c: (gst_pipeline_class_init),
16078         (gst_pipeline_set_property), (gst_pipeline_get_property),
16079         (gst_pipeline_change_state):
16080         Small ARG_ -> PROP_ cleanup
16082 2005-10-08  Wim Taymans  <wim@fluendo.com>
16084         * gst/gstbin.c: (is_eos), (bin_bus_handler):
16085         Do a less CPU demanding EOS check because we can.
16087 2005-10-08  Wim Taymans  <wim@fluendo.com>
16089         * libs/gst/dataprotocol/dataprotocol.c:
16090         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
16091         (gst_dp_packet_from_event):
16092         * libs/gst/dataprotocol/dataprotocol.h:
16093         * libs/gst/dataprotocol/dp-private.h:
16094         It's about time we bump the version number.
16095         Since event types don't fit in the guint8 anymore describing
16096         the payload type, make payload type 16 bits wide.
16098 2005-10-08  Wim Taymans  <wim@fluendo.com>
16100         * docs/design/part-TODO.txt:
16101         * docs/design/part-clocks.txt:
16102         * docs/design/part-events.txt:
16103         * docs/design/part-gstbin.txt:
16104         * docs/design/part-gstelement.txt:
16105         * docs/design/part-gstpipeline.txt:
16106         * docs/design/part-live-source.txt:
16107         * docs/design/part-messages.txt:
16108         * docs/design/part-overview.txt:
16109         * docs/design/part-states.txt:
16110         Many doc updates.
16112 2005-10-08  Wim Taymans  <wim@fluendo.com>
16114         * gst/gstevent.c:
16115         * gst/gstevent.h:
16116         Fix event quark registration.
16117         Add some space between events so we can insert them in the
16118         right groups.
16120 2005-10-08  Wim Taymans  <wim@fluendo.com>
16122         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
16123         (gst_base_sink_handle_buffer):
16124         Better log message.
16126         * gst/gstbus.h:
16127         * gst/gstelement.h:
16128         More docs.
16130         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
16131         (gst_queue_set_property), (gst_queue_get_property):
16132         * gst/gstqueue.h:
16133         Remove old unused properties.
16135 2005-10-08  Stefan Kost  <ensonic@users.sf.net>
16136         * docs/gst/gstreamer-sections.txt:
16137         * gst/gstmessage.c:
16138         * gst/gstmessage.h:
16139         * gst/gstminiobject.c:
16140         * gst/gstminiobject.h:
16141         * gst/gstobject.h:
16142         * gst/gstpad.h:
16143         * gst/gstutils.h:
16144           lots of new docs and doc fixes
16146 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16148         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_load_file):
16149         * gst/gstplugin.h:
16150         * gst/gstregistry.c: (gst_registry_lookup_locked),
16151         (gst_registry_scan_path_level):
16152         * gst/gstregistryxml.c: (load_plugin):
16153           Only ever load one plugin for a given plugin basename.
16154           This ensures correct overriding of GST_PLUGIN_PATH over
16155           GST_PLUGIN_SYSTEM_PATH and of home dir plugins over
16156           system installed plugins.
16158 2005-10-08  Wim Taymans  <wim@fluendo.com>
16160         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
16161         (gst_base_sink_do_sync), (gst_base_sink_handle_buffer):
16162         Prepare for doing QOS.
16164 2005-10-08  Wim Taymans  <wim@fluendo.com>
16166         * check/gst/gstbin.c: (GST_START_TEST):
16167         * check/pipelines/cleanup.c: (GST_START_TEST):
16168         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
16169         Allow new clock message too.
16171 2005-10-08  Wim Taymans  <wim@fluendo.com>
16173         * gst/gstmessage.c: (gst_message_new_error),
16174         (gst_message_new_warning), (gst_message_new_tag),
16175         (gst_message_new_state_changed), (gst_message_new_clock_provide),
16176         (gst_message_new_clock_lost), (gst_message_new_new_clock),
16177         (gst_message_new_segment_start), (gst_message_new_segment_done),
16178         (gst_message_parse_state_changed),
16179         (gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
16180         (gst_message_parse_new_clock):
16181         * gst/gstmessage.h:
16182         Also carry the clock in question.
16184 2005-10-08  Wim Taymans  <wim@fluendo.com>
16186         * gst/gstmessage.c: (gst_message_new_custom),
16187         (gst_message_new_eos), (gst_message_new_error),
16188         (gst_message_new_warning), (gst_message_new_tag),
16189         (gst_message_new_state_changed), (gst_message_new_clock_provide),
16190         (gst_message_new_new_clock), (gst_message_new_segment_start),
16191         (gst_message_new_segment_done), (gst_message_parse_state_changed),
16192         (gst_message_parse_clock_provide), (gst_message_parse_new_clock):
16193         * gst/gstmessage.h:
16194         Clean up.
16195         Added clock related messages.
16197         * gst/gstpipeline.c: (gst_pipeline_change_state):
16198         Post message when the clock changed.
16200         * tools/gst-launch.c: (event_loop):
16201         Print new clock.
16203 2005-10-08  Tim-Philipp Müller  <tim at centricular dot net>
16205         * tools/gst-inspect.c: (print_element_properties_info):
16206           Can't pass NULL strings to g_print() on windows.
16208 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16210         * docs/Makefile.am:
16211         * docs/gst/Makefile.am:
16212         * docs/gst/gstreamer-docs.sgml:
16213         * docs/gst/running.xml:
16214         * docs/version.entities.in:
16215           add a chapter on running GStreamer.
16216           document GST_DEBUG and GST_PLUGIN* env vars
16218 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16220         * Makefile.am:
16221           remove include dir
16222         * configure.ac:
16223           remove PLUGINS_BUILDDIR stuff
16224         * gst/gst.c: (init_post):
16225           reorder parsing of GST_PLUGIN_PATH and GST_PLUGIN_SYSTEM_PATH
16226         * idiottest.mak:
16227           remove, it was condescending and not needed
16229 2005-10-08  Wim Taymans  <wim@fluendo.com>
16231         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
16232         (gst_base_sink_handle_object), (gst_base_sink_event),
16233         (gst_base_sink_wait), (gst_base_sink_handle_event),
16234         (gst_base_sink_change_state):
16235         * gst/base/gstbasesink.h:
16236         Repost EOS message while going to PLAYING if still EOS.
16237         Make sure that when receiving a FLUSH_START we don't attempt
16238         to sync on the clock anymore.
16240 2005-10-08  Wim Taymans  <wim@fluendo.com>
16242         * tools/gst-launch.c: (event_loop):
16243         Better message printout.
16245 2005-10-08  Wim Taymans  <wim@fluendo.com>
16247         * gst/gstbin.c: (gst_bin_child_proxy_get_child_by_index),
16248         (gst_bin_child_proxy_get_children_count):
16249         * gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
16250         (gst_child_proxy_lookup), (gst_child_proxy_get_property),
16251         (gst_child_proxy_get_valist), (gst_child_proxy_set_property),
16252         (gst_child_proxy_set_valist):
16253         * gst/parse/grammar.y:
16254         Make ChildProxy threadsafe and fix mem leaks.
16256 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16258         * gst/gst.c: (init_post):
16259           debug the GST_PLUGIN_ env vars
16261 2005-10-08  Wim Taymans  <wim@fluendo.com>
16263         * check/gst/gstbin.c: (GST_START_TEST):
16264         * check/gst/gstmessage.c: (GST_START_TEST):
16265         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
16266         * gst/gstelement.c: (gst_element_commit_state),
16267         (gst_element_lost_state):
16268         * gst/gstmessage.c: (gst_message_new_state_changed),
16269         (gst_message_parse_state_changed):
16270         * gst/gstmessage.h:
16271         * tools/gst-launch.c: (event_loop):
16272         Added extra field to STATE_CHANGE message with the pending
16273         state, which will be different from the new state soon.
16275 2005-10-08  Wim Taymans  <wim@fluendo.com>
16277         * gst/gstbus.c: (gst_bus_pop):
16278         * gst/gstclock.c:
16279         * gst/gstsystemclock.c: (gst_system_clock_async_thread):
16280         Small cleanups and doc updates.
16282 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
16284         * gst/gst.c: (init_pre):
16285         * gst/gstbin.c: (gst_bin_add_func):
16286           log distributing clocks and base time
16287         * gst/gstregistry.c: (gst_registry_add_plugin),
16288         (gst_registry_scan_path_level), (gst_registry_scan_path):
16289           clean up the debugging output a little
16290         * gst/gstutils.c: (gst_element_state_get_name):
16291           warn about a memleak (I've actually seen this be used, though
16292           it was probably a bug)
16294 2005-10-07  Wim Taymans  <wim@fluendo.com>
16296         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
16297         (gst_base_src_init), (gst_base_src_default_newsegment),
16298         (gst_base_src_newsegment), (gst_base_src_do_seek),
16299         (gst_base_src_loop), (gst_base_src_start):
16300         * gst/base/gstbasesrc.h:
16301         Make the newsegment event customizable by subclasses.
16303 2005-10-07  Wim Taymans  <wim@fluendo.com>
16305         * gst/gstevent.c: (gst_event_new_buffersize),
16306         (gst_event_parse_buffersize):
16307         * gst/gstevent.h:
16308         New event for future idea.
16310 2005-10-07  Andy Wingo  <wingo@pobox.com>
16312         * gst/gstelement.c (gst_element_post_message): Doc update.
16314         * docs/gst/gstreamer-sections.txt: Update.
16316         * gst/gstmessage.c (gst_message_new_application): Made into a
16317         function like honest API calls.
16318         (gst_message_new_element): New message type.
16320         * gst/gstmessage.h (enum): Add GST_MESSAGE_ELEMENT type.
16322         * check/elements/fakesrc.c (test_no_preroll): New check, checks
16323         that setting a live fakesrc to PAUSED returns NO_PREROLL both
16324         times.
16326         * gst/base/gstbasesrc.c (gst_base_src_change_state): Allow a
16327         NO_PREROLL from gst_element_change_state to fall through.
16329 2005-10-07  Wim Taymans  <wim@fluendo.com>
16331         * gst/gstghostpad.c: (gst_ghost_pad_get_internal),
16332         (gst_ghost_pad_do_activate_push):
16333         Activating a ghostpad with no internal pad in push mode
16334         is ok.
16336 2005-10-07  Thomas Vander Stichele  <thomas at apestaart dot org>
16338         * gst/gstobject.h:
16339           there's no point in wrapping FLAG_SET/_UNSET in STMT macros.
16340           Fixes compilation on Windows.
16342 2005-10-07  Michael Smith <msmith@fluendo.com>
16344         * tools/gst-inspect.c:
16345           Print out feature and plugin count at the end when printing out
16346           all features.
16348 2005-10-04  Michael Smith <msmith@fluendo.com>
16350         * gst/gsterror.c: (_gst_stream_errors_init):
16351           Add another error string used in a few existing plugins.
16353         * gst/gstplugin.c:
16354         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
16355         * tools/gst-inspect.c: (print_element_info):
16356           When a feature disappears from a plugin (and the feature exists in
16357           the cached registry file), things went horribly wrong. This isn't a
16358           complete fix, we should actually be removing the 'missing' features
16359           from the features list when we load the actual plugin. That's not
16360           yet implemented. 
16362 2005-10-04  Johan Dahlin  <johan@gnome.org>
16364         * check/gst/gstiterator.c: (GST_START_TEST):
16365         * gst/gstbin.c: (gst_bin_iterate_elements),
16366         (gst_bin_iterate_recurse), (gst_bin_iterate_sorted):
16367         * gst/gstelement.c: (gst_element_iterate_pads):
16368         * gst/gstformat.c: (gst_format_iterate_definitions):
16369         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
16370         (gst_iterator_new_list), (gst_iterator_filter):
16371         * gst/gstiterator.h:
16372         * gst/gstquery.c: (gst_query_type_iterate_definitions):
16373         Add a GType to GstIterator, update callsites and tests.
16375 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16377         * gst/gstpad.c: (gst_pad_event_default_dispatch):
16378           give events a chance to be handled by event probes when the pad
16379           is not linked
16381 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16383         * gst/gstevent.c: (gst_event_type_get_name),
16384         (gst_event_type_to_quark), (gst_event_finalize), (gst_event_new):
16385         * gst/gstevent.h:
16386           add string representations for event types
16388 2005-10-06  Wim Taymans  <wim@fluendo.com>
16390         * gst/elements/gstfilesink.c: (gst_file_sink_close_file):
16391         Don't use NULL pointers.
16393 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16395         * gst/gst_private.h:
16396         * gst/gstbus.c:
16397         * gst/gstelement.c:
16398         * gst/gstinfo.c:
16399         * gst/gstpluginfeature.c:
16400           widen the debug category in output to fit the biggest one we have
16401           add a bus category and use it
16402           play with the colors
16403           fix up some categories
16405 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16407         * gst/gstghostpad.c: (gst_ghost_pad_internal_do_activate_push):
16408           add push activation of sink ghost pads.
16409           Andye, please verify
16411 2005-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16413         * gst/gstutils.c: (gst_element_link_pads):
16414           fix a bug in the case where neither element has a pad
16415         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
16416           add a test for that case
16418 2005-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16420         * gst/gstpad.c: (gst_pad_push), (gst_pad_push_event):
16421           emit have-data before checking for peers.  This allows
16422           for probe handlers to connect elements.  This helps autopluggers.
16423         * check/gst/gstpad.c: (GST_START_TEST), (_probe_handler),
16424         (gst_pad_suite):
16425           add six checks, linked/unlinked with no/true/false probe
16427 2005-10-04  Wim Taymans  <wim@fluendo.com>
16429         * gst/elements/gstfakesink.c: (gst_fake_sink_get_property),
16430         (gst_fake_sink_event), (gst_fake_sink_preroll),
16431         (gst_fake_sink_render), (gst_fake_sink_change_state):
16432         * gst/elements/gstfakesrc.c: (gst_fake_src_event_handler),
16433         (gst_fake_src_get_property), (gst_fake_src_create),
16434         (gst_fake_src_stop):
16435         * gst/elements/gstidentity.c: (gst_identity_stop):
16436         Protect last_message with lock.
16438 2005-10-04  Edward Hervey  <edward@fluendo.com>
16440         * gst/gstformat.h: 
16441         Added precision in the comments for GST_FORMAT_DEFAULT
16443 2005-10-04  Tim-Philipp Müller  <tim at centricular dot net>
16445         * tools/gst-launch.c: (main):
16446           Don't try to run erroneous pipelines.
16448 2005-10-04  Julien MOUTTE  <julien@moutte.net>
16450         * gst/gstbus.c: We don't need this header.
16452 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16454         * configure.ac:
16455           back to development
16457 === release 0.9.3 ===
16459 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16461         * README:
16462         * configure.ac:
16463           Releasing 0.9.3, "Unregistered"
16465 2005-10-03  Andy Wingo  <wingo@pobox.com>
16467         * gst/gstpad.c (gst_pad_activate_push): There is a race condition
16468         whereby calling a pad's activatepush() function can start a thread
16469         that starts to push or pull before the pad gets the FLUSHING flag
16470         unset. Hack around it by holding the stream lock until the flag is
16471         set. Need to replace this with a proper solution. Together with
16472         the ghost pad fixes, this fixes mp3 playing/tagreading.
16474         * docs/design/part-gstghostpad.txt: Add a note about activation of
16475         proxy pads outside of ghost pads.
16477         * gst/gstghostpad.c: Implement the ghost pad activation design.
16479 2005-10-02  Andy Wingo  <wingo@pobox.com>
16481         * gst/gstobject.h (GST_OBJECT_REFCOUNT_VALUE): Just use the int.
16482         It is volatile, after all.
16484         * docs/design/part-gstghostpad.txt: Flesh out activation with
16485         ghost pads.
16487         * gst/base/gstbasesrc.c (gst_base_src_init): Use
16488         GST_DEBUG_FUNCPTR.
16490 2005-10-02  Tim-Philipp Müller  <tim at centricular dot net>
16492         * configure.ac:
16493           Fix (unused) AM_CONDITIONAL tests.
16495 2005-10-01  Alessandro Decina  <alessandro at nnva dot org>
16497         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
16499         * gst/gstutils.c: (gst_pad_query_convert):
16500           Add assertion that makes sure src_val is >=0, just like
16501           gst_query_new_convert() has. (#315895)
16503 2005-09-30  Edward Hervey  <edward@fluendo.com>
16505         * gst/elements/gsttee.c: (gst_tee_do_push), (gst_tee_handle_buffer):
16506         Let's not iterate pads we're not interested in, it avoids getting 
16507         sky-high refcounts on sinkpad.
16509 2005-09-30  Wim Taymans  <wim@fluendo.com>
16511         * gst/gstelement.c: (gst_element_set_state),
16512         (gst_element_change_state):
16513         Small tweak, element in ASYNC remains ASYNC.
16515 2005-09-30  Wim Taymans  <wim@fluendo.com>
16517         * gst/base/gstbasesink.c: (gst_base_sink_change_state):
16518         Only error is an error.
16520         * gst/gstbin.c: (gst_bin_change_state):
16521         Better debugging.
16523         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_chain):
16524         Also call pad_block in pad alloc.
16526         * gst/gstutils.c: (gst_flow_get_name):
16527         Better debugging.
16529 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
16531         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
16532         (gst_base_src_get_range):
16533           Fix documentation typos. Add some more debug info.
16535 2005-09-29  David Schleef  <ds@schleef.org>
16537         * gst/gstplugin.c: (gst_plugin_load_file): Make some error messages
16538           more end-user friendly.
16539         * tools/gst-inspect.c: (main): Check if command-line argument is
16540           a file and attempt to load that file as a plugin.
16542 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16544         * check/gst/gstbin.c:
16545         * check/states/sinks.c:
16546           fix tests for the new warning
16547         * check/gst/gstpipeline.c:
16548           add a test for pipeline and bus interaction
16549         * gst/gstelement.c:
16550           elements should be NULL if they get disposed; add a warning if not
16552 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16554         * gst/gstobject.c:
16555           for 2.6 refcounting, make debug log more correct by printing
16556           the actual refcounts at the time of swap (Wim)
16558 2005-09-29  Andy Wingo  <wingo@pobox.com>
16560         * gst/gstbus.c (gst_bus_remove_signal_watch): New function,
16561         removes signal watches previously added via
16562         gst_bus_add_signal_watch.
16563         (gst_bus_add_signal_watch): Don't return the source id, just store
16564         it on the bus if there wasn't an id already.
16566         * gst/gstbus.h (GstBus): Add a couple new fields. API changes for
16567         add_signal_watch and remove_signal_watch.
16569 2005-09-29  Edward Hervey  <edward@fluendo.com>
16571         * libs/gst/controller/gstcontroller.c: (gst_controller_new_list): 
16572         Better if we actually iterate the list :)
16574 2005-09-29  Wim Taymans  <wim@fluendo.com>
16576         * check/gst/gstbin.c: (GST_START_TEST):
16577         Change for new bus API.
16579         * check/gst/gstbus.c: (message_func_eos), (message_func_app),
16580         (send_messages), (GST_START_TEST), (gstbus_suite):
16581         Change for new bus signal API.
16583         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_have_pending),
16584         (gst_bus_source_prepare), (gst_bus_source_check),
16585         (gst_bus_create_watch), (gst_bus_add_watch_full),
16586         (gst_bus_add_watch), (gst_bus_poll), (gst_bus_async_signal_func),
16587         (gst_bus_sync_signal_handler), (gst_bus_add_signal_watch):
16588         * gst/gstbus.h:
16589         Remove support for multiple GSources operating on different
16590         message types as it is too complex and unneeded when using
16591         signals.
16592         Added support for receiving signals from the bus.
16594 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
16596         * docs/libs/tmpl/gstdataprotocol.sgml:
16597         * docs/manual/advanced-dataaccess.xml:
16598         * gst/elements/gstcapsfilter.c:
16599         * gst/gstutils.c:
16600           rename filter-caps to caps property
16602 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
16604         * gst/gstvalue.c: (gst_value_deserialize_fraction):
16605           More robust fraction string parsing.
16607         * docs/pwg/appendix-porting.xml:
16608           Mention gst_pad_use_explicit_caps() => gst_pad_use_fixed_caps()
16610 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
16612         * gst/gstcaps.c: (gst_caps_do_simplify):
16613           Thou shalt not free a structure and then continue using it
16614           in the next loop iteration.
16616         * check/gst/gstcaps.c: (check_fourcc_list), (test_simplify),
16617         (gst_caps_suite):
16618           Add test case for caps simplification.
16620 2005-09-29  Wim Taymans  <wim@fluendo.com>
16622         * check/gst/gstbin.c: (GST_START_TEST):
16623         Oops.
16625 2005-09-29  Wim Taymans  <wim@fluendo.com>
16627         * check/gst/gstbin.c: (GST_START_TEST):
16628         Add bus to bin.
16630         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
16631         (add_to_queue), (clear_queue), (reset_degree), (update_degree),
16632         (find_element), (gst_bin_sort_iterator_next),
16633         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
16634         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
16635         (gst_bin_change_state), (gst_bin_dispose):
16636         A bin does not have a bus, it gets the bus from the parent.
16638         * gst/gstelement.c: (gst_element_requires_clock),
16639         (gst_element_provides_clock), (gst_element_is_indexable),
16640         (gst_element_is_locked_state), (gst_element_change_state),
16641         (gst_element_set_bus_func):
16642         Small cleanups.
16644         * gst/gstpipeline.c: (gst_pipeline_class_init),
16645         (gst_pipeline_init), (gst_pipeline_provide_clock_func):
16646         The pipeline provides a bus.
16648 2005-09-28  Johan Dahlin  <johan@gnome.org>
16650         * gst/gstmessage.c (gst_message_parse_state_changed): Use
16651         gst_structure_get_enum instead of gst_structure_get_int
16653         * gst/gststructure.c (gst_structure_get_enum): Impl.
16655         * gst/gststructure.h (gst_structure_get_enum): Add
16657         * docs/gst/gstreamer-sections.txt: Ditto
16659         * gst/gstmessage.c (gst_message_new_state_changed): Use
16660         GST_TYPE_STATE instead of G_TYPE_INT, mainly for language bindings
16661         which does introspection.
16662         Reviewed by Christian Schaller
16664 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
16666         * gst/gstinfo.c: (gst_debug_log_default):
16667           don't do dummy g_strdup()s
16668         * libs/gst/controller/gstcontroller.c:
16669         (on_object_controlled_property_changed),
16670         (gst_controlled_property_new), (gst_controller_new_valist),
16671         (gst_controller_new_list),
16672         (gst_controller_remove_properties_valist), (gst_controller_set),
16673         (gst_controller_get), (gst_controller_sync_values),
16674         (gst_controller_get_value_array), (_gst_controller_class_init),
16675         (gst_controller_get_type):
16676         * libs/gst/controller/gstcontroller.h:
16677         * libs/gst/controller/gstinterpolation.c:
16678         (gst_controlled_property_find_timed_value_node):
16679           convert // to /**/ comments
16681 2005-09-28  Wim Taymans  <wim@fluendo.com>
16683         * gst/gstbus.c: (marshal_VOID__MINIOBJECT), (gst_bus_class_init),
16684         (gst_bus_post), (poll_func), (gst_bus_async_signal_func),
16685         (gst_bus_sync_signal_handler):
16686         * gst/gstbus.h:
16687         Added async-message and sync-message signals to the bus.
16688         Added helper BusFunc to emit signals for all posted messages.
16690         * gst/gstmessage.c: (gst_message_type_get_name),
16691         (gst_message_type_to_quark), (gst_message_get_type):
16692         * gst/gstmessage.h:
16693         Register quarks for message names.
16695 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
16697         * docs/libs/gstreamer-libs-sections.txt:
16698         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
16699         (gst_controller_new_list):
16700         * libs/gst/controller/gstcontroller.h:
16701           added another constructor for language bindings
16703 2005-09-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16705         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
16706           add another check
16707         * gst/gstbus.c:
16708           add some doc
16709         * gst/gstinfo.c: (_gst_debug_init):
16710           slightly more readable color for refcount debugging
16712 2005-09-28  Wim Taymans  <wim@fluendo.com>
16714         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_provide_clock_func),
16715         (add_to_queue), (clear_queue), (reset_degree), (update_degree),
16716         (find_element), (gst_bin_sort_iterator_next),
16717         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
16718         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
16719         (gst_bin_change_state), (gst_bin_dispose):
16720         Small doc fixes. get_clock -> provide_clock.
16722         * gst/gstelement.c: (gst_element_class_init),
16723         (gst_element_provides_clock), (gst_element_provide_clock),
16724         (gst_element_get_clock), (gst_element_commit_state),
16725         (gst_element_lost_state):
16726         * gst/gstelement.h:
16727         Make get/set_clock() symetric. Add provide_clock vmethod since
16728         that is actually what this function does.
16730         * gst/gstpipeline.c: (gst_pipeline_class_init),
16731         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func),
16732         (gst_pipeline_get_clock):
16733         get_clock -> provide_clock.
16735 2005-09-28  Andy Wingo  <wingo@pobox.com>
16737         * gst/base/gstbasesrc.c (gst_base_src_unlock): Comment a bit in
16738         lieu of real docs...
16740         * gst/elements/gstfdsrc.c: Cleaned up a bit.
16742 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
16744         * gst/elements/gstcapsfilter.c:
16745         * gst/elements/gstfakesink.c:
16746         * gst/elements/gstfakesrc.c:
16747         * gst/elements/gstfdsink.c:
16748         * gst/elements/gstfdsrc.c:
16749         * gst/elements/gstfilesink.c:
16750         * gst/elements/gstfilesrc.c:
16751         * gst/elements/gstidentity.c:
16752         * gst/elements/gsttee.c:
16753         * gst/elements/gsttypefindelement.c:
16754           Make element details static.
16756 2005-09-28  Wim Taymans  <wim@fluendo.com>
16758         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
16759         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
16760         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
16761         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
16762         (gst_bin_change_state), (gst_bin_dispose):
16763         Some documentation updates.
16764         Clean up dispose handlers.
16766         * gst/gstobject.c: (gst_object_ref), (gst_object_unref):
16767         * gst/gstpad.c: (gst_pad_dispose):
16768         Clean up dispose handler.
16770         * gst/gstpipeline.c: (gst_pipeline_change_state):
16771         Removed spurious UNLOCK.
16773 2005-09-27  Stefan Kost  <ensonic@users.sf.net>
16775         * docs/gst/gstreamer-sections.txt:
16776         * gst/base/gstbasesrc.h:
16777         * gst/gstelement.h:
16778         * gst/gstevent.h:
16779         * gst/gstobject.h:
16780         * gst/gstpad.h:
16781         * gst/gstpipeline.c:
16782         * gst/gstpipeline.h:
16783         * gst/gstutils.h:
16784         * gst/gstxml.h:
16785           added two new functions to the docs
16786                 documents all undocumented GstXXXFlags
16787                 completed some incomplete docs 
16789 2005-09-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16791         * gst/gstbin.c: (gst_bin_dispose):
16792         * gst/gstelement.c: (gst_element_dispose):
16793           remove now useless and leaky resurrection code in dispose
16794         * gst/base/gstbasesrc.c: (gst_base_src_init):
16795         * gst/gstelementfactory.c: (gst_element_factory_create):
16796         * gst/gstobject.c: (gst_object_set_parent):
16797           add some debugging
16799 2005-09-27  Wim Taymans  <wim@fluendo.com>
16801         * docs/design/part-TODO.txt:
16802         Update TODO.
16804         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
16805         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
16806         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
16807         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
16808         (gst_bin_change_state):
16809         * gst/gstelement.h:
16810         Remove element variable, we keep element info in the iterator now.
16812 2005-09-27  Andy Wingo  <wingo@pobox.com>
16814         * libs/gst/dataprotocol/dataprotocol.c: Fix error-checking return
16815         values.
16817 2005-09-27  Wim Taymans  <wim@fluendo.com>
16819         * check/gst/gstbin.c: (GST_START_TEST):
16820         Enable check that works now.
16822         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
16823         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
16824         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
16825         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
16826         (gst_bin_change_state):
16827         * gst/gstbin.h:
16828         Redid the state change algorithm using a topological sort algo.
16829         Handles all cases correctly.
16830         Exposed iterator for state change order.
16832         * gst/gstelement.h:
16833         Temp storage for state changes. Need to get rid of this soon.
16835 2005-09-27  Wim Taymans  <wim@fluendo.com>
16837         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_do_push):
16838         * gst/gstutils.c: (intersect_caps_func), (gst_pad_proxy_getcaps),
16839         (link_fold_func), (gst_pad_proxy_setcaps):
16840         Leak fixes, the fold functions need to unref the passed object and
16841         _get_parent_*() returns ref to parent.
16843 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
16845         * check/gst/gstbuffer.c: (test_make_writable):
16846           Plug leak in test case and fix 'make check-valgrind'
16848 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
16850         * gst/gstbuffer.c: (gst_subbuffer_init):
16851           Set READONLY flag on subbuffers, so that gst_buffer_make_writable()
16852           works correctly in all circumstances (we could have just copied
16853           the parent buffer's readonly flag, but conceptually it seems
16854           cleaner to mark all subbuffers as read-only). (based on patch
16855           by Alessandro Decina, #314710).
16856         
16857         * check/gst/gstbuffer.c: (create_read_only_buffer),
16858         (test_make_writable), (test_subbuffer_make_writable),
16859         (gst_test_suite):
16860           Add some tests for gst_buffer_make_writable().
16862 2005-09-27  Wim Taymans  <wim@fluendo.com>
16864         * gst/gstbin.c: (bin_element_is_semi_sink), (gst_bin_change_state):
16865         use gst_object_has_ancestor().
16867         * gst/gstobject.c: (gst_object_has_ancestor):
16868         * gst/gstobject.h:
16869         gst_object_has_ancestor() copied from gstbin.c as it is a
16870         useful function.
16872         * tests/instantiate/create.c: (create_all_elements):
16873         * tests/lat.c: (handoff_src), (handoff_sink):
16874         * tests/sched/runxml.c: (main):
16875         * tests/seeking/seeking1.c: (main):
16876         * tests/threadstate/threadstate2.c: (bus_handler), (timeout_func),
16877         (main):
16878         Fix compilation of some tests.
16880 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
16882         * gst/gsterror.h:
16883           Remove comment. GST_TYPE_G_ERROR is here to stay,
16884           G_TYPE_ERROR has been WONTFIX'ed by the GLib folks
16885           (#316961, #300610).
16887 2005-09-26  Wim Taymans  <wim@fluendo.com>
16889         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
16890         Added check that shows error in state change order.
16892 2005-09-26  Wim Taymans  <wim@fluendo.com>
16894         * gst/gstbin.c: (gst_bin_change_state):
16895         Make state change function use 3 queues again, we were
16896         adding elements in the wrong order.
16898         * gst/gstghostpad.c: (gst_ghost_pad_do_unlink):
16899         Some debug info,
16901         * gst/gstpad.c: (gst_pad_dispose):
16902         Added some debug info first.
16904 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
16906         * docs/design/draft-push-pull.txt:
16907         * docs/design/part-events.txt:
16908         * docs/design/part-overview.txt:
16909         * docs/design/part-scheduling.txt:
16910           Replace all _pull_region() with _pull_range()
16911           
16912 2005-09-26  Andy Wingo  <wingo@pobox.com>
16914         * gst/gstvalue.c (_gst_value_initialize): Better fakeout.
16916         * check/gst-libs/controller.c: Update for controller api change.
16918         * configure.ac: 
16919         * tests/Makefile.am:
16920         * tests/memchunk: Remove memchunk benchmark stuff, this is taken
16921         over by GLib bug 118439.
16922         
16923         * gst/base/gstbasesink.c (gst_base_sink_wait): Factor out the wait
16924         routines to a function.
16926         * docs/libs/gstreamer-libs-sections.txt: I am a good person today.
16928         * libs/gst/controller/gsthelper.c:
16929         * libs/gst/controller/gstcontroller.h (gst_controller_sync_values)
16930         (gst_object_sync_values): Renamed from sink_values. Ugh.
16932         * libs/gst/controller/gsthelper.c: Update for __gst_controller_key.
16934         * libs/gst/controller/gstcontroller.c (__gst_controller_key):
16935         Renamed from controller_key, as it is exported.
16937         * gst/gstvalue.c (_gst_value_initialize): Fake out the compiler.
16939 2005-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
16941         * gst/Makefile.am:
16942         * gst/gst.h:
16943         * gst/gstpad.h:
16944         * gst/gstpadtemplate.h:
16945         * gst/gstquery.c:
16946         * gst/gstquery.h:
16947         * gst/gstqueryutils.c:
16948         * gst/gstqueryutils.h:
16949           remove queryutils headers after moving the two used functions
16950           to gstquery.  also fixes build problem for gstsiddec
16952 2005-09-26  Michael Smith <msmith@fluendo.com>
16954         * tools/gst-launch.1.in:
16955         Correct documentation in manpage of debug syntax
16957 2005-09-26  Wim Taymans  <wim@fluendo.com>
16959         * gst/base/gstbasesrc.c: (gst_base_src_get_range),
16960         (gst_base_src_is_seekable), (gst_base_src_change_state):
16961         Some more debugging info.
16963 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
16965         * docs/gst/gstreamer-sections.txt:
16966         * gst/base/gstbasetransform.h:
16967         * gst/gstindex.h:
16968           added more docs
16970 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
16972         * docs/gst/.cvsignore:
16973         * docs/gst/tmpl/.cvsignore:
16974         * docs/gst/tmpl/gstpipeline.sgml:
16975         * docs/gst/tmpl/gstplugin.sgml:
16976         * gst/gstpipeline.c:
16977         * gst/gstplugin.c:
16978         * gst/gstplugin.h:
16979           inlined the last two docs files
16980           removed the tmpl directory from cvs (no more conflicts here!)
16982 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
16984         * docs/gst/gstreamer-sections.txt:
16985         * docs/gst/tmpl/.cvsignore:
16986         * docs/gst/tmpl/gstpad.sgml:
16987         * docs/gst/tmpl/gstpadtemplate.sgml:
16988         * gst/Makefile.am:
16989         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_dispose),
16990         (gst_pad_finalize), (gst_pad_set_pad_template):
16991         * gst/gstpad.h:
16992         * gst/gstpadtemplate.c: (gst_pad_template_get_type),
16993         (gst_pad_template_class_init), (gst_pad_template_init),
16994         (gst_pad_template_dispose), (name_is_valid),
16995         (gst_static_pad_template_get), (gst_pad_template_new),
16996         (gst_static_pad_template_get_caps), (gst_pad_template_get_caps),
16997         (gst_pad_template_pad_created):
16998         * gst/gstpadtemplate.h:
16999           inlined two more docs
17000           factored gstpadtemplate out of gstpad
17002 2005-09-24  Tim-Philipp Müller  <tim at centricular dot net>
17004         * check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
17005         (test_children_state_change_order_semi_sink):
17006           Fix test case: we can't rely on a fixed state change order when
17007           going from READY => PAUSED because the sink might commit its 
17008           new state first when the first buffer created by the source 
17009           reaches the sink before the source has finished its change state.
17010           (Test case still fails at times, see #316856, comment 5 onwards)
17012 2005-09-24  Wim Taymans  <wim@fluendo.com>
17014         * docs/design/part-events.txt:
17015         * docs/design/part-gstbus.txt:
17016         * docs/design/part-gstpipeline.txt:
17017         * docs/design/part-messages.txt:
17018         * docs/design/part-overview.txt:
17019         * docs/design/part-segments.txt:
17020         * gst/gstbin.c:
17021         * gst/gstbuffer.c:
17022         * gst/gstclock.c:
17023         * gst/gstelement.c:
17024         * gst/gstevent.c:
17025         * gst/gstfilter.c:
17026         * gst/gstiterator.c:
17027         Various documentation updates.
17029 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
17031         * gst/gstclock.h:
17032           Well, that's embarassing.  Luckily we weren't using
17033           GST_CLOCK_DIFF anywhere.
17035 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17037         * common/gtk-doc.mak:
17038           don't fail on building XML, FC4 slave shows a bunch of doc
17039           missing bits that I don't get
17040         * gst/gstpad.c:
17041         * gst/gstpipeline.c:
17042         * gst/gststructure.c:
17043           some doc updates
17045 2005-09-23  Tim-Philipp Müller  <tim at centricular dot net>
17047         * docs/design/part-gstbin.txt:
17048         * docs/design/part-gstbus.txt:
17049         * gst/gstbus.c:
17050           Add blurb about how the bus goes into flushing mode and
17051           drops all messages when its bin goes from READY into NULL 
17052           state.
17054 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17056         * docs/gst/gstreamer-sections.txt:
17057         * gst/gststructure.c: (gst_structure_get_clock_time):
17058         * gst/gststructure.h:
17059           add a method to get a GstClockTime out of a structure
17061 2005-09-23  Tim-Philipp Müller  <tim at centricular dot net>
17063         * check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
17064         (test_children_state_change_order_semi_sink), (gst_bin_suite):
17065           Added test to check state change order in bins (can still be made
17066           to fail here under heavy disk load; bails out with 'Push on pad
17067           fakesink:sink0, but it was not activated in push mode').
17069         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_change_state):
17070           Fix state change order when there is only a semi sink (#316856)
17072         * gst/gstbus.c: (gst_bus_class_init):
17073           Use _class_peek_parent(), not _class_ref(); fix docs to say
17074           'default main context' instead of 'mainloop' where that is
17075           what's meant.
17077         * gst/gstelement.c: (gst_element_commit_state),
17078         (gst_element_set_state):
17079           Fix typos in debug messages
17081 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17083         * docs/README:
17084         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_chain):
17085         * gst/gstpluginfeature.c:
17086         * gst/gstutils.c:
17087           various doc updates
17088         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
17089           change an assert into an error until it gets fixed properly
17091 2005-09-23  Stefan Kost  <ensonic@users.sf.net>
17093         * docs/gst/gstreamer-sections.txt:
17094         * docs/gst/tmpl/.cvsignore:
17095         * docs/gst/tmpl/gstelement.sgml:
17096         * docs/gst/tmpl/gstinfo.sgml:
17097         * docs/gst/tmpl/gstobject.sgml:
17098         * gst/gstelement.c:
17099         * gst/gstelement.h:
17100         * gst/gstinfo.c:
17101         * gst/gstinfo.h:
17102         * gst/gstobject.c: (gst_object_class_init):
17103         * gst/gstobject.h:
17104           inlined 3 more biiiig doc files and added some missing docs on the fly
17106 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
17108         * check/gst/.cvsignore:
17109         * check/gst/gstplugin.c: (GST_START_TEST), (gst_plugin_suite):
17110         * gst/gstregistryxml.c: (load_plugin),
17111         (gst_registry_xml_save_plugin):
17112           put back source in registry.  add checks for find_plugin.
17113         * testsuite/states/bin.c: (assert_state), (empty_bin),
17114         (test_adding_one_element), (main):
17115         * testsuite/states/locked.c: (main):
17116           some compile/run fixes
17118 2005-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17120         * check/gst/gstvalue.c: (GST_START_TEST):
17121           fix leaks in the test itself
17123 2005-09-22  Wim Taymans  <wim@fluendo.com>
17125         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
17126         (gst_base_sink_send_event), (gst_base_sink_peer_query),
17127         (gst_base_sink_query):
17128         Prepare for more accurate position reporting and query
17129         handling.
17131         * gst/gstelement.c: (gst_element_send_event),
17132         (gst_element_set_state):
17133         Add some comment.
17135 2005-09-22  Wim Taymans  <wim@fluendo.com>
17137         * gst/gstquery.c: (gst_query_new_segment), (gst_query_set_segment),
17138         (gst_query_parse_segment):
17139         * gst/gstquery.h:
17140         More documentation.
17141         Add segment query for future use.
17143 2005-09-22  Wim Taymans  <wim@fluendo.com>
17145         * gst/gstbin.c: (gst_bin_add_func):
17146         Some more debug info.
17148         * gst/gstelement.c: (gst_element_send_event):
17149         Simplify send_event
17151         * gst/gstelement.h:
17152         Don't know how flags got broken.
17154         * gst/gstquery.h:
17155         Added new query.
17157 2005-09-22  Tim-Philipp Müller  <tim at centricular dot net>
17159         * check/gst/gstvalue.c: (test_date), (gst_value_suite):
17160           Add simplistic test suite for GST_TYPE_DATE serialisation and
17161           deserialisation.
17163 2005-09-22  Tim-Philipp Müller  <tim at centricular dot net>
17165         * docs/gst/gstreamer-sections.txt:
17166         * gst/gststructure.c: (gst_structure_set_valist),
17167         (gst_structure_get_date):
17168         * gst/gststructure.h:
17169         * gst/gstvalue.c: (gst_value_set_date), (gst_value_get_date),
17170         (gst_date_copy), (gst_value_compare_date),
17171         (gst_value_serialize_date), (gst_value_deserialize_date),
17172         (gst_value_transform_date_string),
17173         (gst_value_transform_string_date), (_gst_value_initialize):
17174         * gst/gstvalue.h:
17175           Add GST_TYPE_DATE, a boxed type that wraps GDate, and the usual
17176           bunch of utility functions along with a hack that checks that
17177           developers don't accidentally use G_TYPE_DATE where GST_TYPE_DATE
17178           is required. Part of the grand scheme in #170777.
17180 2005-09-22  Andy Wingo  <wingo@pobox.com>
17182         * gst/gstconfig.h.in: Psych out gtk-doc.
17184         * docs/gst/gstreamer-sections.txt: Add GST_HAVE_GLIB_2_8.
17186         * check/Makefile.am (check_PROGRAMS): Add gstplugin to the tests.
17188         * tools/gst-inspect.c (print_element_list): Plug some
17189         inconsequential leaks.
17191         * gst/gstregistry.c (gst_registry_get_default): Doc.
17193         * check/gst/gstplugin.c: 
17194         * gst/gsttypefindfactory.c (gst_type_find_factory_call_function):
17195         * gst/gstelementfactory.c (gst_element_factory_create): 
17196         * gst/gstindexfactory.c (gst_index_factory_create): Update for
17197         refcount changes.
17199         * gst/gstpluginfeature.c (gst_plugin_feature_list_free): Doc.
17200         (gst_plugin_feature_load): Doc, don't eat refs.
17202         * gst/gstplugin.c (gst_plugin_load): Doc, don't eat refs.
17203         (gst_plugin_list_free): Doc.
17204         (gst_plugin_load_file): Doc updates.
17206         * gst/gstbuffer.c (gst_buffer_get_caps): Like all our _get
17207         accessors returning refcounted objects, return a ref.
17209         * check/gst/gstbuffer.c (GST_START_TEST): Use refcount-idempotent
17210         accessor for caps. IDEMPOTENCE. Oh yes.
17212 2005-09-21  Francis Labonte  <francis_labonte at hotmail dot com>
17214         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17216         * gst/gstinfo.c: (_gst_debug_nameof_funcptr),
17217         (_gst_debug_register_funcptr):
17218           Add mutex to serialise access to the hash table with
17219           the function pointer => function name string mapping;
17220           make that hash table static scope (#316809).
17222         * gst/registries/.cvsignore:
17223           Remove left-over file.
17225 2005-09-21  Tim-Philipp Müller  <tim at centricular dot net>
17227         * docs/pwg/appendix-porting.xml:
17228           And something about newsegment events and caps-on-buffers to
17229           the porting guide (feel free to improve).
17231 2005-09-21  Andy Wingo  <wingo@pobox.com>
17233         * check/gst/gstutils.c (test_buffer_probe_n_times): Add tests for
17234         data and event probes on the same pad.
17235         (test_buffer_probe_once): Test that removing probes from within
17236         the probe functions works.
17238 2005-09-21  Andy Wingo  <wingo@pobox.com>
17240         * check/gst/gstutils.c: New file.
17241         (test_buffer_probe_n_times): A simple buffer probe test. More to
17242         come, foolios.
17244         * gst/gstutils.c (gst_pad_add_buffer_probe): Connect to
17245         have-data::buffer, not have-data.
17246         (gst_pad_add_event_probe): Likewise for have-data::event.
17247         (gst_pad_add_data_probe): More docs. The part about 'resolving the
17248         peer' isn't quite right yet though.
17249         (gst_pad_remove_buffer_probe, gst_pad_remove_event_probe) 
17250         (gst_pad_remove_data_probe): Change to take the guint handler_id
17251         as their arg, not the function+data, which is more glib-like.
17253         * gst/gstpad.c (gst_pad_emit_have_data_signal): Add a detail to
17254         the signal emission to indicate if the data is a buffer or an
17255         event.
17256         (gst_pad_get_type): Initialize buffer and event quarks.
17257         (gst_pad_class_init): have-data is now a detailed signal, yes it
17258         is.
17260 2005-09-21  Tim-Philipp Müller  <tim at centricular dot net>
17262         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size):
17263         * gst/gstutils.c: (gst_util_set_value_from_string),
17264         (gst_util_set_object_arg):
17265           Don't put functional code in g_return_if_fail() or
17266           g_return_val_if_fail() statements, otherwise things will 
17267           break when G_DISABLE_CHECKS is defined during compilation.
17269 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
17271         * docs/gst/tmpl/.cvsignore:
17272         * docs/gst/tmpl/gstvalue.sgml:
17273         * gst/gstvalue.c:
17274         * gst/gstvalue.h:
17275           inlied another one and added  some obvious docs
17277 2005-09-21  Wim Taymans  <wim@fluendo.com>
17279         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
17280         (gst_fdsrc_init), (gst_fdsrc_start), (gst_fdsrc_stop),
17281         (gst_fdsrc_unlock), (gst_fdsrc_set_property),
17282         (gst_fdsrc_get_property), (gst_fdsrc_create):
17283         * gst/elements/gstfdsrc.h:
17284         Properly implement fdsrc. Removed signal and timeout,
17285         better implemented somewhere else.
17287 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
17289         * docs/gst/tmpl/.cvsignore:
17290         * docs/gst/tmpl/gstimplementsinterface.sgml:
17291         * gst/gstinterface.c:
17292           inlined more docs
17294 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
17296         * docs/gst/gstreamer-sections.txt:
17297         * docs/gst/tmpl/.cvsignore:
17298         * docs/gst/tmpl/gstenumtypes.sgml:
17299           remove obsolete doc file
17301 2005-09-21  David Schleef  <ds@schleef.org>
17303         * gst/gstelementfactory.c: (gst_element_factory_make): Drink a
17304         little beer, fix a little leak.
17306 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
17308         * docs/gst/gstreamer-docs.sgml:
17309         * docs/gst/gstreamer-sections.txt:
17310         * docs/gst/tmpl/.cvsignore:
17311         * gst/Makefile.am:
17312         * gst/gst.h:
17313         * gst/gstbin.c:
17314         * gst/gstelement.h:
17315         * gst/gstindex.c: (gst_index_class_init):
17316         * gst/gstindex.h:
17317         * gst/gstindexfactory.c: (gst_index_factory_get_type),
17318         (gst_index_factory_class_init), (gst_index_factory_init),
17319         (gst_index_factory_finalize), (gst_index_factory_new),
17320         (gst_index_factory_destroy), (gst_index_factory_find),
17321         (gst_index_factory_create), (gst_index_factory_make):
17322         * gst/gstindexfactory.h:
17323         * gst/gstpluginfeature.c:
17324         * gst/gstpluginfeature.h:
17325         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
17326           more docs inlined, splitted gstindex.{c,h}
17328 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17330         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
17331           fix a leak
17333 2005-09-20  Tim-Philipp Müller  <tim at centricular dot net>
17335         * gst/elements/gstfilesink.c: (gst_file_sink_init):
17336           Set sync to FALSE by default.
17338 2005-09-20  Wim Taymans  <wim@fluendo.com>
17340         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
17341         (gst_base_sink_init):
17342         Make sync property settable from subclass.
17344         * gst/elements/gstfakesink.c: (gst_fake_sink_init),
17345         (gst_fake_sink_change_state):
17346         Set sync to FALSE by default.
17348 2005-09-20  Wim Taymans  <wim@fluendo.com>
17350         * gst/gstbus.c: (poll_func), (poll_timeout), (gst_bus_poll):
17351         * tools/gst-launch.c: (main):
17352         The timeout handler should have lower priority than the source
17353         so we don't timeout before popping a message with 0 timeout.
17354         Dump error messages after failed state change.
17356 2005-09-20  Tim-Philipp Müller  <tim at centricular dot net>
17358         * tools/gst-inspect.c: (print_element_properties_info):
17359           Fix two typos.
17361 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17363         * check/gst/gstevent.c:
17364         * gst/elements/gstfakesink.c:
17365         * gst/elements/gstfakesink.h:
17366           remove the sync property from fakesink.
17367           has the side effect of setting sync TRUE
17368           for fakesink, which is a change.  Anyone who knows how
17369           to fix this nicely in a GObject-y way, feel free.
17371 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
17373         * docs/gst/gstreamer-docs.sgml:
17374           remove probe refsection
17376 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
17378         * check/Makefile.am:
17379           disable valgrinding the controller test again
17380         * docs/gst/gstreamer-sections.txt:
17381           update for api-changes
17383 2005-09-20  Wim Taymans  <wim@fluendo.com>
17385         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
17386         (gst_base_sink_set_property), (gst_base_sink_get_property),
17387         (gst_base_sink_do_sync):
17388         * gst/base/gstbasesink.h:
17389         Added sync property to basesink to disable clock sync.
17391 2005-09-20  Andy Wingo  <wingo@pobox.com>
17393         * gst/gstelementfactory.c (gst_element_factory_create): Avoid
17394         eating the caller's refcount.
17396         * gst/gstobject.h (GST_OBJECT_REFCOUNT) 
17397         (GST_OBJECT_REFCOUNT_VALUE): Conditionally fondle the right
17398         refcount.
17400         * gst/gstconfig.h.in (GST_HAVE_GLIB_2_8):
17401         * configure.ac (GST_HAVE_GLIB_2_8_DEFINE): Make the availability
17402         of GLib 2.8 public, so we can know which refcount to check in
17403         tests.
17405         * gst/gstobject.c: Use the GST_HAVE_GLIB_2_8 define.
17406         (gst_object_init): Only set the gst refcount if we're going ahead
17407         with the refcount hack.
17409 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
17411         * check/gst-libs/controller.c: (plugin_init), (GST_START_TEST):
17412         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
17413           more leaks plumbed, added more debug-logging
17414         * gst/gstmacros.h:
17415           whitespace fix
17417 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17419         * gst/gstmessage.c:
17420           remove include of gstmemchunk.h
17422 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17424         * gst/gstclock.c: (_gst_clock_id_free):
17425           Commit from the Political Party For More Atomic CVS Commits,
17426           so that people don't waste too much of their day fishing
17427           out obvious leaks out of massive commits.
17428           Oh, and fix a pretty damn obvious leak in the memchunk
17429           removal code.
17431 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
17433         * check/Makefile.am:
17434         * check/gst-libs/controller.c: (plugin_init), (GST_START_TEST):
17435           plug mem-leak, re-add to valgrindable tests
17437 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17439         * gst/gstplugin.h:
17440           unbreak the build for those who have chronic arthritis
17441           and typing "make check" is just too taxing on the hands
17443 2005-09-20  Andy Wingo  <wingo@pobox.com>
17445         * gst/gst.h: Re-add marshal to gst.h's include list -- if we
17446         really want it out, you should fix plugins at the same time.
17448 2005-09-19  Stefan Kost  <ensonic@users.sf.net>
17450         * configure.ac:
17451         * docs/gst/gstreamer-sections.txt:
17452         * gst/gstobject.c:
17453           added missing symbols to api docs
17454           disable ref-count hack if we have glib >= 2.8
17456 2005-09-19  David Schleef  <ds@schleef.org>
17458         * docs/gst/Makefile.am: Ignore a few more internal headers
17459         * docs/gst/gstreamer-docs.sgml: Remove old sections
17460         * docs/gst/gstreamer-sections.txt: Remove old sections
17461         * docs/gst/tmpl/gstobject.sgml: update
17462         * docs/gst/tmpl/gstplugin.sgml: update
17463         * docs/gst/tmpl/gstpluginfeature.sgml: update
17464         * docs/random/ds/0.9-suggested-changes: update.
17465         * gst/Makefile.am: remove memchunk and trashstack, since they're
17466           not used.
17467         * gst/gst.c: (gst_deinit): rename gst_registry_deinit to _cleanup
17468         * gst/gst.h: don't include some headers
17469         * gst/gstchildproxy.c: add gstmarshal.h
17470         * gst/gstclock.c: Don't use memchunks
17471         * gst/gstminiobject.c: Add some docs
17472         * gst/gstobject.c: remove DESTROYED flag, since it's redundant
17473         * gst/gstobject.h: same
17474         * gst/gstplugin.c: include gstmacros.h
17475         * gst/gstplugin.h: don't include gstmacros.h, since it's private
17476         * gst/gstquery.c: don't use memchunks
17477         * gst/gstregistry.c: rename gst_registry_deinit()
17478         * gst/gstregistry.h: same
17480 2005-09-19  David Schleef  <ds@schleef.org>
17482         * docs/libs/gstreamer-libs-docs.sgml: Remove docs for getbits
17483         * docs/libs/gstreamer-libs-sections.txt:
17484         * docs/libs/tmpl/gstgetbits.sgml:
17485         * docs/libs/tmpl/gstputbits.sgml:
17487 2005-09-19  Tim-Philipp Müller  <tim at centricular dot net>
17489         * win32/gstenumtypes.c:
17490         * win32/gstenumtypes.h:
17491           Update.
17493 2005-09-19  Wim Taymans  <wim@fluendo.com>
17495         * gst/gstpipeline.c: (do_pipeline_seek), (gst_pipeline_send_event):
17496         Automatically PAUSE and RESUME a pipeline when a flushing seek
17497         is performed.
17499 2005-09-19  Andy Wingo  <wingo@pobox.com>
17501         * gst/gstregistry.h: Spacing fixen.
17503 2005-09-19  Wim Taymans  <wim@fluendo.com>
17505         * gst/base/gstbasesrc.c: (gst_base_src_change_state):
17506         Handle state change failure more correctly.
17508 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
17510         * check/Makefile.am:
17511         * check/pipelines/cleanup.c: (run_pipeline):
17512         * check/pipelines/simple_launch_lines.c: (run_pipeline),
17513         (GST_START_TEST):
17514           enable cleanup again after fixing the leak
17515         * docs/README:
17516           some more info on docs
17518 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
17520         * check/Makefile.am:
17521           re-enable tests now that leaks are plugged
17522         * check/gst/gst.c:
17523         * check/gst/gstbin.c:
17524         * check/gst/gstpipeline.c:
17525           add some more tests while fixing leaks
17526         * common/check.mak:
17527           make sure binaries are uptodate when valgrinding/gdbing
17528         * gst/gst.c:
17529         * gst/gstelementfactory.c:
17530           remove a ref too many, and add a FIXME for when we get
17531           round to disposing of classes
17532         * gst/gstplugin.c:
17533           fix the refcounting when loading a plugin from a file and
17534           the code pretends that the pointer is the same even though
17535           of course it can change
17536         * gst/gstpluginfeature.c:
17537           unref plugins marked cached (a bit confusing as a name)
17538           as the docs state should be done
17539           various doc additions to explain refcounting
17540         * gst/gstregistry.c:
17541         * gst/gstregistryxml.c:
17542           debugging
17544 2005-09-19  Wim Taymans  <wim@fluendo.com>
17546         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
17547         * check/gst/gstbus.c: (message_func_eos), (message_func_app),
17548         (send_messages), (GST_START_TEST), (gstbus_suite):
17549         * check/gst/gstpipeline.c: (GST_START_TEST):
17550         * check/pipelines/cleanup.c: (run_pipeline):
17551         * check/pipelines/simple_launch_lines.c: (run_pipeline),
17552         (GST_START_TEST):
17553         * gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
17554         (gst_bus_source_check), (gst_bus_source_dispatch),
17555         (gst_bus_create_watch), (gst_bus_add_watch_full),
17556         (gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
17557         * gst/gstbus.h:
17558         * tools/gst-launch.c: (event_loop):
17559         * tools/gst-md5sum.c: (event_loop):
17560         GstBusHandler -> GstBusFunc, return value has the same meaning as
17561         any other GSource (FALSE == remove source).
17562         _add_watch() and _add_watch_full() now take a MessageType mask to
17563         only handle specific types of messages.
17564         _poll() returns the GstMessage instead of the message type to avoid
17565         race conditions.
17566         _have_pending() takes a MessageType mask now too.
17567         Added testsuite for multiple bus watches.
17568         Fix testsuites and applications for new bus API.
17570 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
17572         * check/Makefile.am:
17573           mark a bunch of the tests as to fix until we fix them
17575 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17577         * common/check.mak:
17578           use GST_PLUGIN settings for valgrind tests as well, so we're
17579           valgrinding the correct thing
17580         * gst/gst.c: (init_post):
17581           plug another leak
17583 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17585         * gst/gst.c: (init_post), (gst_deinit):
17586         * gst/gstelementfactory.c: (gst_element_factory_class_init),
17587         (gst_element_factory_finalize), (gst_element_factory_cleanup):
17588         * gst/gstindex.c: (gst_index_factory_class_init),
17589         (gst_index_factory_finalize):
17590         * gst/gstobject.c: (gst_object_dispose):
17591         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_class_init),
17592         (gst_plugin_load_file), (gst_plugin_desc_free):
17593         * gst/gstpluginfeature.c: (gst_plugin_feature_class_init),
17594         (gst_plugin_feature_finalize):
17595         * gst/gstregistry.c: (gst_registry_class_init),
17596         (gst_registry_init), (gst_registry_finalize),
17597         (gst_registry_get_default), (gst_registry_deinit):
17598         * gst/gstregistry.h:
17599         * gst/gstregistryxml.c: (load_feature), (load_plugin):
17600           various cleanups and memleak plugging.  make valgrind is happy now.
17602 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17604         * common/check.mak:
17605           add a check-valgrind target
17607 2005-09-18  David Schleef  <ds@schleef.org>
17609         * tools/gst-inspect.c: Revert the GOption code.
17611 2005-09-17  David Schleef  <ds@schleef.org>
17613         * check/Makefile.am: Fix environment variables.
17614         * check/gst/gstplugin.c: Fix for API changes.
17615         * tools/gst-inspect.c: Fix for API changes.
17616         * tools/gst-xmlinspect.c: Fix for API changes.
17617         * gst/gstelementfactory.c:
17618         * gst/gstplugin.c:
17619         * gst/gstplugin.h:
17620         * gst/gstpluginfeature.c:
17621         * gst/gstpluginfeature.h:
17622         * gst/gstregistry.c:
17623         * gst/gstregistry.h:
17624         * gst/gstregistryxml.c:
17625         * gst/gsttypefind.c:
17626         * gst/gsttypefindfactory.c:
17627         * gst/indexers/gstfileindex.c:
17628         * gst/indexers/gstmemindex.c:
17629         * gst/schedulers/Makefile.am:
17630           Change registry to keep track of both plugins and features,
17631           removing the feature tracking from plugins themselves.
17633 2005-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17635         * check/Makefile.am:
17636         * tools/gst-register.1.in:
17637           remove gst-register
17639 2005-09-15  David Schleef  <ds@schleef.org>
17641         * check/gst/gstplugin.c:
17642         * gst/gstelementfactory.c:
17643         * gst/gstplugin.c:
17644         * gst/gstpluginfeature.c:
17645         * gst/gstregistry.c:
17646           Getting tired of debugging.  Disabled all the unreffing of
17647           plugins and features, which fixes the segfaults, but of
17648           course leaks like crazy.  At least playbin works.
17650 2005-09-15  David Schleef  <ds@schleef.org>
17652         * check/gst/gstplugin.c: (register_check_elements),
17653         (GST_START_TEST), (peek), (suggest), (gst_plugin_suite):
17654         More testing
17655         * gst/elements/gsttypefindelement.c: Fix refcounting.
17656         * gst/gsttypefind.c:
17657         * gst/gsttypefindfactory.c:
17658         * gst/gsttypefindfactory.h:
17660 2005-09-15  David Schleef  <ds@schleef.org>
17662         * gst/gstindex.c: get refcounting correct.
17663         * gst/gstregistry.c: Handle the case where a feature/plugin is
17664           not found.
17666 2005-09-15  David Schleef  <ds@schleef.org>
17668         * check/Makefile.am:
17669         * check/gst/gstplugin.c: Add test
17670         * gst/gstplugin.c: Fix problems noticed by testsuite
17671         * gst/gstplugin.h:
17672         * gst/gstregistry.c: 
17673         * gst/gstregistry.h:
17675 2005-09-15  David Schleef  <ds@schleef.org>
17677         * gst/gstplugin.c: Implement semi-decent recounting and locking
17678           in plugins and plugin features.
17679         * gst/gstplugin.h:
17680         * gst/gstpluginfeature.c:
17681         * gst/gstpluginfeature.h:
17682         * gst/gstregistry.c:
17684 2005-09-15  Michael Smith <msmith@fluendo.com>
17686         * gst/gstregistry.c: (gst_registry_get_feature_list):
17687           Implement this. Makes oggdemux work; decodebin still broken.
17689 2005-09-14  David Schleef  <ds@schleef.org>
17691         * configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug
17692           #316076)
17693         * gst/base/Makefile.am: Add -no-undefined to LDFLAGS for libs
17694         * gst/check/Makefile.am:
17695         * libs/gst/controller/Makefile.am:
17696         * libs/gst/dataprotocol/Makefile.am:
17698 2005-09-14  David Schleef  <ds@schleef.org>
17700         * configure.ac: Remove getbits library.  Nothing uses it, and
17701           it should be in something like liboil if someone did want
17702           to use it.
17703         * libs/gst/Makefile.am:
17704         * libs/gst/getbits/Makefile.am:
17705         * libs/gst/getbits/gbtest.c:
17706         * libs/gst/getbits/getbits.c:
17707         * libs/gst/getbits/getbits.h:
17708         * libs/gst/getbits/gstgetbits_generic.c:
17709         * libs/gst/getbits/gstgetbits_i386.s:
17710         * libs/gst/getbits/gstgetbits_inl.h:
17712 2005-09-14  David Schleef  <ds@schleef.org>
17714         * gst/Makefile.am: Dist glib-compat.h
17716 2005-09-14  David Schleef  <ds@schleef.org>
17718         * configure.ac: Remove gst/registries, since it's no longer used.
17719         * gst/registries/Makefile.am:
17720         * gst/registries/gstlibxmlregistry.c:
17721         * gst/registries/gstlibxmlregistry.h:
17722         * gst/registries/gstxmlregistry.c:
17723         * gst/registries/gstxmlregistry.h:
17724         * gst/registries/registrytest.c:
17726 2005-09-14  David Schleef  <ds@schleef.org>
17728         * gst/glib-compat.h:
17729         * gst/gstregistryxml.c:
17730           Convergence is near.  Seriously.
17732 2005-09-14  David Schleef  <ds@schleef.org>
17734         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
17735         * gst/glib-compat.h:
17736           Attempt #4 to appease the buildbots.
17738 2005-09-14  David Schleef  <ds@schleef.org>
17740         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
17741           Attempt #3.
17743 2005-09-14  David Schleef  <ds@schleef.org>
17745         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
17746         Attempt #2.
17748 2005-09-14  David Schleef  <ds@schleef.org>
17750         * gst/Makefile.am: Oh yeah, libgstreamer.so needs to contain
17751           the new functions.
17753 2005-09-14  David Schleef  <ds@schleef.org>
17755         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
17756         * gst/glib-compat.h: Add some functions that are in newer versions
17757           of glib than we care to require.
17758         * gst/gstregistryxml.c: Use them.
17760 2005-09-14  David Schleef  <ds@schleef.org>
17762         * po/POTFILES.in: remove gst-register.c
17764 2005-09-14  David Schleef  <ds@schleef.org>
17766         * docs/gst/gstreamer-docs.sgml:
17767         * docs/gst/gstreamer-sections.txt:
17768         * docs/gst/gstreamer.types:
17769         * docs/gst/tmpl/gstelement.sgml:
17770         * docs/gst/tmpl/gstplugin.sgml:
17771         * docs/gst/tmpl/gstpluginfeature.sgml:
17772           Documentation updates for registry changes.
17774 2005-09-14  David Schleef  <ds@schleef.org>
17776         * gst/gstregistryxml.c: Copy g_mkdir_with_parent() from glib,
17777           because we don't require glib-2.8.
17779 2005-09-14  David Schleef  <ds@schleef.org>
17781         * gst/gstregistryxml.c: Added.  Essentially moved out of the
17782           registries directory.
17784 2005-09-14  David Schleef  <ds@schleef.org>
17786         * check/Makefile.am:
17787         * check/generic/states.c:
17788         * gst/Makefile.am:
17789         * gst/gst.c:
17790         * gst/gst.h:
17791         * gst/gst_private.h:
17792         * gst/gstelementfactory.c:
17793         * gst/gstindex.c:
17794         * gst/gstinfo.c:
17795         * gst/gstplugin.c:
17796         * gst/gstplugin.h:
17797         * gst/gstpluginfeature.c:
17798         * gst/gstpluginfeature.h:
17799         * gst/gstregistry.c:
17800         * gst/gstregistry.h:
17801         * gst/gstregistrypool.c: remove
17802         * gst/gstregistrypool.h: remove
17803         * gst/gsttypefind.c:
17804         * gst/gsttypefindfactory.c:
17805         * gst/gsturi.c:
17806         * tools/Makefile.am:
17807         * tools/gst-compprep.c:
17808         * tools/gst-inspect.c:
17809         * tools/gst-register.c: remove
17810         * tools/gst-xmlinspect.c:
17811           Registry rewrite.  Changes registry from being a file created
17812           by a tool into a simple cache file created automatically by 
17813           libgstreamer.  Removed gst-register (because it's no longer
17814           needed).  Remove registry pools, because we only have one
17815           registry implementation (XML).  Fix up other subsystems as
17816           necessary.
17818 2005-09-13  Michael Smith <msmith@fluendo.com>
17820         * gst/gstconfig.h.in:
17821           Don't Use windows linking attributes for MinGW. Fixes #316157
17823 2005-09-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17825         * gst/gstutils.c: (set_state_async_thread_func),
17826         (gst_element_set_state_async):
17827           Apparently people think it's better if this function doesn't
17828           try to set the state to whatever state was asked for on the first
17829           call to this function for any object.  Seriously.
17831 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17833         * check/gst/gstpipeline.c: (GST_START_TEST):
17834         * docs/gst/gstreamer-sections.txt:
17835         * gst/gstutils.c: (set_state_async_thread_func),
17836         (gst_element_set_state_async):
17837         * gst/gstutils.h:
17838           add a "gst_element_set_state_async" method that
17839           sets the state and starts a thread to make sure the state
17840           change completes as best as it can
17842 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17844         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
17845           codify design+behaviour in testsuite after discussion
17847 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17849         * docs/gst/tmpl/gstelement.sgml:
17850         * docs/manual/appendix-quotes.xml:
17851           add a quote
17852         * gst/gstelement.c: (gst_element_set_state):
17853           add some debug
17855 2005-09-12  Jan Schmidt  <thaytan@mad.scientist.com>
17857         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
17858         (gst_base_transform_prepare_output_buf),
17859         (gst_base_transform_handle_buffer):
17860         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip),
17861         (gst_capsfilter_prepare_buf):
17862           Remove the requirement for sub-classes to call the parent
17863           implementation of prepare_output_buffer with a wrapper function.
17864           
17865         * gst/gsttaglist.h:
17866         * gst/gsttagsetter.h:
17867           Fix #define wrapper
17869 2005-09-11  Stefan Kost  <ensonic@users.sf.net>
17871         * docs/gst/gstreamer-sections.txt:
17872           more doc cleanups
17874 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17876         * docs/gst/gstreamer-sections.txt:
17877         * docs/gst/tmpl/gstelement.sgml:
17878         * docs/gst/tmpl/gstplugin.sgml:
17879         * gst/gstminiobject.c:
17880         * gst/gstvalue.h:
17881           docs now stop throwing warnings
17883 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17885         * docs/gst/gstreamer-sections.txt:
17886         * docs/gst/gstreamer.types:
17887         * docs/gst/tmpl/gstpad.sgml:
17888         * docs/gst/tmpl/gsttypes.sgml:
17889         * gst/base/gstadapter.h:
17890         * gst/base/gstbasesink.h:
17891         * gst/base/gstbasesrc.h:
17892         * gst/gstbin.h:
17893         * gst/gstbuffer.h:
17894         * gst/gstbus.h:
17895         * gst/gstcaps.h:
17896         * gst/gstclock.h:
17897         * gst/gstelement.h:
17898         * gst/gstevent.h:
17899         * gst/gstmessage.h:
17900         * gst/gstpad.h:
17901         * gst/gststructure.c:
17902         * gst/registries/gstlibxmlregistry.h:
17903           various documentation fixes
17905 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
17907         * docs/gst/gstreamer-sections.txt:
17908         * docs/gst/tmpl/gstvalue.sgml:
17909           rearrange gstvalue section
17910         * gst/gstutils.c: (gst_element_state_get_name):
17911           NONE -> VOID
17912         * gst/gstvalue.c: (_gst_value_initialize):
17913         * gst/gstvalue.h:
17914           doc updates
17916 2005-09-10  Jan Schmidt  <thaytan@mad.scientist.com>
17918         * check/gst-libs/controller.c:
17919           Header include fix.
17920         * gst/base/gstbasetransform.c:
17921         (gst_base_transform_default_prepare_buf),
17922         (gst_base_transform_handle_buffer):
17923         * gst/base/gstbasetransform.h:
17924           Some more basetransform changes and fixes to enable sub-classes
17925           that modify buffer metadata only.
17926         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
17927         (gst_capsfilter_init), (gst_capsfilter_transform_ip),
17928         (gst_capsfilter_prepare_buf):
17929           If the output pad has fixed allowed caps and input buffers 
17930           don't have any, set the fixed caps on outgoing buffers.
17932 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
17933         * check/elements/identity.c: (GST_START_TEST):
17934           Make the error a little clearer when the test fails because
17935           identity made a copy of the buffer.
17936         * docs/gst/gstreamer-sections.txt:
17937           New symbols in gstbasetransform.h
17938         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
17939         (gst_base_transform_init), (gst_base_transform_transform_size),
17940         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
17941         (gst_base_transform_default_prepare_buf),
17942         (gst_base_transform_get_unit_size),
17943         (gst_base_transform_buffer_alloc),
17944         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
17945         (gst_base_transform_change_state),
17946         (gst_base_transform_set_passthrough),
17947         (gst_base_transform_set_in_place),
17948         (gst_base_transform_is_in_place):
17949         * gst/base/gstbasetransform.h:
17950           Change BaseTransform to separate in_place operate from same_caps
17951           output. in_place implies that the element can perform the transform
17952           on incoming buffers in-place, even if the caps on the output are
17953           different.
17954           Sub-class elements can now implement special buffer allocation
17955           methods for outgoing buffers if they wish to.
17956           Big documentation addition.
17957         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip):
17958         * gst/elements/gstelements.c:
17959           Changes for basetransform modifications.
17960         * gst/elements/Makefile.am:
17961         * gst/elements/gstfdsrc.c: (gst_fdsrc_init), (gst_fdsrc_create):
17962           Compile fix. Extra debug output.
17964 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17966         * check/gst/gstpad.c: (GST_START_TEST), (name_is_valid),
17967         (gst_pad_suite):
17968           add tests for valid pad naming
17969         * gst/check/gstcheck.c: (gst_check_log_message_func),
17970         (gst_check_log_critical_func):
17971           add ASSERT_WARNING
17972           remove printing of code, it is fragile when the code contains
17973           % and the line number is enough info
17974         * gst/check/gstcheck.h:
17975         * gst/gstpad.c: (gst_pad_template_new):
17976           fix memleaks
17978 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17980         * configure.ac:
17981           say what CHECK flags we use
17982         * docs/libs/gstreamer-libs.types:
17983         * libs/gst/controller/Makefile.am:
17984         * libs/gst/controller/gst-controller.c:
17985         * libs/gst/controller/gst-controller.h:
17986         * libs/gst/controller/gst-helper.c:
17987         * libs/gst/controller/gst-interpolation.c:
17988         * libs/gst/controller/gstcontroller.c:
17989         * libs/gst/controller/gsthelper.c:
17990         * libs/gst/controller/gstinterpolation.c:
17991         * tools/gst-inspect.c: (print_plugin_info):
17992           we don't use dashes in header names
17994 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
17996         * check/Makefile.am:
17997         * check/gst/.cvsignore:
17998         * check/gst/gstpipeline.c: (pop_messages), (GST_START_TEST),
17999         (gst_pipeline_suite), (main):
18000           adding a test for pipelines and state changes
18001         * gst/gstutils.c: (get_state_func):
18002           add some debugging
18003         * gstreamer.spec.in:
18004           fix up spec file
18006 2005-09-08  Michael Smith <msmith@fluendo.com>
18008         * gst/elements/gstfilesrc.c: (gst_file_src_map_region),
18009         (gst_file_src_map_small_region), (gst_file_src_create_mmap),
18010         (gst_file_src_is_seekable), (gst_file_src_get_size),
18011         (gst_file_src_start):
18012         * gst/elements/gstfilesrc.h:
18013           Various fixes for unseekable, unmmapable, and non-normal files, so
18014           that fallback to read() rather than mmap() works.
18015         * gst/gstevent.c: (gst_event_new_newsegment):
18016           Allow newsegment events with segment_start == segment_end, as will
18017           correctly happen if you use filesrc on a zero-size file, for
18018           example.
18020 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
18022         * gst/gstplugin.c: (gst_plugin_load_file):
18023           Call g_module_close when we don't load the module
18025         * gst/registries/gstlibxmlregistry.c:
18026         (gst_xml_registry_get_property):
18027           Port leak fix from 0.8
18029 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
18031         * docs/gst/gstreamer-docs.sgml:
18032         * docs/gst/tmpl/.cvsignore:
18033         * docs/gst/tmpl/gsttrace.sgml:
18034         * docs/gst/tmpl/gsttrashstack.sgml:
18035         * gst/Makefile.am:
18036         * gst/gst.h:
18037         * gst/gstelement.h:
18038         * gst/gstevent.h:
18039         * gst/gstmessage.c:
18040         * gst/gstmessage.h:
18041         * gst/gsttag.c:
18042         * gst/gsttag.h:
18043         * gst/gsttaginterface.c:
18044         * gst/gsttaginterface.h:
18045         * gst/gsttaglist.c:
18046         * gst/gsttaglist.h:
18047         * gst/gsttagsetter.c:
18048         * gst/gsttagsetter.h:
18049         * gst/gsttrace.c:
18050         * gst/gsttrace.h:
18051         * gst/gsttrashstack.c:
18052           renamed gsttag -> gsttaglist, gsttaginterface -> gsttagsetter
18053           inlined docs for gsttrace, gsttrashstack
18055 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
18057         * gst/Makefile.am:
18058         * gst/elements/gstbufferstore.h:
18059         * gst/elements/gsttypefindelement.c:
18060         * gst/elements/gsttypefindelement.h:
18061         * gst/gst.h:
18062         * gst/gsttypefind.c:
18063         * gst/gsttypefind.h:
18064         * gst/gsttypefindfactory.c: (gst_type_find_factory_get_type),
18065         (gst_type_find_factory_class_init), (gst_type_find_factory_init),
18066         (gst_type_find_factory_dispose),
18067         (gst_type_find_factory_unload_thyself),
18068         (gst_type_find_load_plugin), (gst_type_find_factory_get_list),
18069         (gst_type_find_factory_get_caps),
18070         (gst_type_find_factory_get_extensions),
18071         (gst_type_find_factory_call_function):
18072         * gst/gsttypefindfactory.h:
18073         * gst/registries/gstlibxmlregistry.c:
18074         * gst/registries/gstxmlregistry.c:
18075           splitted gsttypefind into gsttypefind, gsttypefindfactory
18077 2005-09-07  Andy Wingo  <wingo@pobox.com>
18079         * gst/base/gstbasesink.c (gst_base_sink_activate_pull): Fix a race
18080         condition whereby the pad's task function is entered before the
18081         pad_mode variable was set.
18083 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
18085         * gst/gstpad.c: (gst_pad_alloc_buffer):
18086           Catch misbehaving pad_alloc functions that don't
18087           set up caps and do it for them.
18089 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
18091         * check/pipelines/simple_launch_lines.c: (run_pipeline):
18092           test for pipe!=NULL
18093         * docs/gst/tmpl/.cvsignore:
18094         * docs/gst/tmpl/gstmemchunk.sgml:
18095         * docs/gst/tmpl/gstparse.sgml:
18096         * docs/gst/tmpl/gsttaglist.sgml:
18097         * docs/gst/tmpl/gsttagsetter.sgml:
18098         * docs/gst/tmpl/gsttypefind.sgml:
18099         * docs/gst/tmpl/gsttypefindfactory.sgml:
18100         * gst/gstmemchunk.c:
18101         * gst/gstparse.c:
18102         * gst/gsttag.c:
18103         * gst/gsttaginterface.c:
18104         * gst/gsttypefind.c:
18105         * gst/gsttypefind.h:
18106           inlined more docs
18108 === release 0.9.2 ===
18110 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18112         * NEWS:
18113         * RELEASE:
18114         * configure.ac:
18115           releasing 0.9.2, "South"
18117 2005-09-05  Andy Wingo  <wingo@pobox.com>
18119         * gst/registries/gstxmlregistry.h:
18120         * gst/registries/gstxmlregistry.c: Um... resurrect...
18121         
18122         * gst/registries/gstxmlregistry.h:
18123         * gst/registries/gstxmlregistry.c: and update to newer API.
18124         Incidentally they should be a bit faster now that they don't have
18125         to parse the caps.
18126         
18127 2005-09-05  Andy Wingo  <wingo@pobox.com>
18129         * gst/registries/gstxmlregistry.h:
18130         * gst/registries/gstxmlregistry.c: Remove from CVS, they were
18131         replaced by the libxml registry a while back
18133 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18135         * docs/gst/tmpl/gstplugin.sgml:
18136         * gst/elements/gstelements.c:
18137         * gst/gst.c:
18138         * gst/gstplugin.c: (gst_plugin_register_func),
18139         (gst_plugin_desc_copy), (gst_plugin_desc_free),
18140         (gst_plugin_get_source):
18141         * gst/gstplugin.h:
18142         * gst/registries/gstlibxmlregistry.c: (load_plugin),
18143         (gst_xml_registry_save_plugin):
18144         * gst/registries/gstxmlregistry.c: (gst_xml_registry_parse_plugin),
18145         (gst_xml_registry_save_plugin):
18146         * tools/gst-inspect.c: (print_plugin_info):
18147           add a "source" plugin description field, to represent the source
18148           module this plugin is a part of.  By default GST_PLUGIN_DEFINE
18149           will set it to PACKAGE, which is automake's idea of the name of
18150           the source project.
18152 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
18154         * Makefile.am:
18155         * autogen.sh:
18156         * configure.ac:
18157         * docs/Makefile.am:
18158         * docs/faq/Makefile.am:
18159         * docs/gst/tmpl/gstelement.sgml:
18160         * docs/gst/tmpl/gsttypes.sgml:
18161         * docs/htmlinstall.mak:
18162         * docs/manual/Makefile.am:
18163         * docs/pwg/Makefile.am:
18164           reorganize doc build a little
18165           split out docbook and gtk-doc stuff
18166           have two separate --enable's and enable them through autogen
18167           but disable by default in configure (to be similar to other
18168           projects)
18169         * gstreamer.spec.in:
18170           clean up docs install
18171         * po/af.po:
18172         * po/az.po:
18173         * po/ca.po:
18174         * po/cs.po:
18175         * po/de.po:
18176         * po/en_GB.po:
18177         * po/fr.po:
18178         * po/it.po:
18179         * po/nb.po:
18180         * po/nl.po:
18181         * po/ru.po:
18182         * po/sq.po:
18183         * po/sr.po:
18184         * po/sv.po:
18185         * po/tr.po:
18186         * po/uk.po:
18187         * po/vi.po:
18188           translation updates
18190 2005-09-03  Tim-Philipp Müller  <tim at centricular dot net>
18192         * gst/base/gstbasesink.c: (gst_base_sink_pad_buffer_alloc):
18193           Add comment.
18194           
18195         * gst/elements/gstfakesink.c: (gst_fake_sink_init),
18196         (gst_fake_sink_change_state):
18197           Make state change function thread-safe.
18198           
18199         * gst/gstpad.c: (gst_pad_alloc_buffer):
18200           Set offset on generic buffer allocated by fallback.
18202 2005-09-03  Stefan Kost  <ensonic@users.sf.net>
18204         * docs/gst/gstreamer-sections.txt:
18205         * docs/gst/tmpl/gstelement.sgml:
18206         * gst/gstpad.c:
18207         * libs/gst/controller/gst-controller.c:
18208         (gst_controlled_property_set_interpolation_mode),
18209         (gst_controlled_property_new),
18210         (gst_controller_find_controlled_property):
18211          run the wingo-magic script against the docs
18213 2005-09-02  Stefan Kost  <ensonic@users.sf.net>
18215         * docs/gst/gstreamer-docs.sgml:
18216         * docs/gst/gstreamer-sections.txt:
18217         * docs/gst/tmpl/.cvsignore:
18218         * docs/gst/tmpl/gstelementdetails.sgml:
18219         * docs/gst/tmpl/gstelementfactory.sgml:
18220         * gst/gst.c:
18221         * gst/gstbus.c:
18222         * gst/gstelementfactory.c:
18223         * gst/gstelementfactory.h:
18224           merged elementdetails docs into elementfactory docs
18225           inlined both
18227 2005-09-02  Andy Wingo  <wingo@pobox.com>
18229         * gst/gstelement.h: Add magical pixie dust to make glib-mkenums
18230         consider this enum an enum and not a flags.
18232 2005-09-02  Stefan Kost  <ensonic@users.sf.net>
18234         * docs/gst/gstreamer-docs.sgml:
18235         * docs/gst/tmpl/.cvsignore:
18236         * docs/gst/tmpl/gstghostpad.sgml:
18237         * docs/gst/tmpl/gstiterator.sgml:
18238         * docs/gst/tmpl/gstmacros.sgml:
18239         * docs/gst/tmpl/gstrealpad.sgml:
18240         * docs/gst/tmpl/gstregistry.sgml:
18241         * docs/gst/tmpl/gstregistrypool.sgml:
18242         * docs/gst/tmpl/gststructure.sgml:
18243         * docs/gst/tmpl/gstsystemclock.sgml:
18244         * docs/gst/tmpl/gsttrace.sgml:
18245         * gst/gstghostpad.c:
18246         * gst/gstmacros.h:
18247         * gst/gstmemchunk.c:
18248         * gst/gstmemchunk.h:
18249         * gst/gstqueue.c:
18250         * gst/gstregistry.c:
18251         * gst/gstregistrypool.c:
18252         * gst/gststructure.c:
18253         * gst/gstsystemclock.c:
18254           more docs inlined
18256 2005-09-02  Andy Wingo  <wingo@pobox.com>
18258         * gst/gstelement.h (GstState): Renamed from GstElementState,
18259         changed to be a normal enum instead of flags.
18260         (GstStateChangeReturn): Renamed from GstElementStateReturn, names
18261         munged to be GST_STATE_CHANGE_*.
18262         (GST_STATE_CHANGE): Renamed from GST_STATE_TRANSITION, updated to
18263         work with the new state representation.
18264         (GstStateChange): New enumeration of possible state transitions.
18265         Replaces GST_STATE_FOO_TO_BAR with GST_STATE_CHANGE_FOO_TO_BAR.
18266         (GstElementClass::change_state): Pass the GstStateChange along as
18267         an argument. Helps language bindings, so they don't have to use
18268         tricky lock-needing macros like GST_STATE_CHANGE ().
18270         * scripts/update-states (file): New script. Run it on a file to
18271         update it for state naming and API changes. Updates files in
18272         place.
18274         * All files updated for the new API.
18276 2005-09-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18278         * gst/gsttrace.c: (gst_trace_flush), (gst_trace_text_flush):
18279         * gst/gstutils.c: (gst_util_set_value_from_string),
18280         (gst_util_set_object_arg):
18281           fix a bunch of unchecked return values
18282         * tools/gst-complete.c: (main):
18283         * gstreamer.spec.in:
18284           clean up a little
18286 2005-09-01  Wim Taymans  <wim@fluendo.com>
18288         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
18289         (gst_base_sink_event), (gst_base_sink_do_sync),
18290         (gst_base_sink_handle_event):
18291         * gst/base/gstbasesink.h:
18292         Handle newsegments more correctly.
18294         * gst/gstbus.c:
18295         Fix docs.
18297         * gst/gstevent.c: (gst_event_new_newsegment):
18298         A newsegment cannot have a start_time of -1
18300 2005-09-01  Tim-Philipp Müller  <tim at centricular dot net>
18302         * win32/gstenumtypes.c:
18303         * win32/gstenumtypes.h:
18304           Update
18306 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
18308         * libs/gst/controller/gst-controller.c:
18309         (gst_controlled_property_set_interpolation_mode),
18310         (gst_controlled_property_new):
18311          fixed boolean again
18313 2005-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
18315         * docs/faq/gst-uninstalled:
18316           add -good
18317         * gst/gstevent.c:
18318         * gst/gstevent.h:
18319           remove wrong docs
18320         * gst/gstutils.c: (gst_element_link_filtered):
18321         * gst/gstutils.h:
18322           add gst_element_link_filtered
18324 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
18326         * docs/gst/gstreamer-docs.sgml:
18327         * docs/gst/gstreamer-sections.txt:
18328         * docs/gst/tmpl/.cvsignore:
18329         * docs/gst/tmpl/gsterror.sgml:
18330         * docs/gst/tmpl/gstfilter.sgml:
18331         * docs/gst/tmpl/gsturihandler.sgml:
18332         * docs/gst/tmpl/gsturitype.sgml:
18333         * docs/gst/tmpl/gstutils.sgml:
18334         * docs/gst/tmpl/gstxml.sgml:
18335         * gst/gsterror.c:
18336         * gst/gsterror.h:
18337         * gst/gstfilter.c:
18338         * gst/gsturi.c:
18339         * gst/gsturitype.c:
18340         * gst/gstutils.c:
18341         * gst/gstxml.c:
18342           inlined more docs, fixed double id-ref
18344 2005-08-31  Wim Taymans  <wim@fluendo.com>
18346         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
18347         (gst_base_transform_handle_buffer):
18348         Passthrough elements don't need the caps as they don't care.
18350 2005-08-31  Wim Taymans  <wim@fluendo.com>
18352         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
18353         (gst_base_transform_handle_buffer), (gst_base_transform_chain):
18354         Don't leak refcounts on buffers.
18356 2005-08-31  Wim Taymans  <wim@fluendo.com>
18358         * gst/base/gstbasetransform.c: (gst_base_transform_configure_caps),
18359         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
18360         (gst_base_transform_chain), (gst_base_transform_change_state):
18361         * gst/base/gstbasetransform.h:
18362         Handle the case where we are not negotiated more gracefully.
18364 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
18366         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_init),
18367         (gst_file_src_map_region):
18368           Set READONLY flag on mmap'ed buffers, otherwise
18369           gst_buffer_make_writable() won't work properly (#314708).
18371 2005-08-31  Wim Taymans  <wim@fluendo.com>
18373         * gst/base/gstbasetransform.c: (gst_base_transform_handle_buffer):
18374         passthrough elements can even do inplace on non writable
18375         buffers (as they don't touch them).
18377 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
18379         * check/gst-libs/controller.c: (gst_test_mono_source_get_property),
18380         (gst_test_mono_source_set_property),
18381         (gst_test_mono_source_class_init), (GST_START_TEST),
18382         (gst_controller_suite):
18383           more tests (hehe I have the most)
18384         * gst/gstbus.c:
18385           describe popping messages whenusing mulltiple sources
18386         * libs/gst/controller/gst-controller.c:
18387         (gst_controlled_property_set_interpolation_mode),
18388         (gst_controlled_property_new):
18389         * libs/gst/controller/gst-controller.h:
18390         * libs/gst/controller/gst-interpolation.c:
18391           implement boolean properties
18393 2005-08-31  Wim Taymans  <wim@fluendo.com>
18395         * gst/gstminiobject.c: (gst_mini_object_ref):
18396         Cannot assert that the refcount has to be positive
18397         since a disposed object can be resurrected.
18399 2005-08-31  Wim Taymans  <wim@fluendo.com>
18401         * gst/gstpad.c: (gst_pad_init):
18402         Revert change, need to first fix badly behaving 
18403         apps.
18405 2005-08-30  Wim Taymans  <wim@fluendo.com>
18407         * check/elements/fakesrc.c: (setup_fakesrc):
18408         * check/elements/identity.c: (setup_identity):
18409         Activate pads before using them.
18411 2005-08-30  Wim Taymans  <wim@fluendo.com>
18413         * gst/base/gstadapter.c: (gst_adapter_flush):
18414         Flushing out 0 bytes is ok for this function.
18416         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
18417         no newsegment gives a warning and sets the start/stop to 
18418         invalid.
18420         * gst/base/gstbasetransform.c: (gst_base_transform_change_state),
18421         (gst_base_transform_set_passthrough):
18422         Some debug info.
18424         * gst/gstminiobject.c: (gst_mini_object_ref):
18425         Check refcount here too.
18427         * gst/gstpad.c: (gst_pad_init):
18428         Pads are initially flushing and refusing data.
18430         * gst/gstutils.c: (gst_element_link_pads_filtered):
18431         When adding a capsfilter element make sure it has the
18432         same state as the parent bin.
18434 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
18436         * docs/gst/tmpl/.cvsignore:
18437         * docs/gst/tmpl/gstformat.sgml:
18438         * docs/gst/tmpl/gstversion.sgml:
18439         * gst/gstbus.h:
18440         * gst/gstformat.c:
18441         * gst/gstformat.h:
18442         * gst/gstversion.h.in:
18443           more docs and two more inlined
18445 2005-08-30  Wim Taymans  <wim@fluendo.com>
18447         * gst/elements/gstfilesink.c: (gst_file_sink_class_init):
18448         Don't sync to clock.
18450 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
18452         * docs/gst/gstreamer-sections.txt:
18453           ultral33t func10ns deserve to appear in the docs actually
18454         * docs/gst/tmpl/.cvsignore:
18455         * docs/gst/tmpl/gstcompat.sgml:
18456         * docs/gst/tmpl/gstconfig.sgml:
18457         * gst/check/gstcheck.c:
18458         * gst/gstcompat.h:
18459         * gst/gstconfig.h.in:
18460           inlined more docs
18462 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
18464         * docs/gst/tmpl/.cvsignore:
18465         * docs/gst/tmpl/gstquery.sgml:
18466         * docs/gst/tmpl/gstutils.sgml:
18467         * gst/gstquery.c:
18468         * gst/gstquery.h:
18469           inlined and extended docs
18471 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
18473         * check/gst-libs/controller.c: (GST_START_TEST),
18474         (gst_controller_suite):
18475           more tests
18476         * docs/gst/tmpl/gstutils.sgml:
18477         * docs/libs/gstreamer-libs-sections.txt:
18478         * docs/libs/tmpl/gstdataprotocol.sgml:
18479           include path fixes
18480         * examples/controller/audio-example.c: (main):
18481           controller example works now
18482         * gst/gstclock.h:
18483           doc fixes
18484         * tools/gst-inspect.c: (print_element_properties_info):
18485           show param spec flags
18487 2005-08-29  Andy Wingo  <wingo@pobox.com>
18489         * gst/gstutils.c (gst_util_uint64_scale): New 3733t funct10n.
18491 2005-08-28  Andy Wingo  <wingo@pobox.com>
18493         * gst/gstutils.h (GST_BOILERPLATE_FULL): Prototype instance_init
18494         as having two arguments instead of just one. Allows superclasses
18495         to access information on subclasses -- see the terrible for() loop
18496         in gtype.c:g_type_create_instance for the reason why. All callers
18497         changed.
18499 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
18501         * docs/design/part-messages.txt:
18502           update info
18503         * docs/gst/tmpl/.cvsignore:
18504         * docs/gst/tmpl/gstcaps.sgml:
18505         * docs/gst/tmpl/gstclock.sgml:
18506         * gst/gstbus.c:
18507         * gst/gstcaps.c:
18508         * gst/gstcaps.h:
18509         * gst/gstclock.c:
18510         * gst/gstclock.h:
18511         * gst/gstmessage.c:
18512           added descriptions for bus and message
18513           inline caps and clock docs
18515 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
18517         * gst/gstmessage.c:
18518         * gst/gstmessage.h:
18519           doc fixes
18521 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
18523         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size):
18524           fix div-by-zero
18526 2005-08-26  Andy Wingo  <wingo@pobox.com>
18528         * check/pipelines/simple_launch_lines.c (run_pipeline): Check
18529         element_set_state's return val.
18530         (test_2_elements): Add test that's been disabled for months.
18532         * gst/elements/gstfakesink.c: Cleanups. Add can-activate-push and
18533         can-activate-pull properties.
18535         * gst/elements/gstfakesrc.c: Cleanups. Add can-activate-push and
18536         can-activate-pull properties. Implement is_seekable so fakesrc can
18537         operate in pull mode.
18539         * gst/base/gstbasesink.c (GstBaseSink): Remove has-loop, has-chain
18540         properties.
18541         (gst_base_sink_activate, gst_base_sink_activate_pull)
18542         (gst_base_sink_activate_push): Make activation mode choosing work.
18543         Cleanups.
18544         (gst_base_sink_chain, gst_base_sink_loop): Assert activation mode
18545         is right. Make pull mode work. Post an eos before pausing in pull
18546         mode.
18547         (gst_base_sink_change_state): Pay attention to the core's
18548         change_state() return val.
18549         
18550         * gst/base/gstbasesrc.c (GstBaseSrc): Remove has-loop,
18551         has-getrange properties. Cleanups.
18552         
18553         * gst/base/gstbasesrc.h (GstBaseSrc): Remove has_loop,
18554         has_getrange and replace with can_activate_pull and
18555         can_activate_push.
18557         * gst/base/gstbasesink.h (GstBaseSink): Rearrange fields, add
18558         locking comments. Remove has_loop, has_chain and replace with
18559         can_activate_pull and can_activate_push.
18561 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
18563         * configure.ac:
18564         * examples/Makefile.am:
18565         * examples/metadata/Makefile.am:
18566         * examples/metadata/read-metadata.c: (message_loop),
18567         (have_pad_handler), (make_pipeline), (print_tag), (main):
18568           Add metadata reading example that loops over a list of filenames,
18569           dumping any tags found.
18571         * gst/gstbus.c: (gst_bus_dispose):
18572         * gst/gstelement.c: (gst_element_dispose):
18573           Release a few potentially-held references in dispose.
18575 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
18577         * docs/gst/tmpl/gstminiobject.sgml:
18578           do *not* add tmpl/*.sgml files to CVS!
18580 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
18582         * libs/gst/bytestream/.cvsignore:
18583         * libs/gst/bytestream/Makefile.am:
18584         * libs/gst/bytestream/adapter.c:
18585         * libs/gst/bytestream/adapter.h:
18586         * libs/gst/bytestream/bytestream.c:
18587         * libs/gst/bytestream/bytestream.h:
18588         * libs/gst/bytestream/filepad.c:
18589         * libs/gst/bytestream/filepad.h:
18590           removing obsolete files
18592 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
18594         * docs/gst/gstreamer-docs.sgml:
18595         * docs/libs/gstreamer-libs-docs.sgml:
18596           disabed additional index entries again, as this makes docs-gen just
18597           slow and they aren't useful yet
18598         * docs/libs/gstreamer-libs-sections.txt:
18599           little -section.txt cleanup for libs
18601 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
18603         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
18604         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size),
18605           fix up some debugging
18606         (gst_base_transform_get_unit_size),
18607         (gst_base_transform_buffer_alloc), (gst_base_transform_event),
18608         (gst_base_transform_handle_buffer):
18609         * gst/base/gstbasetransform.h:
18610           handle and store timed NEWSEGMENT events so that subclasses that
18611           calculate time by counting samples have a segment_start time they
18612           need to add to their timestamps - see audioresample
18614 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
18616         * gst/gstbin.h:
18617           removed ';' from the end of macro defs
18618         * docs/gst/gstreamer-docs.sgml:
18619         * docs/gst/gstreamer-sections.txt:
18620         * docs/gst/tmpl/.cvsignore:
18621         * gst/gstbus.h:
18622         * gst/gstelement.c: (gst_element_class_init),
18623         (gst_element_set_state), (activate_pads),
18624         (gst_element_save_thyself):
18625         * gst/gstevent.c: (gst_event_new_newsegment):
18626         * gst/gstevent.h:
18627         * gst/gstiterator.c:
18628         * gst/gstiterator.h:
18629         * gst/gstpad.c:
18630         * gst/gstprobe.h:
18631         * gst/gstutils.c: (gst_pad_query_convert):
18632         * gst/gstutils.h:
18633           fixed parameter name mismatches between source, header and docs
18634           added some more docs, resolved the last batch of unused elements in
18635           docs (now someone needs to doc them)
18637 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18639         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_rebuild):
18640         * gst/registries/gstxmlregistry.c: (gst_xml_registry_rebuild):
18641           don't walk through the plugins backwards.  Where is all this
18642           reversed logic coming from ?
18644 2005-08-25  Wim Taymans  <wim@fluendo.com>
18646         * gst/base/gstbasetransform.c: (gst_base_transform_init),
18647         (gst_base_transform_transform_size),
18648         (gst_base_transform_configure_caps),
18649         (gst_base_transform_get_unit_size),
18650         (gst_base_transform_buffer_alloc),
18651         (gst_base_transform_change_state):
18652         * gst/base/gstbasetransform.h:
18653         Cache caps unit_size.
18654         Make sure we cannot negotiate up and downstream at the
18655         same time.
18657 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18659         * gst/gst.c: (init_pre), (init_post):
18660           register the installed plugin path after the env var
18661         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_save):
18662         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save):
18663           don't reverse order of paths; conserve the order of GST_PLUGIN_PATH
18664           directories, so the tests can prefer uninstalled over installed
18666 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18668         * gst/base/gstbasetransform.h:
18669           comment
18670         * gst/gstpad.c:
18671           add to docs
18673 2005-08-25  Wim Taymans  <wim@fluendo.com>
18675         * gst/gstbin.c: (bin_bus_handler):
18676         Be a bit more conservative about the posted message.
18677         
18678         * gst/gstbus.c: (gst_bus_post):
18679         Some cleanups, warn wrong return values.
18681 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
18683         * check/gst/gstbin.c: (GST_START_TEST):
18684         * gst/gstbin.c: (bin_bus_handler):
18685         * gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
18686         (gst_message_new), (gst_message_new_eos), (gst_message_new_error),
18687         (gst_message_new_warning), (gst_message_new_tag),
18688         (gst_message_new_state_changed), (gst_message_new_segment_start),
18689         (gst_message_new_segment_done), (gst_message_new_custom):
18690         * gst/gstmessage.h:
18691         * tools/gst-launch.c: (event_loop):
18692         * tools/gst-md5sum.c: (event_loop):
18693           Revert unpopular change for GST_MESSAGE_SRC to GObject.
18695 2005-08-25  Wim Taymans  <wim@fluendo.com>
18697         * check/generic/states.c: (GST_START_TEST):
18698         Cleanup can be done at the end.
18700         * gst/gsttask.c: (gst_task_get_type), (gst_task_finalize),
18701         (gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
18702         (gst_task_get_state), (gst_task_start), (gst_task_pause):
18703         Oh boy.. Thanks for finding this, Thomas. 
18705 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
18707         * docs/gst/gstreamer.types:
18708           added missing types
18710 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
18712         * docs/gst/gstreamer-docs.sgml:
18713         * docs/gst/gstreamer-sections.txt:
18714         * docs/gst/tmpl/.cvsignore:
18715         * gst/gstbin.c:
18716         * gst/gstiterator.c:
18717         * gst/gstutils.c:
18718         * gst/registries/gstxmlregistry.h:
18719           added missing classes and symbols (123 more to go)
18720           removed removed symbols from section file
18721           fixed many doc-comments
18723 2005-08-24  Wim Taymans  <wim@fluendo.com>
18725         * check/generic/states.c: (GST_START_TEST):
18726         Make sure all tasks are stopped.
18728         * check/gst/gstbin.c: (GST_START_TEST):
18729         Unref after usage for proper valgrinding.
18731         * gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
18732         Really wait for the task to stop before destroying the
18733         mutex.
18735         * gst/gstqueue.c: (gst_queue_sink_activate_push),
18736         (gst_queue_src_activate_push):
18737         Small cleanups. Don't stop the task when we did not start
18738         it.
18740         * gst/gsttask.c: (gst_task_get_type), (gst_task_init),
18741         (gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
18742         (gst_task_get_state), (gst_task_start), (gst_task_pause),
18743         (gst_task_join):
18744         * gst/gsttask.h:
18745         Protect the stream lock with the object lock.
18746         Disallow setting the stream lock when running.
18747         Add cleanup_all to wait for the threadpool to finish.
18748         Remove code to autoallocate a mutex if none was provided.
18749         Add _join() to wait for a task to stop.
18750         Protect the thread pool with a global lock.
18752 2005-08-24  Wim Taymans  <wim@fluendo.com>
18754         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
18755         (gst_base_sink_get_times), (gst_base_sink_do_sync),
18756         (gst_base_sink_handle_buffer), (gst_base_sink_change_state):
18757         * gst/base/gstbasesink.h:
18758         Handle newsegment events correctly.
18759         Drop buffers out of the segment range.
18761 2005-08-22  Andy Wingo  <wingo@pobox.com>
18763         * gst/gstutils.h (GST_BOILERPLATE_WITH_INTERFACE): New ghetto
18764         macro, implements an interface and gstimplementsinterface for a
18765         new type.
18767 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18769         * check/Makefile.am:
18770         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
18771           add a test that does a bunch of state changes on elements
18772           needs some fixing for valgrind
18773         * check/states/sinks.c: (gst_object_suite):
18774           whitespace
18775         * gst/gstcaps.h:
18776           add prototype for gst_caps_is_equal_fixed
18777         * gst/gstplugin.c:
18778         * gst/gstregistrypool.c:
18779           doc fixes
18781 2005-08-24  Andy Wingo  <wingo@pobox.com>
18783         * gst/gstquery.c (gst_query_new_convert): Spew if we try to
18784         convert a negative value. Doesn't make much sense. Mostly this is
18785         here to force callers to ensure -1 maps to -1.
18787 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
18789         * docs/pwg/advanced-types.xml:
18790           Well done to Michael for catching my deliberate introduction
18791           of this spelling mistake. 
18792         * gst/gstbin.c: (gst_bin_remove_func), (bin_bus_handler):
18793         * gst/gstelement.h:
18794           Add GST_ELEMENT_UNPARENTING to prevent races so that we can
18795           unlink pads before removing the element from the bin.
18797 2005-08-24  Andy Wingo  <wingo@pobox.com>
18799         * gst/gst.c (parse_debug_list): Accept e.g. GST_DEBUG=4 to mean
18800         the same thing as GST_DEBUG=*:4.
18801         (parse_debug_level, parse_debug_category): New helper parsers.
18803 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18805         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
18806         (gst_base_transform_transform_size), (gst_base_transform_getcaps),
18807         (gst_base_transform_setcaps), (gst_base_transform_get_unit_size),
18808         (gst_base_transform_buffer_alloc),
18809         (gst_base_transform_handle_buffer):
18810           use gboolean return values and pointers to size so we can use the
18811           full GST_BUFFER_SIZE range (guint) for buffer sizes
18812           use GstPadDirection for transform_caps
18813         * gst/base/gstbasetransform.h:
18814           rename get_size to get_unit_size since that's what it is
18815         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_caps):
18816           use GstPadDirection for transform_caps
18817         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
18818         * gst/gstutils.h:
18819           cleanup and debugging
18821 2005-08-24  Stefan Kost  <ensonic@users.sf.net>
18823         * gst/gstelement.c: (gst_element_class_init),
18824         (gst_element_set_state), (activate_pads),
18825         (gst_element_save_thyself):
18826         * tools/gst-compprep.c: (main):
18827         * tools/gst-inspect.c: (print_element_properties_info):
18828         * tools/gst-xmlinspect.c: (print_element_properties):
18829           Fixed long standing mem-leak
18831 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
18833         * check/gst/gstbin.c: (GST_START_TEST):
18834         * gst/gstbin.c: (bin_bus_handler):
18835         * gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
18836         (gst_message_new), (gst_message_new_eos), (gst_message_new_error),
18837         (gst_message_new_warning), (gst_message_new_tag),
18838         (gst_message_new_state_changed), (gst_message_new_segment_start),
18839         (gst_message_new_segment_done), (gst_message_new_custom):
18840         * gst/gstmessage.h:
18841         * tools/gst-launch.c: (event_loop):
18842         * tools/gst-md5sum.c: (event_loop):
18843           Change GST_MESSAGE_SRC to be a GObject rather than a GstObject, so
18844           that applications can sensibly post custom messages with references
18845           to their own objects.
18847 2005-08-24  Andy Wingo  <wingo@pobox.com>
18849         * gst/gstpad.c (gst_pad_fixate_caps): Check if the caps is fixed
18850         already.
18852 2005-08-24  Wim Taymans  <wim@fluendo.com>
18854         * gst/base/gstbasetransform.c: (gst_base_transform_init),
18855         (gst_base_transform_transform_caps),
18856         (gst_base_transform_transform_size),
18857         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
18858         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
18859         (gst_base_transform_handle_buffer):
18860         * gst/base/gstbasetransform.h:
18861         Many fixes and new features added by Thomas. Can now also do
18862         transforms with variable sizes and a custom fixate_caps function.
18864 2005-08-24  Wim Taymans  <wim@fluendo.com>
18866         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
18867         Some debugging.
18869         * gst/gstclock.h:
18870         Cast to ClockTime before formatting to time.
18872         * gst/gstutils.h:
18873         Cleanups.
18875 2005-08-24  Stefan Kost  <ensonic@users.sf.net>
18877         * check/gst-libs/controller.c: (GST_START_TEST),
18878         (gst_controller_suite):
18879         * docs/gst/tmpl/gstcaps.sgml:
18880         * docs/gst/tmpl/gstghostpad.sgml:
18881         * docs/gst/tmpl/gstquery.sgml:
18882         * docs/gst/tmpl/gstutils.sgml:
18883         * libs/gst/controller/gst-helper.c: (gst_object_set_controller),
18884         (gst_object_sink_values), (gst_object_get_value_arrays),
18885         (gst_object_get_value_array):
18886           gracefully handle helper method calls to objects that are not beeing
18887           controlled, added test case for that          
18889 2005-08-23  Wim Taymans  <wim@fluendo.com>
18891         * gst/gstevent.c: (_gst_event_copy), (gst_event_new_custom),
18892         (gst_event_new_newsegment), (gst_event_parse_newsegment),
18893         (gst_event_new_tag), (gst_event_parse_tag), (gst_event_new_qos),
18894         (gst_event_parse_qos), (gst_event_new_seek),
18895         (gst_event_parse_seek):
18896         * gst/gstevent.h:
18897         Some more debugging output and doc cleanups.
18899         * gst/gstqueue.c: (gst_queue_handle_sink_event):
18900         Fix possible deadlock.
18902 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
18904         * docs/gst/gstreamer-docs.sgml:
18905         * docs/gst/gstreamer-sections.txt:
18906         * docs/gst/gstreamer.types:
18907         * docs/gst/tmpl/.cvsignore:
18908         * gst/gstbin.h:
18909         * gst/gstbus.c:
18910         * gst/gstelement.c:
18911         * gst/gstevent.h:
18912           added 100 symbols from gstreamer-unused.txt to the right sections
18913           fixed more broken comments
18914           added GstBus to docs
18916 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
18918         * docs/gst/gstreamer-sections.txt:
18919         * docs/gst/tmpl/.cvsignore:
18920         * docs/gst/tmpl/gstbin.sgml:
18921         * docs/gst/tmpl/gstbuffer.sgml:
18922         * gst/base/gstbasesrc.c:
18923         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init):
18924         * gst/gstbuffer.c:
18925         * gst/gstbuffer.h:
18926         * tools/gst-launch.1.in:
18927           inlined more doc comments, added missing comments and fixed comments
18928           fixed typos
18930 2005-08-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18932         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
18933           some debugging
18934         * gst/gstcaps.h:
18935           whitespace fixes
18936         * gst/gstpad.c: (gst_pad_activate_push), (gst_pad_alloc_buffer):
18937           more debugging
18938         * gst/gststructure.c: (gst_caps_structure_fixate_field_boolean):
18939         * gst/gststructure.h:
18940           add a fixate function for booleans; add a FIXME that these func
18941           names should probably be gst_structure_fixate_*
18943 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
18945         * docs/gst/gstreamer-docs.sgml:
18946         * docs/gst/gstreamer-sections.txt:
18947         * gst/Makefile.am:
18948         * gst/gstbin.c: (gst_bin_get_type),
18949         (gst_bin_child_proxy_get_child_by_index),
18950         (gst_bin_child_proxy_get_children_count),
18951         (gst_bin_child_proxy_init):
18952         * gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
18953         (gst_child_proxy_get_child_by_index),
18954         (gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
18955         (gst_child_proxy_get_property), (gst_child_proxy_get_valist),
18956         (gst_child_proxy_get), (gst_child_proxy_set_property),
18957         (gst_child_proxy_set_valist), (gst_child_proxy_set),
18958         (gst_child_proxy_child_added), (gst_child_proxy_child_removed),
18959         (gst_child_proxy_base_init), (gst_child_proxy_get_type):
18960         * gst/gstchildproxy.h:
18961         * gst/parse/grammar.y:
18962         * tools/gst-inspect.c: (print_interfaces),
18963         (print_element_properties_info), (print_element_info):
18964           ported gstchildproxy over from 0.8
18965           ported gst-inspect fixes and enhancements over from 0.8
18967 2005-08-22  Wim Taymans  <wim@fluendo.com>
18969         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
18970         (gst_base_transform_handle_buffer):
18971         Also call the transform function if we have ANY caps.
18973         * gst/gstpipeline.c: (gst_pipeline_set_new_stream_time):
18974         Fix debug info.
18976 2005-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
18978         * gst/base/gstbasesrc.c: (gst_base_src_event_handler)
18979           Don't pretend to handle seek events if the source is not seekable
18981 2005-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
18983         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
18984           Remove extra parameter to debug output
18986         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
18987         (gst_base_src_do_seek), (gst_base_src_activate_push):
18988           Fix seek event handling.
18990         * gst/gstpipeline.c: (gst_pipeline_change_state):
18991         * gst/gstqueue.c: (gst_queue_handle_sink_event),
18992         (gst_queue_src_activate_push):
18993           Don't start the src pad task on FLUSH_STOP if the pad
18994           isn't linked.
18995           Debug changes.
18997 2005-08-22  Wim Taymans  <wim@fluendo.com>
18999         * check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
19000         Added check for gst_static_caps_get() refcounting.
19002 2005-08-22  Wim Taymans  <wim@fluendo.com>
19004         * gst/gstcaps.c: (gst_static_caps_get), (gst_caps_to_string):
19005         Make _static_caps_get() refcounting sane.
19006         
19007         * gst/gstelement.c: (gst_element_set_state):
19008         Add g_return_val_if_fail() to protect against segfaults.
19010 2005-08-22  Stefan Kost  <ensonic@users.sf.net>
19012         * docs/gst/tmpl/gstevent.sgml:
19013         * gst/gstevent.c:
19014         * gst/gstevent.h:
19015           inlined remaining docs, added missing doc comments
19017 2005-08-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19019         * check/gst/gstbin.c: (GST_START_TEST):
19020           since we don't know when preroll is done, use refcount range
19021           check for the sink
19022         * gst/check/gstcheck.h:
19023           add macro for checking refcount range
19025 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
19027         * check/Makefile.am:
19028           clean up environment for when registry gets built versus
19029           when actual tests are run; valgrind seems to not report
19030           leaks if GST_PLUGIN_PATH is set to some specific values
19031         * check/gst/gstbin.c: (GST_START_TEST):
19032           add more refcounting checks; maybe this exposes a
19033           preroll lock bug ?
19034         * common/check.mak:
19035         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
19036         * gst/check/gstcheck.h:
19037         * gst/gstbin.c: (bin_element_is_semi_sink), (gst_bin_get_state),
19038         (gst_bin_change_state):
19039         * gst/gstpad.c: (gst_pad_activate_push), (gst_pad_chain):
19040           add/fix debugging/whitespace
19042 2005-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
19044         * check/gst/gstevent.c: (event_probe), (test_event),
19045         (GST_START_TEST):
19046          Er, don't call gst_bin_watch_for_state_change you idiot.
19048 2005-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
19050         * check/Makefile.am:
19051           Use CHECK_CFLAGS and CHECK_LIBS
19052         * check/gst/gstevent.c: (event_probe), (test_event),
19053         (GST_START_TEST):
19054           Don't leak events.
19055         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
19056         (gst_base_src_start), (gst_base_src_stop),
19057         (gst_base_src_activate_push), (gst_base_src_activate_pull),
19058         (gst_base_src_change_state):
19059           Sprinkle gst_base_src_stop liberally around error paths to fix
19060           problems reusing a source after failed state changes.
19061         * gst/base/gsttypefindhelper.c: (helper_find_peek),
19062         (helper_find_suggest), (gst_type_find_helper):
19063           Extra debug output. Don't segfault on GST_PAD_GETRANGEFUNC = NULL
19064         * gst/gstevent.h:
19065         * docs/gst/tmpl/gstevent.sgml:
19066           Migrate part of the docs from the SGML file. Wait for ensonic to
19067           tell me how I did it wrong ;)
19068         * tools/gst-typefind.c: (main):
19069           Extra robustness to state changes between files.
19071 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
19073         * check/Makefile.am:
19074           don't valgrind the controller test - it's leaking - Stefan, HELP
19075         * gst/check/gstcheck.c: (gst_check_message_error),
19076         (gst_check_chain_func), (gst_check_setup_element),
19077         (gst_check_teardown_element), (gst_check_setup_src_pad),
19078         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
19079         (gst_check_teardown_sink_pad):
19080         * gst/check/gstcheck.h:
19081           add a bunch of methods to set up elements, and src and sink pads
19082         * check/elements/fakesrc.c: (setup_fakesrc), (cleanup_fakesrc):
19083         * check/elements/identity.c: (setup_identity), (cleanup_identity),
19084         (GST_START_TEST):
19085           use them
19086         * gst/gstmessage.c:
19087         * gst/gsttag.h:
19088           whitespace/doc fixes
19090 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19092         * gst/gstelement.h:
19093           make GST_ELEMENT_ERROR not do GST_ERROR_OBJECT - these errors should
19094           be handled by the application and not always printed as well
19096 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19098         * check/Makefile.am:
19099           set GST_TOOLS_DIR
19100         * gst/check/gstcheck.c: (gst_check_message_error):
19101         * gst/check/gstcheck.h:
19102           add a fail_unless_equals_int
19103           add fail_unless for error messages
19105 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19107         * check/Makefile.am:
19108         * check/gst.supp:
19109         * common/Makefile.am:
19110         * common/check.mak:
19111         * common/gst.supp:
19112           factor out some of the common stuff so we can use it
19114 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19116         * check/Makefile.am:
19117         * check/gst/gstiterator.c: (GST_START_TEST):
19118         * check/gst/gstsystemclock.c: (GST_START_TEST),
19119         (gst_systemclock_suite):
19120         * check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
19121         * gst/gstclock.c:
19122           valgrind more tests
19124 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19126         * check/elements/.cvsignore:
19127         * check/elements/gstfakesrc.c:
19128           rename to name of element
19129         * check/elements/identity.c: (chain_func), (event_func),
19130         (setup_identity), (cleanup_identity), (GST_START_TEST),
19131         (identity_suite), (main):
19132           add a test for identity
19133         * check/Makefile.am:
19134         * pkgconfig/Makefile.am:
19135         * pkgconfig/gstreamer-check.pc.in:
19136         * pkgconfig/gstreamer-check-uninstalled.pc.in:
19137         * gst/check:
19138         * gst/Makefile.am:
19139         * configure.ac:
19140           move the check stuff to a library that gets installed
19141         * check/gst-libs/controller.c: (GST_START_TEST):
19142         * check/gst-libs/gdp.c:
19143         * check/gst/gst.c: (GST_START_TEST):
19144         * check/gst/gstbin.c:
19145         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
19146         * check/gst/gstbus.c:
19147         * check/gst/gstcaps.c: (GST_START_TEST):
19148         * check/gst/gstelement.c:
19149         * check/gst/gstghostpad.c:
19150         * check/gst/gstiterator.c:
19151         * check/gst/gstmessage.c:
19152         * check/gst/gstminiobject.c: (thread_ref), (GST_START_TEST):
19153         * check/gst/gstobject.c:
19154         * check/gst/gstpad.c: (GST_START_TEST):
19155         * check/gst/gststructure.c: (GST_START_TEST):
19156         * check/gst/gstsystemclock.c: (GST_START_TEST),
19157         (gst_systemclock_suite):
19158         * check/gst/gsttag.c: (gst_tag_suite):
19159         * check/gst/gstvalue.c:
19160         * check/pipelines/cleanup.c:
19161         * check/pipelines/simple_launch_lines.c:
19162         * check/states/sinks.c:
19163           change include statement
19165         * docs/gst/gstreamer-sections.txt:
19166         * docs/gst/tmpl/gstpad.sgml:
19167           document more pad stuff
19168         * gst/gstminiobject.c: (gst_mini_object_ref),
19169         (gst_mini_object_unref):
19170           debug refcounting
19172 2005-08-19  Stefan Kost  <ensonic@users.sf.net>
19174         * docs/gst/tmpl/gst.sgml:
19175         * gst/gst.c:
19176           eliminate another tmpl file, fix spelling in the long-description
19178 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
19180         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
19181         (test_event), (timediff), (gstevents_suite):
19182           Should fix build on 64-bit arch's
19184 2005-08-18  Andy Wingo  <wingo@pobox.com>
19186         Make sure that when a pipeline goes to PLAYING, that data has
19187         actually hit the sink.
19189         * check/states/sinks.c (test_sink): A sink that doesn't get any
19190         data shouldn't return SUCCESS for going to either PLAYING or
19191         PAUSED. Test also the return values on the way back down.
19193         * gst/gstelement.c (gst_element_set_state): When changing the
19194         state of an element currently changing state asynchronously, go to
19195         lost-state after commiting the pending state. Makes future calls
19196         to get_state continue to return ASYNC.
19198         * gst/base/gstbasesink.c (gst_base_sink_change_state): Return
19199         ASYNC when going to PLAYING if we still don't have preroll, as can
19200         happen with live sources.
19202 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
19204         * docs/pwg/advanced-types.xml:
19205           Hack long paragraph into 2 chunks as a workaround for buggy
19206           jadetex version in sid and breezy that loops infinitely and
19207           eats all RAM.
19209 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
19211         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
19212         (test_event), (timediff), (gstevents_suite):
19213           Provide more error margin in clock measurements to allow for 
19214           g_get_current_time inaccuracies.
19216 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
19218         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
19219         (test_event), (timediff), (gstevents_suite):
19220            Fix error message output so I might be able to tell why the
19221            test works here but fails on the build farm.
19223 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
19225         * check/Makefile.am:
19226         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
19227         (test_event), (timediff), (gstevents_suite), (main):
19228           I wrote a test!
19230         * docs/design/part-seeking.txt:
19231           Spelling correction
19233         * docs/gst/tmpl/gstevent.sgml:
19234         * docs/gst/tmpl/gstfakesrc.sgml:
19235           Docs updates.
19237         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
19238           Treat a buffer-without-newsegment the same as a receiving 
19239           a newsegment not in time format, and disable syncing to the clock
19240           with a warning.
19242         * gst/gstbus.c: (gst_bus_set_sync_handler):
19243           Assert if anyone tries to replace the existing sync_handler for bus, 
19244           as only the owner should be setting it.
19246         * gst/gstevent.h:
19247           Have a fixed set of custom event enums with events identified by
19248           their structure name (as in 0.8), rather than a free-for-all
19249           allowing collisions between enum values from different plugins.
19251         * gst/gstpad.c: (gst_pad_class_init):
19252           Docs change.
19253           
19254         * gst/gstqueue.c: (gst_queue_handle_sink_event):
19255           Handle out-of-band downstream events from the sending thread.
19257 2005-08-17  Andy Wingo  <wingo@pobox.com>
19259         * gst/gstpipeline.c (gst_pipeline_change_state): Interpret
19260         play-timeout==0 to mean no timeout at all. In that case, don't
19261         bother with a get_state or a warning, just return directly, even
19262         if it's ASYNC.
19264         * gst/base/gstbasetransform.c: Debug changes.
19266         * gst/gstutils.h:
19267         * gst/gstutils.c (gst_bin_watch_for_state_change): Add function to
19268         ensure bins post state change messages. A bit of a hack but I can't
19269         think of a way to avoid it.
19271         * check/gst/gstbin.c (test_watch_for_state_change): Added test.
19273 2005-08-16  Andy Wingo  <wingo@pobox.com>
19275         * gst/base/gstadapter.h:
19276         * gst/base/gstadapter.c (gst_adapter_take): New function, like
19277         peek() but you own the data. Not terribly efficient atm.
19279 2005-08-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19281         * gst/gstutils.c: (gst_element_found_tags_for_pad), (push_and_ref),
19282         (gst_element_found_tags):
19283         * gst/gstutils.h:
19284           Add two utility functions for tag handling.
19286 2005-08-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19288         * docs/manual/advanced-dataaccess.xml:
19289         * docs/manual/basics-helloworld.xml:
19290           Fix docs to use _bin_add() before _link(), which fixes the examples
19291           with recent core versions (reported by Madhan Raj M
19292           <raj_madan@rediffmail.com>, #313199).
19294 2005-08-16  Wim Taymans  <wim@fluendo.com>
19296         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
19297         Added subtract checks.
19299         * docs/design/part-events.txt:
19300         Some more docs about newsegment
19302         * gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
19303         Fix FIXME
19305         * gst/gstcaps.c: (gst_caps_to_string):
19306         Add comments, cleanups.
19307         
19308         * gst/gstelement.c: (gst_element_save_thyself):
19309         cleanups
19310         
19311         * gst/gstvalue.c: (gst_value_collect_int_range),
19312         (gst_string_unwrap), (gst_value_union_int_int_range),
19313         (gst_value_union_int_range_int_range),
19314         (gst_value_intersect_int_int_range),
19315         (gst_value_intersect_int_range_int_range),
19316         (gst_value_intersect_double_double_range),
19317         (gst_value_intersect_double_range_double_range),
19318         (gst_value_intersect_list), (gst_value_subtract_int_int_range),
19319         (gst_value_subtract_int_range_int),
19320         (gst_value_subtract_double_range_double),
19321         (gst_value_subtract_double_range_double_range),
19322         (gst_value_subtract_from_list), (gst_value_subtract_list),
19323         (gst_value_can_compare), (gst_value_compare_fraction):
19324         Cleanups, add comments, remove unneeded asserts.
19326 2005-08-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19328         * tools/gst-launch.c: (event_loop):
19329           don't convert NULL structures to strings
19331 2005-08-15  Stefan Kost  <ensonic@users.sf.net>
19333         * docs/gst/gstreamer-sections.txt:
19334           made some defines private
19335         * docs/gst/tmpl/gstconfig.sgml:
19336         * docs/gst/tmpl/gstqueue.sgml:
19337         * docs/gst/tmpl/gsttaglist.sgml:
19338         * docs/gst/tmpl/gsttypes.sgml:
19339         * docs/gst/tmpl/gstutils.sgml:
19340         * docs/pwg/appendix-porting.xml:
19341         * gst/base/gstbasesink.h:
19342         * gst/base/gstbasesrc.c:
19343         * gst/base/gstbasesrc.h:
19344         * gst/elements/gstfakesink.c: (gst_fake_sink_class_init):
19345         * gst/elements/gstfakesrc.c: (gst_fake_src_class_init):
19346         * gst/gstelement.c: (gst_element_class_init):
19347         * gst/gstpad.c: (gst_pad_class_init):
19348         * gst/gstqueue.c: (gst_queue_class_init):
19349         * gst/gstxml.c: (gst_xml_class_init):
19350           documented all undocumented signal inline
19351         * libs/gst/controller/gst-controller.h:
19352           added padding
19354 2005-08-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19356         * docs/pwg/appendix-porting.xml:
19357           Document _set_link_function -> _set_setcaps_function.
19359 2005-08-15  Thomas Vander Stichele  <thomas at apestaart dot org>
19361         * check/Makefile.am:
19362           add a .check target for running the check
19363         * check/gst-libs/controller.c: (GST_START_TEST):
19364           cosmetic fixups
19365         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
19366           complete checks for gstbuffer; would be nice if I could get the
19367           gcov stuff to work so I can see if I actually completed gstbuffer.c
19368         * check/gstcheck.h:
19369           add ASSERT_BUFFER_REFCOUNT
19371 2005-08-13  Tim-Philipp Müller  <tim at centricular dot net>
19373         * docs/gst/gstreamer-sections.txt:
19374         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
19375         * gst/gsttag.h:
19376           Add GST_TAG_LANGUAGE_CODE as we have in 0.8, and don't
19377           spew out a warning if a tag that is already registered
19378           is re-registered, unless it is re-registered with a 
19379           different type (#308438).
19381 2005-08-12  Tim-Philipp Müller  <tim at centricular dot net>
19383         * docs/pwg/appendix-porting.xml:
19384         * docs/pwg/building-state.xml:
19385           Add some paragraphs about state changes in 0.9 to the PWG
19386           and the porting guide, in particular about the new meaning
19387           of GST_STATE_PAUSED and how to write state change functions
19388           with concurrent access by multiple threads in mind.
19390 2005-08-11  Stefan Kost  <ensonic@users.sf.net>
19392         * docs/gst/gstreamer-docs.sgml:
19393         * docs/libs/gstreamer-libs-docs.sgml:
19394           added deprecation and since indexes
19395         * libs/gst/controller/gst-controller.c:
19396         * libs/gst/controller/gst-helper.c:
19397           added since tags
19400 2005-08-11  Wim Taymans  <wim@fluendo.com>
19402         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked),
19403         (gst_proxy_pad_set_target), (gst_proxy_pad_get_target),
19404         (gst_proxy_pad_dispose), (gst_ghost_pad_do_activate_push),
19405         (gst_ghost_pad_do_link), (gst_ghost_pad_set_internal),
19406         (gst_ghost_pad_new_notarget), (gst_ghost_pad_get_target),
19407         (gst_ghost_pad_set_target):
19408         Actually implement (re)setting the target on a ghostpad
19409         as described in the docs.
19411 2005-08-10  Tim-Philipp Müller  <tim at centricular dot net>
19413         * gst/gst.c: (gst_init_check_with_popt_table), (init_pre):
19414           Check whether GST_DEBUG_NO_COLOR environment variable is
19415           set and disable coloured debug output if that is the case.
19417 2005-08-10  Tim-Philipp Müller  <tim at centricular dot net>
19419         * gst/base/gsttypefindhelper.c: (helper_find_peek),
19420         (gst_type_find_helper):
19421           The memory returned by gst_type_find_peek() needs to
19422           stay valid until the end of a typefind function, and
19423           typefind functions may keep results from different 
19424           offsets around, so we can't just unref the buffer from
19425           the previous _peek(), but have to save all buffers 
19426           returned by _peek() until typefinding is done and only
19427           free them then.
19429 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
19431         * docs/gst/gstreamer-sections.txt:
19432         * gst/gstutils.h:
19433           New macros: GST_ROUND_UP_2() through GST_ROUND_UP_64().
19435 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19437         * gst/base/gstbasetransform.c: (gst_base_transform_buffer_alloc):
19438           Fix a pretty good memleak.
19440 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
19442         * gst/gstiterator.h:
19443           Fix wrong include and 'make distcheck'.
19445 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19447         * gst/gstbin.c: (bin_bus_handler):
19448           Use gst_element_post_message() instead.
19450 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
19452         * gst/base/gstadapter.h:
19453         * gst/base/gstbasesink.h:
19454         * gst/base/gstbasesrc.h:
19455         * gst/base/gstbasetransform.h:
19456         * gst/base/gstcollectpads.h:
19457         * gst/base/gstpushsrc.h:
19458         * gst/gstiterator.h:
19459           Add padding to our base elements' class and instance structs and
19460           to GstIterator (you will need to rebuild all plugins and apps!)
19462 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19464         * gst/gstbin.c: (bin_bus_handler):
19465           Make default message forwarding from child->bus to bin->bus
19466           threadsafe and make it not emit warnings if the parent has no bus.
19468 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19470         * gst/gstelement.c: (activate_pads):
19471           On paused->ready, set pad->caps to NULL, as is the documented
19472           behaviour in this state change. Fixes playback of series of
19473           media files when visualization is enabled in Totem.
19475 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19477         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
19478           Allow NULL as filter-caps (which means "any").
19480 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
19482         * docs/libs/gstreamer-libs-sections.txt:
19483         * libs/gst/controller/gst-controller.c:
19484         * libs/gst/controller/gst-controller.h:
19485         * libs/gst/controller/gst-helper.c:
19486           adding more entries to the docs and fix small doc-bugs
19488 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
19490         * docs/gst/gstreamer-docs.sgml:
19491         * docs/gst/gstreamer-sections.txt:
19492         * docs/gst/gstreamer.types:
19493         * docs/gst/tmpl/gstbasesink.sgml:
19494         * docs/gst/tmpl/gstbasesrc.sgml:
19495         * docs/gst/tmpl/gstbasetransform.sgml:
19496         * docs/gst/tmpl/gstfakesrc.sgml:
19497         * gst/base/gstcollectpads.c:
19498         * gst/base/gstcollectpads.h:
19499         * libs/gst/controller/gst-controller.c:
19500         * libs/gst/controller/gst-controller.h:
19501         * libs/gst/controller/gst-helper.c:
19502         * libs/gst/controller/gst-interpolation.c:
19503         * libs/gst/controller/lib.c:
19504           added long/short desc for controller docs
19505           added collectpads base class docs
19506           added correct includes to base-class docs
19508 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
19510         * check/gst-libs/controller.c: (gst_test_mono_source_get_property),
19511         (gst_test_mono_source_set_property),
19512         (gst_test_mono_source_class_init), (GST_START_TEST),
19513         (gst_controller_suite):
19514         * docs/gst/gstreamer-docs.sgml:
19515         * docs/gst/gstreamer-sections.txt:
19516         * docs/gst/gstreamer.types:
19517         * docs/libs/gstreamer-libs-docs.sgml:
19518         * docs/libs/gstreamer-libs-sections.txt:
19519         * gst/base/gstadapter.c:
19520         * libs/gst/controller/gst-controller.c:
19521         (gst_controlled_property_new), (gst_controlled_property_free),
19522         (gst_controller_new_valist),
19523         (gst_controller_remove_properties_valist),
19524         (gst_controller_sink_values), (_gst_controller_finalize):
19525         * libs/gst/controller/gst-controller.h:
19526         * libs/gst/controller/gst-helper.c:
19527         (gst_object_control_properties), (gst_object_uncontrol_properties),
19528         (gst_object_get_controller), (gst_object_set_controller),
19529         (gst_object_sink_values), (gst_object_get_value_arrays),
19530         (gst_object_get_value_array):
19531           more tests (and fixes) for the controller
19532           more docs for the controller
19533           integrated companies docs for the adapter 
19535 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
19537         * check/elements/gstfakesrc.c: (setup_fakesrc), (cleanup_fakesrc),
19538         (GST_START_TEST), (fakesrc_suite):
19539           add tests for sizetype
19541 2005-08-04  Andy Wingo  <wingo@pobox.com>
19543         * gst/elements/gstcapsfilter.c: Reimplement using basetransform,
19544         fixes buffer_alloc proxying among other things.
19546         * gst/base/gstbasetransform.c:
19547         * gst/base/gstbasetransform.h:
19548         Revert patch to gstbasetransform from 7-28 removing
19549         delay_configure.
19551         * gst/base/gstbasetransform.h (GstBaseTransformClass.get_size):
19552         * gst/base/gstbasetransform.c (gst_base_transform_get_size):
19553         Semantics changed, should return not the size of the output buffer
19554         but the byte size of a buffer with a given caps.
19556         * gst/base/gstbasetransform.c (gst_base_transform_getcaps): Better
19557         debug object.
19558         (gst_base_transform_configure_caps): Don't set out_size here: (in,
19559         out) are not the pad caps until setcaps finishes.
19560         (gst_base_transform_buffer_alloc): Proxy the buffer_alloc for the
19561         not-in-place case as well. Deal with changing from in-place to
19562         not-in-place within calling pad_alloc_buffer. Still a bit
19563         concerned about the overhead here...
19565 2005-08-03  Andy Wingo  <wingo@pobox.com>
19567         * gst/base/gstbasetransform.c (gst_base_transform_setcaps): Not
19568         fixating is an error.
19570 2005-08-04  Edward Hervey  <edward@fluendo.com>
19572         * gst/base/gstadapter.h: 
19573         Added gst_adapter_get_type() to the header
19575 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
19577         * check/Makefile.am:
19578         * check/gst-libs/controller.c:
19579         * libs/gst/controller/gst-controller.c:
19580         (gst_controller_new_valist):
19581           added check test suite for the controller
19582         * gst/base/gstpushsrc.c:
19583           fixed a doc typo
19585 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
19587         * docs/gst/Makefile.am:
19588         * docs/gst/gstreamer-docs.sgml:
19589         * docs/gst/gstreamer-sections.txt:
19590         * docs/gst/gstreamer.types:
19591         * docs/gst/tmpl/gstfakesrc.sgml:
19592         * gst/base/README:
19593         * gst/base/gstbasesink.c:
19594         * gst/base/gstbasesink.h:
19595         * gst/base/gstbasesrc.c:
19596         * gst/base/gstbasesrc.h:
19597         * gst/base/gstbasetransform.c:
19598         * gst/base/gstpushsrc.c:
19599         * gst/base/gstpushsrc.h:
19600           add short/long description docs to base classes
19601           add pushsrc to the docs
19602           remove consolidated doc fragments
19604 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
19606         * configure.ac:
19607         * docs/libs/Makefile.am:
19608         * docs/libs/gstreamer-libs-docs.sgml:
19609         * docs/libs/gstreamer-libs-sections.txt:
19610         * docs/libs/gstreamer-libs.types:
19611         * examples/Makefile.am:
19612         * examples/controller/.cvsignore:
19613         * examples/controller/Makefile.am:
19614         * examples/controller/audio-example.c: (main):
19615         * libs/gst/Makefile.am:
19616         * libs/gst/controller/.cvsignore:
19617         * libs/gst/controller/Makefile.am:
19618         * libs/gst/controller/gst-controller.c:
19619         (on_object_controlled_property_changed), (gst_timed_value_compare),
19620         (gst_timed_value_find),
19621         (gst_controlled_property_set_interpolation_mode),
19622         (gst_controlled_property_new), (gst_controlled_property_free),
19623         (gst_controller_find_controlled_property),
19624         (gst_controller_new_valist), (gst_controller_new),
19625         (gst_controller_remove_properties_valist),
19626         (gst_controller_remove_properties), (gst_controller_set),
19627         (gst_controller_set_from_list), (gst_controller_unset),
19628         (gst_controller_get), (gst_controller_get_all),
19629         (gst_controller_sink_values), (gst_controller_get_value_arrays),
19630         (gst_controller_get_value_array),
19631         (gst_controller_set_interpolation_mode),
19632         (_gst_controller_finalize), (_gst_controller_init),
19633         (_gst_controller_class_init), (gst_controller_get_type):
19634         * libs/gst/controller/gst-controller.h:
19635         * libs/gst/controller/gst-helper.c: (g_object_control_properties),
19636         (g_object_uncontrol_properties), (g_object_get_controller),
19637         (g_object_set_controller), (g_object_sink_values),
19638         (g_object_get_value_arrays), (g_object_get_value_array):
19639         * libs/gst/controller/gst-interpolation.c:
19640         (gst_controlled_property_find_timed_value_node),
19641         (interpolate_none_get), (interpolate_trigger_get),
19642         (interpolate_trigger_get_value_array):
19643         * libs/gst/controller/lib.c: (gst_controller_init):
19644         * pkgconfig/Makefile.am:
19645         * pkgconfig/gstreamer-control-uninstalled.pc.in:
19646         * pkgconfig/gstreamer-control.pc.in:
19647         * testsuite/Makefile.am:
19648         * testsuite/controller/.cvsignore:
19649         * testsuite/controller/Makefile.am:
19650         * testsuite/controller/interpolator.c: (main):
19651           added controller code
19652           removed dparam pc files
19654 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
19655         * gst/base/gstcollectpads.c: (gst_collectpads_finalize),
19656         (gst_collectpads_stop):
19657           Broadcast the condition when shutting down, to make sure we wake all
19658           threads up. Shut down pads on finalize, for safety.
19660 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
19661         * gst/base/gstbasetransform.c: (gst_base_transform_init),
19662         (gst_base_transform_handle_buffer),
19663         (gst_base_transform_change_state):
19664           Handle PAUSED->READY->PAUSED transition after negotiation
19665           occurred already.
19666         * gst/gstmessage.c: (gst_message_init):
19667           Extra piece of debug for new messages.
19669 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
19671         * configure.ac:
19672         * docs/gst/tmpl/gstbasesrc.sgml:
19673         * docs/gst/tmpl/gstelement.sgml:
19674         * docs/gst/tmpl/gstevent.sgml:
19675         * docs/gst/tmpl/gstfakesrc.sgml:
19676         * docs/gst/tmpl/gstformat.sgml:
19677         * docs/gst/tmpl/gstghostpad.sgml:
19678         * docs/gst/tmpl/gstpad.sgml:
19679         * docs/gst/tmpl/gstquery.sgml:
19680         * docs/gst/tmpl/gststructure.sgml:
19681         * docs/gst/tmpl/gsttaglist.sgml:
19682         * docs/gst/tmpl/gstvalue.sgml:
19683         * docs/libs/gstreamer-libs-docs.sgml:
19684         * docs/libs/gstreamer-libs-sections.txt:
19685         * docs/libs/gstreamer-libs.types:
19686         * libs/gst/Makefile.am:
19687         * libs/gst/control/.cvsignore:
19688         * libs/gst/control/Makefile.am:
19689         * libs/gst/control/control.c:
19690         * libs/gst/control/control.h:
19691         * libs/gst/control/dparam.c:
19692         * libs/gst/control/dparam.h:
19693         * libs/gst/control/dparam_smooth.c:
19694         * libs/gst/control/dparam_smooth.h:
19695         * libs/gst/control/dparamcommon.h:
19696         * libs/gst/control/dparammanager.c:
19697         * libs/gst/control/dparammanager.h:
19698         * libs/gst/control/dplinearinterp.c:
19699         * libs/gst/control/dplinearinterp.h:
19700         * libs/gst/control/unitconvert.c:
19701         * libs/gst/control/unitconvert.h:
19702         * testsuite/Makefile.am:
19703         * testsuite/dynparams/.cvsignore:
19704         * testsuite/dynparams/Makefile.am:
19705         * testsuite/dynparams/dparamstest.c:
19706         * tools/Makefile.am:
19707         * tools/gst-inspect.c: (print_element_info), (main):
19708         * tools/gst-xmlinspect.c: (print_element_info), (main):
19709           deactivate and remove dparams (libgstcontrol)
19711 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
19713         * gst/elements/gsttypefindelement.c:
19714         (gst_type_find_element_have_type), (gst_type_find_element_init),
19715         (stop_typefinding), (gst_type_find_element_handle_event),
19716         (gst_type_find_element_chain), (gst_type_find_element_getrange):
19717         * gst/elements/gsttypefindelement.h:
19718           Set caps on all outgoing buffers, not just the first one.
19720 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
19722         * gst/elements/gsttypefindelement.c:
19723         (gst_type_find_element_have_type),
19724         (gst_type_find_element_check_set_buffer_caps),
19725         (gst_type_find_element_init), (stop_typefinding),
19726         (gst_type_find_element_handle_event),
19727         (gst_type_find_element_chain), (gst_type_find_element_getrange):
19728         * gst/elements/gsttypefindelement.h:
19729           Set caps on first outgoing buffer when we've found the type.
19731 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
19733         * docs/gst/gstreamer-docs.sgml:
19734         * docs/gst/gstreamer-sections.txt:
19735         * docs/gst/tmpl/gstscheduler.sgml:
19736         * docs/gst/tmpl/gstschedulerfactory.sgml:
19737           Remove some old cruft from docs.
19739 2005-07-31  Tim-Philipp Müller  <tim at centricular dot net>
19741         * gst/gstpad.h:
19742           Fix inline docs for GstPadLinkReturn.
19743           
19744         * gst/gststructure.c: (gst_structure_has_name):
19745         * gst/gststructure.h:
19746         * docs/gst/gstreamer-sections.txt:
19747           New API: gst_structure_has_name().
19749 2005-07-30  Tim-Philipp Müller  <tim at centricular dot net>
19751         * configure.ac:
19752           Use AC_SYS_LARGEFILE, which will set _FILE_OFFSET_BITS=64
19753           and _LARGEFILE_SOURCE in config.h as required. Do not 
19754           export those flags in our .pc files any longer (#142209).
19756           Remove unused GST_DISABLE_OMEGA_COTHREADS stuff.
19758         * gst/elements/gstfilesink.c: (gst_file_sink_class_init),
19759         (gst_file_sink_do_seek), (gst_file_sink_event),
19760         (gst_file_sink_get_current_offset), (gst_file_sink_render):
19761           Redo seek/tell calls with large file support in mind; add some
19762           debugging messages; add log message that tells us when large
19763           file support is unavailable or not enabled for some reason.
19765         * gst/elements/gstfilesrc.c: (gst_file_src_class_init):
19766           Add log message that tells us when large file support 
19767           is unavailable or not enabled for some reason.
19769 2005-07-29  Wim Taymans  <wim@fluendo.com>
19771         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
19772         Added test for removing an element with ghostpad from a bin.
19773         Fixed test as current implementation does the right thing.
19775         * gst/gstghostpad.c: (gst_proxy_pad_class_init),
19776         (gst_proxy_pad_do_query_type), (gst_proxy_pad_do_event),
19777         (gst_proxy_pad_do_query), (gst_proxy_pad_do_internal_link),
19778         (gst_proxy_pad_do_bufferalloc), (gst_proxy_pad_do_activate),
19779         (gst_proxy_pad_do_activatepull), (gst_proxy_pad_do_activatepush),
19780         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange),
19781         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_getcaps),
19782         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
19783         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target),
19784         (gst_proxy_pad_get_target), (gst_proxy_pad_init),
19785         (gst_proxy_pad_dispose), (gst_proxy_pad_finalize),
19786         (gst_ghost_pad_class_init), (gst_ghost_pad_do_activate_push),
19787         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
19788         (gst_ghost_pad_set_internal), (gst_ghost_pad_dispose),
19789         (gst_ghost_pad_new_notarget), (gst_ghost_pad_new),
19790         (gst_ghost_pad_get_target), (gst_ghost_pad_set_target):
19791         * gst/gstghostpad.h:
19792         Clean up ghostpads, remove properties for internal stuff.
19793         Make threadsafe.
19794         Fix refcounting.
19795         Prepare for switching targets, not all use cases work yet.
19797 2005-07-29  Wim Taymans  <wim@fluendo.com>
19799         * docs/design/part-gstghostpad.txt:
19800         Small update.
19802         * gst/gstbin.c: (unlink_pads), (gst_bin_add_func),
19803         (gst_bin_remove_func):
19804         Unlinking pads while holding the bin LOCK is not a good
19805         idea.
19807         * gst/gstpad.c: (gst_pad_class_init),
19808         (gst_pad_link_check_hierarchy), (gst_pad_get_caps_unlocked),
19809         (gst_pad_accept_caps), (gst_pad_set_caps), (gst_pad_send_event):
19810         No prob setting template after creating the pad.
19812 2005-07-29  Jan Schmidt  <thaytan@mad.scientist.com>
19814         * gst/gstbus.c: (gst_bus_set_flushing), (gst_bus_pop),
19815         (gst_bus_peek), (gst_bus_source_dispatch),
19816         (gst_bus_add_watch_full), (poll_handler), (poll_timeout),
19817         (poll_destroy), (poll_destroy_timeout), (gst_bus_poll):
19818           gst_bus_poll may be called from other threads. Handle
19819           this nicely by not making poll_data disappear off the
19820           stack once gst_bus_poll returns.
19821           gst_bus_peek now increments the refcount on the returned
19822           message.
19824 2005-07-29  Wim Taymans  <wim@fluendo.com>
19826         * docs/design/part-gstghostpad.txt:
19827         Overview of current GhostPad datastructures and use
19828         cases for changing the target.
19830 2005-07-28  Wim Taymans  <wim@fluendo.com>
19832         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
19833         Added checks for hierarchy consistency whan adding linked
19834         elements to bins.
19836         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
19837         Added check to test element scheduling without bin/pipeline.
19839         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
19840         First add elements to bin, then link.
19841         
19842         * gst/gstbin.c: (unlink_pads), (gst_bin_add_func),
19843         (gst_bin_remove_func):
19844         Unlink pads from elements added/removed from bin to maintain
19845         hierarchy consistency.
19847 2005-07-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19849         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
19850         (gst_base_transform_handle_buffer):
19851         * gst/base/gstbasetransform.h:
19852           Remove broken delay_configure (fixes renegotiation of software
19853           scaling pipelines); remove some leftover printf()s.
19855 2005-07-28  Wim Taymans  <wim@fluendo.com>
19857         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
19858         Added some more tests for wrong hierarchy
19860         * docs/design/part-overview.txt:
19861         Some updates.
19863         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_dispose):
19864         Cleanups.
19866         * gst/gstelement.c: (gst_element_remove_pad), (gst_element_seek),
19867         (gst_element_dispose):
19868         Some more cleanups.
19870         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
19871         (gst_pad_link_check_hierarchy), (gst_pad_link_prepare),
19872         (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
19873         (gst_pad_set_caps), (gst_pad_send_event):
19874         Check for correct hierarchy when linking pads. Moving to
19875         strict requirement for ghostpads when linking elements in
19876         different bins.
19878         * gst/gstpad.h:
19879         Clean ups. Added WRONG_HIERARCHY return value.
19881 2005-07-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19883         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
19884           Better debug if no transform is possible.
19886 2005-07-27  Wim Taymans  <wim@fluendo.com>
19888         * docs/random/wtay/network-transp:
19889         Some old doc I had.
19891 2005-07-27  Wim Taymans  <wim@fluendo.com>
19893         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
19894         (gst_dp_event_from_packet):
19895         Fix serialization of seek events.
19897 2005-07-27  Wim Taymans  <wim@fluendo.com>
19899         * check/gst-libs/gdp.c: (GST_START_TEST):
19900         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
19901         Fix compilation and fix event serialization.
19903 2005-07-27  Wim Taymans  <wim@fluendo.com>
19905         * CHANGES-0.9:
19906         * docs/design/part-TODO.txt:
19907         * docs/design/part-events.txt:
19908         Some docs updates
19910         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
19911         (gst_base_sink_event), (gst_base_sink_do_sync),
19912         (gst_base_sink_activate_push), (gst_base_sink_activate_pull):
19913         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
19914         (gst_base_src_do_seek), (gst_base_src_event_handler),
19915         (gst_base_src_loop):
19916         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
19917         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
19918         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
19919         (gst_base_transform_event), (gst_base_transform_handle_buffer),
19920         (gst_base_transform_set_passthrough),
19921         (gst_base_transform_is_passthrough):
19922         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
19923         * gst/elements/gstfilesink.c: (gst_file_sink_event):
19924         Event updates.
19926         * gst/gstbuffer.h:
19927         Use faster casts.
19929         * gst/gstelement.c: (gst_element_seek):
19930         * gst/gstelement.h:
19931         Update gst_element_seek.
19933         * gst/gstevent.c: (gst_event_finalize), (_gst_event_copy),
19934         (gst_event_new), (gst_event_new_custom), (gst_event_get_structure),
19935         (gst_event_new_flush_start), (gst_event_new_flush_stop),
19936         (gst_event_new_eos), (gst_event_new_newsegment),
19937         (gst_event_parse_newsegment), (gst_event_new_tag),
19938         (gst_event_parse_tag), (gst_event_new_filler), (gst_event_new_qos),
19939         (gst_event_parse_qos), (gst_event_new_seek),
19940         (gst_event_parse_seek), (gst_event_new_navigation):
19941         * gst/gstevent.h:
19942         Make GstEvent use GstStructure. Add parsing code, make sure the
19943         API is sufficiently generic.
19944         Mark possible directions of events and serialization.
19946         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize),
19947         (_gst_message_copy), (gst_message_new_segment_start),
19948         (gst_message_new_segment_done), (gst_message_new_custom),
19949         (gst_message_parse_segment_start),
19950         (gst_message_parse_segment_done):
19951         Small cleanups.
19953         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
19954         (gst_pad_set_caps), (gst_pad_send_event):
19955         Update for new events. 
19956         Catch events sent in wrong directions.
19958         * gst/gstqueue.c: (gst_queue_link_src),
19959         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
19960         (gst_queue_handle_src_query):
19961         Event updates.
19963         * gst/gsttag.c:
19964         * gst/gsttag.h:
19965         Remove event code from this file.
19967         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
19968         (gst_dp_event_from_packet):
19969         Event updates.
19971 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19973         * gst/base/gstbasetransform.c: (gst_base_transform_getcaps),
19974         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
19975         (gst_base_transform_get_size), (gst_base_transform_handle_buffer):
19976           Make debugging actually useful.
19978 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
19980         * gst/gstpad.c: (fixate_value), (gst_pad_default_fixate),
19981         (gst_pad_fixate_caps):
19982           Implement default fixation once again, so that gst_pad_fixate()
19983           actually does anything at all. This probably needs to be some
19984           sort of a last resort, and use profile-based fixation first, but
19985           since that doesn't exist yet, this is the best we have. Fixes
19986           visualization in Totem.
19988 2005-07-22  Wim Taymans  <wim@fluendo.com>
19990         * docs/design/part-events.txt:
19991         Small update.
19993         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
19994         (gst_base_sink_do_sync), (gst_base_sink_activate_push),
19995         (gst_base_sink_activate_pull):
19996         Some more comments.
19998         * gst/elements/gstfakesrc.c: (gst_fake_src_class_init),
19999         (gst_fake_src_create):
20000         Fix handoff marshall.
20002         * gst/elements/gstidentity.c: (gst_identity_class_init),
20003         (gst_identity_transform_ip):
20004         We're a real inplace element.
20006         * gst/gstbus.c: (gst_bus_post):
20007         Added some comments.
20009         * tests/lat.c: (fakesrc), (fakesink), (simple), (queue), (main):
20010         * tests/muxing/case1.c: (main):
20011         * tests/sched/dynamic-pipeline.c: (main):
20012         * tests/sched/interrupt1.c: (main):
20013         * tests/sched/interrupt2.c: (main):
20014         * tests/sched/interrupt3.c: (main):
20015         * tests/sched/runxml.c: (main):
20016         * tests/sched/sched-stress.c: (main):
20017         * tests/seeking/seeking1.c: (event_received), (main):
20018         * tests/threadstate/threadstate2.c: (bus_handler), (timeout_func),
20019         (main):
20020         * tests/threadstate/threadstate3.c: (main):
20021         * tests/threadstate/threadstate4.c: (main):
20022         * tests/threadstate/threadstate5.c: (main):
20023         Fix the tests.
20025 2005-07-21  Wim Taymans  <wim@fluendo.com>
20027         * docs/design/part-seeking.txt:
20028         Some small additions.
20030         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
20031         (gst_base_sink_get_times), (gst_base_sink_do_sync),
20032         (gst_base_sink_activate_push), (gst_base_sink_activate_pull):
20033         * gst/base/gstbasesink.h:
20034         discont values are gint64, handle the math correctly.
20036         * gst/base/gstbasesrc.c: (gst_base_src_loop):
20037         Make the basesrc report error if the source pad is not linked.
20039         * gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
20040         (gst_queue_loop), (gst_queue_handle_src_query),
20041         (gst_queue_src_activate_push):
20042         Make queue collect data even if the srcpad is not linked.
20043         Start pushing out data as soon as it is linked.
20045         * gst/gstutils.c: (gst_element_unlink), (gst_flow_get_name):
20046         * gst/gstutils.h:
20047         Added gst_flow_get_name() to ease error reporting.
20049 2005-07-20  Wim Taymans  <wim@fluendo.com>
20051         * gst/gstmessage.c: (gst_message_new_segment_start),
20052         (gst_message_new_segment_done), (gst_message_parse_segment_start),
20053         (gst_message_parse_segment_done):
20054         * gst/gstmessage.h:
20055         Added a bunch of messages for advanced seeking.
20057         * gst/parse/grammar.y:
20058         * libs/gst/control/dparammanager.c: (gst_dpman_set_parent),
20059         (gst_dpman_state_changed):
20060         Fix some new-pad -> pad-added signals
20062 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20064         * docs/manual/appendix-porting.xml:
20065         * docs/pwg/appendix-porting.xml:
20066           Document new-pad/state-change signal renames and the FixedList
20067           type rename.
20069 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20071         * docs/manual/advanced-autoplugging.xml:
20072         * docs/manual/basics-helloworld.xml:
20073         * docs/manual/basics-pads.xml:
20074         * docs/random/ds/0.9-suggested-changes:
20075         * gst/gstelement.c: (gst_element_class_init), (gst_element_seek):
20076         * gst/gstelement.h:
20077         * gst/gstevent.h:
20078         * gst/gstformat.h:
20079         * gst/gstquery.h:
20080         * gst/gststructure.c: (gst_structure_value_get_generic_type),
20081         (gst_structure_parse_array), (gst_structure_parse_value):
20082         * gst/gstvalue.c: (gst_type_is_fixed),
20083         (gst_value_list_prepend_value), (gst_value_list_append_value),
20084         (gst_value_list_get_size), (gst_value_list_get_value),
20085         (gst_value_transform_array_string), (gst_value_serialize_array),
20086         (gst_value_deserialize_array), (gst_value_intersect_array),
20087         (gst_value_is_fixed), (_gst_value_initialize):
20088         * gst/gstvalue.h:
20089           GstElement::new-pad -> pad-added, GstElement::state-change ->
20090           state-changed, GstValueFixedList -> GstValueArray, add format and
20091           flags as their own arguments in gst_element_seek() (should improve
20092           "bindeability"), remove function generators since they don't work
20093           under a whole bunch of compilers (they were deprecated already
20094           anyway).
20096 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20098         * gst/gstinfo.c: (_gst_debug_nameof_funcptr),
20099         (_gst_debug_register_funcptr):
20100         * gst/gstinfo.h:
20101           Fix illegal cast on some platforms (#309253).
20103 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20105         * gst/gstmessage.c: (gst_message_new_custom):
20106         * gst/gstmessage.h:
20107           Add _new_custom, make _new_application a macro to _new_custom.
20109 2005-07-20  Wim Taymans  <wim@fluendo.com>
20111         * gst/base/gstbasesrc.c: (gst_base_src_init),
20112         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start):
20113         * gst/base/gstbasesrc.h:
20114         Add a gboolean to decide when to push out a discont.
20116         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
20117         (gst_queue_loop), (gst_queue_handle_src_query),
20118         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
20119         (gst_queue_set_property), (gst_queue_get_property):
20120         Some cleanups.
20122         * tests/threadstate/threadstate1.c: (main):
20123         Make a thread test compile and run... very silly..
20126 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20128         * docs/manual/appendix-porting.xml:
20129           Mention removal of libgstgconf-0.9.la and existence of gconf
20130           elements.
20132 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20134         * docs/pwg/advanced-clock.xml:
20135         * docs/pwg/appendix-porting.xml:
20136         * docs/pwg/intro-preface.xml:
20137         * docs/pwg/other-base.xml:
20138         * docs/pwg/other-manager.xml:
20139         * docs/pwg/other-nton.xml:
20140         * docs/pwg/other-ntoone.xml:
20141         * docs/pwg/other-oneton.xml:
20142         * docs/pwg/pwg.xml:
20143           Document base classes, update sections of n-to-1 and 1-to-n (muxer,
20144           demuxer), remove n-to-n (was never written), fix some code examples
20145           and links and update the porting section to include all this.
20147 2005-07-19  Wim Taymans  <wim@fluendo.com>
20149         * gst/gstqueue.c: (gst_queue_init), (gst_queue_handle_sink_event),
20150         (gst_queue_chain), (gst_queue_loop), (gst_queue_handle_src_event),
20151         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
20152         (gst_queue_src_activate_push), (gst_queue_change_state),
20153         (gst_queue_get_property):
20154         * gst/gstqueue.h:
20155         Propagate GstFlowReturn more intelligently upstream and output
20156         an ERROR/EOS when streaming stopped due to fatal error.
20158 2005-07-19  Wim Taymans  <wim@fluendo.com>
20160         * tools/gst-launch.c: (check_intr), (event_loop), (main):
20161         Don't block forever for the state change to complete, the
20162         pipeline already did with a sensible timeout.
20164 2005-07-19  Wim Taymans  <wim@fluendo.com>
20166         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
20167         Make sure we never call the create function is we
20168         got deactivated.
20170 2005-07-19  Andy Wingo  <wingo@pobox.com>
20172         * gst/parse/parse.l: Attempt to solve bug #172815.
20174 2005-07-19  Wim Taymans  <wim@fluendo.com>
20176         * docs/design/part-clocks.txt:
20177         * docs/design/part-events.txt:
20178         * gst/base/gstbasesrc.c: (gst_base_src_do_seek):
20179         Small docs updates.
20180         Only update the seeking values when we are not
20181         busy streaming.
20183 2005-07-19  Jan Schmidt  <thaytan@mad.scientist.com>
20185         * gst/base/gstbasesrc.c: (gst_base_src_loop):
20186           Oops, ignore the result of gst_pad_push_event here.
20188 2005-07-19  Jan Schmidt  <thaytan@mad.scientist.com>
20190         * gst/base/gstbasesrc.c: (gst_base_src_loop),
20191         (gst_base_src_activate_push):
20192           Send discont event from the loop function, as pads
20193           aren't activated yet in the activate_push handler.
20195         * gst/gstbin.c: (bin_bus_handler):
20196           Don't leak element name.
20198 2005-07-18  Andy Wingo  <wingo@pobox.com>
20200         * configure.ac: Use AS_LIBTOOL_TAGS.
20202 2005-07-18  Wim Taymans  <wim@fluendo.com>
20204         * docs/gst/gstreamer.types:
20205         Remove deleted types.
20207 2005-07-18  Wim Taymans  <wim@fluendo.com>
20209         * check/elements/gstfakesrc.c: (GST_START_TEST):
20210         * configure.ac:
20211         * gst/Makefile.am:
20212         * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
20213         (init_popt_callback):
20214         * gst/gst.h:
20215         * gst/gst_private.h:
20216         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_add_func),
20217         (gst_bin_remove_func), (gst_bin_get_state), (gst_bin_change_state):
20218         * gst/gstbin.h:
20219         * gst/gstbus.h:
20220         * gst/gstconfig.h.in:
20221         * gst/gstelement.c: (gst_element_class_init),
20222         (gst_element_set_base_time), (gst_element_get_base_time),
20223         (iterator_fold_with_resync), (gst_element_change_state),
20224         (gst_element_dispose), (gst_element_get_bus):
20225         * gst/gstelement.h:
20226         * gst/gstelementfactory.h:
20227         * gst/gsterror.c: (_gst_core_errors_init):
20228         * gst/gsterror.h:
20229         * gst/gstevent.h:
20230         * gst/gstghostpad.c: (gst_ghost_pad_do_activate_push):
20231         * gst/gstindex.c:
20232         * gst/gstinfo.c: (_gst_debug_init):
20233         * gst/gstmessage.c: (_gst_message_copy):
20234         * gst/gstmessage.h:
20235         * gst/gstminiobject.h:
20236         * gst/gstobject.c:
20237         * gst/gstobject.h:
20238         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
20239         (gst_pad_set_caps), (gst_pad_start_task), (gst_pad_stop_task):
20240         * gst/gstpad.h:
20241         * gst/gstparse.h:
20242         * gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
20243         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time),
20244         (gst_pipeline_get_last_stream_time):
20245         * gst/gstpipeline.h:
20246         * gst/gstpluginfeature.h:
20247         * gst/gstquery.h:
20248         * gst/gstscheduler.c:
20249         * gst/gstscheduler.h:
20250         * gst/gststructure.h:
20251         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
20252         (gst_task_finalize), (gst_task_func), (gst_task_create),
20253         (gst_task_set_lock), (gst_task_get_state), (gst_task_start),
20254         (gst_task_stop), (gst_task_pause):
20255         * gst/gsttask.h:
20256         * gst/gsttypefind.h:
20257         * gst/gsttypes.h:
20258         * gst/registries/gstlibxmlregistry.c: (load_feature),
20259         (gst_xml_registry_load), (gst_xml_registry_save_feature):
20260         * gst/registries/gstxmlregistry.c:
20261         (gst_xml_registry_start_element), (gst_xml_registry_save_feature):
20262         * gst/schedulers/threadscheduler.c:
20263         * libs/gst/control/dparammanager.h:
20264         * tools/gst-inspect.c: (print_element_list),
20265         (print_plugin_features), (print_element_features):
20266         * tools/gst-xmlinspect.c: (print_element_list),
20267         (print_plugin_info), (main):
20268         Removed plugable schedulers.
20269         Removed Scheduler/Manager from elements.
20270         Removed gsttypes.h, rearranged includes.
20271         Removed dependency pad<->element, element<>pipeline, and
20272         various others,  fix includes.
20273         implement gst_pad_get_parent() with gst_object_get_parent()
20274         Make GstTask sefcontained.
20275         Fix _get_state() on GstBin, it did not return ASYNC with a 0
20276         timeout.
20277         Fix endless loop in iterator_fold_with_resync.
20280 2005-07-18  Wim Taymans  <wim@fluendo.com>
20282         * gst/Makefile.am:
20283         * gst/gstarch.h:
20284         Remove old file.
20286 2005-07-18  Wim Taymans  <wim@fluendo.com>
20288         * gst/Makefile.am:
20289         No more cothreads.h
20291 2005-07-18  Wim Taymans  <wim@fluendo.com>
20293         * gst/cothreads.c:
20294         * gst/cothreads.h:
20295         Let's remove these.
20297 2005-07-18  Wim Taymans  <wim@fluendo.com>
20299         * docs/design/part-dynamic.txt:
20300         * docs/design/part-events.txt:
20301         * docs/design/part-seeking.txt:
20302         Some more docs in the works.
20304         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
20305         (gst_base_transform_getcaps), (gst_base_transform_configure_caps),
20306         (gst_base_transform_setcaps), (gst_base_transform_get_size),
20307         (gst_base_transform_buffer_alloc), (gst_base_transform_event),
20308         (gst_base_transform_handle_buffer),
20309         (gst_base_transform_sink_activate_push),
20310         (gst_base_transform_src_activate_pull),
20311         (gst_base_transform_set_passthrough),
20312         (gst_base_transform_is_passthrough):
20313         Refcounting fixes.
20315         * gst/gstbus.c: (gst_bus_source_dispatch), (gst_bus_poll):
20316         Cleanups.
20318         * gst/gstevent.c: (gst_event_finalize):
20319         Set SRC to NULL.
20321         * gst/gstutils.c: (gst_element_unlink),
20322         (gst_pad_get_parent_element), (gst_pad_proxy_getcaps),
20323         (gst_pad_proxy_setcaps):
20324         * gst/gstutils.h:
20325         Add _get_parent_element() to get a pads parent as an element.
20327 2005-07-18  Wim Taymans  <wim@fluendo.com>
20329         * check/gst/gstbin.c: (GST_START_TEST):
20330         Remove bogus test.
20332 2005-07-18  Wim Taymans  <wim@fluendo.com>
20334         * gst/base/gstbasesink.c: (gst_base_sink_pad_getcaps),
20335         (gst_base_sink_pad_setcaps), (gst_base_sink_pad_buffer_alloc),
20336         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_object),
20337         (gst_base_sink_event), (gst_base_sink_do_sync),
20338         (gst_base_sink_chain), (gst_base_sink_loop),
20339         (gst_base_sink_deactivate), (gst_base_sink_activate_push),
20340         (gst_base_sink_activate_pull), (gst_base_sink_change_state):
20341         Refcounting fixes.
20342         Fix logic for returning ASYNC when not prerolled.
20344 2005-07-18  Wim Taymans  <wim@fluendo.com>
20346         * gst/gstqueue.c: (gst_queue_handle_sink_event):
20347         Fix nasty refcount bug.
20349 2005-07-16 Philippe Khalaf <burger@speedy.org>
20351         * gst/elements/gstfdsrc.c:
20352         * gst/elements/gstfdsrc.h:
20353         * gst/elements/gstelements.c:
20354         * gst/elements/Makefile.am:
20355         Ported fdsrc to 0.9.
20357 2005-07-16  Wim Taymans  <wim@fluendo.com>
20359         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
20360         (gst_base_sink_do_sync):
20361         Fix compile error.
20363 2005-07-16  Wim Taymans  <wim@fluendo.com>
20365         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
20366         (gst_base_sink_event), (gst_base_sink_get_times),
20367         (gst_base_sink_do_sync), (gst_base_sink_change_state):
20368         * gst/base/gstbasesink.h:
20369         Store and use discont values when syncing buffers as described
20370         in design docs.
20371         
20372         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
20373         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start),
20374         (gst_base_src_activate_push):
20375         Push discont event when starting.
20377         * gst/elements/gstidentity.c: (gst_identity_transform):
20378         Small cleanups.
20380         * gst/gstbin.c: (gst_bin_change_state):
20381         Small cleanups in base_time  distribution.
20383         * gst/gstelement.c: (gst_element_set_base_time),
20384         (gst_element_get_base_time), (gst_element_change_state):
20385         * gst/gstelement.h:
20386         Added methods for the base_time of the element.
20387         Some MT fixes.
20389         * gst/gstpipeline.c: (gst_pipeline_send_event),
20390         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time),
20391         (gst_pipeline_get_last_stream_time):
20392         * gst/gstpipeline.h:
20393         MT fixes.
20394         Handle seeking as described in design doc, remove stream_time
20395         hack.
20396         Cleanups clock and stream_time selection code. Added accessors
20397         for the stream_time.
20398         
20400 2005-07-16  Andy Wingo  <wingo@pobox.com>
20402         * gst/gsterror.c (_gst_core_errors_init): Use the magic word
20403         (#305291).
20405 2005-07-16  Wim Taymans  <wim@fluendo.com>
20407         * check/gst/gstbin.c: (GST_START_TEST):
20408         Make elements silent as the deep_notify refs the
20409         parent, which might make the test fail.
20411         * gst/gstghostpad.c: (gst_ghost_pad_do_activate_push):
20412         Don't hold the lock for too long.
20414 2005-07-16  Tim-Philipp Müller  <tim at centricular dot net>
20416         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
20417           Don't unref the caps we passed to gst_caps_make_writable() after
20418           passing them. gst_caps_make_writable() will do that for us.
20420 2005-07-15  Andy Wingo  <wingo@pobox.com>
20422         * gst/gstcaps.h (gst_caps_is_simple): Removed deprecated macro
20423         (#157311).
20425         * gst/elements/gstidentity.c (marshal_VOID__MINIOBJECT): Write our
20426         own marshalling function for the handoff signal. Properly type the
20427         buffer as a buffer. Fixes some warnings. Should do a more general
20428         solution.
20429         (gst_identity_class_init): Plug into the right marshaller.
20431 2005-07-15  Wim Taymans  <wim@fluendo.com>
20433         * docs/design/part-TODO.txt:
20434         * docs/design/part-clocks.txt:
20435         * docs/design/part-element-sink.txt:
20436         * docs/design/part-events.txt:
20437         * docs/design/part-gstpipeline.txt:
20438         Updated docs, mostly DISCONT related.
20440 2005-07-15  Tim-Philipp Müller  <tim at centricular dot net>
20442         * docs/pwg/building-pads.xml:
20443           s/GST_PAD_LINK_REFUSED/FALSE/ in gst_my_filter_setcaps()
20445 2005-07-15  Andy Wingo  <wingo@pobox.com>
20447         * tools/gst-typefind.c: Update, add copyright block.
20449         * gst/base/gstbasesrc.c (gst_base_src_default_negotiate):
20450         Normalize and truncate caps before fixation.
20452         * gst/gstcaps.h:
20453         * gst/gstcaps.c (gst_caps_truncate): New function, destructively
20454         discards all but the first structure from its argument.
20456 2005-07-15  Wim Taymans  <wim@fluendo.com>
20458         * gst/base/gstbasetransform.c: (gst_base_transform_init),
20459         (gst_base_transform_transform_caps), (gst_base_transform_getcaps),
20460         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
20461         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
20462         (gst_base_transform_handle_buffer), (gst_base_transform_getrange),
20463         (gst_base_transform_chain), (gst_base_transform_change_state),
20464         (gst_base_transform_set_passthrough),
20465         (gst_base_transform_is_passthrough):
20466         * gst/base/gstbasetransform.h:
20467         Make passthrough work using the bufferpools.
20468         Changed API a bit, subclasses have to write into a buffer
20469         provided by the base class.
20470         More debug info in nego functions.
20471         
20472         * gst/elements/gstidentity.c: (gst_identity_init),
20473         (gst_identity_transform):
20474         Port to new base class.
20476 2005-07-15  Wim Taymans  <wim@fluendo.com>
20478         * gst/gstmessage.c: (gst_message_new_state_changed):
20479         * tools/gst-launch.c: (event_loop), (main):
20480         Totally dump messages in -launch with the -m option.
20481         Fix message name for State messages,
20483 2005-07-14  Wim Taymans  <wim@fluendo.com>
20485         * gst/base/gstbasesrc.c: (gst_base_src_loop):
20486         Post error messages on errors.
20488 2005-07-14  Wim Taymans  <wim@fluendo.com>
20490         * gst/gstcaps.c: (gst_caps_do_simplify):
20491         Remove debug info.
20493         * gst/gsterror.h:
20494         Define error for stream stopped.
20496         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
20497         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange):
20498         Do proper return values.
20500         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
20501         (gst_pad_set_caps), (gst_pad_chain), (gst_pad_push),
20502         (gst_pad_get_range):
20503         Better return values.
20505         * gst/gstpad.h:
20506         Reorganise return values, add macro to check for fatal errors.
20508         * gst/gstqueue.c: (gst_queue_chain):
20509         Return proper GstFlowReturn values,
20511 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20513         * docs/gst/gstreamer-sections.txt:
20514         * docs/gst/gstreamer.types:
20515         * docs/gst/tmpl/gst.sgml:
20516         * docs/gst/tmpl/gstbasesink.sgml:
20517         * docs/gst/tmpl/gstbasesrc.sgml:
20518         * docs/gst/tmpl/gstbasetransform.sgml:
20519         * docs/gst/tmpl/gstbin.sgml:
20520         * docs/gst/tmpl/gstbuffer.sgml:
20521         * docs/gst/tmpl/gstcaps.sgml:
20522         * docs/gst/tmpl/gstclock.sgml:
20523         * docs/gst/tmpl/gstcompat.sgml:
20524         * docs/gst/tmpl/gstconfig.sgml:
20525         * docs/gst/tmpl/gstelement.sgml:
20526         * docs/gst/tmpl/gstelementdetails.sgml:
20527         * docs/gst/tmpl/gstelementfactory.sgml:
20528         * docs/gst/tmpl/gstenumtypes.sgml:
20529         * docs/gst/tmpl/gsterror.sgml:
20530         * docs/gst/tmpl/gstevent.sgml:
20531         * docs/gst/tmpl/gstfakesink.sgml:
20532         * docs/gst/tmpl/gstfakesrc.sgml:
20533         * docs/gst/tmpl/gstfilesink.sgml:
20534         * docs/gst/tmpl/gstfilesrc.sgml:
20535         * docs/gst/tmpl/gstfilter.sgml:
20536         * docs/gst/tmpl/gstformat.sgml:
20537         * docs/gst/tmpl/gstghostpad.sgml:
20538         * docs/gst/tmpl/gstimplementsinterface.sgml:
20539         * docs/gst/tmpl/gstindex.sgml:
20540         * docs/gst/tmpl/gstindexfactory.sgml:
20541         * docs/gst/tmpl/gstinfo.sgml:
20542         * docs/gst/tmpl/gstiterator.sgml:
20543         * docs/gst/tmpl/gstmacros.sgml:
20544         * docs/gst/tmpl/gstmemchunk.sgml:
20545         * docs/gst/tmpl/gstminiobject.sgml:
20546         * docs/gst/tmpl/gstobject.sgml:
20547         * docs/gst/tmpl/gstpad.sgml:
20548         * docs/gst/tmpl/gstpadtemplate.sgml:
20549         * docs/gst/tmpl/gstparse.sgml:
20550         * docs/gst/tmpl/gstpipeline.sgml:
20551         * docs/gst/tmpl/gstplugin.sgml:
20552         * docs/gst/tmpl/gstpluginfeature.sgml:
20553         * docs/gst/tmpl/gstquery.sgml:
20554         * docs/gst/tmpl/gstqueue.sgml:
20555         * docs/gst/tmpl/gstregistry.sgml:
20556         * docs/gst/tmpl/gstregistrypool.sgml:
20557         * docs/gst/tmpl/gstscheduler.sgml:
20558         * docs/gst/tmpl/gstschedulerfactory.sgml:
20559         * docs/gst/tmpl/gststructure.sgml:
20560         * docs/gst/tmpl/gstsystemclock.sgml:
20561         * docs/gst/tmpl/gsttaglist.sgml:
20562         * docs/gst/tmpl/gsttagsetter.sgml:
20563         * docs/gst/tmpl/gsttrace.sgml:
20564         * docs/gst/tmpl/gsttrashstack.sgml:
20565         * docs/gst/tmpl/gsttypefind.sgml:
20566         * docs/gst/tmpl/gsttypefindfactory.sgml:
20567         * docs/gst/tmpl/gsttypes.sgml:
20568         * docs/gst/tmpl/gsturihandler.sgml:
20569         * docs/gst/tmpl/gsturitype.sgml:
20570         * docs/gst/tmpl/gstutils.sgml:
20571         * docs/gst/tmpl/gstvalue.sgml:
20572         * docs/gst/tmpl/gstversion.sgml:
20573         * docs/gst/tmpl/gstxml.sgml:
20574         * docs/libs/tmpl/gstcontrol.sgml:
20575         * docs/libs/tmpl/gstdataprotocol.sgml:
20576         * docs/libs/tmpl/gstdparam.sgml:
20577         * docs/libs/tmpl/gstdplinint.sgml:
20578         * docs/libs/tmpl/gstdpman.sgml:
20579         * docs/libs/tmpl/gstdpsmooth.sgml:
20580         * docs/libs/tmpl/gstgetbits.sgml:
20581         * docs/libs/tmpl/gstunitconvert.sgml:
20582         * gst/base/gstpushsrc.c: (gst_push_src_get_type),
20583         (gst_push_src_base_init), (gst_push_src_class_init),
20584         (gst_push_src_init), (gst_push_src_create):
20585         * gst/base/gstpushsrc.h:
20586         * gst/elements/gstelements.c:
20587         * gst/elements/gstfakesink.c: (gst_fake_sink_state_error_get_type),
20588         (gst_fake_sink_base_init), (gst_fake_sink_class_init),
20589         (gst_fake_sink_init), (gst_fake_sink_set_property),
20590         (gst_fake_sink_get_property), (gst_fake_sink_get_times),
20591         (gst_fake_sink_event), (gst_fake_sink_preroll),
20592         (gst_fake_sink_render), (gst_fake_sink_change_state):
20593         * gst/elements/gstfakesink.h:
20594         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
20595         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type),
20596         (gst_fake_src_base_init), (gst_fake_src_class_init),
20597         (gst_fake_src_init), (gst_fake_src_event_handler),
20598         (gst_fake_src_alloc_parent), (gst_fake_src_set_property),
20599         (gst_fake_src_get_property), (gst_fake_src_prepare_buffer),
20600         (gst_fake_src_alloc_buffer), (gst_fake_src_get_size),
20601         (gst_fake_src_create_buffer), (gst_fake_src_create),
20602         (gst_fake_src_start), (gst_fake_src_stop):
20603         * gst/elements/gstfakesrc.h:
20604         * gst/elements/gstfilesink.c: (_do_init),
20605         (gst_file_sink_base_init), (gst_file_sink_class_init),
20606         (gst_file_sink_init), (gst_file_sink_dispose),
20607         (gst_file_sink_set_location), (gst_file_sink_set_property),
20608         (gst_file_sink_get_property), (gst_file_sink_open_file),
20609         (gst_file_sink_close_file), (gst_file_sink_query),
20610         (gst_file_sink_event), (gst_file_sink_render),
20611         (gst_file_sink_change_state), (gst_file_sink_uri_get_type),
20612         (gst_file_sink_uri_get_protocols), (gst_file_sink_uri_get_uri),
20613         (gst_file_sink_uri_set_uri), (gst_file_sink_uri_handler_init):
20614         * gst/elements/gstfilesink.h:
20615         * gst/elements/gstfilesrc.c: (_do_init), (gst_file_src_base_init),
20616         (gst_file_src_class_init), (gst_file_src_init),
20617         (gst_file_src_finalize), (gst_file_src_set_location),
20618         (gst_file_src_set_property), (gst_file_src_get_property),
20619         (gst_file_src_map_region), (gst_file_src_map_small_region),
20620         (gst_file_src_create_mmap), (gst_file_src_create_read),
20621         (gst_file_src_create), (gst_file_src_is_seekable),
20622         (gst_file_src_get_size), (gst_file_src_start), (gst_file_src_stop),
20623         (gst_file_src_uri_get_type), (gst_file_src_uri_get_protocols),
20624         (gst_file_src_uri_get_uri), (gst_file_src_uri_set_uri),
20625         (gst_file_src_uri_handler_init):
20626         * gst/elements/gstfilesrc.h:
20627           more autistic cleanliness in functions/names/defines
20629 2005-07-13  Andy Wingo  <wingo@pobox.com>
20631         * gst/base/gstbasesrc.c (gst_base_src_start): Post an error if the
20632         source couldn't negotiate.
20634         * gst/parse/grammar.y: Revert 1.54->1.55, so we now do filtered
20635         connections again.
20637         * gst/gstutils.h:
20638         * gst/gstutils.c (gst_element_link_pads_filtered): New old
20639         function. I am channeling Hades. Put your boots on suckers!!!
20641 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
20643         * testsuite/caps/Makefile.am:
20644         * testsuite/caps/value_compare.c:
20645         * testsuite/caps/value_intersect.c:
20646         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
20647           move two testsuite apps over to the check dir
20649 2005-07-12  Wim Taymans  <wim@fluendo.com>
20651         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
20652         Added more debug info in the negotiate process.
20654         * gst/gstmessage.h:
20655         Prepare for segment playback.
20657         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps):
20658         Better debugging.
20660         * gst/gstutils.c:
20661         Some more docs.
20663         * tools/gst-launch.c: (main):
20664         NULL pipeline on errors.
20666 2005-07-12  Andy Wingo  <wingo@pobox.com>
20668         * gst/gstbuffer.c (_gst_buffer_copy): Copy the buffer whether or
20669         not it comes from a malloc region. Make sure our copy gets freed.
20671 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
20673         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
20674         * check/gst/gstmessage.c: (GST_START_TEST):
20675         * check/gst/gststructure.c: (GST_START_TEST),
20676         (gst_structure_suite), (main):
20677           more testing
20678         * gst/gstelement.c: (gst_element_message_full):
20679           clean up GError and debug string now that they get copied
20680         * gst/gstmessage.c: (gst_message_new_error),
20681         (gst_message_new_warning), (gst_message_parse_error),
20682         (gst_message_parse_warning):
20683           use GST_TYPE_G_ERROR for structure_new, and take copies of
20684           arguments, so that we don't mess up refcounting
20686 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
20688         * check/Makefile.am:
20689           add per-test valgrind targets
20690         * check/gst-libs/gdp.c: (GST_START_TEST),
20691         (gst_data_protocol_suite), (main):
20692           clean up
20694 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
20696         * check/Makefile.am:
20697           instate more valgrindable tests
20698         * check/elements/gstfakesrc.c: (chain_func), (event_func),
20699         (GST_START_TEST), (fakesrc_suite):
20700         * check/gst/gstpad.c: (GST_START_TEST):
20701         * check/gst/gststructure.c: (GST_START_TEST):
20702           fix test leaks
20703         * docs/gst/tmpl/gstminiobject.sgml:
20704         * gst/gstpad.c: (gst_pad_finalize):
20705           fix the static mutex leak
20707 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20709         * check/Makefile.am:
20710           add two more tests for valgrinding
20711         * check/gst/gstvalue.c: (GST_START_TEST):
20712           test refcount of deserialized buffer, found a leak
20713         * docs/gst/gstreamer-docs.sgml:
20714         * docs/gst/gstreamer-sections.txt:
20715         * docs/gst/gstreamer.types:
20716         * docs/gst/tmpl/gstminiobject.sgml:
20717           add miniobject to docs
20718         * gst/gstminiobject.c:
20719           add some docs
20720         * gst/gstvalue.c: (gst_value_deserialize_buffer),
20721         (gst_string_unwrap):
20722           fix a hard-to-find invalid write for one of the tests
20723           fix a leak for deserialized buffers
20725 2005-07-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
20727         * docs/pwg/advanced-events.xml:
20728         * docs/pwg/advanced-request.xml:
20729         * docs/pwg/advanced-scheduling.xml:
20730         * docs/pwg/appendix-porting.xml:
20731         * docs/pwg/building-boiler.xml:
20732         * docs/pwg/intro-preface.xml:
20733         * docs/pwg/other-ntoone.xml:
20734           Rewrite scheduling-chapter for scheduling model in 0.9. Add lots
20735           of example code and explanation for pad activation, loop() and
20736           getrange() functions and a bit more. Remove old comments pointing
20737           to loop-functions.
20738         * examples/pwg/Makefile.am:
20739           Add loop/getrange examples.
20741 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20743         * configure.ac:
20744           check for valgrind binary + some fixes
20745         * check/gst.supp:
20746           valgrind suppressions for the tests
20747         * check/Makefile.am:
20748           add a valgrind: target that valgrinds the unit tests
20749         * check/gst/gst.c: (GST_START_TEST), (gst_suite):
20750         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
20751         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
20752         * check/gst/gstghostpad.c:
20753           added some cleanup
20754         * check/gst/gstdata.c:
20755           removed
20756         * check/gst/gstminiobject.c: (GST_START_TEST), (thread_ref),
20757         (thread_unref), (gst_mini_object_suite), (main):
20758           added
20759         * gst/gst.c: (gst_deinit):
20760         * gst/gst.h:
20761           add a method to clean up.
20762         * gst/gstsystemclock.c: (gst_system_clock_dispose),
20763         (gst_system_clock_obtain):
20764           allow for disposing the system clock.
20765         * tools/gst-launch.c: (main):
20766           deinit
20768 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20770         * docs/gst/tmpl/gstbasesrc.sgml:
20771         * docs/gst/tmpl/gstfakesrc.sgml:
20772         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
20773         (gst_base_src_init), (gst_base_src_set_property),
20774         (gst_base_src_get_property), (gst_base_src_get_range),
20775         (gst_base_src_start):
20776         * gst/base/gstbasesrc.h:
20777           add num-buffers property
20778         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
20779         (gst_fakesrc_init), (gst_fakesrc_set_property),
20780         (gst_fakesrc_get_property), (gst_fakesrc_create),
20781         (gst_fakesrc_start):
20782           remove num-buffers property
20784 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20786         * docs/gst/gstreamer-sections.txt:
20787         * docs/gst/tmpl/gstbasesink.sgml:
20788         * docs/gst/tmpl/gstbasesrc.sgml:
20789         * gst/base/gstbasesink.c: (gst_base_sink_pad_getcaps),
20790         (gst_base_sink_pad_setcaps), (gst_base_sink_pad_buffer_alloc),
20791         (gst_base_sink_finalize), (gst_base_sink_set_clock),
20792         (gst_base_sink_set_property), (gst_base_sink_get_property),
20793         (gst_base_sink_handle_object), (gst_base_sink_event),
20794         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
20795         (gst_base_sink_handle_buffer), (gst_base_sink_chain),
20796         (gst_base_sink_loop), (gst_base_sink_deactivate),
20797         (gst_base_sink_activate_push), (gst_base_sink_activate_pull),
20798         (gst_base_sink_change_state):
20799         * gst/base/gstbasesink.h:
20800         * gst/base/gstbasesrc.h:
20801         * gst/elements/gstfakesink.c: (gst_fakesink_get_times):
20802         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
20803         (gst_filesink_init):
20804           more macro splitting
20806 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20808         * gst/gstelement.c: (gst_element_get_bus):
20809           add debug
20810         * tools/gst-launch.c: (check_intr), (event_loop):
20811           fix bus leaks
20813 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20815         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked):
20816           fix a caps leak
20818 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20820         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
20821         (gst_base_src_finalize):
20822           add finalize method and clean up properly
20823         * gst/gstpipeline.c: (gst_pipeline_dispose):
20824           add debug
20826 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20828         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST),
20829         (gst_bin_suite):
20830           add more things to check
20831         * gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
20832         * gst/gstelement.c:
20833           more debug
20835 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20837         * check/elements/gstfakesrc.c: (chain_func), (event_func),
20838         (GST_START_TEST), (fakesrc_suite):
20839         * check/gst-libs/gdp.c: (GST_START_TEST):
20840         * check/gst/gst.c: (GST_START_TEST):
20841         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
20842         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
20843         * check/gst/gstbus.c: (GST_START_TEST):
20844         * check/gst/gstcaps.c: (GST_START_TEST):
20845         * check/gst/gstdata.c: (GST_START_TEST):
20846         * check/gst/gstelement.c: (GST_START_TEST):
20847         * check/gst/gstghostpad.c: (GST_START_TEST):
20848         * check/gst/gstiterator.c: (GST_START_TEST):
20849         * check/gst/gstmessage.c: (GST_START_TEST):
20850         * check/gst/gstobject.c: (GST_START_TEST):
20851         * check/gst/gstpad.c: (GST_START_TEST):
20852         * check/gst/gststructure.c: (GST_START_TEST):
20853         * check/gst/gstsystemclock.c: (GST_START_TEST),
20854         (gst_systemclock_suite):
20855         * check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
20856         * check/gst/gstvalue.c: (GST_START_TEST):
20857         * check/pipelines/cleanup.c: (GST_START_TEST):
20858         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
20859         * check/states/sinks.c: (GST_START_TEST):
20860         * check/gstcheck.c: (gst_check_init):
20861         * check/gstcheck.h:
20862           add debugging category
20863           use GST_START_TEST now, so we add a debug line
20865 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
20867         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite):
20868           add test for state change message on a bin
20869         * check/gst/gstelement.c: (START_TEST), (gst_element_suite):
20870           add another test
20871         * gst/gstbin.c: (gst_bin_init):
20872         * gst/gstbus.c: (gst_bus_init), (gst_bus_post):
20873         * gst/gstelement.c: (gst_element_post_message),
20874         (gst_element_set_state):
20875         * gst/gstelementfactory.c: (gst_element_factory_create):
20876         * gst/gstmessage.c: (gst_message_new):
20877         * gst/gstscheduler.c:
20878           various debugging additions and cleanups
20880 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20882         * check/Makefile.am:
20883         * check/gst/gstelement.c: (START_TEST), (gst_element_suite),
20884         (main):
20885           adding tests for elements
20886         * gst/gstelement.c: (gst_element_dispose):
20888 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20890         * gst/registries/gstlibxmlregistry.c: (load_feature):
20891           plug more leaks.  A simple gst_init() now is leakfree, yay.
20893 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20895         * gst/registries/gstlibxmlregistry.c: (read_string), (load_paths),
20896         (gst_xml_registry_load):
20897           plug another memleak
20899 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20901         * configure.ac:
20902           use GST_SET_ERROR_CFLAGS
20903         * docs/faq/cvs.xml:
20904           change to ERROR_CFLAGS
20906 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
20908         * configure.ac:
20909           make GST_ERROR_CFLAGS overridable and re-enable Werror
20910         * docs/faq/cvs.xml:
20911           add a note about error CFLAGS
20912         * docs/gst/tmpl/gstfakesrc.sgml:
20913         * gst/elements/gstfakesrc.c:
20914           comment out some unused code
20915         * gst/gst.c: (split_and_iterate):
20916         * gst/registries/gstlibxmlregistry.c: (load_pad_template),
20917         (load_feature):
20918           plug some memleaks
20920 2005-07-07  Thomas Vander Stichele  <thomas at apestaart dot org>
20922         * common/Makefile.am:
20923         * common/gtk-doc.mak:
20924         * docs/gst/Makefile.am:
20925           factor out gtk-doc.mak
20927 2005-07-07  Wim Taymans  <wim@fluendo.com>
20929         * gst/schedulers/threadscheduler.c: (gst_thread_scheduler_func),
20930         (gst_thread_scheduler_dispose):
20931         Unlock the STREAM_LOCK completely.
20933 2005-07-07  Thomas Vander Stichele  <thomas at apestaart dot org>
20935         * check/Makefile.am:
20936         * check/elements/.cvsignore:
20937         * check/elements/gstfakesrc.c: (chain_func), (event_func),
20938         (START_TEST), (fakesrc_suite), (main):
20939         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
20940         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
20941         (gst_fakesrc_create), (gst_fakesrc_start):
20942         * gst/elements/gstfakesrc.h:
20943           adding a first element test
20945 2005-07-07  Andy Wingo  <wingo@pobox.com>
20947         * gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating
20948         debug message.
20950 2005-07-07  Wim Taymans  <wim@fluendo.com>
20952         * gst/gstquery.c:
20953         * gst/gstquery.h:
20954         Remove old types
20956 2005-07-07  Wim Taymans  <wim@fluendo.com>
20958         * gst/base/gstbasesrc.c: (gst_base_src_get_range),
20959         (gst_base_src_default_negotiate), (gst_base_src_negotiate):
20960         Allow subclasses to implement their own negotiation.
20962 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
20964         * docs/design/part-gstbin.txt:
20965         * docs/design/part-gstpipeline.txt:
20966           Update design notes to reflect the movement of
20967           responsibility for bus handling from GstPipeline to
20968           GstBin
20970 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
20972         * configure.ac:
20973           Remove unnecessary queue2/3/4 examples.
20975 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
20977         * examples/Makefile.am:
20978         * examples/helloworld/helloworld.c: (event_loop), (main):
20979         * examples/queue/queue.c: (event_loop), (main):
20980         * examples/queue2/queue2.c: (main):
20981           Update a couple of the examples to work again.
20983         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
20984         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
20985          Spelling corrections and extra debug.
20986         
20987         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
20988         (gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
20989         (gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
20990         * gst/gstbin.h:
20991         * gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
20992         (gst_pipeline_change_state):
20993         * gst/gstpipeline.h:
20994           Move the bus handler for children to the GstBin, and create a
20995           separate bus for receiving messages from children to the one the
20996           bus sends 'upwards' on.
20998 2005-07-06  Wim Taymans  <wim@fluendo.com>
21000         * gst/base/README:
21001         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
21002         (gst_base_sink_handle_object), (gst_base_sink_loop),
21003         (gst_base_sink_change_state):
21004         * gst/base/gstbasesink.h:
21005         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
21006         (gst_base_src_init), (gst_base_src_setcaps),
21007         (gst_base_src_getcaps), (gst_base_src_loop),
21008         (gst_base_src_default_negotiate), (gst_base_src_negotiate),
21009         (gst_base_src_start), (gst_base_src_change_state):
21010         * gst/base/gstbasesrc.h:
21011         Make basesrc negotiate.
21012         Handle the case where preroll fails in basesink.
21013         Update README.
21015 2005-07-06  Wim Taymans  <wim@fluendo.com>
21017         * gst/gstpad.c: (gst_pad_fixate_caps), (gst_pad_accept_caps):
21018         Implement the fixate function.
21019         Clean up acceptcaps.
21021 2005-07-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21023         * docs/pwg/building-filterfactory.xml:
21024         * docs/pwg/pwg.xml:
21025           Remove never-written filter-factory chapter; I'll add the various
21026           base classes to part 4 ("other element types") later on.
21028 2005-07-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21030         * docs/pwg/advanced-negotiation.xml:
21031         * docs/pwg/building-boiler.xml:
21032         * docs/pwg/building-pads.xml:
21033         * docs/pwg/pwg.xml:
21034         * examples/pwg/Makefile.am:
21035           Add a chapter on caps negotiation, simplify the original code
21036           samples a bit w.r.t. caps negotiation, add link to the advanced
21037           section. Add a bunch of examples showing different use cases of
21038           different types of caps negotiation. Upstream renegotiation isn't
21039           fully documented yet since nobody knows how that works.
21041 2005-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
21043         * check/gst/gstpad.c:
21044         * check/gstcheck.c:
21045         * gst/gstpad.c: (gst_pad_get_internal_links_default):
21046           if pad has no parent, return NULL as list of internal links
21048 2005-07-05  Andy Wingo  <wingo@pobox.com>
21050         * gst/elements/gstfilesrc.c:
21051         * gst/elements/gstfakesrc.c: 
21052         * gst/base/gstpushsrc.c:
21053         * gst/base/gstbasesrc.h: 
21054         * gst/base/gstbasesrc.c: s/BASESRC/BASE_SRC/g.
21055         
21056 2005-07-05  Stefan Kost  <ensonic@users.sf.net>
21058         * Makefile.am:
21059           better report generation target (lcov needs a patch)
21061 2005-07-05  Andy Wingo  <wingo@pobox.com>
21063         * gst/elements, testsuite: Null if we got it...
21065 2005-07-05  Wim Taymans  <wim@fluendo.com>
21067         * configure.ac:
21068         * libs/gst/dataprotocol/Makefile.am:
21069         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_validate_packet):
21070         * libs/gst/dataprotocol/dataprotocol.h:
21071         * pkgconfig/Makefile.am:
21072         * pkgconfig/gstreamer-dataprotocol-uninstalled.pc.in:
21073         * pkgconfig/gstreamer-dataprotocol.pc.in:
21074         Ported dataprotol to 0.9. 
21075         Added pkgconfig files.
21077 2005-07-05  Andy Wingo  <wingo@pobox.com>
21079         * gst/base/gstbasetransform.c (gst_base_transform_setcaps):
21080         Default to returning TRUE for the case when tranform_caps returns
21081         a fixed caps, like for identity or volume.
21083         * check/gst/gstbus.c (pound_bus_with_messages): 
21084         * check/gst/gstmessage.c (START_TEST): 
21085         * check/pipelines/simple_launch_lines.c (got_handoff): Application
21086         message API change.
21088         * gst/base/gstbasetransform.c (gst_base_transform_setcaps): More
21089         logic weaks here: always run transform_caps, trying passthrough
21090         operation only if the original caps intersects with the transform.
21092         * gst/gstpad.c (gst_pad_link_check_compatible_unlocked): Debug
21093         source and sink caps.
21095         * gst/base/gstbasetransform.c (gst_base_transform_getcaps):
21096         Intersect the peer caps with the pad template before going into
21097         transform_caps.
21098         (gst_base_transform_transform_caps): More debugging.
21100         * gst/gstmessage.h (gst_message_new_application): Take a GstObject
21101         src argument.
21103 2005-07-04  Edward Hervey  <edward@fluendo.com>
21105         * gst/gstutils.c:
21106         * gst/gstutils.h:
21107         (gst_pad_add_*_probe): now returns the signal id for better wrapping
21108         in bindings.
21110 2005-07-04  Andy Wingo  <wingo@pobox.com>
21112         * check/gst/gstpad.c: Only set explicit caps on pads.
21114 2005-07-01  Andy Wingo  <wingo@pobox.com>
21116         * tests/network-clock.scm: Commentary update.
21118         * gst/elements/gstidentity.c (PROP_DUPLICATE): Gone daddy gone.
21119         Didn't really make sense, not implementable with basetransform,
21120         etc.
21121         (gst_identity_transform): Unref inbuf via make_writable. Feeble
21122         attempt at implementing the sync property, needs an unlock method.
21124         * gst/base/gstbasetransform.c (gst_base_transform_transform_caps):
21125         New func, by default returns the same caps (the identity
21126         transformation).
21127         (gst_base_transform_getcaps): Uses transform_caps to return
21128         something sensible.
21129         (gst_base_transform_setcaps): Complicated logic to get caps on
21130         both pads, even if they are different, and to call set_caps once
21131         for every time both pads get their caps set.
21132         (gst_base_transform_handle_buffer): Give the ref to the transform
21133         function. Allows in-place modification of the buffer.
21135         * gst/base/gstbasetransform.h (transform_caps): New class method.
21136         Given caps on one side, what can I do on the other.
21137         (set_caps): Take two caps, one for each side of the element.
21139         * gst/gstpad.h:
21140         * gst/gstpad.c (gst_pad_fixate_caps): Change prototype to modify
21141         caps in place. This is safe because we can check the mutability of
21142         the caps, and a good idea because fixate functions are just called
21143         as a matter of last resort. (Not actually implemented.)
21144         (gst_pad_set_caps): If the caps we're setting is actually the same
21145         as the existing pad caps, just update the pointer without calling
21146         setcaps. Assert that caps is either NULL or fixed, as per the
21147         docs.
21149         * gst/gstghostpad.c: Update for fixate changes.
21151 2005-07-02  Andy Wingo  <wingo@pobox.com>
21153         * gst/gstcaps.c:
21154         * gst/gstcaps.h (gst_static_caps_get): Not const return, having
21155         two refcounts makes it immutable, which is enough. Doc more.
21157 2005-07-02  Jan Schmidt  <thaytan@mad.scientist.com>
21159         * gst/gstpad.c: (gst_pad_emit_have_data_signal):
21160           Put the mini_object into GValue as a mini_object,
21161           not a gpointer, since that's how we declared
21162           the signal.
21164 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21166         * examples/pwg/Makefile.am:
21167           Fix buildbot again.
21169 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21171         * docs/pwg/building-testapp.xml:
21172           Add extra check.
21173         * examples/pwg/Makefile.am:
21174           Fix buildbot.
21176 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21178         * configure.ac:
21179         * examples/Makefile.am:
21180         * examples/pwg/Makefile.am:
21181         * examples/pwg/extract.pl:
21182           Enable building the PWG examples.
21183         * docs/pwg/advanced-interfaces.xml:
21184           Add URI interface stub.
21185         * docs/pwg/advanced-types.xml:
21186         * docs/pwg/other-autoplugger.xml:
21187         * docs/pwg/appendix-porting.xml:
21188         * docs/pwg/pwg.xml:
21189           Add porting guide (mostly stubs), remove autoplugging (see ADM).
21190         * docs/pwg/building-boiler.xml:
21191         * docs/pwg/building-chainfn.xml:
21192         * docs/pwg/building-pads.xml:
21193         * docs/pwg/building-props.xml:
21194         * docs/pwg/building-state.xml:
21195         * docs/pwg/building-testapp.xml:
21196           Update the building-*.xml parts for 0.9 changes. All examples
21197           code blocks compile in examples/pwg/*.
21199 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21201         * docs/manual/advanced-autoplugging.xml:
21202         * docs/manual/appendix-checklist.xml:
21203         * docs/manual/appendix-integration.xml:
21204         * docs/manual/highlevel-components.xml:
21205           Fix playbin/decodebin examples, update docs a bit, mention bus
21206           instead of signals in various places, mention kmplayer and
21207           kaffeine since they have a working GStreamer backend in the KDE
21208           section.
21210 2005-06-30  Wim Taymans  <wim@fluendo.com>
21212         * CHANGES-0.9:
21213         * docs/design/draft-ghostpads.txt:
21214         * docs/design/draft-push-pull.txt:
21215         * docs/design/draft-query.txt:
21216         * docs/design/part-TODO.txt:
21217         * docs/design/part-query.txt:
21218         Added CHANGES-0.9 doc, updated status of other docs.
21219         
21220         * gst/gstquery.h:
21221         Remove "hmm" macro
21223 2005-06-30  Wim Taymans  <wim@fluendo.com>
21225         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
21226         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_object),
21227         (gst_base_sink_change_state):
21228         * gst/base/gstbasesink.h:
21229         Some tweaks, only EOS and a buffer complete a preroll.
21231 2005-06-30  Andy Wingo  <wingo@pobox.com>
21233         * gst/gstghostpad.c (gst_ghost_pad_do_activate_push): Proxy
21234         activate_push down to the internal pad as well.
21236 2005-06-30  Torsten Schoenfeld  <kaffeetisch@gmx.de>
21238         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21240         * gst/gsttaginterface.c:
21241           Some documentation fixes (#307394 and #307397).
21243 2005-06-30  Antoine Tremblay  <hexa00@gmail.com>
21245         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21247         * gst/gstvalue.c: (gst_value_intersect_list):
21248           Fix memleak (#309125).
21250 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21252         * docs/manual/advanced-dataaccess.xml:
21253           Fix fakesrc example to compile; doesn't work, bug somewhere...?
21254         * docs/manual/basics-pads.xml:
21255           Add reference for filtered caps to above chapter.
21257 2005-06-30  Wim Taymans  <wim@fluendo.com>
21259         * gst/gstbin.c: (clear_queue), (remove_all_from_queue),
21260         (gst_bin_change_state):
21261         Probes are gone.
21262         Lame attempt at making the state change function a bit
21263         more readable.
21265 2005-06-30  Wim Taymans  <wim@fluendo.com>
21267         * docs/design/part-clocks.txt:
21268         * docs/design/part-element-sink.txt:
21269         * docs/design/part-events.txt:
21270         * docs/design/part-preroll.txt:
21271         * docs/design/part-states.txt:
21272         Some more tweeks and additions to the docs.
21274 2005-06-30  Wim Taymans  <wim@fluendo.com>
21276         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
21277         (default_have_data), (gst_pad_class_init), (gst_pad_init),
21278         (gst_pad_emit_have_data_signal), (gst_pad_chain), (gst_pad_push),
21279         (gst_pad_check_pull_range), (gst_pad_get_range),
21280         (gst_pad_pull_range), (gst_pad_push_event), (gst_pad_send_event):
21281         * gst/gstpad.h:
21282         * gst/gstutils.c: (gst_atomic_int_set), (gst_pad_add_data_probe),
21283         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
21284         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
21285         (gst_pad_remove_buffer_probe):
21286         Removed atomic operations, use existing LOCK.
21287         Move exception handling out of main code path.
21289 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21291         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
21292         (silly_return_true_function), (gst_pad_class_init),
21293         (gst_pad_emit_have_data_signal), (gst_pad_chain), (gst_pad_push),
21294         (gst_pad_get_range), (gst_pad_pull_range), (gst_pad_push_event),
21295         (gst_pad_send_event):
21296           Fix accumulator, add default value by using _emitv() instead
21297           of _emit() for signal emission.
21299 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21301         * docs/manual/advanced-dataaccess.xml:
21302         * examples/manual/Makefile.am:
21303           Add probe example.
21304         * gst/gstpad.c: (_gst_do_pass_data_accumulator):
21305           Make work (??).
21307 2005-06-29  Tim-Philipp Müller  <tim at centricular dot net>
21309         * gst/elements/gstfilesink.c: (gst_filesink_render):
21310           Simplify code so that we don't have to handle short
21311           writes and return GST_FLOW_ERROR if an error occured.
21313 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21315         * docs/gst/gstreamer-docs.sgml:
21316           Remove probes more.
21318 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21320         * docs/gst/gstreamer-sections.txt:
21321         * docs/gst/tmpl/gstpad.sgml:
21322         * docs/gst/tmpl/gstprobe.sgml:
21323         * gst/Makefile.am:
21324         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
21325         (gst_pad_class_init), (gst_pad_init), (gst_pad_chain),
21326         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
21327         (gst_pad_push_event), (gst_pad_send_event):
21328         * gst/gstpad.h:
21329         * gst/gstutils.c: (gst_pad_add_data_probe),
21330         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
21331         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
21332         (gst_pad_remove_buffer_probe):
21333         * gst/gstutils.h:
21334           Remove old probes, add new g-signal-based probes and some utility
21335           functions.
21337 2005-06-29  Edward Hervey  <edward@fluendo.com>
21339         * gst/gstelementfactory.c:
21340         * gst/gstutils.h:
21341         * gst/gstutils.c:
21342         Moved gst_element_factory_can_[sink|src]_caps() to gstutils and added
21343         the definition to the header file.
21345 2005-06-29  Andy Wingo  <wingo@pobox.com>
21347         * docs/gst/Makefile.am (scan-build.stamp): Totally only check
21348         plugins from the source directory.
21350 2005-06-29  Wim Taymans  <wim@fluendo.com>
21352         * docs/gst/tmpl/gstbuffer.sgml:
21353         * docs/gst/tmpl/gstclock.sgml:
21354         Some fixings for blantently wrong text.
21356 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
21358         * check/Makefile.am:
21359         * gst/gst.c: (add_path_func), (init_pre):
21360         * gst/gstregistry.c: (gst_registry_add_path):
21361           add A GST_PLUGIN_PATH_ONLY env var; if it is set, it will
21362           only scan the GST_PLUGIN_PATH locations, and not add
21363           system locations
21365 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
21367         * docs/gst/gstreamer-sections.txt:
21368         * docs/gst/tmpl/gstbasesrc.sgml:
21369         * gst/gstelement.c:
21370         * gst/gstelement.h:
21371         * gst/gstevent.c:
21372         * gst/gstutils.c:
21373           doc fixes
21375 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21377         * docs/manual/advanced-autoplugging.xml:
21378           Fix autoplugging example.
21380 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21382         * docs/manual/advanced-autoplugging.xml:
21383         * docs/manual/mime-world.fig:
21384           Try to get autoplugging working, fix type detection. Fix text
21385           in hello-world image.
21387 2005-06-29  Wim Taymans  <wim@fluendo.com>
21389         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
21390         (gst_base_sink_change_state):
21391         Small debug line.
21393         * gst/gstclock.h:
21394         map SIGNAL and BROADCAST to the right function.
21396         * gst/gstobject.h:
21397         Remove redundant braces.
21399         * gst/gstpad.c: (gst_pad_set_caps):
21400         Don't call setcaps function when reseting caps to NULL.
21402         * gst/gstsystemclock.c: (gst_system_clock_dispose),
21403         (gst_system_clock_async_thread), (gst_system_clock_id_wait_async),
21404         (gst_system_clock_id_unschedule):
21405         Use BROADCAST as this is what we do.
21407 2005-06-29  Wim Taymans  <wim@fluendo.com>
21409         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
21410         We are actually prerolling before commiting the state
21411         change. 
21413 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
21415         * docs/manual/advanced-clocks.xml:
21416         * docs/manual/advanced-interfaces.xml:
21417         * docs/manual/advanced-metadata.xml:
21418         * docs/manual/advanced-position.xml:
21419         * docs/manual/advanced-schedulers.xml:
21420         * docs/manual/advanced-threads.xml:
21421         * docs/manual/appendix-porting.xml:
21422         * docs/manual/basics-bins.xml:
21423         * docs/manual/basics-bus.xml:
21424         * docs/manual/basics-elements.xml:
21425         * docs/manual/basics-helloworld.xml:
21426         * docs/manual/basics-pads.xml:
21427         * docs/manual/highlevel-components.xml:
21428         * docs/manual/manual.xml:
21429         * docs/manual/thread.fig:
21430           Update (until threads/scheduling) Application Development Manual;
21431           remove GstThread, add GstBus, add simple porting checklist, add
21432           documentation for tag writing, clocks, make all examples until this
21433           part compile and run.
21434         * examples/manual/Makefile.am:
21435           Update from changes to Application Development Manual; add bus
21436           example, remove thread example.
21438 2005-06-28  Wim Taymans  <wim@fluendo.com>
21440         * gst/gstbus.c: (gst_bus_post), (gst_bus_have_pending),
21441         (gst_bus_set_flushing), (gst_bus_pop), (gst_bus_peek),
21442         (gst_bus_source_dispatch):
21443         Add debugging messages.
21444         Make internal methods static.
21445         Handle the case where the bus is flushed in the handler.
21446         
21447         * gst/gstelement.c: (gst_element_get_bus):
21448         Fix refcount in _get_bus();
21450         * gst/gstpipeline.c: (gst_pipeline_change_state),
21451         (gst_pipeline_get_clock_func):
21452         Clock refcounting fixes.
21453         Handle the case where preroll timed out more gracefully.
21454         
21455         * gst/gstsystemclock.c: (gst_system_clock_dispose):
21456         Clean up the internal thread in dispose. This is needed
21457         for subclasses that actually get disposed.
21458         
21459         * gst/schedulers/threadscheduler.c:
21460         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
21461         (gst_thread_scheduler_dispose):
21462         Free thread pool in dispose.
21464 2005-06-28  Andy Wingo  <wingo@pobox.com>
21466         * tests/network-clock-utils.scm (debug, print-event): New utils.
21468         * tests/network-clock.scm (*debug*, *with-graph*): New parameters.
21469         (*packet-loss*): Unified loss probability.
21470         (network-time): Report out-of-band events.
21472         * tests/plot-data: Add support for out-of-band events. Hack it
21473         into this script instead of passing it down the pipe; should fix
21474         this later.
21476 2005-06-28  Wim Taymans  <wim@fluendo.com>
21478         * docs/gst/gstreamer.types:
21479         * docs/gst/tmpl/gstbasesrc.sgml:
21480         * docs/gst/tmpl/gstpad.sgml:
21481         Docs fixes.
21483 2005-06-28  Wim Taymans  <wim@fluendo.com>
21485         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
21486         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_acceptcaps),
21487         (gst_proxy_pad_do_fixatecaps):
21488         Correctly proxy the check_pull_range function.
21490 2005-06-28  Andy Wingo  <wingo@pobox.com>
21492         * tests/network-clock.scm: Removed need for slib.
21493         
21494 2005-06-28  Wim Taymans  <wim@fluendo.com>
21496         * gst/base/gstbasesink.c: (gst_basesink_set_pad_functions),
21497         (gst_basesink_preroll_queue_flush):
21498         * gst/base/gstbasesrc.c: (gst_basesrc_set_dataflow_funcs):
21499         * gst/elements/gsttee.c: (gst_tee_update_pad_functions):
21500         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
21501         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
21502         (gst_proxy_pad_set_property):
21503         * gst/gstpad.c:
21504         * gst/gstpad.h:
21505         * gst/gstqueue.c: (gst_queue_init):
21506         The deprecated pad loop function is removed now.
21508 2005-06-28  Andy Wingo  <wingo@pobox.com>
21510         * tests/network-clock.scm (*timeout*, *send-loss*, *recv-loss*):
21511         New parameters, simulate network packet loss.
21513         * tests/network-clock-utils.scm: Initialize the RNG.
21515 2005-06-28  Wim Taymans  <wim@fluendo.com>
21517         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_flush),
21518         (gst_basesink_event), (gst_basesink_deactivate):
21519         Flushing the preroll queue always needs to unlock the waiters.
21521 2005-06-28  Edward Hervey  <edward@fluendo.com>
21523         * gst/gstpipeline.c: (gst_pipeline_send_event): 
21524         Wheen a seek was successful on a pipeline, set the stream_time to the
21525         seek offset in order to have a synchronized stream_time.
21527 2005-06-28  Wim Taymans  <wim@fluendo.com>
21529         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
21530         (gst_proxy_pad_do_getrange), (gst_proxy_pad_do_checkgetrange),
21531         (gst_proxy_pad_do_getcaps), (gst_proxy_pad_do_acceptcaps),
21532         (gst_proxy_pad_do_fixatecaps):
21533         Call wrapper function instead of just calling the function
21534         pointers. This takes care of any locking and whatmore.
21536 2005-06-28  Wim Taymans  <wim@fluendo.com>
21538         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push),
21539         (gst_pad_pull_range):
21540         * gst/gstpad.h:
21541         CONNECTED -> LINKED.
21543 2005-06-28  Andy Wingo  <wingo@pobox.com>
21545         * *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large
21546         source-munging commit!!!
21548         * gst/gstobject.c (gst_object_unref, gst_object_ref) 
21549         (gst_object_sink): Take gpointer arguments, not GstObject --
21550         avoids casts. Like GLib.
21552         * gst/gstghostpad.c (gst_proxy_pad_do_activate): Don't proxy
21553         activate.
21555 2005-06-27  Andy Wingo  <wingo@pobox.com>
21557         * gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any
21558         remaining buffer.
21560         * gst/gsttrace.c (gst_alloc_trace_list_sorted): New helper,
21561         returns a sorted copy of the trace list.
21562         (gst_alloc_trace_print_live): New API, only prints traces with
21563         live objects. Sort the list.
21564         (gst_alloc_trace_print_all): Sort the list.
21565         (gst_alloc_trace_print): Align columns.
21567         * gst/elements/gstttypefindelement.c:
21568         * gst/elements/gsttee.c:
21569         * gst/base/gstbasesrc.c:
21570         * gst/base/gstbasesink.c:
21571         * gst/base/gstbasetransform.c:
21572         * gst/gstqueue.c: Adapt for pad activation changes.
21574         * gst/gstpipeline.c (gst_pipeline_init): Unref after parenting
21575         sched.
21576         (gst_pipeline_dispose): Drop ref on sched.
21578         * gst/gstpad.c (gst_pad_init): Set the default activate func.
21579         (gst_pad_activate_default): Push mode by default.
21580         (pre_activate_switch, post_activate_switch): New stubs, things to
21581         do before and after switching activation modes on pads.
21582         (gst_pad_set_active): Take a boolean and not a mode, dispatch to
21583         the pad's activate function to choose which mode to activate.
21584         Shortcut on deactivation and call the right function directly.
21585         (gst_pad_activate_pull): New API, (de)activates a pad in pull
21586         mode.
21587         (gst_pad_activate_push): New API, same for push mode.
21588         (gst_pad_set_activate_function) 
21589         (gst_pad_set_activatepull_function) 
21590         (gst_pad_set_activatepush_function): Setters for new API.
21592         * gst/gstminiobject.c (gst_mini_object_new, gst_mini_object_free):
21593         Trace all miniobjects.
21594         (gst_mini_object_make_writable): Unref the arg if we copy, like
21595         gst_caps_make_writable.
21597         * gst/gstmessage.c (_gst_message_initialize): No trace init.
21599         * gst/gstghostpad.c (gst_proxy_pad_do_activate) 
21600         (gst_proxy_pad_do_activatepull, gst_proxy_pad_do_activatepush):
21601         Adapt for new pad API.
21603         * gst/gstevent.c (_gst_event_initialize): Don't initialize trace.
21605         * gst/gstelement.h:
21606         * gst/gstelement.c (gst_element_iterate_src_pads) 
21607         (gst_element_iterate_sink_pads): New API functions.
21608         
21609         * gst/gstelement.c (iterator_fold_with_resync): New utility,
21610         should fold into gstiterator.c in some form.
21611         (gst_element_pads_activate): Simplified via use of fold and
21612         delegation of decisions to gstpad->activate.
21614         * gst/gstbus.c (gst_bus_source_finalize): Set the bus to NULL,
21615         help in debugging.
21617         * gst/gstbuffer.c (_gst_buffer_initialize): Ref the buffer type
21618         class once in init, like gstmessage. Didn't run into this issue
21619         but it seems correct. Don't initialize a trace, gstminiobject does
21620         that.
21622         * check/pipelines/simple_launch_lines.c (test_stop_from_app): New
21623         test, runs fakesrc ! fakesink, stopping on ::handoff via a message
21624         to the bus.
21625         (assert_live_count): New util function, uses alloc traces to check
21626         cleanup.
21628         * check/gst/gstghostpad.c (test_ghost_pads): More refcount checks.
21629         To be modified when unlink drops the internal pad.
21631 2005-06-27  Wim Taymans  <wim@fluendo.com>
21633         * gst/gstbin.c: (gst_bin_get_state), (gst_bin_iterate_state_order),
21634         (gst_bin_change_state):
21635         Cleanup the get_state() function a little, make sure it
21636         iterates the same set of elements.
21637         Added stub iterate_state_order().
21639 2005-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
21641         * docs/gst/gstreamer-docs.sgml:
21642         * docs/gst/gstreamer-sections.txt:
21643         * docs/gst/gstreamer.types:
21644         * docs/gst/tmpl/gstbasesink.sgml:
21645         * docs/gst/tmpl/gstbasesrc.sgml:
21646         * docs/gst/tmpl/gstbasetransform.sgml:
21647         * docs/gst/tmpl/gstelement.sgml:
21648         * docs/gst/tmpl/gstiterator.sgml:
21649         * gst/base/gstbasesrc.c:
21650         * gst/base/gstbasesrc.h:
21651         * gst/base/gstbasetransform.h:
21652         * gst/gstelement.c:
21653         * gst/gstiterator.h:
21654           adding basetransform and iterator docs
21656 2005-06-27  Andy Wingo  <wingo@pobox.com>
21658         * docs/design/part-activation.txt: Notes on how activation should
21659         work -- not quite implemented yet.
21661 2005-06-25  Wim Taymans  <wim@fluendo.com>
21663         * gst/gstghostpad.c: (gst_proxy_pad_do_chain):
21664         At least get the chain function correct, needs more
21665         fixing.
21667 2005-06-25  Wim Taymans  <wim@fluendo.com>
21669         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
21670         (gst_basesink_handle_object), (gst_basesink_event),
21671         (gst_basesink_do_sync), (gst_basesink_handle_event),
21672         (gst_basesink_change_state):
21673         * gst/gsttask.h:
21674         Right, two problems here: ghostpads don't take locks and
21675         glib _rec_mutex_lock_full() with depth==0 still locks.
21676         Catch illegal locking and g_warn them.
21678 2005-06-25  Wim Taymans  <wim@fluendo.com>
21680         * check/states/sinks.c: (START_TEST), (gst_object_suite):
21681         Have to check for completion now...
21683 2005-06-25  Wim Taymans  <wim@fluendo.com>
21685         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
21686         (gst_basesink_handle_object), (gst_basesink_event),
21687         (gst_basesink_do_sync), (gst_basesink_handle_event),
21688         (gst_basesink_change_state):
21689         * gst/gstpad.h:
21690         Unlock STREAM_LOCK whatever the recursion was.
21692 2005-06-25  Wim Taymans  <wim@fluendo.com>
21694         * gst/base/gstbasesink.c: (gst_basesink_set_property),
21695         (gst_basesink_preroll_queue_empty),
21696         (gst_basesink_preroll_queue_flush), (gst_basesink_handle_object),
21697         (gst_basesink_event), (gst_basesink_do_sync),
21698         (gst_basesink_handle_event), (gst_basesink_handle_buffer),
21699         (gst_basesink_chain), (gst_basesink_loop), (gst_basesink_activate),
21700         (gst_basesink_change_state):
21701         Reworked the base sink, handle event and buffer serialisation
21702         correctly and removed possible deadlock.
21703         Handle EOS correctly.
21705 2005-06-25  Wim Taymans  <wim@fluendo.com>
21707         * gst/gstpipeline.c: (is_eos), (pipeline_bus_handler),
21708         (gst_pipeline_change_state):
21709         * tools/gst-launch.c: (check_intr), (event_loop), (main):
21710         Allow elements to post EOS in the state change function.
21711         Fix up -launch, make it exit the poll loop when the
21712         pipeline actually changed state.
21713         Fix up warning parsing in -launch.
21715 2005-06-25  Wim Taymans  <wim@fluendo.com>
21717         * gst/elements/gsttee.c: (gst_tee_chain), (gst_tee_loop),
21718         (gst_tee_sink_activate):
21719         Core takes STREAM_LOCK for us now.
21721 2005-06-25  Wim Taymans  <wim@fluendo.com>
21723         * gst/gstelement.c: (gst_element_get_state_func),
21724         (gst_element_set_state):
21725         * gst/gstelement.h:
21726         * gst/gstmessage.c: (gst_message_parse_error),
21727         (gst_message_parse_warning):
21728         Keep track of current target state while performing a state
21729         change so that subclasses can do something interesting.
21730         Fix parsing of warning/error messages when GError is NULL.
21732 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21734         * docs/gst/Makefile.am:
21735         * docs/gst/gstreamer-docs.sgml:
21736         * docs/gst/gstreamer-sections.txt:
21737         * docs/gst/gstreamer.types:
21738         * docs/gst/tmpl/gstbasesink.sgml:
21739         * docs/gst/tmpl/gstbasesrc.sgml:
21740         * docs/gst/tmpl/gstbin.sgml:
21741         * docs/gst/tmpl/gstcompat.sgml:
21742         * docs/gst/tmpl/gstfakesink.sgml:
21743         * docs/gst/tmpl/gstfakesrc.sgml:
21744         * docs/gst/tmpl/gstfilesink.sgml:
21745         * docs/gst/tmpl/gstfilesrc.sgml:
21746         * docs/gst/tmpl/gstindex.sgml:
21747         * docs/manual/appendix-quotes.xml:
21748         * gst/base/gstbasesrc.h:
21749         * gst/elements/gstfakesrc.h:
21750         * gst/gstmessage.h:
21751           start pulling in base classes and elements in our docs
21753 2005-06-24  Stefan Kost  <ensonic@users.sf.net>
21755         * docs/gst/Makefile.am:
21756         * docs/libs/Makefile.am:
21757           fixed make distcheck with gtk-doc 1.3
21759 2005-06-23  Wim Taymans  <wim@fluendo.com>
21761         * gst/gstelement.c: (gst_element_get_state_func),
21762         (gst_element_set_state), (gst_element_change_state):
21763         When the state did not change, also report NO_PREROLL
21764         when it matters.
21766 2005-06-23  Wim Taymans  <wim@fluendo.com>
21768         * gst/gstpad.c: (gst_pad_event_default):
21769         * gst/gstqueue.c: (gst_queue_loop):
21770         No unsafe task pausing please.
21772 2005-06-23  Wim Taymans  <wim@fluendo.com>
21774         * gst/schedulers/threadscheduler.c:
21775         (gst_thread_scheduler_task_start),
21776         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_func):
21777         Ref the task before pushing it on the threadpool. This
21778         makes sure that we have a ref when the threadfunction is
21779         actually called.
21781 2005-06-23  Andy Wingo  <wingo@pobox.com>
21783         * gst/base/gstbasesrc.c (gst_basesrc_get_range): Check if the
21784         offset is greater than the file's size.
21786         * gst/gstobject.h (GST_CLASS_LOCK, GST_CLASS_TRYLOCK) 
21787         (GST_CLASS_UNLOCK, GST_CLASS_GET_LOCK, GstObjectClass)
21788         * gst/gstobject.c (gst_object_class_init): Make the class lock
21789         recursive. Wim won't let me drop deep_notify. Decodebin works
21790         again, whoopdy doo.
21792         * gst/gstghostpad.c (on_int_notify): Catches notify::caps on the
21793         internal pad, and hacks accordingly. Doesn't do it on the target
21794         pad because we change its caps. Probably catches all cases of
21795         interest tho.
21796         (gst_ghost_pad_set_property): Connect to notify::caps as
21797         appropritate.
21799         * tests/network-clock.scm (plot-simulation): Pipe data to the
21800         elite python skript.
21802         * tests/network-clock-utils.scm (define-parameter): New macro,
21803         defines a parameter that can be set via the command line.
21804         (set-parameter!, parse-parameter-arguments): Command line args
21805         parser.
21807         * tests/plot-data: Simple matplotlib-based plotter, takes input on
21808         stdin.
21810 2005-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
21812         * gst/elements/gsttypefindelement.c:
21813         (gst_type_find_element_handle_event):
21814           Don't restart typefinding on a discont.
21815         * gst/gstelement.c: (gst_element_set_state):
21816           Debug spelling fix.
21817         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_send_event):
21818           Allow changing mode of an active pad.
21819           Debug output fixes.
21820         * gst/registries/gstlibxmlregistry.c: (load_feature):
21821           Don't cast a static pad template to a normal pad template.
21823 2005-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21825         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
21826         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
21827           remove gst_strtoll completely, since it didn't actually do
21828           anything more than what g_ascii_strtoull already does.
21829           check for range errors when deserializing
21830           do a cast for the unsigned cases; but further fixing needs
21831           a decision on what the interpretation of "(int)" and
21832           deserialization should be for values that fall outside the
21833           type's boundaries (ie, refuse, or interpret as casting)
21835 2005-06-23  Wim Taymans  <wim@fluendo.com>
21837         * check/Makefile.am:
21838         * check/states/sinks.c: (START_TEST), (gst_object_suite), (main):
21839         * docs/design/part-live-source.txt:
21840         * docs/design/part-states.txt:
21841         * gst/base/gstbasesrc.c: (gst_basesrc_init),
21842         (gst_basesrc_set_live), (gst_basesrc_is_live),
21843         (gst_basesrc_get_range), (gst_basesrc_activate),
21844         (gst_basesrc_change_state):
21845         * gst/base/gstbasesrc.h:
21846         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
21847         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
21848         * gst/gstbin.c: (gst_bin_get_state), (gst_bin_change_state):
21849         * gst/gstelement.c: (gst_element_get_state_func),
21850         (gst_element_set_state):
21851         * gst/gstelement.h:
21852         * gst/gsttypes.h:
21853         * tools/gst-launch.c: (event_loop), (main):
21854         Added support for live sources and other elements that
21855         cannot do preroll.
21856         Updated design docs, added live-source design doc.
21857         Implemented live source functionality in basesrc
21858         Fix error condition in _bin_get_state()
21859         Implement live source handling in -launch.
21860         Added check for live sources.
21861         Fixed case in GstBin where elements were changed state
21862         multiple times.
21865 2005-06-23  Andy Wingo  <wingo@pobox.com>
21867         * check/gst/gstpad.c (test_get_allowed_caps, test_refcount): Fix
21868         borken refcounting.
21870         * gst/gstpad.c (gst_pad_set_caps): Remove needless refs,
21871         gst_caps_replace takes care of this for us.
21873         * gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full
21874         gst_pad_set_caps on the target, not just its setcaps() function.
21876         * tests/network-clock.scm: 
21877         * tests/network-clock-utils.scm: A network clock simulator.
21878         Something of an algorithmic testbed before doing something in C.
21880 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
21882         * check/Makefile.am:
21883         * check/gst/capslist.h:
21884           copy over from 0.8, and add two with bitmasks specified with
21885           (int) 0xFF...
21886         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
21887           add test to parse everything from capslist.h
21888         * check/gst/gststructure.c: (START_TEST), (gst_value_suite),
21889         (main):
21890           add test for structure deserialization
21891         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
21892           add tests for deserialization of strings to int types
21893         * gst/gststructure.c: (gst_structure_nth_field_name):
21894         * gst/gststructure.h:
21895           add a way to get the name of a field referenced by index
21896         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
21897           instead of checking if the resulting long long lies between
21898           min and max, we check if the long long would fit into
21899           a number of bytes for the final type.
21900           This fixes cases where a string represents 2^32 - 1, which
21901           when cast to int would be the (valid) -1, but is bigger than
21902           G_MAXINT
21904 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
21906         * gst/parse/grammar.y:
21907           add a log line for type deserialization
21909 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
21911         * check/gst/gstvalue.c: (START_TEST):
21912         * gst/gstvalue.c: (gst_value_deserialize):
21913           return long long, not int, so gint64 deserialization actually
21914           works.  Is there any flag that makes the compiler check this ?
21915           Fixes #308559
21917 2005-06-22  Wim Taymans  <wim@fluendo.com>
21919         * gst/gstbuffer.h:
21920         Added convenience macros for setting buffers in GValue.
21922 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
21924         * check/gst/.cvsignore:
21925         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
21926           add a test deserializing int64, and comment part out because
21927           it fails, yay !
21929 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
21931         * check/Makefile.am:
21932         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite), (main):
21933         * testsuite/Makefile.am:
21934         * testsuite/caps/Makefile.am:
21935         * testsuite/caps/value_serialize.c:
21936         * testsuite/test_gst_init.c:
21937           move a value_serialize test over
21939 2005-06-20  Wim Taymans  <wim@fluendo.com>
21941         * gst/gstpad.c:
21942         Small doc updates.
21943         
21944         * gst/gstvalue.c: (gst_value_compare_buffer),
21945         (gst_value_serialize_buffer), (gst_value_deserialize_buffer),
21946         (gst_value_compare_flags), (gst_value_serialize_flags),
21947         (gst_value_deserialize_flags), (_gst_value_initialize):
21948         Fix serialisation of buffers, they are not boxed types anymore
21950 2005-06-20  Wim Taymans  <wim@fluendo.com>
21952         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
21953         Testcase to show error in buffer-on-caps serialisation.
21955 2005-06-20  Andy Wingo  <wingo@pobox.com>
21957         * docs/random/wingo/porting-plugins-to-0.9: A pitiful document I
21958         will be adding to later.
21960         * gst/gstsystemclock.c (gst_system_clock_init): Unlock the clock
21961         if its socks fill with rocks.
21962         (gst_system_clock_obtain): Set the name on object construction.
21963         Avoid double-checked locking.
21965 2005-06-20  Tim-Philipp Müller  <tim at centricular dot net>
21967         * gst/gsturi.c: (gst_element_make_from_uri):
21968           Fix potential endless loop.
21970 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21972         * check/Makefile.am:
21973           add gsttag
21974         * check/gst/gsttag.c: (check_tags), (START_TEST), (gst_tag_suite),
21975         (main):
21976           move over from testsuite dir and clean up
21977         * configure.ac:
21978         * gst/gsttag.c:
21979         * testsuite/Makefile.am:
21980         * testsuite/tags/.cvsignore:
21981         * testsuite/tags/Makefile.am:
21982         * testsuite/tags/merge.c:
21983           remove testsuite/tags
21985 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21987         * docs/gst/gstreamer-sections.txt:
21988         * docs/gst/tmpl/gstenumtypes.sgml:
21989         * win32/gstenumtypes.c:
21990           clean up documentation build a little
21992 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21994         * check/gstcheck.h:
21995           add macros for checking refcounts on objects and caps
21996         * check/gst/gstpad.c: (START_TEST), (gst_pad_suite):
21997           add some more unit tests
21998         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
21999         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_allowed_caps):
22000           fix leaked refcounts (I hope :)) so unittest works
22001         * gst/gstpad.h:
22002           whitespace removal
22004 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
22006         * configure.ac: back to HEAD
22008 === release 0.9.1 ===
22010 2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22012         * NEWS:
22013         * RELEASE:
22014           updated
22016 2005-06-17  Andy Wingo  <wingo@pobox.com>
22018         * gst/base/gstbasesink.c (gst_basesink_chain): Remove bogus
22019         assert; it's always possible that the pad gets deactivated in
22020         between the checks in gstpad.c and the implementation. Rely on
22021         finish_preroll() to return a FLUSHING or similar instead of on the
22022         assert.
22023         
22024         * gst/base/gstbasesink.c (gst_basesink_event): Only wait for the
22025         clock and post an EOS message if we come out of finish_preroll in
22026         the playing state.
22028 2005-06-16  David Schleef  <ds@schleef.org>
22030         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
22031         (gst_capsfilter_set_property): Allow NULL as possible value
22032         for filter_caps property, indicating GST_CAPS_ANY.
22034 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22036         * gst/elements/gstfakesrc.c: (gst_fakesrc_create):
22037           fix debug output
22038         * gst/schedulers/Makefile.am:
22039           use libgst prefix
22040         * gstreamer.spec.in:
22041           fix spec for it
22043 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22045         * gstreamer.spec.in:
22046           clean up
22048 2005-06-08  Andy Wingo  <wingo@pobox.com>
22050         * gst/gstutils.c: RPAD fixes all around.
22051         (gst_element_link_pads): Refcounting fixes.
22053         * tools/gst-inspect.c:
22054         * tools/gst-xmlinspect.c:
22055         * parse/grammar.y:
22056         * gst/base/gsttypefindhelper.c:
22057         * gst/base/gstbasesink.c:
22058         * gst/gstqueue.c: RPAD fixes.
22060         * gst/gstghostpad.h:
22061         * gst/gstghostpad.c: New ghost pad implementation as full proxy
22062         pads. The tricky thing is they provide both source and sink
22063         interfaces, since they proxy the internal pad for the external
22064         pad, and vice versa. Implement with lower-level ProxyPad objects,
22065         with the interior proxy pad as a child of the exterior ghost pad.
22066         Should write a doc on this.
22067         
22068         * gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
22069         (gst_pad_set_name, gst_pad_set_parent): Macros removed, use
22070         gst_object API.
22071         
22072         * gst/gstpad.c: Big changes. No more stub base GstPad, now all
22073         pads are real pads. No ghost pads in this file. Not documenting
22074         the myriad s/RPAD/PAD/ and REALIZE fixes.
22075         (gst_pad_class_init): Add properties for "direction" and
22076         "template". Both are construct-only, so they can't change during
22077         the life of the pad. Fixes properly deriving from GstPad.
22078         (gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
22079         derived objects, just set properties when creating the objects via
22080         g_object_new.
22081         (gst_pad_get_parent): Implement as a function, return NULL if the
22082         parent is not an element.
22083         (gst_pad_get_real_parent, gst_pad_add_ghost_pad)
22084         (gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
22085         
22086         * gst/gstobject.c (gst_object_class_init): Make name a construct
22087         property. Don't set it in the object init.
22089         * gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
22090         with UNKNOWN direction.
22091         (gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
22092         with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
22093         (gst_element_remove_pad): Remove ghost-pad special cases.
22094         (gst_element_pads_activate): Remove rpad cruft.
22096         * gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
22097         catch the pad's-parent-not-an-element case.
22099         * gst/gst.h: Include gstghostpad.h.
22101         * gst/gst.c (init_post): No more real, ghost pads.
22103         * gst/Makefile.am: Add gstghostpad.[ch].
22105         * check/Makefile.am:
22106         * check/gst/gstbin.c:
22107         * check/gst/gstghostpad.c (test_ghost_pads): Check that linking
22108         into a bin creates ghost pads, and that the refcounts are right.
22109         Partly moved from gstbin.c.
22111 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22113         * check/gst-libs/.cvsignore:
22114         * check/gst/.cvsignore:
22115         * check/pipelines/.cvsignore:
22116           ignore more
22117         * check/pipelines/cleanup.c: (setup_pipeline), (run_pipeline),
22118         (START_TEST), (cleanup_suite), (main):
22119           add some tests related to cleanup after running pipelines
22121 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22123         * check/gst/gstbuffer.c: (START_TEST), (gst_test_suite), (main):
22124           add a testsuite for GstBuffer
22126 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22128         * gst/gstminiobject.h:
22129           add defines for accessing the refcount
22131 2005-06-03  Stefan Kost  <ensonic@users.sf.net>
22133         * Makefile.am: added support for html unit test coverage reports
22135 2005-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
22137         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
22138           Free existing caps if the capsfilter changes. Add a FIXME about
22139           setting those caps on the pads.
22141         * gst/gstutils.c: (gst_element_get_compatible_pad), (ghost_up):
22142           Before adding a ghost pad to a parent bin, check that there isn't
22143           already one for the element on the bin. Prevents infinite recursion
22144           when using decodebin in parse pipelines. Andy says he'll rewrite the
22145           way this works anyway, so ignore the hack.
22147 2005-06-02  Andy Wingo  <wingo@pobox.com>
22149         * gst/elements/gsttypefindelement.c (do_pull_typefind): Query the
22150         file size, pass it on to the type find helper.
22152         * gst/base/gstbasesrc.c (gst_basesrc_do_seek): Set the
22153         segment_start and segment_end properly according to the seek
22154         method. Segment_end is still a bit flaky because offset can be
22155         negative for CUR and END cases, but it takes -1 as an "unset"
22156         value.
22158 2005-06-02  Wim Taymans  <wim@fluendo.com>
22160         * gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
22161         (gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
22162         (gst_basesink_activate):
22163         * gst/base/gstbasesink.h:
22164         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
22165         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
22166         (gst_pad_query), (gst_pad_start_task):
22167         * gst/gstpad.h:
22168         * gst/gstqueue.c: (gst_queue_bufferalloc),
22169         (gst_queue_handle_sink_event), (gst_queue_chain):
22170         Bufferalloc: return GstFlowReturn to more accuratly report
22171         why allocation failed.
22173 2005-06-02  Wim Taymans  <wim@fluendo.com>
22175         * gst/gstpipeline.c: (gst_pipeline_send_event):
22176         Take snapshot of state without blocking.
22178 2005-06-02  Wim Taymans  <wim@fluendo.com>
22180         * docs/design/part-TODO.txt:
22181         * docs/design/part-caps.txt:
22182         * docs/design/part-clocks.txt:
22183         * docs/design/part-negotiation.txt:
22184         * docs/design/part-preroll.txt:
22185         Small doc updates 
22187 2005-05-30  Wim Taymans  <wim@fluendo.com>
22189         * gst/elements/gstidentity.c: (gst_identity_event),
22190         (gst_identity_transform), (gst_identity_get_property):
22191         Protect last_message property as it is accessed from
22192         multiple threads.
22194 2005-05-30  Wim Taymans  <wim@fluendo.com>
22196         * gst/gstelement.c: (gst_element_init),
22197         (gst_element_pads_activate), (gst_element_change_state):
22198         Slicker pad activation code.
22200 2005-05-30  Wim Taymans  <wim@fluendo.com>
22202         * gst/Makefile.am:
22203         * gst/gstelement.h:
22204         * gst/gstelementfactory.h:
22205         * gst/gsttypes.h:
22206         Move elementfactory methods to separate .h file.
22208 2005-05-30  Wim Taymans  <wim@fluendo.com>
22210         * docs/design/part-overview.txt:
22211         * gst/gstsystemclock.h:
22212         Small typo fixes, doc updates.
22214 2005-05-30  Wim Taymans  <wim@fluendo.com>
22216         * gst/gst.c: (gst_init_get_popt_table), (init_post),
22217         (init_popt_callback):
22218         Remove cpu-opt flag.
22220 2005-05-30  Wim Taymans  <wim@fluendo.com>
22222         * gst/gstbuffer.c: (gst_subbuffer_finalize),
22223         (gst_buffer_create_sub), (gst_buffer_is_span_fast):
22224         * gst/gstbuffer.h:
22225         Avoid typechecking in places where not needed.
22226         Added accessor for malloc_data.
22228 2005-05-30  Wim Taymans  <wim@fluendo.com>
22230         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_set_active),
22231         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_accept_caps),
22232         (gst_pad_configure_sink), (gst_pad_configure_src),
22233         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_send_event),
22234         (gst_pad_start_task):
22235         Propagate errors from _set_caps() in configure_src/sink
22236         functions instead of returning TRUE.
22237         FLUSH events can travel up and downstream
22240 2005-05-30  Wim Taymans  <wim@fluendo.com>
22242         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
22243         (gst_basesink_activate):
22244         Handle EOS in preroll.
22246 2005-05-30  Wim Taymans  <wim@fluendo.com>
22248         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
22249         (gst_queue_loop), (gst_queue_handle_src_event):
22250         Remove old pieces of code
22251         Flushing the queue in an upstream event is a very bad idea.
22253 2005-05-26  Andy Wingo  <wingo@pobox.com>
22255         * gst/gstminiobject.c (gst_value_mini_object_collect): Use
22256         gst_value_set_mini_object so as to add a ref on the object (which
22257         will be removed when the value is unset).
22259         * gst/elements/gstfakesink.c (gst_fakesink_class_init): Fix signal
22260         arg type in ::handoff.
22262         * gst/gstelement.c (gst_element_change_state): Also deactivate
22263         pads in READY->NULL, just in case the element didn't make it to
22264         PAUSED. Wingo tested, Wim approved.
22266 2005-05-26  Wim Taymans  <wim@fluendo.com>
22268         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
22269         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
22270         (gst_pad_query), (gst_pad_send_event), (gst_pad_start_task):
22271         A flushing pad cannot be used to alloc_buffer from.
22273 2005-05-26  Wim Taymans  <wim@fluendo.com>
22275         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
22276         (gst_bus_pop), (gst_bus_source_prepare), (gst_bus_source_check),
22277         (gst_bus_source_dispatch), (gst_bus_source_finalize),
22278         (gst_bus_create_watch), (gst_bus_add_watch_full):
22279         * gst/gstbus.h:
22280         Implement a real GSource and use g_main_context_wakeup() to
22281         signal new messages instead of the socketpair.
22283 2005-05-25  Wim Taymans  <wim@fluendo.com>
22285         * gst/gstbin.c: (bin_element_is_sink), (has_ancestor),
22286         (bin_element_is_semi_sink), (append_child), (gst_bin_change_state):
22287         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
22288         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
22289         (gst_pad_send_event), (gst_pad_start_task):
22290         * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush),
22291         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
22292         (gst_queue_sink_activate), (gst_queue_src_activate),
22293         (gst_queue_change_state):
22294         * gst/gstqueue.h:
22295         Fix state changes for non sinks. We now change sinks, then elements
22296         with unconnected srcpads, then the rest.
22297         More efficient queue unlocking in flush and state changes.
22298         Set the pad activate mode even if it does not have an activate
22299         function.
22301 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22303         * gst/base/gstbasesrc.c: (gst_basesrc_activate):
22304           Don't go in pull mode for non-seekable sources.
22305         * gst/elements/gsttypefindelement.h:
22306         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
22307         (gst_type_find_element_dispose), (gst_type_find_handle_src_query),
22308         (free_entry), (stop_typefinding),
22309         (gst_type_find_element_handle_event), (find_peek),
22310         (gst_type_find_element_chain), (do_pull_typefind),
22311         (gst_type_find_element_change_state):
22312           Allow typefinding (w/o seeking) in push-mode, simplified version
22313           of what was in 0.8.
22314         * gst/gstutils.c: (gst_buffer_join):
22315         * gst/gstutils.h:
22316           gst_buffer_join() from 0.8.
22318 2005-05-25  Wim Taymans  <wim@fluendo.com>
22320         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
22321         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
22322         (gst_pad_send_event), (gst_pad_start_task):
22323         Disable attempt at mode switching until it is figured out.
22325 2005-05-25  Wim Taymans  <wim@fluendo.com>
22327         * gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
22328         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
22329         (gst_basesink_finish_preroll), (gst_basesink_chain),
22330         (gst_basesink_loop), (gst_basesink_activate),
22331         (gst_basesink_change_state):
22332         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
22333         (gst_basesrc_get_range), (gst_basesrc_loop),
22334         (gst_basesrc_activate):
22335         * gst/elements/gsttee.c: (gst_tee_sink_activate):
22336         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
22337         (gst_real_pad_init), (gst_real_pad_set_property),
22338         (gst_real_pad_get_property), (gst_pad_set_active),
22339         (gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
22340         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
22341         (gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
22342         (gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
22343         (gst_pad_event_default_dispatch), (gst_pad_event_default),
22344         (gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
22345         (gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
22346         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
22347         (gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
22348         (gst_pad_stop_task):
22349         * gst/gstpad.h:
22350         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
22351         (gst_queue_loop), (gst_queue_src_activate):
22352         * gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
22353         (gst_task_get_state):
22354         * gst/gsttask.h:
22355         * gst/schedulers/threadscheduler.c:
22356         (gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
22357         Implement gst_pad_pause/start/stop_task(), take STREAM lock
22358         in task function.
22359         Remove ACTIVE pad flag, use FLUSHING everywhere
22360         Added _pad_chain(), _pad_get_range() to call chain/getrange 
22361         functions.
22362         Add locks around IS_FLUSHING when reading.
22363         Take STREAM lock in chain(), get_range() functions so plugins
22364         don't need to take it anymore.
22365         
22368 2005-05-25  Wim Taymans  <wim@fluendo.com>
22370         * tools/gst-launch.c: (event_loop):
22371         Unref message after using its contents instead of
22372         before.
22374 2005-05-24  Wim Taymans  <wim@fluendo.com>
22376         * docs/design/draft-ghostpads.txt:
22377         * docs/design/draft-push-pull.txt:
22378         * docs/design/draft-query.txt:
22379         * docs/design/part-overview.txt:
22380         Docs updates, added general overview doc.
22382 2005-05-21  David Schleef  <ds@schleef.org>
22384         * docs/gst/tmpl/old/GstBin.sgml:
22385         * docs/gst/tmpl/old/GstBuffer.sgml:
22386         * docs/gst/tmpl/old/GstCaps.sgml:
22387         * docs/gst/tmpl/old/GstClock.sgml:
22388         * docs/gst/tmpl/old/GstCompat.sgml:
22389         * docs/gst/tmpl/old/GstData.sgml:
22390         * docs/gst/tmpl/old/GstElement.sgml:
22391         * docs/gst/tmpl/old/GstEvent.sgml:
22392         * docs/gst/tmpl/old/GstIndex.sgml:
22393         * docs/gst/tmpl/old/GstStructure.sgml:
22394         * docs/gst/tmpl/old/GstTag.sgml:
22395         * docs/gst/tmpl/old/cothreads.sgml:
22396         * docs/gst/tmpl/old/cothreads_compat.sgml:
22397         * docs/gst/tmpl/old/gettext.sgml:
22398         * docs/gst/tmpl/old/gobject2gtk.sgml:
22399         * docs/gst/tmpl/old/grammar.tab.sgml:
22400         * docs/gst/tmpl/old/gst-i18n-app.sgml:
22401         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
22402         * docs/gst/tmpl/old/gst_private.sgml:
22403         * docs/gst/tmpl/old/gstaggregator.sgml:
22404         * docs/gst/tmpl/old/gstarch.sgml:
22405         * docs/gst/tmpl/old/gstatomic_impl.sgml:
22406         * docs/gst/tmpl/old/gstbufferstore.sgml:
22407         * docs/gst/tmpl/old/gstdata_private.sgml:
22408         * docs/gst/tmpl/old/gstdisksink.sgml:
22409         * docs/gst/tmpl/old/gstdisksrc.sgml:
22410         * docs/gst/tmpl/old/gstelementfactory.sgml:
22411         * docs/gst/tmpl/old/gstextratypes.sgml:
22412         * docs/gst/tmpl/old/gstfakesink.sgml:
22413         * docs/gst/tmpl/old/gstfakesrc.sgml:
22414         * docs/gst/tmpl/old/gstfdsink.sgml:
22415         * docs/gst/tmpl/old/gstfdsrc.sgml:
22416         * docs/gst/tmpl/old/gstfilesink.sgml:
22417         * docs/gst/tmpl/old/gstfilesrc.sgml:
22418         * docs/gst/tmpl/old/gsthttpsrc.sgml:
22419         * docs/gst/tmpl/old/gstidentity.sgml:
22420         * docs/gst/tmpl/old/gstindexfactory.sgml:
22421         * docs/gst/tmpl/old/gstmarshal.sgml:
22422         * docs/gst/tmpl/old/gstmd5sink.sgml:
22423         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
22424         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
22425         * docs/gst/tmpl/old/gstpadtemplate.sgml:
22426         * docs/gst/tmpl/old/gstpipefilter.sgml:
22427         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
22428         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
22429         * docs/gst/tmpl/old/gstshaper.sgml:
22430         * docs/gst/tmpl/old/gstspider.sgml:
22431         * docs/gst/tmpl/old/gstspideridentity.sgml:
22432         * docs/gst/tmpl/old/gststatistics.sgml:
22433         * docs/gst/tmpl/old/gsttee.sgml:
22434         * docs/gst/tmpl/old/gsttimecache.sgml:
22435         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
22436         * docs/gst/tmpl/old/gstxmlregistry.sgml:
22437         * docs/gst/tmpl/old/gthread-cothreads.sgml:
22438         * docs/gst/tmpl/old/types.sgml:
22439           I didn't intend to add these or check them in.
22441 2005-05-19  David Schleef  <ds@schleef.org>
22443         * configure.ac: Use -no-common everywhere.  In a sane world, it
22444           would be the default in libtool, because without it, you can't
22445           build DLLs on Windows.
22446         * docs/gst/gstreamer-docs.sgml: Remove GstCpu, GstData, GstThread
22447         * docs/gst/gstreamer-sections.txt:
22448         * docs/gst/tmpl/gstcpu.sgml:
22449         * docs/gst/tmpl/gstdata.sgml:
22450         * docs/gst/tmpl/gstthread.sgml:
22452 2005-05-19  David Schleef  <ds@schleef.org>
22454         * gst/gstminiobject.c: (gst_value_set_mini_object),
22455         (gst_value_take_mini_object), (gst_value_get_mini_object):
22456         * gst/gstminiobject.h: Add GValue set/get functions.
22458 2005-05-19  Wim Taymans  <wim@fluendo.com>
22460         * gst/gstbuffer.c: (gst_buffer_init), (gst_subbuffer_get_type),
22461         (gst_subbuffer_class_init), (gst_subbuffer_finalize),
22462         (gst_subbuffer_init), (gst_buffer_is_span_fast):
22463         * gst/gstbuffer.h:
22464         * gst/gstbus.c: (gst_bus_post):
22465         * gst/gstelement.c: (gst_element_get_random_pad):
22466         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize):
22467         Make subbufer unref the parent in finalize.
22468         some more debugging info.
22471 2005-05-19  Wim Taymans  <wim@fluendo.com>
22473         * gst/base/gstbasesink.c: (gst_basesink_class_init),
22474         (gst_basesink_init), (gst_basesink_finalize),
22475         (gst_basesink_activate), (gst_basesink_change_state):
22476         Don't free preroll queue too early.
22478 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22480         * gst/Makefile.am:
22481         * gst/ROADMAP:
22482           Hi, I'm outdated. Please shoot me.
22484 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22486         * gst/gstpipeline.c: (gst_pipeline_send_event):
22487           Do not access variables after they have been deleted.
22489 2005-05-19  Wim Taymans  <wim@fluendo.com>
22491         * tools/gst-inspect.c: (print_plugin_features):
22492         A plugin feature does unfortunatly not use the
22493         object name yet...
22495 2005-05-18  Wim Taymans  <wim@fluendo.com>
22497         * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):
22498         Port _span() functions to new subbuffers.
22500 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22502         * gst/gstbin.c: (gst_bin_add_func):
22503           Fix clock settery in bins when adding kids after the clock has
22504           been selected.
22506 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22508         * gst/elements/gstidentity.c: (gst_identity_class_init):
22509           Workaround until signals support GstMiniObject.
22511 2005-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
22513         * gst/gstbuffer.c:
22514         Oops, fix a typo GST_TYPE_BUFFER -> GST_TYPE_SUBBUFFER.
22516 2005-05-18  Wim Taymans  <wim@fluendo.com>
22518         * gst/base/Makefile.am:
22519         * gst/base/gstadapter.c: (gst_adapter_base_init),
22520         (gst_adapter_class_init), (gst_adapter_init),
22521         (gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
22522         (gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
22523         (gst_adapter_flush), (gst_adapter_available),
22524         (gst_adapter_available_fast):
22525         * gst/base/gstadapter.h:
22526         Ported and added adapter to the base classes.
22528 2005-05-17  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
22530         * gst/gst.c:
22531         * gst/gstmessage.c:
22532           Make sure the class is reffed/unreffed once before threads can be
22533           used.  Fixes #304551.
22535 2005-05-17  Wim Taymans  <wim@fluendo.com>
22537         * gst/base/gstbasesink.c: (gst_basesink_finish_preroll),
22538         (gst_basesink_chain_unlocked), (gst_basesink_activate):
22539         * gst/gstminiobject.c: (gst_mini_object_get_type),
22540         (gst_mini_object_free):
22541         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query),
22542         (gst_pad_push), (gst_pad_push_event):
22543         * gst/gstqueue.c: (gst_queue_change_state):
22544         Don't queue buffers in basesink when we are flushing.
22545         Unref buffer when flushing in basesink.
22546         Flush queue when going to READY
22547         Unref buffer when _push() returns an error.
22548         Don't free MiniObject instance when refcount is incremented
22549         in _finalize() so that we can recover objects.
22551 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22553         * docs/manual/advanced-schedulers.xml:
22554         * docs/manual/appendix-checklist.xml:
22555         * docs/pwg/advanced-clock.xml:
22556         * docs/pwg/advanced-interfaces.xml:
22557         * docs/pwg/advanced-request.xml:
22558         * docs/pwg/advanced-types.xml:
22559         * docs/pwg/intro-preface.xml:
22560         * examples/plugins/example.c: (gst_example_get_type),
22561         (gst_example_class_init), (gst_example_chain),
22562         (gst_example_set_property), (gst_example_get_property),
22563         (gst_example_change_state), (plugin_init):
22564         * examples/plugins/example.h:
22565           small doc fixes
22567 2005-05-17  Wim Taymans  <wim@fluendo.com>
22569         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps),
22570         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_push):
22571         * gst/gstqueue.c: (gst_queue_change_state):
22572         Clear queue when going to READY.
22573         Remove IN_SETCAPS flag too.
22575 2005-05-17  Tim-Philipp Müller  <tim at centricular dot net>
22577         * gst/base/gstbasesrc.c: (gst_basesrc_change_state):
22578           Remove implicit cast from gboolean to GstElementStateReturn;
22579           make sure we still return failure in paused => ready case if
22580           the parent class fails to change state and our own stop 
22581           vfunc succeeds.
22583 2005-05-17  Wim Taymans  <wim@fluendo.com>
22585         * tools/gst-launch.c: (event_loop):
22586         Message was unreffed too soon.
22588 2005-05-16  Andy Wingo  <wingo@pobox.com>
22590         * gst/gstbin.c (sink_iterator_filter): Err... um...
22592         * check/gst/gstbin.c (test_ghost_pads): New test for the
22593         ghosting-if-elements-not-in-same-bin behavior.
22595 2005-05-16  David Schleef  <ds@schleef.org>
22597         * gst/gstminiobject.c: Use g_atomic_int_get() instead of
22598         accessing refcount directly.
22600 2005-05-15  David Schleef  <ds@schleef.org>
22602         * check/Makefile.am: remove GstData checks
22603         * check/gst-libs/gdp.c: (START_TEST): fix for API changes
22604         * gst/Makefile.am: add miniobject, remove data
22605         * gst/gst.h: add miniobject, remove data
22606         * gst/gstdata.c: remove
22607         * gst/gstdata.h: remove
22608         * gst/gstdata_private.h: remove
22609         * gst/gsttypes.h: remove GstEvent and GstMessage
22610         * gst/gstelement.c: (gst_element_post_message): fix for API changes
22611         * gst/gstmarshal.list: change BOXED -> OBJECT
22613         Implement GstMiniObject.
22614         * gst/gstminiobject.c:
22615         * gst/gstminiobject.h:
22617         Modify to be subclasses of GstMiniObject.
22618         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
22619         (gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
22620         (gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
22621         (gst_subbuffer_get_type), (gst_subbuffer_init),
22622         (gst_buffer_create_sub), (gst_buffer_is_span_fast),
22623         (gst_buffer_span):
22624         * gst/gstbuffer.h:
22625         * gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
22626         (gst_event_class_init), (gst_event_init), (gst_event_finalize),
22627         (_gst_event_copy), (gst_event_new):
22628         * gst/gstevent.h:
22629         * gst/gstmessage.c: (_gst_message_initialize),
22630         (gst_message_get_type), (gst_message_class_init),
22631         (gst_message_init), (gst_message_finalize), (_gst_message_copy),
22632         (gst_message_new), (gst_message_new_error),
22633         (gst_message_new_warning), (gst_message_new_tag),
22634         (gst_message_new_state_changed), (gst_message_new_application):
22635         * gst/gstmessage.h:
22636         * gst/gstprobe.c: (gst_probe_perform),
22637         (gst_probe_dispatcher_dispatch):
22638         * gst/gstprobe.h:
22639         * gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
22640         (gst_query_class_init), (gst_query_finalize), (gst_query_init),
22641         (_gst_query_copy), (gst_query_new):
22643         Update elements for GstData -> GstMiniObject changes
22644         * gst/gstquery.h:
22645         * gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
22646         (gst_queue_chain), (gst_queue_loop):
22647         * gst/elements/gstbufferstore.c:
22648         (gst_buffer_store_add_buffer_func),
22649         (gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
22650         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
22651         (gst_fakesink_render):
22652         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
22653         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
22654         (gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
22655         (gst_mmap_buffer_finalize), (gst_filesrc_map_region),
22656         (gst_filesrc_create_read):
22657         * gst/elements/gstidentity.c: (gst_identity_class_init):
22658         * gst/elements/gsttypefindelement.c:
22659         (gst_type_find_element_src_event), (free_entry_buffers),
22660         (gst_type_find_element_handle_event):
22661         * libs/gst/dataprotocol/dataprotocol.c:
22662         (gst_dp_header_from_buffer):
22663         * libs/gst/dataprotocol/dataprotocol.h:
22664         * libs/gst/dataprotocol/dp-private.h:
22666 2005-05-15  David Schleef  <ds@schleef.org>
22668         * gst/elements/gstelements.c: Don't include headers that were
22669         just removed.
22671 2005-05-15  David Schleef  <ds@schleef.org>
22673         * gst/elements/Makefile.am: Remove some elements that don't
22674         need to be in the core (or even exist at all).
22675         * gst/elements/gstaggregator.c:
22676         * gst/elements/gstaggregator.h:
22677         * gst/elements/gstmd5sink.c:
22678         * gst/elements/gstmd5sink.h:
22679         * gst/elements/gstmultifilesrc.c:
22680         * gst/elements/gstmultifilesrc.h:
22681         * gst/elements/gstpipefilter.c:
22682         * gst/elements/gstpipefilter.h:
22683         * gst/elements/gstshaper.c:
22684         * gst/elements/gstshaper.h:
22685         * gst/elements/gststatistics.c:
22686         * gst/elements/gststatistics.h:
22687         * po/POTFILES.in: Remove above files.
22689 2005-05-14  Andy Wingo  <wingo@pobox.com>
22691         * gst/gstbin.c (gst_bin_iterate_sinks): Use sink_iterator_filter
22692         so as to get the refs right.
22693         (sink_iterator_filter): New function, wraps bin_element_is_sink,
22694         unreffing objects that don't pass the filter.
22696         * gst/gstpipeline.c (gst_pipeline_init): Drop ref on bus after
22697         gst_element_set_bus.
22698         (gst_pipeline_dispose): Set the bus on the pipeline to NULL. In
22699         normal cases, this will destroy the bus.
22701         * gst/gstutils.c (prepare_link_maybe_ghosting): Drop ref on root
22702         object.
22704         * gst/gstbin.c (gst_bin_change_state): Fix state changes if a bin
22705         has no sinks.
22707 2005-05-13  Andy Wingo  <wingo@pobox.com>
22709         * gst/gstutils.c (gst_element_link_pads): Instead of calling
22710         gst_pad_link, call pad_link_maybe_ghosting,
22711         (pad_link_maybe_ghosting): Links pads, making sure that the
22712         elements being linked are in the same bin.
22713         (find_common_root, object_has_ancestor, ghost_up, remove_pad):
22714         Helpers for pad_link_maybe_ghosting.
22716 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
22718         * configure.ac:
22719           Require GLib >= 2.4.0 (for the g_atomic_* funcs)
22721 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
22723         * docs/design/part-element-source.txt:
22724           Mention GstPushSrc
22726 2005-05-12  Wim Taymans  <wim@fluendo.com>
22728         * gst/base/gstbasesink.c: (gst_basesink_init),
22729         (gst_basesink_activate):
22730         * gst/base/gstbasesrc.c: (gst_basesrc_unlock),
22731         (gst_basesrc_is_seekable):
22732         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
22733         (bin_element_is_sink), (gst_bin_change_state):
22734         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
22735         * gst/gstelement.h:
22736         Identify sinks by their flag to avoid overly complicated
22737         checks (fow now).
22738         Do state changes even for elements not reachable from the
22739         sinks.
22740         BaseSink is a sink now :)
22741         Some more debugging info in the basesrc.
22744 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22746         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_query):
22747           Implement _query on a bin, similar to _send_event.
22749 2005-05-12  Tim-Philipp Müller  <tim at centricular dot net>
22751         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek):
22752           Discont event offset format should be GST_FORMAT_BYTES,
22753           not GST_FORMAT_TIME.
22755 2005-05-12  Wim Taymans  <wim@fluendo.com>
22757         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_get_state):
22758         Same fix as Ronald's but without the signal. 
22760 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22762         * gst/gstutils.c: (gst_element_query_position):
22763           No, an element is not a pad.
22765 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22767         * gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
22768         (gst_bin_get_state):
22769           If a child is removed from a bin while we remove the child from
22770           the bin and while we're retrieving its state, signal this to the
22771           get_state function so we abort the wait (instead of waiting for
22772           a timeout) and can immediately re-iterate over all other elements.
22774 2005-05-12  Wim Taymans  <wim@fluendo.com>
22776         * gst/base/Makefile.am:
22777         * gst/base/gstbasesrc.c: (gst_basesrc_is_seekable),
22778         (gst_basesrc_start):
22779         * gst/base/gstbasesrc.h:
22780         * gst/base/gstpushsrc.c: (gst_pushsrc_get_type),
22781         (gst_pushsrc_base_init), (gst_pushsrc_class_init),
22782         (gst_pushsrc_init), (gst_pushsrc_create):
22783         * gst/base/gstpushsrc.h:
22784         Added is_seekable to BaseSrc
22785         Added simple PushSrc.
22787 2005-05-11  Wim Taymans  <wim@fluendo.com>
22789         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
22790         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
22791         (gst_element_link_pads), (gst_element_query_position),
22792         (gst_element_query_convert), (intersect_caps_func),
22793         (gst_pad_query_position), (gst_pad_query_convert):
22794         Fix refcounting in utils function.
22795         No point in trying to activate a pad when it's added, it could
22796         be added from the state change function and then we deadlock, the
22797         element has to decide what to do.
22799 2005-05-10  Andy Wingo  <wingo@pobox.com>
22801         * gst/elements/gstfakesink.c (gst_fakesink_render): Er, emit with
22802         *all* the arguments.
22804         * gst/base/gstbasetransform.c (gst_base_transform_event): Grab the
22805         stream lock if it's a FLUSH_DONE; normal flushes don't get the
22806         lock (according to the docs -- if this is wrong change the docs).
22808         * gst/gstpipeline.c (gst_pipeline_change_state): Set the bus to
22809         flush messages in the NULL state.
22811         * gst/gstbus.c (gst_bus_post): If a bus is flushing, unref the
22812         message immediately and return.
22813         (gst_bus_set_flushing): New function. If a bus is flushing, it
22814         flushes out any queued messages and immediately unrefs new
22815         messages. This is so when an element goes to NULL, all of the
22816         unhandled messages coming from it can be freed, and their
22817         references to the element dropped. In other words: message source
22818         ref considered harmful :P
22820         * gst/gstbin.c (gst_bin_change_state): Unref peer element when
22821         we're finished with it.
22823         * gst/gstmessage.c (gst_message_new_state_changed): 
22825 2005-05-10  Wim Taymans  <wim@fluendo.com>
22827         * gst/gstvalue.c: (gst_value_compare_flags),
22828         (gst_value_serialize_flags), (gst_value_deserialize_flags),
22829         (_gst_value_initialize):
22830         Added flags serialize/deserialize/compare code.
22832 2005-05-09  Andy Wingo  <wingo@pobox.com>
22834         * gst/base/gstbasetransform.c (gst_base_transform_proxy_getcaps):
22835         Intersect the peer's caps with our caps.
22837 2005-05-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
22839         * gst/base/gsttypefindhelper.c: (helper_find_peek):
22840         * gst/elements/gsttypefindelement.c: (find_peek):
22841           Handle negative offsets better. Fixes decodebin.
22843 2005-05-09  Wim Taymans  <wim@fluendo.com>
22845         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps),
22846         (gst_base_transform_event):
22847         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query):
22848         Implement accept_caps.
22849         Fix silly lock/unlock mismatch in base class.
22851 2005-05-09  Wim Taymans  <wim@fluendo.com>
22853         * docs/design/draft-push-pull.txt:
22854         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_query):
22855         * gst/elements/gstfilesink.c: (gst_filesink_init),
22856         (gst_filesink_query):
22857         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
22858         (gst_type_find_handle_src_query), (find_element_get_length):
22859         * gst/gstelement.c: (gst_element_seek), (gst_element_query):
22860         * gst/gstelement.h:
22861         * gst/gstmessage.c:
22862         * gst/gstmessage.h:
22863         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_get_query_types),
22864         (gst_real_pad_get_caps_unlocked),
22865         (gst_pad_get_internal_links_default), (gst_pad_get_internal_links),
22866         (gst_pad_event_default_dispatch), (gst_pad_event_default),
22867         (gst_pad_dispatcher), (gst_pad_query), (gst_pad_query_default),
22868         (gst_real_pad_dispose), (gst_real_pad_finalize),
22869         (gst_pad_load_and_link), (gst_pad_save_thyself),
22870         (gst_ghost_pad_save_thyself), (handle_pad_block), (gst_pad_push),
22871         (gst_pad_check_pull_range), (gst_pad_pull_range),
22872         (gst_pad_template_get_type), (gst_pad_template_class_init),
22873         (gst_pad_template_init), (gst_pad_template_dispose),
22874         (name_is_valid), (gst_static_pad_template_get),
22875         (gst_pad_template_new), (gst_static_pad_template_get_caps),
22876         (gst_pad_template_get_caps), (gst_pad_set_element_private),
22877         (gst_pad_get_element_private), (gst_pad_start_task),
22878         (gst_pad_pause_task), (gst_pad_stop_task),
22879         (gst_ghost_pad_get_type), (gst_ghost_pad_class_init),
22880         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
22881         (gst_ghost_pad_set_property), (gst_ghost_pad_get_property),
22882         (gst_ghost_pad_new):
22883         * gst/gstpad.h:
22884         * gst/gstquery.c: (_gst_query_initialize), (gst_query_new),
22885         (gst_query_new_position), (gst_query_set_position),
22886         (gst_query_parse_position), (gst_query_new_convert),
22887         (gst_query_set_convert), (gst_query_parse_convert):
22888         * gst/gstquery.h:
22889         * gst/gstqueryutils.c:
22890         * gst/gstqueryutils.h:
22891         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
22892         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
22893         (gst_queue_handle_src_query):
22894         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
22895         (gst_element_query_position), (gst_element_query_convert),
22896         (intersect_caps_func), (gst_pad_query_position),
22897         (gst_pad_query_convert):
22898         * gst/gstutils.h:
22899         * tools/gst-inspect.c: (print_pad_info):
22900         * tools/gst-xmlinspect.c: (print_element_info):
22901         Remove old query functions. Ported old code.
22902         Added position/convert helper functions to gstutils.
22903         Reordered gstpad.c code, grouping relevant things.
22904         Remove gst_message_new(), always need to speficy a specific
22905         message.
22908 2005-05-09  Andy Wingo  <wingo@pobox.com>
22910         * gst/gstiterator.h: Add some includes.
22912         * gst/gstqueryutils.h: Include more headers.
22914         * gst/gstpad.h:
22915         * gst/gstpad.c (gst_pad_query_position): New routine, replaces
22916         some uses of gst_pad_query.
22918         * gst/gstqueryutils.c: Build fixes. Make parse functions ignore
22919         NULL out parameters.
22920         (gst_query_new_position): New proc, allocates a new position
22921         query.
22923         * gst/Makefile.am (libgstreamer_@GST_MAJORMINOR@_la_SOURCES): Add
22924         gstqueryutils.c to the build.
22926         * gst/gststructure.c (gst_structure_set_valist): Implement with
22927         the generic G_VALUE_COLLECT.
22928         
22929 2005-05-08  Edward Hervey  <bilboed@bilboed.com>
22931         * gst/Makefile.am: (gst_headers):
22932         Added gstqueryutils.h to the list of headers to install, that was
22933         a 'nachty' move wingo :)
22935 2005-05-06  Andy Wingo  <wingo@pobox.com>
22937         * gst/gstquery.h
22938         * gst/gstquery.c (_gst_query_initialize): Extend GstQuery from
22939         GstData, init a memchunk.
22940         (standard_definitions): Add a few query types, deprecate a few.
22941         (gst_query_get_type): New proc.
22942         (_gst_query_copy, _gst_query_free, gst_query_new): GstData
22943         implementation.
22944         (gst_query_new_application, gst_query_get_structure): New public
22945         procs.
22947         * docs/design/draft-query.txt: Removed LINKS from the query types,
22948         because all the rest can be dispatched to other pads -- seemed
22949         ugly to have a query that couldn't be dispatched. internal_links
22950         is fine as a pad method.
22952         * gst/gstpad.h: Add query2 as a pad method, add the new functions
22953         in gstpad.c, but maintain binary compatibility for the moment.
22954         Will fix before 0.9 is out.
22956         * gst/gstqueryutils.c: 
22957         * gst/gstqueryutils.h: New files, implement 3 methods for each
22958         query type: parse_query, parse_response, and set. Probably need an
22959         allocator as well.
22961         * gst/gst.h: Add gstquery.h and gstqueryutils.h to the list.
22963         * gst/elements/gstfilesink.c (gst_filesink_query2):
22964         * gst/base/gstbasesrc.c (gst_basesrc_query2): Replace old query,
22965         query_types, and formats methods.
22967         * gst/gstpad.c (gst_pad_query2, gst_pad_query2_default)
22968         (gst_pad_set_query2_function): New functions.
22969         (gst_real_pad_init): Set query2_default as the default query2
22970         function. Basically just dispatches to internally linked pads.
22972         Needs review!
22973         
22974         * gst/gstdata_private.h (_GST_DATA_INIT): Set data->refcount to 1
22975         without using the atomic operations. Only one thread can possibly
22976         be accessing the data at this point. Changed so as to avoid
22977         gst_atomic operations.
22979 2005-05-06  Wim Taymans  <wim@fluendo.com>
22981         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push):
22982         Also set caps if we use the fallback buffer alloc.
22984 2005-05-06  Tim-Philipp Müller  <tim at centricular dot net>
22986         * docs/gst/Makefile.am:
22987         * docs/gst/gstreamer-docs.sgml:
22988         * docs/gst/gstreamer-sections.txt:
22989         * docs/gst/tmpl/gstatomic.sgml:
22990         * docs/gst/tmpl/gstmemchunk.sgml:
22991         * testsuite/elements/struct_i386.h:
22992         * win32/GStreamer.vcproj:
22993         * win32/Makefile:
22994           Purge GstAtomic stuff from docs and win32 makefiles as well
22996 2005-05-06  Wim Taymans  <wim@fluendo.com>
22998         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
22999         * gst/elements/gstcapsfilter.c: (gst_capsfilter_getcaps):
23000         * gst/gstpad.c: (gst_pad_peer_get_caps):
23001         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
23002         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
23003         (gst_queue_src_activate), (gst_queue_change_state):
23004         * gst/gstqueue.h:
23005         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
23006         (intersect_caps_func):
23007         Fix gst_pad_peer_get_caps(), make it return NULL if no peer.
23008         Always take QUEUE_LOCK after STREAM_LOCK or we might deadlock.
23009         Some fixes for the peer_get_caps() change.
23011 2005-05-06  Wim Taymans  <wim@fluendo.com>
23013         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
23014         (gst_basesink_handle_buffer), (gst_basesink_chain_unlocked),
23015         (gst_basesink_activate):
23016         Actually do something with error codes returned from the push
23017         functions.
23019 2005-05-06  Wim Taymans  <wim@fluendo.com>
23021         * docs/design/part-element-sink.txt:
23022         * docs/design/part-element-source.txt:
23023         * gst/base/gstbasesink.c: (gst_basesink_class_init),
23024         (gst_basesink_event), (gst_basesink_activate):
23025         * gst/base/gstbasesink.h:
23026         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_unlock),
23027         (gst_basesrc_activate):
23028         * gst/base/gstbasesrc.h:
23029         * gst/gstelement.c: (gst_element_pads_activate):
23030         Some more documentation.
23031         Fixed scheduling decision in _pads_activate().
23033 2005-05-05  Andy Wingo  <wingo@pobox.com>
23035         * check/pipelines/simple_launch_lines.c (test_2_elements): "Fix"
23036         the test suite.
23038 2005-05-05  Wim Taymans  <wim@fluendo.com>
23040         * gst/base/Makefile.am:
23041         * gst/base/gstbasesink.h:
23042         * gst/base/gstbasesrc.c: (gst_basesrc_init),
23043         (gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
23044         * gst/base/gstcollectpads.c: (gst_collectpads_get_type),
23045         (gst_collectpads_class_init), (gst_collectpads_init),
23046         (gst_collectpads_finalize), (gst_collectpads_new),
23047         (gst_collectpads_set_function), (gst_collectpads_add_pad),
23048         (find_pad), (gst_collectpads_remove_pad),
23049         (gst_collectpads_is_active), (gst_collectpads_collect),
23050         (gst_collectpads_collect_range), (gst_collectpads_start),
23051         (gst_collectpads_stop), (gst_collectpads_peek),
23052         (gst_collectpads_pop), (gst_collectpads_available),
23053         (gst_collectpads_read), (gst_collectpads_flush),
23054         (gst_collectpads_chain):
23055         * gst/base/gstcollectpads.h:
23056         * gst/elements/Makefile.am:
23057         * gst/elements/gstelements.c:
23058         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
23059         (gst_fakesink_get_times), (gst_fakesink_event),
23060         (gst_fakesink_preroll), (gst_fakesink_render):
23061         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
23062         (gst_filesink_init), (gst_filesink_set_location),
23063         (gst_filesink_open_file), (gst_filesink_close_file),
23064         (gst_filesink_pad_query), (gst_filesink_event),
23065         (gst_filesink_render), (gst_filesink_change_state):
23066         * gst/elements/gstfilesink.h:
23067         Added object to help in making collect pad based elements.
23068         Ported filesink.
23069         Make event function in sink baseclass return gboolean.
23071 2005-05-05  Wim Taymans  <wim@fluendo.com>
23073         * gst/gstbin.c: (gst_bin_send_event), (compare_name),
23074         (gst_bin_get_by_name):
23075         * gst/gstbuffer.h:
23076         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
23077         (gst_clock_finalize):
23078         * gst/gstdata.c: (gst_data_replace):
23079         * gst/gstdata.h:
23080         * gst/gstelement.c: (gst_element_request_pad),
23081         (gst_element_pads_activate):
23082         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
23083         (gst_object_unref):
23084         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23085         (gst_pad_set_checkgetrange_function),
23086         (gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
23087         (gst_pad_check_pull_range), (gst_pad_pull_range),
23088         (gst_static_pad_template_get_caps), (gst_pad_start_task),
23089         (gst_pad_pause_task), (gst_pad_stop_task):
23090         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
23091         (gst_element_request_pad), (gst_pad_proxy_getcaps):
23092         Fix name lookup in GstBin.
23093         Added _data_replace() function and _buffer_replace()
23094         Use finalize method to clean up clock.
23095         Fix refcounting on request pads.
23096         Fix pad schedule mode error.
23097         Some more object refcounting debug info,
23100 2005-05-04  Andy Wingo <wingo@pobox.com>
23102         * check/Makefile.am:
23103         * docs/gst/tmpl/gstatomic.sgml:
23104         * docs/gst/tmpl/gstplugin.sgml:
23105         * gst/base/gstbasesink.c: (gst_basesink_activate):
23106         * gst/base/gstbasesrc.c: (gst_basesrc_class_init),
23107         (gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
23108         (gst_basesrc_query), (gst_basesrc_set_property),
23109         (gst_basesrc_get_property), (gst_basesrc_check_get_range),
23110         (gst_basesrc_activate):
23111         * gst/base/gstbasesrc.h:
23112         * gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
23113         (gst_base_transform_src_activate):
23114         * gst/elements/gstelements.c:
23115         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
23116         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
23117         * gst/elements/gsttee.c: (gst_tee_sink_activate):
23118         * gst/elements/gsttypefindelement.c: (find_element_get_length),
23119         (gst_type_find_element_checkgetrange),
23120         (gst_type_find_element_activate):
23121         * gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
23122         * gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
23123         (gst_caps_load_thyself):
23124         * gst/gstelement.c: (gst_element_pads_activate),
23125         (gst_element_save_thyself), (gst_element_restore_thyself):
23126         * gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
23127         (gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
23128         * gst/gstpad.h:
23129         * gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
23130         (gst_xml_parse_file), (gst_xml_parse_memory),
23131         (gst_xml_get_element), (gst_xml_make_element):
23132         * gst/indexers/gstfileindex.c: (gst_file_index_load),
23133         (_file_index_id_save_xml), (gst_file_index_commit):
23134         * gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
23135         (read_enum), (load_pad_template), (load_feature), (load_plugin),
23136         (load_paths):
23137         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
23138         (gst_dp_packet_from_event), (gst_dp_caps_from_packet):
23139         * tools/gst-complete.c: (main):
23140         * tools/gst-compprep.c: (main):
23141         * tools/gst-inspect.c: (print_element_properties_info):
23142         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
23143         * tools/gst-xmlinspect.c: (print_element_properties):
23144         GCC 4 fixen.
23145         
23146 2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
23148         * gst/gstplugin.c: (gst_plugin_check_module),
23149         (gst_plugin_check_file), (gst_plugin_load_file):
23150             apply patch from #172526 to make register work on MacOSX
23152 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23154         * docs/gst/tmpl/gstconfig.sgml:
23155         * gst/gstconfig.h.in:
23156           move documentation for some symbols.  Add doc for GST_PTR_FORMAT
23157         * testsuite/debug/printf_extension.c: (main):
23158           Do not use GST_PTR_FORMAT on pointers to types with
23159           sizeof < sizeof(gpointer).  Fixes test on 64-bit
23160         * testsuite/elements/property.h:
23161           use correct printf format
23163 2005-05-02  Wim Taymans  <wim@fluendo.com>
23165         * docs/design/draft-push-pull.txt:
23166         * docs/design/draft-query.txt:
23167         * gst/base/gstbasesrc.c: (gst_basesrc_get_range_unlocked),
23168         (gst_basesrc_start):
23169         Added draft for new query API.
23170         Added draft for better selecting scheduling methods.
23171         Make basesrc ignore length if the subclass does not support
23172         it.
23174 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23176         * gst/Makefile.am:
23177           possible fixes for automake-1.5 - _LIBADD is reserved
23179 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23181         * docs/faq/Makefile.am:
23182         * docs/manual/Makefile.am:
23183         * docs/manuals.mak:
23184         * docs/pwg/Makefile.am:
23185         * gst/Makefile.am:
23186           possible fixes for automake-1.5
23188 2005-04-28  Wim Taymans  <wim@fluendo.com>
23190         * gst/base/gstbasesink.c: (gst_basesink_base_init),
23191         (gst_basesink_pad_getcaps), (gst_basesink_init),
23192         (gst_basesink_do_sync):
23193         * gst/gstclock.c: (gst_clock_entry_new):
23194         * gst/gstevent.c: (gst_event_discont_get_value):
23195         * gst/gstpipeline.c: (pipeline_bus_handler),
23196         (gst_pipeline_change_state):
23197         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
23198         Better debugging of clocking info.
23199         Allow NULL values when getting discont values.
23201 2005-04-27  Wim Taymans  <wim@fluendo.com>
23203         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
23204         * check/gst/gstpad.c: (gst_pad_suite):
23205         Increase timeout for checks.
23207 2005-04-27  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
23209         * check/Makefile.am:
23210           fix the broken rule for cleanup.  Apparently this rule is
23211           only needed on FC2, so maybe this warrants further autotool
23212           inspection.
23214 2005-04-26  Wim Taymans  <wim@fluendo.com>
23216         * gst/gsttrashstack.h:
23217         Ooohh. a nasty one! After having a failed pop() from the stack,
23218         it's possible that the stack is empty. In that case, don't
23219         follow the NULL pointer.
23221 2005-04-25  Wim Taymans  <wim@fluendo.com>
23223         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23224         (gst_pad_set_checkgetrange_function),
23225         (gst_pad_link_check_compatible_unlocked), (gst_pad_link_prepare),
23226         (gst_pad_check_pull_range), (gst_pad_pull_range),
23227         (gst_static_pad_template_get_caps), (gst_pad_start_task),
23228         (gst_pad_pause_task), (gst_pad_stop_task):
23229         * gst/gstplugin.c: (gst_plugin_load):
23230         * gst/gstplugin.h:
23231         Remove gst_library_load as it does more harm than good with
23232         the new g_module flags.
23233         Revert bogus caps template check in pad linking, pad caps
23234         are important when linking not the template, which is more
23235         general than the current caps.
23237 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23239         * gst/autoplug/.cvsignore:
23240         * gst/autoplug/Makefile.am:
23241         * gst/autoplug/gstsearchfuncs.c:
23242         * gst/autoplug/gstsearchfuncs.h:
23243         * gst/autoplug/gstspider.c:
23244         * gst/autoplug/gstspider.h:
23245         * gst/autoplug/gstspideridentity.c:
23246         * gst/autoplug/gstspideridentity.h:
23247         * gst/autoplug/spidertest.c:
23248           Die, spider, die.
23250 2005-04-25  Wim Taymans  <wim@fluendo.com>
23252         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23253         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
23254         (gst_pad_pull_range), (gst_static_pad_template_get_caps),
23255         (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
23256         * gst/gstpad.h:
23257         Added stubs for unimplemented functions. 
23259 2005-04-24  David Schleef  <ds@schleef.org>
23261         * gst/gstpad.h: Disable some unimplemented functions.  Wim,
23262         please fix.
23264 2005-04-24  David Schleef  <ds@schleef.org>
23266         Convert everything from GstAtomicInt to g_atomic_int_*, and
23267         remove gstatomic.
23268         * gst/Makefile.am:
23269         * gst/gstatomic.c:
23270         * gst/gstatomic.h:
23271         * gst/gstatomic_impl.h:
23272         * gst/gstbuffer.c:
23273         * gst/gstcaps.c:
23274         * gst/gstcaps.h:
23275         * gst/gstclock.c:
23276         * gst/gstclock.h:
23277         * gst/gstdata.c:
23278         * gst/gstdata.h:
23279         * gst/gstdata_private.h:
23280         * gst/gstevent.c:
23281         * gst/gstinfo.c:
23282         * gst/gstinfo.h:
23283         * gst/gstmessage.c:
23284         * gst/gstobject.c:
23285         * gst/gstobject.h:
23286         * gst/gststructure.c:
23287         * gst/gststructure.h:
23288         * gst/gstutils.c: Add gst_atomic_int_set() compaitibility function.
23289         * gst/gstutils.h:
23291 2005-04-24  David Schleef  <ds@schleef.org>
23293         * check/gst/gstpad.c: (START_TEST): Oh yeah, it's always nice to
23294         make the regressions tests work.  Remove some code that is no
23295         longer true.
23296         * gst/gstpad.c: (gst_pad_link_check_templates_compatible_unlocked):
23297         Disable warning for pads without templates.
23299 2005-04-24  David Schleef  <ds@schleef.org>
23301         * gst/gstpad.c: Remove handling of filtered caps.  Fix/merge
23302         functions that handle filtered links.
23303         * gst/gstpad.h: Remove 'appfilter' field and prototypes of
23304         removed functions.
23305         * gst/gstutils.c: Fix/remove utility functions that handle
23306         filtered caps.
23307         * gst/gstutils.h:
23308         * gst/gstvalue.c: Add serialization/deserialization of caps
23309         * gst/parse/grammar.y: Ignore filtered caps when linking.  This
23310         requires fixing so that the filter caps notation creates
23311         a capsfilter element and sets the filter_caps property.  I
23312         think everyone probably wants to keep the shorthand notation.
23313         * docs/gst/tmpl/gstelement.sgml: updates for API changes.
23314         * docs/gst/tmpl/gstpad.sgml:
23316         * gst/elements/gstelements.c: Register capsfilter element.
23317         * gst/Makefile.am: fix spacing
23318         * docs/random/ds/0.9-suggested-changes: random
23320 2005-04-23  David Schleef  <ds@schleef.org>
23322         * gst/elements/Makefile.am:
23323         * gst/elements/gstcapsfilter.c: New element that acts like an
23324         identity, but filters caps.  Will eventually replace filtered
23325         caps in pad linking.
23326         * gst/gstutils.c: (gst_element_create_all_pads): New function
23327         to create all the ALWAYS pads that are registered with an
23328         element class.  This functionality should eventually be
23329         merged in with GstElement initialization.
23330         * gst/gstutils.h:
23331         * testsuite/trigger/README: part of trigger test code that should
23332         have been checked in a long time ago.
23334 2005-04-23  David Schleef  <ds@schleef.org>
23336         * gst/Makefile.am: Remove as-libtool stuff.  It's likely not
23337         needed with new versions of libtool (nobody will confirm this),
23338         and hard to carry around.
23339         * gst/autoplug/Makefile.am:
23340         * gst/base/Makefile.am:
23341         * gst/elements/Makefile.am:
23342         * gst/indexers/Makefile.am:
23343         * gst/schedulers/Makefile.am:
23344         * libs/gst/bytestream/Makefile.am:
23345         * libs/gst/control/Makefile.am:
23346         * libs/gst/dataprotocol/Makefile.am:
23347         * libs/gst/getbits/Makefile.am:
23349 2005-04-21  Wim Taymans  <wim@fluendo.com>
23351         * docs/design/draft-push-pull.txt:
23352         * docs/design/part-MT-refcounting.txt:
23353         * docs/design/part-TODO.txt:
23354         * docs/design/part-caps.txt:
23355         * docs/design/part-events.txt:
23356         * docs/design/part-gstbus.txt:
23357         * docs/design/part-gstpipeline.txt:
23358         * docs/design/part-messages.txt:
23359         * docs/design/part-push-pull.txt:
23360         * docs/design/part-query.txt:
23361         Some more docs.
23363 2005-04-21  Wim Taymans  <wim@fluendo.com>
23365         * gst/gstmessage.c: (_gst_message_copy), (_gst_message_free),
23366         (gst_message_new), (gst_message_new_error),
23367         (gst_message_new_warning), (gst_message_new_tag),
23368         (gst_message_new_state_changed), (gst_message_new_application),
23369         (gst_message_get_structure):
23370         * gst/gstmessage.h:
23371         * gst/gststructure.c: (gst_structure_set_parent_refcount),
23372         (gst_structure_copy_conditional):
23373         Use parent refcount in GstMessage to ensure GstStructure
23374         consistency.
23375         Cleaned up headers a bit.
23376         
23378 2005-04-20  Wim Taymans  <wim@fluendo.com>
23380         * gst/base/gstbasesink.c: (gst_basesink_base_init),
23381         (gst_basesink_pad_getcaps), (gst_basesink_init),
23382         (gst_basesink_chain_unlocked):
23383         * gst/base/gsttypefindhelper.c: (helper_find_suggest),
23384         (gst_type_find_helper):
23385         * gst/elements/gsttypefindelement.c:
23386         (gst_type_find_element_have_type), (gst_type_find_element_init),
23387         (stop_typefinding), (gst_type_find_element_handle_event),
23388         (find_suggest), (gst_type_find_element_chain),
23389         (gst_type_find_element_checkgetrange),
23390         (gst_type_find_element_getrange), (do_typefind),
23391         (gst_type_find_element_activate):
23392         * gst/gstbuffer.c: (_gst_buffer_sub_free),
23393         (gst_buffer_default_free), (gst_buffer_default_copy),
23394         (gst_buffer_set_caps):
23395         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
23396         (gst_caps_replace):
23397         * gst/gstmessage.c: (gst_message_new),
23398         (gst_message_new_state_changed):
23399         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23400         (gst_pad_set_checkgetrange_function),
23401         (gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
23402         (gst_pad_set_caps), (gst_pad_check_pull_range),
23403         (gst_pad_pull_range), (gst_static_pad_template_get_caps):
23404         * gst/gstpad.h:
23405         * gst/gsttypefind.c: (gst_type_find_register):
23406         Make gst_caps_replace() work like other _replace() functions.
23407         Use _caps_replace() where possible.
23408         Make sure _message_new() initialises its field.
23409         Add gst_static_pad_template_get_caps()
23412 2005-04-18  Andy Wingo  <wingo@pobox.com>
23414         * gst/gstelement.c (gst_element_pads_activate): Check pull_range
23415         on the peer, not the pad. I think that was a typo. Pass an extra
23416         arg to see if random access is possible. Activate the pads as
23417         PULL_RANGE if possible.
23419         * gst/elements/gstfakesrc.c: s/ARG_/PROP_/.
23421         * gst/base/gstbasesrc.c (gst_basesrc_set_property) 
23422         (gst_basesrc_get_property): BLOCKSIZE is a ULONG. Rename ARG_...
23423         to PROP_....
23425 2005-04-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23427         * docs/faq/using.xml:
23428           Add note on gstreamer-properties (#154996).
23430 2005-04-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23432         * docs/random/bbb/optional-properties:
23433           Some analysis on optional properties.
23435 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23437         * docs/gst/tmpl/gstelementfactory.sgml:
23438         * gst/gstelement.h:
23439         * gst/gstelementfactory.c: (gst_element_factory_init),
23440         (gst_element_factory_cleanup), (gst_element_register),
23441         (__gst_element_factory_add_static_pad_template),
23442         (gst_element_factory_get_static_pad_templates),
23443         (gst_element_factory_can_src_caps),
23444         (gst_element_factory_can_sink_caps):
23445         * gst/registries/Makefile.am:
23446         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
23447         (gst_xml_registry_class_init), (gst_xml_registry_init),
23448         (gst_xml_registry_new), (gst_xml_registry_set_property),
23449         (gst_xml_registry_get_property), (get_time), (make_dir),
23450         (gst_xml_registry_get_perms_func),
23451         (plugin_times_older_than_recurse), (plugin_times_older_than),
23452         (gst_xml_registry_open_func), (gst_xml_registry_load_func),
23453         (gst_xml_registry_save_func), (gst_xml_registry_close_func),
23454         (add_to_char_array), (read_string), (read_uint), (read_enum),
23455         (load_pad_template), (load_feature), (load_plugin), (load_paths),
23456         (gst_xml_registry_load), (gst_xml_registry_load_plugin),
23457         (gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
23458         (gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
23459         (gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
23460         (gst_xml_registry_rebuild):
23461         * gst/registries/gstlibxmlregistry.h:
23462         * tools/gst-compprep.c: (main):
23463         * tools/gst-inspect.c: (print_pad_templates_info):
23464         * tools/gst-xmlinspect.c: (print_element_info):
23465           Use libxml2 for registry parsing, use staticpadtemplates in
23466           elementfactories. Makes gst_init() +/- 10x faster.
23468 2005-04-12  Wim Taymans  <wim@fluendo.com>
23470         * gst/base/Makefile.am:
23471         * gst/base/gstbasesink.c: (gst_basesink_base_init),
23472         (gst_basesink_pad_getcaps), (gst_basesink_init),
23473         (gst_basesink_event), (gst_basesink_change_state):
23474         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
23475         (gst_basesrc_init), (gst_basesrc_query),
23476         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
23477         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
23478         (gst_basesrc_check_get_range), (gst_basesrc_loop),
23479         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
23480         (gst_basesrc_stop), (gst_basesrc_activate),
23481         (gst_basesrc_change_state):
23482         * gst/base/gsttypefindhelper.c: (helper_find_peek),
23483         (helper_find_suggest), (gst_type_find_helper):
23484         * gst/base/gsttypefindhelper.h:
23485         * gst/elements/Makefile.am:
23486         * gst/elements/gstelements.c:
23487         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
23488         (gst_fakesink_get_times), (gst_fakesink_event),
23489         (gst_fakesink_preroll), (gst_fakesink_render):
23490         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
23491         (gst_fakesrc_init), (gst_fakesrc_event_handler),
23492         (gst_fakesrc_get_property), (gst_fakesrc_create),
23493         (gst_fakesrc_start), (gst_fakesrc_stop):
23494         * gst/elements/gstfakesrc.h:
23495         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init),
23496         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
23497         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
23498         (gst_filesrc_create_read), (gst_filesrc_create),
23499         (gst_filesrc_is_seekable), (gst_filesrc_get_size),
23500         (gst_filesrc_start):
23501         * gst/elements/gsttypefindelement.c:
23502         (gst_type_find_element_have_type), (gst_type_find_element_init),
23503         (start_typefinding), (stop_typefinding), (push_buffer_store),
23504         (gst_type_find_element_handle_event),
23505         (gst_type_find_element_chain),
23506         (gst_type_find_element_checkgetrange),
23507         (gst_type_find_element_getrange), (do_typefind),
23508         (gst_type_find_element_activate),
23509         (gst_type_find_element_change_state):
23510         * gst/elements/gsttypefindelement.h:
23511         * gst/gstpipeline.c: (pipeline_bus_handler):
23512         Added typefind helper.
23513         Small preroll fix in the base sink.
23514         Disable typefind code in basesrc.
23515         Crude port of typefindelement.
23516         Fakesrc cleanups.
23519 2005-04-11  Wim Taymans  <wim@fluendo.com>
23521         * check/gst/gstbus.c: (gstbus_suite):
23522         * check/gst/gstdata.c: (thread_ref), (gst_data_suite):
23523         * check/gstcheck.h:
23524           Fix up the timeout so that the test does not fail.
23526 2005-04-06  Wim Taymans  <wim@fluendo.com>
23528         * gst/base/README:
23529         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
23530         (gst_basesrc_init), (gst_basesrc_get_formats), (gst_basesrc_query),
23531         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
23532         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
23533         (gst_basesrc_check_get_range), (gst_basesrc_loop),
23534         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
23535         (gst_basesrc_stop), (gst_basesrc_activate),
23536         (gst_basesrc_change_state), (basesrc_find_peek),
23537         (basesrc_find_suggest), (gst_basesrc_type_find):
23538         * gst/base/gstbasesrc.h:
23539         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
23540         (gst_filesrc_class_init), (gst_filesrc_init),
23541         (gst_filesrc_finalize), (gst_filesrc_set_location),
23542         (gst_filesrc_set_property), (gst_filesrc_get_property),
23543         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
23544         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
23545         (gst_filesrc_create_read), (gst_filesrc_create),
23546         (gst_filesrc_get_size), (gst_filesrc_start), (gst_filesrc_stop):
23547         * gst/elements/gstfilesrc.h:
23548         * gst/gstelement.c: (gst_element_get_state_func),
23549         (gst_element_lost_state), (gst_element_pads_activate):
23550         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23551         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
23552         (gst_pad_pull_range):
23553         * gst/gstpad.h:
23554         More work on the generic source base class, implement seeking,
23555         query.
23556         Make filesrc extend the base source class.
23557         Added gst_pad_set_checkgetrange_function to GstPad.
23559 2005-04-06  Andy Wingo  <wingo@pobox.com>
23561         * pkgconfig/gstreamer-base.pc.in:
23562         * pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
23564         * pkgconfig/Makefile.am:
23565         * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
23567 2005-04-04  Wim Taymans  <wim@fluendo.com>
23569         * gst/base/Makefile.am:
23570         * gst/base/README:
23571         * gst/base/gstbasesink.c: (gst_basesink_base_init),
23572         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
23573         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
23574         (gst_basesink_do_sync), (gst_basesink_chain_unlocked):
23575         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
23576         (gst_basesrc_base_init), (gst_basesrc_class_init),
23577         (gst_basesrc_init), (gst_basesrc_get_formats),
23578         (gst_basesrc_get_query_types), (gst_basesrc_query),
23579         (gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
23580         (gst_basesrc_set_property), (gst_basesrc_get_property),
23581         (gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
23582         (gst_basesrc_loop), (gst_basesrc_activate),
23583         (gst_basesrc_change_state):
23584         * gst/base/gstbasesrc.h:
23585         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
23586         (gst_fakesrc_class_init), (gst_fakesrc_init),
23587         (gst_fakesrc_event_handler), (gst_fakesrc_set_property),
23588         (gst_fakesrc_get_property), (gst_fakesrc_create):
23589         * gst/elements/gstfakesrc.h:
23590         * gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
23591         (gst_filesrc_open_file), (gst_filesrc_loop),
23592         (gst_filesrc_activate), (filesrc_find_peek),
23593         (gst_filesrc_type_find):
23594         Made base source class, make fakesrc extend it.
23595         Add comments to basesink class.
23596         Some filesrc cleanup.
23598 2005-03-31  David Schleef  <ds@schleef.org>
23600         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
23601         Switch to using G_MODULE_BIND_LOCAL, which means plugins are now
23602         expected to link against libgstreamer.
23603         * gst/base/Makefile.am: link against libgstreamer
23604         * gst/elements/Makefile.am: same
23606 2005-03-31  Andy Wingo  <wingo@pobox.com>
23608         * tests/instantiate/Makefile.am:
23609         * tests/instantiate/caps.c: Add test to test speed of caps copy
23610         and free.
23612         * tests/memchunk/gmemchunktest.c (main): Use alloc only on the
23613         GMemChunk to be fair.
23615         * gst/gsttrashstack.h: Remove warning about using the fallback
23616         trash stack implementation, it's still faster than malloc.
23618 2005-03-30  Andy Wingo  <wingo@pobox.com>
23620         * tests/complexity.c: Add a copyright.
23622 2005-03-31  Wim Taymans  <wim@fluendo.com>
23624         * gst/base/gstbasetransform.c: (gst_base_transform_base_init),
23625         (gst_base_transform_class_init), (gst_base_transform_init),
23626         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
23627         (gst_base_transform_get_property),
23628         (gst_base_transform_sink_activate),
23629         (gst_base_transform_src_activate),
23630         (gst_base_transform_change_state):
23631         * gst/base/gstbasetransform.h:
23632         * gst/elements/gstidentity.c: (gst_identity_class_init),
23633         (gst_identity_event), (gst_identity_check_perfect),
23634         (gst_identity_transform), (gst_identity_start),
23635         (gst_identity_stop):
23636         Added start/stop methods to transform base class so subclasses 
23637         don't need to deal with state changes even.
23639 2005-03-31  Wim Taymans  <wim@fluendo.com>
23641         * gst/gstevent.c: (gst_event_new_discontinuous_valist),
23642         (gst_event_new_discontinuous), (gst_event_discont_get_value):
23643         * gst/gstevent.h:
23644         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23645         (gst_pad_pull_range):
23646         Added rate to the discont event to prepare for variable speed
23647         and reverse playback.
23649 2005-03-29  David Schleef  <ds@schleef.org>
23651         * configure.ac:
23652         * testsuite/trigger/Makefile.am:
23653         * testsuite/trigger/trigger.c: A little example program to show
23654         how trigger-based elements can work.
23656 2005-03-29  Wim Taymans  <wim@fluendo.com>
23658         * gst/base/Makefile.am:
23659         * gst/base/README:
23660         * gst/base/gstbasesink.c: (gst_basesink_get_type),
23661         (gst_basesink_base_init), (gst_basesink_class_init),
23662         (gst_basesink_pad_getcaps), (gst_basesink_init),
23663         (gst_basesink_activate), (gst_basesink_change_state):
23664         * gst/base/gstbasesink.h:
23665         * gst/base/gstbasetransform.c: (gst_base_transform_get_type),
23666         (gst_base_transform_base_init), (gst_base_transform_finalize),
23667         (gst_base_transform_class_init), (gst_base_transform_init),
23668         (gst_base_transform_proxy_getcaps), (gst_base_transform_setcaps),
23669         (gst_base_transform_event), (gst_base_transform_getrange),
23670         (gst_base_transform_chain), (gst_base_transform_handle_buffer),
23671         (gst_base_transform_set_property),
23672         (gst_base_transform_get_property),
23673         (gst_base_transform_sink_activate),
23674         (gst_base_transform_src_activate),
23675         (gst_base_transform_change_state):
23676         * gst/base/gstbasetransform.h:
23677         * gst/elements/gstidentity.c: (gst_identity_finalize),
23678         (gst_identity_class_init), (gst_identity_init),
23679         (gst_identity_event), (gst_identity_check_perfect),
23680         (gst_identity_transform), (gst_identity_set_property),
23681         (gst_identity_get_property), (gst_identity_change_state):
23682         * gst/elements/gstidentity.h:
23683         * gst/gstelement.c: (gst_element_get_state_func),
23684         (gst_element_lost_state), (gst_element_pads_activate):
23685         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
23686         (gst_pad_check_pull_range), (gst_pad_pull_range):
23687         * gst/gstpad.h:
23688         Simplify pad activation.
23689         Added function to check if pull_range can be performed.
23690         Error out when pulling inactive or flushing pads.
23691         Removed const from refcounted types as it does not make sense.
23692         Simplify pad templates in basesink
23693         Added base class for simple 1-to-1 transforms.
23694         Make identity subclass the base transform.
23696 2005-03-29  Andy Wingo  <wingo@pobox.com>
23698         * docs/libs/gstreamer-libs-overrides.txt: 
23699         * docs/gst/gstreamer-overrides.txt: Add these files to CVS. Now I
23700         really don't understand what's going on, but like whatever. I want
23701         green buildbot!
23703         * docs/gst/Makefile.am:
23704         * docs/libs/Makefile.am: Dist the overrides files.
23706         * check/Makefile.am (clean-local): Remove .libs directories.
23708         * gst/elements/Makefile.am (EXTRA_DIST): Add all the attic
23709         elements to EXTRA_DIST, so po/ files are happy.
23711         * po/POTFILES.in: Er, remove it here.
23713         * po/POTFILES: Remove gstspider.c.
23715         * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
23717         * docs/libs/gstreamer-libs-docs.sgml: 
23718         * docs/libs/gstreamer-libs-sections.txt: Remove the section on
23719         bytestream.
23721         * tests/complexity.c (main): Set the length of the preroll queue
23722         on the sinks to prevent a lockup.
23724         * libs/gst/dataprotocol/Makefile.am: 
23725         * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
23726         the same as the one in check/gst-libs/gdp.c.
23728         * po/, docs/gst/: Commit automatic changes to docs and po files.
23730         * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to
23731         the versioned libgstbase.
23733         * check/Makefile.am: Depend on an unversioned gst-register, seems
23734         to make autoconf happier.
23736         * gst/base/Makefile.am: Make libgstbase a versioned lib.
23738 2005-03-28  Wim Taymans  <wim@fluendo.com>
23740         * configure.ac:
23741         * docs/design/part-gstelement.txt:
23742         * docs/design/part-negotiation.txt:
23743         * docs/design/part-preroll.txt:
23744         * docs/design/part-scheduling.txt:
23745         * docs/design/part-states.txt:
23746         * gst/Makefile.am:
23747         * gst/base/Makefile.am:
23748         * gst/base/README:
23749         * gst/base/gstbasesink.c: (gst_basesink_get_template),
23750         (gst_basesink_base_init), (gst_basesink_class_init),
23751         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
23752         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
23753         (gst_basesink_set_pad_functions),
23754         (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock),
23755         (gst_basesink_set_property), (gst_basesink_get_property),
23756         (gst_base_sink_get_template), (gst_base_sink_get_caps),
23757         (gst_base_sink_set_caps), (gst_base_sink_buffer_alloc),
23758         (gst_basesink_preroll_queue_push),
23759         (gst_basesink_preroll_queue_empty),
23760         (gst_basesink_preroll_queue_flush), (gst_basesink_finish_preroll),
23761         (gst_basesink_event), (gst_basesink_get_times),
23762         (gst_basesink_do_sync), (gst_basesink_handle_buffer),
23763         (gst_basesink_chain_unlocked), (gst_basesink_chain),
23764         (gst_basesink_loop), (gst_basesink_activate),
23765         (gst_basesink_change_state):
23766         * gst/base/gstbasesink.h:
23767         * gst/elements/Makefile.am:
23768         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
23769         (gst_fakesink_class_init), (gst_fakesink_init),
23770         (gst_fakesink_set_property), (gst_fakesink_get_property),
23771         (gst_fakesink_get_times), (gst_fakesink_event),
23772         (gst_fakesink_preroll), (gst_fakesink_render),
23773         (gst_fakesink_change_state):
23774         * gst/elements/gstfakesink.h:
23775         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
23776         (gst_bin_get_state), (gst_bin_change_state), (gst_bin_send_event):
23777         * gst/gstelement.c: (gst_element_add_pad),
23778         (gst_element_get_state_func), (gst_element_abort_state),
23779         (gst_element_commit_state), (gst_element_lost_state),
23780         (gst_element_set_state), (gst_element_pads_activate):
23781         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_event_default):
23782         * gst/gstpipeline.c: (gst_pipeline_send_event),
23783         (gst_pipeline_change_state):
23784         Added state change code.
23785         Added/updated docs.
23786         Added sink base class, make fakesink extend the base class.
23787         Small cleanups in GstPipeline.
23789 2005-03-26  David Schleef  <ds@schleef.org>
23791         * gst/Makefile.am: remove gstcpu.[ch].  The gst_cpu functionality
23792         is broken and should be implemented in a different library.
23793         * gst/gst.c: (init_post): don't call _gst_cpu_initialize()
23794         * gst/gst.h: remove gstcpu.h
23795         * gst/gstcpu.c: remove
23796         * gst/gstcpu.h: remove
23797         * gst/Makefile.am.future: Remove this file.  It's ancient.
23799 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23801         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
23802         (gst_bin_send_event):
23803           Add default event/set_manager handlers. The set_manager handler
23804           takes care that the manager is distributed over kids that were
23805           already in the bin before the manager was set. The event handler
23806           is a utility virtual function that sends the event over all sinks,
23807           so that gst_element_send_event (bin, event); has the expected
23808           behaviour.
23809         * gst/gstpad.c: (gst_pad_event_default):
23810           Re-install default event handling for discontinuities, so that
23811           seeking works without requiring hacks in applications or extra
23812           code in sinks.
23813         * gst/gstpipeline.c: (gst_pipeline_class_init),
23814         (gst_pipeline_send_event):
23815           Half hack, half utility: set a pipeline to PAUSED for seek events,
23816           since that is the only way we can guarantee a/v sync. Means that
23817           you can do gst_element_seek (pipeline, method, pos); on a pipeline
23818           and it "just works".
23820 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
23822         * gst/gstpipeline.c: (gst_pipeline_use_clock):
23823           Lock/unlock mismatch.
23825 2005-03-25  Thomas Vander Stichele  <thomas at apestaart dot org>
23827         * docs/faq/gst-uninstalled:
23828           add gst-plugins-base
23829         * docs/gst/Makefile.am:
23830           don't error out until docs are fixed
23831         * docs/gst/gstreamer.types:
23832           remove thread
23834 2005-03-22  Wim Taymans  <wim@fluendo.com>
23836         * check/Makefile.am:
23837         * check/gst/gstmessage.c: (START_TEST), (gst_data_suite), (main):
23838         * gst/gststructure.c: (gst_structure_set_valist),
23839         (gst_structure_copy_conditional):
23840         Activated more tests.
23841         Added message test.
23842         Added G_TYPE_POINTER to GstStructure.
23843         
23845 2005-03-22  Wim Taymans  <wim@fluendo.com>
23847         * docs/design/part-TODO.txt:
23848         * docs/design/part-events.txt:
23849         * docs/design/part-gstbin.txt:
23850         * docs/design/part-gstbus.txt:
23851         * docs/design/part-gstpipeline.txt:
23852         * docs/design/part-messages.txt:
23853         * gst/gstbus.c:
23854         * gst/gstmessage.c:
23855         Docs updates
23857 2005-03-21  Wim Taymans  <wim@fluendo.com>
23859         * gst/gstbus.c: (gst_bus_post):
23860         Fix copy-and-paste error.
23862 2005-03-21  Wim Taymans  <wim@fluendo.com>
23864         * check/Makefile.am:
23865         * gst/Makefile.am:
23866         * gst/elements/Makefile.am:
23867         * gst/elements/gstelements.c:
23868         * gst/elements/gstfakesink.c: (gst_fakesink_init),
23869         (gst_fakesink_event), (gst_fakesink_chain):
23870         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
23871         (gst_fakesrc_init), (gst_fakesrc_get_event_mask),
23872         (gst_fakesrc_event_handler), (gst_fakesrc_set_pad_functions),
23873         (gst_fakesrc_set_all_pad_functions), (gst_fakesrc_request_new_pad),
23874         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
23875         (gst_fakesrc_get_range_unlocked), (gst_fakesrc_get_range),
23876         (gst_fakesrc_loop), (gst_fakesrc_activate),
23877         (gst_fakesrc_change_state):
23878         * gst/elements/gstfakesrc.h:
23879         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
23880         (gst_filesrc_get_read), (gst_filesrc_getrange), (gst_filesrc_get),
23881         (gst_filesrc_open_file), (gst_filesrc_loop),
23882         (gst_filesrc_activate), (gst_filesrc_change_state),
23883         (filesrc_find_peek), (filesrc_find_suggest),
23884         (gst_filesrc_type_find):
23885         * gst/elements/gstidentity.c: (gst_identity_finalize),
23886         (gst_identity_class_init), (gst_identity_init),
23887         (gst_identity_proxy_getcaps), (identity_queue_push),
23888         (identity_queue_pop), (identity_queue_flush), (gst_identity_event),
23889         (gst_identity_getrange), (gst_identity_chain),
23890         (gst_identity_sink_loop), (gst_identity_src_loop),
23891         (gst_identity_handle_buffer), (gst_identity_set_dataflow_funcs),
23892         (gst_identity_set_property), (gst_identity_get_property),
23893         (gst_identity_change_state):
23894         * gst/elements/gstidentity.h:
23895         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
23896         (gst_tee_update_pad_functions), (gst_tee_request_new_pad),
23897         (gst_tee_set_property), (gst_tee_get_property), (gst_tee_do_push),
23898         (gst_tee_handle_buffer), (gst_tee_chain), (gst_tee_loop),
23899         (gst_tee_sink_activate):
23900         * gst/elements/gsttee.h:
23901         * gst/gst.c: (gst_register_core_elements), (init_post):
23902         * gst/gst.h:
23903         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_bus),
23904         (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_add),
23905         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_get_state),
23906         (gst_bin_change_state):
23907         * gst/gstbin.h:
23908         * gst/gstbus.c: (gst_bus_get_type), (gst_bus_class_init),
23909         (gst_bus_init), (gst_bus_dispose), (gst_bus_set_property),
23910         (gst_bus_get_property), (gst_bus_new), (gst_bus_post),
23911         (gst_bus_have_pending), (gst_bus_pop), (gst_bus_peek),
23912         (gst_bus_set_sync_handler), (gst_bus_create_watch),
23913         (bus_watch_callback), (bus_watch_destroy),
23914         (gst_bus_add_watch_full), (gst_bus_add_watch), (poll_handler),
23915         (poll_timeout), (gst_bus_poll):
23916         * gst/gstbus.h:
23917         * gst/gstcaps.h:
23918         * gst/gstdata.h:
23919         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
23920         (gst_element_post_message), (gst_element_message_full),
23921         (gst_element_get_state_func), (gst_element_get_state),
23922         (gst_element_abort_state), (gst_element_commit_state),
23923         (gst_element_lost_state), (gst_element_set_state),
23924         (gst_element_pads_activate), (gst_element_change_state),
23925         (gst_element_dispose), (gst_element_set_manager_func),
23926         (gst_element_set_bus_func), (gst_element_set_scheduler_func),
23927         (gst_element_set_manager), (gst_element_get_manager),
23928         (gst_element_set_bus), (gst_element_get_bus),
23929         (gst_element_set_scheduler), (gst_element_get_scheduler):
23930         * gst/gstelement.h:
23931         * gst/gstevent.c: (gst_event_new_segment_seek),
23932         (gst_event_new_flush):
23933         * gst/gstevent.h:
23934         * gst/gstmessage.c: (_gst_message_initialize), (_gst_message_copy),
23935         (_gst_message_free), (gst_message_get_type), (gst_message_new),
23936         (gst_message_new_eos), (gst_message_new_error),
23937         (gst_message_new_warning), (gst_message_new_tag),
23938         (gst_message_new_state_changed), (gst_message_new_application),
23939         (gst_message_get_structure), (gst_message_parse_tag),
23940         (gst_message_parse_state_changed), (gst_message_parse_error),
23941         (gst_message_parse_warning):
23942         * gst/gstmessage.h:
23943         * gst/gstpad.c: (gst_real_pad_class_init), (gst_real_pad_init),
23944         (gst_real_pad_set_property), (gst_pad_set_active),
23945         (gst_pad_is_active), (gst_pad_set_blocked_async),
23946         (gst_pad_set_blocked), (gst_pad_is_blocked),
23947         (gst_pad_set_activate_function), (gst_pad_set_loop_function),
23948         (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function),
23949         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
23950         (gst_pad_unlink), (gst_pad_link_prepare_filtered),
23951         (gst_pad_link_filtered), (gst_pad_relink_filtered),
23952         (gst_real_pad_get_caps_unlocked), (gst_pad_get_caps),
23953         (gst_pad_peer_get_caps), (gst_pad_fixate_caps),
23954         (gst_pad_accept_caps), (gst_pad_peer_accept_caps),
23955         (gst_pad_set_caps), (gst_pad_configure_sink),
23956         (gst_pad_configure_src), (gst_pad_get_negotiated_caps),
23957         (gst_pad_get_filter_caps), (gst_pad_alloc_buffer),
23958         (gst_real_pad_dispose), (gst_real_pad_finalize),
23959         (handle_pad_block), (gst_pad_push), (gst_pad_pull_range),
23960         (gst_pad_event_default_dispatch), (gst_pad_event_default),
23961         (gst_pad_push_event), (gst_pad_send_event), (gst_pad_get_formats):
23962         * gst/gstpad.h:
23963         * gst/gstpipeline.c: (gst_pipeline_init), (is_eos),
23964         (pipeline_bus_handler), (gst_pipeline_change_state),
23965         (gst_pipeline_get_scheduler), (gst_pipeline_get_bus):
23966         * gst/gstpipeline.h:
23967         * gst/gstprobe.h:
23968         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
23969         (gst_queue_finalize), (gst_queue_getcaps), (gst_queue_link_sink),
23970         (gst_queue_link_src), (gst_queue_bufferalloc),
23971         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
23972         (gst_queue_is_empty), (gst_queue_is_filled), (gst_queue_chain),
23973         (gst_queue_loop), (gst_queue_handle_src_event),
23974         (gst_queue_handle_src_query), (gst_queue_src_activate),
23975         (gst_queue_change_state):
23976         * gst/gstqueue.h:
23977         * gst/gstscheduler.c: (gst_scheduler_init),
23978         (gst_scheduler_dispose), (gst_scheduler_create_task),
23979         (gst_scheduler_factory_create):
23980         * gst/gstscheduler.h:
23981         * gst/gststructure.c: (gst_structure_get_type),
23982         (gst_structure_copy_conditional):
23983         * gst/gststructure.h:
23984         * gst/gsttaginterface.h:
23985         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
23986         (gst_task_init), (gst_task_dispose), (gst_task_create),
23987         (gst_task_get_state), (gst_task_start), (gst_task_stop),
23988         (gst_task_pause):
23989         * gst/gsttask.h:
23990         * gst/gstthread.c:
23991         * gst/gstthread.h:
23992         * gst/gsttypes.h:
23993         * gst/schedulers/Makefile.am:
23994         * gst/schedulers/cothreads_compat.h:
23995         * gst/schedulers/entryscheduler.c:
23996         * gst/schedulers/faircothreads.c:
23997         * gst/schedulers/faircothreads.h:
23998         * gst/schedulers/fairscheduler.c:
23999         * gst/schedulers/gstbasicscheduler.c:
24000         * gst/schedulers/gstoptimalscheduler.c:
24001         * gst/schedulers/gthread-cothreads.h:
24002         * gst/schedulers/threadscheduler.c:
24003         (gst_thread_scheduler_task_get_type),
24004         (gst_thread_scheduler_task_class_init),
24005         (gst_thread_scheduler_task_init),
24006         (gst_thread_scheduler_task_start),
24007         (gst_thread_scheduler_task_stop),
24008         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_get_type),
24009         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
24010         (gst_thread_scheduler_init), (gst_thread_scheduler_create_task),
24011         (gst_thread_scheduler_setup), (gst_thread_scheduler_reset),
24012         (plugin_init):
24013         * libs/gst/Makefile.am:
24014         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf):
24015         * libs/gst/bytestream/filepad.c: (gst_file_pad_init),
24016         (gst_file_pad_parent_set):
24017         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
24018         (gst_dp_event_from_packet):
24019         * tests/complexity.c: (main):
24020         * tests/mass_elements.c: (main):
24021         * testsuite/states/locked.c: (message_received), (main):
24022         * testsuite/states/parent.c: (main):
24023         * tools/gst-inspect.c: (print_element_flag_info),
24024         (print_implementation_info), (print_pad_info):
24025         * tools/gst-launch.c: (check_intr), (play_handler), (event_loop),
24026         (main):
24027         * tools/gst-md5sum.c: (event_loop), (main):
24028         * tools/gst-typefind.c: (main):
24029         * tools/gst-xmlinspect.c: (print_element_info):
24030         Next big merge.
24031         Added GstBus for mainloop integration.
24032         Added GstMessage for sending notifications on the bus.
24033         Added GstTask as an abstraction for pipeline entry points.
24034         Removed GstThread.
24035         Removed Schedulers.
24036         Simplified GstQueue for multithreaded core.
24037         Made _link threadsafe, removed old capsnego.
24038         Added STREAM_LOCK and PREROLL_LOCK in GstPad.
24039         Added pad blocking functions.
24040         Reworked scheduling functions in GstPad to prepare for
24041         scheduling updates soon.
24042         Moved events out of data stream.
24043         Simplified GstEvent types.
24044         Added return values to push/pull.
24045         Removed clocking from GstElement.
24046         Added prototypes for state change function for next merge.
24047         Removed iterate from bins and state change management.
24048         Fixed some elements, disabled others for now.
24049         Fixed -inspect and -launch.
24050         Added check for GstBus.
24052 2005-03-10  Wim Taymans  <wim@fluendo.com>
24054         * docs/design/part-MT-refcounting.txt:
24055         * docs/design/part-clocks.txt:
24056         * docs/design/part-gstelement.txt:
24057         * docs/design/part-gstobject.txt:
24058         * docs/design/part-standards.txt:
24059         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
24060         (gst_bin_remove_func), (gst_bin_remove):
24061         * gst/gstbin.h:
24062         * gst/gstbuffer.c:
24063         * gst/gstcaps.h:
24064         * testsuite/clock/clock1.c: (main):
24065         * testsuite/clock/clock2.c: (gst_clock_debug), (element_wait),
24066         (main):
24067         * testsuite/dlopen/loadgst.c: (do_test):
24068         * testsuite/refcounting/bin.c: (add_remove_test1),
24069         (add_remove_test2), (main):
24070         * testsuite/refcounting/element.c: (main):
24071         * testsuite/refcounting/element_pad.c: (main):
24072         * testsuite/refcounting/pad.c: (main):
24073         * tools/gst-launch.c: (sigint_handler_sighandler):
24074         * tools/gst-typefind.c: (main):
24075         Doc updates.
24076         Added doc about clock.
24077         removed gst_bin_iterate_recurse_up(), marked methods
24078         for removal.
24079         Fix more testsuites.
24081 2005-03-09  Wim Taymans  <wim@fluendo.com>
24083         * gst/gstpad.c: (gst_pad_get_direction),
24084         (_gst_pad_default_fixate_foreach), (gst_pad_collectv),
24085         (gst_pad_collect_valist):
24086         * testsuite/bins/interface.c: (main):
24087         * testsuite/caps/audioscale.c: (test_caps):
24088         * testsuite/caps/caps.c: (test1), (test2), (test3):
24089         * testsuite/caps/deserialize.c: (main):
24090         * testsuite/caps/enumcaps.c: (main):
24091         * testsuite/caps/filtercaps.c: (main):
24092         * testsuite/caps/intersect2.c: (main):
24093         * testsuite/caps/random.c: (main):
24094         * testsuite/caps/renegotiate.c: (my_fixate), (main):
24095         * testsuite/caps/sets.c: (check_caps):
24096         * testsuite/caps/simplify.c: (check_caps), (main):
24097         * testsuite/caps/subtract.c: (check_caps):
24098         Fix _pad_get_direction wrt ghostpads.
24099         Fix caps testsuite.
24101 2005-03-09  Wim Taymans  <wim@fluendo.com>
24103         * check/Makefile.am:
24104         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite), (main):
24105         * check/gst/gstsystemclock.c: (START_TEST), (gst_clock_debug),
24106         (ok_callback), (error_callback), (gst_systemclock_suite), (main):
24107         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func),
24108         (gst_bin_set_clock_func), (gst_bin_get_clock_func),
24109         (gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
24110         (gst_bin_remove), (gst_bin_iterate_recurse_up),
24111         (bin_element_is_sink), (gst_bin_iterate_sinks),
24112         (gst_bin_iterate_all_by_interface):
24113         * gst/gstbin.h:
24114         * gst/gstelement.c: (gst_element_init), (gst_element_error_full),
24115         (gst_element_change_state), (gst_element_dispose),
24116         (gst_element_finalize), (gst_element_set_loop_function):
24117         * gst/gstelement.h:
24118         * gst/gstiterator.c: (find_custom_fold_func):
24119         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
24120         (gst_pad_collectv), (gst_pad_collect_valist),
24121         (gst_pad_template_new):
24122         * gst/gstpipeline.c: (gst_pipeline_class_init),
24123         (gst_pipeline_dispose), (gst_pipeline_set_property),
24124         (gst_pipeline_get_property), (gst_pipeline_get_clock_func),
24125         (gst_pipeline_get_clock), (gst_pipeline_use_clock),
24126         (gst_pipeline_set_clock), (gst_pipeline_auto_clock):
24127         * gst/gstutils.h:
24128         * gst/schedulers/entryscheduler.c:
24129         * gst/schedulers/gstbasicscheduler.c:
24130         (gst_basic_scheduler_cothreaded_chain),
24131         (gst_basic_scheduler_chain_add_element):
24132         * testsuite/bins/interface.c: (main):
24133         Added GstBin test.
24134         Added GstSystemClock test.
24135         Implemented clock distribution code in GstBin.
24136         Implemented iterate sinks method for future use.
24137         Rearranged gstelement.h
24138         Fix GstIterator comparison bug.
24139         Moved some code to GstPipeline, mostly clocking related.
24141 2005-03-09  Wim Taymans  <wim@fluendo.com>
24143         * configure.ac:
24144         * gst/gst_private.h:
24145         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
24146         (gst_bin_remove_func), (gst_bin_remove),
24147         (gst_bin_get_by_name_recurse_up):
24148         * gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
24149         (gst_clock_id_compare_func), (gst_clock_id_wait),
24150         (gst_clock_id_wait_async), (gst_clock_init),
24151         (gst_clock_adjust_unlocked), (gst_clock_get_time):
24152         * gst/gstelement.h:
24153         * gst/gstinfo.c: (_gst_debug_init):
24154         * gst/gstobject.h:
24155         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
24156         (gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
24157         * gst/gstpad.h:
24158         Bump version number, we're now 0.9.0
24159         Add future debugging category.
24160         Fix NULL _unref() in _get_by_name_recurse_up
24161         Rearrange gstpad.h.
24162         Update some docs.
24164 2005-03-08  Wim Taymans  <wim@fluendo.com>
24166         * gst/elements/gstaggregator.c: (gst_aggregator_class_init):
24167         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
24168         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
24169         * gst/elements/gstfdsink.c: (gst_fdsink_class_init):
24170         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init):
24171         * gst/elements/gstfilesink.c: (gst_filesink_class_init):
24172         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init):
24173         * gst/elements/gstidentity.c: (gst_identity_class_init):
24174         * gst/elements/gstmd5sink.c: (gst_md5sink_class_init):
24175         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
24176         * gst/elements/gstshaper.c: (gst_shaper_class_init):
24177         * gst/elements/gststatistics.c: (gst_statistics_class_init):
24178         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_getcaps),
24179         (gst_tee_link):
24180         * gst/gstelement.c: (gst_element_class_init),
24181         (gst_element_base_class_init), (gst_element_init),
24182         (gst_element_get_random_pad), (gst_element_wait_state_change),
24183         (gst_element_change_state), (gst_element_dispose),
24184         (gst_element_finalize), (gst_element_set_loop_function):
24185         * gst/gstelement.h:
24186         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_link_src):
24187         * gst/gstthread.c: (gst_thread_class_init),
24188         (gst_thread_release_children_locks), (gst_thread_change_state):
24189         * gst/schedulers/gstbasicscheduler.c:
24190         (gst_basic_scheduler_loopfunc_wrapper),
24191         (gst_basic_scheduler_chain_wrapper),
24192         (gst_basic_scheduler_src_wrapper),
24193         (gst_basic_scheduler_remove_element):
24194         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
24195         Remove threadsafe properties. Fix elements because GObject
24196         complains when installing a property before declaring a
24197         set/get_property handler.
24198         Rearrange gstelement.h file, use STATE macros for state locks.
24199         Free mutexes in the finalize method instead of dispose.
24201 2005-03-08  Wim Taymans  <wim@fluendo.com>
24203         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
24204         * gst/gstthread.c: (gst_thread_release_children_locks):
24205         Added parentage check.
24206         Fix build og GstThread again.
24208 2005-03-08  Wim Taymans  <wim@fluendo.com>
24210         * docs/design/part-MT-refcounting.txt:
24211         * docs/design/part-conventions.txt:
24212         * docs/design/part-gstobject.txt:
24213         * docs/design/part-relations.txt:
24214         * docs/design/part-standards.txt:
24215         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
24216         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
24217         (gst_bin_get_by_name), (gst_bin_get_by_interface),
24218         (gst_bin_iterate_all_by_interface):
24219         * gst/gstbuffer.h:
24220         * gst/gstclock.h:
24221         * gst/gstelement.c: (gst_element_class_init),
24222         (gst_element_change_state), (gst_element_set_loop_function):
24223         * gst/gstelement.h:
24224         * gst/gstiterator.c:
24225         * gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
24226         (gst_object_unref), (gst_object_sink), (gst_object_dispose),
24227         (gst_object_dispatch_properties_changed), (gst_object_set_name),
24228         (gst_object_set_parent), (gst_object_unparent),
24229         (gst_object_check_uniqueness):
24230         * gst/gstobject.h:
24231         Docs updates, clean up some headers.
24233 2005-03-07  Wim Taymans  <wim@fluendo.com>
24235         * check/.cvsignore:
24236         * check/Makefile.am:
24237         * check/gst-libs/.cvsignore:
24238         * check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
24239         * check/gst/.cvsignore:
24240         * check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
24241         (START_TEST), (gstbus_suite), (main):
24242         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
24243         * check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
24244         (gst_data_suite), (main):
24245         * check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
24246         (add_fold_func), (gstiterator_suite), (main):
24247         * check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
24248         (thread_name_object), (thread_name_object_default),
24249         (gst_object_name_compare), (gst_object_suite), (main):
24250         * check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
24251         (gst_pad_suite), (main):
24252         * check/gstcheck.c: (gst_check_log_message_func),
24253         (gst_check_log_critical_func), (gst_check_init):
24254         * check/gstcheck.h:
24255         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
24256         (run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
24257         Added checks.
24259 2005-03-07  Wim Taymans  <wim@fluendo.com>
24261         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
24262         (gst_list_iterator_next), (gst_list_iterator_resync),
24263         (gst_list_iterator_free), (gst_iterator_new_list),
24264         (gst_iterator_pop), (gst_iterator_next), (gst_iterator_resync),
24265         (gst_iterator_free), (gst_iterator_push), (filter_next),
24266         (filter_resync), (filter_uninit), (filter_free),
24267         (gst_iterator_filter), (gst_iterator_fold), (foreach_fold_func),
24268         (gst_iterator_foreach), (find_custom_fold_func),
24269         (gst_iterator_find_custom):
24270         * gst/gstiterator.h:
24271         Added missing files.
24273 2005-03-07  Wim Taymans  <wim@fluendo.com>
24275         * Makefile.am:
24276         * configure.ac:
24277         * docs/design/part-MT-refcounting.txt:
24278         * docs/design/part-conventions.txt:
24279         * docs/design/part-gstobject.txt:
24280         * docs/design/part-relations.txt:
24281         * examples/mixer/mixer.c: (main):
24282         * examples/thread/thread.c: (eos), (main):
24283         * gst/Makefile.am:
24284         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
24285         * gst/autoplug/gstspider.c: (gst_spider_identity_plug),
24286         (gst_spider_plug_from_srcpad):
24287         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps),
24288         (gst_spider_identity_change_state),
24289         (gst_spider_identity_sink_loop_type_finding):
24290         * gst/elements/gstfakesrc.c: (gst_fakesrc_loop):
24291         * gst/elements/gstidentity.c: (gst_identity_init):
24292         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_getcaps),
24293         (gst_tee_link), (gst_tee_request_new_pad), (gst_tee_chain):
24294         * gst/elements/gsttypefindelement.c: (free_entry):
24295         * gst/gst.c:
24296         * gst/gst.h:
24297         * gst/gstbin.c: (gst_bin_init), (gst_bin_get_clock_func),
24298         (gst_bin_set_clock_func), (gst_bin_auto_clock),
24299         (gst_bin_set_index), (gst_bin_set_element_sched),
24300         (gst_bin_unset_element_sched), (gst_bin_add_func), (gst_bin_add),
24301         (gst_bin_remove_func), (gst_bin_remove), (iterate_child),
24302         (gst_bin_iterate_elements), (iterate_child_recurse),
24303         (gst_bin_iterate_recurse), (gst_bin_dispose), (compare_name),
24304         (gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
24305         (compare_interface), (gst_bin_get_by_interface),
24306         (gst_bin_iterate_all_by_interface), (gst_bin_iterate_func):
24307         * gst/gstbin.h:
24308         * gst/gstbuffer.c: (gst_buffer_get_type), (_gst_buffer_sub_free),
24309         (gst_buffer_default_free), (gst_buffer_default_copy),
24310         (gst_buffer_new), (gst_buffer_get_caps), (gst_buffer_set_caps),
24311         (gst_buffer_create_sub):
24312         * gst/gstbuffer.h:
24313         * gst/gstcaps.c: (gst_caps_get_type), (gst_caps_new_empty),
24314         (_gst_caps_free), (gst_caps_make_writable), (gst_caps_ref),
24315         (gst_caps_unref), (gst_static_caps_get),
24316         (gst_caps_remove_and_get_structure), (gst_caps_append),
24317         (gst_caps_append_structure), (gst_caps_remove_structure),
24318         (gst_caps_copy_nth), (gst_caps_set_simple),
24319         (gst_caps_set_simple_valist), (gst_caps_is_fixed_foreach),
24320         (gst_structure_is_equal_foreach), (gst_caps_is_subset),
24321         (gst_caps_structure_intersect_field), (gst_caps_intersect),
24322         (gst_caps_structure_subtract_field), (gst_caps_subtract),
24323         (gst_caps_normalize_foreach), (gst_caps_compare_structures),
24324         (gst_caps_structure_figure_out_union),
24325         (gst_caps_switch_structures), (gst_caps_do_simplify),
24326         (gst_caps_replace), (gst_caps_from_string),
24327         (gst_caps_copy_conditional):
24328         * gst/gstcaps.h:
24329         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_ref),
24330         (_gst_clock_id_free), (gst_clock_id_unref),
24331         (gst_clock_id_compare_func), (gst_clock_id_wait),
24332         (gst_clock_id_wait_async), (gst_clock_class_init),
24333         (gst_clock_init), (gst_clock_dispose), (gst_clock_adjust_unlocked),
24334         (gst_clock_get_time), (gst_clock_set_time_adjust),
24335         (gst_clock_set_property), (gst_clock_get_property):
24336         * gst/gstclock.h:
24337         * gst/gstcompat.h:
24338         * gst/gstcpu.c: (_gst_cpu_initialize_i386), (gst_cpu_get_flags):
24339         * gst/gstdata.c: (gst_data_is_writable), (gst_data_copy_on_write):
24340         * gst/gstdata.h:
24341         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
24342         (gst_element_requires_clock), (gst_element_provides_clock),
24343         (gst_element_set_clock), (gst_element_clock_wait),
24344         (gst_element_wait), (gst_element_set_time_delay),
24345         (gst_element_is_indexable), (gst_element_add_pad),
24346         (gst_element_add_ghost_pad), (gst_element_remove_pad),
24347         (pad_compare_name), (gst_element_get_static_pad),
24348         (gst_element_request_pad), (gst_element_get_request_pad),
24349         (gst_element_get_pad), (iterate_pad), (gst_element_iterate_pads),
24350         (gst_element_class_get_pad_template_list),
24351         (gst_element_class_get_pad_template), (gst_element_error_func),
24352         (gst_element_get_random_pad), (gst_element_get_event_masks),
24353         (gst_element_send_event), (gst_element_seek),
24354         (gst_element_get_query_types), (gst_element_query),
24355         (gst_element_get_formats), (gst_element_convert),
24356         (gst_element_is_locked_state), (gst_element_set_locked_state),
24357         (gst_element_sync_state_with_parent), (gst_element_change_state),
24358         (gst_element_finalize), (gst_element_yield),
24359         (gst_element_interrupt), (gst_element_set_scheduler),
24360         (gst_element_get_scheduler), (gst_element_set_loop_function):
24361         * gst/gstelement.h:
24362         * gst/gstevent.h:
24363         * gst/gstformat.c: (_gst_format_initialize), (gst_format_register),
24364         (gst_format_get_by_nick), (gst_format_get_details),
24365         (gst_format_iterate_definitions):
24366         * gst/gstformat.h:
24367         * gst/gstindex.c: (gst_index_gtype_resolver):
24368         * gst/gstinfo.c:
24369         * gst/gstinfo.h:
24370         * gst/gstmemchunk.c: (gst_mem_chunk_alloc), (gst_mem_chunk_alloc0),
24371         (gst_mem_chunk_free):
24372         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
24373         (gst_object_ref), (gst_object_unref), (gst_object_sink),
24374         (gst_object_replace), (gst_object_dispose), (gst_object_finalize),
24375         (gst_object_dispatch_properties_changed),
24376         (gst_object_set_name_default), (gst_object_set_name),
24377         (gst_object_get_name), (gst_object_set_name_prefix),
24378         (gst_object_get_name_prefix), (gst_object_set_parent),
24379         (gst_object_get_parent), (gst_object_unparent),
24380         (gst_object_check_uniqueness), (gst_object_save_thyself),
24381         (gst_object_restore_thyself), (gst_object_real_restore_thyself),
24382         (gst_object_set_property), (gst_object_get_property),
24383         (gst_object_get_path_string):
24384         * gst/gstobject.h:
24385         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
24386         (gst_real_pad_init), (gst_real_pad_get_property),
24387         (gst_pad_custom_new), (gst_pad_get_direction),
24388         (gst_pad_set_active), (gst_pad_is_active),
24389         (gst_pad_set_event_function), (gst_pad_is_linked),
24390         (gst_pad_link_free), (gst_pad_link_intersect),
24391         (gst_pad_link_fixate), (gst_pad_set_caps),
24392         (gst_pad_try_set_caps_nonfixed), (gst_pad_set_pad_template),
24393         (gst_pad_get_real_parent), (gst_pad_add_ghost_pad),
24394         (gst_pad_remove_ghost_pad), (_gst_pad_default_fixate_foreach),
24395         (gst_pad_link_unnegotiate), (gst_pad_proxy_fixate),
24396         (gst_pad_get_caps), (gst_pad_peer_get_caps),
24397         (gst_pad_get_pad_template_caps), (gst_pad_get_peer),
24398         (gst_pad_realize), (gst_pad_get_allowed_caps),
24399         (gst_real_pad_dispose), (gst_real_pad_finalize),
24400         (gst_pad_collectv), (gst_pad_collect_valist),
24401         (gst_pad_template_dispose), (gst_pad_template_new),
24402         (gst_pad_get_internal_links):
24403         * gst/gstpad.h:
24404         * gst/gstpipeline.c: (gst_pipeline_dispose),
24405         (gst_pipeline_change_state):
24406         * gst/gstpipeline.h:
24407         * gst/gstplugin.c:
24408         * gst/gstpluginfeature.c: (gst_plugin_feature_get_name),
24409         (gst_plugin_feature_set_rank), (gst_plugin_feature_get_rank):
24410         * gst/gstpluginfeature.h:
24411         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
24412         * gst/gstquery.c: (_gst_query_type_initialize),
24413         (gst_query_type_register), (gst_query_type_get_by_nick),
24414         (gst_query_type_get_details), (gst_query_type_iterate_definitions):
24415         * gst/gstquery.h:
24416         * gst/gstqueue.c: (gst_queue_link_sink), (gst_queue_link_src):
24417         * gst/gstscheduler.c: (gst_scheduler_add_element),
24418         (gst_scheduler_factory_create):
24419         * gst/gststructure.c: (gst_structure_set_parent_refcount),
24420         (gst_structure_free), (gst_structure_set_name),
24421         (gst_structure_id_set_value), (gst_structure_set_value),
24422         (gst_structure_set_valist), (gst_structure_remove_field),
24423         (gst_structure_remove_fields),
24424         (gst_structure_remove_fields_valist),
24425         (gst_structure_remove_all_fields), (gst_structure_foreach),
24426         (gst_structure_map_in_place),
24427         (gst_caps_structure_fixate_field_nearest_int),
24428         (gst_caps_structure_fixate_field_nearest_double):
24429         * gst/gststructure.h:
24430         * gst/gstsystemclock.c: (gst_system_clock_class_init),
24431         (gst_system_clock_init), (gst_system_clock_dispose),
24432         (gst_system_clock_async_thread),
24433         (gst_system_clock_id_wait_unlocked), (gst_system_clock_id_wait),
24434         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
24435         * gst/gstsystemclock.h:
24436         * gst/gsttag.c: (gst_tag_list_add_value_internal),
24437         (gst_tag_list_copy_foreach), (structure_foreach_wrapper):
24438         * gst/gsttaginterface.c:
24439         * gst/gstthread.c: (gst_thread_dispose),
24440         (gst_thread_release_children_locks), (gst_thread_change_state),
24441         (gst_thread_main_loop):
24442         * gst/gsttrashstack.h:
24443         * gst/gsttypefind.c: (gst_type_find_factory_dispose):
24444         * gst/gsttypes.h:
24445         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
24446         (gst_element_request_pad), (gst_element_get_pad_from_template),
24447         (gst_element_request_compatible_pad),
24448         (gst_element_get_compatible_pad_filtered),
24449         (gst_element_get_compatible_pad), (gst_element_state_get_name),
24450         (gst_element_link_pads_filtered), (gst_element_link_filtered),
24451         (gst_element_link_many), (gst_element_link),
24452         (gst_element_link_pads), (gst_element_unlink_pads),
24453         (gst_element_unlink_many), (gst_element_unlink),
24454         (gst_pad_can_link_filtered), (gst_pad_can_link),
24455         (gst_pad_use_fixed_caps), (gst_pad_get_fixed_caps_func),
24456         (gst_object_default_error), (gst_bin_add_many),
24457         (gst_bin_remove_many), (gst_element_populate_std_props),
24458         (gst_element_class_install_std_props), (gst_buffer_merge),
24459         (gst_buffer_stamp), (intersect_caps_func), (gst_pad_proxy_getcaps),
24460         (link_fold_func), (gst_pad_proxy_setcaps):
24461         * gst/gstutils.h:
24462         * gst/gstvalue.c: (gst_value_deserialize_string):
24463         * gst/parse/grammar.y:
24464         * gst/schedulers/gstbasicscheduler.c:
24465         (gst_basic_scheduler_cothreaded_chain),
24466         (gst_basic_scheduler_chain_recursive_add),
24467         (gst_basic_scheduler_pad_link):
24468         * gst/schedulers/gstoptimalscheduler.c:
24469         (get_group_schedule_function),
24470         (gst_opt_scheduler_state_transition),
24471         (gst_opt_scheduler_add_element), (element_get_reachables_func):
24472         * libs/gst/bytestream/bytestream.c:
24473         * libs/gst/dataprotocol/dataprotocol.c:
24474         (gst_dp_header_from_buffer):
24475         * po/nb.po:
24476         * po/ru.po:
24477         * tests/threadstate/threadstate2.c: (eos):
24478         * tools/gst-compprep.c: (main):
24479         * tools/gst-inspect.c: (print_field), (print_element_flag_info),
24480         (print_pad_info), (print_children_info):
24481         * tools/gst-launch.c: (idle_func), (main):
24482         * tools/gst-md5sum.c: (idle_func), (main):
24483         * tools/gst-xmlinspect.c: (print_element_info):
24484         First THREADED backport attempt, focusing on adding locks and
24485         making sure the API is threadsafe. Needs more work. More docs
24486         follow this week.
24488 2005-02-24  Andy Wingo  <wingo@pobox.com>
24490         * tests/bench-complexity.scm:
24491         * tests/complexity.gnuplot: New files, good for running complexity
24492         benchmarks.
24494         * tests/Makefile.am:
24495         * tests/complexity.c: New test, sets up N elements, at each level
24496         teeing into M streams per element. Eeeenteresting.
24498         * tests/mass_elements.gnuplot: gnuplot file for the mass_elements
24499         benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after
24500         running bench-mass_elements.scm.
24502         * tests/bench-mass_elements.scm: New script, runs mass_elements
24503         for various numbers of identities, outputting the results to a
24504         file. Requires guile 1.6. Just for testing.
24506 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24508         * gst/schedulers/fairscheduler.c:
24509           compile with debug disabled
24511 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
24513         * configure.ac:
24514           hunting season on 0.9 is now OPEN