changelog
[platform/upstream/gstreamer.git] / ChangeLog
1 2008-10-08  Andy Wingo  <wingo@pobox.com>
2
3         * docs/gst/gstreamer-sections.txt: Placate doc pendants.
4
5 2008-10-08  Wim Taymans  <wim.taymans@collabora.co.uk>
6
7         * gst/gstghostpad.c:
8         * gst/gstghostpad.h:
9         Unbreak -good build, private is a reserved c++ keyword.
10
11 2008-10-08  Andy Wingo  <wingo@pobox.com>
12
13         * gst/gstghostpad.h (GST_GHOST_PAD_CAST):
14         * gst/gstghostpad.c (GST_GHOST_PAD_CAST): Fix unintended API
15         removal: re-add GST_GHOST_PAD_CAST to the header.
16
17         * gst/gstghostpad.h (GstProxyPad, GstProxyPadClass, GstGhostPad)
18         (GstGhostPadClass): Publically expose these structures so as to
19         allow easy subclassing from C. Hide the member data behind a
20         private opaque data pointer.
21
22         * gst/gstghostpad.c: Adapt to store instance data in the type
23         instance's private data region, not in the public struct.
24
25 2008-10-08  Andy Wingo  <wingo@pobox.com>
26
27         * gst/gstghostpad.c (gst_ghost_pad_construct): If we got a
28         template via g_object_get(), be sure to unref it.
29
30         * gst/gstbuffer.h (GST_BUFFER_FREE_FUNC): Fix incorrect doc.
31
32 2008-10-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
33
34         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache):
35         If we can't get a cache file don't try to save something to it.
36         Dereferencing NULL pointers usually isn't a good idea.
37
38 2008-10-07  Jan Schmidt - Sun Microsystems <jan.schmidt@sun.com>
39
40         * tests/check/Makefile.am:
41         * tests/check/gst/gstabi.c:
42         * tests/check/gst/struct_sparc.h:
43         * tests/check/libs/libsabi.c:
44         * tests/check/libs/struct_sparc.h:
45         Add Sparc ABI checks
46
47         * tests/check/gst/gstvalue.c: (GST_START_TEST):
48         Cast signed integer to unsigned to avoid a compiler warning.
49
50 2008-10-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
51
52         * libs/gst/base/gstbytereader.c: (gst_byte_reader_get_uint24_le),
53         (gst_byte_reader_get_uint24_be), (gst_byte_reader_get_int24_le),
54         (gst_byte_reader_get_int24_be), (gst_byte_reader_peek_uint24_le),
55         (gst_byte_reader_peek_uint24_be), (gst_byte_reader_peek_int24_le),
56         (gst_byte_reader_peek_int24_be):
57         Use new GST_READ_UINT24_(LE|BE) macros.
58
59 2008-10-07  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
60
61         * docs/gst/gstreamer-sections.txt:
62         * gst/gstutils.h:
63         Always use the unaligned variants of GST_READ_UINT* and GST_WRITE_UINT*
64         as it's too easy to break the ISO C strict aliasing rules with simple
65         casts to the corresponding type and this would introduce hard to debug
66         bugs. Fixes bug #545714.
67
68         API: Add GST_READ_UINT24_(LE|BE) and GST_WRITE_UINT24_(LE|BE).
69
70 2008-10-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
71
72         * gst/gstbuffer.h: (GST_BUFFER_FREE_FUNC):
73         * gst/gstghostpad.c: (gst_ghost_pad_construct):
74           Add 'Since' bits to gtk-doc chunks for new API.
75
76 2008-10-06  Thijs Vermeir  <thijsvermeir@gmail.com>
77
78         * docs/gst/gstreamer-sections.txt:
79         Fix documentation
80
81 2008-10-06  Andy Wingo  <wingo@pobox.com>
82
83         * gst/gstbuffer.h (GST_BUFFER_FREE_FUNC): New API, a free function
84         that will be called on the malloc_data to free it. Basically a way
85         to avoid subclassing when all you need is a different free
86         function, i.e. free() instead of g_free().
87
88         * gst/gstbuffer.c (gst_buffer_finalize): Free malloc_data via
89         calling the free function.
90         (gst_buffer_init): Initialize the free function to g_free.
91
92 2008-10-06  Andy Wingo  <wingo@pobox.com>
93
94         * gst/gstghostpad.h:
95         * gst/gstghostpad.c (gst_ghost_pad_construct): New function,
96         finishes the initialization of ghost pad. Useful for language
97         bindings and subclassers of GstGhostPad. Fixes #539108.
98         (gst_ghost_pad_new_full): Use the new constructor.
99
100 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
101
102         Base on Patch by: Olivier Crete <tester at tester dot ca>
103
104         * gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
105         (gst_bin_remove_func), (update_degree),
106         (gst_bin_sort_iterator_new), (gst_bin_handle_message_func):
107         Keep track of pads that are being linked/unlinked and resync the state
108         changes.
109
110         * gst/gstpad.c: (gst_pad_get_direction),
111         (gst_pad_set_chain_function), (gst_pad_set_getrange_function),
112         (gst_pad_set_checkgetrange_function), (gst_pad_unlink),
113         (gst_pad_link_prepare), (gst_pad_link),
114         (gst_pad_event_default_dispatch), (gst_pad_chain), (gst_pad_push),
115         (gst_pad_check_pull_range), (gst_pad_get_range),
116         (gst_pad_pull_range):
117         Some code cleanups, use macros to check pad direction.
118         Don't need to take the lock on the pad direction.
119         Post structure change when pads are linked/unlinked.
120         Change some checks into _return_if_fail().
121
122         * tests/check/gst/gstbin.c:
123         (test_link_structure_change_state_changed_sync_cb),
124         (GST_START_TEST), (gst_bin_suite):
125         Add testcase for pad link/unlinke resync during a state change.
126         Fixes #510354.
127
128 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
129
130         * docs/gst/gstreamer-sections.txt:
131         * gst/gstmessage.c: (gst_message_new_structure_change),
132         (gst_message_parse_structure_change):
133         * gst/gstmessage.h:
134         Implement STRUCTURE_CHANGED messages. These messages will be used to
135         signal the parent bin of link/unlink operations that could require a
136         resync when doing a state change. See ##510354.
137         API: gst_message_new_structure_change()
138         API: gst_message_parse_structure_change()
139
140 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
141
142         * gst/gstquark.c:
143         * gst/gstquark.h:
144         Add some more quarks for new message. See #510354.
145
146 2008-10-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
147
148         * docs/libs/gstreamer-libs-docs.sgml:
149         * docs/libs/gstreamer-libs-sections.txt:
150         * libs/gst/base/Makefile.am:
151         * libs/gst/base/gstbitreader.c: (gst_bit_reader_new),
152         (gst_bit_reader_new_from_buffer), (gst_bit_reader_free),
153         (gst_bit_reader_init), (gst_bit_reader_init_from_buffer),
154         (gst_bit_reader_set_pos), (gst_bit_reader_get_pos),
155         (gst_bit_reader_get_remaining), (gst_bit_reader_skip),
156         (gst_bit_reader_skip_to_byte):
157         * libs/gst/base/gstbitreader.h:
158         * libs/gst/base/gstbytereader.c: (GDOUBLE_SWAP_LE_BE),
159         (GFLOAT_SWAP_LE_BE), (gst_byte_reader_new),
160         (gst_byte_reader_new_from_buffer), (gst_byte_reader_free),
161         (gst_byte_reader_init), (gst_byte_reader_init_from_buffer),
162         (gst_byte_reader_set_pos), (gst_byte_reader_get_pos),
163         (gst_byte_reader_get_remaining), (gst_byte_reader_skip),
164         (gst_byte_reader_get_uint8), (gst_byte_reader_get_int8),
165         (gst_byte_reader_peek_uint8), (gst_byte_reader_peek_int8),
166         (gst_byte_reader_get_uint24_le), (gst_byte_reader_get_uint24_be),
167         (gst_byte_reader_get_int24_le), (gst_byte_reader_get_int24_be),
168         (gst_byte_reader_peek_uint24_le), (gst_byte_reader_peek_uint24_be),
169         (gst_byte_reader_peek_int24_le), (gst_byte_reader_peek_int24_be):
170         * libs/gst/base/gstbytereader.h:
171         * tests/check/Makefile.am:
172         * tests/check/libs/bitreader.c: (GST_START_TEST),
173         (gst_bit_reader_suite):
174         * tests/check/libs/bytereader.c: (GST_START_TEST),
175         (gst_byte_reader_suite):
176         API: Add bit reader and byte reader classes, including documentation
177         and an extensive unit test suite. Fixes bug #553554.
178
179 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
180
181         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position),
182         (gst_base_sink_query):
183         Improve position reporting while flushing and other intermediate state
184         changes. Fixes #553874.
185
186 2008-10-06  Wim Taymans  <wim.taymans@collabora.co.uk>
187
188         Patch by: Antoine Tremblay <hexa00 at gmail dot com>
189
190         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked):
191         Original patch by : Simon Descaries
192         Fix small refount leak in caps compatibility check.
193         Fixes #551676.
194
195 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
196
197         * docs/pwg/advanced-request.xml:
198           Fix 0.8 api usage in example. Fixes #554561
199
200         * docs/pwg/appendix-porting.xml:
201           Change 0.9 to 0.10 here.
202
203 2008-10-06  Stefan Kost  <ensonic@users.sf.net>
204
205         * docs/manual/basics-data.xml:
206           Change "event-event interaction" to "element-element interaction".
207           Fixes #552448. Also fix sample code for seeking and do more 0.8->0.10
208           updates.
209
210 2008-10-05  Jan Schmidt  <jan.schmidt@sun.com>
211
212         * configure.ac:
213         Back to development -> 0.10.21.1
214
215 === release 0.10.21 ===
216
217 2008-10-02  Jan Schmidt <jan.schmidt@sun.com>
218
219         * configure.ac:
220           releasing 0.10.21, "Take These Things From Me"
221
222 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
223
224         * configure.ac:
225         0.10.20.4 pre-release
226
227 2008-09-28  Jan Schmidt  <jan.schmidt@sun.com>
228
229         * libs/gst/base/gstbasetransform.c:
230         * plugins/elements/gstcapsfilter.c:
231         * tests/check/Makefile.am:
232         * tests/check/elements/.cvsignore:
233         * tests/check/elements/capsfilter.c:
234         Fix assertion in basetransform when the subclass chooses not to
235         allocate a buffer in prepare_buffer(), and make capsfilter error out
236         cleanly if requested to apply caps that don't completely specify the
237         buffer. Fixes #551509
238
239 2008-09-24  Wim Taymans  <wim.taymans@collabora.co.uk>
240
241         * libs/gst/base/gstbasetransform.c:
242         (gst_base_transform_prepare_output_buffer):
243         Take new caps ref because our old one might have been gone when the
244         subclass performs a gst_pad_set_caps() on the srcpad. See #548764.
245
246 2008-09-15  Stefan Kost  <ensonic@users.sf.net>
247
248         * configure.ac:
249           Do not probe availability of check unit test library when cross
250           compiling, as test would not work anyway. Also cleanup verbose output
251           of the check test. Fixes #551952.
252
253 2008-09-14  Wim Taymans  <wim.taymans@collabora.co.uk>
254
255         Based on patch by: Antoine Tremblay <hexa00 at gmail dot com>
256
257         * gst/gstelement.c: (gst_element_sync_state_with_parent):
258         Avoid leaking the parent ref when we fail changing the state of the
259         element using gst_element_sync_state_with_parent(). Fixes #551978.
260
261 2008-09-11  Tim-Philipp Müller  <tim.muller at collabora co uk>
262
263         * docs/manual/intro-motivation.xml::
264           Remove some bits that no longer apply, update others (#551642).
265
266 2008-09-10  Jan Schmidt  <jan.schmidt@sun.com>
267
268         * configure.ac:
269         0.10.20.2 pre-release
270
271         * po/LINGUAS:
272         * po/id.po:
273         * po/pt_BR.po:
274
275         New translations.
276
277 2008-09-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
278
279         * win32/common/config.h.in:
280           Add GST_DATADIR, hard-code cpu to x86.
281
282         * win32/common/libgstreamer.def:
283           Spaces to tabs.
284
285 2008-09-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
286
287         * gst/gsttaglist.h:
288           Fix Since: markers for new geo tags.
289
290 2008-09-02  Stefan Kost  <ensonic@users.sf.net>
291
292         * gst/gsttaglist.h:
293           Fix actual tag name define after renaming from altitude to elevation.
294
295 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
296
297         * gst/gstpad.c: (add_unref_pad_to_list),
298         (gst_pad_get_internal_links_default):
299         Add fallback when calling the deprecated function on an element that
300         implements the new internal_link handler.
301
302 2008-09-01  Stefan Kost  <ensonic@users.sf.net>
303
304         * docs/gst/gstreamer-sections.txt:
305         * gst/gsttaglist.c:
306         * gst/gsttaglist.h:
307           Add new tags for geo location and clarify purpose of existing location
308           tag. Fixes #481169
309
310 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
311
312         Patch by: Olivier Crete <tester at tester dot ca>
313
314         * gst/gstpad.c: (gst_pad_iterate_internal_links_default),
315         (gst_pad_event_default_dispatch), (gst_pad_dispatcher):
316         Use thread-safe internal links iterator. Fixes #549504.
317
318 2008-09-01  Wim Taymans  <wim.taymans@collabora.co.uk>
319
320         Based on patch by: Olivier Crete <tester at tester dot ca>
321
322         * docs/gst/gstreamer-sections.txt:
323         * win32/common/libgstreamer.def:
324         * gst/gstpad.c: (gst_pad_init),
325         (gst_pad_set_iterate_internal_links_function),
326         (int_link_iter_data_free), (iterate_pad),
327         (gst_pad_iterate_internal_links_default),
328         (gst_pad_iterate_internal_links), (gst_pad_get_internal_links):
329         * gst/gstpad.h:
330         Add threadsafe replacement functions for getting internal links of an
331         element. Deprecate the old internal links functions.
332         API:GstPad::gst_pad_set_iterate_internal_links_function()
333         API:GstPad::GstPadIterIntLinkFunction
334         API:GstPad::gst_pad_iterate_internal_links()
335         API:GstPad::gst_pad_iterate_internal_links_default()
336
337         * gst/gstghostpad.c: (gst_proxy_pad_do_iterate_internal_links),
338         (gst_proxy_pad_init):
339         Implement threadsafe internal links.
340
341         * tests/check/elements/tee.c: (GST_START_TEST), (tee_suite):
342         Unit test for internal links on tee. See #549504.
343
344 2008-08-30  Edward Hervey  <edward.hervey@collabora.co.uk>
345
346         * tests/check/Makefile.am:
347         libs/transform1 test requires libs/test_transform.c
348
349 2008-08-30  Edward Hervey  <edward.hervey@collabora.co.uk>
350
351         * gst/gstpad.c: (gst_pad_get_internal_links_default):
352         Die evil deadlock, die !
353
354 2008-08-30  Edward Hervey  <edward.hervey@collabora.co.uk>
355
356         * gst/gstutils.c: (gst_element_get_compatible_pad):
357         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
358         * tests/check/gst/gstpad.c: (name_is_valid), (GST_START_TEST):
359         Fix all leaks due to the bug in gst_pad_template_new() by which it does
360         not steal the refcount of the given caps as stated.
361
362         REVERT THIS COMMIT ONCE FIXED !
363         REVERT THIS COMMIT ONCE FIXED !
364         REVERT THIS COMMIT ONCE FIXED !
365         REVERT THIS COMMIT ONCE FIXED !
366         REVERT THIS COMMIT ONCE FIXED !
367         REVERT THIS COMMIT ONCE FIXED !
368
369 2008-08-29  Wim Taymans  <wim.taymans@collabora.co.uk>
370
371         * gst/gstiterator.c:
372         * gst/gstiterator.h:
373         After 3 years it's about time to revise the documentation of the
374         iterator objects.
375
376 2008-08-29  Wim Taymans  <wim.taymans@collabora.co.uk>
377
378         * gst/gstpad.c: (gst_pad_get_internal_links_default):
379         Make the internal links function less thread-unsafe and add some
380         comments, dunno why.
381
382 2008-08-29  Tim-Philipp Müller  <tim.muller at collabora co uk>
383
384         * gst/gst_private.h:
385           Include gstinfo.h even if GST_DISABLE_GST_DEBUG is defined. Fixes
386           build with --disable-gst-debug.
387
388 2008-08-28  David Schleef  <ds@schleef.org>
389
390         * gst/gstpadtemplate.c: Revert last change, since it breaks
391           a few plugins, ffmpeg, alaw, and mulaw.  Code is correct,
392           but shouldn't be enabled until we've released fixed versions
393           of -good and -ffmpeg.
394
395 2008-08-28  Stefan Kost  <ensonic@users.sf.net>
396
397         * gst/gstobject.c:
398           Put the gst_object_get_name() back in.
399
400 2008-08-28  Stefan Kost  <ensonic@users.sf.net>
401
402         * gst/gstpadtemplate.c:
403           The old behaviour was that gst_pad_template_new() takes ownership of
404           the caps. As we now call g_object_new() which calls g_object_set() and
405           which copies the caps, we have to unref them to not leak them. Fixes
406           make valgrid for me.
407
408 2008-08-28  Stefan Kost  <ensonic@users.sf.net>
409
410         * gst/gsturi.c:
411           Don't segfault on input like "tel:+1-123-555-1234".
412
413 2008-08-27  Stefan Kost  <ensonic@users.sf.net>
414
415         * gst/gstobject.c:
416           Due to popular request also include ObjectType in
417           gst_object_get_path_string(). Makes gst-launch -v bit more useful.
418
419 2008-08-26  David Schleef  <ds@schleef.org>
420
421         * gst/gstutils.c: Remove check in gst_pad_query_convert() that
422           src_val must be positive, because that's not a requirement.
423           This causes problems with converting negative granulepos
424           values for Dirac.
425         * gst/gstquery.c: Same, gst_query_new_convert().
426
427 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
428
429         * gst/gstclock.c: (gst_clock_add_observation):
430         Add some more debugging to the clock slaving code.
431
432         * win32/common/libgstbase.def:
433         Add new basetransform method.
434
435 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
436
437         * gst/gstbin.c: (gst_bin_element_set_state):
438         Take the (recursive) state lock between getting the locked state of an
439         element and changing the element state. This allows the application to
440         lock an element's state and then change its state without races.
441
442 2008-08-25  Wim Taymans  <wim.taymans@collabora.co.uk>
443
444         * gst/gstbin.c: (gst_bin_element_set_state):
445         When an element is in the locked state we still want to update the
446         base_time of the element.
447
448 2008-08-21  Wim Taymans  <wim.taymans@collabora.co.uk>
449
450         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
451         Use the result from gst_pad_set_caps() instead of assuming the element
452         always accepted the caps computed by the default negotiate function.
453
454 2008-08-20  Wim Taymans  <wim.taymans@collabora.co.uk>
455
456         * docs/libs/gstreamer-libs-sections.txt:
457         * libs/gst/base/gstbasetransform.c:
458         (gst_base_transform_handle_buffer), (gst_base_transform_getrange),
459         (gst_base_transform_chain), (gst_base_transform_suggest),
460         (gst_base_transform_reconfigure):
461         * libs/gst/base/gstbasetransform.h:
462         Implement method for reconfiguring basetransform.
463         API: GstBaseTransform::gst_base_transform_reconfigure()
464
465 2008-08-20  Stefan Kost  <ensonic@users.sf.net>
466
467         patch by: Murray Cumming <murrayc@murrayc.com>
468
469         * gst/gstutils.c:
470           Mention that this is just like gst_buffer_merge() but with extra
471           unreffing for C coders. Advise language bindings not to wrap it.
472           Fixes Bug #533856.
473           
474           Also fix file comment.
475
476 2008-08-20  Stefan Kost  <ensonic@users.sf.net>
477
478         reviewed by: Wim Taymans <wim.taymans@collabora.co.uk>
479
480         * plugins/elements/gstfakesink.c:
481         * plugins/elements/gstfakesrc.c:
482           Call super::event() when not handling it. Fixes #544855.
483
484 2008-08-19  Michael Smith <msmith@songbirdnest.com>
485
486         Patch by: Alessandro Decina <alessandro@nnva.org>
487         * plugins/elements/gstfilesrc.c:
488           Use 64 bit variants of stat functions on win32, to enable support
489           of large files there.
490           Fixes #547277.
491
492 2008-08-19  Wim Taymans  <wim.taymans@collabora.co.uk>
493
494         * libs/gst/base/gstbasesink.c: (gst_base_sink_render_object),
495         (gst_base_sink_event), (gst_base_sink_chain_unlocked),
496         (gst_base_sink_negotiate_pull), (gst_base_sink_pad_activate_pull),
497         (gst_base_sink_get_position), (gst_base_sink_change_state):
498         Improve position reporting in the flushing state.
499         Also report the position when we are not yet prerolled but we
500         have a newsegment event. Fixes #543444.
501         Improve the pull-based negotiation code.
502
503         * tests/check/elements/fakesink.c: (GST_START_TEST),
504         (fakesink_suite):
505         Add testcase for position reporting while flushing in PAUSED and
506         PLAYING.
507
508         * tests/check/generic/sinks.c: (GST_START_TEST):
509         Update unit-test, we can now query the position as soon as we receive a
510         NEWSEGMENT event.
511
512 2008-08-19  Wim Taymans  <wim.taymans@collabora.co.uk>
513
514         Based on patch by: Jason Zhao <e3423c at motorola dot com>
515
516         * libs/gst/base/gstbasesink.c: (gst_base_sink_render_object):
517         When the subclass event handler releases the PREROLL_LOCK, we could be
518         in the flushing state and we have to ignore the event. Fixes #548394.
519
520 2008-08-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
521
522         * tools/gst-launch.1.in:
523           Document GST_REGISTRY_UPDATE environment variable.
524
525 2008-08-18  Wim Taymans  <wim.taymans@collabora.co.uk>
526
527         * libs/gst/base/gstbasetransform.c:
528         (gst_base_transform_prepare_output_buffer):
529         If the element is configured in passthrough mode but the
530         prepare_output_buffer gave us a new output buffer, discard that buffer
531         and reuse the input buffer.
532
533 2008-08-15  Wim Taymans  <wim.taymans@collabora.co.uk>
534
535         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
536
537         * plugins/elements/gsttee.c: (gst_tee_finalize), (gst_tee_init),
538         (gst_tee_request_new_pad), (gst_tee_release_pad),
539         (gst_tee_find_buffer_alloc), (gst_tee_buffer_alloc):
540         * plugins/elements/gsttee.h:
541         Protect pad_alloc with a new lock so that we can be sure that nothing is
542         performing a pad_alloc when removing the pad. Fixes #547835.
543
544         * tests/check/elements/tee.c: (buffer_alloc_harness_setup),
545         (buffer_alloc_harness_teardown), (app_thread_func),
546         (final_sinkpad_bufferalloc), (GST_START_TEST), (tee_suite):
547         Added testcase for shutdown race.
548
549 2008-08-14  Thijs Vermeir  <thijsvermeir@gmail.com>
550
551         * gst/gstpad.h:
552         Add doc
553
554 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
555
556         * libs/gst/base/gstbasetransform.c:
557         (gst_base_transform_prepare_output_buffer),
558         (gst_base_transform_buffer_alloc):
559         Go over the buffer_alloc function again and make sure we always end up
560         allocating a buffer.
561         Add some more docs.
562         Avoid doing pad alloc when we have a pending suggestion because we
563         cannot yet deal with changing caps in that case. Fixes #547728
564
565 2008-08-14  Stefan Kost  <ensonic@users.sf.net>
566
567         patch by: Luc Pionchon <luc.pionchon@nokia.com>
568
569         * docs/manual/advanced-clocks.xml:
570         * docs/manual/clocks.png:
571         * docs/manual/diagrams-clocks.svg:
572           Add one more image showing different times together with a describing
573           paragraph. Fixes #547729.
574
575 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
576
577         * win32/common/libgstbase.def:
578         Add new method.
579
580 2008-08-14  Wim Taymans  <wim.taymans@collabora.co.uk>
581
582         * libs/gst/base/gstbasetransform.c:
583         (gst_base_transform_transform_caps),
584         (gst_base_transform_prepare_output_buffer),
585         (gst_base_transform_buffer_alloc), (gst_base_transform_suggest):
586         Don't overwrite the outsize when calculating the expected size of a new
587         buffer because we still need it in case we cannot process the new
588         buffer.
589         When converting the size of the new buffer to an upstream size, actually
590         use the expected size of the buffer, not some other random value.
591         Use an atomic int to signal that a new upstream caps suggestion is
592         available.
593         When we can convert the current buffer to a new format, check if the
594         buffer size is of the expected size and allocate a new buffer of the
595         expected size when this is not the case. Fixes #546883.
596
597         * tests/check/libs/transform1.c: (GST_START_TEST):
598         remove ifdeffed code from the unit test.
599
600 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
601
602         * pkgconfig/gstreamer-uninstalled.pc.in:
603         * pkgconfig/gstreamer.pc.in:
604           Remove -lgstcontrol-0.10 which never worked anyway as the lib is
605           called gstcontroller-0.10.
606
607 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
608
609         * gst/gstchildproxy.h:
610         * gst/gstpreset.h:
611           Remove double interface from doc-string.        
612
613 2008-08-12  Stefan Kost  <ensonic@users.sf.net>
614
615         * libs/gst/base/gstbasesrc.c:
616         * libs/gst/base/gstbasetransform.c:
617           Fix headings in docs and gtk-doc warnings.
618
619 2008-08-11  Michael Smith <msmith@songbirdnest.com>
620
621         * gst/gstregistrybinary.c:
622           Don't use g_mkstmp() on win32, it's unsafe if glib is using a different
623           libc.
624           Fixes #544776.
625
626 2008-08-11  Edward Hervey  <edward.hervey@collabora.co.uk>
627
628         * libs/gst/base/gstbasetransform.c:
629         (gst_base_transform_buffer_alloc):
630         Fix a "may be used unitialized" warning.
631
632 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
633
634         * docs/gst/gstreamer-sections.txt:
635         * gst/gstpreset.h:
636           Document preset-iface vmethods.
637
638 2008-08-11  Stefan Kost  <ensonic@users.sf.net>
639
640         * docs/manual/advanced-interfaces.xml:
641           Turn thoughts about HAL into a note-tag. Remove mentioning that is
642           only used to discover devices.
643
644 2008-08-07  Tim-Philipp Müller  <tim.muller at collabora co uk>
645
646         Patch by: Frederic Crozat <fcrozat@mandriva.org>
647
648         * gst/gst.c: (init_pre):
649         Make sure gettext returns translations in UTF-8 encoding rather
650         than in the current locale encoding (#546822).
651
652 2008-08-07  Wim Taymans  <wim.taymans@collabora.co.uk>
653
654         * gst/gstcaps.c: (gst_caps_structure_is_subset_field):
655         Fix subset test.
656
657         * tests/check/gst/gstcaps.c: (GST_START_TEST):
658         Improve unit test subset tests and add a testcase for the subset failure
659         cases.
660
661         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
662         Improve subtraction unit test.
663
664 2008-08-07  Stefan Kost  <ensonic@users.sf.net>
665
666         * plugins/elements/gsttee.c:
667           Unlock, instead of locking again.
668
669 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
670
671         * gst/gstpad.h:
672         Clarify the docs a bit more.
673
674 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
675
676         * tests/examples/metadata/read-metadata.c:
677           Don't leak old taglist.
678
679 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
680
681         Patch by: Olivier Crete <tester at tester dot ca>
682
683         * gst/gststructure.c:
684         (gst_structure_fixate_field_nearest_fraction):
685         Avoid overflows in fixation code when dealing with MAXINT values, which
686         v4l2src seems to do.
687         Fixes #546328.
688
689         * tests/check/gst/gststructure.c: (GST_START_TEST):
690         Make a unit test to check the fix. 
691
692 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
693
694         * plugins/elements/gstcapsfilter.c: (copy_func),
695         (gst_capsfilter_set_property):
696         Use new caps suggestion feature of basetransform to request a caps
697         negotiation upstream.
698
699 2008-08-05  Wim Taymans  <wim.taymans@collabora.co.uk>
700
701         * docs/libs/gstreamer-libs-sections.txt:
702         Add new function:
703         API: GstBaseTransform::gst_base_transform_suggest()
704
705         * libs/gst/base/gstbasetransform.c: (gst_base_transform_finalize),
706         (gst_base_transform_init), (gst_base_transform_transform_caps),
707         (gst_base_transform_transform_size),
708         (gst_base_transform_configure_caps),
709         (gst_base_transform_can_transform),
710         (gst_base_transform_find_transform), (gst_base_transform_setcaps),
711         (gst_base_transform_prepare_output_buffer),
712         (gst_base_transform_buffer_alloc),
713         (gst_base_transform_handle_buffer), (gst_base_transform_getrange),
714         (gst_base_transform_chain), (gst_base_transform_activate),
715         (gst_base_transform_set_passthrough),
716         (gst_base_transform_is_passthrough),
717         (gst_base_transform_set_in_place),
718         (gst_base_transform_is_in_place), (gst_base_transform_update_qos),
719         (gst_base_transform_set_qos_enabled),
720         (gst_base_transform_is_qos_enabled),
721         (gst_base_transform_set_gap_aware), (gst_base_transform_suggest),
722         (gst_base_transform_reconfigure):
723         * libs/gst/base/gstbasetransform.h:
724         Rewrite of basetransform to perform negotiation outside of the
725         buffer_alloc functions.  Fixes #545853.
726
727         * tests/check/libs/transform1.c: (GST_START_TEST),
728         (buffer_alloc_ct2):
729         Update unit test.
730
731 2008-08-05  Stefan Kost  <ensonic@users.sf.net>
732
733         * tests/check/gst/gstpreset.c:
734           Only run preset tests when $HOME is writable. Preliminary fix for
735           #545433.
736
737 2008-08-04  Wim Taymans  <wim.taymans@collabora.co.uk>
738
739         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
740         (gst_bin_change_state_func), (bin_handle_async_done),
741         (gst_bin_handle_message_func):
742         Fix race for bins that simulate ASYNC state changes by inserting
743         ASYNC_START and ASYNC_DONE messages in their bus. We need to check for
744         pending ASYNC messages even when the bin does not have ASYNC children.
745         We note detect this behaviour because we will receive an ASYNC message
746         that is originating from the bin itself. 
747         Fixes races with decodebin2 state changes.
748
749         * tests/check/gst/gstbin.c: (GST_START_TEST):
750         Add some more debug.
751
752 2008-08-04  Tim-Philipp Müller  <tim.muller at collabora co uk>
753
754         * gst/gsttaglist.c: (_gst_tag_initialize):
755           Fix typo.
756
757 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
758
759         * gst/gsttaglist.c:
760           Argh. actually save the text before committing. Now adds
761           gst_tag_merge_strings_with_comma() to gst_tag_register().
762
763 2008-08-04  Stefan Kost  <ensonic@users.sf.net>
764
765         * gst/gsttaglist.c:
766         * gst/gsttaglist.h:
767           Do as tim pointed out and actually register the new tag. Also improve
768           te docs and use gst_tag_merge_strings_with_comma() method to allow
769           retriving all keywords merged in one list.
770
771 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
772
773         * configure.ac:
774         * docs/gst/gstreamer.types:
775           Revert 'accidential' change of the configure option removal. We still
776           need to generate the types file in configure --disable-load-save.
777
778 2008-08-01  Stefan Kost  <ensonic@users.sf.net>
779
780         * docs/gst/gstreamer-sections.txt:
781         * gst/gsttaglist.h:
782           Add new taglist item GST_TAG_KEYWORDS, needed for #520694 .
783
784 2008-08-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
785
786         * gst/gstpadtemplate.c:
787           (gst_pad_template_class_init), (gst_static_pad_template_get),
788           (gst_pad_template_new), (gst_pad_template_pad_created),
789           (gst_pad_template_set_property), (gst_pad_template_get_property):
790           Add "name-template", "direction", "presence" and "caps" properties,
791           so that gst_pad_template_new() is just a thin wrapper around
792           g_object_new(), which is better for bindings. (Fixes: #539772)
793
794 2008-07-31  Michael Smith <msmith@songbirdnest.com>
795
796         * gst/gsturi.c:
797           Be more liberal in what URIs we accept.
798           Do not unescape bits of the URI for no apparent reason before passing to
799           the element. Fixes #545352.
800
801 2008-07-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
802
803         Patch by: Robert Schwebel <r.schwebel@pengutronix.de>
804
805         * gst/gst.c:
806         Include gstconfig.h as macros from it are used. Fixes bug #545607.
807
808 2008-07-31  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
809
810         * configure.ac:
811         * docs/gst/gstreamer-sections.txt:
812         * docs/gst/gstreamer.types:
813         * docs/gst/gstreamer.types.in:
814         * gst/Makefile.am:
815         * gst/gst.c:
816         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func):
817         * gst/gstconfig.h.in:
818         * gst/gstelement.c: (gst_element_get_index):
819         * gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
820         (gst_registry_binary_load_feature),
821         (gst_registry_binary_read_cache):
822         * gst/gstregistryxml.c: (load_feature),
823         (gst_registry_xml_read_cache), (gst_registry_xml_save_feature):
824         * plugins/Makefile.am:
825         * tools/gst-indent:
826         * tools/gst-inspect.c: (print_index_info), (print_element_list),
827         (print_plugin_features), (print_element_features):
828         * tools/gst-xmlinspect.c: (print_event_masks),
829         (print_element_info):
830         * win32/common/gstconfig.h:
831         Remove GST_DISABLE_(ENUMTYPES|INDEX|URI) everywhere.
832
833         Disabling the indexers and URI handler code will only reduce the
834         required amount of memory by a very small amount but on the other hand
835         requires much more maintaince work. Apart from that many places of
836         code are broken when disabling them.
837
838         Disabling the enum types doesn't reduce the required amount of memory
839         by more than a few bytes and makes it hard to fix bugs like #539772,
840         i.e. use the enums as GObject properties.
841
842 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
843
844         * docs/design/part-TODO.txt:
845         Add some thoughts and problems with upstream renegotiation.
846
847 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
848
849         * gst/gstpad.c: (gst_pad_acceptcaps_default),
850         (gst_pad_configure_src), (gst_pad_alloc_buffer_full):
851         Remove silly redundant debug.
852         Add some more debug info.
853         Clarify the docs regarding new caps received from pad_alloc.
854
855 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
856
857         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_set_property),
858         (gst_capsfilter_get_property), (gst_capsfilter_transform_caps):
859         Make setting the caps more threadsafe.
860
861 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
862
863         * docs/design/part-element-transform.txt:
864         Update docs.
865
866 2008-07-31  Wim Taymans  <wim.taymans@collabora.co.uk>
867
868         * plugins/elements/gstqueue.c: (gst_queue_init),
869         (gst_queue_acceptcaps):
870         Add and use a custom acceptcaps function instead of falling back to the
871         potentially less optimized default implementation.
872
873 2008-07-29  Tim-Philipp Müller  <tim.muller at collabora co uk>
874
875         * gst/gstpad.c: (gst_pad_alloc_buffer_full):
876           Only sanity-check the buffer size if requested_caps == buffer_caps
877           (ie. don't take pad caps into account, they're not relevant here)
878
879 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
880
881         * plugins/elements/gsttee.c:
882         * plugins/elements/gsttee.h:
883           Reverting as not everything is clear yet. Needs some general design
884           work.
885
886 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
887
888         * ChangeLog:
889           ChangeLog surgery for tee commit.
890
891 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
892
893         * docs/gst/gstreamer-sections.txt:
894           Cleanup section-file.
895
896 2008-07-29  Stefan Kost  <ensonic@users.sf.net>
897
898         * plugins/elements/gsttee.c:
899         * plugins/elements/gsttee.h:
900           Relay tag events in tee. Fixes parts of #474016.
901           Downgrades 3 reoccurring debugs to log.
902
903 2008-07-28  Michael Smith <msmith@songbirdnest.com>
904
905         * configure.ac:
906         * libs/gst/Makefile.am:
907           Build the net library if we have winsock2.
908
909 2008-07-26  Stefan Kost  <ensonic@users.sf.net>
910
911         patch by: Luc Pionchon <luc.pionchon@nokia.com>
912
913         * docs/manual/advanced-threads.xml:
914         * docs/manual/diagrams-pipelines.svg:
915         * docs/manual/hello-world.png:
916         * docs/manual/linked-elements.png:
917         * docs/manual/mime-world.png:
918         * docs/manual/queue.png:
919         * docs/manual/thread-buffering.png:
920         * docs/manual/thread-synchronizing.png:
921           Replace one diagram with two separate ones and updates others.
922           Fixes #542401.
923
924 2008-07-25  Thijs Vermeir  <thijsvermeir@gmail.com>
925
926         * gst/gstelement.h:
927         Fix link in documentation.
928
929 2008-07-24  Thijs Vermeir  <thijsvermeir@gmail.com>
930
931         * gst/gstmessage.c:
932         Fix confusing documentation.
933
934 2008-07-24  Thijs Vermeir  <thijsvermeir@gmail.com>
935
936         * libs/gst/base/gstbasesrc.h:
937         revert the changes to the header file for the ABI.
938
939 2008-07-24  Thijs Vermeir  <thijsvermeir@gmail.com>
940
941         * libs/gst/base/gstbasesrc.c:
942         * libs/gst/base/gstbasesrc.h:
943         Don't cache the seekable status.
944         Fixes bug #544174
945
946 2008-07-24  Rene Stadler  <mail@renestadler.de>
947
948         * docs/manual/advanced-autoplugging.xml: Add fakesink to example
949         code to close the pipeline graph.  This prevents the program from
950         printing internal data flow errors.
951
952 2008-07-23  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
953
954         * docs/manual/basics-bus.xml:
955         Correct typo. Fixes bug #544320.
956
957 2008-07-22  Michael Smith <msmith@songbirdnest.com>
958
959         * configure.ac:
960           Remove AC_ISC_POSIX macro; it's broken on some platforms and not needed.
961           Add check (taken from -base) for winsock, adds WIN32_LIBS
962         * gst/Makefile.am:
963           Add WIN32_LIBS to LIBADD for libgstreamer. Needed now that gstpoll uses
964           winsock.
965           Define GST_EXPORTS when building libgstreamer (only used on win32)
966         * gst/gst_private.h:
967         * gst/gstinfo.h:
968           Use GST_EXPORT instead of locally-defined (and incorrect IMPORT_SYMBOL)
969           for symbols that we need to export in both these files.
970         * gst/gstpoll.c:
971           Include gst_private.h higher up to avoid some compile problems on win32.
972
973 2008-07-22  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
974
975         * gst/gstvalue.c:
976         Fix typos.
977
978 2008-07-22  Thijs Vermeir  <thijsvermeir@gmail.com>
979
980         * gst/gstcaps.c:
981         Previous commit was wrong NULL caps does not exist
982         and indicate an error, so also add a FIXME to
983         gst_caps_is_equal where NULL caps are accepted.
984
985 2008-07-22  Thijs Vermeir  <thijsvermeir@gmail.com>
986
987         * gst/gstcaps.c:
988         Allow passing of NULL to gst_caps_union
989
990 2008-07-21  Thijs Vermeir  <thijsvermeir@gmail.com>
991
992         * gst/gstghostpad.c:
993         Add in doc that gst_ghost_pad_set_target can accept
994         NULL to clear target
995
996 2008-07-15  Michael Smith <msmith@songbirdnest.com>
997
998         * gst/gstplugin.c:
999         * gst/gstregistry.c:
1000           GstRegistryPool doesn't exist; don't refer to it in docs.
1001           Don't refer to functions that don't exist in docs, it's
1002           unhelpful.
1003
1004 2008-07-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1005
1006         * gst/gst.c:
1007         Fix scanning of paths given via --gst-plugin-path. Fixes bug #542175.
1008
1009 2008-07-12  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1010
1011         Patch by: Tristan Matthews <le dot businessman at gmail dot com>
1012
1013         * docs/pwg/building-testapp.xml:
1014         Don't use an undeclared variable in the example program.
1015         Fixes bug #542573.
1016
1017 2008-07-12  Stefan Kost  <ensonic@users.sf.net>
1018
1019         * gst/gstdebugutils.c:
1020           Squeeze ghost-pad links and remove <> from classname labels to save
1021           more horizontal space.
1022
1023 2008-07-11  Stefan Kost  <ensonic@users.sf.net>
1024
1025         * gst/gstdebugutils.c:
1026           Give request and sometimes pads a different shpe style. Condense the
1027           graphs a little more.
1028
1029 2008-07-09  Michael Smith <msmith@songbirdnest.com>
1030
1031         * configure.ac:
1032           Don't require flex and bison if the parser is disabled.
1033
1034 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1035
1036         * libs/gst/controller/gstinterpolationcontrolsource.c:
1037         (_list_find_sorted_custom):
1038         Don't use declarations after statements.
1039
1040 2008-07-08  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1041
1042         * gst/gstchildproxy.c: (gst_child_proxy_base_init):
1043         Add FIXMEs for 0.11 to use GST_TYPE_OBJECT in the signature
1044         of the the child-added / -removed signals as GstChildProxy
1045         only supports GstObjects.
1046
1047 2008-07-07  Thijs Vermeir  <thijsvermeir@gmail.com>
1048
1049         * gst/gstdebugutils.c:
1050         Fix memleak
1051
1052 2008-07-06  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1053
1054         Patch by: Alessandro Decina <alessandro at nnva dot org>
1055
1056         * gst/gstpoll.c:
1057         Fix "ignored return value" compiler warning with newer glibc.
1058
1059 2008-07-05  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1060
1061         * gst/gstchildproxy.c:
1062         Fix copy&paste error in gst_child_proxy_removed() documentation.
1063
1064 2008-07-02  Tim-Philipp Müller  <tim.muller at collabora co uk>
1065
1066         * gst/gstplugin.c: (CHECK_PLUGIN_DESC_FIELD), (gst_plugin_load_file):
1067           Print error debug message if plugin description fields that should
1068           be set are NULL.
1069
1070         * gst/gstregistrybinary.c: (gst_registry_binary_save_const_string):
1071           Don't crash if the string to serialise is NULL (it really should
1072           not be, but apparently this used to work with the xml registry ...).
1073
1074 2008-07-02  Thijs Vermeir  <thijsvermeir@gmail.com>
1075
1076         * tools/gst-plot-timeline.py:
1077         Fix parsing of log messages
1078
1079 2008-07-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
1080
1081         * win32/common/libgstbase.def::
1082           Sort alphabetically so make check-exports doesn't barf.
1083
1084 2008-07-01  Stefan Kost  <ensonic@users.sf.net>
1085
1086         * gst/gstevent.c:
1087           Use gst_format_get_name() to improve debug output.
1088
1089         * gst/gstpreset.c:
1090           Remove #ifdef'ed code. Add TODO comment.
1091
1092         * gst/gstsegment.c:
1093           Add debug output to ease spotting format != segment.format assertions.
1094
1095 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1096
1097         * tests/check/libs/gdp.c: (gst_dp_suite):
1098         Also enable the GDP unit test again on PPC now that the bug
1099         is fixed.
1100
1101 2008-06-30  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1102
1103         * libs/gst/dataprotocol/dataprotocol.c:
1104         Don't write to the same region of memory as a uint64 and uint16
1105         as this breaks strict aliasing rules and apparantly breaks on PPC
1106         and s390. Thanks to Sjoerd Simons for analysing. Fixes bug #348114.
1107
1108 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
1109
1110         * libs/gst/controller/gstinterpolationcontrolsource.c:
1111           Optimize list handling. Use own find function. Exploit that fact that
1112           the list is sorted. Also pass back the node before, so that we can
1113           insert quickly. Have a fast path for append.
1114
1115 2008-06-29  Stefan Kost  <ensonic@users.sf.net>
1116
1117         * docs/design/draft-framestep.txt:
1118         * docs/design/part-negotiation.txt:
1119           Fix two typos.
1120
1121 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1122
1123         * configure.ac:
1124           Show configuration sumary after configure run. Based on patch by
1125           Luc Pionchon <luc.pionchon@nokia.com>. Fixes: #540134
1126
1127 2008-06-27  Stefan Kost  <ensonic@users.sf.net>
1128
1129         patch by: Luc Pionchon  <luc.pionchon@nokia.com>
1130
1131         * docs/manual/advanced-autoplugging.xml:
1132         * docs/manual/advanced-threads.xml:
1133         * docs/manual/basics-bins.xml:
1134         * docs/manual/basics-elements.xml:
1135         * docs/manual/basics-helloworld.xml:
1136         * docs/manual/basics-pads.xml:
1137           Add scale factor for pdf output.
1138
1139         * docs/manual/intro-basics.xml:
1140           Switched sections "pads" and "bins" and added a pipeline diagram.
1141
1142         * docs/manual/intro-gstreamer.xml:
1143           Added more info on gstreamer.
1144
1145         * docs/manual/intro-motivation.xml:
1146           Commented out the whole section "current problem", which sounds
1147           historical and somehow osolete; it could be turned in a positive
1148           way and reused to improve the design principles.
1149
1150         * docs/manual/intro-preface.xml:
1151           - Update URLs to library.gnome.org. 
1152           - Do not mention GTK+ in preliminary reading (irrelevant). 
1153           - Mention Plugin Writer's Manual and further reading only in the
1154             previous section.
1155           - Added a list of most relevant GObject/glib topics.
1156
1157         * docs/manual/Makefile.am:
1158         * docs/manual/bin-element-ghost.fig:
1159         * docs/manual/bin-element-ghost.png:
1160         * docs/manual/bin-element-noghost.fig:
1161         * docs/manual/bin-element-noghost.png:
1162         * docs/manual/bin-element.fig:
1163         * docs/manual/bin-element.png:
1164         * docs/manual/filter-element-multi.fig:
1165         * docs/manual/filter-element-multi.png:
1166         * docs/manual/filter-element.fig:
1167         * docs/manual/filter-element.png:
1168         * docs/manual/gstreamer-overview.png:
1169         * docs/manual/hello-world.fig:
1170         * docs/manual/hello-world.png:
1171         * docs/manual/linked-elements.fig:
1172         * docs/manual/linked-elements.png:
1173         * docs/manual/mime-world.fig:
1174         * docs/manual/mime-world.png:
1175         * docs/manual/queue.fig:
1176         * docs/manual/queue.png:
1177         * docs/manual/simple-player.png:
1178         * docs/manual/sink-element.fig:
1179         * docs/manual/sink-element.png:
1180         * docs/manual/src-element.fig:
1181         * docs/manual/src-element.png:
1182         * docs/manual/diagrams-general.svg:
1183         * docs/manual/diagrams-pipelines.svg:
1184           Removed .fig, added .png counterpart.
1185           
1186           Fixes: #539137
1187
1188 2008-06-26  Thijs Vermeir  <thijsvermeir@gmail.com>
1189
1190         * plugins/elements/gstmultiqueue.c:
1191         * plugins/elements/gstmultiqueue.h:
1192         revert extra-size-buffers stuff, caused some race conditions
1193         and extra-size-buffers is not used anymore. Docs needs some updates
1194
1195 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1196
1197         * win32/common/config.h:
1198         * win32/common/gstenumtypes.c:
1199         * win32/common/gstenumtypes.h:
1200         * win32/common/gstversion.h:
1201           Update win32 files.
1202
1203 2008-06-26  Tim-Philipp Müller  <tim.muller at collabora co uk>
1204
1205         * gst/gstdebugutils.h: (GstDebugGraphDetails),
1206           (GST_DEBUG_BIN_TO_DOT_FILE):
1207           Add missing Since' markers to gtk-doc blurbs.
1208
1209 2008-06-26  Wim Taymans  <wim.taymans@collabora.co.uk>
1210
1211         * tests/check/libs/transform1.c: (buffer_alloc_pt1),
1212         (set_caps_pt1), (GST_START_TEST), (set_caps_pt2), (transform_ip_1),
1213         (set_caps_1), (set_caps_ct1), (transform_ct1),
1214         (transform_caps_ct1), (transform_size_ct1), (buffer_alloc_ct1),
1215         (set_caps_ct2), (transform_ct2), (transform_caps_ct2),
1216         (transform_size_ct2), (buffer_alloc_ct2):
1217         Add some more tests with switching caps in buffer_alloc.
1218
1219 2008-06-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1220
1221         * tests/check/libs/test_transform.c: (gst_test_trans_base_init),
1222         (gst_test_trans_class_init), (result_sink_chain),
1223         (result_buffer_alloc), (gst_test_trans_new), (gst_test_trans_free),
1224         (gst_test_trans_push), (gst_test_trans_pop):
1225         * tests/check/libs/transform1.c: (buffer_alloc_pt1),
1226         (set_caps_pt1), (GST_START_TEST), (set_caps_pt2), (transform_ip_1),
1227         (set_caps_1), (set_caps_ct1), (transform_ct1),
1228         (transform_caps_ct1), (transform_size_ct1), (buffer_alloc_ct1),
1229         (set_caps_ct2), (transform_ct2), (transform_caps_ct2),
1230         (transform_size_ct2), (buffer_alloc_ct2),
1231         (gst_basetransform_suite):
1232         More tests, prepare for tests with switching caps in buffer_alloc.
1233
1234 2008-06-25  Thijs Vermeir  <thijsvermeir@gmail.com>
1235
1236         * plugins/elements/gstmultiqueue.c:
1237         * plugins/elements/gstmultiqueue.h:
1238         Fix dead-lock in underrun_cb
1239
1240 2008-06-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1241
1242         * docs/design/part-states.txt:
1243         Fix device open/close docs.
1244
1245 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1246
1247         * ChangeLog:
1248           Mention bugnumber for last commit.
1249
1250 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1251
1252         patch by: Luc Pionchon  <luc.pionchon@nokia.com>
1253
1254         * docs/manual/manual.xml:
1255         - Reorganised the previous "introduction" bundle into Foreword,
1256         Introduction, and About GStreamer. The two first are <preface>
1257         docbook elements. The later is the first part of the book.
1258         - added intro-gstreamer.xml (content partially from
1259         intro-preface.xml)
1260         - moved appendix-win32.xml into appendix-integration.xml
1261
1262         * docs/manual/intro-preface.xml: gstreamer section moved...
1263         * docs/manual/intro-gstreamer.xml: ...here. new file.
1264
1265         * docs/manual/appendix-win32.xml: removed file. Content moved...
1266         * docs/manual/appendix-integration.xml: ...here.
1267         
1268         * docs/manual/highlevel-components.xml: section about GstEditor moved...
1269         * docs/manual/appendix-checklist.xml: ...here.
1270         
1271         Fixes: 538764
1272
1273 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1274
1275         patch by: Luc Pionchon  <luc.pionchon@nokia.com>
1276
1277         * docs/manual/basics-helloworld.xml:
1278         * docs/manual/hello-world.fig:
1279           - Explicitely include glib.h.
1280           - Do not use global variables.
1281           - Use g_printerr() instead of g_print().
1282           - Minor formating/renaming to increase readibility.
1283           - Renamed new_pad() to on_pad_added()
1284           - Improved explenatory comments.
1285           - renamed ogg parser to ogg demuxer
1286           - Use "autoaudiosink" instead of "alsasink".
1287           Fixes: #538619
1288
1289 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1290
1291         * ChangeLog:
1292           Remove cvs conflict marker.
1293
1294 2008-06-25  Stefan Kost  <ensonic@users.sf.net>
1295
1296         * docs/README:
1297           Document that for plgin-docs we extraxt he short-desc from the element
1298           details.
1299
1300         * docs/design/part-states.txt:
1301           Tell that devices should be closed in PAUSED -> READY.
1302
1303         * docs/manual/README:
1304           Document how tests in the manual are handled.
1305
1306         * docs/manuals.mak:
1307           Typo in comment.
1308
1309 2008-06-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1310
1311         * gst/gstbin.c: (bin_query_latency_fold):
1312         Only care about latency min and max when the sink is actually a live
1313         sink.
1314
1315 2008-06-25  Wim Taymans  <wim.taymans@collabora.co.uk>
1316
1317         * docs/design/part-block.txt:
1318         Fix typo.
1319
1320         * docs/design/part-element-transform.txt:
1321         Add notes about why transform needs to know input/output sizes.
1322         Add some issues that need to be solved.
1323         Add some more use cases.
1324
1325         * tests/check/libs/test_transform.c: (gst_test_trans_base_init),
1326         (gst_test_trans_class_init), (result_sink_chain),
1327         (result_buffer_alloc), (gst_test_trans_new), (gst_test_trans_free),
1328         (gst_test_trans_push), (gst_test_trans_pop):
1329         * tests/check/libs/transform1.c: (buffer_alloc_pt1),
1330         (set_caps_pt1), (GST_START_TEST), (set_caps_pt2), (transform_ip_1),
1331         (set_caps_1), (set_caps_ct1), (transform_ct1),
1332         (transform_caps_ct1), (transform_size_ct1), (buffer_alloc_ct1),
1333         (gst_basetransform_suite):
1334         Add suport for different pad templates and buffer-alloc.
1335         Add more checks for caps and buffer-alloc.
1336         Add checks for proxy buffer alloc.
1337         Add unit test for copy transform.
1338
1339 2008-06-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
1340
1341         Patch by: Luc Pionchon  <luc.pionchon@nokia.com>
1342
1343         * docs/manual/appendix-integration.xml:
1344         * docs/manual/appendix-licensing.xml:
1345         * docs/manual/basics-elements.xml:
1346         * docs/manual/basics-helloworld.xml:
1347         * docs/manual/basics-pads.xml:
1348         * docs/manual/highlevel-components.xml:
1349         * docs/manual/highlevel-xml.xml:
1350         * docs/manual/intro-basics.xml:
1351         * docs/manual/intro-preface.xml:
1352           Typo and formatting fixes (#538594).
1353
1354 2008-06-24  Sebastian Dröge  <sebastian.droege@collabora.co.uk>
1355
1356         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
1357         Fix some memory leaks and uses of object instances that we don't
1358         actually own.
1359
1360 2008-06-22  Thijs Vermeir  <thijsvermeir@gmail.com>
1361
1362         * plugins/elements/gstmultiqueue.c:
1363         Add functionality to extra-size-buffers property.
1364
1365 2008-06-22  Thijs Vermeir  <thijsvermeir@gmail.com>
1366
1367         * plugins/elements/gstmultiqueue.c:
1368         Don't update the cur_time on GST_CLOCK_TIME_NONE (#537804) and don't
1369         activate the pads if they are added in STATE_NULL.
1370
1371 2008-06-21  Thijs Vermeir  <thijsvermeir@gmail.com>
1372
1373         * docs/libs/gstreamer-libs-sections.txt:
1374         Add new API to doc
1375         * libs/gst/check/gstcheck.c:
1376         * libs/gst/check/gstcheck.h:
1377         API: gst_check_teardown_pad_by_name
1378
1379 2008-06-21  Thijs Vermeir  <thijsvermeir@gmail.com>
1380
1381         * libs/gst/check/gstcheck.c:
1382         * libs/gst/check/gstcheck.h:
1383         Also setup request pads and allow setup pads by name (#537812)
1384         API: gst_check_setup_src_pad_by_name
1385         API: gst_check_setup_sink_pad_by_name
1386
1387 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1388
1389         * tests/check/gst/gstbuffer.c:
1390         * tests/check/pipelines/parse-launch.c:
1391           Use HAVE_VALGRIND_H some more.
1392
1393 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1394
1395         * scripts/cvs-update.sh:
1396           Pass arguments to make.
1397           Run autoregen.sh if Makefile is not there.
1398
1399 2008-06-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1400
1401         * configure.ac:
1402         * gst/gstinfo.c:
1403           Don't assume that <valgrind/valgrind.h> exists just because
1404           the binary is there.
1405
1406 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1407
1408         * tests/check/Makefile.am:
1409         * tests/check/libs/test_transform.c: (gst_test_trans_base_init),
1410         (gst_test_trans_class_init), (gst_test_trans_init),
1411         (gst_test_trans_set_data), (result_sink_chain),
1412         (gst_test_trans_new), (gst_test_trans_free), (gst_test_trans_push),
1413         (gst_test_trans_pop):
1414         * tests/check/libs/transform1.c: (GST_START_TEST),
1415         (transform_ip_1), (set_caps_1), (gst_basetransform_suite):
1416         Add some test basetransform element and the beginnings of various
1417         unit tests for it.
1418
1419 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1420
1421         * libs/gst/base/gsttypefindhelper.c: (helper_find_peek):
1422         Increase code readability.
1423         Don't try to compare buffer offsets when ther are invalid.
1424
1425 2008-06-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
1426
1427         * docs/design/Makefile.am:
1428           Dist some more design docs.
1429
1430         * docs/random/moving-plugins:
1431           Small addition: good plugins mustn't have functional code
1432           within assertion macros.
1433
1434 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1435
1436         * docs/design/draft-framestep.txt:
1437         Some ideas about a framestep API
1438
1439         * docs/design/part-element-transform.txt:
1440         Start design and use cases for basetransform in order to get it
1441         fixed soon.
1442
1443 2008-06-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
1444
1445         * gst/gsttaglist.h:
1446           In GST_TAG_ATTACHEMENT docs, mention that the file name needs to
1447           be in UTF-8 encoding.
1448
1449 2008-06-20  Tim-Philipp Müller  <tim.muller at collabora co uk>
1450
1451         * gst/gstbus.c:
1452           Make it known that gst_bus_poll() is pure evil (fixes #538810).
1453
1454 2008-06-20  Stefan Kost  <ensonic@users.sf.net>
1455
1456         * plugins/elements/gstcapsfilter.c:
1457         * plugins/elements/gstfakesink.c:
1458         * plugins/elements/gstfakesrc.c:
1459         * plugins/elements/gstfdsink.c:
1460         * plugins/elements/gstfdsrc.c:
1461         * plugins/elements/gstfilesink.c:
1462         * plugins/elements/gstfilesrc.c:
1463         * plugins/elements/gstidentity.c:
1464         * plugins/elements/gstmultiqueue.c:
1465         * plugins/elements/gstqueue.c:
1466         * plugins/elements/gsttee.c:
1467         * plugins/elements/gsttypefindelement.c:
1468           Remove short_description. Add basic docs for gsttypefindelement.
1469           Simplify markup for fakesrc/fdsrc.
1470
1471 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1472
1473         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
1474         Added Since doc.
1475
1476 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1477
1478         Patch by: Joel Larsson <tilljoel at gmail dot com>
1479
1480         * docs/plugins/gstreamer-plugins.args:
1481         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init),
1482         (gst_fd_src_init), (gst_fd_src_update_fd),
1483         (gst_fd_src_set_property), (gst_fd_src_get_property),
1484         (gst_fd_src_create):
1485         * plugins/elements/gstfdsrc.h:
1486         Add timeout property like udpsrc. Fixes #538628.
1487         Add some more docs and example pipelines.
1488
1489 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1490
1491         * docs/libs/gstreamer-libs-sections.txt:
1492         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
1493         (gst_base_sink_query_latency), (gst_base_sink_set_render_delay),
1494         (gst_base_sink_get_render_delay), (gst_base_sink_wait_eos),
1495         (gst_base_sink_do_sync):
1496         * libs/gst/base/gstbasesink.h:
1497         * win32/common/libgstbase.def:
1498         Add method to allow sinks to specify additional delay between the sync
1499         times and the actual rendering of the data.
1500         API: gst_base_sink_set_render_delay()
1501         API: gst_base_sink_get_render_delay()
1502
1503 2008-06-20  Jan Schmidt  <jan.schmidt@sun.com>
1504
1505         * configure.ac:
1506         Bump version number back to dev -> 0.10.20.1
1507
1508 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
1509
1510         * docs/gst/gstreamer-sections.txt:
1511         * gst/gsttaglist.c: (_gst_tag_initialize):
1512         * gst/gsttaglist.h:
1513         API: Add GST_TAG_ATTACHMENT for generic file attachments to streams.
1514         Fixes bug #538568.
1515
1516 2008-06-20  Stefan Kost  <ensonic@users.sf.net>
1517
1518         * libs/gst/controller/gstcontroller.c:
1519           Revert one change, that make ret value possible uninitialized.
1520
1521 2008-06-20  Stefan Kost  <ensonic@users.sf.net>
1522
1523         * libs/gst/controller/gstcontroller.c:
1524           Use freeze/thaw notify to sync notify emission a bit (its also more
1525           efficient). Move debug output to LOG (is called a lot in a loop).
1526           Always unset g_values if the have been initialized.
1527
1528 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1529
1530         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
1531         (gst_base_sink_wait_eos), (gst_base_sink_event):
1532         If we have not seen a buffer before EOS, use the segment values to
1533         report the current position instead of invalid positions.
1534
1535 2008-06-20  Stefan Kost  <ensonic@users.sf.net>
1536
1537         * docs/plugins/tmpl/.cvsignore:
1538         * tests/check/gst/.cvsignore:
1539           Ignore more.
1540
1541 2008-06-20  Stefan Kost  <ensonic@users.sf.net>
1542
1543         * libs/gst/controller/gstinterpolation.c:
1544         * libs/gst/controller/gstinterpolationcontrolsource.c:
1545         * tests/check/libs/controller.c:
1546           Rewrite handling of default values. Fix overflow with unsigned types
1547           in linear interpolation. Remove now obsolete _first_value() function.
1548           Add more tests. Fixes #538201.
1549
1550 2008-06-20  Wim Taymans  <wim.taymans@collabora.co.uk>
1551
1552         * libs/gst/base/gstbasetransform.c:
1553         (gst_base_transform_class_init), (gst_base_transform_init),
1554         (gst_base_transform_transform_caps),
1555         (gst_base_transform_prepare_output_buffer):
1556         Add debug info.
1557         When a buffer is writable, its metadata is also writable so we don't
1558         need to subbuffer (which then makes the buffer not-writable anymore).
1559
1560 === release 0.10.20 ===
1561
1562 2008-06-18  Jan Schmidt <jan.schmidt@sun.com>
1563
1564         * configure.ac:
1565           releasing 0.10.20, "You Crazy Diamond"
1566
1567 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1568
1569         * configure.ac:
1570         0.10.19.3 pre-release
1571
1572 2008-06-11  Jan Schmidt  <jan.schmidt@sun.com>
1573
1574         * configure.ac:
1575         * gst/gstpreset.c:
1576         Rename DATADIR to GST_DATADIR to avoid build problems
1577         on win32. Patch By: David Schleef <ds@schleef.org>
1578         Fixes: #536857
1579
1580 2008-06-05  Sebastian Dröge  <slomo@circular-chaos.org>
1581
1582         * configure.ac:
1583         Explicitely link with -ldl if dladdr() is found there. Before it was
1584         implicitely linked by the gmodule pkgconfig file but in glib 2.17.0
1585         -ldl has moved from Libs to Libs.private. Fixes bug #536744.
1586
1587 2008-06-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
1588
1589         * gst/gsterror.c: (_gst_stream_errors_init):
1590           Fix typo (spotted by Fabricio Godoy, #536723).
1591
1592 2008-06-05  Jan Schmidt  <jan.schmidt@sun.com>
1593
1594         * configure.ac:
1595         0.10.19.2 pre-release
1596
1597 2008-06-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1598
1599         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_async_enabled),
1600         (gst_base_sink_set_ts_offset), (gst_base_sink_perform_qos):
1601         Add some debug.
1602         Make sure we don't generate invalid QoS messages.
1603
1604 2008-06-04  Wim Taymans  <wim.taymans@collabora.co.uk>
1605
1606         * gst/gstevent.c: (gst_event_new_qos):
1607         Add some assert and docs for invalid input to the qos function.
1608
1609 2008-05-30  Wim Taymans  <wim.taymans@collabora.co.uk>
1610
1611         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
1612         (gst_base_sink_get_position):
1613         The reported position must always be smaller than the last seen
1614         timestamps (or timestamp + duration for reverse).
1615
1616 2008-05-30  Sebastian Dröge  <slomo@circular-chaos.org>
1617
1618         Patch by: Rob Bradford <rob at robster dot org dot uk>
1619
1620         * gst/gstregistry.c: (gst_registry_scan_path_level):
1621         Don't recurse into .debug directories as some distros install
1622         the debugging symbols next to the plugins in .debug directories
1623         and dlopen() crashes on them sometimes. Fixes bug #508070.
1624
1625         Add FIXME for 0.11 to not recurse into directories at all because
1626         it's very inconsistent to the behaviour of other PATH environment
1627         variables.
1628
1629 2008-05-29  Wim Taymans  <wim.taymans@collabora.co.uk>
1630
1631         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
1632         (gst_base_sink_get_position_last), (gst_base_sink_get_position):
1633         Fix position query range checks in reverse playback.
1634
1635 2008-05-29  Sebastian Dröge  <slomo@circular-chaos.org>
1636
1637         * gst/gstelement.c:
1638         * gst/gstelement.h:
1639         Deprecated gst_element_get_pad() as it can't be used sanely. It's not
1640         clear of the reference to the resulting pad must be released later
1641         or not, resulting in possible leaks. Fixes bug #533865.
1642
1643 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1644
1645         Patch by: José Alburquerque <jaalburqu at svn dot gnome dot org>
1646
1647         * gst/gstelementfactory.c:
1648         Small doc fix. Fixes #535285.
1649
1650 2008-05-28  Wim Taymans  <wim.taymans@collabora.co.uk>
1651
1652         Based on patch by: Bjarne Rosengren <bjarne at axis dot com>
1653
1654         * libs/gst/base/gstbasesrc.c: (gst_base_src_send_event),
1655         (gst_base_src_get_range), (gst_base_src_pad_get_range),
1656         (gst_base_src_loop), (gst_base_src_set_flushing),
1657         (gst_base_src_change_state):
1658         Make sending an EOS event to the basesrc non-blocking even if the
1659         implementation does blocking waits in the create function. This is done
1660         by unlocking the create function when EOS is sent.
1661         Fixes #535218.
1662
1663 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
1664
1665         * tools/gst-inspect.c: (print_element_properties_info):
1666         If possible print the element type of GValueArray properties.
1667
1668 2008-05-28  Sebastian Dröge  <slomo@circular-chaos.org>
1669
1670         * gst/gstiterator.c:
1671         Remove an unused field from the private GstListIterator struct.
1672
1673 2008-05-27  Stefan Kost  <ensonic@users.sf.net>
1674
1675         * libs/gst/controller/gstcontroller.c:
1676           Add parameter guards.
1677
1678 2008-05-27  Stefan Kost  <ensonic@users.sf.net>
1679
1680         * tests/check/gst/gstpipeline.c:
1681           Revert test change and add comment why it should not work.
1682
1683 2008-05-27  Stefan Kost  <ensonic@users.sf.net>
1684
1685         * tests/check/gst/gstpipeline.c:
1686           Extending the test a little to verify that we also get the NULL state-
1687           change message.
1688
1689 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1690
1691         * gst/gstpreset.c: (gst_preset_default_get_meta),
1692           (gst_preset_get_preset_names), (gst_preset_get_property_names),
1693           (gst_preset_load_preset), (gst_preset_save_preset),
1694           (gst_preset_rename_preset), (gst_preset_delete_preset),
1695           (gst_preset_set_meta):
1696           Add Since: markers to docs blurbs.
1697
1698         * win32/common/libgstreamer.def:
1699           Add recently-added API.
1700
1701 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1702
1703         Patch by: Stefan Kost  <ensonic@users.sf.net>
1704
1705         * configure.ac:
1706         Add DATADIR for storing presets.
1707
1708         * docs/gst/gstreamer-docs.sgml:
1709         * docs/gst/gstreamer-sections.txt:
1710         * docs/gst/gstreamer.types.in:
1711         Add GstPreset to docs.
1712
1713         * gst/Makefile.am:
1714         * gst/gst.h:
1715         * gst/gstpreset.c: (preset_get_paths), (preset_skip_property),
1716         (preset_open_and_parse_header), (preset_parse_version),
1717         (preset_merge), (preset_get_keyfile),
1718         (gst_preset_default_get_preset_names),
1719         (gst_preset_default_get_property_names),
1720         (gst_preset_default_load_preset),
1721         (gst_preset_default_save_presets_file),
1722         (gst_preset_default_save_preset),
1723         (gst_preset_default_rename_preset),
1724         (gst_preset_default_delete_preset), (gst_preset_default_set_meta),
1725         (gst_preset_default_get_meta), (gst_preset_default_randomize),
1726         (gst_preset_default_reset), (gst_preset_get_preset_names),
1727         (gst_preset_get_property_names), (gst_preset_load_preset),
1728         (gst_preset_save_preset), (gst_preset_rename_preset),
1729         (gst_preset_delete_preset), (gst_preset_set_meta),
1730         (gst_preset_get_meta), (gst_preset_class_init),
1731         (gst_preset_base_init), (gst_preset_get_type):
1732         * gst/gstpreset.h:
1733         Add GstPreset to core. Fixes #396779
1734
1735         * tests/check/Makefile.am:
1736         * tests/check/gst/gstpreset.c: (gst_preset_test_get_property),
1737         (gst_preset_test_set_property), (gst_preset_test_class_init),
1738         (gst_preset_test_base_init), (gst_preset_test_get_type),
1739         (gst_preset_test_plugin_init), (GST_START_TEST),
1740         (remove_preset_file), (test_setup), (test_teardown),
1741         (gst_preset_suite):
1742         Add GstPreset unit tests.
1743
1744 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1745
1746         * gst/gstpad.c: (gst_pad_event_default_dispatch):
1747         The default event function on a sinkpad should return TRUE when
1748         there are no internal links but should collect the return values from
1749         the internal links otherwise.
1750
1751 2008-05-27  Wim Taymans  <wim.taymans@collabora.co.uk>
1752
1753         * plugins/elements/gsttypefindelement.c:
1754         (gst_type_find_element_src_event),
1755         (gst_type_find_element_handle_event):
1756         Use faster and safer _pad_push_event().
1757
1758 2008-05-27  Tim-Philipp Müller  <tim.muller at collabora co uk>
1759
1760         * docs/gst/gstreamer-sections.txt:
1761         * gst/gstutils.c: (element_find_unlinked_pad),
1762           (gst_bin_find_unlinked_pad), (gst_bin_find_unconnected_pad),
1763         * gst/gstutils.h:
1764           API: add gst_bin_find_unlinked_pad()
1765           API: deprecate gst_bin_find_unconnected_pad() (#401456)
1766
1767 2008-05-26  Peter Kjellerstedt  <pkj@axis.com>
1768
1769         * gst/gstclock.c:
1770         * gst/gstclock.h:
1771         * gst/gsttask.c:
1772         * gst/gsttask.h:
1773         Fixed a bunch of typos.
1774
1775 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1776
1777         * gst/gstpad.h:
1778         * gst/gstutils.c: (gst_element_unlink), (element_find_unlinked_pad),
1779           (gst_bin_find_unconnected_pad), (gst_parse_bin_from_description),
1780           (gst_parse_bin_from_description_full):
1781         * gst/gstutils.h:
1782           'unconnected pad' -> 'unlinked pad' for consistency (#401456).
1783
1784 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1785
1786         * docs/pwg/advanced-tagging.xml:
1787           Small docs update, can't be bothered to rewrite the nonsensical
1788           examples right now.
1789
1790 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1791
1792         * gst/gstevent.h:
1793           Clarify docs for GST_SEEK_TYPE_CUR (#534505).
1794
1795 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1796
1797         * gst/parse/grammar.y:
1798           Remove unneeded casts.
1799
1800 2008-05-25  Tim-Philipp Müller  <tim.muller at collabora co uk>
1801
1802         * gst/parse/grammar.y:
1803         * tests/check/pipelines/parse-launch.c:
1804           Get all missing elements from a parse launch string if possible
1805           (ie. if the FATAL_ERRORS flag has been specified). Fixes #528178.
1806
1807 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
1808
1809         * tests/check/Makefile.am:
1810         * tests/check/pipelines/parse-launch.c:
1811           Add some unit tests for the new gst_parse_launch*_full() API.
1812           (Exposes a previously-existing memory leak in the error code
1813           path, so adding to VALGRIND_TO_FIX for now).
1814
1815 2008-05-24  Tim-Philipp Müller  <tim.muller at collabora co uk>
1816
1817         * docs/gst/gstreamer-sections.txt:
1818         * gst/gst.c: (init_post):
1819         * gst/gst_private.h: (_GstParseContext):
1820         * gst/gstparse.c: (gst_parse_error_quark), (gst_parse_context_new),
1821           (gst_parse_context_free), (gst_parse_context_get_missing_elements),
1822           (gst_parse_launchv), (gst_parse_launchv_full), (gst_parse_launch),
1823           (gst_parse_launch_full):
1824         * gst/gstparse.h: (GST_PARSE_FLAG_NONE), (GST_PARSE_FLAG_FATAL_ERRORS),
1825           (GstParseFlags), (GstParseContext):
1826         * gst/gstutils.c: (gst_parse_bin_from_description),
1827           (gst_parse_bin_from_description_full):
1828         * gst/gstutils.h:
1829         * gst/parse/grammar.y:
1830         * gst/parse/types.h:
1831         * win32/common/libgstreamer.def:
1832           Add new gst_parse_*_full API (#528178):
1833           API: gst_parse_launch_full()
1834           API: gst_parse_launchv_full()
1835           API: gst_parse_bin_from_description_full()
1836           API: gst_parse_context_new()
1837           API: gst_parse_context_free()
1838           API: gst_parse_context_get_missing_elements()
1839
1840 2008-05-23  Stefan Kost  <ensonic@users.sf.net>
1841
1842         patch by: Suresh Kumar P <sureshkumar.pp@gmail.com>
1843
1844         * docs/faq/gst-uninstalled:
1845           Also support ffmpeg in gst-uninstalled.
1846
1847 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
1848
1849         * configure.ac:
1850         After discussion on IRC use the binary registry as default
1851         but allow to disable it with --disable-binary-registry.
1852
1853         * win32/common/libgstreamer.def:
1854         Add the two new symbols for the binary registry.
1855
1856 2008-05-22  Tim-Philipp Müller  <tim.muller at collabora co uk>
1857
1858         * gst/gstparse.c: (_gst_parse_escape), (gst_parse_launchv):
1859         * gst/gstutils.c: (gst_parse_bin_from_description):
1860         * gst/parse/grammar.y: (graph):
1861           More guards against bad input; typo fix; some minor clean-ups.
1862
1863 2008-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
1864
1865         Patch by: Sjoerd Simons <sjoerd at luon dot net>
1866
1867         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
1868         If nothing else can be used, use the last buffer's start time as
1869         the segment's last stop. Fixes bug #534258.
1870
1871 2008-05-21  Tim-Philipp Müller  <tim.muller at collabora co uk>
1872
1873         * gst/gstpad.c: (gst_pad_alloc_buffer_full):
1874           Move size sanity check to the right place: downstream may return
1875           a buffer with a smaller size if the buffer caps are different than
1876           the requested ones, as may happen when doing reverse negotiation.
1877
1878 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1879
1880         * plugins/elements/gstfilesink.c: (gst_file_sink_set_location),
1881         (gst_file_sink_render):
1882         * plugins/elements/gstfilesrc.c: (gst_file_src_set_location),
1883         (gst_file_src_start):
1884         Small cleanups. Add note adbout g_fopen() on windows and why we don't
1885         use it yet.
1886
1887 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1888
1889         * gst/gstpad.c: (gst_pad_load_and_link):
1890         * gst/gstutils.c: (gst_element_link_pads),
1891         (gst_element_unlink_pads):
1892         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
1893         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
1894         (gst_check_teardown_sink_pad),
1895         (gst_check_element_push_buffer_list):
1896         * tests/check/elements/fakesink.c: (GST_START_TEST):
1897         * tests/check/elements/filesink.c:
1898         * tests/check/elements/filesrc.c: (GST_START_TEST):
1899         * tests/check/elements/multiqueue.c: (setup_multiqueue),
1900         (mq_sinkpad_to_srcpad):
1901         * tests/check/elements/tee.c: (GST_START_TEST):
1902         * tests/check/generic/sinks.c: (GST_START_TEST):
1903         * tests/check/gst/gstbin.c: (GST_START_TEST):
1904         * tests/check/gst/gstevent.c: (GST_START_TEST):
1905         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
1906         * tests/check/gst/gstpipeline.c: (GST_START_TEST):
1907         * tests/check/gst/gstquery.c: (GST_START_TEST):
1908         * tests/check/gst/gstutils.c: (GST_START_TEST):
1909         * tests/check/libs/basesrc.c: (GST_START_TEST):
1910         * tests/check/pipelines/parse-launch.c: (run_delayed_test),
1911         (gst_parse_test_element_change_state):
1912         Don't use gst_element_get_pad().
1913
1914 2008-05-21  Felipe Contreras  <felipe.contreras@gmail.com>
1915
1916         * docs/Makefile.am:
1917         Fix installing plugin documentation when gtk-doc is disabled.
1918
1919 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1920
1921         * docs/manual/advanced-autoplugging.xml:
1922         * docs/manual/basics-helloworld.xml:
1923         * docs/manual/basics-pads.xml:
1924         * docs/manual/highlevel-components.xml:
1925         Avoid using a bad function in the example code.
1926
1927 2008-05-21  Wim Taymans  <wim.taymans@collabora.co.uk>
1928
1929         * gst/gstclock.c: (gst_clock_set_calibration):
1930         Fix debug of the new clock rate.
1931
1932 2008-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
1933
1934         * win32/common/libgstbase.def:
1935         Add gst_base_sink_wait_clock() to the exported symbols.
1936
1937 2008-05-20  Sebastian Dröge  <slomo@circular-chaos.org>
1938
1939         Patch by: Tim-Philipp Müller  <tim.muller at collabora co uk>
1940
1941         * libs/gst/base/gstbasetransform.c:
1942         (gst_base_transform_sink_event):
1943         Unref events that the GstBaseTransform::event vfunc didn't want to
1944         have forwarded by the base class. Closes a leak in identity.
1945         Fixes bug #446763.
1946
1947 2008-05-19  Wim Taymans  <wim.taymans@collabora.co.uk>
1948
1949         * docs/libs/gstreamer-libs-sections.txt:
1950         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_clock):
1951         * libs/gst/base/gstbasesink.h:
1952         Expose a method that was previously used internally to synchronize
1953         against the clock because it can be useful for subclasses too.
1954         API: GstBaseSink::gst_base_sink_wait_clock()
1955
1956 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1957
1958         * gst/gstpad.c: (gst_pad_buffer_alloc_unchecked):
1959           Add sanity check to make sure we don't get smaller buffers
1960           than requested (and fallback to normal buffer alloc if we do).
1961
1962 2008-05-19  Wim Taymans  <wim.taymans@collabora.co.uk>
1963
1964         * libs/gst/base/gstbasesink.c: (gst_base_sink_adjust_time),
1965         (gst_base_sink_wait_clock), (gst_base_sink_wait_eos),
1966         (gst_base_sink_do_sync), (gst_base_sink_chain_unlocked):
1967         Refactor adjusting the running_time with latency and offset into a
1968         separate method.
1969         When doing clipping, we still want to use the subclass get_times method,
1970         just in case the DURATION or TIMESTAMP are not set.
1971
1972 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1973
1974         * docs/gst/gstreamer-sections.txt:
1975         * gst/gsttypefind.c: (gst_type_find_suggest_simple):
1976         * gst/gsttypefind.h:
1977         * win32/common/libgstreamer.def:
1978           API: add gst_type_find_suggest_simple(), #533740.
1979
1980 2008-05-19  Tim-Philipp Müller  <tim.muller at collabora co uk>
1981
1982         * libs/gst/base/gstbasesrc.c: (gst_base_src_start):
1983           Use right error code when typefinding fails, so we can use
1984           the default (translated) error messages.
1985
1986 2008-05-19  Wim Taymans  <wim.taymans@collabora.co.uk>
1987
1988         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range),
1989         (gst_base_src_start):
1990         When the subclass did not set caps on outgoing buffers, configure the
1991         caps we negotiated on the source pad.
1992         When the typefind helper does not find caps, error out properly instead
1993         of doing things with NULL caps.
1994
1995 2008-05-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
1996
1997         * gst/gsttypefind.h:
1998           Tabs to spaces, oh yes!
1999
2000 2008-05-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
2001
2002         * tests/check/gst/gstcaps.c: (test_intersect2), (gst_caps_suite):
2003           Add David's and Benjamin's tests for array intersection to the
2004           unit test suite (#147931).
2005
2006 2008-05-18  Tim-Philipp Müller  <tim.muller at collabora co uk>
2007
2008         * gst/gstevent.c:
2009           Document that gst_event_new_tag() and gst_event_new_navigation()
2010           take ownership of the taglist/structure passed to them. (#533635).
2011
2012 2008-05-17  Jan Schmidt  <jan.schmidt@sun.com>
2013
2014         * docs/Makefile.am:
2015         Don't descend into the plugins dir if plugin docs building
2016         is disabled.
2017
2018         * docs/README:
2019         Add a note about the new type:GTypeName syntax for the plugin
2020         documentation .types file.
2021
2022 2008-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
2023
2024         * gst/gstmessage.c: (gst_message_new_error),
2025         (gst_message_new_warning), (gst_message_new_info):
2026         * gst/gstmessage.h:
2027         Mark the debug string parameters as const. Fixes bug #533490.
2028
2029 2008-05-16  Sebastian Dröge  <slomo@circular-chaos.org>
2030
2031         * libs/gst/base/gsttypefindhelper.c: (helper_find_peek):
2032         Sort buffer cache list by end offsets. This makes sure that we don't
2033         stop to search for a cached buffer that contains the requested data
2034         too early.
2035         Also read a minimum of 4k bytes instead of 512 bytes as this is a bit
2036         more efficient. Fixes bug #459862.
2037
2038 2008-05-14  Stefan Kost  <ensonic@users.sf.net>
2039
2040         * gst/gstinfo.c:
2041           Explain why we copy the list.
2042
2043         * gst/gstpipeline.c:
2044           Improve docs.
2045
2046         * gst/gstutils.c:
2047           Add one debug-log statement to help tracing probelms with linking pads.
2048
2049 2008-05-12  Stefan Kost  <ensonic@users.sf.net>
2050
2051         * tests/check/gst/gstinfo.c:
2052         Add a test for removing the default log handler. Seems to fail under
2053         windows.
2054
2055 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2056
2057         * gst/gstpad.c: (gst_pad_peer_accept_caps):
2058         Release pad lock before calling out to avoid a possible deadlock.
2059
2060 2008-05-14  Wim Taymans  <wim.taymans@collabora.co.uk>
2061
2062         * gst/parse/grammar.y:
2063         Remove unneeded value unset.
2064
2065         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
2066         Add unit test for de/serialization of caps.
2067
2068 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2069
2070         * plugins/elements/gstfakesink.c:
2071         (marshal_VOID__MINIOBJECT_OBJECT), (gst_fake_sink_class_init):
2072         * plugins/elements/gstfakesrc.c: (marshal_VOID__MINIOBJECT_OBJECT),
2073         (gst_fake_src_class_init):
2074         Use custom marshalers that take GstMiniObject as first parameter.
2075         Using OBJECT as parameter while a GstMiniObject is given will lead
2076         to assertions if built with G_ENABLE_DEBUG. Fixes bug #525532.
2077
2078 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2079
2080         * plugins/elements/gsttypefindelement.c:
2081         (gst_type_find_element_handle_event),
2082         (gst_type_find_element_send_cached_events),
2083         (gst_type_find_element_change_state):
2084         Clean up on FLUSH_STOP and not FLUSH_START. Forward both events
2085         immediately.
2086
2087 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2088
2089         * plugins/elements/gsttypefindelement.c:
2090         (gst_type_find_handle_src_query), (stop_typefinding),
2091         (gst_type_find_element_handle_event),
2092         (gst_type_find_element_send_cached_events),
2093         (gst_type_find_element_change_state):
2094         Forward FLUSH_START events immediately and clean up instead of
2095         caching them.
2096
2097 2008-05-13  Sebastian Dröge  <slomo@circular-chaos.org>
2098
2099         Patch by: Sjoerd Simons <sjoerd at luon dot net>
2100
2101         * libs/gst/base/gstbasetransform.c:
2102         (gst_base_transform_buffer_alloc):
2103         Check the caps of the buffer returned by gst_pad_alloc_buffer() and
2104         fall back to default negotiation in the chain function if the caps
2105         are different from what was requested. Fixes bug #526768.
2106
2107 2008-05-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
2108
2109         * gst/gstsegment.c:
2110         * tests/check/gst/gstsegment.c:
2111           No, let's not use g_slice_{dup|copy} here, since they only exist
2112           since GLib 2.14 and we still depend only on >= 2.12. Also add
2113           unit test for gst_segment_copy().
2114
2115 2008-05-09  Tim-Philipp Müller  <tim.muller at collabora co uk>
2116
2117         * gst/gstutils.h: (GST_BOILERPLATE_FULL):
2118           Try to fix 'dereferencing type-punned pointer will break strict
2119           aliasing rules' warnings with C++ compilers and GLib >= 2.14.0: GLib
2120           changed the default GType typedef from gulong to gsize at some point,
2121           but kept GType typedef'ed to gulong for C++ for ABI reasons; the
2122           g_once_* functions all take a gsize * though, so work around the type
2123           mismatch for C++ by doing everything in gsize and casting to GType
2124           later.
2125
2126 2008-05-09  Jan Schmidt  <jan.schmidt@sun.com>
2127
2128         * plugins/elements/gstmultiqueue.c:
2129         Add documentation for the signals to push our core plugin docs
2130         coverage back up to 100%.
2131
2132 2008-05-08  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2133
2134         * gst/gstinfo.h (GST_FUNCTION):
2135           Reverted GST_FUNCTION to the old version as we don't want the
2136           full signature in C++ code. Also added support for MSVC.
2137
2138 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2139
2140         * gst/gstutils.h:
2141         Intern the type name string, similar to what G_DEFINE_TYPE does.
2142
2143 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2144
2145         * gst/gstutils.h:
2146         Make GST_BOILERPLATE thread-safe if building with GLib 2.14 or newer.
2147
2148 2008-05-08  Sebastian Dröge  <slomo@circular-chaos.org>
2149
2150         Based on a patch by: Sjoerd Simons <sjoerd at luon dot net>
2151
2152         * libs/gst/base/gstbasetransform.c:
2153         (gst_base_transform_buffer_alloc):
2154         Don't passthrough buffer allocation too easily if the caps change.
2155         This breaks when working in passthrough mode and upstream changes
2156         it's caps. Fixes bug #526768.
2157
2158 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2159
2160         * gst/gstinfo.c (gst_debug_log_valist):
2161           Improved the __FILE__ part of debug output for MSVC.
2162
2163 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2164
2165         * libs/gst/base/gstbasesrc.c (gst_base_src_default_query):
2166           Declaration after statement fix for compilers like MSVC.
2167
2168 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2169
2170         * win32/common/config.h.in:
2171           Don't define GST_FUNCTION, if GLib supports MSVC we'd much rather
2172           use the real thing than having "???" unconditionally.
2173
2174 2008-05-07  Ole André Vadla Ravnås  <ole.andre.ravnas at tandberg com>
2175
2176         * gst/gstinfo.h (GST_FUNCTION):
2177           Made GST_FUNCTION an alias for G_STRFUNC to avoid duplication.
2178
2179 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2180
2181         * libs/gst/base/gstadapter.c: (gst_adapter_available_fast):
2182         Small code cleanup.
2183
2184         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
2185         (gst_base_sink_set_flushing):
2186         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek):
2187         Fix some comments.
2188
2189 2008-05-07  Wim Taymans  <wim.taymans@collabora.co.uk>
2190
2191         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
2192         (gst_fake_src_init), (gst_fake_src_set_property),
2193         (gst_fake_src_get_property), (gst_fake_src_start):
2194         * plugins/elements/gstfakesrc.h:
2195         Added format property to control the format of the newsegment events.
2196         API: GstFakeSrc:format
2197
2198 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2199
2200         * win32/common/libgstreamer.def:
2201         Add gst_pad_has_name() to the exported symbols.
2202
2203 2008-05-06  Sebastian Dröge  <slomo@circular-chaos.org>
2204
2205         * gst/gstpad.c: (gst_pad_alloc_buffer_full):
2206         * libs/gst/base/gstbasetransform.c:
2207         (gst_base_transform_prepare_output_buffer):
2208         Don't allow negative sizes when allocating new buffers.
2209         Fixes bug #461253.
2210
2211 2008-05-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
2212
2213         Patch by: Sjoerd Simons <sjoerd at luon net>
2214
2215         * gst/gstbus.c: (gst_bus_source_dispatch):
2216           Don't print a warning if the queue is empty when we try to pop
2217           here. That could happen if another thread or callback set the
2218           bus to flushing between the source's check/prepare and the
2219           dispatch being called (#531538).
2220
2221 2008-05-05  Tim-Philipp Müller  <tim.muller at collabora co uk>
2222
2223         * plugins/elements/gstmultiqueue.c:
2224           Small docs fix.
2225         
2226 2008-05-05  Sebastian Dröge  <slomo@circular-chaos.org>
2227
2228         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
2229         Add unit test for deserializing uint64s and check some really large
2230         numbers in the int64 test.
2231
2232 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
2233
2234         * tools/gst-inspect.c: (n_print), (print_hierarchy),
2235         (print_interfaces), (print_element_properties_info),
2236         (print_signal_info):
2237         Use "%s" as format string instead of printing strings directly.
2238
2239 2008-05-04  Sebastian Dröge  <slomo@circular-chaos.org>
2240
2241         * gst/gstclock.c: (gst_clock_set_calibration):
2242         Make some checks actually useful.
2243
2244         * gst/gstregistrybinary.c: (gst_registry_binary_load_plugin):
2245         Remove some unused code. Unsigned integers tend to be >= 0.
2246
2247 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2248
2249         * gst/gstminiobject.c: (gst_value_get_mini_object):
2250           Fix 'Since:' version in gst_value_dup_mini_object() docs blurb: this
2251           function was not in the unscheduled 0.10.19 release.
2252
2253 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2254
2255         * gst/gstregistry.c: (gst_registry_scan_path_level):
2256           Only print one log message per non-plugin file.
2257
2258 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2259
2260         * gst/gstinfo.c: (gst_debug_log_default):
2261           Fix alignment of debug log columns on 64-bit.
2262
2263 2008-05-03  Tim-Philipp Müller  <tim.muller at collabora co uk>
2264
2265         * docs/libs/Makefile.am:
2266         * docs/libs/gstreamer-libs-sections.txt:
2267           Ignore private controller headers for docs.
2268
2269 2008-05-03  Sebastian Dröge  <slomo@circular-chaos.org>
2270
2271         * libs/gst/controller/gstcontrollerprivate.h:
2272         * libs/gst/controller/gsthelper.c:
2273         * libs/gst/controller/gstinterpolation.c:
2274         * libs/gst/controller/gstinterpolationcontrolsource.c:
2275         (gst_interpolation_control_source_set_interpolation_mode):
2276         * libs/gst/controller/gstinterpolationcontrolsourceprivate.h:
2277         * libs/gst/controller/lib.c:
2278         Move some private declarations into private headers.
2279
2280 2008-05-02  Sebastian Dröge  <slomo@circular-chaos.org>
2281
2282         * gst/gstdebugutils.c: (debug_dump_element_pad):
2283         Remove some code that is unused after Stefan's refactoring and uses
2284         uninitialized variables now, resulting in a compiler warning.
2285
2286 2008-05-01  Tim-Philipp Müller  <tim.muller at collabora co uk>
2287
2288         * gst/gstregistry.c: (gst_registry_scan_path_level):
2289           Run g_str_has_suffix() only on the file name, not the
2290           entire file path.
2291
2292 2008-04-30  Tim-Philipp Müller  <tim.muller at collabora co uk>
2293
2294         * plugins/elements/gstqueue.c: (gst_queue_leak_downstream):
2295           Since we're not called only from the chain function any longer,
2296           we can't assume that there's always data in the queue, so move
2297           the is_full check to the beginning of the loop (otherwise we'd
2298           hit the assert when changing the limit properties while the
2299           queue is empty or not running yet).
2300           Also, only set a discont if items were actually removed from
2301           the queue.
2302
2303         * tests/check/elements/queue.c: (test_leaky_downstream):
2304           Test case for the above.
2305
2306 2008-04-30  Wim Taymans  <wim.taymans@collabora.co.uk>
2307
2308         Patch by: Jonas Holmberg <jonas dot holmberg at axis dot com>
2309
2310         * plugins/elements/gstqueue.c: (gst_queue_leak_downstream),
2311         (gst_queue_chain), (queue_capacity_change),
2312         (gst_queue_set_property):
2313         When changing thr max capacity of a leaky queue, immediatly drop buffers
2314         instead of waiting for a push on the sinkpad. Fixes #530637.
2315
2316 2008-04-30  Stefan Kost  <ensonic@users.sf.net>
2317
2318         * gst/gstdebugutils.c:
2319           Refactor code and fix handling of ghostpads and their proxypads.
2320
2321 2008-04-29  Wim Taymans  <wim.taymans@collabora.co.uk>
2322
2323         * docs/gst/gstreamer-sections.txt:
2324         * gst/gstevent.c: (gst_event_has_name):
2325         * gst/gstevent.h:
2326         * tests/check/gst/gstevent.c: (GST_START_TEST):
2327         Add method to conveniently check the name of a custom event with
2328         gst_event_has_name().
2329         Reformat the event docs so that related methods are put together instead
2330         of the default alphabetical sort.
2331         Update unit test with new method.
2332         API: GstEvent::gst_event_has_name()
2333
2334 2008-04-28  Michael Smith <msmith@songbirdnest.com>
2335
2336         * libs/gst/check/Makefile.am:
2337           Don't add an explicit link to libgstreamer-0.10.la; it's already
2338           included in GST_OBJ_LIBS.
2339
2340 2008-04-28  Sebastian Dröge  <slomo@circular-chaos.org>
2341
2342         * gst/gst.c:
2343         Register GstClock type from a type-safe context. Fixes bug #530317.
2344
2345 2008-04-25  Michael Smith <msmith@songbirdnest.com>
2346
2347         Patch by Edward Hervey <edward.hervey@collabora.co.uk>
2348         * tools/gst-run.c:
2349           Include <unistd.h> conditionally on HAVE_UNISTD_H as elsewhere.
2350
2351 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2352
2353         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
2354         (gst_bin_dispose):
2355         Use the GLib stuff to create a private structure.
2356         Add some locking around some dispose methods to make them a little
2357         safer, see #529723. Patch by: Antoine Tremblay <hexa00 at gmail dot com>
2358
2359 2008-04-25  Stefan Kost  <ensonic@users.sf.net>
2360
2361         * libs/gst/base/gstbasesink.h:
2362         * libs/gst/base/gstbasesrc.h:
2363         * libs/gst/base/gstbasetransform.h:
2364         * libs/gst/base/gstcollectpads.h:
2365           Fix doc typos and unify caps a bit.
2366
2367 2008-04-25  Stefan Kost  <ensonic@users.sf.net>
2368
2369         * tools/gst-launch.1.in:
2370           Forgot to also add the envvar docs here.
2371
2372 2008-04-25  Tim-Philipp Müller  <tim at centricular dot net>
2373
2374         * gst/gst.c: (init_post), (gst_deinit):
2375         * tests/check/gst/gstpipeline.c: (GST_START_TEST), (pipeline_thread),
2376           (test_concurrent_create), (gst_pipeline_suite):
2377           Ref some more classes in gst_init() to work around thread-safety
2378           issues in pre-2.16 GLibs, and add basic unit test.
2379
2380 2008-04-25  Wim Taymans  <wim.taymans@collabora.co.uk>
2381
2382         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
2383         (gst_base_sink_send_event):
2384         Rearrange the latency query code. We always want to do the upstream
2385         query, even if we are not live so that the upstream elements can get the
2386         latency results too. If we fail doing the query and we are live, we
2387         return TRUE afterwards.
2388
2389 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
2390
2391         patch by: Jason Zhao <e3423c@motorola.com>
2392
2393         * docs/gst/running.xml:
2394         * gst/gst.c:
2395           Enable/disable scan_and_update_registry() based on commandline switch
2396           or environment variable. Fixes #520468.
2397           
2398         * ChangeLog:
2399           Fix typo in my previous commit.
2400
2401 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
2402
2403         * gst/gstregistrybinary.c:
2404           Add a warning if we hit unhandled factories when saving.
2405           More debug logging detail, but move to LOG category.
2406
2407 2008-04-24  Stefan Kost  <ensonic@users.sf.net>
2408
2409         * gst/gstregistry.c:
2410           Tell the *truth* when improving the documentation.
2411
2412 2008-04-23  Sebastian Dröge  <slomo@circular-chaos.org>
2413
2414         * gst/gstelementfactory.c: (gst_element_factory_make):
2415         Unref the factory after it was used the last time, not before.
2416
2417         * gst/gstindexfactory.c: (gst_index_factory_make):
2418         Improve debugging a bit and don't leak a ref to the index factory with
2419         each call.
2420
2421 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2422
2423         * gst/gstregistry.c:
2424           Improve the documentation.
2425
2426 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2427
2428         * gst/gstsegment.c:
2429           The glib macro seems to be borked. Use g_slice_copy directly and cast
2430           in the hope that this fixes the warning on 64bit.
2431
2432 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2433
2434         * gst/gstsegment.c:
2435           Document the new function. Use g_slice_dup() (no need for
2436           gst_segment_init()).    
2437
2438 2008-04-23  Stefan Kost  <ensonic@users.sf.net>
2439
2440         * docs/gst/gstreamer-sections.txt:
2441           Move GParamSepc macros to standart section.
2442   
2443         * gst/gstbin.c:
2444           Dn't document _get_type - its in private section in docs anyway and
2445           this doc-blob was incomplete.
2446
2447         * gst/gstclock.h:
2448           Fix wrong symbol names in docs.
2449
2450         * gst/gstmacros.h:
2451           Add once doc sentence.
2452
2453         * tests/check/gst/.cvsignore:
2454           Ignore more.
2455
2456 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
2457
2458         * docs/gst/Makefile.am:
2459           And remove those libs here.
2460
2461 2008-04-21  Tim-Philipp Müller  <tim at centricular dot net>
2462
2463         * docs/libs/Makefile.am:
2464           Fix docs build again by adding libgstnet-0.10.so to SCANOBJ_DEPS.
2465
2466 2008-04-21  Wim Taymans  <wim.taymans@collabora.co.uk>
2467
2468         Patch by: Olivier Crete <tester at tester dot ca>
2469
2470         * plugins/elements/gstqueue.c: (gst_queue_handle_src_query):
2471         Add the min-threshold to the min latency if possible. Fixes #529148.
2472
2473 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
2474
2475         * docs/gst/gstreamer.types.in:
2476           Stupid editor, I removed that line as it should go in yet.
2477
2478 2008-04-21  Stefan Kost  <ensonic@users.sf.net>
2479
2480         * docs/gst/gstreamer.types.in:
2481         * docs/libs/gstreamer-libs.types:
2482           Remove library types fro core docs and have them in libs docs.
2483           Reformat and cleanup. Add comment for miniobject types.
2484
2485 2008-04-20  Tim-Philipp Müller  <tim at centricular dot net>
2486
2487         * gst/gsturi.c: (gst_uri_get_protocol):
2488           Fix leak: g_strdown operates on the string in place, while
2489           g_ascii_strdown() returns a newly-allocated string.
2490
2491 2008-04-20  Sebastian Dröge  <slomo@circular-chaos.org>
2492
2493         * tools/gst-inspect.c: (print_uri_handler_info),
2494         (print_element_info):
2495         Print the URI protocols and the URI type supported by the element.
2496
2497 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2498
2499         * gst/gsttaglist.c: (gst_tag_merge_strings_with_comma):
2500         Use g_value_take_string() instead of the deprecated
2501         g_value_set_string_take_ownership().
2502
2503 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2504
2505         * gst/gstregistrybinary.c: (_gst_crc32):
2506         Return the old CRC instead of 0 if we give a NULL buffer
2507         or a buffer with a length of 0.
2508
2509 2008-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
2510
2511         * gst/gsturi.c: (gst_uri_protocol_check_internal),
2512         (gst_uri_get_protocol), (gst_uri_has_protocol),
2513         (gst_uri_construct), (gst_uri_handler_set_uri):
2514         A valid URI scheme can also include '+', '-' and '.' additional
2515         to alphanumeric characters as per RFC 3986 Section 3.1.
2516
2517         Handle URI schemes case insensitive in all places and convert
2518         to lower-case when constructing an URI or setting an URI with
2519         the GstURIHandler interface. Fixes bug #528868.
2520         All elements can still assume (as before) that they will
2521         get passed URIs with a lower-case URI scheme by the GstURIHandler
2522         interface.
2523
2524 2008-04-17  Tim-Philipp Müller  <tim at centricular dot net>
2525
2526         * gst/gstcaps.c: (gst_static_caps_get):
2527         * gst/gstclock.c: (gst_clock_entry_new):
2528           Don't use g_atomic_set_int where it's not needed.
2529
2530 2008-04-17  Wim Taymans  <wim.taymans@collabora.co.uk>
2531
2532         * gst/gstvalue.c: (gst_value_deserialize_caps):
2533         * gst/parse/grammar.y:
2534         Fix 2 caps leaks.
2535
2536 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2537
2538         * gst/gstutils.c: (gst_atomic_int_set):
2539         Use g_atomic_int_set() here too instead of assignment +
2540         g_atomic_int_get().
2541
2542 2008-04-17  Sebastian Dröge  <slomo@circular-chaos.org>
2543         
2544         * gst/gstutils.c:
2545         * gst/gstutils.h:
2546         API: Deprecate gst_atomic_int_set(), g_atomic_int_set() should be used
2547         now that we depend on new enough GLib.
2548
2549         * gst/gstcaps.c: (gst_static_caps_get):
2550         * gst/gstclock.c: (gst_clock_entry_new):
2551         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_set_colored),
2552         (gst_debug_set_default_threshold), (_gst_debug_category_new),
2553         (gst_debug_category_set_threshold):
2554         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
2555         (gst_base_sink_set_qos_enabled):
2556         * libs/gst/net/gstnettimeprovider.c:
2557         (gst_net_time_provider_set_property):
2558         Use g_atomic_int_set() instead of gst_atomic_int_set().
2559
2560 2008-04-16  Stefan Kost  <ensonic@users.sf.net>
2561
2562         * gst/gstquery.c:
2563           Also use G_GINT64_CONSTANT for the queries.
2564
2565 2008-04-16  Stefan Kost  <ensonic@users.sf.net>
2566
2567         * gst/gstmessage.c:
2568           Use G_GINT64_CONSTANT in varargs function.
2569
2570 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
2571
2572         * gst/gstregistrybinary.c: (gst_registry_binary_initialize_magic):
2573         Initialize the registry magic with zeroes.
2574
2575 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
2576
2577         * gst/gstregistrybinary.c: (_gst_crc32),
2578         (gst_registry_binary_write),
2579         (gst_registry_binary_initialize_magic),
2580         (gst_registry_binary_write_cache),
2581         (gst_registry_binary_check_magic),
2582         (gst_registry_binary_read_cache):
2583         * gst/gstregistrybinary.h:
2584         Add crc32 checksum to the binary registry file and check this before
2585         accepting a registry file.
2586
2587         Also free the data list when writing to the registry file fails.
2588
2589 2008-04-16  Sebastian Dröge  <slomo@circular-chaos.org>
2590
2591         * gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
2592         (gst_registry_binary_load_feature),
2593         (gst_registry_binary_load_plugin):
2594         If an element supports the Uri interface, returns a valid pointer
2595         to the supported URI protocols but this pointer contains nothing
2596         don't try to save that as it will corrupt the registry.
2597
2598         Don't unref the plugin if we added it to the registry already but
2599         fail to load a feature as gst_registry_add_plugin() takes ownership
2600         of the plugin.
2601
2602         Improve debugging a bit.
2603
2604 2008-04-16  Stefan Kost  <ensonic@users.sf.net>
2605
2606         * gst/gsttaglist.h:
2607           Clarify some tag item docs after discussion on irc.
2608
2609 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2610
2611         * docs/gst/gstreamer-docs.sgml:
2612           Remove commented out plugins (they have their own docs). Update
2613           comments.
2614
2615 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2616
2617         * docs/gst/gstreamer-docs.sgml:
2618         * docs/gst/gstreamer-sections.txt:
2619         * gst/gstparamspecs.c:
2620         * gst/gstparamspecs.h:
2621           Add GST_PARAM_CONTROLLABLE and GST_PARAM_USER_SHIFT. Move paramspec
2622           docs to own section.
2623
2624         * gst/gstvalue.c:
2625           This now only documents GValue.
2626           
2627         * docs/libs/gstreamer-libs-sections.txt:
2628         * libs/gst/controller/gstcontroller.h:
2629           Remove GST_PARAM_CONTROLLABLE.
2630
2631 2008-04-15  Stefan Kost  <ensonic@users.sf.net>
2632
2633         * docs/README:
2634           Correct file path. Tell about how to use -overrides.txt.
2635         * docs/design/draft-tagreading.txt:
2636           Small design update.
2637
2638 2008-04-14  Sebastian Dröge  <slomo@circular-chaos.org>
2639
2640         * gst/gstregistrybinary.c: (gst_registry_binary_load_feature),
2641         (gst_registry_binary_load_plugin):
2642         Fix a typo in a debug message and revert change from yesterday as
2643         gst_registry_add_plugin() will only fail if something is really wrong
2644         already and we can't survive it anyway.
2645
2646 2008-04-14  Tim-Philipp Müller  <tim at centricular dot net>
2647
2648         * gst/gst.c: (init_post), (gst_deinit):
2649           Pre-register GstGError GType from a thread-safe context
2650           (fixes #527967); unref enum type classes in deinit.
2651
2652 2008-04-13  Tim-Philipp Müller  <tim at centricular dot net>
2653
2654         Patch by: Rene Stadler <mail at renestadler de>
2655
2656         * gst/gsttagsetter.c: (gst_tag_setter_merge_tags):
2657           Merging an empty list with another list in KEEP_ALL mode should
2658           yield an empty list as result and not the second list (#512578).
2659
2660         * tests/check/gst/gsttagsetter.c:
2661           Add unit test for tag merge modes and the aforementioned bug.
2662
2663 2008-04-13  Tim-Philipp Müller  <tim at centricular dot net>
2664
2665         Patch by: Rene Stadler <mail at renestadler de>
2666
2667         * gst/gsttaglist.h:
2668           Fix description to match the order in the table (#512577).
2669   
2670 2008-04-13  Tim-Philipp Müller  <tim at centricular dot net>
2671
2672         Patch by: Kwang Yul Seo  <kwangyul.seo gmail com>
2673
2674         * libs/gst/net/gstnettimepacket.h:
2675         * docs/libs/gstreamer-libs-sections.txt:
2676           Define socklen_t as int if it's not defined yet. Fixes compilation
2677           with MSVC6 and other versions where socklen_t is not defined in
2678           the windows headers (#518022).
2679
2680 2008-04-13  Sebastian Dröge  <slomo@circular-chaos.org>
2681
2682         * gst/gstregistrybinary.c: (gst_registry_binary_load_plugin):
2683         If gst_registry_add_plugin() fails our reference to the plugin is
2684         invalid so don't try to use it anymore and instead error out.
2685
2686 2008-04-12  Tim-Philipp Müller  <tim at centricular dot net>
2687
2688         * tools/gst-xmlinspect.c: (print_element_info), (main):
2689           De-cruft a bit. If no argument is specified, print all elements in
2690           XML syntax rather than a freestyle list of elements like gst-inspect.
2691           Also, don't print XML header chunk unless we actually have something
2692           to print (ie. don't print it before an error message); print error
2693           message to stderr not stdout. Remove support for printing plugin
2694           info (it would just output something freestyle along the lines of
2695           gst-inspect so far), which fixes #514507. Also add license header.
2696
2697 2008-04-11  Julien Moutte  <julien@fluendo.com>
2698
2699         Mac OS X love...
2700         * configure.ac: Merge platform specific defines, introduce a new
2701         define on OS X to remember that forking when updating registry is
2702         unsafe.
2703         * docs/faq/gst-uninstalled: Updated to include gst-libs in the bad
2704         module.
2705         * gst/gst.c: Don't fork when updating registry if GST_HAVE_UNSAFE_FORK
2706         is defined.
2707         * gst/gstregistry.c: (gst_registry_scan_path_level): Fixed a bogus
2708         condition that leads to absolutely no plugins being registered on
2709         OS X.
2710
2711 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
2712
2713         Based on patch by: José Alburquerque <jaalburqu at svn dot gnome dot org>
2714
2715         * gst/gstutils.c: (gst_pad_add_data_probe),
2716           (gst_pad_add_data_probe_full), (gst_pad_add_event_probe),
2717           (gst_pad_add_event_probe_full), (gst_pad_add_buffer_probe),
2718           (gst_pad_add_buffer_probe_full):
2719         * gst/gstutils.h:
2720         * docs/gst/gstreamer-sections.txt:
2721         * win32/common/libgstreamer.def:
2722           Add gst_pad_add_*_probe_full() functions with a notify callback that
2723           lets the caller free the data it passes to the probe functions. This
2724           is useful for bindings such as gst-python or gstreamermm (#526814).
2725           API: gst_pad_add_data_probe_full
2726           API: gst_pad_add_buffer_probe_full
2727           API: gst_pad_add_event_probe_full
2728
2729         * tests/check/gst/gstutils.c:
2730           Add minimal unit test to make sure freeing the data actually works
2731           as expected.
2732
2733         * tests/benchmarks/.cvsignore:
2734           Random cvsignore addendum.
2735
2736 2008-04-10  Tim-Philipp Müller  <tim at centricular dot net>
2737
2738         * gst/gstdebugutils.h: (GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS),
2739           (GST_DEBUG_BIN_TO_DOT_FILE):
2740           Mention GstDebugGraphDetails enum type in doc blurb so we get a link
2741           to it in the docs (since these are macros the types of the arguments
2742           won't be shown in the docs otherwise).
2743
2744 2008-04-10  Stefan Kost  <ensonic@users.sf.net>
2745
2746         * gst/gstpad.c:
2747           Do not abort on out of memory for pad_alloc_buffer.
2748
2749 2008-04-10  Stefan Kost  <ensonic@users.sf.net>
2750
2751         * libs/gst/check/gstcheck.c:
2752           Remove blank line between symbol name ad parameters to fix gtkdoc
2753           warning.
2754
2755 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2756
2757         Patch by:  José Alburquerque <jaalburqu at svn dot gnome dot org>
2758
2759         * docs/gst/gstreamer-sections.txt:
2760         * gst/gstsegment.c:
2761         * gst/gstsegment.h:
2762         * win32/common/libgstreamer.def:
2763           Expose gst_segment_copy() to make things easier for the c++ bindings.
2764           Fixes #518932.
2765           API: gst_segment_copy()
2766
2767 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2768
2769         * gst/gst.c: (gst_init_get_option_group), (init_post):
2770           Fix const position; ref GType classes for enum types to work
2771           around thread-safety issues in GLib versions < 2.16.
2772
2773 2008-04-09  Wim Taymans  <wim.taymans@collabora.co.uk>
2774
2775         * docs/design/part-buffering.txt:
2776         Fix some typos and set the estimated total for push mode to -1.
2777
2778         * gst/gstquery.c: (gst_query_new_buffering):
2779         Set buffering-left to 0 as we're not buffering by default.
2780
2781         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query):
2782         Implement BUFFERING query.
2783
2784 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2785
2786         Based on patch by: Milosz Derezynski <internalerror gmail com>
2787
2788         * gst/gsterror.c: (_gst_stream_errors_init):
2789         * gst/gsterror.h:
2790           Add two new error codes for encrypted content. Fixes #524659.
2791           API: GST_STREAM_ERROR_DECRYPT
2792           API: GST_STREAM_ERROR_DECRYPT_NOKEY
2793
2794 2008-04-09  Tim-Philipp Müller  <tim at centricular dot net>
2795
2796         * gst/gstquery.h:
2797           Fix typo.
2798
2799         * win32/common/libgstreamer.def:
2800           Add new functions.
2801
2802 2008-04-09  Sebastian Dröge  <slomo@circular-chaos.org>
2803
2804         * plugins/elements/gstidentity.c: (gst_identity_event),
2805         (gst_identity_start):
2806         Fix imperfect timestamp/offset checks when we get another NEWSEGMENT
2807         event after processing some data. Fixes bug #526042.
2808
2809 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2810
2811         * docs/gst/gstreamer-sections.txt:
2812         * gst/gstquery.c: (gst_query_parse_latency),
2813         (gst_query_set_buffering_percent),
2814         (gst_query_parse_buffering_percent),
2815         (gst_query_set_buffering_range), (gst_query_parse_buffering_range):
2816         * gst/gstquery.h:
2817         Rename _avail -> _range
2818         API: gst_query_set_buffering_range
2819         API: gst_query_parse_buffering_range
2820
2821 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2822
2823         * docs/design/part-buffering.txt:
2824         * gst/gstquark.c:
2825         * gst/gstquark.h:
2826         * gst/gstquery.c: (gst_query_parse_latency),
2827         (gst_query_new_buffering), (gst_query_set_buffering_percent),
2828         (gst_query_parse_buffering_percent):
2829         * gst/gstquery.h:
2830         Add busy field and quark for the buffering query so that the app can
2831         only use the query to see if buffering is in progress.
2832
2833 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2834
2835         * docs/gst/gstreamer-sections.txt:
2836         * gst/gstmessage.c: (gst_message_set_buffering_stats),
2837         (gst_message_parse_buffering_stats):
2838         * gst/gstmessage.h:
2839         * gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
2840         (gst_query_parse_latency), (gst_query_new_buffering),
2841         (gst_query_set_buffering_percent),
2842         (gst_query_parse_buffering_percent),
2843         (gst_query_set_buffering_stats), (gst_query_parse_buffering_stats),
2844         (gst_query_set_buffering_avail), (gst_query_parse_buffering_avail):
2845         * gst/gstquery.h:
2846         Reorder the message docs and headers for clarity.
2847         Add aditional buffering stats API for messages.
2848         Add buffering query.
2849         Convert some leftover queries to use GstQuark.
2850         API: gst_message_set_buffering_stats
2851         API: gst_message_parse_buffering_stats
2852         API: GST_QUERY_BUFFERING
2853         API: GstBufferingMode
2854         API: gst_query_new_buffering
2855         API: gst_query_set_buffering_percent
2856         API: gst_query_parse_buffering_percent
2857         API: gst_query_set_buffering_stats
2858         API: gst_query_parse_buffering_stats
2859
2860 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2861
2862         * gst/gstmessage.c: (gst_message_new_error),
2863         (gst_message_new_warning), (gst_message_new_info),
2864         (gst_message_new_buffering), (gst_message_new_state_changed),
2865         (gst_message_new_clock_provide), (gst_message_new_clock_lost),
2866         (gst_message_new_new_clock), (gst_message_new_segment_start),
2867         (gst_message_new_segment_done), (gst_message_new_duration),
2868         (gst_message_new_async_start), (gst_message_parse_buffering),
2869         (gst_message_parse_state_changed),
2870         (gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
2871         (gst_message_parse_new_clock), (gst_message_parse_error),
2872         (gst_message_parse_warning), (gst_message_parse_info),
2873         (gst_message_parse_segment_start),
2874         (gst_message_parse_segment_done), (gst_message_parse_duration),
2875         (gst_message_parse_async_start):
2876         Use GstQuark for messages.
2877
2878 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2879
2880         * gst/gstquark.c: (_priv_gst_quarks_initialize):
2881         * gst/gstquark.h:
2882         Add some more quarks needed for messages and queries.
2883
2884 2008-04-08  Wim Taymans  <wim.taymans@collabora.co.uk>
2885
2886         * docs/design/part-buffering.txt:
2887         Remove the "none" buffering mode, STREAM is a good default.
2888         Move estimated-time to the avail query, that's when it will be needed.
2889         Other small typo fixes and updates.
2890
2891 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
2892
2893         * gst/gstindex.c: (gst_index_resolver_get_type):
2894           Don't put descriptions into the nick field of a GEnumValue: it's not
2895           meant for that and some language bindings rely on the nick field to
2896           construct constants and the like. Fixes #526705.
2897
2898 2008-04-07  Tim-Philipp Müller  <tim at centricular dot net>
2899
2900         * NEWS:
2901         * RELEASE:
2902         * gstreamer.doap:
2903           Merge other changes from 0.10.19 release branch.
2904
2905 2008-04-06  Sebastian Dröge  <slomo@circular-chaos.org>
2906
2907         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2908
2909         * configure.ac:
2910         Actually build dlls when cross-compiling with mingw32.
2911         Fixes bug #526247.
2912
2913 2008-04-05  Sebastian Dröge  <slomo@circular-chaos.org>
2914
2915         Patch by: Damien Lespiau <damien dot lespiau at gmail dot com>
2916
2917         * gst/gstpoll.c:
2918         Fix compilation of GstPoll with mingw32. Fixes bug #526236.
2919
2920 2008-04-04  Wim Taymans  <wim.taymans@collabora.co.uk>
2921
2922         * docs/design/draft-latency.txt:
2923         Fix typo.
2924
2925         * docs/design/part-buffering.txt:
2926         Update design docs with more buffering ideas.
2927
2928 2008-04-03  Tim-Philipp Müller  <tim at centricular dot net>
2929
2930         * configure.ac:
2931           Bump version to 0.10.19.1 after the unscheduled 0.10.19 release.
2932
2933 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
2934
2935         * configure.ac:
2936           Revert part that belongs to the preset patch.
2937
2938 2008-04-03  Stefan Kost  <ensonic@users.sf.net>
2939
2940         * configure.ac:
2941           Add qoutes to the define. Fixes # 525961.
2942
2943 2008-04-03  Sebastian Dröge  <slomo@circular-chaos.org>
2944
2945         * plugins/indexers/gstfileindex.c: (_file_index_id_free),
2946         (gst_file_index_load), (gst_file_index_add_id),
2947         (gst_file_index_get_assoc_entry):
2948         * plugins/indexers/gstmemindex.c: (gst_mem_index_free_format),
2949         (gst_mem_index_free_id), (gst_mem_index_add_id),
2950         (gst_mem_index_index_format):
2951         Use GSlice when possible.
2952
2953 2008-04-02  Sebastian Dröge  <slomo@circular-chaos.org>
2954
2955         * libs/gst/controller/gstinterpolationcontrolsource.c:
2956         (gst_control_point_free),
2957         (gst_interpolation_control_source_set_internal):
2958         Use GSlice for allocating the control points.
2959
2960 2008-04-02  Wim Taymans  <wim.taymans@collabora.co.uk>
2961
2962         * plugins/elements/gsttypefindelement.c:
2963         (gst_type_find_element_class_init),
2964         (gst_type_find_element_set_property),
2965         (gst_type_find_element_get_property),
2966         (gst_type_find_element_activate):
2967         * plugins/elements/gsttypefindelement.h:
2968         Cleanup properties.
2969         Fix pad leak when peer query fails.
2970         We can still typefind when the peer returns -1.
2971         Add property to force caps and bypass typefinding. This will be used in
2972         uridecodebin.
2973         API::force-caps
2974
2975 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
2976
2977         * configure.ac:
2978         Require GLib 2.12.
2979
2980         * gst/glib-compat-private.h:
2981         * gst/gstcaps.c: (gst_caps_new_empty), (_gst_caps_free):
2982         * gst/gstclock.c: (gst_clock_entry_new), (_gst_clock_id_free):
2983         Unconditionally use GSlice for allocation.
2984
2985         * gst/gstpoll.c: (gst_poll_new), (gst_poll_free):
2986         * gst/gstsegment.c: (gst_segment_new), (gst_segment_free):
2987         * gst/gststructure.c: (gst_structure_id_empty_new_with_size),
2988         (gst_structure_free):
2989         Use GSlice for allocation.
2990
2991 2008-04-01  Sebastian Dröge  <slomo@circular-chaos.org>
2992
2993         * gst/parse/Makefile.am:
2994         * gst/parse/grammar.tab.pre.c:
2995         * gst/parse/grammar.tab.pre.h:
2996         * gst/parse/lex._gst_parse_yy.pre.c:
2997         Require a new enough flex and bison and remove the parser hacks to use
2998         a pre-regenerated version.
2999
3000 2008-04-01  Julien Moutte  <julien@fluendo.com>
3001
3002         patch by: Jason Zhao <E3423C@motorola.com>
3003
3004         * configure.ac: Add a configure switch to disable option parsing
3005         in gst_init.
3006         Fixes #522882.
3007
3008 2008-03-31  Stefan Kost  <ensonic@users.sf.net>
3009
3010         * configure.ac:
3011         * gst/gstregistry.c:
3012           MacOS has plugins under .so or under .dylib. Add detection for MacOS
3013           and handle this case.
3014
3015         * gst/gst.c:
3016           Add a comment here describing, why we stat each plugin and not try to
3017           be smart.
3018
3019 2008-03-31  Sebastian Dröge  <slomo@circular-chaos.org>
3020
3021         * libs/gst/base/gstbasetransform.c:
3022         (gst_base_transform_prepare_output_buffer):
3023         Also unset the GAP flag on buffers if we're working inplace but
3024         the element is not GAP-aware.
3025
3026         Mark a comment as FIXME 0.11.
3027
3028 2008-03-31  Stefan Kost  <ensonic@users.sf.net>
3029
3030         * gst/gst.c:
3031           Fix type in log message and add one to ease seeing how long registry
3032           cache verification takes.
3033
3034         * gst/gstregistry.c:
3035           Only test plugin filenames against G_MODULE_SUFFIX.
3036
3037 2008-03-31  Stefan Kost  <ensonic@users.sf.net>
3038
3039         * gst/gstdebugutils.c:
3040           Improve handling ghost/proxy pads.
3041
3042 2008-03-27  Stefan Kost  <ensonic@users.sf.net>
3043
3044         * docs/gst/gstreamer-sections.txt:
3045         * gst/gstpad.c:
3046         * gst/gstpad.h:
3047           Expose macro to docs and fix link to it.
3048
3049 2008-03-27  Michael Smith <msmith@fluendo.com>
3050
3051         * libs/gst/dataprotocol/dataprotocol.c:
3052         (gst_dp_packet_from_event_1_0):
3053           When calculating GDP body CRC, use the correct pointer. 
3054           Fixes part of #522401.
3055
3056 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3057
3058         Patch by: Mark Nauwelaerts <manauw at skynet be>
3059
3060         * plugins/elements/gstidentity.c: (gst_identity_class_init),
3061         (gst_identity_init), (gst_identity_prepare_output_buffer):
3062         Identity is not always a passthrough element, it can modify the buffer
3063         timestamps when it has a datarate and operates in single-segment mode.
3064         We therefore make it an in_place filter with a custom buffer prepare
3065         function that conditionally makes the input buffer metadata writable
3066         when needed.  Fixes #523985.
3067
3068 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3069
3070         Patch by: Mark Nauwelaerts <manauw at skynet be>
3071
3072         * gst/gstclock.h:
3073         * libs/gst/base/gstbasesrc.h:
3074         * libs/gst/base/gstbasetransform.c:
3075         * libs/gst/check/gstcheck.c:
3076         Small documentation fixes. Fixes #523978.
3077
3078 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3079
3080         * plugins/elements/gstfdsink.c: (gst_fd_sink_render):
3081         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
3082         Also retry our poll_wait when we get EAGAIN. Fixes #524041.
3083
3084 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3085
3086         * plugins/elements/gstmultiqueue.c: (single_queue_overrun_cb),
3087         (single_queue_underrun_cb):
3088         When trying to make room in the queue, bump the max allowed buffers
3089         bigger than the current amount of buffers in the queue. this fixes some
3090         nasty deadlocks in multiqueue when dynamically changing the limits of
3091         the queue.
3092
3093 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3094
3095         Patch by:  José Alburquerque <jaalburqu at svn dot gnome dot org>
3096
3097         * gst/gstcaps.c: (gst_caps_set_simple),
3098         (gst_caps_set_simple_valist), (gst_caps_intersect):
3099         * gst/gstcaps.h:
3100         Constify the field gchar * params in set_simple and friends.
3101         Fixes #522326.
3102
3103 2008-03-24  Wim Taymans  <wim.taymans@collabora.co.uk>
3104
3105         * gst/gstvalue.c: (gst_value_transform_object_string):
3106         Transform a GstObject to a more meaningfull string that includes the
3107         object type in addition to its name.
3108
3109 2008-03-23  Stefan Kost  <ensonic@users.sf.net>
3110
3111         * ChangeLog:
3112           ChangeLog surgery to add bugnumber to commit.
3113
3114 2008-03-23  Rene Stadler  <mail@renestadler.de>
3115
3116         * libs/gst/base/gstbasetransform.c:
3117         (gst_base_transform_set_gap_aware): Fix confusing documentation.
3118
3119 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
3120
3121         * gst/gstregistrybinary.c: (gst_registry_binary_write):
3122         Rename constant everywhere and don't forget one occurence.
3123
3124 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
3125
3126         * gst/gstregistrybinary.c: (gst_registry_binary_write):
3127         Align memory to the pointer size even if the architecture allows
3128         unaligned memory access. Unaligned memory access usually comes with
3129         performance penality.
3130
3131 2008-03-23  Sebastian Dröge  <slomo@circular-chaos.org>
3132
3133         * gst/gstregistrybinary.c: (gst_registry_binary_write),
3134         (gst_registry_binary_check_magic),
3135         (gst_registry_binary_load_pad_template),
3136         (gst_registry_binary_load_feature),
3137         (gst_registry_binary_load_plugin):
3138         Align memory to the pointer size instead of always 32 bit. Fixes
3139         unaligned memory accesses on ia64 and friends.
3140
3141         * gst/gstregistrybinary.h:
3142         Bump binary registry format version for this as it changes the
3143         format on those architectures that don't have unaligned access
3144         and 64 bit pointers.
3145
3146 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3147
3148         * docs/pwg/advanced-dparams.xml:
3149         * docs/pwg/building-props.xml:
3150         * docs/pwg/other-source.xml:
3151         * gst/glib-compat.h:
3152         * gst/gstbin.c: (gst_bin_class_init):
3153         * gst/gstclock.c: (gst_clock_class_init):
3154         * gst/gstindex.c: (gst_index_class_init):
3155         * gst/gstobject.c: (gst_object_class_init):
3156         * gst/gstpad.c: (gst_pad_class_init):
3157         * gst/gstpipeline.c: (gst_pipeline_class_init):
3158         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
3159         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init):
3160         * libs/gst/base/gstbasetransform.c:
3161         (gst_base_transform_class_init):
3162         * libs/gst/base/gstdataqueue.c: (gst_data_queue_class_init):
3163         * libs/gst/check/gstcheck.c: (_gst_check_fault_handler_restore),
3164         (_gst_check_fault_handler_sighandler),
3165         (_gst_check_fault_handler_setup), (gst_check_init):
3166         * libs/gst/controller/gstcontroller.c:
3167         (_gst_controller_class_init):
3168         * libs/gst/controller/gstlfocontrolsource.c:
3169         (gst_lfo_control_source_class_init):
3170         * libs/gst/net/gstnetclientclock.c:
3171         (gst_net_client_clock_class_init):
3172         * libs/gst/net/gstnettimeprovider.c:
3173         (gst_net_time_provider_class_init):
3174         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init):
3175         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init):
3176         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init):
3177         * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init):
3178         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
3179         * plugins/elements/gstfilesink.c: (gst_file_sink_class_init):
3180         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init):
3181         * plugins/elements/gstidentity.c: (gst_identity_class_init):
3182         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_class_init):
3183         * plugins/elements/gstqueue.c: (gst_queue_class_init):
3184         * plugins/elements/gsttee.c: (gst_tee_class_init):
3185         * plugins/elements/gsttypefindelement.c:
3186         (gst_type_find_element_class_init):
3187         * plugins/indexers/gstfileindex.c: (gst_file_index_class_init):
3188         Define G_PARAM_STATIC_STRINGS if it's undefined (GLib < 2.13.0) and
3189         use it everywhere for GParamSpecs that use static strings (i.e. all).
3190         This gives us less memory usage, fewer allocations and thus less
3191         memory defragmentation. Fixes bug #523806.
3192
3193 2008-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
3194
3195         * gst/gstminiobject.c: (gst_value_dup_mini_object),
3196         (gst_param_spec_mini_object):
3197         * gst/gstminiobject.h:
3198         * win32/common/libgstreamer.def:
3199         * docs/gst/gstreamer-sections.txt:
3200         API: Add GST_IS_PARAM_SPEC_MINI_OBJECT, GST_PARAM_SPEC_MINI_OBJECT
3201         GST_TYPE_PARAM_MINI_OBJECT and gst_value_dup_mini_object. Also move
3202         GstParamSpecMiniObject into a public header for this.
3203
3204         This make GstMiniObject a bit more consistent with GObject and makes
3205         it possible to extend the param specs.
3206
3207         gst_value_dup_mini_object is mainly useful for set_property methods.
3208
3209         Fixes bug #523798.
3210
3211         * tools/gst-inspect.c: (print_element_properties_info):
3212         Print something useful for GstMiniObject properties and not just
3213         "unknown type".
3214
3215 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3216
3217         * docs/gst/gstreamer-sections.txt:
3218         * gst/gstregistrybinary.c: (gst_registry_binary_initialize_magic),
3219         (gst_registry_binary_check_magic):
3220         * gst/gstregistrybinary.h:
3221         Call the version GST_MAGIC_BINARY_VERSION_STR to be more consistent
3222         and add it to the (private part) of the docs to fix the build.
3223
3224 2008-03-21  Sebastian Dröge  <slomo@circular-chaos.org>
3225
3226         * gst/gstregistrybinary.c: (gst_registry_binary_initialize_magic),
3227         (gst_registry_binary_check_magic),
3228         (gst_registry_binary_read_cache):
3229         * gst/gstregistrybinary.h:
3230         Don't use GST_MAJORMINOR for the binary registry version. Instead
3231         hardcode a value that must be changed whenever the format changes
3232         in an incompatible way.
3233         Also don't GST_ERROR when there is a version mismatch, just
3234         regenerate the registry silently.
3235
3236 2008-03-21  Jan Schmidt  <jan.schmidt@sun.com>
3237
3238         * configure.ac:
3239         Back to development - 0.10.18.1
3240
3241 === release 0.10.18 ===
3242
3243 2008-03-20  Jan Schmidt <jan.schmidt@sun.com>
3244
3245         * configure.ac:
3246           releasing 0.10.18, "So far away"
3247
3248 2008-03-18  Jan Schmidt  <jan.schmidt@sun.com>
3249
3250         * configure.ac:
3251         * win32/common/config.h:
3252         0.10.17.4 pre-release
3253
3254 2008-03-18  Wim Taymans  <wim.taymans@collabora.co.uk>
3255
3256         Patch by: Ole André Vadla Ravnås
3257             <ole dot andre dot ravnas at tandberg dot com>
3258
3259         * docs/gst/gstreamer-sections.txt:
3260         * gst/gstpoll.c: (gst_poll_winsock_error_to_errno),
3261         (gst_poll_update_winsock_event_mask),
3262         (gst_poll_prepare_winsock_active_sets),
3263         (gst_poll_collect_winsock_events), (gst_poll_new), (gst_poll_free),
3264         (gst_poll_add_fd_unlocked), (gst_poll_fd_ctl_write),
3265         (gst_poll_fd_ctl_read_unlocked), (gst_poll_fd_ignored),
3266         (gst_poll_fd_has_error), (gst_poll_fd_can_read_unlocked),
3267         (gst_poll_check_ctrl_commands), (gst_poll_wait):
3268         * gst/gstpoll.h:
3269         * win32/common/libgstreamer.def:
3270         Add new function gst_poll_fd_ignored() for improved Windows
3271         compatibility.
3272         Various minor fixes and cleanups. See #520808.
3273
3274 2008-03-17  Tim-Philipp Müller  <tim at centricular dot net>
3275
3276         * gst/gstindex.c: (gst_index_entry_free):
3277         * gst/gstindex.h:
3278           Don't free key strings which we don't own. Fixes crash in
3279           gst_index_entry_free() (#522741).
3280
3281         * tests/check/Makefile.am:
3282         * tests/check/gst/.cvsignore:
3283         * tests/check/gst/gstindex.c: (test_index_entries),
3284           (gst_index_suite), (gst_index):
3285           Add unit test for the above.
3286
3287 2008-03-11  Sebastian Dröge  <slomo@circular-chaos.org>
3288
3289         * win32/common/libgstreamer.def:
3290         Remove symbols that were removed recently. Fixes bug #521740.
3291
3292 2008-03-11  Jan Schmidt  <jan.schmidt@sun.com>
3293
3294         * configure.ac:
3295         * win32/common/config.h:
3296         0.10.17.3 pre-release
3297
3298 2008-03-07  Wim Taymans  <wim.taymans@collabora.co.uk>
3299
3300         Patch by: Ole André Vadla Ravnås
3301             <ole dot andre dot ravnas at tandberg dot com>
3302
3303         * docs/gst/gstreamer-sections.txt:
3304         * gst/gstpoll.c: (find_index), (gst_poll_free_winsock_event),
3305         (gst_poll_update_winsock_event_mask), (gst_poll_new),
3306         (gst_poll_free), (gst_poll_fd_init), (gst_poll_add_fd_unlocked),
3307         (gst_poll_remove_fd), (gst_poll_fd_ctl_write),
3308         (gst_poll_fd_ctl_read_unlocked), (gst_poll_fd_has_closed),
3309         (gst_poll_fd_has_error), (gst_poll_fd_can_read_unlocked),
3310         (gst_poll_fd_can_write), (gst_poll_wait),
3311         (gst_poll_set_controllable), (gst_poll_restart),
3312         (gst_poll_set_flushing):
3313         * gst/gstpoll.h:
3314         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_new):
3315         * libs/gst/net/gstnettimeprovider.c: (gst_net_time_provider_start),
3316         (gst_net_time_provider_new):
3317         * plugins/elements/gstfdsink.c: (gst_fd_sink_start):
3318         * plugins/elements/gstfdsrc.c: (gst_fd_src_start):
3319         * tests/benchmarks/gstpollstress.c: (main):
3320         * tests/check/gst/gstpoll.c: (GST_START_TEST), (gst_poll_suite):
3321         Remove GstPollMode from the API, it does not make sense to let the
3322         application control this.
3323         Add support for Win32.
3324         Fix the testsuite. Fixes #520671.
3325
3326 2008-03-07  Sebastian Dröge  <slomo@circular-chaos.org>
3327
3328         Patch by: Ole André Vadla Ravnås
3329             <ole dot andre dot ravnas at tandberg dot com>
3330
3331         * gst/gstregistrybinary.c:
3332         Include io.h for write() and close() when building with MSVC. Fixes
3333         bug #520877.
3334
3335 2008-03-07  Stefan Kost  <ensonic@users.sf.net>
3336
3337         * configure.ac:
3338         * gst/gst_private.h:
3339         * gst/gstconfig.h.in:
3340         * gst/gstregistry.h:
3341         * gst/gstregistrybinary.c:
3342         * win32/common/gstconfig.h:
3343           Move registry backend API to private headers where we can. Add
3344           fixme-0.11 comments for the others. Add stubs for the xml backend when
3345           using the binary to ensure they functions exists (they should not be
3346           used though). Fixes #520756.
3347
3348 2008-03-04  Jan Schmidt  <jan.schmidt@sun.com>
3349
3350         * configure.ac:
3351         * win32/common/config.h:
3352         0.10.17.2 prelease
3353
3354 2008-03-03  Edward Hervey  <edward.hervey@collabora.co.uk>
3355
3356         * gst/gstregistrybinary.c: (gst_registry_binary_write),
3357         (gst_registry_binary_read_cache):
3358         * gst/gstregistryxml.c: (gst_registry_save):
3359         * gst/gsturi.c: (unescape_string), (gst_uri_has_protocol):
3360         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file):
3361         * plugins/elements/gstfilesrc.c: (gst_file_src_map_region),
3362         (gst_file_src_map_small_region), (gst_file_src_create_mmap):
3363         Switch to using portabl gsize/gssize instead of size_t/ssize_t
3364         Fixes #520152
3365
3366 2008-03-03  Edward Hervey  <edward.hervey@collabora.co.uk>
3367
3368         * gst/gstminiobject.c:
3369         Import gst_private.h before any other header that might include other
3370         glib headers. This fixes the build on windows using native compilers.
3371
3372 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3373
3374         * win32/common/gstconfig.h:
3375           Add here too, just for completeness.
3376
3377 2008-03-03  Tim-Philipp Müller  <tim at centricular dot net>
3378
3379         * configure.ac:
3380         * gst/gstconfig.h.in:
3381         * gst/gstregistry.h:
3382           Fix broken use of config.h-defined preprocessor directive in a public
3383           header file. Add a corresponding define to gstconfig.h, since we can't
3384           really remove those function declarations from the header file now
3385           (or can we? and why are they there in the first place?).
3386
3387 2008-03-03  Andy Wingo  <wingo@pobox.com>
3388
3389         * tests/check/gst/gststructure.c (GST_START_TEST): Add a check for
3390         the new warning.
3391
3392         * gst/gststructure.c (gst_structure_from_string): Warn if
3393         structure_from_string didn't consume the whole string, but the
3394         caller did not provide an end pointer.
3395
3396 2008-03-01  Tim-Philipp Müller  <tim at centricular dot net>
3397
3398         Patch by: Fabrizio Gennari <fabrizio.ge at tiscali it>
3399
3400         * gst/gstregistryxml.c: (read_string), (load_feature):
3401           Strings allocated by libxml2 should be freed with xmlFree(), not
3402           with g_free(). Fixes issues on windows in certain contexts (#519698).
3403
3404 2008-02-29  Tim-Philipp Müller  <tim at centricular dot net>
3405
3406         * gst/gstinterface.c: (gst_element_implements_interface):
3407           Don't crash if the element supports the interface queried, but does
3408           not implement GstImplementsInterface. Fixes #519584.
3409
3410         * tests/check/Makefile.am:
3411         * tests/check/gst/.cvsignore:
3412         * tests/check/gst/gstinterface.c:
3413           Add unit test for the above.
3414
3415 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3416
3417         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
3418         Small doc update.
3419
3420 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3421
3422         * gst/gstsegment.c: (gst_segment_set_seek),
3423         (gst_segment_to_stream_time):
3424         Improve some comment.
3425         Update variables where it makes more sense.
3426
3427 2008-02-29  Rene Stadler  <mail@renestadler.de>
3428
3429         * gst/gsturi.c: (gst_uri_handler_get_protocols):
3430         Use the get_protocols_full vfunc if get_protocols is NULL.  Fixes
3431         URIHandlers implemented using language bindings.
3432
3433 2008-02-29  Sebastian Dröge  <slomo@circular-chaos.org>
3434
3435         * gst/gstelementfactory.h:
3436         * tests/check/elements/fakesink.c:
3437         * tests/check/elements/fakesrc.c: (setup_fakesrc):
3438         * tests/check/elements/fdsrc.c: (setup_fdsrc):
3439         * tests/check/elements/filesink.c: (setup_filesink):
3440         * tests/check/elements/filesrc.c: (setup_filesrc):
3441         * tests/check/elements/identity.c: (setup_identity):
3442         * tests/check/elements/tee.c:
3443         * tests/check/generic/sinks.c:
3444         * tests/check/generic/states.c: (setup), (teardown):
3445         * tests/check/gst/gst.c:
3446         * tests/check/gst/gstabi.c:
3447         * tests/check/gst/gstbin.c:
3448         * tests/check/gst/gstbus.c: (pull_messages):
3449         * tests/check/gst/gstcaps.c:
3450         * tests/check/gst/gstelement.c:
3451         * tests/check/gst/gstevent.c:
3452         * tests/check/gst/gstghostpad.c:
3453         * tests/check/gst/gstiterator.c:
3454         * tests/check/gst/gstmessage.c:
3455         * tests/check/gst/gstminiobject.c: (my_foo_init):
3456         * tests/check/gst/gstobject.c: (thread_name_object),
3457         (gst_object_suite):
3458         * tests/check/gst/gstpad.c:
3459         * tests/check/gst/gstplugin.c:
3460         * tests/check/gst/gstpoll.c:
3461         * tests/check/gst/gstquery.c:
3462         * tests/check/gst/gstsegment.c:
3463         * tests/check/gst/gststructure.c:
3464         * tests/check/gst/gstsystemclock.c:
3465         * tests/check/gst/gsttask.c:
3466         * tests/check/gst/gstutils.c:
3467         * tests/check/gst/gstvalue.c:
3468         * tests/check/gst/struct_hppa.h:
3469         * tests/check/gst/struct_i386.h:
3470         * tests/check/gst/struct_ppc32.h:
3471         * tests/check/gst/struct_ppc64.h:
3472         * tests/check/gst/struct_x86_64.h:
3473         * tests/check/libs/adapter.c: (create_and_fill_adapter):
3474         * tests/check/libs/basesrc.c:
3475         * tests/check/libs/controller.c: (GST_START_TEST):
3476         * tests/check/libs/gdp.c:
3477         * tests/check/libs/gstnetclientclock.c:
3478         * tests/check/libs/gstnettimeprovider.c:
3479         * tests/check/libs/libsabi.c:
3480         * tests/check/libs/struct_hppa.h:
3481         * tests/check/libs/struct_i386.h:
3482         * tests/check/libs/struct_ppc32.h:
3483         * tests/check/libs/struct_ppc64.h:
3484         * tests/check/libs/struct_x86_64.h:
3485         * tests/check/pipelines/cleanup.c:
3486         * tests/check/pipelines/simple-launch-lines.c:
3487         * tests/check/pipelines/stress.c:
3488         And correct even more valid sparse warnings.
3489
3490         * win32/common/libgstreamer.def:
3491         Add gst_poll_fd_init to the list of symbols.
3492
3493 2008-02-29  Sebastian Dröge  <slomo@circular-chaos.org>
3494
3495         * gst/gstconfig.h.in:
3496         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_read_buffer):
3497         * libs/gst/check/gstcheck.c: (gst_check_log_message_func),
3498         (gst_check_log_critical_func), (gst_check_drop_buffers),
3499         (gst_check_element_push_buffer_list):
3500         * libs/gst/controller/gstcontroller.c: (gst_controller_get),
3501         (gst_controller_get_type):
3502         * libs/gst/controller/gsthelper.c: (gst_object_control_properties),
3503         (gst_object_get_controller), (gst_object_get_control_source):
3504         * libs/gst/controller/gstinterpolationcontrolsource.c:
3505         (gst_interpolation_control_source_new):
3506         * libs/gst/controller/gstlfocontrolsource.c:
3507         (gst_lfo_control_source_new):
3508         * libs/gst/dataprotocol/dataprotocol.c:
3509         (gst_dp_event_from_packet_0_2):
3510         * plugins/elements/gstfdsrc.c:
3511         * plugins/elements/gstmultiqueue.c:
3512         * plugins/elements/gsttee.c:
3513         * plugins/elements/gsttypefindelement.c:
3514         * plugins/indexers/gstfileindex.c: (_file_index_id_save_xml),
3515         (gst_file_index_add_association):
3516         * plugins/indexers/gstmemindex.c:
3517         * tests/benchmarks/gstpollstress.c: (mess_some_more):
3518         * tests/check/elements/queue.c: (setup_queue):
3519         * tests/check/gst/gstpipeline.c:
3520         * tests/check/libs/collectpads.c: (setup), (teardown),
3521         (gst_collect_pads_suite):
3522         * tests/examples/adapter/adapter_test.c:
3523         * tests/examples/metadata/read-metadata.c: (make_pipeline):
3524         * tests/examples/xml/createxml.c:
3525         * tests/examples/xml/runxml.c:
3526         * tools/gst-inspect.c:
3527         * tools/gst-run.c:
3528         Correct all relevant warnings found by the sparse semantic code
3529         analyzer. This include marking several symbols static, using
3530         NULL instead of 0 for pointers, not using variable sized arrays
3531         on the stack, moving variable declarations to the beginning of
3532         a block and using "foo (void)" instead of "foo ()" for declarations.
3533
3534 2008-02-29  Sebastian Dröge  <slomo@circular-chaos.org>
3535
3536         * plugins/elements/gstfdsink.c: (gst_fd_sink_update_fd):
3537         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
3538         Don't reset GstPollFDs, this is not necessary at all.
3539
3540         * tests/check/gst/gstpoll.c: (test_poll_wait), (GST_START_TEST),
3541         (delayed_restart), (delayed_control):
3542         Use GST_POLL_FD_INIT.
3543
3544 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3545
3546         * gst/gstpoll.c: (gst_poll_fd_init):
3547         * gst/gstpoll.h:
3548         Added Since tags.
3549
3550         * plugins/elements/gstfdsink.c: (gst_fd_sink_update_fd):
3551         Use some more init macros.
3552
3553 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3554
3555         * plugins/elements/gstfdsink.c: (gst_fd_sink_start):
3556         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
3557         Use init macros and functions.
3558
3559 2008-02-29  Wim Taymans  <wim.taymans@collabora.co.uk>
3560
3561         * docs/gst/gstreamer-sections.txt:
3562         * gst/gstpoll.c: (gst_poll_fd_init):
3563         * gst/gstpoll.h:
3564         Add INIT macro and _init method for initializing the GstPollFD.
3565
3566 2008-02-28  Sebastian Dröge  <slomo@circular-chaos.org>
3567
3568         * plugins/elements/gstfdsink.c: (gst_fd_sink_start),
3569         (gst_fd_sink_update_fd):
3570         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
3571         * tests/check/gst/gstpoll.c: (test_poll_wait), (GST_START_TEST),
3572         (delayed_restart), (delayed_control):
3573         Initialize some uninitialized variables as spotted by valgrind.
3574
3575 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3576
3577         * tests/benchmarks/Makefile.am:
3578         * tests/benchmarks/gstpollstress.c: (mess_some_more), (run_test),
3579         (main):
3580         Add poll stress test.
3581
3582 2008-02-28  Wim Taymans  <wim.taymans@collabora.co.uk>
3583
3584         Patch by: Peter Kjellerstedt <pkj at axis dot com>
3585
3586         * plugins/elements/gstfdsink.c: (gst_fd_sink_render),
3587         (gst_fd_sink_start), (gst_fd_sink_stop), (gst_fd_sink_unlock),
3588         (gst_fd_sink_unlock_stop), (gst_fd_sink_update_fd):
3589         * plugins/elements/gstfdsink.h:
3590         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd),
3591         (gst_fd_src_start), (gst_fd_src_stop), (gst_fd_src_unlock),
3592         (gst_fd_src_unlock_stop), (gst_fd_src_create),
3593         (gst_fd_src_uri_set_uri):
3594         * plugins/elements/gstfdsrc.h:
3595         Port to GstPoll. See #505417.
3596
3597 2008-02-27  Jan Schmidt  <jan.schmidt@sun.com>
3598
3599         * win32/common/libgstreamer.def:
3600         Add new gst_poll_ symbols to win32 defs.
3601
3602 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3603
3604         * docs/libs/gstreamer-libs-sections.txt:
3605         * libs/gst/net/gstnetclientclock.c:
3606         (gst_net_client_clock_class_init), (gst_net_client_clock_init),
3607         (gst_net_client_clock_finalize), (gst_net_client_clock_do_select),
3608         (gst_net_client_clock_thread), (gst_net_client_clock_start),
3609         (gst_net_client_clock_stop), (gst_net_client_clock_new):
3610         * libs/gst/net/gstnetclientclock.h:
3611         * libs/gst/net/gstnettimeprovider.c:
3612         (gst_net_time_provider_class_init), (gst_net_time_provider_init),
3613         (gst_net_time_provider_finalize), (gst_net_time_provider_thread),
3614         (gst_net_time_provider_start), (gst_net_time_provider_stop),
3615         (gst_net_time_provider_new):
3616         * libs/gst/net/gstnettimeprovider.h:
3617         Use a private stuct to not break ABI.
3618
3619 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3620
3621         Patch by: Peter Kjellerstedt <pkj at axis dot com>
3622
3623         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_init),
3624         (gst_net_client_clock_finalize), (gst_net_client_clock_do_select),
3625         (gst_net_client_clock_thread), (gst_net_client_clock_start),
3626         (gst_net_client_clock_stop), (gst_net_client_clock_new):
3627         * libs/gst/net/gstnetclientclock.h:
3628         * libs/gst/net/gstnettimeprovider.c: (gst_net_time_provider_init),
3629         (gst_net_time_provider_finalize), (gst_net_time_provider_thread),
3630         (gst_net_time_provider_start), (gst_net_time_provider_stop),
3631         (gst_net_time_provider_new):
3632         * libs/gst/net/gstnettimeprovider.h:
3633         Massive code removal and cleanups because of GstPoll.
3634         Fixes #505417.
3635
3636 2008-02-27  Wim Taymans  <wim.taymans@collabora.co.uk>
3637
3638         * configure.ac:
3639         Add checks for poll, ppoll and pselect.
3640
3641         * docs/gst/gstreamer-docs.sgml:
3642         * docs/gst/gstreamer-sections.txt:
3643         Add docs for GstPoll.
3644
3645         * gst/Makefile.am:
3646         * gst/gst.h:
3647         * gst/gstpoll.c: (find_index), (selectable_fds),
3648         (pollable_timeout), (choose_mode), (pollfd_to_fd_set),
3649         (fd_set_to_pollfd), (gst_poll_new), (gst_poll_free),
3650         (gst_poll_set_mode), (gst_poll_get_mode),
3651         (gst_poll_add_fd_unlocked), (gst_poll_add_fd),
3652         (gst_poll_remove_fd), (gst_poll_fd_ctl_write),
3653         (gst_poll_fd_ctl_read_unlocked), (gst_poll_fd_ctl_read),
3654         (gst_poll_fd_has_closed), (gst_poll_fd_has_error),
3655         (gst_poll_fd_can_read_unlocked), (gst_poll_fd_can_read),
3656         (gst_poll_fd_can_write), (gst_poll_wait),
3657         (gst_poll_set_controllable), (gst_poll_restart),
3658         (gst_poll_set_flushing):
3659         * gst/gstpoll.h:
3660         Add generic poll abstraction. We ideally don't want to have this in core
3661         here but in glib intead...
3662         This code will be used in various network elements and ultimately for
3663         the nanosecond precision monotonic clock (that's why it's here in core).
3664         It'll allow us to implement cancelable socket operations for windows too.
3665
3666         * tests/check/Makefile.am:
3667         * tests/check/gst/gstpoll.c: (test_poll_wait), (GST_START_TEST),
3668         (delayed_stop), (delayed_restart), (delayed_flush),
3669         (delayed_control), (gst_poll_suite):
3670         Add GstPoll unit test.
3671
3672 2008-02-25  Tim-Philipp Müller  <tim at centricular dot net>
3673
3674         * gst/gstfilter.c:
3675           Improve documentation of gst_filter_run(). Fixes #518627.
3676
3677 2008-02-23  Tim-Philipp Müller  <tim at centricular dot net>
3678
3679         * docs/README:
3680           Add a few lines about the new 'check-inspected-versions' target.
3681
3682 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
3683
3684         * tests/check/gst/gstevent.c:
3685           Add qos to the event test. Rename tcase/tsuite; is not only about
3686           custom events.
3687
3688 2008-02-21  Stefan Kost  <ensonic@users.sf.net>
3689
3690         * plugins/elements/gstqueue.c:
3691           Ensure that buffer metadata is writeable, before modifying. Spotted by
3692           Mike.
3693
3694 2008-02-20  Stefan Kost  <ensonic@users.sf.net>
3695
3696         * plugins/elements/gstqueue.c:
3697         * plugins/elements/gstqueue.h:
3698           When dropping buffers in leaky modes, mark next buffers we sent as
3699           DISCONT.
3700
3701 2008-02-20  Tim-Philipp Müller  <tim at centricular dot net>
3702
3703         * plugins/elements/gstfilesrc.c: (gst_file_src_map_region):
3704           Also, if mmap() fails that would be a READ error, not OPEN_READ.
3705
3706 2008-02-20  Tim-Philipp Müller  <tim at centricular dot net>
3707
3708         * plugins/elements/Makefile.am:
3709         * plugins/elements/gstbufferstore.c:
3710         * plugins/elements/gstbufferstore.h:
3711         * plugins/elements/gsttypefindelement.h:
3712           Remove GstBufferStore, no idea why we were still building it.
3713           It's not used anywhere and superseded by GstAdapter.
3714
3715         * plugins/elements/gstfilesrc.c: (gst_file_src_map_region),
3716           (gst_file_src_create_mmap):
3717         * plugins/indexers/gstfileindex.c: (gst_file_index_add_association):
3718           Printf format fixes for 64-bit integers.
3719
3720 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
3721
3722         * configure.ac:
3723         Don't set GST_CACHE_DIR and allow to set it by a configure parameter.
3724         We're not in 0.8 times anymore.
3725
3726 2008-02-19  Jan Schmidt  <Jan.Schmidt@sun.com>
3727
3728         * libs/gst/check/gstcheck.c: (gst_check_drop_buffers),
3729         (gst_check_element_push_buffer_list):
3730         * libs/gst/check/gstcheck.h:
3731         Make the declaration in the header for
3732         gst_check_element_push_buffer_list match the implementation.
3733
3734         Fix up spelling, grammar and wording of the documentation in a few
3735         places, and add the Since keyword to new API functions.
3736         Use g_list_delete_link instead of g_list_remove in
3737         gst_check_drop_buffers, since it's immeasurably more efficient.
3738
3739         * tests/check/elements/fakesrc.c: (GST_START_TEST):
3740         Use new gst_check_drop_buffers function where appropriate.
3741
3742         * win32/common/libgstbase.def:
3743         * win32/common/libgstreamer.def:
3744         Add new symbols gst_collect_pads_take_buffer, 
3745         gst_collect_pads_read_buffer, gst_index_set_resolver_full to the
3746         exports
3747
3748         Changelog surgery to add API keyword to new gst_check API.
3749
3750 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
3751
3752         * gst/parse/lex._gst_parse_yy.pre.c: (yy_get_next_buffer),
3753         (_gst_parse_yyensure_buffer_stack), (_gst_parse_yylex_init_extra):
3754         Update pre-generated flex files with flex 2.3.34.
3755
3756 2008-02-19  Sebastian Dröge  <slomo@circular-chaos.org>
3757
3758         * gst/gstminiobject.c:
3759           Add FIXME for 0.11 to make GstMiniObjectClass::copy() a bit more
3760           friendly to subclasses and not require them to know all internals
3761           of their parent class.
3762
3763 2008-02-15  Stefan Kost  <ensonic@users.sf.net>
3764
3765         * docs/libs/gstreamer-libs-sections.txt:
3766         * libs/gst/base/gstcollectpads.c:
3767         * libs/gst/base/gstcollectpads.h:
3768           Add sub-buffer functions to collectpads. Fixes #516187.
3769           API: gst_collect_pads_take_buffer(), gst_collect_pads_read_buffer()
3770
3771 2008-02-15  Stefan Kost  <ensonic@users.sf.net>
3772
3773         * gst/gstbuffer.c:
3774           Copy selected buffer-flags when creating subbuffers.
3775           Fixes #516395.
3776
3777 2008-02-12  Sebastian Dröge  <slomo@circular-chaos.org>
3778
3779         * gst/gstbuffer.c: (gst_buffer_class_init), (gst_buffer_finalize):
3780         * gst/gstevent.c: (gst_event_class_init), (gst_event_finalize):
3781         * gst/gstmessage.c: (gst_message_class_init),
3782         (gst_message_finalize):
3783         * gst/gstquery.c: (gst_query_class_init), (gst_query_finalize):
3784         * plugins/elements/gstfilesrc.c: (gst_mmap_buffer_class_init),
3785         (gst_mmap_buffer_finalize):
3786         Properly chain up finalize functions to the parent class.
3787
3788 2008-02-11  Wim Taymans  <wim.taymans@collabora.co.uk>
3789
3790         Patch by: Siavash Safi <siavash dot safi at gmail dot com>
3791
3792         * gst/gstindex.c: (gst_index_finalize), (gst_index_set_resolver),
3793         (gst_index_set_resolver_full):
3794         * gst/gstindex.h:
3795         Add new function with option to dispose of user_data in resolver.
3796         Actually call the dispose function when finalizing the object and not
3797         just when changing the resolver/filter.
3798         API: GstIndex::gst_index_set_resolver_full()
3799
3800         * docs/gst/gstreamer-sections.txt:
3801         Add new function to docs. Fixes #515469.
3802
3803 2008-02-11  Sebastian Dröge  <slomo@circular-chaos.org>
3804
3805         * gst/gstindex.c: (gst_index_finalize):
3806         Chain up finalize to the parent class. Fixes leaking the GstObject
3807         name and other things.
3808
3809 2008-02-08  Jan Schmidt  <jan.schmidt@sun.com>
3810
3811         * configure.ac:
3812         Make DISABLE_DEPRECATED defined *only* during CVS, not during
3813         pre-releases or releases.
3814
3815         * docs/faq/gst-uninstalled:
3816         Add gst-plugins-gl
3817
3818         * docs/random/release:
3819         Change one of the steps - we only upload core & base to Gnome FTP
3820
3821 2008-02-06  Stefan Kost  <ensonic@users.sf.net>
3822
3823         * gst/gstconfig.h.in:
3824           Add 'id' for example.
3825
3826         * gst/gstpad.c:
3827         * gst/gstutils.c:
3828         * plugins/elements/gstfdsink.c:
3829           Link to signals. Doc and comment fixes.
3830
3831 2008-02-05  Tim-Philipp Müller  <tim at centricular dot net>
3832
3833         * gst/gstpad.h: (GST_PAD_LINK_SUCCESSFUL):
3834         * gst/gstpluginfeature.h: (GstPluginFeatureClass):
3835           Some minor docs fixes: fix typo, mention that GST_FLOW_RESEND is
3836           unused and unimplemented; finally, it is plugin features, not
3837           plugins, that have ranks.
3838           
3839 2008-02-05  Stefan Kost  <ensonic@users.sf.net>
3840
3841         * gst/gstpluginfeature.h:
3842           Clarify GstRank range docs.
3843
3844 2008-02-05  David Schleef  <ds@schleef.org>
3845
3846         * gst/gst.c: Add a separate gst_deinitialized that prevents
3847           gst_init() from being called after gst_deinit().  Fixes #509559
3848
3849 2008-02-05  Sebastian Dröge  <slomo@circular-chaos.org>
3850
3851         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_base_init),
3852         (gst_bin_class_init):
3853         * gst/gstelement.c: (gst_element_base_class_init),
3854         (gst_element_class_add_pad_template):
3855         * gst/gstpadtemplate.c: (gst_pad_template_init):
3856         * gst/gstpipeline.c: (gst_pipeline_get_type),
3857         (gst_pipeline_base_init), (gst_pipeline_class_init):
3858         * libs/gst/base/gstbasesink.c:
3859         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_type),
3860         (gst_base_src_base_init), (gst_base_src_class_init):
3861         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_base_init),
3862         (gst_capsfilter_class_init):
3863         * plugins/elements/gstfakesink.c: (gst_fake_sink_base_init),
3864         (gst_fake_sink_class_init):
3865         * plugins/elements/gstfakesrc.c: (gst_fake_src_base_init),
3866         (gst_fake_src_class_init):
3867         * plugins/elements/gstfdsink.c: (gst_fd_sink_base_init),
3868         (gst_fd_sink_class_init):
3869         * plugins/elements/gstfdsrc.c: (gst_fd_src_base_init),
3870         (gst_fd_src_class_init):
3871         * plugins/elements/gstfilesink.c: (gst_file_sink_base_init),
3872         (gst_file_sink_class_init):
3873         * plugins/elements/gstfilesrc.c: (gst_file_src_base_init),
3874         (gst_file_src_class_init):
3875         * plugins/elements/gstidentity.c: (gst_identity_base_init),
3876         (gst_identity_class_init):
3877         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init),
3878         (gst_multi_queue_class_init):
3879         * plugins/elements/gstqueue.c: (gst_queue_base_init),
3880         (gst_queue_class_init):
3881         * plugins/elements/gsttee.c: (gst_tee_base_init),
3882         (gst_tee_class_init):
3883         * plugins/elements/gsttypefindelement.c:
3884         (gst_type_find_element_base_init),
3885         (gst_type_find_element_class_init):
3886         * tests/check/gst/gstelement.c: (gst_element_suite):
3887         Revert previous changes to the behaviour of GstPadTemplates, etc
3888         and the possiblity to call them in class_init as it breaks too
3889         many elements. Reopens bug #491501.
3890
3891         Should be applied again for 0.11, thus added a few FIXME 0.11 at
3892         several places.
3893
3894 2008-02-05  Stefan Kost  <ensonic@users.sf.net>
3895
3896         * tools/gst-launch.c:
3897         Dump one graph per pipeline state-change and state change name
3898         (if GST_DEBUG_DUMP_DOT_DIR is set).
3899
3900 2008-02-04  Thijs Vermeir  <thijsvermeir@gmail.com>
3901
3902         * gst/gstpad.c:
3903         * tests/check/gst/gstpad.c:
3904         Be sure that we have a new copy of the caps and not
3905         reffed caps from a template
3906
3907 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
3908
3909         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init):
3910         * gst/gstpipeline.c: (gst_pipeline_get_type),
3911         (gst_pipeline_class_init):
3912         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_type),
3913         (gst_base_sink_class_init):
3914         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_type),
3915         (gst_base_src_class_init):
3916         * libs/gst/base/gstbasetransform.c: (gst_base_transform_get_type),
3917         (gst_base_transform_class_init):
3918         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
3919         (gst_collect_pads_class_init):
3920         * libs/gst/base/gstdataqueue.c: (gst_data_queue_get_type):
3921         * libs/gst/net/gstnettimeprovider.c:
3922         (gst_net_time_provider_base_init),
3923         (gst_net_time_provider_class_init):
3924         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_base_init),
3925         (gst_capsfilter_class_init):
3926         * plugins/elements/gstfakesink.c: (gst_fake_sink_base_init),
3927         (gst_fake_sink_class_init):
3928         * plugins/elements/gstfakesrc.c: (gst_fake_src_base_init),
3929         (gst_fake_src_class_init):
3930         * plugins/elements/gstfdsink.c: (gst_fd_sink_base_init),
3931         (gst_fd_sink_class_init):
3932         * plugins/elements/gstfdsrc.c: (gst_fd_src_base_init),
3933         (gst_fd_src_class_init):
3934         * plugins/elements/gstfilesink.c: (gst_file_sink_base_init),
3935         (gst_file_sink_class_init):
3936         * plugins/elements/gstfilesrc.c: (gst_file_src_base_init),
3937         (gst_file_src_class_init):
3938         * plugins/elements/gstidentity.c: (gst_identity_base_init),
3939         (gst_identity_class_init):
3940         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init),
3941         (gst_multi_queue_class_init):
3942         * plugins/elements/gstqueue.c: (gst_queue_base_init),
3943         (gst_queue_class_init):
3944         * plugins/elements/gsttee.c: (gst_tee_base_init),
3945         (gst_tee_class_init):
3946         * plugins/elements/gsttypefindelement.c:
3947         (gst_type_find_element_base_init),
3948         (gst_type_find_element_class_init):
3949         Don't use base_init where not absolutely necessary. For example it's
3950         not necessary anymore for adding pad templates or setting element
3951         details.
3952
3953         Leave empty base_init functions in several places as GST_BOILERPLATE
3954         still defines and uses them.
3955
3956 2008-02-03  Sebastian Dröge  <slomo@circular-chaos.org>
3957
3958         * gst/gstelement.c: (gst_element_base_class_init),
3959         (gst_element_class_add_pad_template):
3960         * gst/gstpadtemplate.c:
3961         Make it possible (and recommended) to set element details and add
3962         pad templates in the class_init functions by copying the details/pad
3963         templates in GstElement's base_init.
3964
3965         Also make it possible to replace existing pad templates by adding
3966         a new one with the same name. This was done in a hackish fashion
3967         in same elements before already.
3968
3969         Don't reference pad templates that are added a second time. A
3970         new pad template has a refcount of one and is not floating anymore
3971         and to be owned by the element's class. Make this more explicit by
3972         mentioning it in the docs of gst_element_class_add_pad_template().
3973
3974         These changes are backwards compatible. Fixes bug #491501.
3975
3976         * tests/check/gst/gstelement.c:
3977         Add unit test for setting element details, adding pad templates and
3978         replacing them in a subclass.
3979
3980 2008-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
3981
3982         * tools/gst-inspect.c: (print_interfaces),
3983         (print_element_properties_info), (print_pad_info),
3984         (print_signal_info), (print_element_info):
3985         Fix a few memory leaks.
3986
3987 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
3988
3989         * docs/libs/gstreamer-libs-sections.txt:
3990         * libs/gst/check/gstcheck.c:
3991         * libs/gst/check/gstcheck.h:
3992         Add more functions for unit testing: gst_check_drop_buffers,
3993         gst_check_caps_equal, gst_check_element_push_buffer_list,
3994         gst_check_element_push_buffer
3995         API: gst_check_drop_buffers
3996         API: gst_check_caps_equal
3997         API: gst_check_element_push_buffer_list
3998         API: gst_check_element_push_buffer
3999
4000 2008-02-01  Julien Moutte  <julien@fluendo.com>
4001
4002         * docs/gst/gstreamer-sections.txt: Add GST_CHECK_VERSION to the docs
4003         * gst/gstindex.c: (gst_index_class_init), (gst_index_free_writer),
4004         (gst_index_finalize), (gst_index_entry_free),
4005         (gst_index_add_association): Fix memory leaks.
4006         * gst/gstversion.h.in: Add GST_CHECK_VERSION macro.
4007         * plugins/indexers/gstmemindex.c: (gst_mem_index_class_init),
4008         (gst_mem_index_free_format), (gst_mem_index_free_id),
4009         (gst_mem_index_finalize): Fix memory leaks.
4010         * win32/common/config.h: Updated to CVS HEAD.
4011
4012 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
4013
4014         * docs/README:
4015           Some more details about how the plugin docs works.
4016
4017         * docs/plugins/gstreamer-plugins-sections.txt:
4018           Whitespace cleanup.
4019
4020 2008-02-01  Stefan Kost  <ensonic@users.sf.net>
4021
4022         * gst/parse/grammar.tab.pre.c:
4023         * gst/parse/grammar.tab.pre.h:
4024         * gst/parse/grammar.y:
4025         * gst/parse/lex._gst_parse_yy.pre.c:
4026           Add delayed set-property. This allows to set properties on dynamicaly
4027           created objects (pads in videomxer). Fixes #509391.
4028
4029 2008-02-01  Thijs Vermeir  <thijsvermeir@gmail.com>
4030
4031         * gst/gstutils.c:
4032         Check if caps are not NULL (fix bug #510194)
4033
4034 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4035
4036         * libs/gst/base/gstbasesink.c: (gst_base_sink_loop),
4037         (gst_base_sink_get_position_paused):
4038         Add fixme regarding EOS in pull mode.
4039         Fix position reporting in PAUSED for negative rates.
4040
4041 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4042
4043         * gst/gstminiobject.c: (gst_mini_object_replace):
4044         When replacing a miniobject, do a quick equality check first so that we
4045         can avoid a ref/unref pair.
4046
4047 2008-02-01  Wim Taymans  <wim.taymans@collabora.co.uk>
4048
4049         * docs/design/part-synchronisation.txt:
4050         Update some docs.
4051
4052         * docs/plugins/Makefile.am:
4053         * docs/plugins/gstreamer-plugins-docs.sgml:
4054         * docs/plugins/gstreamer-plugins-sections.txt:
4055         * plugins/elements/gstmultiqueue.c:
4056         Add multiqueue to the docs.
4057
4058 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4059
4060         * configure.ac:
4061           Back to CVS
4062
4063 === release 0.10.17 ===
4064
4065 2008-01-30  Jan Schmidt <jan.schmidt@sun.com>
4066
4067         * configure.ac:
4068           releasing 0.10.17, "Due Negligence"
4069
4070 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4071
4072         * gst/gstutils.c:
4073         Revert caps != NULL check temporarily for 0.10.17 release.
4074
4075 2008-01-30  Thijs Vermeir  <thijsvermeir@gmail.com>
4076
4077         * gst/gstutils.c:
4078         Check if caps are not NULL (fix bug #510194)
4079
4080 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4081
4082         * gst/gstutils.c:
4083         Fix compilation on systems that have posix timers but no
4084         monotonic clock.
4085         Fixes: #512715
4086         Patch By: Cygwin Ports maintainer <yselkowitz at users dot sourceforge
4087         dot net>
4088
4089 2008-01-30  Jan Schmidt  <jan.schmidt@sun.com>
4090
4091         * tools/gst-inspect.c:
4092         Revert previous commit in preparation for an impromptu 0.10.17 release
4093
4094 2008-01-29  Sebastian Dröge  <slomo@circular-chaos.org>
4095
4096         * tools/gst-inspect.c: (print_interfaces),
4097         (print_element_properties_info), (print_pad_info),
4098         (print_signal_info), (print_element_info):
4099         Fix a few memory leaks.
4100
4101 2008-01-28  Jan Schmidt  <jan.schmidt@sun.com>
4102
4103         * configure.ac:
4104         Back to CVS
4105
4106 === release 0.10.16 ===
4107
4108 2008-01-28  Jan Schmidt <thaytan@noraisin.net>
4109
4110         * configure.ac:
4111           releasing 0.10.16, "Special Dispensation"
4112
4113 2008-01-24  Tim-Philipp Müller  <tim at centricular dot net>
4114
4115         * configure.ac:
4116           Use AC_TRY_COMPILE instead of AC_TRY_RUN to check for
4117           _POSIX_TIMER, _POSIX_MONOTONIC_CLOCK, etc. Makes configure
4118           not fail when trying to crosscompile on OpenEmbedded (#511750).
4119
4120 2008-01-20  Sebastian Dröge  <slomo@circular-chaos.org>
4121
4122         * docs/manuals.mak:
4123         Use $(MAKE) instead of make to fix the build if GNU make is
4124         called different. Fixes bug #510747.
4125
4126 2008-01-20  Tim-Philipp Müller  <tim at centricular dot net>
4127
4128         * gst/gstplugin.c: (_gst_plugin_initialize):
4129           Fix old-style static plugins via GST_PLUGIN_DEFINE_STATIC
4130           again, which I broke two commits ago when changing the API
4131           of gst_plugin_register_static(): the g_list_foreach() in
4132           _gst_plugin_register_static still assumed the old function
4133           signature and would therefore fail (re-fixes #510187).
4134
4135         * gst/gstplugin.c: (_num_static_plugins), (_static_plugins),
4136           (_gst_plugin_register_static), (gst_plugin_register_static):
4137           Revert the (technically correct) change to call g_thread_init() from
4138           the pre-main() constructor. This will break programs which call
4139           g_thread_init() without an if (!g_thread_supported()) guard in their
4140           main function. We could just blame it on GLib or the application, but
4141           it's probably best to just avoid this altogether and simply not use
4142           any GLib functions here and use plain old malloc() with a simple
4143           array to store the plugins to register later when gst_init() is
4144           finally called (re-fixes #510187).
4145
4146         * tests/check/gst/gstplugin.c: (GST_GNUC_CONSTRUCTOR_DEFINED),
4147           (GST_GNUC_CONSTRUCTOR_DEFINED), (plugin_init_counter),
4148           (plugin1_init), (plugin2_init), (plugin3_init), (GST_START_TEST),
4149           (GST_START_TEST), (gst_plugin_suite):
4150           Dumb unit test to make sure the old GST_PLUGIN_DEFINE_STATIC still
4151           works.
4152
4153 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
4154
4155         * gst/gstplugin.h: (GST_PLUGIN_DEFINE_STATIC):
4156           Remove deprecation guards around GST_PLUGIN_DEFINE_STATIC.
4157           This makes gtk-doc complain, but results in slightly better
4158           compiler errors. The old _gst_plugin_register_static() is
4159           still guarded, so there'll be a compiler warning about that
4160           instead. Fixes #510187 too.
4161
4162 2008-01-17  Tim-Philipp Müller  <tim at centricular dot net>
4163
4164         * gst/gst.c: (init_post):
4165         * gst/gstplugin.c: (_gst_plugin_register_static),
4166           (gst_plugin_register_static), (_gst_plugin_initialize):
4167         * gst/gstplugin.h: (GstPluginFilter):
4168           Change API of gst_plugin_register_static() to not take
4169           a GstPluginDesc, but rather just take all the arguments
4170           in a GstPluginDesc directly. This is more intuitive and
4171           avoids certain mistakes when porting code from
4172           GST_PLUGIN_DEFINE_STATIC to gst_plugin_register_static().
4173           Fixes #510187.
4174
4175         * tests/check/gst/gstplugin.c:
4176           Fix up for changed API.
4177
4178 2008-01-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4179
4180         * docs/faq/legal.xml:
4181           Update FAQ, Totem actually has an exception these days.
4182
4183 2008-01-14  Jan Schmidt  <jan.schmidt@sun.com>
4184
4185         * win32/common/libgstreamer.def:
4186         Add new API declarations
4187
4188 2008-01-14  Stefan Kost  <ensonic@users.sf.net>
4189
4190         * gst/gstminiobject.c:
4191           Spelling fixes for the API docs.
4192
4193 2008-01-14  Stefan Kost  <ensonic@users.sf.net>
4194
4195         * libs/gst/base/gstbasetransform.c:
4196           Fix long property description for QoS.
4197
4198 2008-01-12  Jan Schmidt  <Jan.Schmidt@sun.com>
4199
4200         * gst/gst.c:
4201         _gst_trace_on is already provided by gsttrace.h, no need to declare
4202         it ourselves.
4203
4204         * docs/libs/gstreamer-libs-sections.txt:
4205         Add 'buffers', 'check_cond' and 'check_mutex' from libgstcheck
4206         and remove strange tcase_add_test which is outputting a warning.
4207
4208         * libs/gst/check/gstcheck.c:
4209         * libs/gst/check/gstcheck.h:
4210         Properly declare 'buffers', 'check_cond', 'check_mutex' extern
4211         and define them in gstcheck.c instead of having every .c file whcih
4212         includes gstcheck.h be defining its own copy and relying on symbol
4213         interposing to marry them all, which doesn't work on Solaris.
4214
4215         * tests/check/elements/identity.c: (GST_START_TEST):
4216         Don't define 'buffers' locally, it comes from libgstcheck.
4217
4218         * tests/check/generic/sinks.c: (send_buffer):
4219         Fix type of variable (GstFlowReturn, not GstStateChangeReturn)
4220
4221         * tests/check/gst/gststructure.c: (GST_START_TEST):
4222         * tests/check/gst/gstsystemclock.c: (GST_START_TEST):
4223         * tests/check/gst/gstutils.c: (GST_START_TEST):
4224         * tests/check/gst/gstvalue.c: (GST_START_TEST):
4225         Add a bunch of casts to make various constants fit the types
4226         they're being assigned to.
4227
4228 2008-01-10  Stefan Kost  <ensonic@users.sf.net>
4229
4230         * gst/gstchildproxy.c:
4231           Improve docs and add some ideas for making this more general-purpose.
4232
4233 2008-01-10  Tim-Philipp Müller  <tim at centricular dot net>
4234
4235         * gst/gst_private.h: (GST_CAT_TYPES):
4236           Add GST_CAT_TYPES, for consistency, and so that the other
4237           debug categories don't make fun of it. Spotted by Saur on IRC.
4238
4239 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
4240
4241         * gst/parse/Makefile.am:
4242           Move types.h from EXTRA_DIST to noinst_HEADERS.
4243
4244 2008-01-10  Sebastian Dröge  <slomo@circular-chaos.org>
4245
4246         * autogen.sh:
4247           Add -Wno-portability to the automake parameters to stop warnings
4248           about GNU make extensions being used. We require GNU make in almost
4249           every Makefile anyway.
4250
4251         * configure.ac:
4252           Use AM_PROG_CC_C_O as a compiler that accepts both -c and -o
4253           at the same time is required for per target flags.
4254
4255 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
4256
4257         * gst/gstmacros.h:
4258           Include glib/gmacros.h for G_BEGIN_DECLS. Check if
4259           __GNUC__ is defined before using it.
4260
4261 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
4262
4263         * docs/gst/gstreamer-sections.txt:
4264         * gst/gst.c: (init_post):
4265         * gst/gstplugin.c: (_gst_plugin_register_static),
4266           (gst_plugin_register_static), (_gst_plugin_initialize),
4267           (gst_plugin_register_func):
4268         * gst/gstplugin.h: (GST_PLUGIN_DEFINE_STATIC):
4269           API: add gst_plugin_register_static() and deprecate
4270           GST_PLUGIN_DEFINE_STATIC, since it's not portable
4271           (#498924).
4272           Also, in _gst_plugin_register_static(), make sure to call
4273           g_thread_init() before calling GLib functions such as
4274           g_list_append() if we're not initialised yet, since that
4275           may lead to random crashes with older GSlice/GLib versions.
4276
4277         * tests/check/gst/gstplugin.c:
4278           Adapt unit test to above changes.
4279
4280 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
4281
4282         * gst/gst_private.h: (STRUCTURE_ESTIMATED_STRING_LEN):
4283         * gst/gstcaps.c: (gst_caps_to_string):
4284         * gst/gststructure.c: (GST_ASCII_IS_STRING),
4285           (priv_gst_structure_append_to_gstring), (gst_structure_to_string):
4286           Yet another gratuitous GString micro-optimisation: add a (private)
4287           function that serialises a structure appending to an existing
4288           GString, so that when we serialise caps we don't need to alloc+free
4289           a throwaway GString for each structure (each of which also entailing
4290           multiple reallocs on the way); also use g_string_sized_new() in
4291           various places with an approximate string length to avoid reallocs
4292           within GString. See #500143.
4293
4294 2008-01-09  Tim-Philipp Müller  <tim at centricular dot net>
4295
4296         * gst/gststructure.c: (gst_structure_id_set_value):
4297           Always check UTF-8 conformance of structure strings and not only
4298           if the debugging system is enabled; reasoning: the behaviour of
4299           the actual code shouldn't really change depending on whether the
4300           debugging system is enabled or not (#508291).
4301
4302 2008-01-09  Stefan Kost  <ensonic@users.sf.net>
4303
4304         * Makefile.am:
4305           Remove old coverage target in favour of "make lcov".
4306
4307 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
4308
4309         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
4310         (gst_base_src_loop):
4311         The start segment for reverse playback goes from start to last_stop.
4312
4313 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
4314
4315         Patch by: Peter Kjellerstedt <pkj axis com>
4316
4317         * gst/gstclock.h:
4318         Cast the results from the timeval/spec_to_time macros to what the
4319         docs say it casts to, a GstClockTime. fixes #508175.
4320
4321 2008-01-09  Wim Taymans  <wim.taymans@collabora.co.uk>
4322
4323         * gst/gstbuffer.c:
4324         Update some comments.
4325
4326         * tools/gst-inspect.c: (print_element_properties_info):
4327         Improve printing of flags.
4328
4329 2008-01-08  Tim-Philipp Müller  <tim at centricular dot net>
4330
4331         * libs/gst/base/gstbasetransform.c:
4332           (gst_base_transform_transform_size):
4333           Print element name with g_warning() if there's a problem
4334           with the unit size.
4335
4336 2008-01-07  David Schleef  <ds@schleef.org>
4337
4338         Patch by: Damien Lespiau <damien.lespiau@gmail.com>
4339
4340         * libs/gst/controller/gstcontroller.h:
4341         * libs/gst/controller/gstcontrolsource.h:
4342         * libs/gst/controller/gstinterpolationcontrolsource.h:
4343         * libs/gst/controller/gstlfocontrolsource.h:
4344         * libs/gst/dataprotocol/dataprotocol.h:
4345           Fix empty prototypes.  Fixes bug #507957.
4346
4347 2008-01-07  David Schleef  <ds@schleef.org>
4348
4349         * docs/faq/dependencies.xml: Fix typo.
4350
4351 2008-01-07  Wim Taymans  <wim.taymans@collabora.co.uk>
4352
4353         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_do_seek),
4354         (gst_base_src_loop):
4355         Don't update the last_stop position in do_seek, that's the position we
4356         did a seek to.
4357         Read backwards when we have a negative rate.
4358
4359         * tests/check/elements/filesrc.c: (event_func), (wait_eos),
4360         (setup_filesrc), (cleanup_filesrc), (GST_START_TEST),
4361         (filesrc_suite):
4362         Add check for reverse reading.
4363
4364 2008-01-07  Tim-Philipp Müller  <tim at centricular dot net>
4365
4366         Patch by: Alexis Ballier <aballier at gentoo org>
4367
4368         * tests/check/gst/gstabi.c:
4369         * tests/check/gst/struct_ppc64.h:
4370         * tests/check/libs/libsabi.c:
4371         * tests/check/libs/struct_ppc64.h:
4372           Decide which header to include based on the userland ABI target
4373           and not the kernel/cpu. Fix up structure sizes of ppc64 header
4374           for 64-bit userland (#503590).  Might need something similar for
4375           x86 too.
4376
4377 2008-01-05  Tim-Philipp Müller  <tim at centricular dot net>
4378
4379         * gst/gstdebugutils.c: (_gst_debug_bin_to_dot_file):
4380           Log the reason why fopen fails in addition to the fact that it failed.
4381           
4382 2008-01-04  Sebastian Dröge  <slomo@circular-chaos.org>
4383
4384         * gst/parse/parse.l:
4385         Use "%option never-interactive" to prevent useless calls to isatty()
4386         on every input when parsing. Also use "%option noinput" to not define
4387         the static input/yyinput functions which we don't use anyway. This
4388         removes a compiler warning with gcc 4.3 and saves some bytes in the
4389         library.
4390         
4391         * gst/parse/lex._gst_parse_yy.pre.c:
4392         Regenerated for the above change.
4393
4394 2008-01-04  Wim Taymans  <wim.taymans@collabora.co.uk>
4395
4396         * gst/gstpad.c: (fixate_value):
4397         Don't crash when trying to fixate and empty list.
4398         Fixes #506643.
4399
4400 2008-01-03  Sebastian Dröge  <slomo@circular-chaos.org>
4401
4402         * docs/faq/gst-uninstalled:
4403         Clarify the comments to make the usage of this script and what it
4404         does easier to understand.
4405
4406 2008-01-01  Thijs Vermeir  <thijsvermeir@gmail.com>
4407
4408         * tools/gst-plot-timeline.py:
4409         Add more options to gst-plot-timeline
4410
4411 2007-12-31  Wim Taymans  <wim.taymans@collabora.co.uk>
4412
4413         * docs/design/part-synchronisation.txt:
4414         Some more info on how the stream_time in GstBaseSink is done.
4415
4416 2007-12-30  Tim-Philipp Müller  <tim at centricular dot net>
4417
4418         * tests/check/generic/sinks.c: (gst_sinks_suite):
4419           Put back the tcase_set_timeout(), apparently it's needed after
4420           all; fix it up in a way that makes things work with valgrind too.
4421
4422 2007-12-30  Thijs Vermeir  <thijsvermeir@gmail.com>
4423
4424         * gst/gstdebugutils.c:
4425           Add warning when failed to open file for writing.
4426
4427 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
4428
4429         Based on patch by: Laurent Glayal  <spglegle yahoo fr>
4430
4431         * gst/gstvalue.c: (gst_value_is_fixed):
4432           Optimisation: bail out of the loop as early as possible (#500143).
4433
4434 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
4435
4436         * gst/gstcaps.c: (gst_caps_to_string):
4437         * gst/gstinfo.c: (gst_debug_construct_term_color):
4438         * gst/gstparse.c: (gst_parse_launchv):
4439         * gst/gstutils.c: (gst_util_dump_mem):
4440         * gst/gstvalue.c: (gst_value_serialize_any_list),
4441           (gst_value_transform_any_list_string):
4442           Bunch of gratuitous nano-optimisations.
4443
4444 2007-12-28  Tim-Philipp Müller  <tim at centricular dot net>
4445
4446         * tests/check/generic/sinks.c: (async_done_func),
4447           (async_done_eos_func):
4448           Fix leak in unit test (bus sync handler must unref the message
4449           if it returns GST_BUS_DROP). Don't fiddle with the default test
4450           timeout, this is smaller than the current preconfigured value
4451           via CK_DEFAULT_TIMEOUT, and also breaks things with valgrind
4452           because it overrides the value specified in CK_DEFAULT_TIMEOUT.
4453
4454 2007-12-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4455
4456         Based on Patch by: Laurent Glayal <spglegle at yahoo dot fr>
4457
4458         * configure.ac:
4459         Check for stdio_ext.h for the filesink changes.
4460
4461         * plugins/elements/gstfilesink.c: (buffer_mode_get_type),
4462         (gst_file_sink_class_init), (gst_file_sink_init),
4463         (gst_file_sink_dispose), (gst_file_sink_set_property),
4464         (gst_file_sink_get_property), (gst_file_sink_open_file),
4465         (gst_file_sink_close_file):
4466         * plugins/elements/gstfilesink.h:
4467         Add two properties to control the buffering mode and size.
4468         API: GstFileSink::buffer-mode
4469         API: GstFileSink::buffer-size
4470         Fixes #500150.
4471
4472 2007-12-24  Wim Taymans  <wim.taymans@collabora.co.uk>
4473
4474         * gst/gstsystemclock.c: (gst_system_clock_id_wait_jitter_unlocked):
4475         Add some more docs to explain why a FIXME was wrongly added. 
4476
4477 2007-12-22  Sebastian Dröge  <slomo@circular-chaos.org>
4478
4479         * gst/gstobject.c:
4480           Fix typo in the gst_object_{ref,unref} documentation.
4481
4482 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
4483
4484         * tests/check/libs/controller.c:
4485         * tests/check/libs/typefindhelper.c:
4486         * tests/check/pipelines/parse-launch.c:
4487           Don't use GST_PLUGIN_DEFINE_STATIC, it is not portable and is
4488           going to be deprecated (see #498924).
4489
4490 2007-12-21  Tim-Philipp Müller  <tim at centricular dot net>
4491
4492         * gst/gsttypefind.c: (gst_type_find_register):
4493           Make gst_type_find_register work for static typefind functions,
4494           ie. allow passing plugin == NULL (prerequisite for #498924).
4495
4496         * gst/gstelementfactory.c: (gst_element_register):
4497           Small docs addition.
4498
4499 2007-12-21  Wim Taymans  <wim.taymans@collabora.co.uk>
4500
4501         * gst/gstpad.c: (gst_pad_dispose):
4502         Really unlink the peer pad instead of setting the peer pointer to NULL
4503         when we dispose the pad.
4504         This correctly calls the unlink functions and makes sure that the peer
4505         does not have a handle to invalid memory. See #504671.
4506
4507         * tests/check/gst/gstpad.c: (GST_START_TEST), (gst_pad_suite):
4508         Add testsuite for above case.
4509
4510 2007-12-20  Tim-Philipp Müller  <tim at centricular dot net>
4511
4512         Patch by: Peter Kjellerstedt <pkj axis com>
4513
4514         * libs/gst/check/gstcheck.h:
4515           Fix detection of the check version we're compiling against (would
4516           otherwise break if check goes v0.10.0); correctly report the
4517           name of the failed test again in case of failure, instead of
4518           just 'tf' (fixes #504499).
4519
4520 2007-12-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4521
4522         * libs/gst/base/gstbasesrc.c: (gst_base_src_send_event),
4523         (gst_base_src_get_range), (gst_base_src_pad_get_range),
4524         (gst_base_src_loop), (gst_base_src_set_flushing),
4525         (gst_base_src_change_state):
4526         Allow sending EOS to the source to make it send out an EOS event from
4527         the streaming thread.
4528         Update docs and deprecate the old NULL/READY shutdown method.
4529
4530         * tests/check/libs/basesrc.c: (GST_START_TEST),
4531         (gst_basesrc_suite):
4532         Add unit test for controlled shutdown.
4533
4534 2007-12-19  Wim Taymans  <wim.taymans@collabora.co.uk>
4535
4536         * docs/design/part-synchronisation.txt:
4537         Small updates.
4538
4539         * gst/gstsegment.c: (gst_segment_set_seek),
4540         (gst_segment_set_newsegment_full), (gst_segment_to_stream_time),
4541         (gst_segment_to_running_time):
4542         The seek format can be different from the segment format when the start
4543         and stop values are not to be updated, when we only do a rate change for
4544         example.
4545
4546         * tests/check/gst/gstsegment.c: (GST_START_TEST),
4547         (gst_segment_suite):
4548         Add a testcase for the rate-only seeks, checking that the format is
4549         correctly ignored when start and stop are not updated.
4550
4551 2007-12-18  Sebastian Dröge  <slomo@circular-chaos.org>
4552
4553         Patch by: Matthias Bolte <photon at mail dot upb dot de>
4554
4555         * win32/vs8/grammar.vcproj:
4556         * win32/vs8/libgstcontroller.vcproj:
4557         * win32/vs8/libgstreamer.vcproj:
4558         Fix compilation with VS8 and include some missing files.
4559
4560 2007-12-18  Tim-Philipp Müller  <tim at centricular dot net>
4561
4562         * gst/gsttaglist.c:
4563           Small docs addition: mention that the strings returned by
4564           gst_tag_list_get_string*() are in UTF-8 encoding.
4565
4566 2007-12-17  Tim-Philipp Müller  <tim at centricular dot net>
4567
4568         * Makefile.am:
4569           The check-exports stuff moved to common/win32.mak, so include that.
4570
4571 2007-12-17  Wim Taymans  <wim.taymans@collabora.co.uk>
4572
4573         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
4574         (gst_base_src_perform_seek), (gst_base_src_get_range),
4575         (gst_base_src_set_playing), (gst_base_src_change_state):
4576         Make _wait_playing() not check any variables so that we can call this
4577         function from subclasses. Move the checks elsewhere similar to
4578         _wait_preroll() in basesink.
4579         Add some debugging.
4580         Only signal the LIVE cond when we are going back to PLAYING.
4581
4582 2007-12-16  Tim-Philipp Müller  <tim at centricular dot net>
4583
4584         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache):
4585           Use g_remove() and g_rename(). Check result of g_rename(), and
4586           don't leak the open file descriptor if we error out when writing.
4587
4588         * gst/gstregistryxml.c: (load_plugin), (gst_registry_xml_write_cache):
4589           Must check the return value of close() after writing out the new
4590           registry file.  Sometimes write problems such as out-of-diskspace
4591           are only reported when the file is closed and not already during
4592           the write.  This may have caused partial/broken registry files in
4593           some rare circumstances. Should fix #503675.
4594
4595 2007-12-16  Edward Hervey  <edward.hervey@collabora.co.uk>
4596
4597         * docs/gst/.cvsignore:
4598         * docs/libs/.cvsignore:
4599         * docs/plugins/.cvsignore:
4600         Ignore files generated by new common/* modifications
4601
4602 2007-12-15  Stefan Kost  <ensonic@users.sf.net>
4603
4604         * win32/common/libgstbase.def:
4605           Yes, you can also have a <TAB> if you want.
4606
4607 2007-12-15  Stefan Kost  <ensonic@users.sf.net>
4608
4609         * win32/common/libgstbase.def:
4610           Add new basetransform API to win export file.
4611
4612 2007-12-15  Stefan Kost  <ensonic@users.sf.net>
4613
4614         * tests/check/gst/gstbin.c:
4615           Adjust the test to the refcount change two days ago.
4616
4617 2007-12-14  David Schleef  <ds@schleef.org>
4618
4619         * docs/faq/getting.xml: Fix typo.
4620
4621 2007-12-14  Sebastian Dröge  <slomo@circular-chaos.org>
4622
4623         * docs/libs/gstreamer-libs-sections.txt:
4624         * libs/gst/base/gstbasetransform.c: (gst_base_transform_init),
4625           (gst_base_transform_prepare_output_buffer),
4626           (gst_base_transform_set_gap_aware):
4627         * libs/gst/base/gstbasetransform.h:
4628           API: Add gst_base_transform_set_gap_aware() to control whether
4629           the element correctly handles GST_BUFFER_FLAG_GAP or shouldn't
4630           get buffers with this flag at all. Fixes #503231.
4631
4632 2007-12-13  Stefan Kost  <ensonic@users.sf.net>
4633
4634         * libs/gst/base/gstbasesink.c:
4635         * libs/gst/base/gstbasesrc.c:
4636         * libs/gst/base/gstbasetransform.c:
4637           Replace gst_pad_get_parent by GST_OBJECT_PARENT inside streaming
4638           thread. Correct log message in gstbasesrc.c.
4639
4640 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
4641
4642         * gst/gstutils.c: (element_find_unconnected_pad):
4643           Fix possible compiler warning (#503417).
4644
4645 2007-12-13  Tim-Philipp Müller  <tim at centricular dot net>
4646
4647         * gst/gstobject.c: (gst_object_dispatch_properties_changed):
4648           Don't use GST_CAT_EVENT here for logging, it makes no sense.
4649
4650 2007-12-13  Sebastian Dröge  <slomo@circular-chaos.org>
4651
4652         * tools/gst-inspect.c: (print_element_properties_info):
4653           Add support for GstFraction properties.
4654
4655 2007-12-12  Tim-Philipp Müller  <tim at centricular dot net>
4656
4657         * Makefile.am:
4658           Add check-exports target and run it as part of 'make check'
4659           (see #499140 and #493983).
4660
4661         * gst/gst_private.h:
4662         * gst/gstelementfactory.h:
4663         * gst/gstghostpad.c: (gst_proxy_pad_class_init):
4664         * gst/gstinfo.c: (_priv_gst_in_valgrind), (_gst_debug_init),
4665           (_priv_gst_in_valgrind):
4666         * gst/gstinfo.h: (GstLogFunction):
4667         * gst/gsttypefind.c: (type_find_debug), (GST_CAT_DEFAULT),
4668           (gst_type_find_register):
4669         * gst/gsttypefindfactory.c: (type_find_debug), (GST_CAT_DEFAULT),
4670           (gst_type_find_factory_get_type):
4671         * libs/gst/controller/gstcontroller.c: (GST_CAT_DEFAULT),
4672           (GST_CAT_DEFAULT), (parent_class), (priv_gst_controller_key),
4673           (gst_controller_new_valist), (gst_controller_new_list),
4674           (_gst_controller_dispose), (_gst_controller_class_init):
4675         * libs/gst/controller/gstcontrolsource.c: (GST_CAT_DEFAULT):
4676         * libs/gst/controller/gsthelper.c: (GST_CAT_DEFAULT),
4677           (GST_CAT_DEFAULT), (gst_object_uncontrol_properties),
4678           (gst_object_get_controller), (gst_object_set_controller),
4679           (gst_object_suggest_next_sync), (gst_object_sync_values),
4680           (gst_object_set_control_source), (gst_object_get_control_source),
4681           (gst_object_get_value_arrays), (gst_object_get_value_array),
4682           (gst_object_get_control_rate), (gst_object_set_control_rate):
4683         * libs/gst/controller/gstinterpolation.c: (GST_CAT_DEFAULT):
4684         * libs/gst/controller/lib.c: (GST_CAT_DEFAULT):
4685           Make some functions that should be static static; rename some
4686           private symbols so that they don't get exported; add some FIXME
4687           comments so we can move accidentally exported functions into
4688           our private section in 0.11.
4689
4690         * win32/common/libgstreamer.def:
4691           Add gst_utils_get_timestamp().
4692
4693 2007-12-12  Stefan Kost  <ensonic@users.sf.net>
4694
4695         * gst/gstvalue.c:
4696         * gst/gstvalue.h:
4697           Add more missing "Since:" tags to docs.
4698
4699 2007-12-12  Stefan Kost  <ensonic@users.sf.net>
4700
4701         * gst/gstutils.c:
4702           Add mising "Since:" to docs.
4703
4704 2007-12-11  Stefan Kost  <ensonic@users.sf.net>
4705
4706         * gst/gstplugin.c:
4707           Include "glib-compat-private.h" to fix the build on system with
4708           glib < 2.10. Fixes #503131.
4709
4710 2007-12-11  Stefan Kost  <ensonic@users.sf.net>
4711
4712         * gst/gstutils.c:
4713         * gst/gstutils.h:
4714           Actually its not PURE as it gets the time from elsewhere.
4715
4716 2007-12-11  Stefan Kost  <ensonic@users.sf.net>
4717
4718         * docs/gst/gstreamer-sections.txt:
4719         * gst/gstclock.h:
4720         * gst/gstdebugutils.c:
4721         * gst/gstinfo.c:
4722         * gst/gstutils.c:
4723         * gst/gstutils.h:
4724         * libs/gst/base/gstbasesink.c:
4725         * tools/gst-launch.c:
4726           Change GST_GET_TIMESTAMP into gst_util_get_timestamp and replace all
4727           uses as we don't have HAVE_POSIX_TIMERS in public headers.
4728           Thanks Tim for spotting.
4729           API: gst_util_get_timestamp
4730
4731 2007-12-09  Sebastian Dröge  <slomo@circular-chaos.org>
4732
4733         * configure.ac:
4734           Don't define GST_DISABLE_DEPRECATED for releases. Fixes #498181.
4735
4736 2007-12-08  Tim-Philipp Müller  <tim at centricular dot net>
4737
4738         * gst/gststructure.c: (gst_structure_validate_name),
4739           (gst_structure_new_valist), (gst_structure_parse_value),
4740           (gst_structure_from_string):
4741           Don't crash in _from_string() if the structure name is not valid
4742           (fixes #501560).  Allow structure names to start with a number
4743           again (this apparently broke the ubuntu codec installer).
4744
4745         * tests/check/gst/gststructure.c: (GST_START_TEST), (GST_START_TEST),
4746           (GST_START_TEST):
4747           Add unit test for the crash; update unit tests for new behaviour.
4748
4749 2007-12-03  Wim Taymans  <wim.taymans@gmail.com>
4750
4751         * gst/gstutils.c:
4752         Clarify gst_element_get_compatible_pad() documentation.
4753         Fixes #500919.
4754
4755 2007-12-02  Sebastian Dröge  <slomo@circular-chaos.org>
4756
4757         * tests/check/Makefile.am:
4758           Don't forget to dist {gst,libs}/struct_hppa.h.
4759
4760 2007-11-28  Stefan Kost  <ensonic@users.sf.net>
4761
4762         * libs/gst/base/gstbasesink.c:
4763           Use new API to get elapsed time.
4764
4765 2007-11-28  Stefan Kost  <ensonic@users.sf.net>
4766
4767         * gst/gstdebugutils.c:
4768         * gst/gstinfo.c:
4769           Fix wrong order of args in GST_CLOCK_DIFF() usage.
4770
4771         * tools/gst-launch.c:
4772           Use new API to get elapsed time.
4773
4774 2007-11-28  Stefan Kost  <ensonic@users.sf.net>
4775
4776         * docs/gst/gstreamer-sections.txt:
4777         * gst/gstclock.h:
4778         * gst/gstdebugutils.c:
4779         * gst/gstinfo.c:
4780           Rename new API + ChangeLog surgery to remove old name from last entry..
4781
4782 2007-11-28  Stefan Kost  <ensonic@users.sf.net>
4783
4784         * docs/gst/gstreamer-sections.txt:
4785         * gst/gstclock.h:
4786         * gst/gstdebugutils.c:
4787         * gst/gstinfo.c:
4788           Now hide the different clock stuff behind a macro.
4789
4790 2007-11-28  Stefan Kost  <ensonic@users.sf.net>
4791
4792         * configure.ac:
4793         * gst/gstdebugutils.c:
4794         * gst/gstinfo.c:
4795           Apply the posix-timer check from #361155. Conditionally use the posix
4796           timer for logging. This gives better timestamp precission, less
4797           overhead and no ntp jitter.
4798
4799 2007-11-28  Sebastian Dröge  <slomo@circular-chaos.org>
4800
4801         * gst/gstminiobject.c: (gst_mini_object_get_type),
4802         (gst_mini_object_class_init), (gst_mini_object_copy_default),
4803         (gst_mini_object_finalize), (gst_mini_object_copy),
4804         (gst_mini_object_is_writable), (gst_mini_object_make_writable),
4805         (gst_mini_object_replace), (param_mini_object_validate),
4806         (gst_param_spec_mini_object_get_type):
4807         Some cleanup and checking against invalid function parameters.
4808
4809 2007-11-28  Wim Taymans  <wim.taymans@gmail.com>
4810
4811         * docs/gst/gstreamer-sections.txt:
4812         * gst/gstclock.h:
4813         * tests/check/gst/gstsystemclock.c: (GST_START_TEST),
4814         (gst_systemclock_suite):
4815         Start merging in the easy bits of #361155, the monotonic clock patch.
4816         This one adds a few handy macros with docs and a testsuite.
4817
4818 2007-11-27  Wim Taymans  <wim.taymans@gmail.com>
4819
4820         * plugins/elements/gstfilesink.c: (gst_file_sink_event):
4821         Be a bit smarter when seeking, like, don't try to do a seek when it's
4822         not needed. This avoids errors when the file is not seekable.
4823         Fixes #499771.
4824
4825 2007-11-26  Stefan Kost  <ensonic@users.sf.net>
4826
4827         * docs/gst/gstreamer-docs.sgml:
4828         * docs/gst/gstreamer-sections.txt:
4829         * docs/gst/gstreamer.types.in:
4830         * gst/Makefile.am:
4831         * gst/gst.h:
4832         * gst/gstpreset.c:
4833         * gst/gstpreset.h:
4834         * plugins/elements/gstqueue.c:
4835           Due to popular request remove preset interface again. :-(.
4836
4837 2007-11-22  Stefan Kost  <ensonic@users.sf.net>
4838
4839         * tools/gst-inspect.c:
4840           Print 'default value' for enums and flags too.
4841
4842 2007-11-22  Stefan Kost  <ensonic@users.sf.net>
4843
4844         * docs/random/ensonic/profiling.txt:
4845           More ideas.
4846
4847         * gst/gstbin.c:
4848           Fix typo and give better log output.
4849
4850         * gst/gstdebugutils.c:
4851         * gst/gstdebugutils.h:
4852           More ideas, make graphs a bit smaller and fix param name in macro.
4853
4854 2007-11-22  Stefan Kost  <ensonic@users.sf.net>
4855
4856         * gst/gstpreset.c:
4857           Try harder to use the return value from fgets().
4858
4859 2007-11-21  Stefan Kost  <ensonic@users.sf.net>
4860
4861         * gst/gstpreset.c:
4862           For theses two fgets we handle the error below.
4863
4864 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
4865
4866         * libs/gst/base/gstbasesink.c: (gst_base_sink_send_event):
4867         Only send upstream events upstream. Fixes #498746.
4868
4869 2007-11-21  Wim Taymans  <wim.taymans@gmail.com>
4870
4871         Patch by: Laurent Glayal <spglegle at yahoo dot fr>
4872
4873         * plugins/elements/gstidentity.c: (gst_identity_class_init),
4874         (gst_identity_init), (gst_identity_transform_ip),
4875         (gst_identity_set_property), (gst_identity_get_property):
4876         * plugins/elements/gstidentity.h:
4877         Add property to disable handoff signal emission. Fixes #498694.
4878         API: GstIdentity::signal-handoffs
4879
4880 2007-11-21  Julien Moutte  <julien@fluendo.com>
4881
4882         * docs/faq/gst-uninstalled: Yet another missing library for the
4883         uninstalled script (fft)
4884
4885 2007-11-21  Jan Schmidt  <jan.schmidt@sun.com>
4886
4887         * docs/faq/developing.xml:
4888         Add a question about how to submit new translations.
4889
4890         * docs/random/release:
4891         Update the contact email address for the Translation Project
4892
4893         * plugins/elements/gstfdsrc.c:
4894         The parent_class for fdsrc is pushsrc, not GstElement.
4895
4896 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
4897
4898         * gst/gstpreset.c:
4899           Plug a leak and fix saving.
4900
4901 2007-11-20  Sebastian Dröge  <slomo@circular-chaos.org>
4902
4903         * docs/gst/gstreamer-sections.txt:
4904         Add new gst_preset__get_property_names() function to the docs
4905         to fix the build.
4906
4907 2007-11-20  Stefan Kost  <ensonic@users.sf.net>
4908
4909         * gst/gstpreset.c:
4910         * gst/gstpreset.h:
4911           Change _get_preset_names API to return a strv with copies. Add
4912           _get_property_names to allow implementations to filter and provide
4913           good default implementation.
4914
4915 2007-11-20  Julien MOUTTE  <julien@moutte.net>
4916
4917         * docs/faq/gst-uninstalled: Add another library to the uninstalled
4918         script (sdp).
4919
4920 2007-11-19  Stefan Kost  <ensonic@users.sf.net>
4921
4922         * gst/gstpreset.c:
4923           More cleanups, docs, and TODOs from comments that now slowly come in.
4924
4925 2007-11-19  Julien MOUTTE  <julien@moutte.net>
4926
4927         * docs/faq/gst-uninstalled: Add new base libraries in the LD 
4928         search path.
4929
4930 2007-11-19  Stefan Kost  <ensonic@users.sf.net>
4931
4932         * gst/gstpreset.c:
4933           Fix bogus warning and make the property type specific code more
4934           similar.
4935
4936 2007-11-19  Julien MOUTTE  <julien@moutte.net>
4937
4938         * gst/gstpreset.c: (gst_preset_default_create_preset): Make
4939         it build on OS X.
4940
4941 2007-11-19  Wim Taymans  <wim.taymans@gmail.com>
4942
4943         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
4944         (gst_bin_add_func), (gst_bin_remove_func),
4945         (gst_bin_change_state_func), (gst_bin_continue_func):
4946         Change email, cleanups add some more debug and comments.
4947         Also set bus and clock on new elements when the pipeline was in error.
4948
4949 2007-11-18  Stefan Kost  <ensonic@users.sf.net>
4950
4951         * gst/gstbin.c:
4952         * gst/gstdebugutils.c:
4953           Fix build with --disable-gst-debug. Fixes #497859.
4954           Spotted by Sameer Naik.
4955
4956 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
4957
4958         * gst/gstevent.c:
4959           Little documentation improvment.
4960
4961         * gst/gstpreset.c:
4962           More TODO cleanups. Remove c++ comments.
4963
4964         * libs/gst/controller/gstcontroller.c:
4965           Add TODO and use quark from static string.
4966
4967         * tests/check/gst/gstmessage.c:
4968         * tests/check/gst/gststructure.c:
4969           Use quark from static string.
4970
4971 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
4972
4973         * gst/gstpreset.c:
4974           Add some comments and TODOs.
4975
4976         * gst/gstpreset.h:
4977           Add padding for future changes.
4978
4979         * plugins/elements/gstqueue.c:
4980           Implement the iface.    
4981
4982 2007-11-17  Stefan Kost  <ensonic@users.sf.net>
4983
4984         * docs/gst/gstreamer-docs.sgml:
4985         * docs/gst/gstreamer-sections.txt:
4986         * docs/gst/gstreamer.types.in:
4987         * gst/Makefile.am:
4988         * gst/gst.h:
4989         * gst/gstpreset.c:
4990         * gst/gstpreset.h:
4991           Add the preset interface (Fixes #396779). Do some doc cleanups along.
4992
4993 2007-11-16  Jan Schmidt  <jan.schmidt@sun.com>
4994
4995         * configure.ac:
4996
4997         Back to CVS
4998
4999 === release 0.10.15 ===
5000
5001 2007-11-15  Jan Schmidt <jan.schmidt@sun.com>
5002
5003         * configure.ac:
5004           releasing 0.10.15, "October"
5005
5006 2007-11-14  Jan Schmidt  <jan.schmidt@sun.com>
5007
5008         * win32/vs6/libgstreamer.dsp:
5009         Convert line endings back to DOS.
5010
5011 2007-11-13  Stefan Kost  <ensonic@users.sf.net>
5012
5013         * docs/design/draft-tagreading.txt:
5014         * docs/random/ensonic/profiling.txt:
5015         Update fast tagreading draft and performance profiling ideas.
5016
5017 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
5018
5019         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_last_buffer):
5020         Don't hold the object lock when unreffing a buffer because it could
5021         cause a deadlock when the finalize function wants to grab the object
5022         lock too. Fixes #495133.
5023
5024 2007-11-09  Wim Taymans  <wim.taymans@gmail.com>
5025
5026         * gst/gstsegment.c: (gst_segment_set_newsegment_full),
5027         (gst_segment_to_stream_time), (gst_segment_to_running_time):
5028         Also accumulate time correctly when doing reverse playback. Fixes
5029         #488201,
5030         When converting to running and stream time, use default values for
5031         start/stop/time/accum when comparing different formats. Fixes #494245.
5032
5033         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
5034         Do running/stream time in TIME format.
5035
5036         * tests/check/gst/gstsegment.c: (GST_START_TEST),
5037         (gst_segment_suite):
5038         2 new unit tests for segment accumulation.
5039
5040 2007-11-07  Tim-Philipp Müller  <tim at centricular dot net>
5041
5042         * gst/gst.c: (init_pre):
5043         * gst/gstdebugutils.c: (priv_gst_dump_dot_dir), (debug_dump_element),
5044           (_gst_debug_bin_to_dot_file):
5045           Move getenv() back into gst_init, so everyone can live happily
5046           ever after. Make sure the symbol isn't exported though.
5047
5048 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5049
5050         Patch by: Sebastien Moutte  <sebastien moutte net>
5051
5052         * win32/common/gstenumtypes.c:
5053         * win32/common/gstenumtypes.h:
5054           Update enum types.
5055
5056         * win32/vs6/libgstreamer.dsp:
5057           Update vs6 project files (#494343).
5058
5059 2007-11-06  Wim Taymans  <wim.taymans@gmail.com>
5060
5061         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query),
5062         (gst_base_src_perform_seek), (gst_base_src_default_event),
5063         (gst_base_src_set_flushing), (gst_base_src_activate_push),
5064         (gst_base_src_activate_pull):
5065         Unify flushing code, remove some old unlock code that is no longer used.
5066         Take the streaming lock when seeking to avoid races. Fixes #492729.
5067         Added some more comments.
5068
5069 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5070
5071         * gst/gst.c: (_gst_disable_segtrap):
5072           Make  _gst_disable_segtrap static, it's only used in gstplugin.c and
5073           we can use gst_segtrap_is_enabled() there now that we have that API.
5074           Move _gst_debug_dump_dot_dir into gstdebugutils.c, there's no reason
5075           to do the getenv here (and export the variable).
5076
5077         * gst/gstdebugutils.c: (debug_dump_element),
5078           (_gst_debug_bin_to_dot_file), (_gst_debug_bin_to_dot_file_with_ts):
5079           Don't use VLAs which is a C99ism and throws off MSVC (#493983).
5080
5081         * gst/gstinfo.c: (_priv_gst_info_start_time), (_gst_debug_init),
5082           (gst_debug_log_default):
5083           Rename _gst_info_start_time to priv_gst_info_start_time so it
5084           doesn't get exported (was never in any header).
5085
5086         * gst/gstplugin.c: (_gst_plugin_fault_handler_setup),
5087           (gst_plugin_loading_mutex):
5088           Make static mutex gst_plugin_loading_mutex really static (was never
5089           in any header), and use gst_segtrap_is_enabled() instead of
5090           _gst_disable_segtrap.
5091
5092         * gst/gsttrace.c: (_gst_trace_default):
5093           Make local _gst_trace_default static (was never in any header).
5094
5095 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5096
5097         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5098
5099         * win32/common/libgstbase.def:
5100         * win32/common/libgstcontroller.def:
5101         * win32/common/libgstdataprotocol.def:
5102         * win32/common/libgstnet.def:
5103         * win32/common/libgstreamer.def:
5104           Add more missing symbols, remove some duplicates, and sort
5105           as the 'sort' command sorts it (partially fixes #493983).
5106
5107 2007-11-06  Wim Taymans  <wim.taymans@gmail.com>
5108
5109         * gst/gstelement.c: (gst_element_set_state_func):
5110         Only change the state cookie if a different state was set on the
5111         element. See #492729.
5112
5113 2007-11-06  Tim-Philipp Müller  <tim at centricular dot net>
5114
5115         * gst/gstvalue.c:
5116           Remove unused and uninitialised type variables that were still
5117           exported for some reason (they were never in any header files
5118           though).
5119
5120 2007-11-06  Wim Taymans  <wim.taymans@gmail.com>
5121
5122         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
5123         (gst_base_sink_do_sync), (gst_base_sink_preroll_object),
5124         (gst_base_sink_event), (gst_base_sink_get_position_last),
5125         (gst_base_sink_get_position_paused), (gst_base_sink_get_position),
5126         (gst_base_sink_change_state):
5127         Don't try to report a 0 position when we don't know, return -1 and FALSE
5128         instead. This mostly happens when we are prerolling.
5129         Make sure we can report the right position before we post the ASYNC_DONE
5130         message so that a message handler can query position without races.
5131
5132         * tests/check/generic/sinks.c: (send_eos), (GST_START_TEST),
5133         (async_done_handoff), (async_done_func), (send_buffer),
5134         (async_done_eos_func), (gst_sinks_suite):
5135         Add two tests for the above.
5136
5137 2007-11-06  Wim Taymans  <wim.taymans@gmail.com>
5138
5139         * MAINTAINERS:
5140         Update with new email address.
5141
5142         * docs/design/part-TODO.txt:
5143         Add some more info about future pad-block and negotiation changes.
5144
5145         * docs/design/part-buffering.txt:
5146         Add some ideas about buffering reporting.
5147
5148 2007-11-06  Jan Schmidt  <jan.schmidt@sun.com>
5149
5150         * tests/check/gst/gstobject.c:
5151         Disable silly racy test that always fails on this combination of CPU
5152         and kernel.
5153
5154 2007-11-03  Tim-Philipp Müller  <tim at centricular dot net>
5155
5156         Patch by: Murray Cumming  <murrayc@murrayc.com>
5157
5158         * gst/gstobject.c:
5159           Corrected the registration of the parent-set and parent-unset
5160           signals: The parameter is a GstObject, not a GObject (#493134).
5161
5162 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5163
5164         * gst/gst_private.h:
5165         * gst/gstbuffer.h:
5166         * gst/gstevent.h:
5167         * gst/gstformat.h:
5168         * gst/gstmessage.h:
5169         * gst/gstplugin.h:
5170         * gst/gstquery.h:
5171         * gst/gsttaglist.h:
5172         * gst/gstvalue.h:
5173           Move declaration of private _gst_foo_initialize() functions into
5174           our private header file where they should have been all along.
5175
5176 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5177
5178         * docs/plugins/gstreamer-plugins-sections.txt:
5179         * gst/gstdebugutils.h:
5180         * gst/gstxml.h:
5181         * plugins/elements/gstqueue.c:
5182           gtk-doc fixes; trailing-comma-in-enum fix.
5183
5184 2007-11-02  Tim-Philipp Müller  <tim at centricular dot net>
5185
5186         * gst/gst.c: (gst_deinit):
5187           Clean up on deinit (not the external ones though, doesn't seem to be
5188           needed for some reason).
5189
5190 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5191
5192         * gst/gstinfo.h: (GST_DEBUG_CATEGORY_EXTERN):
5193           Remove __declspec(dllimport) for MSVC that was copied over into core
5194           from a plugin, obviously without ever having been tested (note the
5195           single underscore in _declspec in the initial commit), and that doesn't
5196           really make sense.  See #492077.
5197
5198 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5199
5200         * gst/gst.c: (init_post):
5201         * gst/gstevent.c: (_gst_event_initialize):
5202         * gst/gstquery.c: (_gst_query_initialize):
5203         * libs/gst/dataprotocol/dataprotocol.c (gst_dp_init):
5204           g_type_class_ref() other types as well, see #349410 and #64764.
5205
5206         * gst/gstbuffer.c: (_gst_buffer_initialize):
5207         * gst/gstmessage.c: (_gst_message_initialize):
5208           Simplify existing g_type_class_ref().
5209
5210 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5211
5212         * gst/gstformat.c: (_gst_format_initialize):
5213           g_type_class_ref() our GstFormat type to make sure we avoid the
5214           thread-unsafe bits of the GObject/GType system, ie. bug #349410 and
5215           bug #64764. Should fix intermittent tee unit test failures (#474823).
5216
5217 2007-11-01  Tim-Philipp Müller  <tim at centricular dot net>
5218
5219         * tests/check/elements/tee.c: (test_num_buffers):
5220           Simplify, simplify, simplify - or not.  Rewrite unit test
5221           not to use gst_parse_launch(); allow N sub-streams. Increasing
5222           the number of sub-streams seems to reproduce #474823 more easily.
5223
5224 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5225
5226         Patch by: Ole André Vadla Ravnås  <ole.andre.ravnas@tandberg.com>
5227
5228         * gst/gsttrace.c:
5229         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_new):
5230         * libs/gst/net/gstnettimepacket.c: (gst_net_time_packet_send):
5231         * libs/gst/net/gstnettimeprovider.c: (gst_net_time_provider_new):
5232           Fix a couple of missing includes for MSVC2005 and a C99 issue. Also,
5233           starting with 2.14.0, GLib won't provide a pipe() macro any longer,
5234           so use _pipe() directly (#492077).
5235
5236         * win32/common/dirent.c: (_treaddir):
5237           Add a couple of casts to make it build without warnings with MSVC.
5238
5239         * win32/common/libgstreamer.def:
5240           Add some more symbols that need to be exported.
5241
5242 2007-10-31  Tim-Philipp Müller  <tim at centricular dot net>
5243
5244         * tests/examples/metadata/read-metadata.c: (message_loop):
5245           Use _KEEP as merge mode rather than _KEEP_ALL, so tags
5246           arriving in a second or third tag message are added to
5247           the tag list as well.
5248
5249 2007-10-31  Stefan Kost  <ensonic@users.sf.net>
5250
5251         * libs/gst/base/gstbasesrc.c:
5252           Its "Since:" and not "@Since:". And remove an superflous cast.
5253
5254 2007-10-30  Wim Taymans  <wim.taymans@gmail.com>
5255
5256         * docs/libs/gstreamer-libs-sections.txt:
5257         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
5258         (gst_base_sink_get_last_buffer), (gst_base_sink_set_last_buffer),
5259         (gst_base_sink_get_property), (gst_base_sink_render_object),
5260         (gst_base_sink_preroll_object),
5261         (gst_base_sink_queue_object_unlocked), (gst_base_sink_event),
5262         (gst_base_sink_change_state):
5263         * libs/gst/base/gstbasesink.h:
5264         Add a new last-buffer property that contains the last buffer used in
5265         basesink for preroll or rendering. useful for making snapshots.
5266         API: gst_base_sink_get_last_buffer()
5267         API: GstBaseSink::last-buffer
5268
5269 2007-10-29  Stefan Kost  <ensonic@users.sf.net>
5270
5271         * docs/gst/running.xml:
5272         * gst/gst.c:
5273         * gst/gstdebugutils.c:
5274         * gst/gstdebugutils.h:
5275         * tools/gst-launch.c:
5276           Improve bin graph dumping, by using the envvar to specify a path.
5277           Rename the envvar to GST_DEBUG_DUMP_DOT_DIR.
5278
5279 2007-10-29  Tim-Philipp Müller  <tim at centricular dot net>
5280
5281         * plugins/elements/gsttypefindelement.c:
5282           (gst_type_find_element_handle_event),
5283           (gst_type_find_element_activate):
5284           Post special error message if we can't determine the type of a stream
5285           because it's empty.
5286
5287 2007-10-29  Stefan Kost  <ensonic@users.sf.net>
5288
5289         * docs/gst/running.xml:
5290         * gst/gstdebugutils.c:
5291           Document new env-var. Add one log-line after dumpng a graph.
5292
5293 2007-10-26  Tim-Philipp Müller  <tim at centricular dot net>
5294
5295         * configure.ac:
5296           Ugly hack to put the (recently removed and non-portable, apparently)
5297           -Wl,--export-dynamic back into libgstcheck's LDFLAGS when we're using
5298           GNU ld, because without that 'make check' fails miserably on my debian
5299           stable box.  Someone with more knowledge of linker intricacies and
5300           portability issues than me fix this properly please.
5301
5302 2007-10-25  Wim Taymans  <wim.taymans@gmail.com>
5303
5304         * libs/gst/base/gstbasesink.c: (gst_base_sink_event):
5305         Reset last seen position after flushing so that we don't report the old
5306         position anymore.
5307
5308 2007-10-25  Jan Schmidt  <Jan.Schmidt@sun.com>
5309
5310         * gst/gstelementfactory.c: (gst_element_register):
5311         * gst/gsturi.h:
5312         Patch from Alessandro Decina adding get_type_full and
5313         get_protocols_full private vfuncs to the URIHandler interface
5314         to allow bindings to support creating URI handlers. 
5315         Partially fixes: #339279
5316         API: GstURIHandlerInterface::get_type_full
5317         API: GstURIHandlerInterface::get_protocols_full
5318
5319 2007-10-25  Jan Schmidt  <Jan.Schmidt@sun.com>
5320
5321         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_set_property),
5322         (gst_multi_queue_request_new_pad), (gst_single_queue_flush),
5323         (gst_multi_queue_loop), (gst_multi_queue_sink_activate_push):
5324         Make it so that pads are considered linked until a buffer is pushed
5325         and discovered otherwise. This avoids problems with decodebin2 hanging
5326         after a seek in the filesrc ! decodebin2 name=d ! fakesink d. ! fakesink
5327         case.
5328
5329         Make sure we lock the multiqueue when updating the max-size properties.
5330         
5331         Fix a crash on Solaris in a debug statement in get_request_pad that
5332         passes a NULL string to GST_DEBUG. 
5333
5334         * tests/check/elements/multiqueue.c: (mq_dummypad_chain),
5335         (run_output_order_test):
5336         Fix the test to allow the first buffer on not-linked pads to come out
5337         of sequence while multiqueue discovers that they are not-linked.
5338
5339 2007-10-25  Jan Schmidt  <Jan.Schmidt@sun.com>
5340
5341         * configure.ac:
5342         * libs/gst/check/Makefile.am:
5343         Use a custom export symbol regex for libgstcheck, as it needs
5344         to export symbols that don't match the standard GStreamer gst_*
5345         pattern, and  --export-dynamic is not portable (only works on 
5346         GNU ld)
5347
5348         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
5349         (gst_check_setup_sink_pad):
5350         Make sure to pass a message parameter to the fail_* macros.
5351
5352         * tests/check/gst/gstinfo.c: (GST_START_TEST):
5353         Fix some compiler warnings.
5354
5355 2007-10-25  Tim-Philipp Müller  <tim at centricular dot net>
5356
5357         * tests/check/gst/gststructure.c: (test_to_string):
5358           Disable test that checks that white spaces are not allowed
5359           in structure names or field names, since we need to
5360           support that for now for backwards compatibility reasons.
5361
5362 2007-10-24  Tim-Philipp Müller  <tim at centricular dot net>
5363
5364         * docs/gst/gstreamer-sections.txt:
5365         * gst/gsttaglist.c:
5366         * gst/gsttaglist.h:
5367           API: add GST_TAG_ARTIST_SORTNAME
5368           API: add GST_TAG_ALBUM_SORTNAME
5369           API: add GST_TAG_TITLE_SORTNAME
5370           Add tag variants for sorting (#414539).
5371
5372 2007-10-24  Tim-Philipp Müller  <tim at centricular dot net>
5373
5374         * gst/gststructure.c:
5375           Also allow white space for names so we don't break
5376           backwards compatibility.
5377
5378 2007-10-22  Wim Taymans  <wim.taymans@gmail.com>
5379
5380         * docs/design/part-TODO.txt:
5381         * docs/design/part-segments.txt:
5382         * docs/design/part-streams.txt:
5383         Small updates.
5384
5385 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
5386
5387         * docs/gst/gstreamer-sections.txt:
5388          Fixed documentation from my previous commit (added new API add
5389          gst_value_set_structure(), add gst_value_get_structure() and
5390          GST_VALUE_HOLDS_STRUCTURE).
5391
5392 2007-10-22  Stefan Kost  <ensonic@users.sf.net>
5393
5394         * gst/gstdebugutils.c:
5395           Reflow code to fix uninitialized variable warning.
5396
5397 2007-10-22  Edgard Lima  <edgard.lima@indt.org.br>
5398
5399         * gst/gstcaps.c: (gst_caps_to_string),
5400         (gst_caps_from_string_inplace):
5401         * gst/gststructure.c: (gst_structure_get_abbrs),
5402         (gst_structure_to_string), (gst_structure_from_string):
5403         * gst/gstvalue.c: (gst_value_set_structure),
5404         (gst_value_get_structure), (gst_value_serialize_structure),
5405         (gst_value_deserialize_structure), (_gst_value_initialize):
5406         * gst/gstvalue.h:
5407         * tests/check/gst/gststructure.c: (GST_START_TEST),
5408         (gst_structure_suite):
5409         * tests/check/gst/gstvalue.c: (GST_START_TEST):
5410          Added GstStructure to gst_value_table and its related functions.
5411          Changed gst_structure_to_string to print ';' in the end.
5412          Changed gst_caps_to_string to not print ';' beteween its
5413          fields (structures) anymore and remove the lastes ';' from latest
5414          structure. Now it is possible to have nested structures.
5415          In addition, backward compatibilty is assured by accepting '\0' as
5416          end delimiter. Fixes: #487969.
5417          API: add gst_value_set_structure()
5418          API: add gst_value_get_structure()
5419          API: add GST_VALUE_HOLDS_STRUCTURE
5420
5421 2007-10-19  Tim-Philipp Müller  <tim at centricular dot net>
5422
5423         * gst/gstbus.c:
5424           When no GSource callback has been set up, tell developer
5425           to use a function that actually exists.
5426
5427 2007-10-17  Stefan Kost  <ensonic@users.sf.net>
5428
5429         * docs/gst/gstreamer-sections.txt:
5430         * gst/Makefile.am:
5431         * gst/gst.c:
5432         * gst/gst.h:
5433         * gst/gstdebugutils.c:
5434         * gst/gstdebugutils.h:
5435         * gst/gstinfo.c:
5436         * gst/gstinfo.h:
5437         * tools/gst-launch.c:
5438           Allow dumping pipelines as dot graphs. Fixes #456573.
5439
5440 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
5441
5442         * gst/gststructure.c:
5443           Allow '+' as well, it can be part of media or mime types
5444           such as image/svg+xml.
5445
5446 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
5447
5448         * docs/gst/gstreamer-sections.txt:
5449         * gst/gstbus.c:
5450         * gst/gstbus.h:
5451           API: add gst_bus_pop_filtered
5452           API: add gst_bus_timed_pop_filtered
5453           Two new functions for waiting for specific message types on the
5454           bus for a specified amount of time without iterating any main
5455           loops or main contexts.
5456
5457         * tests/check/gst/gstbus.c:
5458           Some tests for the new functions.
5459
5460 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
5461
5462         * docs/libs/gstreamer-libs-sections.txt:
5463           Make gtk-doc ignore stuff it should ignore.
5464
5465 2007-10-16  Tim-Philipp Müller  <tim at centricular dot net>
5466
5467         * libs/gst/check/gstcheck.c:
5468         * libs/gst/check/gstcheck.h:
5469           Allow runtime selection of unit tests to run via the GST_CHECKS
5470           environment variable (test case function names, comma-separated).
5471
5472 2007-10-16  Stefan Kost  <ensonic@users.sf.net>
5473
5474         * gst/gststructure.c:
5475         * tests/check/gst/gststructure.c:
5476           Revert serialisation change and constrain structure-names after
5477           consensus on irc. Update api documentation to reflect the change.
5478
5479 2007-10-16  Stefan Kost  <ensonic@users.sf.net>
5480
5481         * gst/gststructure.c:
5482           Improve serialization and fix tests.
5483
5484         * tests/check/gst/gststructure.c:
5485           Add another test that covers why I actually did the previous structure
5486           change.
5487
5488 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
5489
5490         * tools/gst-inspect.c: (print_element_info):
5491         Don't crash when inspecting an element.
5492
5493 2007-10-15  Tim-Philipp Müller  <tim at centricular dot net>
5494
5495         * tests/check/gst/gststructure.c:
5496           Add unit test for escaping of structure name when serialising
5497           and deserialising to/from strings.
5498
5499 2007-10-15  Wim Taymans  <wim.taymans@gmail.com>
5500
5501         * plugins/elements/gstmultiqueue.c: (gst_single_queue_push_one),
5502         (gst_single_queue_new):
5503         * plugins/elements/gstqueue.c: (gst_queue_init),
5504         (gst_queue_push_one):
5505         Fix queue negotiation. If acceptcaps unconditionally returns TRUE,
5506         upstream is tricked into thinking it can suggest a format downstream
5507         while downstream does not support that format. The real problem is that
5508         core calls acceptcaps when pushing a buffer with new caps, for which we
5509         do a little workaround by setting the caps on the srcpad ourselves
5510         before pushing the buffer (until this is figured out). Fixes #486758.
5511
5512 2007-10-15  Stefan Kost  <ensonic@users.sf.net>
5513
5514         * gst/gststructure.c:
5515         * gst/gstvalue.c:
5516           Add some more comments and debug output. Quote structure name to fix
5517           deserialisation of some strings.
5518
5519 2007-10-15  Stefan Kost  <ensonic@users.sf.net>
5520
5521         * gst/gstbuffer.h:
5522           Define GST_BUFFER_FLAG_GAP more strictly to enable optimizations based
5523           on it. Fix docs for GST_BUFFER_MALLOCDATA and GstBuffer.malloc_data.
5524
5525 2007-10-15  Stefan Kost  <ensonic@users.sf.net>
5526
5527         * tools/gst-inspect.c:
5528           Save approx. 400 1 byte allocs when printing. Use API to acces element
5529           details.
5530
5531         * tools/gst-run.c:
5532           Avoid a strdup.
5533
5534         * tools/gst-xmlinspect.c:
5535           Use API to acces element details.
5536
5537 2007-10-15  Stefan Kost  <ensonic@users.sf.net>
5538
5539         * gst/gstinfo.c:
5540           Fix some spelling errors.
5541
5542 2007-10-14  Wim Taymans  <wim.taymans@gmail.com>
5543
5544         * gst/gstbin.c: (bin_handle_async_done):
5545         Correctly set the next state if all of our async children commited their
5546         state. This makes sure we can actually cancel the state change in
5547         progress. Fixes a regression in Rhythmbox when seeking.
5548
5549 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
5550
5551         * gst/gstbin.c:
5552           Don't shadow local variable.
5553
5554         * gst/gstinfo.c:
5555           Don't shadow global function name.
5556
5557 2007-10-13  Tim-Philipp Müller  <tim at centricular dot net>
5558
5559         * gst/gstelementfactory.c:
5560         * gst/gstpluginfeature.c:
5561         * gst/gstpluginfeature.h:
5562         * gst/gstregistrybinary.c:
5563         * gst/gstregistryxml.c:
5564         * gst/gsttypefind.c:
5565           Use already-interned string for the private GstPluginFeature
5566           plugin_name field.
5567
5568 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
5569
5570         * docs/libs/gstreamer-libs-sections.txt:
5571           Add new API to docs; fixes the build.
5572
5573 2007-10-10  Wim Taymans  <wim.taymans@gmail.com>
5574         
5575         Patch inspired by: Benoit Fouet <benoit dot fouet at purplelabs dot com>
5576
5577         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_eos),
5578         (gst_base_sink_event):
5579         * libs/gst/base/gstbasesink.h:
5580         Add function to wait for EOS, subclasses can use this to correctly wait
5581         for devices to drain before performing the EOS logic. Fixes #485343.
5582         API: gst_base_sink_wait_eos()
5583
5584 2007-10-10  Tim-Philipp Müller  <tim at centricular dot net>
5585
5586         * gst/gstplugin.h:
5587           Cast description string constants in GST_PLUGIN_DEFINE macros
5588           to a (gchar*) to make C++ code using these macros compile
5589           without warning with g++-4.2 (see #462737).  Even if slightly
5590           ugly, this seems preferable to putting the description strings
5591           into the GLib quark table or making the structure member a
5592           const gchar * and doing casts in core code that allocs and
5593           frees these strings, or requiring a cast in the C++ code.
5594
5595 2007-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5596
5597         * gst/gstinfo.h:
5598           Use __FUNCTION__ instead of __PRETTY_FUNCTION__, it's silly
5599           to print the entire class/function signature into the log
5600           file for C++ code.  This only affects C++ code, for C code
5601           everything remains the same.
5602
5603 2007-10-09  Wim Taymans  <wim.taymans@gmail.com>
5604
5605         * gst/gstbin.c: (remove_from_queue):
5606         Work around a problem with pipelines containing (semi)loops until a
5607         proper, more complicated solution is ready. See #475455.
5608
5609 2007-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5610
5611         * gst/gstplugin.c:
5612         * gst/gstplugin.h:
5613         * gst/gstregistrybinary.c:
5614         * gst/gstregistryxml.c:
5615           Put more strings into the GLib quark table. No need to keep
5616           a hundred-something copies of identical version strings,
5617           license strings, package name strings and package origin
5618           strings around. 
5619
5620 2007-10-09  Tim-Philipp Müller  <tim at centricular dot net>
5621
5622         * docs/manual/advanced-dataaccess.xml:
5623           Don't imply that it's okay to unconditionally change
5624           buffer data or buffer metadata in a pad probe callback,
5625           and a bunch of other comments. Fixes #430031.
5626
5627 2007-10-08  Tim-Philipp Müller  <tim at centricular dot net>
5628
5629         * win32/common/gstenumtypes.c:
5630         * win32/common/gstenumtypes.h:
5631         * win32/common/gstversion.h:
5632           Update generated files.
5633
5634 2007-10-08  Tim-Philipp Müller  <tim at centricular dot net>
5635
5636         * docs/manual/advanced-autoplugging.xml:
5637           Prefix section with broken code with a warning (see #342432).
5638
5639 2007-10-08  Tim-Philipp Müller  <tim at centricular dot net>
5640
5641         * docs/manual/appendix-integration.xml:
5642         * docs/manual/basics-init.xml:
5643           Call g_thread_init() before g_option_context_new() to
5644           avoid warnings. Spotted by Ritesh Khadgaray. Fixes #484225.
5645
5646 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5647
5648         * libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
5649         (gst_base_sink_queue_object_unlocked),
5650         (gst_base_sink_queue_object), (gst_base_sink_event),
5651         (gst_base_sink_needs_preroll), (gst_base_sink_chain_unlocked):
5652         When we received EOS and are waiting for when to post the EOS message,
5653         our state is prerolled and we should not return ASYNC.
5654         Reorganize some code paths to implement this behavior.
5655
5656         * tests/check/generic/sinks.c: (send_eos), (GST_START_TEST),
5657         (gst_sinks_suite):
5658         Add unit test to verify above EOS fix.
5659
5660 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5661
5662         * plugins/elements/gsttypefindelement.c:
5663         (gst_type_find_element_have_type), (gst_type_find_element_init),
5664         (gst_type_find_element_setcaps), (gst_type_find_element_chain):
5665         Move detecting the input caps of the sinkpad to the setcaps function.
5666         This allows us to update the output caps when we receive new input caps
5667         instead of always using the first detected caps.
5668
5669 2007-10-08  Wim Taymans  <wim.taymans@gmail.com>
5670
5671         * libs/gst/base/gstbasesink.c: (gst_base_sink_event),
5672         (gst_base_sink_get_position):
5673         Don't try to preroll non-async elements after a flush.
5674         Subtract latency form clock times when reporting position.
5675
5676 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
5677
5678         * gst/gstpad.c: (gst_pad_pause_task):
5679         * gst/gstutils.c:
5680         Small comment and documentation update.
5681
5682 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
5683
5684         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
5685         (gst_base_src_set_live), (gst_base_src_is_live),
5686         (gst_base_src_query_latency), (gst_base_src_perform_seek),
5687         (gst_base_src_default_event), (gst_base_src_wait),
5688         (gst_base_src_do_sync), (gst_base_src_get_range),
5689         (gst_base_src_pad_get_range), (gst_base_src_loop),
5690         (gst_base_src_unlock), (gst_base_src_unlock_stop),
5691         (gst_base_src_set_flushing), (gst_base_src_set_playing),
5692         (gst_base_src_activate_push), (gst_base_src_activate_pull),
5693         (gst_base_src_change_state):
5694         Rework the locking of basesrc in a similar fashion to basesink. We
5695         basically have one lock (LIVE_LOCK) protecting the dataflow. This allows
5696         us to handle live sources and semi live ones much better.
5697         Simplify flushing.
5698         Fix unlocking when seeking, shutting down and pausing in live sources.
5699
5700 2007-10-05  Wim Taymans  <wim.taymans@gmail.com>
5701
5702         * tests/check/pipelines/simple-launch-lines.c: (run_pipeline):
5703         Fix compilation again.
5704
5705 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5706
5707         * gst/gstelement.c:
5708           Use meaningful categories for the logs to clean the default one.
5709
5710 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5711
5712         * tests/check/pipelines/cleanup.c:
5713           Print message name and not just number.
5714
5715 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5716
5717         * docs/design/draft-tagreading.txt:
5718           Add some more thoughts.
5719
5720 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5721
5722         * tests/check/pipelines/simple-launch-lines.c:
5723           Print message name and not just number.
5724
5725 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5726
5727         * libs/gst/base/gsttypefindhelper.c:
5728           Speedup typefinding. This is work in progress (see #459862).
5729
5730 2007-10-03  Stefan Kost  <ensonic@users.sf.net>
5731
5732         * gst/gstplugin.c:
5733           Fix docs that mention 'plugin_desc' instead of 'gst_plugin_desc'.
5734           Spotted by Josep Torra Valles <josep@fluendo.com>.
5735
5736 2007-10-03  Tim-Philipp Müller  <tim at centricular dot net>
5737
5738         * gst/gstclock.h:
5739           Fix up broken GST_CLOCK_FLAGS macro and GstClock docs. The flags
5740           field has moved to GstObject.
5741
5742 2007-10-02  Wim Taymans  <wim.taymans@gmail.com>
5743
5744         * libs/gst/base/gstbasesrc.c: (gst_base_src_do_sync),
5745         (gst_base_src_get_range), (gst_base_src_change_state):
5746         Call unlock for live sources so that they can't get stuck in _create and
5747         produce a buffer before they are set back to PLAYING.
5748
5749 2007-10-02  Edward Hervey  <bilboed@bilboed.com>
5750
5751         * plugins/elements/gstqueue.c: (gst_queue_locked_enqueue),
5752         (gst_queue_locked_dequeue):
5753         Comment the segment-related code... in the PROPER function.
5754         See #482147 and my commit from yesterday.
5755
5756 2007-10-01  Wim Taymans  <wim.taymans@gmail.com>
5757
5758         * libs/gst/base/gstbasesrc.c: (gst_base_src_change_state):
5759         Also initialize the counter that calculates the first timestamp on a
5760         buffer correctly for non-live sources.
5761
5762 2007-10-01  Edward Hervey  <bilboed@bilboed.com>
5763
5764         * plugins/elements/gstqueue.c: (gst_queue_locked_dequeue):
5765         Disable code that's breaking the current-time-level reporting.
5766         See #482147
5767
5768 2007-09-30  Sebastian Dröge  <slomo@circular-chaos.org>
5769
5770         * docs/gst/gstreamer-sections.txt:
5771         Add M_PI and IMPORT_SYMBOL to the private part of the GstInfo section
5772         as they shouldn't show up. Fixes the docs build.
5773
5774 2007-09-29  Sebastien Moutte  <sebastien@moutte.net>
5775         
5776         * gst/gstinfo.h:
5777         Add an explicit variable importation needed on VS6 (only for MSC_VER)
5778         Define M_PI which is used in files which are including gstinfo.h. 
5779         VS6 includes doesn't define it.
5780         * win32/common/libgstbase.def:
5781         * win32/common/libgstcontroller.def:
5782         * win32/common/libgstreamer.def:
5783         Add new exported functions and variables.
5784         * win32/vs6/libgstcontroller.dsp:
5785         * win32/vs6/libgstreamer.dsp:
5786         Update the list of files to build.
5787         
5788 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
5789
5790         Patch by: Felipe Contreras <felipe dot contreras at gmail dot com>
5791
5792         * plugins/elements/gstqueue.c: (update_time_level), (apply_buffer),
5793         (gst_queue_locked_dequeue), (gst_queue_handle_sink_event),
5794         (gst_queue_chain), (gst_queue_loop), (gst_queue_src_activate_push):
5795         Improve debugging. Fixes #480858.
5796
5797 2007-09-28  Wim Taymans  <wim.taymans@gmail.com>
5798
5799         Patch by: Felipe Contreras <felipe dot contreras at gmail dot com>
5800
5801         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event):
5802         First patch of code cleanups, use the macros and right arguments in the
5803         macros to signal and lock the queue. See #480858.
5804
5805 2007-09-26  Wim Taymans  <wim.taymans@gmail.com>
5806
5807         * gst/gstbus.c: (poll_func):
5808         Improve debugging when dealing with _poll().
5809
5810 2007-09-26  Tim-Philipp Müller  <tim at centricular dot net>
5811
5812         * gst/gstregistryxml.c:
5813           Fix memory leak I introduced a few days ago.
5814
5815 2007-09-26  Michael Smith <msmith@fluendo.com>
5816
5817         * gst/gstbuffer.c: (gst_buffer_finalize):
5818           Make it once again possible to free GstBuffers in the default
5819           build.
5820           The poisoning scribbles on parts of the miniobject we need in
5821           order to free it.
5822           Fixes #480341
5823
5824 2007-09-25  Tim-Philipp Müller  <tim at centricular dot net>
5825
5826         * docs/gst/gstreamer-sections.txt:
5827         * gst/gsttaglist.c:
5828         * gst/gsttaglist.h:
5829         API: add GST_TAG_COMPOSER, fixes #459809.
5830
5831 2007-09-24  Sebastian Dröge  <slomo@circular-chaos.org>
5832
5833         * gst/gstplugin.c:
5834         * gst/gstplugin.h:
5835         Add the 3-clause BSD license and the MIT/X11 license to the license
5836         list. Fixes #479784.
5837
5838 2007-09-24  Tim-Philipp Müller  <tim at centricular dot net>
5839
5840         * docs/faq/getting.xml:
5841           Add Q+A about different GStreamer versions (#364056).
5842
5843 2007-09-24  Wim Taymans  <wim.taymans@gmail.com>
5844
5845         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
5846         (gst_base_sink_event), (gst_base_sink_change_state):
5847         Return correct gboolean from query function.
5848
5849 2007-09-24  Wim Taymans  <wim.taymans@gmail.com>
5850
5851         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
5852         (gst_base_sink_event), (gst_base_sink_query),
5853         (gst_base_sink_change_state):
5854         Simplify latency query.
5855         When not synchronizing, we can report latency without querying the peer
5856         element.
5857
5858 2007-09-24  Wim Taymans  <wim.taymans@gmail.com>
5859
5860         * gst/gstobject.h:
5861         * gst/gstvalue.c:
5862         Fix small typos in the docs.
5863
5864 2007-09-24  Wim Taymans  <wim.taymans@gmail.com>
5865
5866         * docs/design/draft-latency.txt:
5867         * docs/design/draft-push-pull.txt:
5868         * docs/design/draft-tagreading.txt:
5869         * docs/design/part-MT-refcounting.txt:
5870         * docs/design/part-activation.txt:
5871         * docs/design/part-block.txt:
5872         * docs/design/part-element-source.txt:
5873         * docs/design/part-events.txt:
5874         * docs/design/part-gstbin.txt:
5875         * docs/design/part-gstelement.txt:
5876         * docs/design/part-gstobject.txt:
5877         * docs/design/part-gstpipeline.txt:
5878         * docs/design/part-messages.txt:
5879         * docs/design/part-preroll.txt:
5880         * docs/design/part-push-pull.txt:
5881         * docs/design/part-qos.txt:
5882         * docs/design/part-query.txt:
5883         * docs/design/part-scheduling.txt:
5884         * docs/design/part-seeking.txt:
5885         * docs/design/part-segments.txt:
5886         * docs/design/part-states.txt:
5887         Documentation updates and typo fixes.
5888
5889 2007-09-23  Tim-Philipp Müller  <tim at centricular dot net>
5890
5891         * plugins/elements/gstfakesink.c:
5892           Add some debug text to error message to indicate that
5893           we errored out on request.
5894
5895         * tools/gst-launch.c:
5896           When the state change to PLAYING fails, check for an
5897           error message on the bus and print it.
5898
5899 2007-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5900
5901         translated by: Jorge González González <aloriel@gmail.com>
5902
5903         * po/LINGUAS:
5904         * po/es.po:
5905           Added Spanish translation.
5906
5907 2007-09-21  Wim Taymans  <wim.taymans@gmail.com>
5908
5909         * plugins/elements/gstqueue.c: (gst_queue_push_one):
5910         Fix printf arguments.
5911
5912 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
5913
5914         * tests/check/generic/states.c:
5915           Improved state change unit test.
5916
5917 2007-09-20  Stefan Kost  <ensonic@users.sf.net>
5918
5919         * gst/gstbin.h:
5920           Move priv to the right place.
5921
5922         * gst/gstsystemclock.c:
5923           Add FIXME: and improve log.
5924
5925         * tests/check/Makefile.am:
5926         * tests/examples/manual/Makefile.am:
5927           Work with all types of registries.
5928
5929 2007-09-19  Wim Taymans  <wim.taymans@gmail.com>
5930
5931         * libs/gst/base/gstbasesrc.c: (gst_base_src_send_event):
5932         Don't unref the event after pushing it. Fixes #478401.
5933
5934 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
5935
5936         * .cvsignore:
5937         * tests/examples/manual/.cvsignore:
5938           Ignore registries in any format.
5939
5940 2007-09-19  Tim-Philipp Müller  <tim at centricular dot net>
5941
5942         * gst/glib-compat-private.h:
5943           Add compatibility macro for g_intern_string() for
5944           GLib-2.8 (any reason we can't just bump the
5945           requirement to at least 2.10?)
5946
5947         * gst/gstpadtemplate.h:
5948         * gst/gstelementfactory.c:
5949         * gst/gstregistryxml.c:
5950         * gst/gstregistrybinary.c:
5951           Make GstStaticPadTemplate's templ_name field a const gchar * and fix
5952           up the internal code accordingly.  This shouldn't be a problem, since
5953           there is no reason external code could ever assume the string in such
5954           a structure is dynamically allocated unless it did that itself;  the
5955           use of g_strdup() is private to element factories.  The new code also
5956           saves some memory by putting pad template name strings into the GLib
5957           quark table instead of allocating them dynamically.
5958           Declaring this field constant fixes warnings with g++-4.2 when using
5959           the GST_STATIC_PAD_TEMPLATE macro in c++ code (#478092).
5960
5961 2007-09-19  Stefan Kost  <ensonic@users.sf.net>
5962
5963         * gst/gstelementfactory.c:
5964           Release static caps. Fixes #475723.
5965
5966 2007-09-18  Tim-Philipp Müller  <tim at centricular dot net>
5967
5968         * gst/gstinfo.c:
5969         * gst/gstinfo.h:
5970           Make some internal API take const gchar * instead of just
5971           gchar * to avoid compiler warnings with g++-4.2.2 when
5972           passing string constants (partially fixes #478092).
5973
5974 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
5975
5976         * gst/gstbin.c: (bin_query_latency_fold), (gst_bin_query):
5977         A latency query fails when one of the sinks fail.
5978
5979         * gst/gstelement.c: (gst_element_set_base_time):
5980         Improve debugging.
5981
5982 2007-09-17  Jan Schmidt - Sun Microsystems <jan.schmidt@sun.com>
5983
5984         * gst/gstbin.c: (gst_bin_continue_func):
5985         * libs/gst/base/gstbasesrc.c: (gst_base_src_do_sync):
5986         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_add_pad_full):
5987         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_loop):
5988
5989         Fix minor compilation warnings shown with Forte.
5990
5991 2007-09-17  Wim Taymans  <wim.taymans@gmail.com>
5992
5993         * plugins/elements/gstqueue.c: (apply_buffer),
5994         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue):
5995         Measure queue level based on the diff between head and tail timestamps
5996         even when pushing the first buffer.
5997
5998 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
5999
6000         * libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
6001         (gst_base_sink_event), (gst_base_sink_change_state):
6002         Sinks that don't preroll can always be queried for the latency.
6003         Don't post ASYNC start when we are not async.
6004
6005 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6006
6007         * plugins/elements/gstqueue.c: (gst_queue_locked_enqueue),
6008         (gst_queue_handle_sink_event), (gst_queue_chain),
6009         (gst_queue_push_one), (gst_queue_handle_src_query),
6010         (gst_queue_sink_activate_push), (gst_queue_src_activate_push):
6011         * plugins/elements/gstqueue.h:
6012         When downstream returns UNEXPECTED from pushing a buffer, don't try to
6013         push more buffers but allow pushing of EOS and NEWSEGMENT.
6014         Add some more debug info here and there. Fixes #476514.
6015
6016 2007-09-14  Wim Taymans  <wim.taymans@gmail.com>
6017
6018         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
6019         (gst_base_sink_preroll_queue_flush), (gst_base_sink_commit_state),
6020         (gst_base_sink_wait_preroll), (gst_base_sink_needs_preroll),
6021         (gst_base_sink_set_flushing), (gst_base_sink_query),
6022         (gst_base_sink_change_state):
6023         Latency query is allowed after we are prerolled. Introduce a new flag
6024         for this and stop abusing other variables.
6025
6026 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6027
6028         * libs/gst/base/gstbasesrc.c: (gst_base_src_send_event):
6029         Push OOB events downstream when we get them in send_event. This allows
6030         the application to insert events in the pipeline.
6031         Add some more comments.
6032
6033 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6034
6035         * gst/gstbin.c: (gst_bin_class_init), (clear_queue),
6036         (do_bin_latency), (gst_bin_change_state_func):
6037         * gst/gstpipeline.c: (gst_pipeline_change_state):
6038         Move latency query from GstPipeline to GstBin so that we can also
6039         use it when async-handling is enabled on bins.
6040
6041 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6042
6043         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
6044         (gst_base_src_do_sync), (gst_base_src_change_state):
6045         Update docs.
6046         Clean up the timestamping and syncing code for pseudo live sources.
6047
6048 2007-09-13  Tim-Philipp Müller  <tim at centricular dot net>
6049
6050         Patch by: Steve Fink  <sphink gmail com>
6051
6052         * docs/manual/appendix-checklist.xml:
6053           Mention less -R switch in the section about debug output (#474055).
6054
6055 2007-09-13  Wim Taymans  <wim.taymans@gmail.com>
6056
6057         * plugins/elements/gstqueue.c: (gst_queue_handle_src_query):
6058         Queue can latency to the pipeline up to the configured max size in time.
6059         Report this fact in the latency query.
6060
6061 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
6062
6063         Patch by: Sebastien Moutte <sebastien at moutte dot net>
6064
6065         * libs/gst/controller/gstinterpolation.c:
6066         * libs/gst/controller/gstlfocontrolsource.c:
6067         Use gst_guint64_to_gdouble() when converting from a uint64 or
6068         GstClockTime to double to fix the build on win32. Fixes #474371.
6069
6070 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
6071
6072         * gst/gstbuffer.c: (gst_buffer_finalize):
6073         Implement poisoning for GstBuffer if --enable-poisoning is specified.
6074         When finalizing a buffer the complete struct is filled with 0xff,
6075         thus making a use of the buffer after the final unref impossible.
6076
6077 2007-09-13  Sebastian Dröge  <slomo@circular-chaos.org>
6078
6079         * tests/check/libs/controller.c: (GST_START_TEST):
6080         Use fail_unless_equals_int(a, b) instead of
6081         fail_unless_equals (a == b) to get better output on failures.
6082
6083 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6084
6085         * tests/check/gst/gsturi.c:
6086           Also check for the other file URI variant on win32.
6087
6088 2007-09-12  Tim-Philipp Müller  <tim at centricular dot net>
6089
6090         * gst/gsturi.c: (gst_uri_get_location):
6091           If there's no hostname, we want to return 'c:/foo/bar.txt'
6092           and not '/c:/foo/bar.txt' on Windows. Fixes #469402.
6093
6094         * tests/check/gst/gsturi.c:
6095           Unit test for the above and a few more things.
6096
6097 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
6098
6099         * docs/design/part-live-source.txt:
6100         Add docs on how live sources should timestamp.
6101
6102         * libs/gst/base/gstbasesrc.c: (gst_base_src_do_sync):
6103         Add some more debug info.
6104         For subclasses that are live and like to sync, add aditional startup
6105         latency to sync time and timestamps so that we timstamp according to the
6106         design doc.
6107
6108 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
6109
6110         * gst/gstbuffer.c:
6111           Also do a g_type_class_ref() for the subbuffer type in
6112           the init function.
6113
6114 2007-09-11  Wim Taymans  <wim.taymans@gmail.com>
6115
6116         * docs/gst/gstreamer-sections.txt:
6117         * gst/gstpad.c: (gst_pad_peer_query):
6118         * gst/gstpad.h:
6119         Add function to perform a query on the peer of a pad.
6120         API: gst_pad_peer_query()
6121
6122 2007-09-11  Stefan Kost  <ensonic@users.sf.net>
6123
6124         * tests/check/gst/gstsystemclock.c:
6125           Cleanup the test a little (use gst-logging and not g_message). Improve
6126           test to check if a wait reached the target.
6127
6128 2007-09-11  Tim-Philipp Müller  <tim at centricular dot net>
6129
6130         * docs/libs/gstreamer-libs-sections.txt:
6131           Add new API to docs and fix the build.
6132
6133 2007-09-10  Wim Taymans  <wim.taymans@gmail.com>
6134
6135         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
6136         (gst_base_src_init), (gst_base_src_set_do_timestamp),
6137         (gst_base_src_get_do_timestamp), (gst_base_src_set_property),
6138         (gst_base_src_get_property), (gst_base_src_do_sync):
6139         * libs/gst/base/gstbasesrc.h:
6140         Add property to make the basesrc timestamp buffers based on the current
6141         running time.
6142         API: GstBaseSrc::do-timestamp
6143         API: gst_base_src_set_do_timestamp()
6144         API: gst_base_src_get_do_timestamp()
6145
6146 2007-09-08  Tim-Philipp Müller  <tim at centricular dot net>
6147
6148         * docs/random/release:
6149           Really make sure translations are up-to-date before
6150           a release (#465010).
6151
6152 2007-09-07  Sebastian Dröge  <slomo@circular-chaos.org>
6153
6154         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
6155         Always destroy the timer, also in error cases.
6156
6157 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
6158
6159         * docs/manual/highlevel-xml.xml:
6160         Fix XML example code. Fixes #472714.
6161
6162 2007-09-05  Wim Taymans  <wim.taymans@gmail.com>
6163
6164         * libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
6165         (gst_base_sink_wait_preroll), (gst_base_sink_needs_preroll),
6166         (gst_base_sink_query):
6167         Protect eos and have_preroll with the OBJECT lock so we don't need to
6168         take the PREROLL lock when querying the latency. Fixes #473846.
6169
6170 2007-09-05  Stefan Kost  <ensonic@users.sf.net>
6171
6172         * gst/gstelement.c:
6173           Give some log-messages a category.
6174
6175 2007-09-04  Wim Taymans  <wim.taymans@gmail.com>
6176
6177         * gst/gststructure.c:
6178         (gst_structure_fixate_field_nearest_fraction):
6179         Fix fraction list fixation code. Take the fraction with the smallest
6180         difference with the target instead of the first one in the list.
6181
6182         * tests/check/gst/gststructure.c: (GST_START_TEST),
6183         (gst_structure_suite):
6184         Added test to verify correct fraction list fixation behaviour.
6185
6186 2007-09-02  Tim-Philipp Müller  <tim at centricular dot net>
6187
6188         * win32/common/libgstreamer.def:
6189           Export gst_bus_add_signal_watch too.
6190
6191 2007-08-30  Wim Taymans  <wim.taymans@gmail.com>
6192
6193         * docs/libs/gstreamer-libs-sections.txt:
6194         Add new methods to docs.
6195
6196         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
6197         (gst_base_sink_init), (gst_base_sink_set_ts_offset),
6198         (gst_base_sink_get_ts_offset), (gst_base_sink_set_property),
6199         (gst_base_sink_get_property), (gst_base_sink_wait_clock):
6200         * libs/gst/base/gstbasesink.h:
6201         Add ts-offset property to fine-tune the synchronisation.
6202         API: GstBaseSink::ts-offset property
6203         API: gst_base_sink_set_ts_offset()
6204         API: gst_base_sink_get_ts_offset()
6205
6206 2007-08-29  Wim Taymans  <wim.taymans@gmail.com>
6207
6208         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
6209         (gst_base_sink_init), (gst_base_sink_set_sync),
6210         (gst_base_sink_get_sync), (gst_base_sink_set_max_lateness),
6211         (gst_base_sink_get_max_lateness), (gst_base_sink_set_qos_enabled),
6212         (gst_base_sink_is_qos_enabled), (gst_base_sink_set_async_enabled),
6213         (gst_base_sink_is_async_enabled), (gst_base_sink_set_property),
6214         (gst_base_sink_get_property), (gst_base_sink_change_state):
6215         * libs/gst/base/gstbasesink.h:
6216         Add async property to instruct the sink never to inform the parent about
6217         ASYNC state changes, update docs.
6218         Check argument with g_return_* for the public functions.
6219         API: GstBaseSink::async property
6220         API: gst_base_sink_set_async_enabled()
6221         API: gst_base_sink_is_async_enabled()
6222
6223 2007-08-28  Wim Taymans  <wim.taymans@gmail.com>
6224
6225         * libs/gst/base/gstbasesink.c: (gst_base_sink_loop):
6226         Improve debugging.
6227
6228         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
6229         (gst_base_src_default_query), (gst_base_src_wait),
6230         (gst_base_src_do_sync), (gst_base_src_change_state):
6231         Rearrange some code so that we can add support for measuring the 
6232         startup latency.
6233
6234 2007-08-27  Stefan Kost  <ensonic@users.sf.net>
6235
6236         * docs/random/ensonic/dynlink.txt:
6237           More thoughs on this.
6238
6239         * plugins/elements/gstcapsfilter.c:
6240           Add bugzilla ticket number to FIXME comment.
6241
6242 2007-08-24  Wim Taymans  <wim.taymans@gmail.com>
6243
6244         * docs/design/part-TODO.txt:
6245         * docs/design/part-block.txt:
6246         Update some docs.
6247
6248 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
6249
6250         * gst/Makefile.am:
6251           Revert patch which uses $(gst_headers) instead of $^ because it
6252           breaks make dist.
6253
6254 2007-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
6255
6256         * tests/check/gst/gstbin.c: (GST_START_TEST):
6257           Fix leaks in the new unit test.
6258
6259 2007-08-23  Tim-Philipp Müller  <tim at centricular dot net>
6260
6261         * gst/gst.c:
6262           Don't use GST_INFO before the debug system is actually initialised
6263           (shouldn't do any harm, but won't print anything either, so we can
6264           just as well remove it).
6265
6266         * gst/gstinfo.h:
6267           GST_CAT_LEVEL_LOG_valist(), which is our inline helper function for
6268           compilers that don't support variadic macros (such as MSVC), should
6269           check for debug_level <= __gst_debug_min as well, since that's the
6270           function called from all the level-specific GST_CAT_*_LOG_OBJECT()
6271           inline helper functions. Should improve performance a bit, but also
6272           makes sure uses of GST_INFO et.al are ignored if the debugging
6273           system isn't initialised yet (instead of printing an assertion
6274           failure).
6275
6276 2007-08-23  Stefan Kost  <ensonic@users.sf.net>
6277
6278         patch by: David Nečas <yeti@physics.muni.cz>
6279
6280         * gst/Makefile.am:
6281           Replace some non portable makefile constructs.
6282
6283 2007-08-21  Stefan Kost  <ensonic@users.sf.net>
6284
6285         * common/gtk-doc-plugins.mak:
6286           Grrrrr. Don't remove the types file on make clean.
6287
6288 2007-08-20  Wim Taymans  <wim.taymans@gmail.com>
6289
6290         * tools/gst-launch.1.in:
6291         Add colorspace to example pipeline. Fixes #458274.
6292
6293 2007-08-20  Tim-Philipp Müller  <tim at centricular dot net>
6294
6295         * docs/random/release:
6296           The release manager should run 'make download-po' before making a
6297           release to make sure translations are up-to-date.
6298
6299         * po/LINGUAS:
6300         * po/be.po:
6301         * po/pl.po:
6302         * po/rw.po:
6303           Add some new translations.
6304
6305 2007-08-17  Wim Taymans  <wim.taymans@gmail.com>
6306
6307         * tools/gst-launch.c: (event_loop), (main):
6308         Don´t try to do any state management when a live pipeline posts
6309         buffering messages.
6310         Also make the buffering string translatable.
6311
6312 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
6313
6314         * gst/gstbin.c: (is_eos), (gst_bin_add_func),
6315         (bin_handle_async_start), (gst_bin_handle_message_func):
6316         Improve debugging.
6317         When adding elements, insert messages into the bus of the newly added
6318         element and make sure the element is the source of the message. This
6319         allows the parent bin to intercept the message and do the
6320         right thing. It also avoids us posting ASYNC_START and CLOCK_PROVIDE
6321         messages to the app (which is not allowed).
6322         Update some docs.
6323
6324         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
6325         Fix testsuite so that is does not work around messages that should not
6326         have been posted in the first place.
6327
6328 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
6329
6330         * gst/gstbin.c: (add_to_queue), (remove_from_queue), (clear_queue),
6331         (update_degree), (gst_bin_sort_iterator_next):
6332         Fix annoying bug in the sorted iterator where a sink that is not really
6333         a sink (when it has downstream links) screwed up the iterator.
6334
6335         * tests/check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
6336         Unit test to verify the fix.
6337
6338 2007-08-16  Wim Taymans  <wim.taymans@gmail.com>
6339
6340         * gst/gstmessage.h:
6341         Add some more docs for the messages.
6342
6343         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
6344         (gst_base_sink_query):
6345         Add some more debugging.
6346
6347         * tools/gst-launch.c: (event_loop):
6348         When interrupting, don't try to set pipeline to PAUSED twice.
6349
6350 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
6351
6352         
6353         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_element_set_state),
6354         (bin_handle_async_start), (gst_bin_handle_message_func):
6355         Move ASYNC_START message posting to where it belongs, similar to
6356         async_done. 
6357         Don't post ASYNC_START when we are in error. 
6358         Post ASYNC_START when we added an async element to a bin.
6359
6360 2007-08-14  Julien MOUTTE  <julien@moutte.net>
6361
6362         * gst/gstindex.c: (gst_index_add_association): Fix index entry
6363         generation from vargs. Fixes #466595.
6364
6365 2007-08-14  Wim Taymans  <wim.taymans@gmail.com>
6366
6367         * gst/gstbin.c: (gst_bin_element_set_state):
6368         Always change the state of a NO_PREROLL element even if it has ASYNC
6369         elements inside (in case of a bin).
6370
6371         * tests/check/generic/sinks.c: (GST_START_TEST), (gst_sinks_suite):
6372         Unit test for this case.
6373
6374 2007-08-13  Stefan Kost  <ensonic@users.sf.net>
6375
6376         * libs/gst/check/gstbufferstraw.c:
6377         * libs/gst/check/gstcheck.h:
6378         * libs/gst/controller/gstcontroller.c:
6379         * libs/gst/controller/gstcontrolsource.h:
6380         * libs/gst/controller/gstlfocontrolsource.h:
6381         * plugins/elements/gstcapsfilter.h:
6382         * plugins/elements/gstfdsink.h:
6383         * plugins/elements/gstfdsrc.h:
6384           Add more missing docs.
6385
6386 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
6387
6388         * gst/gststructure.c:
6389         Add Since tag to docs.
6390
6391 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
6392
6393         * docs/gst/gstreamer-sections.txt:
6394         * gst/gststructure.c: (gst_structure_get_uint):
6395         * gst/gststructure.h:
6396         Add function to get uint from a structure.
6397         API: gst_structure_get_uint()
6398
6399 2007-08-12  Wim Taymans  <wim.taymans@gmail.com>
6400
6401         * gst/gstcaps.c: (gst_caps_set_simple_valist),
6402         (gst_caps_intersect):
6403         Fix proper check for simple caps.
6404
6405 2007-08-10  Stefan Kost  <ensonic@users.sf.net>
6406
6407         * docs/gst/Makefile.am:
6408         * docs/libs/Makefile.am:
6409           Remove cruft and do some cleanups.
6410
6411         * docs/gst/gstreamer-docs.sgml:
6412         * docs/libs/gstreamer-libs-docs.sgml:
6413           Prepare for comming gtkdoc features (rebase against online docs).
6414
6415 2007-08-10  Michael Smith <msmith@fluendo.com>
6416
6417         * docs/gst/gstreamer-sections.txt:
6418           Add gst_registry_add_path to docs.
6419
6420 2007-08-10  Michael Smith <msmith@fluendo.com>
6421
6422         * gst/gstregistry.h:
6423           Add gst_registry_add_path, which was missing from this header.
6424
6425 2007-08-10  Tim-Philipp Müller  <tim at centricular dot net>
6426
6427         * libs/gst/controller/gstlfocontrolsource.c:
6428           Printf format fix.
6429
6430 2007-08-09  Philippe Kalaf <philippe.kalaf@collabora.co.uk>
6431
6432         * libs/gst/base/gstbasesink.c:
6433           Don't send an async_start message during downwards state change if 
6434           target state is less than READY
6435
6436 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6437
6438         translated by: Gabor Kelemen <kelemeng@gnome.hu>
6439
6440         * po/LINGUAS:
6441         * po/hu.po:
6442           Added Hungarian translation.
6443
6444 2007-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6445
6446         * po/fi.po:
6447         * po/it.po:
6448         * po/nl.po:
6449         * po/sv.po:
6450         * po/uk.po:
6451           Updated translations.
6452
6453 2007-08-07  Jan Schmidt  <thaytan@mad.scientist.com>
6454
6455         * libs/gst/controller/Makefile.am:
6456         Dist gstlfocontrolsourceprivate.h
6457
6458 2007-08-07  Jan Schmidt  <thaytan@mad.scientist.com>
6459
6460         * docs/libs/gstreamer-libs.types:
6461         Don't register the enum type gst_lfo_waveform_get_type() in the
6462         .types file - only GObject derived types belong.
6463
6464 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
6465
6466         Patch by: <arenevier at fdn dot fr>
6467
6468         * gst/gstbuffer.h:
6469         Remove comma from last element in enum to avoid compile errors when
6470         using -pendantic. Fixes #464366.
6471
6472 2007-08-07  Wim Taymans  <wim.taymans@gmail.com>
6473
6474         * docs/design/part-TODO.txt:
6475         Add some more TODO items
6476
6477         * gst/gstbin.c: (find_message), (gst_bin_change_state_func):
6478         Improve debugging.
6479
6480         * gst/gstcaps.c: (gst_caps_intersect):
6481         Optimize trivial intersection case between identical caps pointers.
6482
6483         * gst/gstelement.c: (gst_element_continue_state),
6484         (gst_element_set_state_func):
6485         * gst/gstpad.c:
6486         Fix spelling and grammar mistakes.
6487
6488 2007-08-05  Stefan Kost  <ensonic@users.sf.net>
6489
6490         * po/POTFILES.in:
6491         * po/POTFILES.skip:
6492           Update POTFILES. Fixes #461599.
6493
6494 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
6495
6496         * gst/gst.c:
6497         Fix confusing typo in debug output.
6498
6499 2007-08-03  Sebastian Dröge  <slomo@circular-chaos.org>
6500
6501         reviewed by: Stefan Kost <ensonic@users.sf.net>
6502
6503         * libs/gst/controller/Makefile.am:
6504         * libs/gst/controller/gstlfocontrolsource.c: (_calculate_pos),
6505         (gst_lfo_waveform_get_type), (gst_lfo_control_source_reset),
6506         (gst_lfo_control_source_new),
6507         (gst_lfo_control_source_set_waveform),
6508         (gst_lfo_control_source_bind), (gst_lfo_control_source_init),
6509         (gst_lfo_control_source_finalize),
6510         (gst_lfo_control_source_dispose),
6511         (gst_lfo_control_source_set_property),
6512         (gst_lfo_control_source_get_property),
6513         (gst_lfo_control_source_class_init):
6514         * libs/gst/controller/gstlfocontrolsource.h:
6515         * libs/gst/controller/gstlfocontrolsourceprivate.h:
6516         API: Add GstLFOControlSource, a control source that gives values
6517         for specific timestamps based on several periodic waveforms.
6518         Fixes #459717.
6519
6520         * tests/check/libs/controller.c: (GST_START_TEST),
6521         (gst_controller_suite):
6522         * docs/libs/gstreamer-libs-docs.sgml:
6523         * docs/libs/gstreamer-libs-sections.txt:
6524         * docs/libs/gstreamer-libs.types:
6525         Add documentation and unit tests for GstLFOControlSource.
6526
6527 2007-08-03  Jan Schmidt  <thaytan@mad.scientist.com>
6528
6529         * configure.ac:
6530         Back to CVS
6531
6532 === release 0.10.14 ===
6533
6534 2007-08-03  Jan Schmidt <thaytan@mad.scientist.com>
6535
6536         * configure.ac:
6537           releasing 0.10.14, "Breathing Vacuum"
6538
6539 2007-08-02  Tim-Philipp Müller  <tim at centricular dot net>
6540
6541         * gst/gstelement.c: (gst_element_class_set_details_simple):
6542         * gst/gstelement.h:
6543           Make strings passed to gst_element_class_set_details_simple()
6544           constant, as they should be (#462752).
6545
6546 2007-08-02  Wim Taymans  <wim.taymans@gmail.com>
6547
6548         * gst/gstbin.c: (gst_bin_change_state_func),
6549         (bin_handle_async_done), (gst_bin_handle_message_func):
6550         Don't forget about the fact that some element went ASYNC even after a
6551         resync. This makes us post the ASYNC_DONE message correctly.
6552         Fixes #462558.
6553
6554 2007-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
6555
6556         * gst/gstregistry.c: (gst_registry_add_feature):
6557         When replacing an existing feature in the registry, make sure to
6558         continue holding a reference until we've replaced the name string
6559         within our feature hash table. Make sure to use g_hash_table_replace
6560         instead of g_hash_table_insert to ensure the new name string is used
6561         as a key instead of the old one that we're about to free.
6562         Fixes: #462085
6563
6564 2007-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
6565
6566         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
6567         (gst_plugin_feature_set_name):
6568         Revert patch from #459466 until after the release and we can work
6569         out exactly what the problem is (if any).
6570
6571 2007-07-26  Tim-Philipp Müller  <tim at centricular dot net>
6572
6573         * docs/gst/gstreamer-sections.txt:
6574         * gst/gsttaglist.c:
6575         * gst/gsttaglist.h:
6576           API: add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI (#451939).
6577
6578 2007-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
6579
6580         * docs/libs/Makefile.am:
6581         Include our build-prefix libs and includes before the generic ones to
6582         avoid linking against the installed libs when we want the build-tree
6583         ones.
6584
6585 2007-07-26  Tim-Philipp Müller  <tim at centricular dot net>
6586
6587         Patch by: Steve Fink  <sphink gmail com>
6588
6589         * docs/pwg/building-testapp.xml:
6590           Mention that GST_PLUGIN_PATH or --gst-plugin-path might be needed
6591           if people try to build or install the example from the plugin
6592           template against a GStreamer from package using the configure
6593           defaults.
6594
6595 2007-07-25  Tim-Philipp Müller  <tim at centricular dot net>
6596
6597         Patch by: Steve Fink  <sphink gmail com>
6598
6599         * tools/gst-inspect.1.in:
6600           Document --print-all and --print-plugin-auto-install-info command
6601           line options in man page.
6602
6603 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6604
6605         * docs/gst/gstreamer-sections.txt:
6606         Add docs for new api function.
6607
6608 2007-07-25  Wim Taymans  <wim.taymans@gmail.com>
6609
6610         * gst/gstelementfactory.c: (gst_element_factory_has_interface):
6611         * gst/gstelementfactory.h:
6612         API: gst_element_factory_has_interface()
6613         Added method to check if an element factory implements a named
6614         interface.
6615
6616 2007-07-25  Stefan Kost  <ensonic@users.sf.net>
6617
6618         * configure.ac:
6619         * docs/gst/gstreamer.types.in:
6620           Another conditional doc check.
6621
6622         * gst/gstmessage.c:
6623         * gst/gstparamspecs.h:
6624         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
6625         * gst/gstvalue.c:
6626         * gst/gstxml.h:
6627           API-doc fixes.
6628
6629 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
6630
6631         * gst/gstregistrybinary.c: (gst_registry_binary_check_magic),
6632         (gst_registry_binary_load_feature),
6633         (gst_registry_binary_load_plugin),
6634         (gst_registry_binary_read_cache):
6635           Print error just once and with additional info.
6636
6637 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
6638
6639         * libs/gst/base/gsttypefindhelper.c: (helper_find_peek),
6640         (helper_find_suggest), (helper_find_get_length),
6641         (gst_type_find_helper_get_range), (buf_helper_find_suggest),
6642         (gst_type_find_helper_for_buffer):
6643           Cleanup the typefindhelper code and add private doc comments.
6644
6645 2007-07-24  Edward Hervey  <bilboed@bilboed.com>
6646
6647         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
6648         (gst_capsfilter_transform_size), (gst_capsfilter_prepare_buf):
6649         Fix capsfilter for cases where the caps set on capsfilter will provide
6650         additional information.
6651         Fixes #449197
6652
6653 2007-07-24  Stefan Kost  <ensonic@users.sf.net>
6654
6655         * gst/gsttypefindfactory.c:
6656           Fix docs that recommened wrong function to use.
6657
6658 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
6659
6660         * tools/gst-inspect.c: (print_plugin_features):
6661           Also give media-type for typefinders in element output.
6662
6663 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
6664
6665         * gst/gstregistry.c: (gst_registry_init), (gst_registry_finalize),
6666         (gst_registry_remove_features_for_plugin_unlocked),
6667         (gst_registry_add_feature), (gst_registry_remove_feature),
6668         (gst_registry_lookup_feature_locked):
6669         * gst/gstregistry.h:
6670           Speed up gst_registry_lookup_feature_locked() by using a hashmap.
6671           Fixes #459501.
6672
6673 2007-07-23  Stefan Kost  <ensonic@users.sf.net>
6674
6675         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
6676         (gst_plugin_feature_set_name):
6677           Avoid double memory usage for pluginfeature names. Fixes #459466.
6678
6679 2007-07-22  Tim-Philipp Müller  <tim at centricular dot net>
6680
6681         * gst/gstpad.h:
6682           Small addition to GST_FLOW_IS_FATAL() docs: mention that elements
6683           driving the pipeline may need to explicitly check for NOT_LINKED as
6684           well, since IS_FATAL doesn't cover that.
6685
6686 2007-07-22  Tim-Philipp Müller  <tim at centricular dot net>
6687
6688         * docs/pwg/advanced-types.xml:
6689           Fix typo and duplicate entry in video formats list.
6690
6691 2007-07-22  Sebastian Dröge  <slomo@circular-chaos.org>
6692
6693         * libs/gst/controller/gstinterpolation.c:
6694         Also round to the nearest int when using cubic interpolation.
6695
6696 2007-07-19  Jan Schmidt  <thaytan@noraisin.net>
6697
6698         * libs/gst/controller/gstinterpolation.c:
6699         When linearly interpolating integer types, round to the nearest int
6700         by adding 0.5. Don't do it for float/double types.
6701         Fixes the failing controller test on my machine, which is somehow
6702         rounding differently than on the buildbots.
6703
6704 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
6705
6706         * tools/gst-plot-timeline.py:
6707           Better log parsing (categories can have -). Adjust text vs. lines, so
6708           that they span the same y-range.        
6709
6710 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
6711
6712         * docs/random/ensonic/audiobaseclasses.txt:
6713         * docs/random/ensonic/dynlink.txt:
6714         * docs/random/ensonic/profiling.txt:
6715           Save my thoughts.
6716
6717         * docs/random/moving-plugins:
6718           Add note to use g_assert type macros.
6719
6720 2007-07-20  Stefan Kost  <ensonic@users.sf.net>
6721
6722         * configure.ac:
6723         * libs/gst/check/Makefile.am:
6724           Add libm check as we use in for plugins.
6725
6726 2007-07-18  Jan Schmidt  <thaytan@noraisin.net>
6727
6728         * gst/gstbin.c: (gst_bin_continue_func):
6729         Check that the state_cookie hasn't changed since the continue_func
6730         was scheduled. Avoids problems where the state changes back to
6731         something it shouldn't be because it was changed in the meantime.
6732
6733 2007-07-17  Stefan Kost  <ensonic@users.sf.net>
6734
6735         * gst/gstregistrybinary.c: (gst_registry_binary_save_const_string),
6736         (gst_registry_binary_save_string),
6737         (gst_registry_binary_save_pad_template),
6738         (gst_registry_binary_save_feature),
6739         (gst_registry_binary_save_plugin),
6740         (gst_registry_binary_load_feature),
6741         (gst_registry_binary_load_plugin),
6742         (gst_registry_binary_read_cache):
6743           Fix memory leak. Be less verbose in the log.
6744
6745 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
6746
6747         * tests/check/elements/.cvsignore:
6748         Add file to cvsignore as commanded.
6749
6750 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
6751
6752         * tests/check/elements/multiqueue.c: (mq_dummypad_chain),
6753         (mq_dummypad_event), (run_output_order_test):
6754         Use a GStaticMutex to protect all cases where libcheck
6755         fail_if/fail_unless macros might be called from multiple threads
6756         simultaneously to avoid errors like:
6757           "check_pack.c:107: :-1081725400:Bad message type arg"
6758
6759 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
6760
6761         * tests/check/pipelines/stress.c: (GST_START_TEST):
6762         Make sure we set the pipeline back to the NULL state before
6763         dropping our final reference.
6764
6765 2007-07-16  Jan Schmidt  <thaytan@mad.scientist.com>
6766
6767         * tests/check/elements/tee.c: (GST_START_TEST):
6768         Make the tee stress-test a little less stressful so it doesn't just
6769         time out on slow-machines, and remove a small race when it's starting 
6770         up by adding a get_state() call.
6771
6772 2007-07-16  Stefan Kost  <ensonic@users.sf.net>
6773
6774         * gst/gst.c:
6775           Avoid reading registry twice on startup. Fixes #457322.
6776
6777 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
6778
6779         * pkgconfig/gstreamer-check-uninstalled.pc.in:
6780         * pkgconfig/gstreamer-check.pc.in:
6781         Substitute the CFLAGS for libcheck into our .pc file too so that
6782         dependent modules will pick it up properly if libcheck is installed
6783         into some other prefix.
6784
6785 2007-07-13  Jan Schmidt  <thaytan@mad.scientist.com>
6786
6787         * configure.ac:
6788         Revert the pkg-config check for libcheck, since it pulls in the
6789         wrong non-PIC libcheck.a on Ubuntu and probably Fedora too. We need
6790         a proper solution, either from the check project, or something else.
6791
6792 2007-07-12  Stefan Kost  <ensonic@users.sf.net>
6793
6794         * configure.ac:
6795           Use pkg-config to locate check.
6796
6797 2007-07-10  Stefan Kost  <ensonic@users.sf.net>
6798
6799         * gst/gsttaglist.c:
6800           Fix doc syntax.
6801
6802         * gst/gstutils.c:
6803         * gst/gstutils.h:
6804           Add deprecation guards.
6805
6806         * libs/gst/base/gstcollectpads.h:
6807           Don't document object (this is implicitly private).
6808
6809 2007-07-08  Tim-Philipp Müller  <tim at centricular dot net>
6810
6811         * gst/gststructure.c: (gst_structure_parse_value):
6812           When deserialising foo=bar without a type cast, check if it's a
6813           boolean before falling back to a string type, otherwise things like
6814           audiotestsrc ! audio/x-raw-int,signed=true ! fakesink won't work,
6815           because the filtercaps end up having a signed=(string)true field,
6816           which causes problems later when intersection caps.
6817
6818         * tests/check/gst/gststructure.c: (GST_START_TEST):
6819           Add a unit test for this.
6820
6821 2007-07-06  Sebastian Dröge  <slomo@circular-chaos.org>
6822
6823         Reviewed by: Stefan Kost <ensonic@users.sf.net>
6824
6825         * libs/gst/controller/Makefile.am:
6826         * libs/gst/controller/gstcontroller.c:
6827         (gst_controlled_property_add_interpolation_control_source),
6828         (gst_controlled_property_new), (gst_controlled_property_free),
6829         (gst_controller_find_controlled_property),
6830         (gst_controller_new_valist), (gst_controller_new_list),
6831         (gst_controller_new), (gst_controller_remove_properties_valist),
6832         (gst_controller_remove_properties_list),
6833         (gst_controller_remove_properties),
6834         (gst_controller_set_property_disabled),
6835         (gst_controller_set_disabled), (gst_controller_set_control_source),
6836         (gst_controller_get_control_source), (gst_controller_get),
6837         (gst_controller_sync_values), (gst_controller_get_value_array),
6838         (_gst_controller_dispose), (gst_controller_get_type),
6839         (gst_controlled_property_set_interpolation_mode),
6840         (gst_controller_set), (gst_controller_set_from_list),
6841         (gst_controller_unset), (gst_controller_unset_all),
6842         (gst_controller_get_all), (gst_controller_set_interpolation_mode):
6843         * libs/gst/controller/gstcontroller.h:
6844         * libs/gst/controller/gstcontrollerprivate.h:
6845         * libs/gst/controller/gstcontrolsource.c:
6846         (gst_control_source_class_init), (gst_control_source_init),
6847         (gst_control_source_get_value),
6848         (gst_control_source_get_value_array), (gst_control_source_bind):
6849         * libs/gst/controller/gstcontrolsource.h:
6850         * libs/gst/controller/gsthelper.c: (gst_object_set_control_source),
6851         (gst_object_get_control_source):
6852         * libs/gst/controller/gstinterpolation.c:
6853         (gst_interpolation_control_source_find_control_point_node),
6854         (gst_interpolation_control_source_get_first_value),
6855         (_interpolate_none_get), (interpolate_none_get),
6856         (interpolate_none_get_boolean_value_array),
6857         (interpolate_none_get_enum_value_array),
6858         (interpolate_none_get_string_value_array),
6859         (_interpolate_trigger_get), (interpolate_trigger_get),
6860         (interpolate_trigger_get_boolean_value_array),
6861         (interpolate_trigger_get_enum_value_array),
6862         (interpolate_trigger_get_string_value_array):
6863         * libs/gst/controller/gstinterpolationcontrolsource.c:
6864         (gst_control_point_free), (gst_interpolation_control_source_reset),
6865         (gst_interpolation_control_source_new),
6866         (gst_interpolation_control_source_set_interpolation_mode),
6867         (gst_interpolation_control_source_bind),
6868         (gst_control_point_compare), (gst_control_point_find),
6869         (gst_interpolation_control_source_set_internal),
6870         (gst_interpolation_control_source_set),
6871         (gst_interpolation_control_source_set_from_list),
6872         (gst_interpolation_control_source_unset),
6873         (gst_interpolation_control_source_unset_all),
6874         (gst_interpolation_control_source_get_all),
6875         (gst_interpolation_control_source_get_count),
6876         (gst_interpolation_control_source_init),
6877         (gst_interpolation_control_source_finalize),
6878         (gst_interpolation_control_source_dispose),
6879         (gst_interpolation_control_source_class_init):
6880         * libs/gst/controller/gstinterpolationcontrolsource.h:
6881         * libs/gst/controller/gstinterpolationcontrolsourceprivate.h:
6882         API: Refactor GstController into the core controller which can take
6883         a GstControlSource for providing actual values for timestamps.
6884         Implement a interpolation control source and use this for backward
6885         compatibility, deprecate a bunch of functions that are now handled
6886         by GstControlSource or GstInterpolationControlSource.
6887         Make it possible to disable the controller completely or only for
6888         specific properties. Fixes #450711.
6889         * docs/libs/gstreamer-libs-docs.sgml:
6890         * docs/libs/gstreamer-libs-sections.txt:
6891         * docs/libs/gstreamer-libs.types:
6892         Add new functions and classes to the docs.
6893         * tests/check/libs/controller.c: (GST_START_TEST),
6894         (gst_controller_suite):
6895         * tests/examples/controller/audio-example.c: (main):
6896         Port unit test and example to the new API and add some new
6897         unit tests.
6898
6899 2007-07-05  Wim Taymans  <wim.taymans@gmail.com>
6900
6901         Patch by: Mark Nauwelaerts <manauw at skynet be>
6902
6903         * plugins/elements/gstmultiqueue.c:
6904         (gst_multi_queue_get_internal_links), (apply_buffer),
6905         (single_queue_overrun_cb), (gst_single_queue_new):
6906         Implement non-default GstPadIntLinkFunction for multiqueue pads so that
6907         the pipeline layout can be tracked correctly. Fixes #453732.
6908
6909 2007-07-05  Stefan Kost  <ensonic@users.sf.net>
6910
6911         * docs/gst/Makefile.am:
6912         * docs/libs/Makefile.am:
6913         * docs/plugins/Makefile.am:
6914           Simplify --extra-dir as gtkdoc scans recursively.
6915
6916 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
6917
6918         * tools/gst-launch.c: (main):
6919         When we got an error, there is no point in waiting for preroll when
6920         shutting down.
6921
6922 2007-07-03  Wim Taymans  <wim.taymans@gmail.com>
6923
6924         * plugins/elements/gsttee.c: (gst_tee_base_init),
6925         (gst_tee_request_new_pad), (gst_tee_release_pad),
6926         (gst_tee_find_buffer_alloc), (gst_tee_buffer_alloc),
6927         (gst_tee_do_push), (clear_pads), (gst_tee_handle_buffer),
6928         (gst_tee_chain):
6929         Be a lot smarter when deciding what srcpad to use for proxying
6930         the buffer_alloc. Also handle pad added/removed when doing so.
6931         Fixes #357959.
6932         Keep track of what pads we already pushed on in case we have pads
6933         added/removed while pushing. Fixes #374639 
6934
6935         * tests/check/Makefile.am:
6936         * tests/check/elements/tee.c: (handoff), (GST_START_TEST),
6937         (tee_suite):
6938         Added unit test for pad resync.
6939
6940 2007-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6941
6942         * po/nl.po:
6943         * po/sv.po:
6944           Updated translations.
6945
6946 2007-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
6947
6948         translation by: Tommi Vainikainen <Tommi.Vainikainen@iki.fi>
6949
6950         * po/LINGUAS:
6951         * po/fi.po:
6952           Added new Finnish translation.
6953
6954 2007-06-28  Wim Taymans  <wim@fluendo.com>
6955
6956         * plugins/elements/gstmultiqueue.c: (apply_buffer),
6957         (single_queue_overrun_cb):
6958         When figuring out when a queue is filled, use our internal time estimate
6959         based on segments, just like check_full does.
6960
6961 2007-06-27  Stefan Kost  <ensonic@users.sf.net>
6962
6963         * gst/gstminiobject.c: (gst_mini_object_get_type):
6964           Remove 3 do-nothing methods.
6965
6966 2007-06-27  Wim Taymans  <wim@fluendo.com>
6967
6968         Patch by: Tim Angus <tim at ngus dot net>
6969
6970         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
6971         (gst_capsfilter_set_property):
6972         Take a reference instead of a copy when setting "caps".
6973         Fix documentation to clarify this behaviour. Fixes #449414.
6974
6975 2007-06-27  Stefan Kost  <ensonic@users.sf.net>
6976
6977         * gst/gstindexfactory.c: (gst_index_factory_get_type):
6978         * gst/gstplugin.c: (gst_plugin_init):
6979         * gst/gstpluginfeature.c: (gst_plugin_feature_init):
6980         * gst/gstquery.c: (gst_query_get_type):
6981         * gst/gstregistry.c: (gst_registry_init):
6982         * gst/gsturi.c: (gst_uri_handler_base_init):
6983           Remove empty instance_init() functions to save relocs and lessen the
6984           noise. Remove some of the function prototypes that are doubled by
6985           G_DEFINE_TYPE.
6986           
6987 2007-06-27  Wim Taymans  <wim@fluendo.com>
6988
6989         Patch by: Étienne Noreau-Hébert <etienne at deepunder dot org>
6990
6991         * gst/gstghostpad.c: (gst_proxy_pad_save_thyself):
6992         Add peer and direction in the XML serialisation of ghostpads.
6993         Fixes #449226.
6994
6995 2007-06-26  Stefan Kost  <ensonic@users.sf.net>
6996
6997         * configure.ac:
6998           Preserve useful information, thanks Tim.
6999
7000 2007-06-26  Jan Schmidt  <thaytan@noraisin.net>
7001
7002         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_init),
7003         (gst_single_queue_flush), (apply_segment), (apply_buffer),
7004         (gst_single_queue_push_one), (gst_multi_queue_loop),
7005         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
7006         (gst_multi_queue_src_activate_push), (wake_up_next_non_linked),
7007         (compute_high_id), (gst_single_queue_new):
7008         * plugins/elements/gstmultiqueue.h:
7009         Take the multiqueue lock when updating the fill level so we don't get
7010         confused. 
7011
7012         After applying a buffer or event on the src pad segment, make sure to
7013         call gst_data_queue_limits_changed() to get the data queue to unblock
7014         and check the filled state again.
7015         
7016         Rework the not-linked pad handling so the logic is that not-linked 
7017         pads can push as fast as they like, but only so they never get 
7018         ahead of any linked pads.
7019
7020         * tests/check/elements/multiqueue.c: (mq_sinkpad_to_srcpad),
7021         (mq_dummypad_getcaps), (mq_dummypad_chain), (mq_dummypad_event),
7022         (run_output_order_test), (GST_START_TEST), (multiqueue_suite):
7023
7024         Add a test to check that not-linked pads always stay behind
7025         linked pads.
7026
7027         Fixes: #430682
7028
7029 2007-06-26  Jan Schmidt  <thaytan@mad.scientist.com>
7030
7031         * docs/random/release:
7032           Some updates to the release procedure.
7033
7034 2007-06-26  Stefan Kost  <ensonic@users.sf.net>
7035
7036         * gst/gstelementfactory.c: (__gst_element_details_clear):
7037           Microoptimization that saves stunning 80 bytes.
7038
7039 2007-06-25  Stefan Kost  <ensonic@users.sf.net>
7040
7041         * docs/plugins/gstreamer-plugins.args:
7042         * docs/plugins/inspect/plugin-coreelements.xml:
7043         * docs/plugins/inspect/plugin-coreindexers.xml:
7044           Update docs with caps info.
7045
7046 2007-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7047
7048         * po/it.po:
7049           Updated Italian translation.
7050
7051 2007-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
7052
7053         * ChangeLog:
7054         * po/vi.po:
7055           Update Vietnamese translations.
7056
7057 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
7058
7059         * libs/gst/base/gstbasesink.c:
7060           Remove unused signal enum.
7061
7062 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
7063
7064         * docs/gst/gstreamer-sections.txt:
7065         * gst/gstelement.c:
7066         * gst/gstutils.c: (gst_type_register_static_full):
7067         Beef up and include the docs for gst_type_register_static_full and
7068         gst_element_class_set_details_simple and add the API keyword
7069         in the ChangeLog.
7070
7071 2007-06-21  Jan Schmidt  <thaytan@mad.scientist.com>
7072
7073         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_set_property),
7074         (update_time_level), (gst_single_queue_push_one),
7075         (gst_multi_queue_chain), (gst_multi_queue_sink_event),
7076         (single_queue_overrun_cb), (single_queue_underrun_cb),
7077         (single_queue_check_full):
7078         Fix setting max-* properties after adding queues.
7079         Use IS_FILLED for checking visible items.
7080         Signal overrun if multiple queues overrun.
7081         Add extra debug output.
7082         Patch by: Wim Taymans <wim@fluendo.com>
7083
7084 2007-06-21  Stefan Kost  <ensonic@users.sf.net>
7085
7086         * gst/gstelement.c: (gst_element_class_set_details_simple):
7087         * gst/gstelement.h:
7088         * gst/gstutils.c: (gst_type_register_static_full):
7089         * gst/gstutils.h:
7090         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_base_init):
7091         * plugins/elements/gstfakesink.c: (gst_fake_sink_base_init):
7092         * plugins/elements/gstfakesrc.c: (gst_fake_src_base_init):
7093         * plugins/elements/gstfdsink.c: (gst_fd_sink_base_init):
7094         * plugins/elements/gstfdsrc.c: (gst_fd_src_base_init):
7095         * plugins/elements/gstfilesink.c: (gst_file_sink_base_init):
7096         * plugins/elements/gstfilesrc.c: (gst_file_src_base_init):
7097         * plugins/elements/gstidentity.c: (gst_identity_base_init):
7098         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init):
7099         * plugins/elements/gstqueue.c: (gst_queue_base_init),
7100         (apply_buffer), (gst_queue_chain):
7101         * plugins/elements/gsttee.c: (gst_tee_base_init):
7102         * plugins/elements/gsttypefindelement.c:
7103         (gst_type_find_element_base_init),
7104         (gst_type_find_element_class_init):
7105           Saving relocations for GTypeInfo and GstElementDetails. Fixes #437457.
7106           API: add gst_type_register_static_full
7107           API: add gst_element_class_set_details_simple
7108
7109 2007-06-21  Tim-Philipp Müller  <tim at centricular dot net>
7110
7111         * docs/pwg/advanced-types.xml:
7112           Fix typo in iana.org URI.
7113
7114 2007-06-19  Andy Wingo  <wingo@pobox.com>
7115
7116         * tests/check/pipelines/simple-launch-lines.c
7117         (test_state_change_returns): Enable pull-mode tests now that
7118         basesink has been fixed.
7119
7120         * libs/gst/base/gstbasesink.c (gst_base_sink_needs_preroll):
7121         Changed from gst_base_sink_is_prerolled, reversing the sense of
7122         the return value. Returns FALSE also if the sink is in pull mode,
7123         in which case it needs no preroll.
7124         (gst_base_sink_query, gst_base_sink_change_state): Update for
7125         needs_preroll change.
7126         (gst_base_sink_change_state): Add a case for READY_TO_PAUSED after
7127         chaining up, in which we return SUCCESS directly if we activated
7128         in pull mode instead of ASYNC. Involves countering an async_start
7129         message sent before chaining up; not sure if this is correct, in
7130         an ideal world we only send async-start when activating in push
7131         mode.
7132
7133         * tests/check/pipelines/simple-launch-lines.c
7134         (test_state_change_returns): New test, partially disabled until
7135         basesink is fixed.
7136
7137 2007-06-19  Wim Taymans  <wim@fluendo.com>
7138
7139         * plugins/elements/gstmultiqueue.c: (apply_buffer),
7140         (gst_multi_queue_sink_event):
7141         Fix event leak.
7142
7143 2007-06-19  Wim Taymans  <wim@fluendo.com>
7144
7145         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
7146         (gst_bin_change_state_func), (bin_push_state_continue),
7147         (bin_handle_async_start), (bin_handle_async_done),
7148         (gst_bin_handle_message_func):
7149         Move the common code for posting state-change messages into
7150         one function.
7151         Broadcast the state signal after we posted the messages.
7152         Mark the bin as busy when it's doing a state-change.
7153         Make sure async-start/done messages don't interfere with the bin's
7154         state when it's busy.
7155         After the state change, let the bin check which elements completed the
7156         state change while it was busy so that it can update its state.
7157
7158 2007-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
7159
7160         * docs/random/release:
7161         Add a note about updating the doap file to the release checklist
7162
7163 2007-06-18  Wim Taymans  <wim@fluendo.com>
7164
7165         * plugins/elements/gstmultiqueue.c: (apply_buffer),
7166         (gst_single_queue_push_one), (gst_multi_queue_chain),
7167         (gst_multi_queue_sink_event):
7168         Make sure we don't reference the buffer/event after we have given away
7169         ownership in the queue.
7170
7171 2007-06-18  Wim Taymans  <wim@fluendo.com>
7172
7173         * plugins/elements/gstmultiqueue.c: (gst_single_queue_flush),
7174         (gst_multi_queue_chain), (gst_multi_queue_sink_event):
7175         Update queue state _after_ adding the item in the queue because else we
7176         could end up being full without the element added yet.
7177
7178 2007-06-18  Wim Taymans  <wim@fluendo.com>
7179
7180         * gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
7181         (gst_bin_remove_func), (gst_bin_get_state_func),
7182         (gst_bin_element_set_state), (gst_bin_continue_func),
7183         (bin_push_state_continue), (bin_handle_async_start),
7184         (bin_handle_async_done), (gst_bin_handle_message_func):
7185         * gst/gstbin.h:
7186         Immediatly commit the toplevel bin state when receiving an async-done
7187         message. This enables us to avoid spawning a thread to commit the state
7188         in some common cases and it also avoids some races.
7189         Avoid spawning a state thread when adding/removing async elements to a
7190         toplevel bin. Instead we immediatly update the bin state.
7191         Get rid of iterating all the children when getting the state in the bin
7192         because it is now always up-to-date.
7193         Fix bug where locked elements would always return _SUCCESS even it they
7194         returned NO_PREROLL before being locked.
7195         Fix the order of the state_change, async-start/done messages that was
7196         sometimes incorrect.
7197         Mark the state_dirty field as deprecated, we don't need it anymore as we
7198         are always up-to-date.
7199
7200         * gst/gstelement.c: (gst_element_get_state_func),
7201         (gst_element_continue_state):
7202         Small debug inprovements.
7203         Return the previous element state return when nothing is pending instead
7204         of blindly returning SUCCESS.
7205
7206         * tests/check/generic/sinks.c: (GST_START_TEST), (pad_blocked_cb),
7207         (gst_sinks_suite):
7208         Add a whole bunch of new testcases.
7209
7210 2007-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7211
7212         * po/uk.po:
7213         * po/vi.po:
7214           Update translations.
7215
7216 2007-06-15  Jan Schmidt  <thaytan@mad.scientist.com>
7217
7218         * gst/gstpad.c:
7219         Fix typo in the docs.
7220
7221 2007-06-15  Wim Taymans  <wim@fluendo.com>
7222
7223         * docs/libs/gstreamer-libs-sections.txt:
7224         Add docs for new methods.
7225
7226 2007-06-15  Wim Taymans  <wim@fluendo.com>
7227
7228         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_item_destroy),
7229         (gst_multi_queue_item_new):
7230         Don't use GSlice because we don't depend on >= 2.10 yet.
7231
7232 2007-06-15  Wim Taymans  <wim@fluendo.com>
7233
7234         * plugins/elements/gstmultiqueue.c: (gst_single_queue_flush),
7235         (update_time_level), (apply_segment), (apply_buffer),
7236         (gst_single_queue_push_one), (gst_multi_queue_item_new),
7237         (gst_multi_queue_loop), (gst_multi_queue_sink_activate_push),
7238         (gst_multi_queue_sink_event), (single_queue_overrun_cb),
7239         (single_queue_underrun_cb), (single_queue_check_full):
7240         Remove debug printf.
7241
7242 2007-06-15  Wim Taymans  <wim@fluendo.com>
7243
7244         * libs/gst/base/gstdataqueue.c: (gst_data_queue_cleanup),
7245         (gst_data_queue_finalize), (gst_data_queue_locked_is_empty),
7246         (gst_data_queue_set_flushing), (gst_data_queue_push),
7247         (gst_data_queue_pop), (gst_data_queue_drop_head),
7248         (gst_data_queue_limits_changed), (gst_data_queue_get_level):
7249         * libs/gst/base/gstdataqueue.h:
7250         Various cleanups.
7251         Added methods to get the current levels and to inform the queue that the
7252         'full' limits changed.
7253
7254         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_init),
7255         (gst_multi_queue_finalize), (gst_multi_queue_set_property),
7256         (gst_single_queue_flush), (update_time_level), (apply_segment),
7257         (apply_buffer), (gst_single_queue_push_one),
7258         (gst_multi_queue_item_steal_object),
7259         (gst_multi_queue_item_destroy), (gst_multi_queue_item_new),
7260         (gst_multi_queue_loop), (gst_multi_queue_chain),
7261         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
7262         (gst_multi_queue_getcaps), (gst_multi_queue_src_activate_push),
7263         (gst_multi_queue_src_query), (single_queue_overrun_cb),
7264         (single_queue_underrun_cb), (single_queue_check_full),
7265         (gst_single_queue_new):
7266         Keep track of time in the queue by measuring the difference between
7267         running_time on input and output. This gives more accurate results and
7268         can compensate for segments correctly.
7269         Make a queue by default only 5 buffers deep. We will now increase the
7270         buffer size depending on the filledness of the other queues.
7271         Factor out commong flush code.
7272         Make sure we don't add additional refcounts to buffers when we can avoid
7273         it.
7274         Propagate GstFlowReturn differently.
7275         Use GSlice for intermediate GstMultiQueueItems.
7276         Keep track of EOS.
7277         Resize queues on over and underruns based on filled level of other
7278         queues.
7279         When checking if the queue is filled, prefer to measure in time if we
7280         can and fall back to bytes when no time is known.
7281
7282         * plugins/elements/gstqueue.c:
7283         Fix return value.
7284
7285 2007-06-15  Wim Taymans  <wim@fluendo.com>
7286
7287         * libs/gst/base/gstbasetransform.c:
7288         (gst_base_transform_sink_event):
7289         Work around the brokenness of the event vmethod in basetransform. Prefer
7290         to return TRUE when the subclass returned FALSE (meaning don't forward
7291         the event). 
7292
7293         * libs/gst/base/gstbasetransform.h:
7294         Clarify the docs.
7295
7296 2007-06-15  Wim Taymans  <wim@fluendo.com>
7297
7298         * gst/gstpad.c: (gst_pad_push_event), (gst_pad_send_event):
7299         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
7300         (gst_base_src_default_query), (gst_base_src_get_range),
7301         (gst_base_src_start):
7302         * tests/check/pipelines/parse-launch.c: (setup_pipeline):
7303         Improve debugging.
7304
7305 2007-06-15  Stefan Kost  <ensonic@users.sf.net>
7306
7307         * docs/pwg/advanced-types.xml:
7308           Added more formats to caps table.
7309
7310 2007-06-15  Stefan Kost  <ensonic@users.sf.net>
7311
7312         * tools/gst-launch.c: (main):
7313           Remove crufy code. GOption does not need this workaround.
7314
7315 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
7316
7317         * libs/gst/controller/gstcontroller.c:
7318         (gst_controlled_property_set_interpolation_mode):
7319           Fix wrong getter for enums in controller.
7320
7321 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7322
7323         * libs/gst/check/gstcheck.c: (gst_check_init):
7324           Intercept criticals and warnings in the Gst-Phonon log domain, so
7325           ASSERT_CRITICAL() etc. can be used in gst-phonon's unit tests as
7326           well.
7327         
7328 2007-06-14  Edward Hervey  <edward@fluendo.com>
7329
7330         * gst/gstparamspecs.c: (_gst_param_fraction_validate):
7331         Since this file doesn't include "gst.h" it will not go through the
7332         macros that disable GST_LOG if debugging was disabled.
7333
7334 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7335
7336         * libs/gst/check/Makefile.am:
7337         * libs/gst/check/gstcheck.h:
7338         * pkgconfig/gstreamer-check-uninstalled.pc.in:
7339         * pkgconfig/gstreamer-check.pc.in:
7340           Ugly 'fix' for the controller unit test on the p5 bot: in
7341           fail_unless_equals_float() check whether the values are 'almost
7342           equal' by allowing a small absolute error, which should be good
7343           enough for our use cases (normal numbers and values close to 0).
7344           Proper fixage left to floating point arithmetic aficionados.
7345
7346 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
7347
7348         * libs/gst/base/gstbasesink.c: (gst_base_sink_reset_qos),
7349         (gst_base_sink_render_object), (gst_base_sink_get_position):
7350           Add two breaks thats where missing.
7351
7352 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7353
7354         * docs/libs/gstreamer-libs-sections.txt:
7355         * libs/gst/check/gstcheck.h:
7356           API: add fail_unless_equals_float() and assert_equals_float().
7357           Add documentation for some of the macros.
7358
7359         * tests/check/libs/controller.c: (GST_START_TEST):
7360           Use newly-added asserts.
7361
7362 2007-06-14  Stefan Kost  <ensonic@users.sf.net>
7363
7364         * gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_push):
7365           Show the caps change in the log to help spotting the case of not
7366           exactly matching caps.
7367
7368 2007-06-14  Tim-Philipp Müller  <tim at centricular dot net>
7369
7370         * docs/pwg/building-boiler.xml:
7371           Fix typos, spotted by Thijs Vermeir (#447190).
7372
7373 2007-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
7374
7375         * docs/plugins/tmpl/.cvsignore:
7376         Ignore file to keep the buildbots happy
7377
7378 2007-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
7379
7380         * docs/plugins/Makefile.am:
7381         * docs/plugins/gstreamer-plugins-docs.sgml:
7382         * docs/plugins/gstreamer-plugins-sections.txt:
7383         Pull fdsink into the docs too.
7384
7385 2007-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
7386
7387         * libs/gst/controller/gstinterpolation.c:
7388         Actually use the new functions with min/max checks for the trigger and
7389         none interpolation modes for get() and get_value_array() instead of
7390         just the latter.
7391
7392 2007-06-10  Sebastian Dröge  <slomo@circular-chaos.org>
7393
7394         * libs/gst/controller/gstcontroller.c:
7395         (gst_controlled_property_free):
7396         Unset the minimum and maximum GValues when freeing the corresponding
7397         GstControllerProperty struct.
7398
7399 2007-06-09  Sebastian Dröge  <slomo@circular-chaos.org>
7400
7401         * libs/gst/controller/gstcontroller.c:
7402         (gst_controlled_property_new):
7403         * libs/gst/controller/gstcontrollerprivate.h:
7404         * libs/gst/controller/gstinterpolation.c:
7405         (gst_controlled_property_find_control_point_node),
7406         (interpolate_none_get), (interpolate_none_get_enum_value_array),
7407         (interpolate_none_get_string_value_array),
7408         (interpolate_trigger_get),
7409         (interpolate_trigger_get_enum_value_array),
7410         (interpolate_trigger_get_string_value_array):
7411         Protect against values larger or smaller than the minimum or maximum
7412         allowed value for the property when using values that can be compared.
7413
7414         Optimize trigger interpolator a bit by taking the last requested value
7415         into account instead of always looping through the complete list.
7416
7417         Fix coding style a bit, everywhere else we use "return foo" instead
7418         of "return (foo)".
7419         
7420         * tests/check/libs/controller.c: (GST_START_TEST),
7421         (gst_controller_suite):
7422         Add unit test for the protection against too large or too small
7423         values.
7424
7425 2007-06-08  Sebastian Dröge  <slomo@circular-chaos.org>
7426
7427         * docs/random/slomo/controller.txt:
7428         Add some thoughts about the future of the controller.
7429
7430 2007-06-08  Wim Taymans  <wim@fluendo.com>
7431
7432         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
7433         Don't overflow in retimestamping code.
7434
7435 2007-06-07  Sebastien Moutte  <sebastien@moutte.net>
7436
7437         * libs/gst/controller/gstinterpolation.c: (DEFINE_CUBIC_GET):
7438         Use gst_util_guint64_to_gdouble for conversions.
7439         * win32/common/libgstreamer.def:
7440         Add new exported functions.
7441
7442 2007-06-07  Tim-Philipp Müller  <tim at centricular dot net>
7443
7444         * gst/gstutils.c:
7445           Small docs addition.
7446
7447 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
7448
7449         * README:
7450           Remove that test line again.
7451
7452 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
7453
7454         * README:
7455           Test commit mail sending.
7456
7457 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
7458
7459         * configure.ac:
7460           Fix typo and test commit mail sending.
7461
7462 2007-06-07  Stefan Kost  <ensonic@users.sf.net>
7463
7464         * tests/examples/controller/audio-example.c:
7465           Improve comment and test commit mail sending.
7466
7467 2007-06-07  Wim Taymans  <wim@fluendo.com>
7468
7469         * gst/gstbin.c: (find_message), (bin_replace_message), (is_eos),
7470         (gst_bin_remove_func), (gst_bin_element_set_state),
7471         (bin_handle_async_start), (bin_handle_async_done),
7472         (gst_bin_handle_message_func):
7473         Add helper function to find messages.
7474         Generate the async-done messages together with the state change
7475         messages.
7476         Small cleanups in handling toplevel bins.
7477
7478 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
7479
7480         * libs/gst/base/gstdataqueue.c:
7481         * libs/gst/base/gstdataqueue.h:
7482         * plugins/elements/gstmultiqueue.c: (gst_single_queue_push_one),
7483         (gst_multi_queue_item_new), (gst_multi_queue_chain),
7484         (gst_multi_queue_sink_event):
7485         * tests/check/elements/multiqueue.c: (multiqueue_suite):
7486           Fix multiqueue leaking buffers and events when downstream or the
7487           queue are flushing. Make refcounting assumptions explicit and
7488           document them (shouldn't break existing code that uses it other than
7489           maybe leak miniobjects, but that already happens anyway). Add unit
7490           test for the most common flushing case. Fixes #423700.
7491           
7492 2007-06-06  Sebastian Dröge  <slomo@circular-chaos.org>
7493
7494         * libs/gst/controller/gstcontroller.c:
7495         Clarify docs: The get_all, get_value_array(s) functions
7496         don't modify the GObject properties.
7497
7498 2007-06-06  Sebastian Dröge  <slomo@circular-chaos.org>
7499
7500         * libs/gst/controller/gstcontroller.c:
7501         (gst_controlled_property_set_interpolation_mode),
7502         (gst_controlled_property_prepend_default),
7503         (gst_controlled_property_new), (gst_controller_set_unlocked),
7504         (gst_controller_set), (gst_controller_set_from_list),
7505         (gst_controller_unset), (gst_controller_unset_all):
7506         * libs/gst/controller/gstcontrollerprivate.h:
7507         * libs/gst/controller/gstinterpolation.c:
7508         Factor out the 'set' logic into gst_controller_set_unlocked for the
7509         gst_controller_set and gst_controller_set_from_list functions.
7510
7511         To make life of the interpolators easier always add a control point
7512         at timestamp zero with the default value.
7513
7514         In the linear interpolator make things more obvious by better variable
7515         naming (slope).
7516
7517         Implement cubic interpolation mode (by using a natural cubic spline)
7518         and map the quadratic interpolation mode to this too (as quadratic
7519         doesn't make much sense, see discussion on the list).
7520
7521         * tests/check/libs/controller.c: (GST_START_TEST),
7522         (gst_controller_suite):
7523         Add unit test for the cubic interpolation mode and check everywhere
7524         if the interpolation mode could be set as expected.
7525
7526 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
7527
7528         * gst/gstparamspecs.c: (gst_param_spec_fraction_get_type):
7529           Don't use GLib-2.10 functions, we still depend on
7530           GLib-how-old-is-it-again-2.8.
7531
7532 2007-06-06  Tim-Philipp Müller  <tim at centricular dot net>
7533
7534         * docs/gst/gstreamer-sections.txt:
7535         * gst/Makefile.am:
7536         * gst/gst.c:
7537         * gst/gst.h:
7538         * gst/gstparamspecs.c: (_gst_param_fraction_init),
7539         (_gst_param_fraction_set_default), (_gst_param_fraction_validate),
7540         (_gst_param_fraction_values_cmp),
7541         (gst_param_spec_fraction_get_type), (gst_param_spec_fraction):
7542         * gst/gstparamspecs.h:
7543         * gst/gstvalue.c:
7544         * tests/check/Makefile.am:
7545         * tests/check/gst/.cvsignore:
7546         * tests/check/gst/gstparamspecs.c: (gst_dummy_obj_base_init),
7547         (gst_dummy_obj_class_init), (gst_dummy_obj_init),
7548         (gst_dummy_obj_set_property), (gst_dummy_obj_get_property),
7549         (GST_START_TEST), (gst_param_spec_suite):
7550           API: add GstParamSpecFraction, so elements can have fraction
7551           properties without lots of painful string parsing (#444648).
7552
7553 2007-06-05  Wim Taymans  <wim@fluendo.com>
7554
7555         * gst/gstobject.c: (gst_object_class_init):
7556         Fix signal signature.
7557
7558         * gst/gstsegment.c:
7559         Add small clarification in the api docs.
7560
7561         * plugins/elements/gstfilesrc.c: (gst_file_src_set_location):
7562         States are protected with object lock.
7563
7564 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
7565
7566         * AUTHORS:
7567         I should probably be listed as an author by now.
7568
7569         * docs/random/release:
7570         Update the release doc
7571
7572 2007-06-05  Tim-Philipp Müller  <tim at centricular dot net>
7573
7574         * gst/gstvalue.c:
7575           Make docs for gst_value_compare() mention return enums that
7576           actually exist.
7577
7578 2007-06-05  Jan Schmidt  <thaytan@mad.scientist.com>
7579
7580         * configure.ac:
7581           Back to CVS
7582
7583 === release 0.10.13 ===
7584
7585 2007-06-05  Jan Schmidt <thaytan@mad.scientist.com>
7586
7587         * configure.ac:
7588           releasing 0.10.13, "With or without you"
7589
7590 2007-05-25  Wim Taymans  <wim@fluendo.com>
7591
7592         * gst/gstbin.c: (bin_handle_async_done):
7593         Make sure that the child bin stops after completing the async state
7594         change so that the parent can continue the state change to PLAYING.
7595         Fixes #441159.
7596
7597 2007-05-25  Wim Taymans  <wim@fluendo.com>
7598
7599         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
7600         (unref_data), (gst_collect_pads_remove_pad),
7601         (gst_collect_pads_check_pads):
7602         Use additional refcounting to avoid crashes when dynamically adding and
7603         removing pads. Fixes #420206.
7604
7605 2007-05-24  Wim Taymans  <wim@fluendo.com>
7606
7607         * tools/gst-launch.c: (event_loop):
7608         When buffering goes from a two digit to a single digit number, make sure
7609         to remove the old second digit by writing a blank over it.
7610
7611 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
7612
7613         * libs/gst/base/gstdataqueue.c:
7614           Eliminate tabs and trailing comma in enum list; fix some typos.
7615
7616 2007-05-24  Wim Taymans  <wim@fluendo.com>
7617
7618         * tests/check/gst/gstbin.c: (GST_START_TEST):
7619         Allow refcount of 3 and 4 because some state thread might still be busy
7620         with it.
7621
7622 2007-05-24  Tim-Philipp Müller  <tim at centricular dot net>
7623
7624         * plugins/elements/Makefile.am:
7625         * plugins/elements/gstmultiqueue.h:
7626         * plugins/elements/gstqueue.h:
7627           These are not installed headers, no need for padding.
7628
7629 2007-05-24  Wim Taymans  <wim@fluendo.com>
7630
7631         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_get_state_func),
7632         (gst_bin_continue_func):
7633         Enable latency for next release.
7634         Restore STATE_LOCK around recalc_state that was left out during the
7635         rewrite and could result in racy behaviour when _get_state and
7636         recalc_state are run concurrently. See #440463.
7637
7638 2007-05-23  Wim Taymans  <wim@fluendo.com>
7639
7640         * tests/check/gst/gstsystemclock.c: (store_callback),
7641         (GST_START_TEST):
7642         Improve test_async_order to also work when both timers are already
7643         expired when we get scheduled to check it.
7644
7645 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7646
7647         * gst/gstbin.c: (gst_bin_init), (gst_bin_dispose),
7648         (gst_bin_set_property), (gst_bin_get_property),
7649         (gst_bin_remove_func), (gst_bin_handle_message_func):
7650         * gst/gstbin.h:
7651           'private' is a c++ keyword, let's not use that in header files,
7652           otherwise c++ compilers will throw a tantrum.
7653
7654 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7655
7656         * plugins/elements/gstelements.c:
7657         * plugins/elements/gstfilesink.c: (gst_file_sink_do_seek),
7658         (gst_file_sink_get_current_offset):
7659         * plugins/indexers/gstindexers.c: (plugin_init):
7660           Use #ifdef for HAVE_XYZ for consistency.
7661
7662         * tests/check/Makefile.am:
7663         * tests/check/elements/.cvsignore:
7664         * tests/check/elements/filesink.c: (setup_filesink),
7665         (cleanup_filesink), (GST_START_TEST), (filesink_suite):
7666           Add some unit tests for filesink.
7667
7668 2007-05-22  Tim-Philipp Müller  <tim at centricular dot net>
7669
7670         Patch by: Mark Nauwelaerts <manauw at skynet be>
7671
7672         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
7673         (gst_file_sink_query), (gst_file_sink_do_seek),
7674         (gst_file_sink_get_current_offset), (gst_file_sink_render):
7675         * plugins/elements/gstfilesink.h:
7676           Fix position reporting; rename data_written member to current_pos to
7677           reflect its real meaning (fixes #412648).
7678
7679 2007-05-22  Edward Hervey  <edward@fluendo.com>
7680
7681         * docs/gst/gstreamer-sections.txt:
7682         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
7683         (gst_bin_dispose), (gst_bin_set_property), (gst_bin_get_property),
7684         (gst_bin_remove_func), (gst_bin_handle_message_func):
7685         * gst/gstbin.h:
7686         Add a property for bins that handle the state change of their childs.
7687         Fixes #435880
7688
7689 2007-05-22  Sebastian Dröge  <slomo@circular-chaos.org>
7690
7691         * libs/gst/controller/gstinterpolation.c:
7692         Use an array of the correct type when using _get_value_array with
7693         linear interpolation.
7694
7695 2007-05-22  Stefan Kost  <ensonic@users.sf.net>
7696
7697         * gst/gstelement.c (gst_element_requires_clock,
7698           gst_element_provides_clock, gst_element_request_pad,
7699           gst_element_class_set_details, gst_element_class_set_details_simple,
7700           gst_element_default_send_event, gst_element_abort_state,
7701           gst_element_continue_state, gst_element_set_state,
7702           gst_element_set_state_func, iterator_activate_fold_with_resync):
7703         * gst/gstpad.c (gst_pad_activate_pull, gst_pad_set_getcaps_function,
7704           gst_pad_fixate_caps, gst_pad_configure_sink, gst_pad_configure_src,
7705           gst_pad_query, gst_pad_save_thyself, handle_pad_block, gst_pad_push,
7706           gst_pad_get_range, gst_pad_pull_range):
7707         * gst/gstpad.h (GST_PAD_LINK_SUCCESSFUL, GST_FLOW_CUSTOM_SUCCESS,
7708           GST_FLOW_NOT_SUPPORTED, GST_FLOW_IS_FATAL, GstPadActivateFunction,
7709           GstPadActivateModeFunction, GstPadChainFunction,
7710           GstPadGetCapsFunction, GstPadAcceptCapsFunction,
7711           GstPadFixateCapsFunction, GstPadTemplate):
7712         * gst/gstpipeline.c (gst_pipeline_change_state,
7713           gst_pipeline_set_new_stream_time, gst_pipeline_use_clock,
7714           gst_pipeline_set_clock, gst_pipeline_auto_clock,
7715           gst_pipeline_get_delay):
7716           Whitespace and docs fixes.
7717
7718 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
7719
7720         * libs/gst/controller/gstinterpolation.c:
7721         (interpolate_trigger_get_enum_value_array),
7722         (interpolate_trigger_get_string_value_array):
7723         Add support for retrieving value arrays when using the trigger
7724         interpolation mode. 
7725
7726 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
7727
7728         * libs/gst/controller/gstcontroller.c:
7729         (gst_controller_get_value_array):
7730         * libs/gst/controller/gstcontroller.h:
7731         Clarify the docs of gst_controller_get_value_array(): The array where
7732         the values should be written to must be allocated as there seems to be
7733         no way to get the size of a random GType. This doesn't change any
7734         behaviour. Also fix some typos all over the place and remove an unused,
7735         commented function that is not necessary as g_object_set() could be
7736         used instead.
7737         * tests/check/libs/controller.c: (GST_START_TEST),
7738         (gst_controller_suite):
7739         Add unit test for gst_controller_get_value_array().
7740
7741 2007-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
7742
7743         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
7744
7745         Disable part of the gst_buffer_try_new_and_alloc test, because
7746         it can happily succeed on 64-bit systems where there's more address
7747         space available.
7748
7749 2007-05-21  Sebastian Dröge  <slomo@circular-chaos.org>
7750
7751         * tests/check/gst/gstpad.c: (GST_START_TEST), (gst_pad_suite):
7752         Add unit test for the improved caps checking from bug #421543.
7753
7754 2007-05-21  Wim Taymans  <wim@fluendo.com>
7755
7756         * docs/design/part-synchronisation.txt:
7757         Small addition.
7758
7759         * gst/gstbin.c: (gst_bin_query):
7760         * plugins/elements/gstqueue.c: (apply_segment):
7761         Improve debugging.
7762
7763         * gst/gstmessage.h:
7764         Improve docs.
7765
7766 2007-05-21  Wim Taymans  <wim@fluendo.com>
7767
7768         * gst/gstpad.c: (gst_pad_get_caps_unlocked),
7769         (gst_pad_acceptcaps_default), (gst_pad_configure_sink),
7770         (gst_pad_configure_src):
7771         Added simple version of improved caps checking. It was previously
7772         assumed that a setcaps function would check the validity of the caps but
7773         people prefer us to check caps against the template automatically. 
7774         Fixes #421543.
7775
7776 2007-05-21  Wim Taymans  <wim@fluendo.com>
7777
7778         * libs/gst/base/gstbasetransform.h:
7779         Fix macro for locking/unlocking the transform lock.
7780
7781 2007-05-19  Tim-Philipp Müller  <tim at centricular dot net>
7782
7783         * docs/plugins/tmpl/.cvsignore:
7784           Ignore more.
7785
7786 2007-05-18  Edward Hervey  <edward@fluendo.com>
7787
7788         * plugins/elements/gstqueue.c: (gst_queue_loop):
7789         Hello, I am Mr Taymans' personal debugger. Today I will introduce a fix
7790         for the subtle art of warning a potentially blocking thread that it
7791         should check the source pad return value, and relay the information
7792         upstream.
7793
7794 2007-05-18  Edward Hervey  <edward@fluendo.com>
7795
7796         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event):
7797         Release the queue lock !
7798
7799 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
7800
7801         * docs/libs/gstreamer-libs-sections.txt:
7802         Add the two new controller functions to the appropiate places.
7803
7804 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
7805
7806         reviewed by: Stefan Kost <ensonic@users.sf.net>
7807
7808         * libs/gst/controller/gstcontroller.c:
7809         (gst_controller_suggest_next_sync), (gst_controller_sync_values),
7810         (_gst_controller_get_property), (_gst_controller_set_property),
7811         (_gst_controller_init), (_gst_controller_class_init):
7812         * libs/gst/controller/gstcontroller.h:
7813         * libs/gst/controller/gsthelper.c: (gst_object_suggest_next_sync),
7814         (gst_object_get_control_rate), (gst_object_set_control_rate):
7815         API: gst_controller_suggest_next_sync(), gst_object_suggest_next_sync()
7816         Add API that provides sync suggestion timestamps for elements that
7817         call gst_object_sync_values() from which those elements can subdivide
7818         their processing loop to get the best results for the controlled
7819         properties. For now it just suggests last_sync + control_rate as
7820         new timestamp but this will be improved in the future.
7821
7822         While doing that change the control-rate property to a GstClockTime
7823         from guint and change it's meaning from samples to nanoseconds as
7824         the GstController doesn't know anything about sampling rate. Strictly
7825         speaking this breaks ABI but as the control-rate property didn't do
7826         anything in the past and as such couldn't be used this should be no
7827         problem.        
7828
7829 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
7830
7831         reviewed by: Stefan Kost <ensonic@users.sf.net>
7832
7833         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
7834         (gst_controller_unset_all):
7835         * libs/gst/controller/gstcontrollerprivate.h:
7836         * libs/gst/controller/gstinterpolation.c:
7837         (gst_controlled_property_find_control_point_node):
7838         Save last synced value from the list to continue searching from there
7839         in future syncs. This speeds everything up a bit.
7840         
7841 2007-05-17  Sebastian Dröge  <slomo@circular-chaos.org>
7842
7843         reviewed by: Stefan Kost <ensonic@users.sf.net>
7844
7845         * libs/gst/controller/gstcontroller.c: (gst_control_point_compare),
7846         (gst_control_point_find), (gst_controlled_property_new),
7847         (gst_control_point_free), (gst_controlled_property_free),
7848         (gst_controller_set), (gst_controller_set_from_list),
7849         (gst_controller_unset), (gst_controller_unset_all),
7850         (gst_controller_sync_values):
7851         * libs/gst/controller/gstcontroller.h:
7852         * libs/gst/controller/gstcontrollerprivate.h:
7853         * libs/gst/controller/gstinterpolation.c:
7854         (gst_controlled_property_find_control_point_node),
7855         (interpolate_none_get), (interpolate_trigger_get):
7856         Add a new private GstControlPoint struct which "inherits" from
7857         GstTimedValue to allow different interpolators to store internal
7858         values next to each control point. From the outside everything is
7859         still a GstControlPoint so we don't loose binary compatibility.
7860         Also fixup all the GValue handling to not leak GValues or list nodes.
7861         * tests/check/libs/controller.c: (GST_START_TEST):
7862         Free the list nodes and GValues in the controller_misc test.
7863
7864 2007-05-17  Edward Hervey  <edward@fluendo.com>
7865
7866         * gst/gstsegment.c:
7867         Small doc fix.
7868
7869 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
7870
7871         * gst/gstplugin.c: (gst_plugin_load_file):
7872           If we fail to load a plugin because of unresolved symbols or missing
7873           libraries and spew a warning to stderr, we may just as well mention
7874           which plugin it was that failed to load.
7875
7876 2007-05-13  David Schleef  <ds@schleef.org>
7877
7878         * docs/Makefile.am: the gtk-doc makefile snippet correctly
7879           handles the case when ENABLE_GTK_DOC is false, and installs
7880           the prebuilt documentation.  So gtk-doc subdirs are 
7881           unconditionally enabled.  Fixes: #349099.
7882
7883 2007-05-13  David Schleef  <ds@schleef.org>
7884
7885         * gst/gstutils.h: Reword some documentation.
7886
7887 2007-05-12  David Schleef  <ds@schleef.org>
7888
7889         * gst/gstplugin.c: gst_plugin_register_func() doesn't actually
7890           do anything with the passed "module" parameter, so remove it.
7891           Allows removal of additional vestigal code.
7892
7893 2007-05-12  David Schleef  <ds@schleef.org>
7894
7895         * gst/gstplugin.c:
7896           Using sigaction should depend on HAVE_SIGACTION, not HAVE_WIN32.
7897           Switch to using g_stat() because it's more portable.
7898
7899 2007-05-12  David Schleef  <ds@schleef.org>
7900
7901         * gst/gst.c:
7902           Add GST_DISABLE_OPTION_PARSING, in order to disable option
7903           parsing for embedded systems.
7904         * gst/gstelementfactory.c:
7905           Allow gst_element_register() to be called with plugin==NULL.
7906           Did nobody notice that static elements were broken?
7907
7908 2007-05-12  Wim Taymans  <wim@fluendo.com>
7909
7910         * tools/gst-launch.c: (event_loop):
7911         Give more interesting info when buffering starts and stops.
7912         Fix case where buffering starts but we fail to update the buffering flag
7913         because the target state is not PLAYING.
7914
7915 2007-05-12  Wim Taymans  <wim@fluendo.com>
7916
7917         * plugins/elements/gstqueue.c: (gst_queue_init),
7918         (gst_queue_finalize), (update_time_level), (apply_segment),
7919         (apply_buffer), (gst_queue_locked_flush),
7920         (gst_queue_locked_enqueue), (gst_queue_locked_dequeue),
7921         (gst_queue_handle_sink_event), (gst_queue_chain),
7922         (gst_queue_push_one), (gst_queue_loop):
7923         * plugins/elements/gstqueue.h:
7924         Refactor an cleanup queue a bit.
7925         Do better time level calculations that also work when the srcpad is not
7926         yet running.
7927         Remove some unneeded debug lines.
7928
7929         * tests/check/elements/queue.c: (GST_START_TEST), (queue_suite):
7930         Added testcase for time level measurement.
7931         Try to make some stuff more racefree.
7932
7933 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
7934
7935         * gst/gsturi.c: (gst_element_make_from_uri):
7936           Don't leak plugin feature.
7937
7938         * tests/check/Makefile.am:
7939         * tests/check/gst/.cvsignore:
7940         * tests/check/gst/gsturi.c: (GST_START_TEST), (gst_uri_suite):
7941           Add brain-dead unit test.
7942
7943 2007-05-11  Tim-Philipp Müller  <tim at centricular dot net>
7944
7945         Patch by: Jeroen Wouters <woutersj at gmail com>
7946
7947         * gst/gsturi.c: (gst_uri_get_protocol), (search_by_entry):
7948           Treat protocol strings in a case-insensitive way (#437563).
7949
7950 2007-05-11  Michael Smith <msmith@fluendo.com>
7951
7952         * gst/gstplugin.c: (gst_plugin_load_file):
7953         * gst/gstregistry.c: (gst_registry_scan_path_level):
7954           Don't print a g_warning for any failure to load a shared object.
7955           Instead, push this down into gstplugin.c, and warn _only_ if we
7956           failed to open the module (i.e. failure to link).
7957           Avoids warnings on normal, working, non-plugin .so files.
7958
7959 2007-05-11  Stefan Kost  <ensonic@users.sf.net>
7960
7961         * gst/gstplugin.c (gst_plugin_load_file):
7962         * gst/gstregistry.c (GST_CAT_DEFAULT,
7963           gst_registry_lookup_feature_locked, gst_registry_scan_path_level):
7964           Print a g_warning if there was an error when loading a plugins during
7965           registry scan. The shuld help beginners starting with gst-plugin
7966           template.
7967
7968 2007-05-10  Wim Taymans  <wim@fluendo.com>
7969
7970         * plugins/elements/gstqueue.c: (gst_queue_class_init),
7971         (update_time_level), (gst_queue_locked_flush),
7972         (gst_queue_handle_sink_event), (gst_queue_chain),
7973         (gst_queue_push_one), (gst_queue_loop):
7974         * plugins/elements/gstqueue.h:
7975         Be smarter when calculating the current amount of data in the queue by
7976         measuring the difference between start and end timestamps (in running
7977         time) inside the queue. Fixes #432876.
7978         API: GstQueue::pushing to notify elements that we are pushing data again
7979         since the running signal is rather broken for this purpose.
7980
7981 2007-05-10  Stefan Kost  <ensonic@users.sf.net>
7982
7983         * plugins/elements/gstqueue.c (_do_init, gst_queue_signals,
7984           gst_queue_base_init, gst_queue_init):
7985           use GST_BOILERPLATE
7986
7987 2007-05-09  Sebastien Moutte  <sebastien@moutte.net>
7988
7989         * win32/common/libgstreamer.def:
7990         Add new exported functions.
7991         * win32/vs6/grammar.dsp:
7992         Use grammar pre-generated files.
7993
7994 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
7995
7996         Based on patch by: Peter Kjellerstedt  <pkj at axis com>
7997
7998         * gst/Makefile.am:
7999         * gst/gstparse.c: (gst_parse_launchv), (gst_parse_launch):
8000         * gst/gstparse.h:
8001         * gst/gstutils.c: (gst_parse_bin_from_description):
8002         * gst/gstutils.h:
8003           Maintain API and ABI when --disable-parse is used. Now that
8004           we have an appropriate error code, we can just return NULL and the
8005           appropriate error when gst_parse_launch() is used despite it having
8006           been disabled (#342564).
8007
8008         * tests/check/Makefile.am:
8009         * tests/check/pipelines/.cvsignore:
8010         * tests/check/pipelines/parse-disabled.c:
8011           Make sure these functions exist and return NULL plus a GError when
8012           --disable-parse is used.
8013
8014 2007-05-09  Tim-Philipp Müller  <tim at centricular dot net>
8015
8016         * tests/benchmarks/complexity.c: (main):
8017         * tests/benchmarks/mass-elements.c: (main):
8018           Set a good example and don't leak messages.
8019
8020 2007-05-06  Stefan Kost  <ensonic@users.sf.net>
8021
8022         * docs/gst/Makefile.am:
8023         * docs/libs/Makefile.am:
8024           Correct fixxrefs options.
8025
8026         * docs/plugins/Makefile.am:
8027         * docs/plugins/gstreamer-plugins-docs.sgml:
8028         * docs/plugins/gstreamer-plugins-sections.txt:
8029         * plugins/elements/Makefile.am:
8030         * plugins/elements/gstcapsfilter.c (gst_capsfilter_details):
8031         * plugins/elements/gstcapsfilter.h (__GST_CAPSFILTER_H__,
8032           GST_TYPE_CAPSFILTER, GST_CAPSFILTER, GST_CAPSFILTER_CLASS,
8033           GST_IS_CAPSFILTER, GST_IS_CAPSFILTER_CLASS, GstCapsFilter,
8034           GstCapsFilterClass, _GstCapsFilter, trans, filter_caps,
8035           _GstCapsFilterClass, trans_class):
8036         * plugins/elements/gstelements.c (name, rank, type, _elements):
8037         * plugins/elements/gstidentity.c
8038           (gst_identity_check_imperfect_timestamp,
8039           gst_identity_check_imperfect_offset):
8040           Document capsfilter and add doc-blurb to identity.
8041
8042 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
8043
8044         * libs/gst/controller/gstcontroller.c:
8045         (gst_controlled_property_set_interpolation_mode):
8046         * libs/gst/controller/gstinterpolation.c:
8047           Don't crash if someone tries to set an interpolation mode that
8048           is invalid or that isn't supported yet. Fixes #422295.
8049
8050         * tests/check/libs/controller.c: (GST_START_TEST),
8051         (gst_controller_suite):
8052           Add a test case for the above.
8053
8054 2007-05-03  Edward Hervey  <edward@fluendo.com>
8055
8056         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
8057         Properly set the last_stop position on GstSegment. This will only happen
8058         if there is a buffer to push out.
8059
8060 2007-05-03  Wim Taymans  <wim@fluendo.com>
8061
8062         * libs/gst/base/gstbasetransform.c:
8063         (gst_base_transform_buffer_alloc):
8064         always_in_place does not mean that the sink and source caps are the
8065         same! Make sure we don't blindly proxy the buffer_alloc in this case.
8066
8067 2007-05-03  Wim Taymans  <wim@fluendo.com>
8068
8069         * docs/libs/gstreamer-libs-sections.txt:
8070         * libs/gst/base/gstbasesrc.c: (gst_base_src_query_latency),
8071         (gst_base_src_default_query), (gst_base_src_get_range):
8072         * libs/gst/base/gstbasesrc.h:
8073         API: gst_base_src_query_latency(). Added method so that subclasses can
8074         easily get the latency values of the base source class.
8075
8076 2007-05-02  Zaheer Abbas Merali  <<zaheerabbas at merali dot org>>
8077
8078         * tools/gst-inspect.c (print_implementation_info):
8079         Remove 0.8 cruft.
8080
8081 2007-05-02  Tim-Philipp Müller  <tim at centricular dot net>
8082
8083         * tools/Makefile.am:
8084         * tools/gst-launch.1.in:
8085           Don't create a customised man page based on the host architecture,
8086           describe the default registry path generically. That way the man
8087           page is the same for all architectures and packagers have one
8088           multilib issue less to deal with. Fixes #434926.
8089
8090 2007-05-02  Wim Taymans  <wim@fluendo.com>
8091
8092         * gst/gstpad.c:
8093         Fix documentation as spotted by rg on IRC. 
8094
8095 2007-04-29  Stefan Kost  <ensonic@users.sf.net>
8096
8097         * gst/gstutils.c:
8098           Improve docs for gst_element_{link,unlink}.
8099
8100 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
8101
8102         * docs/design/part-events.txt:
8103         * docs/design/part-overview.txt:
8104         * gst/gstevent.c:
8105         * gst/gsturi.c:
8106         * gst/gsturi.h:
8107         * libs/gst/base/gstbasesink.c:
8108           Typo fixes; minor docs addition.
8109
8110 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
8111
8112         * docs/gst/gstreamer-sections.txt:
8113         * gst/gsturi.c: (get_element_factories_from_uri_protocol),
8114         (gst_uri_protocol_is_supported), (gst_element_make_from_uri):
8115         * gst/gsturi.h:
8116         API: Add gst_uri_protocol_is_supported(), which checks if a sink
8117         or src that supports a given URI protocol exists.
8118
8119 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
8120
8121         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
8122         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
8123         Set the location to NULL if "file://" is set as URI. Otherwise
8124         some random previous URI would still be set if "file://" is
8125         set on an already used filesink/filesrc.
8126
8127 2007-04-27  Sebastian Dröge  <slomo@circular-chaos.org>
8128
8129         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
8130         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
8131         Special case the "file://" URI as as this is used by some
8132         applications to test with gst_element_make_from_uri if there's
8133         an element that supports the URI protocol.
8134         Also move the g_path_is_absolute() check for the location part
8135         of the URI to also check this for "file://localhost/bla" URIs.
8136
8137 2007-04-26  Tim-Philipp Müller  <tim at centricular dot net>
8138
8139         * docs/gst/gstreamer-sections.txt:
8140         * gst/gstbuffer.c: (gst_buffer_try_new_and_alloc):
8141         * gst/gstbuffer.h:
8142         * tests/check/gst/gstbuffer.c: (GST_START_TEST),
8143         (gst_buffer_suite):
8144           API: add gst_buffer_try_new_and_alloc() plus unit test (#431940).
8145
8146 2007-04-26  Stefan Kost  <ensonic@users.sf.net>
8147
8148         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache),
8149         (gst_registry_binary_load_pad_template),
8150         (gst_registry_binary_load_plugin),
8151         (gst_registry_binary_read_cache):
8152         * gst/gstregistrybinary.h:
8153           Implement no-mmap alternative for registry reading. Do code cleanups.
8154           Add more comments about avoiding strdups for all text data. Comments
8155           welcome.
8156
8157 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
8158
8159         * gst/gstregistrybinary.h (GstBinaryPluginElement,
8160           GstBinaryPluginFeature, _GstBinaryElementFactory, plugin_feature,
8161           GstBinaryElementFactory, _GstBinaryTypeFindFactory, plugin_feature):
8162           Comment structs and reformat to fix the build (that stuff should go
8163           into a priv. header).
8164
8165 2007-04-25  Stefan Kost  <ensonic@users.sf.net>
8166
8167         * gst/gstregistrybinary.c: (gst_registry_binary_save_feature),
8168         (gst_registry_binary_load_feature):
8169         * gst/gstregistrybinary.h:
8170           Refactor so that we can implement multiple features. Add support for
8171           TypeFindFactory features.
8172
8173 2007-04-24  Stefan Kost  <ensonic@users.sf.net>
8174
8175         Patch by: Peter Kjellerstedt <Peter.Kjellerstedt@axis.com>
8176
8177         * configure.ac:
8178           Fix AM_CONDITIONAL(GST_DISABLE_GST_DEBUG,...) and update comment.
8179
8180 2007-04-23  Stefan Kost  <ensonic@users.sf.net>
8181
8182         * gst/gstbin.c: (gst_bin_element_set_state),
8183         (iterator_activate_fold_with_resync), (gst_bin_continue_func),
8184         (bin_handle_async_done), (gst_bin_handle_message_func):
8185           Fix build with --gst-disable-gst-debug
8186
8187 2007-04-21  Tim-Philipp Müller  <tim at centricular dot net>
8188
8189         * libs/gst/base/gstbasetransform.c: (gst_base_transform_activate):
8190           Make sure streaming has finished before calling the ::stop() vfunc,
8191           since that vfunc might clear state which is being used in the
8192           streaming thread. This fixes a race that caused crashes in
8193           audioresample when shutting down a pipeline (#420106).
8194
8195 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
8196
8197         * docs/gst/gstreamer-sections.txt:
8198           That was one byte missing.
8199
8200 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
8201
8202         * configure.ac:
8203         * docs/gst/gstreamer-sections.txt:
8204         * gst/Makefile.am:
8205         * gst/gstconfig.h.in:
8206         * gst/gstobject.c: (gst_object_class_init),
8207         (gst_signal_object_class_init):
8208         * gst/gstobject.h:
8209           2nd attempt to have a xml-less build as a joined effort of #413123
8210           and #421480.
8211
8212 2007-04-20  Stefan Kost  <ensonic@users.sf.net>
8213
8214         * docs/design/draft-tagreading.txt:
8215           Added open issues/thoughts to draft.
8216
8217 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
8218
8219         * gst/parse/grammar.tab.pre.c:
8220         * gst/parse/grammar.tab.pre.h:
8221         * gst/parse/lex._gst_parse_yy.pre.c:
8222         Update the prebuild parser sources.
8223
8224 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
8225
8226         * gst/parse/Makefile.am:
8227         And now fix the building of the flex sources. Now everything should
8228         work as expected.
8229
8230 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
8231
8232         * gst/parse/Makefile.am:
8233         Now hopefully fix the build failures by setting proper rule
8234         dependencies and moving instead of copying.
8235
8236 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
8237
8238         * tests/benchmarks/complexity.gnuplot:
8239         * tests/benchmarks/complexity.scm:
8240         * tests/benchmarks/mass-elements.gnuplot:
8241         * tests/benchmarks/mass-elements.scm:
8242           Total licensification.
8243
8244 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
8245
8246         * gst/parse/Makefile.am:
8247           Fix the build by correcting the rule that gave wrong files to flex.
8248
8249 2007-04-19  Stefan Kost  <ensonic@users.sf.net>
8250
8251         * tests/benchmarks/complexity.c:
8252         * tests/benchmarks/mass-elements.c:
8253           Change licence to LGPL as granted by Benjamin and Andy.
8254
8255 2007-04-19  Sebastian Dröge  <slomo@circular-chaos.org>
8256
8257         * gst/parse/Makefile.am:
8258         Add correct grammar.tab.h dependency if compiling without new enough
8259         flex. Fixes #431150.
8260
8261 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
8262
8263         * gst/parse/Makefile.am:
8264         Fix typo and use outdated sources if the flex/bison sources are newer
8265         than the pregenerated ones but flex is too old. Print a warning in
8266         that case. This should fix the build on the build bot.
8267
8268 2007-04-18  Sebastian Dröge  <slomo@circular-chaos.org>
8269
8270         Patch by: Marc-Andre Lureau <marcandre dot lureau at gmail dot com>
8271         * gst/parse/Makefile.am:
8272         * gst/parse/grammar.y:
8273         * gst/parse/parse.l:
8274         Make the parser reentrant and recursively callable. This requires flex
8275         >= 2.5.31, for older versions pregenerated sources are used as we
8276         can't bump the build dependency. Finally fixes #349180.
8277
8278         * gst/gstparse.c: (gst_parse_launch):
8279         Drop the HAVE_MT_SAVE_FLEX #ifdefs as we always use a new enough flex
8280         now anyway.
8281
8282         * docs/gst/Makefile.am:
8283         * docs/gst/Makefile.am:
8284         * gst/parse/grammar.tab.pre.c: (__gst_parse_strdup),
8285         (__gst_parse_strfree), (__gst_parse_link_new),
8286         (__gst_parse_link_free), (__gst_parse_chain_new),
8287         (__gst_parse_chain_free), (SET_ERROR), (YYPRINTF),
8288         (gst_parse_element_set), (gst_parse_free_link),
8289         (gst_parse_found_pad), (gst_parse_perform_delayed_link),
8290         (gst_parse_perform_link), (yytnamerr), (yysyntax_error), (yyerror),
8291         (_gst_parse_launch):
8292         * gst/parse/grammar.tab.pre.h:
8293         * gst/parse/lex._gst_parse_yy.pre.c: (PRINT), (yy_get_next_buffer),
8294         (yy_get_previous_state), (yy_try_NUL_trans), (input),
8295         (_gst_parse_yyrestart), (_gst_parse_yy_switch_to_buffer),
8296         (_gst_parse_yy_load_buffer_state), (_gst_parse_yy_create_buffer),
8297         (_gst_parse_yy_delete_buffer), (_gst_parse_yy_init_buffer),
8298         (_gst_parse_yy_flush_buffer), (_gst_parse_yypush_buffer_state),
8299         (_gst_parse_yypop_buffer_state),
8300         (_gst_parse_yyensure_buffer_stack), (_gst_parse_yy_scan_buffer),
8301         (_gst_parse_yy_scan_string), (_gst_parse_yy_scan_bytes),
8302         (yy_fatal_error), (_gst_parse_yyget_extra),
8303         (_gst_parse_yyget_lineno), (_gst_parse_yyget_column),
8304         (_gst_parse_yyget_in), (_gst_parse_yyget_out),
8305         (_gst_parse_yyget_leng), (_gst_parse_yyget_text),
8306         (_gst_parse_yyset_extra), (_gst_parse_yyset_lineno),
8307         (_gst_parse_yyset_column), (_gst_parse_yyset_in),
8308         (_gst_parse_yyset_out), (_gst_parse_yyget_debug),
8309         (_gst_parse_yyset_debug), (_gst_parse_yyget_lval),
8310         (_gst_parse_yyset_lval), (_gst_parse_yylex_init),
8311         (yy_init_globals), (_gst_parse_yylex_destroy), (yy_flex_strncpy),
8312         (yy_flex_strlen), (_gst_parse_yyalloc), (_gst_parse_yyrealloc),
8313         (_gst_parse_yyfree):
8314         If the installed flex version is too old use pre-generated parser
8315         sources. These pre-generated parser sources are always updated when
8316         the actual flex/bison sources change but require everybody who wants
8317         to change something in the parser to have flex >= 2.5.31 installed.
8318
8319 2007-04-18  Stefan Kost  <ensonic@users.sf.net>
8320
8321         * common/m4/gst-gettext.m4:
8322         * gst/gst-i18n-lib.h:
8323           Make --disable-nls to work
8324
8325 2007-04-17  Wim Taymans  <wim@fluendo.com>
8326
8327         * gst/gstconfig.h.in:
8328         Revert previous change that broke the build.
8329
8330 2007-04-17  Stefan Kost  <ensonic@users.sf.net>
8331
8332         * configure.ac:
8333         * gst/Makefile.am:
8334         * gst/gstconfig.h.in:
8335           Drop libxml2 dependency when building with 
8336           --enable-binary-registry --disable-loadsave
8337
8338 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
8339
8340         * gst/gstregistrybinary.c: (gst_registry_binary_write_cache),
8341         (gst_registry_binary_read_cache):
8342         * gst/gstregistrybinary.h:
8343           Remove unnecessary <sys/mman.h> include which broke the win32 build
8344           with MingW; move includes from header file to .c file, even if the
8345           header file isn't installed; use g_strerror() where UTF-8 strings
8346           are expected, such as in GST_DEBUG messages.
8347
8348 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8349
8350         * docs/libs/gstreamer-libs-sections.txt:
8351         Remove bogus addition for API I didn't end up keeping.
8352
8353         * libs/gst/base/gstbasesrc.h:
8354         Mention Since: 0.10.13 in the documentation.
8355
8356         Add the API keyword to the previous ChangeLog entry.
8357
8358 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8359
8360         * docs/libs/gstreamer-libs-sections.txt:
8361         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
8362         (gst_base_src_default_prepare_seek_segment),
8363         (gst_base_src_prepare_seek_segment), (gst_base_src_perform_seek):
8364         * libs/gst/base/gstbasesrc.h:
8365         Allow basesrc derived classes to execute seeks in other formats
8366         by providing a prepare_seek_segment vmethod. Sub-classes can choose
8367         to prepare the GstSegment in any format that their perform_seek method
8368         will be able to understand. The default implementation provides the
8369         old behaviour of attempting to convert the seek offsets to the 
8370         configured native format.
8371
8372         API: basesrc::prepare_seek_segment vmethod.
8373
8374 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8375
8376         * gst/gstelement.c: (gst_element_get_state_func):
8377         Don't output the same debug statement twice.
8378
8379         * libs/gst/base/gstadapter.c: (gst_adapter_try_to_merge_up),
8380         (gst_adapter_peek), (gst_adapter_take_buffer):
8381         Optimise the case where we have buffers at the head of the queue that
8382         can be joined quickly (because they're contiguous sub-buffers) by
8383         merging them together rather than copying data out into new memory.
8384
8385         * gst/parse/grammar.y:
8386         * tests/check/pipelines/parse-launch.c:
8387         Fix a leak in an error path for parse_launch, and add a check 
8388         for it to the testsuite.
8389
8390 2007-04-13  Jan Schmidt  <thaytan@mad.scientist.com>
8391
8392         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_release_pad):
8393           Don't deadlock when releasing a pad - gst_pad_set_active may try
8394           and take the multiqueue lock too.
8395
8396 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
8397
8398         * gst/gsterror.c: (_gst_core_errors_init):
8399         * gst/gsterror.h:
8400           API: add GST_CORE_ERROR_DISABLED (#392804).
8401
8402 2007-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
8403
8404         * docs/faq/gst-uninstalled:
8405           don't get empty paths on the PATH variables
8406         * gst/gstpad.c (gst_pad_is_active, gst_pad_set_blocked_async):
8407           Don't format for the uncommon terminal width of 84 characters.
8408
8409 2007-04-06  Wim Taymans  <wim@fluendo.com>
8410
8411         * gst/gstpipeline.c: (reset_stream_time),
8412         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time):
8413         Only try to select a different pipeline clock when we went back to
8414         PAUSED and not when we merely got flushed.
8415
8416 2007-04-05  Michael Smith  <msmith@fluendo.com>
8417
8418         * tools/gst-launch.1.in:
8419           fractions are better supported in gstreamer than ractions, so
8420           suggest using those.
8421
8422 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8423
8424         Submitted by: Mogens Jaeger <mogens@jaeger.tf>
8425
8426         * po/LINGUAS:
8427         * po/da.po:
8428           Added Danish translation.
8429
8430 2007-04-05  Wim Taymans  <wim@fluendo.com>
8431
8432         * libs/gst/base/gstbasesink.c:
8433         (gst_base_sink_queue_object_unlocked), (gst_base_sink_event):
8434         Fix leak caused when refusing newsegment after EOS.
8435
8436         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init),
8437         (gst_fake_sink_init), (gst_fake_sink_set_property),
8438         (gst_fake_sink_get_property), (gst_fake_sink_preroll),
8439         (gst_fake_sink_render), (gst_fake_sink_change_state):
8440         * plugins/elements/gstfakesink.h:
8441         Add num-buffers property to make the element generate EOS after a
8442         configurable amount of buffers.
8443         API: fakesink::num-buffers property.
8444
8445         * tests/check/elements/fakesink.c: (GST_START_TEST),
8446         (fakesink_suite):
8447         Fix GstBus leak in test.
8448         Test for fakesink num-buffers.
8449
8450 2007-04-05  Wim Taymans  <wim@fluendo.com>
8451
8452         * libs/gst/base/gstbasesink.c:
8453         (gst_base_sink_queue_object_unlocked), (gst_base_sink_event),
8454         (gst_base_sink_change_state):
8455         Don't accept anything after an EOS, return UNEXPECTED instead.
8456
8457         * tests/check/elements/fakesink.c: (GST_START_TEST),
8458         (fakesink_suite):
8459         Unit test for new EOS behaviour.
8460
8461 2007-04-05  Wim Taymans  <wim@fluendo.com>
8462
8463         * gst/gstelement.c: (gst_element_get_request_pad):
8464         Make padtemplates also work when they don't contain %s or %d.
8465
8466 2007-04-05  Wim Taymans  <wim@fluendo.com>
8467
8468         * docs/gst/gstreamer-sections.txt:
8469         * gst/gstclock.c: (gst_clock_adjust_unlocked),
8470         (gst_clock_unadjust_unlocked), (gst_clock_set_calibration):
8471         * gst/gstclock.h:
8472         Improve _adjust_unlocked() so that it overflows less.
8473         Add gst_clock_unadjust_unlocked to convert from external time to
8474         internal time based on calibration.
8475         Add some more debug.
8476         API: GstClock::gst_clock_unadjust_unlocked()
8477
8478 2007-04-03  Wim Taymans  <wim@fluendo.com>
8479
8480         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
8481
8482         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_release_pad):
8483         Deactivate pads and free GstSingleQueue with gst_single_queue_free()
8484         when releasing sink pad. Fixes #425400.
8485
8486 2007-04-02  Stefan Kost  <ensonic@users.sf.net>
8487
8488         * docs/random/ensonic/dynlink.txt:
8489           More work on proposal for new core api.
8490
8491         * docs/libs/gstreamer-libs-sections.txt:
8492         * libs/gst/base/gstbasetransform.h:
8493           API: GST_BASE_TRANSFORM_LOCK/UNLOCK added
8494           
8495         * libs/gst/controller/gstcontroller.c:
8496         (on_object_controlled_property_changed),
8497         (gst_controller_sync_values),
8498         (gst_controller_set_interpolation_mode):
8499         * libs/gst/controller/gstcontroller.h:
8500           Less verbose logging add docs for unimplemented parts and correctly
8501           return when using unavailable parts.
8502
8503 2007-03-29  Jan Schmidt  <thaytan@mad.scientist.com>
8504
8505         * gst/gstclock.c: (gst_clock_set_master), (do_linear_regression):
8506         Move all the debug to the CLOCK category, and associate it with
8507         the clock object.
8508
8509 2007-03-29  Jan Schmidt  <thaytan@mad.scientist.com>
8510
8511         * libs/gst/base/gstadapter.c: (gst_adapter_take_buffer):
8512         Make take_buffer a bit quicker by removing redundant checks
8513         caused by calling gst_adapter_take.
8514
8515 2007-03-28  Tim-Philipp Müller  <tim at centricular dot net>
8516
8517         * plugins/elements/gstmultiqueue.c: (gst_single_queue_free):
8518           Don't leak GCond.
8519
8520         * tests/check/Makefile.am:
8521         * tests/check/elements/.cvsignore:
8522         * tests/check/elements/multiqueue.c: (setup_multiqueue),
8523         (GST_START_TEST), (multiqueue_suite):
8524           Add some dead simple unit tests for the 'multiqueue' element
8525           (some bits don't work yet and are disabled for now).
8526
8527 2007-03-28  Tim-Philipp Müller  <tim at centricular dot net>
8528
8529         * gst/gstelement.c: (gst_element_get_request_pad),
8530         (gst_element_class_get_request_pad_template):
8531           Make gst_element_get_request_pad() create request pads only for
8532           request pad templates and not for, say, sometimes pad templates.
8533
8534 2007-03-28  Stefan Kost  <ensonic@users.sf.net>
8535
8536         * docs/design/draft-klass.txt:
8537           Add example that needs more thinking.
8538         
8539         * docs/design/draft-missing-plugins.txt:
8540           More thoughts about wrapper plugins.
8541         
8542         * docs/random/ensonic/embedded.txt:
8543         * docs/random/ensonic/profiling.txt:
8544           More design work.
8545
8546 2007-03-25  Wim Taymans  <wim@fluendo.com>
8547
8548         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range),
8549         (gst_base_src_loop):
8550         Only push the segment events in the PLAYING state for live sources.
8551
8552 2007-03-23  Jan Schmidt  <thaytan@mad.scientist.com>
8553
8554         * gst/gstpipeline.c: (gst_pipeline_change_state):
8555         Modify the clock distribution path in PAUSED->PLAYING so that we 
8556         never attempt to choose a new clock unless we're actually leaving
8557         the PAUSED state for the first time. This prevents choosing a
8558         different clock when the state_change gets called for a 2nd time due
8559         to some element doing an async state change.
8560
8561 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
8562
8563         * gst/gstpad.c: (gst_pad_set_caps), (gst_pad_configure_sink),
8564         (gst_pad_configure_src), (gst_pad_alloc_buffer_full),
8565         (gst_pad_chain_unchecked), (gst_pad_push):
8566         Revert last commit. This needs some more thoughts.
8567
8568 2007-03-22  Sebastian Dröge  <slomo@circular-chaos.org>
8569
8570         * gst/gstpad.c: (gst_pad_set_caps), (gst_pad_alloc_buffer_full),
8571         (gst_pad_chain_unchecked), (gst_pad_push):
8572         Check in set_caps if the caps are compatible with the pad and remove
8573         two functions that are redundant now. Fixes #421543.
8574
8575 2007-03-22  Wim Taymans  <wim@fluendo.com>
8576
8577         * tests/check/gst/gstsystemclock.c: (GST_START_TEST),
8578         (mixed_thread), (mixed_async_cb), (gst_systemclock_suite):
8579         Unref some more to make valgrind happy.
8580
8581 2007-03-22  Wim Taymans  <wim@fluendo.com>
8582
8583         * gst/gstsystemclock.c: (gst_system_clock_id_wait_jitter_unlocked),
8584         (gst_system_clock_id_wait_jitter),
8585         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
8586         Fix anoying regression that survived a few releases. When adding an
8587         async entry while blocking on a sync entry, the sync entry will unblock
8588         but still be busy, so it should continue to wait instead of returning
8589         _BUSY to the app.
8590         Add some comments here and there.
8591
8592         * tests/check/gst/gstsystemclock.c: (mixed_thread),
8593         (mixed_async_cb), (GST_START_TEST), (gst_systemclock_suite):
8594         Add testcase for this.
8595
8596 2007-03-22  Wim Taymans  <wim@fluendo.com>
8597
8598         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
8599         Handle errors from the clock sync better, only UNSCHEDULED indicates a
8600         WRONG_STATE and can silently pause the task. All other cases should
8601         error out.
8602
8603 2007-03-22  Wim Taymans  <wim@fluendo.com>
8604
8605         Patch by: Ville Syrjala <syrjala at sci dot fi>
8606
8607         * gst/gstpad.c: (gst_pad_alloc_buffer_full), (gst_pad_send_event):
8608         Fix possible deadlock if pad eventfunc is not specified.  Fixes #421177.
8609         Improve debugging.
8610
8611 2007-03-21  Michael Smith  <msmith@fluendo.com>
8612
8613         * docs/pwg/advanced-types.xml:
8614           Fix some errors in the typefinding docs pointed out on irc.
8615
8616 2007-03-21  Jan Schmidt  <thaytan@mad.scientist.com>
8617
8618         * libs/gst/base/gstbasesrc.c:
8619         Clarify FIXME comment in the face of having added unlock_stop()
8620
8621 2007-03-21  Wim Taymans  <wim@fluendo.com>
8622
8623         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_element_set_state):
8624         Prepare for release where we warn against possible app breakage in the
8625         case of live pipelines along with an env var to enable/disable live
8626         preroll mode (GST_COMPAT=[no-]live-preroll).
8627
8628 2007-03-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8629
8630         * plugins/elements/gstidentity.c (gst_identity_check_imperfect_offset):
8631         So we should use correct constants for checking for None offset.
8632
8633 2007-03-20  Wim Taymans  <wim@fluendo.com>
8634
8635         * docs/design/part-block.txt:
8636         Mention the fact that the newly switched element should be set to at
8637         least PAUSED.
8638
8639 2007-03-20  Wim Taymans  <wim@fluendo.com>
8640
8641         * gst/gst.c:
8642         Fix compilation with registry disabled as spotted by Saur.
8643
8644 2007-03-20  Wim Taymans  <wim@fluendo.com>
8645
8646         Patch by: Olivier Crete <tester at tester dot ca>
8647
8648         * gst/gstelement.c: (gst_element_sync_state_with_parent):
8649         Look at the pending state too when syncing the element state to the
8650         parent. Fixes #420133.
8651
8652 2007-03-19  Jan Schmidt  <thaytan@mad.scientist.com>
8653
8654         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_flushing),
8655         (gst_base_sink_change_state):
8656         * libs/gst/base/gstbasesink.h:
8657         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
8658         (gst_base_src_default_event), (gst_base_src_unlock_stop),
8659         (gst_base_src_deactivate):
8660         * libs/gst/base/gstbasesrc.h:
8661         Add ::unlock_stop to basesrc and basesink. This allows an opportunity
8662         for sub-classes to correctly clear any state they set trying to
8663         unlock, such as clearing out unlock commands from a command fd.
8664         API: basesrc::unlock_stop
8665         API: basesink::unlock_stop
8666
8667         * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init),
8668         (gst_fd_sink_render), (gst_fd_sink_unlock),
8669         (gst_fd_sink_unlock_stop):
8670         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init),
8671         (gst_fd_src_init), (gst_fd_src_unlock), (gst_fd_src_unlock_stop),
8672         (gst_fd_src_create), (gst_fd_src_get_size), (gst_fd_src_do_seek):
8673
8674         Implement unlock_stop in fdsrc and fdsink.
8675         Implement seeking in fdsrc when a seekable fd is passed, as in
8676         gst-launch-0.10 fdsrc ! ... ! xvimagesink < /path/to/file
8677
8678 2007-03-19  Wim Taymans  <wim@fluendo.com>
8679
8680         Patch by: Evan Nemerson <evan at coeus dash group dot com>
8681
8682         * gst/gstelement.c: (gst_element_class_init):
8683         Fix pad-added and pad-removed signal signatures so that the pad type is
8684         stated as GST_TYPE_PAD instead of G_TYPE_OBJECT. Fixes #419851.
8685
8686 2007-03-19  Wim Taymans  <wim@fluendo.com>
8687
8688         * docs/gst/gstreamer-sections.txt:
8689         Add new element field and method.
8690
8691         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
8692         (bin_remove_messages), (gst_bin_add_func), (gst_bin_remove_func),
8693         (gst_bin_recalc_state), (gst_bin_get_state_func),
8694         (gst_bin_element_set_state), (gst_bin_change_state_func),
8695         (gst_bin_continue_func), (bin_bus_handler),
8696         (bin_push_state_continue), (bin_handle_async_start),
8697         (bin_handle_async_done), (gst_bin_handle_message_func):
8698         Make async state changes a bit smarter by using new ASYNC_START and
8699         ASYNC_DONE messages. This reduces the number of times we run the state
8700         recalculation thread.
8701         Don't change state of element with a pending ASYNC_START message.
8702         Deprecate STATE_DIRTY messages.
8703         
8704         * gst/gstelement.c: (gst_element_init), (gst_element_send_event),
8705         (gst_element_get_state_func), (gst_element_continue_state),
8706         (gst_element_lost_state), (gst_element_set_state_func),
8707         (gst_element_change_state):
8708         * gst/gstelement.h:
8709         Keep the state that was last set by the app in a new element field.
8710         Don't allow state changes when handling an element event.
8711         Post ASYNC_START and ASYNC_DONE messages.
8712         Change lost_state so that we go to PAUSED and wait for the parent to set
8713         us to PLAYING again (so latency calculation can be performed)
8714         Export gst_element_change_state() method so that subclasses can use it.
8715         API: gst_element_change_state()
8716         API: GST_STATE_TARGET
8717
8718         * gst/gstpipeline.c: (gst_pipeline_class_init),
8719         (reset_stream_time), (gst_pipeline_change_state),
8720         (gst_pipeline_handle_message), (gst_pipeline_set_new_stream_time):
8721         Using the new ASYNC_START message we can reset the base_time when
8722         needed. This can then be used to implement base_time redistribution in
8723         flushing seeks so that we can remove the explicit seek handling.
8724         Perform latency query and configuration when going to PLAYING.
8725
8726         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
8727         (gst_base_sink_query), (gst_base_sink_change_state):
8728         Post new ASYNC_START/ASYNC_DONE messages.
8729
8730         * tests/check/generic/sinks.c: (GST_START_TEST):
8731         Fix test because the bin will not set the async element to PLAYING right
8732         away.
8733
8734         * tests/check/gst/gstbin.c: (pop_async_done), (GST_START_TEST):
8735         Make the message check a little stronger.
8736         Handle ASYNC messages.
8737
8738         * tests/check/pipelines/cleanup.c: (GST_START_TEST):
8739         * tests/check/pipelines/simple-launch-lines.c: (GST_START_TEST):
8740         Expect ASYNC_DONE messages.
8741
8742 2007-03-19  Wim Taymans  <wim@fluendo.com>
8743
8744         * docs/gst/gstreamer-sections.txt:
8745         * gst/gstmessage.c: (gst_message_new_async_start),
8746         (gst_message_new_async_done), (gst_message_parse_info),
8747         (gst_message_parse_async_start):
8748         * gst/gstmessage.h:
8749         Add ASYNC_START and ASYNC_DONE messages to prepare for latency
8750         support.
8751
8752 2007-03-15  Tim-Philipp Müller  <tim at centricular dot net>
8753
8754         * tools/gst-inspect.c:
8755         (print_plugin_automatic_install_info_codecs):
8756           Now that we don't check for the 'Codec' keyword any longer in the
8757           klass, we shouldn't spew a warning if the klass isn't a decoder or
8758           encoder (since it might be a Source/Network, for example).
8759
8760 2007-03-14  Tim-Philipp Müller  <tim at centricular dot net>
8761
8762         * tools/gst-inspect.c:
8763         (print_plugin_automatic_install_info_codecs):
8764           Don't require decoder/demuxer/depayloader elements or
8765           encoder/muxer/paylader elements to have 'Codec' as part of their
8766           factory class string when introspecting a plugin's capabilities.
8767           draft-klass.txt mentions that it might be removed in future, and
8768           flump3dec doesn't have it as part of its class string, so chances
8769           are others might also not have it.
8770
8771 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8772
8773         * po/af.po:
8774         * po/az.po:
8775         * po/bg.po:
8776         * po/ca.po:
8777         * po/cs.po:
8778         * po/de.po:
8779         * po/en_GB.po:
8780         * po/fr.po:
8781         * po/it.po:
8782         * po/nb.po:
8783         * po/nl.po:
8784         * po/ru.po:
8785         * po/sq.po:
8786         * po/sr.po:
8787         * po/sv.po:
8788         * po/tr.po:
8789         * po/uk.po:
8790         * po/vi.po:
8791         * po/zh_CN.po:
8792         * po/zh_TW.po:
8793           Update translations from translation project
8794
8795 2007-03-14  Stefan Kost  <ensonic@users.sf.net>
8796
8797         * gst/gstchildproxy.c: (gst_child_proxy_get_property),
8798         (gst_child_proxy_set_property):
8799           Invert precondition check to be alike the ones in the mimiced gobject
8800           api.
8801
8802 2007-03-13  Stefan Kost  <ensonic@users.sf.net>
8803
8804         * docs/design/draft-tagreading.txt:
8805         * docs/random/ensonic/audiobaseclasses.txt:
8806           Do some Architect work.
8807
8808         * gst/gstobject.c: (gst_object_set_name):
8809           Add a WARNING.
8810
8811         * gst/gstpad.c:
8812           Add docs that point from gst_pad_get_range to gst_pad_pull_range
8813
8814 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
8815
8816         * gst/gstsystemclock.c: (gst_system_clock_init),
8817         (gst_system_clock_start_async), (gst_system_clock_id_wait_async):
8818         Defer starting the async system clock thread until the first async
8819         wait is scheduled. Fixes #414986.
8820
8821 2007-03-12  Tim-Philipp Müller  <tim at centricular dot net>
8822
8823         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_finalize),
8824         (gst_single_queue_free):
8825           Fix small leak (free GstSingleQueue structure too, not only contents).
8826
8827 2007-03-10  Sebastien Moutte  <sebastien@moutte.net>
8828
8829         * gst/gstbin.c:(gst_bin_add):
8830         Use GST_STR_NULL to prevent NULL pointer to be passed to GST_CAT_DEBUG.
8831         * win32/common/libgstbase.def:
8832         * win32/common/libgstreamer.def:
8833         Add new exported functions.
8834
8835 2007-03-09  Wim Taymans  <wim@fluendo.com>
8836
8837         * docs/plugins/gstreamer-plugins-sections.txt:
8838         Fix GstTee docs.
8839
8840 2007-03-09  Wim Taymans  <wim@fluendo.com>
8841
8842         * docs/gst/gstreamer-sections.txt:
8843         * gst/gstbuffer.c: (gst_buffer_copy_metadata), (_gst_buffer_copy):
8844         * gst/gstbuffer.h:
8845         Add metadata copy functions. Fixes #393099.
8846         API: gst_buffer_copy_metadata()
8847
8848         * gst/gstutils.c: (gst_buffer_stamp):
8849         * libs/gst/base/gstbasetransform.c:
8850         (gst_base_transform_prepare_output_buffer):
8851         Use new metadata copy functions.
8852
8853 2007-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8854
8855         * plugins/elements/gstidentity.c: (gst_identity_class_init),
8856         (gst_identity_init), (gst_identity_check_perfect),
8857         (gst_identity_check_imperfect_timestamp),
8858         (gst_identity_check_imperfect_offset), (gst_identity_transform_ip),
8859         (gst_identity_set_property), (gst_identity_get_property):
8860         * plugins/elements/gstidentity.h:
8861         Separate out check-imperfect-timestamp and check-imperfect-offset.
8862         Put back check-perfect as it was to keep compatibility.
8863
8864 2007-03-09  Jan Schmidt  <thaytan@mad.scientist.com>
8865
8866         * gst/gstelement.c: (gst_element_dispose):
8867         There's no need to warn if VOID_PENDING is not NONE here, as
8868         long as the state is NULL it's ok, and that's checked immediately
8869         above.
8870
8871 2007-03-08  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8872
8873         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
8874         Fix check for perfect stream to ignore buffers with -1 
8875         offsets/offset ends when checking data contiguity.
8876
8877 2007-03-08  Wim Taymans  <wim@fluendo.com>
8878
8879         * tools/gst-launch.c: (event_loop):
8880         Print INFO messages.
8881
8882 2007-03-08  Wim Taymans  <wim@fluendo.com>
8883
8884         * libs/gst/base/gstbasetransform.c:
8885         (gst_base_transform_sink_eventfunc),
8886         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
8887         (gst_base_transform_activate):
8888         * libs/gst/base/gstbasetransform.h:
8889         Add support for dropping buffers with custom GstFlowReturn.
8890         Set DISCONT flags on outgoing buffers based on QoS, incomming DISCONT
8891         buffers or dropped buffers.
8892
8893         * docs/libs/gstreamer-libs-sections.txt:
8894         docs for new custom return code.
8895
8896         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
8897         Use drop support in base class to implement drop-probability.
8898
8899 2007-03-07  Tim-Philipp Müller  <tim at centricular dot net>
8900
8901         * gst/gst.c: (load_plugin_func):
8902         * gst/gstplugin.c: (gst_plugin_load_by_name), (gst_plugin_load):
8903         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
8904         * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
8905           Remove newlines at end of debug log strings.
8906
8907 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8908
8909         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
8910         Only post bus message at max, once per buffer received.
8911
8912 2007-03-07  Wim Taymans  <wim@fluendo.com>
8913
8914         * docs/design/Makefile.am:
8915         * docs/design/part-synchronisation.txt:
8916         Add doc about synchronisation
8917
8918         * docs/design/draft-latency.txt:
8919         * docs/design/part-TODO.txt:
8920         * docs/design/part-clocks.txt:
8921         * docs/design/part-events.txt:
8922         * docs/design/part-gstbus.txt:
8923         * docs/design/part-gstpipeline.txt:
8924         * docs/design/part-live-source.txt:
8925         * docs/design/part-messages.txt:
8926         * docs/design/part-overview.txt:
8927         * docs/design/part-streams.txt:
8928         * docs/design/part-trickmodes.txt:
8929         Documentation updates.
8930
8931 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
8932
8933         * gstreamer.doap:
8934         Update the doap file.
8935
8936 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8937
8938         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
8939         Rename non-perfect to imperfect for Mike and for the sanctity of the
8940         language.
8941         Also make sure bus message gets emitted for data-incontiguities.
8942
8943 2007-03-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8944
8945         * plugins/elements/gstidentity.c: (gst_identity_check_perfect),
8946         (gst_identity_start):
8947         * plugins/elements/gstidentity.h:
8948         Emit bus message if check-perfect is true and we encounter a
8949         non-perfect stream between 2 consecutive buffers.
8950         Fixes #415394.
8951
8952 2007-03-07  Jan Schmidt  <thaytan@mad.scientist.com>
8953
8954         * configure.ac:
8955         Back to CVS
8956
8957 === release 0.10.12 ===
8958
8959 2007-03-07  Jan Schmidt <thaytan@mad.scientist.com>
8960
8961         * configure.ac:
8962           releasing 0.10.12, "Inevitable Demise"
8963
8964 2007-03-01  Jan Schmidt  <thaytan@mad.scientist.com>
8965
8966         * configure.ac:
8967          Version 0.10.11.2 (0.10.12 pre-release)
8968          Bump libtool versioning.
8969
8970 2007-03-01  Stefan Kost  <ensonic@users.sf.net>
8971
8972         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
8973           Log flow-names and not numbers.
8974
8975 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
8976
8977         * configure.ac:
8978           Convert to new AG_GST style.
8979
8980 2007-02-28  Wim Taymans  <wim@fluendo.com>
8981
8982         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency):
8983         Don't unref query twice.
8984
8985 2007-02-28  Wim Taymans  <wim@fluendo.com>
8986
8987         * gst/gstvalue.c: (gst_value_transform_object_string),
8988         (_gst_value_initialize):
8989         Implement GstObject -> string transform so we print object names
8990         when serializing GValues containing GstObjects.
8991
8992 2007-02-28  Wim Taymans  <wim@fluendo.com>
8993
8994         * docs/gst/gstreamer-sections.txt:
8995         Add new stuff to docs.
8996
8997 2007-02-28  Wim Taymans  <wim@fluendo.com>
8998
8999         * libs/gst/base/gstbasesink.c: (gst_base_sink_query_latency),
9000         (gst_base_sink_queue_object_unlocked), (gst_base_sink_send_event),
9001         (gst_base_sink_change_state):
9002         Improve latency query code.
9003         Don't leak latency events.
9004
9005         * tests/check/gst/gstbin.c: (GST_START_TEST):
9006         Improve debugging.
9007
9008 2007-02-28  Wim Taymans  <wim@fluendo.com>
9009
9010         * gst/gstelement.c: (gst_element_message_full),
9011         (gst_element_get_state_func):
9012         * gst/gstelement.h:
9013         Improve docs a little. Added Since: for new macro.
9014
9015         * gst/gstobject.c: (gst_object_sink):
9016         * gst/gstpipeline.c: (gst_pipeline_change_state),
9017         (gst_pipeline_set_new_stream_time):
9018         * gst/gstpipeline.h:
9019         Improve debugging and docs.
9020
9021         * gst/gstutils.c: (gst_element_state_change_return_get_name):
9022         Improve debugging.
9023
9024 2007-02-28  Wim Taymans  <wim@fluendo.com>
9025
9026         * gst/gstelement.c: (gst_element_message_full),
9027         (gst_element_set_locked_state), (gst_element_get_state_func),
9028         (gst_element_change_state):
9029         Handle INFO messages from the GST_ELEMENT_INFO macro as well.
9030         Documentation updates.
9031         Small code cleanups.
9032
9033         * gst/gstmessage.c: (gst_message_new_info),
9034         (gst_message_parse_info):
9035         * gst/gstmessage.h:
9036         API: gst_message_new_info()
9037         API: gst_message_parse_info()
9038         Add INFO message create and parse code.
9039
9040 2007-02-28  Wim Taymans  <wim@fluendo.com>
9041
9042         * gst/gstbin.c: (bin_query_min_max_init), (bin_query_latency_fold),
9043         (bin_query_latency_done):
9044         Also report the live parameter of a latency query.
9045
9046 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
9047
9048         * tests/check/generic/states.c: (GST_START_TEST), (states_suite):
9049           Copy the current generic/states example from -base and adapt so
9050           we can use the exact same code everywhere.
9051           Check a STATES_IGNORE_ELEMENTS env var which can be used
9052           to ignore certain element factories for this test, which is
9053           what is being done in -base
9054         * tests/check/Makefile.am:
9055           Mention this environment variable.
9056
9057 2007-02-27  Wim Taymans  <wim@fluendo.com>
9058
9059         * docs/gst/gstreamer-sections.txt:
9060         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
9061         (gst_bus_timed_pop), (gst_bus_pop):
9062         * gst/gstbus.h:
9063         API: gst_bus_timed_pop()
9064         Implement gst_bus_timed_pop() to do a blocking timed wait for a
9065         message to arrive on the bus.
9066
9067         * tests/check/gst/gstbus.c: (GST_START_TEST), (pop_thread),
9068         (gst_bus_suite):
9069         Two unit tests for new _timed_pop() function.
9070
9071 2007-02-23  Wim Taymans  <wim@fluendo.com>
9072
9073         * gst/gstpipeline.c: (gst_pipeline_change_state),
9074         (gst_pipeline_provide_clock_func), (gst_pipeline_set_delay):
9075         Don't ref a NULL clock in _provide_clock_func().
9076         Don't allow an INVALID delay.
9077         Don't try to calculate base_time with an invalid start_time.
9078         Also distribute and notify a NULL clock when it was selected.
9079
9080         * tools/gst-launch.c: (event_loop):
9081         Don't crash when a NULL clock was selected in the pipeline.
9082
9083 2007-02-23  Tim-Philipp Müller  <tim at centricular dot net>
9084
9085         * docs/design/Makefile.am:
9086         * docs/design/draft-missing-plugins.txt:
9087         * docs/random/draft-missing-plugins.txt:
9088           Some small updates: update plugin system identifier prefix
9089           ('gstreamer.net' to 'gstreamer'), mention our new install
9090           API in libgstbaseutils rather than libgimme-codec, add
9091           reference to the online docs.
9092
9093 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
9094
9095         * win32/common/config.h:
9096           Pretty sure Bill never made a powerpc version.  Powerpc hackers,
9097           use moap cl ci to only check in what is mentioned in the ChangeLog.
9098
9099 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
9100
9101         * docs/gst/gstreamer-sections.txt:
9102         * gst/gstelement.h:
9103           Fix up documentation to link to the correct GstGError section.
9104           Add GST_ELEMENT_INFO macro since someone else added a Info message.
9105
9106 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
9107
9108         * tools/gst-launch.c: (event_loop):
9109           Make sure that we actually show the important message part of a
9110           warning message.
9111           No need to check if the gerror is not NULL to free; first of all
9112           g_free accepts NULL; and second the default error handler would
9113           segfault if gerror was NULL.
9114
9115 2007-02-21  Wim Taymans  <wim@fluendo.com>
9116
9117         * docs/gst/gstreamer-sections.txt:
9118         Removed docs as well.
9119
9120 2007-02-21  Wim Taymans  <wim@fluendo.com>
9121
9122         * gst/gstmessage.c: (gst_message_parse_duration):
9123         * gst/gstmessage.h:
9124         Remove new messages for release.
9125
9126 2007-02-20  Wim Taymans  <wim@fluendo.com>
9127
9128         * docs/design/part-gstghostpad.txt:
9129         * gst/gstghostpad.c: (gst_ghost_pad_dispose),
9130         (gst_ghost_pad_new_full):
9131         Make the ghostpad a parent of the internal pad again for better backward
9132         compatibility. Don't write code that relies on this however.
9133
9134         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_activate_push),
9135         (gst_pad_link_check_hierarchy):
9136         Require that parents should be GstElements in the hierarchy check.
9137
9138 2007-02-20  Wim Taymans  <wim@fluendo.com>
9139
9140         * gst/gstbin.c: (bin_replace_message), (gst_bin_add_func),
9141         (gst_bin_change_state_func), (bin_query_min_max_init),
9142         (bin_query_latency_fold), (bin_query_latency_done),
9143         (gst_bin_query):
9144         Improve debug info.
9145         Implement latency query.
9146
9147 2007-02-20  Wim Taymans  <wim@fluendo.com>
9148
9149         * docs/design/part-gstghostpad.txt:
9150         * gst/gstghostpad.c: (gst_ghost_pad_class_init),
9151         (gst_ghost_pad_internal_do_activate_push),
9152         (gst_ghost_pad_internal_do_activate_pull),
9153         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
9154         (gst_ghost_pad_do_link), (gst_ghost_pad_dispose),
9155         (gst_ghost_pad_new_full), (gst_ghost_pad_set_target):
9156         Do not set the internal pad as a parent anymore so we can avoid
9157         hierarchy linking errors when the ghostpad has no parent yet. This also
9158         fixes failed activation because of unlinked internal pads, which in
9159         turn fixes the impossible case where you have to activate a pad before
9160         you can add it to a running element.
9161         Also fix the docs.
9162
9163         * gst/gstpad.c: (pre_activate), (post_activate),
9164         (gst_pad_set_active), (gst_pad_activate_pull),
9165         (gst_pad_activate_push), (gst_pad_check_pull_range):
9166         Add some more debug info.
9167         Mark activation mode in pre_activate so that we don't try to activate in
9168         endless loops. Fixes #385084.
9169
9170 2007-02-19  Wim Taymans  <wim@fluendo.com>
9171
9172         * libs/gst/base/gstbasetransform.c: (gst_base_transform_init),
9173         (gst_base_transform_check_get_range):
9174         Implement a checkgetrange function instead of relying on the default
9175         core behaviour that assumes we can operate in pull mode if we have a
9176         getrange function. First step at fixing #385084.
9177
9178 2007-02-15  Stefan Kost  <ensonic@users.sf.net>
9179
9180         * gst/gstchildproxy.h:
9181         * libs/gst/base/gstbasesink.h:
9182         * libs/gst/base/gstbasesrc.h:
9183         * libs/gst/base/gstbasetransform.h:
9184         More docs coverage and some ChangeLog surgery (add missing names)
9185
9186 2007-02-15  Wim Taymans  <wim@fluendo.com>
9187
9188         * docs/design/part-TODO.txt:
9189         * docs/design/part-activation.txt:
9190         * docs/design/part-block.txt:
9191         * docs/design/part-buffering.txt:
9192         * docs/design/part-clocks.txt:
9193         * docs/design/part-element-source.txt:
9194         * docs/design/part-events.txt:
9195         * docs/design/part-gstbin.txt:
9196         * docs/design/part-gstbus.txt:
9197         * docs/design/part-gstpipeline.txt:
9198         * docs/design/part-live-source.txt:
9199         * docs/design/part-messages.txt:
9200         * docs/design/part-overview.txt:
9201         * docs/design/part-qos.txt:
9202         * docs/design/part-query.txt:
9203         * docs/design/part-states.txt:
9204         * docs/design/part-trickmodes.txt:
9205         Some doc updates. Start renaming from stream_time to running_time where
9206         it was used wrongly.
9207
9208 2007-02-15  Wim Taymans  <wim@fluendo.com>
9209
9210         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query):
9211         Answer LATENCY query.
9212
9213 2007-02-15  Wim Taymans  <wim@fluendo.com>
9214
9215         * tests/check/gst/gstevent.c: (event_probe), (test_event),
9216         (GST_START_TEST):
9217         Improve debugging.
9218
9219 2007-02-15  Wim Taymans  <wim@fluendo.com>
9220
9221         * gst/gstpad.c: (gst_pad_get_internal_links_default),
9222         (gst_pad_dispatcher):
9223         Improve debugging of default pad dispatcher and query functions.
9224
9225 2007-02-15  Wim Taymans  <wim@fluendo.com>
9226
9227         * docs/gst/gstreamer-sections.txt:
9228         Remove old unused method.
9229
9230 2007-02-13  Wim Taymans  <wim@fluendo.com>
9231
9232         * tests/check/gst/gstsegment.c: (GST_START_TEST):
9233         Fix check
9234
9235 2007-02-13  Wim Taymans  <wim@fluendo.com>
9236
9237         * docs/design/part-seeking.txt:
9238         Some small update.
9239
9240         * gst/gstsegment.c: (gst_segment_set_seek):
9241         Revert old bogus change that should make seeking work again.
9242
9243 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9244
9245         * docs/random/ensonic/dynlink.txt:
9246         * docs/random/ensonic/interfaces.txt:
9247         * docs/random/ensonic/receipies.txt:
9248           Possible dynamic reconnection api, plus some type fixes the other two
9249           docs.
9250
9251 2007-02-13  Sebastian Dröge  <slomo@circular-chaos.org>
9252
9253         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
9254         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
9255         Also check for an absolute path following file:// in the filesrc
9256         element. Remove redundant check and call g_path_is_absolute() on the
9257         unescaped location.
9258
9259 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
9260
9261         * docs/design/draft-klass.txt:
9262           Add existing category analysis.
9263           
9264         * gst/gstcaps.c:
9265           Fix doc example, framerate is a fraction.
9266
9267 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9268
9269         * configure.ac:
9270         * docs/gst/Makefile.am:
9271         * docs/gst/gstreamer-sections.txt:
9272         * docs/libs/Makefile.am:
9273           Erm, forgot a bunch of --extra-dir.
9274
9275 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
9276
9277         * configure.ac:
9278         * docs/gst/Makefile.am:
9279         * docs/libs/Makefile.am:
9280         * docs/plugins/Makefile.am:
9281           Add crossreferences to glib/gobject docs.
9282
9283 2007-02-12  Wim Taymans  <wim@fluendo.com>
9284
9285         * docs/design/draft-latency.txt:
9286         Small update.
9287
9288         * docs/libs/gstreamer-libs-sections.txt:
9289         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
9290         (gst_base_sink_get_latency), (gst_base_sink_query_latency),
9291         (gst_base_sink_wait_clock), (gst_base_sink_send_qos),
9292         (gst_base_sink_perform_qos), (gst_base_sink_queue_object_unlocked),
9293         (gst_base_sink_chain_unlocked), (gst_base_sink_send_event),
9294         (gst_base_sink_get_position), (gst_base_sink_query),
9295         (gst_base_sink_change_state):
9296         * libs/gst/base/gstbasesink.h:
9297         API: gst_base_sink_query_latency() to let subclasses query the upstream
9298         latency.
9299         API: gst_base_sink_get_latency() to let subclasses query the configured
9300         latency in the sink.
9301         Implement query and set latency.
9302         Update some docs.
9303         As spotted by Will Newton <will dot newton at gmail dot com>: Make sure we
9304         don't continue preroll when we are flushing. Fixes #405284.
9305
9306         * tests/check/pipelines/stress.c: (change_state_timeout),
9307         (quit_timeout), (GST_START_TEST), (stress_suite):
9308         Test for #405284.
9309
9310 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
9311
9312         Patch by: René Stadler <mail at renestadler de>
9313
9314         * docs/gst/gstreamer-sections.txt:
9315         * gst/gsttaglist.c: (_gst_tag_initialize):
9316         * gst/gsttaglist.h:
9317           API: add GST_TAG_REFERENCE_LEVEL (#403597).
9318
9319 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
9320
9321         * docs/libs/Makefile.am:
9322           Fix path to core docs.
9323
9324         * gst/gstbin.c: (gst_bin_get_by_interface),
9325         (gst_bin_iterate_all_by_interface):
9326           Refix docs by also renaming 'interface' to 'iface' in implementation.
9327
9328         * docs/gst/gstreamer-sections.txt:
9329         * gst/gstcaps.c:
9330         * gst/gstchildproxy.c: (gst_child_proxy_base_init):
9331         * gst/gstchildproxy.h:
9332         * gst/gstelementfactory.c:
9333         * gst/gstpadtemplate.h:
9334         * libs/gst/controller/gstcontroller.c:
9335         (gst_controlled_property_new):
9336           Document more.
9337
9338 2007-02-10  Sébastien Moutte  <sebastien@moutte.net>
9339
9340         * gst/gstbin.h:(gst_bin_get_by_interface),
9341         (gst_bin_iterate_all_by_interface):
9342         Replace interface parameter name by iface as interface is 
9343         a reserved keyword in Visual Studio for C++ projects so it removes
9344         a build error for application developpers using VS.
9345         * plugins/elements/gstfilesrc.c:(gst_file_src_uri_set_uri):
9346         Fix a bug on Windows in uri format check. Now the prefix checked
9347         is file:// and next we check if the path after file:// is absolute.
9348         * win32/common/libgstbase.def:
9349         * win32/common/libgstdataprotocol.def:
9350         * win32/common/libgstgstreamer.def:
9351         Add new exported functions.
9352
9353 2007-02-09  Andy Wingo  <wingo@pobox.com>
9354
9355         * tests/check/pipelines/simple-launch-lines.c
9356         (simple_launch_lines_suite, test_tee): Disable tee test until I
9357         have time to fix it :-(
9358
9359         * tests/check/Makefile.am (noinst_HEADERS): 
9360         * tests/check/libs/libsabi.c: 
9361         * tests/check/libs/struct_ppc32.h: Add ABI checks for PPC32.
9362         * tests/check/gst/gstabi.c: 
9363         * tests/check/gst/struct_ppc32.h: Add ABI checks for PPC32.
9364
9365         * tests/check/pipelines/simple-launch-lines.c (test_tee): Add
9366         tests for push and pull tee behavior.
9367
9368         * plugins/elements/gsttee.h: 
9369         * plugins/elements/gsttee.c: Describe has-sink-loop better, and
9370         mark as deprecated as well as unimplemented. It was a crack idea.
9371         Add support for tee operating in pull mode, off by default.
9372
9373         * gst/gstregistryxml.c (load_feature, load_plugin): Drop some
9374         normal-case logs down to LOG, raise errors to WARNING.
9375         (gst_registry_xml_read_cache): Don't log before calling a function
9376         that logs.
9377
9378         * gst/gstregistry.c (gst_registry_finalize): Less debug on program
9379         exit (registry finalize).
9380         (gst_registry_add_plugin, gst_registry_add_feature): No need for a
9381         DEBUG log when we emit signals that people don't even have the
9382         chance to connect to.
9383         (gst_registry_scan_path_level): Less logging in the normal case.
9384
9385 2007-02-05  Sebastian Dröge  <slomo@circular-chaos.org>
9386
9387         Patch by: Michal Benes <michal dot benes at itonis dot tv>
9388
9389         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
9390         Correctly generate EOS for non-seekable files. We don't have a total
9391         length for them and would get an unexpected end of file if we only
9392         special-cased for regular files. (Fixes: #404569)
9393
9394 2007-02-05  Sebastian Dröge  <slomo@circular-chaos.org>
9395
9396         * tests/check/elements/filesrc.c: (GST_START_TEST),
9397         (filesrc_suite):
9398         Add unit test for the GstURIHandler interface in filesrc. This also
9399         tests the newly added file://localhost/foo/bar support.
9400
9401 2007-02-04  Tim-Philipp Müller  <tim at centricular dot net>
9402
9403         * gst/gstelementfactory.h:
9404           The klass string is not a hierarchy. Add reference to the design doc
9405           for more information and common types.
9406
9407 2007-02-02  Wim Taymans  <wim@fluendo.com>
9408
9409         * gst/gstquery.c: (gst_query_new_latency):
9410         Remove old structure field.
9411
9412 2007-02-02  Stefan Kost  <ensonic@users.sf.net>
9413
9414         * tools/gst-launch.1.in:
9415           Give example for network streaming (#351998)
9416
9417 2007-02-02  Wim Taymans  <wim@fluendo.com>
9418
9419         * docs/gst/gstreamer-sections.txt:
9420         Add docs for new methods.
9421
9422         * gst/gstevent.c: (gst_event_new_latency),
9423         (gst_event_parse_latency):
9424         * gst/gstevent.h:
9425         Add new LATENCY event to configure latency in a pipeline.
9426         API: gst_event_new_latency
9427         API: gst_event_parse_latency
9428
9429         * gst/gstmessage.c: (gst_message_new_buffering),
9430         (gst_message_new_lost_preroll), (gst_message_new_prerolled),
9431         (gst_message_new_latency), (gst_message_parse_buffering),
9432         (gst_message_parse_lost_preroll):
9433         * gst/gstmessage.h:
9434         Added messages used in draft-latency.
9435         API: gst_message_new_lost_preroll
9436         API: gst_message_parse_lost_preroll
9437         API: gst_message_new_prerolled
9438         API: gst_message_new_latency
9439
9440         * gst/gstquery.c: (gst_query_new_latency), (gst_query_set_latency),
9441         (gst_query_parse_latency):
9442         * gst/gstquery.h:
9443         Implemented new latency query as in design doc.
9444         API: gst_query_new_latency
9445         API: gst_query_set_latency
9446         API: gst_query_parse_latency
9447
9448 2007-02-02  Wim Taymans  <wim@fluendo.com>
9449
9450         * docs/design/draft-latency.txt:
9451         Slight redesign to allow for dynamic latency adjustments.
9452
9453         * docs/design/part-negotiation.txt:
9454         Fix some typos.
9455
9456 2007-02-02  Sebastian Dröge  <slomo@circular-chaos.org>
9457
9458         reviewed by: Wim Taymans <wim@fluendo.com>
9459
9460         * plugins/elements/gstfilesink.c: (gst_file_sink_uri_set_uri):
9461         * plugins/elements/gstfilesrc.c: (gst_file_src_uri_set_uri):
9462         Allow file://localhost/foo/bar URLs and correctly fail for every other
9463         hostname that one sets. This was gnomevfssrc is linked for those if
9464         installed as it can handle it (#403172)
9465
9466 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
9467
9468         reviewed by: Tim-Philipp Müller <tim at centricular dot net>
9469
9470         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
9471         (unref_data), (gst_collect_pads_add_pad_full):
9472         * libs/gst/base/gstcollectpads.h:
9473         Don't put the previously added destroy notify in the GstCollectData
9474         struct as all it's padding is already used and we don't want to break
9475         ABI. Instead put in the pad's GObject data for now. This should be
9476         cleaned up for 0.11 (#402393).
9477
9478 2007-02-01  Sebastian Dröge  <slomo@circular-chaos.org>
9479
9480         reviewed by: Wim Taymans <wim@fluendo.com>
9481
9482         * docs/libs/gstreamer-libs-sections.txt:
9483         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
9484         (unref_data), (gst_collect_pads_add_pad),
9485         (gst_collect_pads_add_pad_full):
9486         * libs/gst/base/gstcollectpads.h:
9487         API: Add function to specify a destroy notification for custom
9488         GstCollectData when adding new pads in GstCollectPads (#402393).
9489
9490 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
9491
9492         * po/sv.po:
9493           Update Swedish translation (#378255).
9494
9495 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
9496
9497         * docs/design/draft-klass.txt:
9498           Fix the previous change, this is a list of categories and not a hierarchy.
9499
9500 2007-01-31  Stefan Kost  <ensonic@users.sf.net>
9501
9502         * docs/design/draft-klass.txt:
9503           Add info about how to get a list of used classes.
9504
9505 2007-01-30  Tim-Philipp Müller  <tim at centricular dot net>
9506
9507         * plugins/elements/gsttypefindelement.c:
9508         (gst_type_find_element_chain_do_typefinding),
9509         (gst_type_find_element_change_state):
9510           Don't leak found caps in chain function (no idea why that never
9511           showed up as a leak anywhere).
9512
9513 2007-01-30  Stefan Kost  <ensonic@users.sf.net>
9514
9515         * gst/gstplugin.h:
9516           Fix and expand GstPluginDesc API docs.
9517
9518 2007-01-29  Stefan Kost  <ensonic@users.sf.net>
9519
9520         * gst/gstcaps.c:
9521         * gst/gstelementfactory.c:
9522         * gst/gstpadtemplate.h:
9523           api doc fixes
9524
9525         * libs/gst/controller/gstcontroller.c:
9526         (gst_controlled_property_new):
9527         * tests/examples/controller/audio-example.c:
9528           comment fixes
9529
9530 2007-01-29  Stefan Kost  <ensonic@users.sf.net>
9531
9532         * configure.ac:
9533           comment about refining the xml deps
9534
9535         * docs/manuals.mak:
9536           comments about moving away from jade for docs
9537         
9538         * gst/gst.c:
9539           recommit the ifdefs to use the binary registry
9540         
9541         * gst/gstbin.c: (gst_bin_change_state_func):
9542           this break is obsolete
9543
9544         * gst/gstelementfactory.h:
9545           better GST_ELEMENT_DETAILS docs, add comment about translation
9546
9547         * gst/gstinfo.h:
9548           remove eol slash
9549
9550         * gst/gstobject.c: (gst_signal_object_get_type):
9551           add G_UNLIKELY as usual
9552
9553         * gst/gstpad.c: (gst_pad_event_default):
9554           add fall trhu comment
9555
9556         * gst/gstregistrybinary.c: (gst_registry_binary_write),
9557         (gst_registry_binary_initialize_magic),
9558         (gst_registry_binary_save_string),
9559         (gst_registry_binary_save_pad_template),
9560         (gst_registry_binary_save_feature),
9561         (gst_registry_binary_save_plugin),
9562         (gst_registry_binary_write_cache),
9563         (gst_registry_binary_check_magic),
9564         (gst_registry_binary_load_pad_template),
9565         (gst_registry_binary_load_feature),
9566         (gst_registry_binary_load_plugin),
9567         (gst_registry_binary_read_cache):
9568           comment typo and formatting
9569
9570         * gst/gstutils.c: (gst_element_state_get_name),
9571         (gst_element_state_change_return_get_name):
9572           remove obsolete breaks
9573
9574         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
9575           add FIXME 0.11 and remove cpp comment
9576
9577 2007-01-29  Edward Hervey  <edward@fluendo.com>
9578
9579         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
9580         Fix print statement in an even more portable way.
9581
9582 2007-01-29  Tim-Philipp Müller  <tim at centricular dot net>
9583
9584         * docs/gst/gstreamer-sections.txt:
9585         * gst/gstutils.h:
9586           API: add GST_ROUND_DOWN_* macros (#401781).
9587
9588 2007-01-27  Tim-Philipp Müller  <tim at centricular dot net>
9589
9590         * docs/gst/gstreamer.types.in:
9591         * gst/gstregistry.c: (gst_registry_class_init):
9592           Document registry signals and make gtk-doc pick them up (#401381).
9593
9594 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
9595
9596         * docs/pwg/building-testapp.xml:
9597           Add some audioconverts and audioresample to the pipeline, and some
9598           more comments and error handling.
9599
9600 2007-01-26  Tim-Philipp Müller  <tim at centricular dot net>
9601
9602         * docs/manual/manual.xml:
9603         * docs/pwg/pwg.xml:
9604           Fix typo (#400987).
9605
9606 2007-01-26  Wim Taymans  <wim@fluendo.com>
9607
9608         * gst/gstcaps.c: (gst_static_caps_get):
9609         Init caps flags too.
9610
9611 2007-01-25  Sebastian Dröge  <slomo@circular-chaos.org>
9612
9613         Patch by: Jindrich Makovicka <jindrich.makovick at itonis dot tv>
9614
9615         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
9616         If not using mmap'ed files try to seek to the end instead of the
9617         start to determine whether we can seek at all. This fixes the case
9618         of 2GB+ files over NFS, where seeks in the first 2GB can succeed but
9619         seeks for everything afterwards fail. Fixes #400656
9620
9621 2007-01-25  Wim Taymans  <wim@fluendo.com>
9622
9623         * gst/gstcaps.c: (_gst_caps_free), (gst_static_caps_get):
9624         Add some refcount debugging.
9625         Make gst_static_caps_get threadsafe, which is needed when autoplugging
9626         in multiple streaming threads.
9627
9628 2007-01-25  Wim Taymans  <wim@fluendo.com>
9629
9630         Patch by: David Schleef <ds at schleef dot org>
9631
9632         * docs/libs/gstreamer-libs-sections.txt:
9633         * libs/gst/base/gstadapter.c: (gst_adapter_copy):
9634         * libs/gst/base/gstadapter.h:
9635         API: gst_adapter_copy() that can reduce the amount of memcpy when
9636         getting data from the adapter. Fixes #388201.
9637
9638 2007-01-25  Edward Hervey  <edward@fluendo.com>
9639
9640         * gst/gstregistrybinary.c: (gst_registry_binary_read_cache):
9641         In print statements, "%x" is for guint. Fixes build on macosx.
9642
9643 2007-01-24  Edward Hervey  <edward@fluendo.com>
9644
9645         * plugins/elements/gstmultiqueue.c:
9646         (gst_multi_queue_loop):
9647         Small fix.
9648         (single_queue_overrun_cb), (single_queue_underrun_cb),
9649         (single_queue_check_full), (gst_single_queue_new):
9650         Implement single queue growth system.
9651         This uses the extra-size properties, and will grow single queues by
9652         that much if one goes full whereas there are others empty. This is
9653         called extra-mode in the code.
9654         When a single queue's levels go back below the initial max-size
9655         limits, it is no longer in extra-mode. This is to ensure we don't
9656         consume too much memory.
9657         Fixes #399875
9658
9659 2007-01-23  Tim-Philipp Müller  <tim at centricular dot net>
9660
9661         * gst/gst.c: (gst_init_get_option_group):
9662           Make warning about late g_thread_init() calls a bit more explicit,
9663           so that it's more obvious to application developers what they need
9664           to do if a user files a bug against their application.
9665
9666 2007-01-22  Edward Hervey  <edward@fluendo.com>
9667
9668         * plugins/elements/gstmultiqueue.c:
9669         (gst_multi_queue_src_activate_push), (gst_single_queue_new):
9670         Remove previous hack of unsetting the flushing flag for the source pad
9671         instead of activating it. Instead, fix the source pad activate function
9672         so that it no longer depends on having a parent set or not.
9673
9674 2007-01-22  Tim-Philipp Müller  <tim at centricular dot net>
9675
9676         Patch by: Carlos Sanmartin Dominguez <csanmartin@igalia.com>
9677
9678         * docs/manual/basics-bus.xml:
9679           Fix example code, gst_element_unref() doesn't exist any longer.
9680
9681 2007-01-21  Tim-Philipp Müller  <tim at centricular dot net>
9682
9683         Patch by: Mark Nauwelaerts <manauw at skynet be>
9684
9685         * gst/gstpad.c:
9686           Fix two docs typoes (#399094).
9687
9688 2007-01-19  Edward Hervey  <edward@fluendo.com>
9689
9690         * docs/faq/gst-uninstalled:
9691         Add gst-plugins-base/gst/utils/ to LD_LIBRARY_PATH so that plugins
9692         depending on libgstbaseutils can work in uninstalled environment.
9693
9694 2007-01-18  Stefan Kost  <ensonic@users.sf.net>
9695
9696         * gst/gsttaglist.h:
9697         * gst/gsttagsetter.c:
9698         Add more docs regarding tag merge-modes and when to send tags. Fix 'since'
9699         statement for new tag.
9700
9701 2007-01-17  Edward Hervey  <edward@fluendo.com>
9702
9703         * plugins/elements/gstmultiqueue.c: (gst_single_queue_new):
9704         When dynamically creating single queues, activate sinkpad before adding
9705         it.
9706         We should be doing the same thing for the source pad, but we can't
9707         since it would call a method which needs the parent to be set in order
9708         to work propertly. Instead of activating the source pad, we just unset
9709         the flushing flag, which is the minimal requirement for adding a pad
9710         to an element in a state greater than READY.
9711
9712 2007-01-17  Edward Hervey  <edward@fluendo.com>
9713
9714         * docs/faq/gst-uninstalled:
9715         Add DYLD_LIBRARY_PATH declarations so we can also use this script on
9716         Mac OS X.
9717
9718 2007-01-17  Tim-Philipp Müller  <tim at centricular dot net>
9719
9720         * tests/check/gst/gstabi.c:
9721         * tests/check/gst/struct_hppa.h:
9722         * tests/check/libs/libsabi.c:
9723         * tests/check/libs/struct_hppa.h:
9724           Add ABI structs for HPPA (see #393796).
9725
9726 2007-01-16  Tim-Philipp Müller  <tim at centricular dot net>
9727
9728         * libs/gst/check/gstcheck.c: (gst_check_abi_list):
9729           Actually write ABI structs to the file specified in the GST_ABI
9730           environment variable, as the message we print claims we would.
9731
9732 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
9733
9734         * tests/check/gst/gsttask.c:
9735           Fix header comment.
9736
9737 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
9738
9739         * gst/gsttaglist.c: (_gst_tag_initialize):
9740           Change tag type from STRING to DOUBLE. Apply ChangeLog surgery for my
9741           previous two entries.
9742
9743 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
9744
9745         * docs/gst/gstreamer-sections.txt:
9746         * gst/gsttaglist.c: (_gst_tag_initialize):
9747         * gst/gsttaglist.h:
9748           Add tag support for beat-per-minute.
9749
9750 2007-01-15  Stefan Kost  <ensonic@users.sf.net>
9751
9752         * gst/gstregistrybinary.c: (gst_registry_binary_write),
9753         (gst_registry_binary_initialize_magic),
9754         (gst_registry_binary_save_string), (gst_registry_binary_make_data),
9755         (gst_registry_binary_save_pad_template),
9756         (gst_registry_binary_save_feature),
9757         (gst_registry_binary_save_plugin),
9758         (gst_registry_binary_write_cache),
9759         (gst_registry_binary_check_magic),
9760         (gst_registry_binary_load_pad_template),
9761         (gst_registry_binary_load_feature),
9762         (gst_registry_binary_load_plugin),
9763         (gst_registry_binary_read_cache):
9764         * gst/gstregistrybinary.h:
9765           Use glib types, cleanup comments, impement interfaces and uri-types.
9766
9767 2007-01-13  Andy Wingo  <wingo@pobox.com>
9768
9769         * gst/gstpad.c (gst_pad_get_range, gst_pad_pull_range): Allow
9770         getrange() to return buffers with other caps, while we fix
9771         demuxers and typefind, or otherwise change part-negotiation.txt.
9772
9773 2007-01-12  Andy Wingo  <wingo@pobox.com>
9774
9775         * libs/gst/base/gstbasetransform.c (gst_base_transform_activate):
9776         Factor start/stop into this private function instead of partially
9777         in activate functions and partially in the change_state function.
9778         Fixes setup before the element has changed from READY->PAUSED, as
9779         is the case in pull-mode pipelines.
9780         (gst_base_transform_sink_activate_push)
9781         (gst_base_transform_src_activate_pull): Refactor to use
9782         gst_base_transform_activate().
9783         (gst_base_transform_change_state): Removed, not needed any more.
9784
9785         * libs/gst/base/gstbasesink.c (gst_base_sink_negotiate_pull):
9786         Truncate before fixating.
9787         
9788         * libs/gst/base/gstbasesink.c (gst_base_sink_negotiate_pull):
9789         Don't set_caps() if the result of fixating is ANY, as it's not
9790         supported, and not necessary in the case of a link with no
9791         template caps on either side. Fixes tests/check/libs/basesrc in
9792         some pull-mode tests.
9793
9794         * libs/gst/base/gstbasetransform.c (_GstBaseTransformPrivate):
9795         (gst_base_transform_init, gst_base_transform_sink_activate_push)
9796         (gst_base_transform_src_activate_pull): 
9797         Track the activation mode.
9798         (gst_base_transform_setcaps): In pull mode, when activating the
9799         src pad, after activating the sink pad, activate the sink pad's
9800         peer, as discussed in part-negotiation.txt.
9801
9802         * libs/gst/base/gstbasesrc.h: 
9803         * libs/gst/base/gstbasesrc.c (gst_base_src_fixate): Add fixate
9804         vmethod, as in basesink.
9805
9806         * libs/gst/base/gstbasesink.h: Reformat docs, add fixate vmethod.
9807
9808         * libs/gst/base/gstbasesink.c (gst_base_sink_pad_setcaps): In pull
9809         mode, first proxy the setcaps to the peer pad.
9810         (gst_base_sink_pad_fixate): Add a fixate function that calls the
9811         new fixate vmethod.
9812         (gst_base_sink_default_activate_pull): Rename from
9813         gst_base_sink_activate_pull.
9814         (gst_base_sink_negotiate_pull): New function, performs negotiation
9815         in pull mode before calling ::activate_pull().
9816         (gst_base_sink_pad_activate_pull): Actually call the activate_pull
9817         vmethod instead of the default implementation. I have no idea how
9818         this worked before. Negotiate before calling activate_pull.
9819
9820         * gst/gstpad.c (gst_pad_activate_pull): Refuse to activate unlinked
9821         sink pads in pull mode. In addition to being correct, fixes
9822         filesrc ! decodebin ! identity ! fakesink.
9823         (gst_pad_get_range, gst_pad_pull_range): Don't call
9824         gst_pad_set_caps() if the caps changes; instead error out with
9825         GST_FLOW_NOT_NEGOTIATED, as discussed in part-negotiation.txt.
9826
9827 2007-01-12  Andy Wingo  <wingo@pobox.com>
9828
9829         * docs/design/part-negotiation.txt: Update with more policy.
9830
9831 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
9832
9833         * libs/gst/check/gstbufferstraw.h:
9834         * libs/gst/check/gstcheck.h:
9835           Add G_BEGIN_DECLS and G_END_DECLS. Move GST_CHECK_MAIN where it
9836           belongs.
9837
9838 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
9839
9840         * tests/check/Makefile.am:
9841         * tests/check/gst/.cvsignore:
9842         * tests/check/gst/gsttagsetter.c: (gst_dummy_enc_add_interfaces),
9843         (gst_dummy_enc_base_init), (gst_dummy_enc_class_init),
9844         (gst_dummy_enc_init), (tag_list_foreach), (tag_setter_list_length),
9845         (GST_START_TEST), (gst_tag_setter_suite):
9846           Add minimal unit test for beforementioned GstTagSetter bug.
9847
9848 2007-01-12  Tim-Philipp Müller  <tim at centricular dot net>
9849
9850         Patch by: René Stadler <mail at renestadler dot de>
9851
9852         * gst/gsttagsetter.c: (gst_tag_setter_merge_tags):
9853           gst_tag_list_merge() returns a new list, so it's not the best idea
9854           to ingore its return value. Effectively meant that tags could only
9855           be merged on a GstTagSetter once using _merge_tags(). Fixes #395554.
9856           Also add function guard to require a non-NULL taglist as input (has
9857           always been so due to gst_tag_list_copy(), just making it explicit).
9858
9859 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
9860
9861         * docs/random/draft-missing-plugins.txt:
9862           Some additions: mention new API that is supposed to be used at the
9863           various stages; short blob about new gst-inspect introspection
9864           option; mention potential future problem with plugins that have
9865           a dynamic list of elements (such as ladspa, pitfdll, libvisual).
9866
9867 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
9868
9869         * tools/gst-inspect.c:
9870         (print_plugin_automatic_install_info_codecs),
9871         (print_plugin_automatic_install_info_protocols),
9872         (print_plugin_automatic_install_info), (main):
9873         Add --print-plugin-auto-install-info option to gst-inspect, so we can
9874         introspect plugin files and get machine-parsable output that corresponds
9875         to the last bit of the missing-plugin installer string (small gotcha:
9876         doesn't take into account ranks).
9877
9878 2007-01-11  Stefan Kost  <ensonic@users.sf.net>
9879
9880         * configure.ac:
9881         * docs/gst/gstreamer-sections.txt:
9882         * gst/Makefile.am:
9883         * gst/gstregistry.c: (gst_registry_lookup_feature_locked),
9884         (gst_registry_lookup_locked):
9885         * gst/gstregistry.h:
9886         * gst/gstregistrybinary.c: (gst_registry_binary_write),
9887         (gst_registry_binary_initialize_magic),
9888         (gst_registry_binary_save_string),
9889         (gst_registry_binary_save_pad_template),
9890         (gst_registry_binary_save_feature),
9891         (gst_registry_binary_save_plugin),
9892         (gst_registry_binary_write_cache),
9893         (gst_registry_binary_check_magic),
9894         (gst_registry_binary_load_pad_template),
9895         (gst_registry_binary_load_feature),
9896         (gst_registry_binary_load_plugin),
9897         (gst_registry_binary_read_cache):
9898         * gst/gstregistrybinary.h:
9899         * gst/gstregistryxml.c: (load_feature),
9900         (gst_registry_xml_read_cache):
9901           commit binary registry (disabled by default, see #359653)
9902
9903 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
9904
9905         * tests/check/gst/gstpad.c: (test_get_allowed_caps):
9906           Fix 'make check' too.
9907
9908 2007-01-10  Andy Wingo  <wingo@pobox.com>
9909
9910         * docs/design/part-negotiation.txt: Fix a typo, add a couple
9911         notes.
9912         
9913         * docs/design/part-negotiation.txt: Update with, um, one way that
9914         pull-mode negotiation might work?
9915
9916         * gst/gstpad.h: 
9917         * gst/gstpad.c (gst_pad_get_allowed_caps): Remove the restriction
9918         that the pad must be a src pad; makes sense to call it the other
9919         way in pull mode, and the logic is symmetric anyway.
9920
9921 2007-01-10  Tim-Philipp Müller  <tim at centricular dot net>
9922
9923         * plugins/elements/gstfilesink.c:
9924           Include <stdio.h> for fseeko().
9925
9926 2007-01-10  Wim Taymans  <wim@fluendo.com>
9927
9928         * gst/gstevent.c:
9929         * gst/gstevent.h:
9930         Reserve LATENCY event.
9931
9932 2007-01-09  Wim Taymans  <wim@fluendo.com>
9933
9934         * docs/design/draft-latency.txt:
9935         Updates.
9936
9937 2007-01-09  Wim Taymans  <wim@fluendo.com>
9938
9939         * docs/design/draft-latency.txt:
9940         Updates.
9941
9942         * gst/gstelement.h:
9943         * gst/gststructure.c:
9944         * gst/gsttrace.c:
9945         Small typo fixes.
9946
9947 2007-01-09  Tim-Philipp Müller  <tim at centricular dot net>
9948
9949         * tests/check/.cvsignore:
9950           Ignore test-registry.xml as well.
9951
9952 2007-01-09  Wim Taymans  <wim@fluendo.com>
9953
9954         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
9955         unref data at the end when we are done with the pad.
9956
9957 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
9958
9959         * docs/gst/gstreamer-sections.txt:
9960         * gst/gst.c: (load_plugin_func), (scan_and_update_registry),
9961         (init_post), (gst_deinit), (gst_update_registry):
9962         * gst/gst.h:
9963           API: add gst_update_registry() (#391296).
9964
9965         * tests/check/Makefile.am:
9966         * tests/check/gst/gstregistry.c:
9967         * tests/check/gst/.cvsignore:
9968           Simple unit test for the above.
9969
9970 2007-01-08  Tim-Philipp Müller  <tim at centricular dot net>
9971
9972         * gst/gstregistry.c: (gst_registry_scan_path_level):
9973           Plugin extension on HP-UX is .sl, add that to the list of approved
9974           plugin extensions (see #393796).
9975
9976         * tests/check/gst/gstpad.c: (GST_START_TEST):
9977           ulong => gulong. Fixes compilation with HP-UX compiler.
9978
9979         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
9980           Fix compilation if valgrind headers are not available.
9981
9982 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
9983
9984         * win32/common/libgstreamer.def: 
9985           Add new exported function.
9986         * win32/vs6/libgstbase.dsp: 
9987           Add gstdataqueue.c to the build.
9988         * win32/vs6/libgstcoreelements.dsp:
9989           Add gstmultiqueue.c to the build.
9990         
9991 2007-01-06  Andy Wingo  <wingo@pobox.com>
9992
9993         * libs/gst/base/gstbasesink.h: New GstBaseSinkClass vmethod,
9994         activate_pull(), providing for a way to specialize the process of
9995         spawning a thread to pull on the sink pad. There is a default
9996         implementation.
9997
9998         * libs/gst/base/gstbasesink.c (gst_base_sink_pad_activate_pull)
9999         (gst_base_sink_pad_activate_push, gst_base_sink_pad_activate)
10000         (gst_base_sink_init): Renamed pad activation functions (inserting
10001         "_pad" in their names). Refactor to use the new activate_pull
10002         vmethod, as appropriate.
10003         (gst_base_sink_class_init, gst_base_sink_activate_pull): Set the
10004         default activate_pull function to start a task pulling from the
10005         sink pad, as before.
10006
10007         * gst/gstpad.c (gst_pad_get_range, gst_pad_pull_range): Set caps
10008         on the pads if necessary, as in push()/chain(). Update docs.
10009         Shouldn't affect existing pull() usage as it is currently only
10010         being used on buffers without caps.
10011
10012 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10013
10014         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
10015         (init_pre):
10016           Call g_thread_init() first thing in gst_init() / gst_check_init().
10017           When initialisation is done via gst_init_get_option_group() and
10018           GOption parsing, issue a warning if the GLib thread system has not
10019           been initialised yet by the time gst_init_get_option_group() is
10020           called, as it's quite likely other GLib functions such as
10021           g_option_context_new() have been called already then, and
10022           g_thread_init() must be called before any other GLib function. The
10023           application in question must be fixed in that case, since memory
10024           corruption might happen otherwise.
10025           We issue the warning because even if the GLib folks decide to work
10026           around the problem on their end in future, this is still an issue
10027           with all GLib versions >= 2.10.0, so we should warn until we depend
10028           on a GLib version we know to be safe.
10029           Update documentation as well.
10030           Closes bug #391278.
10031
10032 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10033
10034         * tools/gst-inspect.c: (main):
10035         * tools/gst-launch.c: (main):
10036         * tools/gst-typefind.c: (main):
10037         * tools/gst-xmlinspect.c: (main):
10038           Call g_thread_init() really really early, before any other GLib
10039           function (see #342564 and recent discussion on gtk-devel-list).
10040
10041 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10042
10043         Patch by: Vincent Torri  <vtorri at univ-evry dot fr>
10044
10045         * gst/gst_private.h:
10046         * gst/gstconfig.h.in:
10047         * gst/gstinfo.h:
10048           On win32, all the __declspec stuff for symbol exporting is
10049           apparently only needed with MSVC, but doesn't work with MingW.
10050           Fixes compilation with MingW and #391909.
10051
10052 2007-01-05  Tim-Philipp Müller  <tim at centricular dot net>
10053
10054         * libs/gst/base/gstbasesrc.c: (gst_base_src_activate_push):
10055           Change some GST_ERROR_OBJECT that aren't really errors to
10056           GST_WARNING_OBJECT in order to reduce terminal spam.
10057
10058 2007-01-04  Stefan Kost  <ensonic@users.sf.net>
10059
10060         * tests/check/Makefile.am:
10061           disable test again, as there seem to be still race problems
10062
10063 2007-01-04  Stefan Kost  <ensonic@users.sf.net>
10064
10065         * tests/check/Makefile.am:
10066         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
10067         (GST_START_TEST), (queue_suite):
10068           enable queue test again, add tests for the leaky behaviour
10069
10070 2007-01-02  Tim-Philipp Müller  <tim at centricular dot net>
10071
10072         * configure.ac:
10073         * tests/examples/Makefile.am:
10074           Compile adapter test/example only if the required headers are
10075           available (fixes #391915).
10076
10077 2007-01-01  David Schleef  <ds@schleef.org>
10078
10079         * gst/gstplugin.c:
10080           Restore the previous signal handler for SIGSEGV instead of
10081           setting to default, since we may have stolen it away from
10082           someone.  (i.e., Mono)
10083
10084 2006-12-26  Tim-Philipp Müller  <tim at centricular dot net>
10085
10086         * docs/random/draft-missing-plugins.txt:
10087           Some small additions and clarifications.
10088
10089 2006-12-26  Tim-Philipp Müller  <tim at centricular dot net>
10090
10091         * gst/gstregistryxml.c: (gst_registry_save_escaped):
10092           Make sure we don't pass non-UTF-8 strings to g_markup_escape(),
10093           since that can lead to random memory corruptions and crashes
10094           (may or may not be related to #383244, #386711, and #386711).
10095
10096 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10097
10098         * tests/check/.cvsignore:
10099         * tests/check/Makefile.am:
10100           sync .cvsignome and CLEANFILES
10101
10102 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10103
10104         * tests/check/Makefile.am:
10105           fix distcheck
10106
10107 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10108
10109         * docs/design/part-states.txt:
10110           two tiny additional comments
10111         
10112         * gst/gststructure.c:
10113           doc fixing
10114
10115         * tests/check/Makefile.am:
10116         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
10117         (GST_START_TEST):
10118           disable test for now, unless it gets fixed
10119
10120 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10121
10122         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
10123         (GST_START_TEST):
10124           fix race in underrun test
10125
10126 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10127
10128         * tests/check/elements/.cvsignore:
10129           ignore more
10130
10131         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
10132         (GST_START_TEST):
10133           try to narrow test failure
10134
10135 2006-12-21  David Schleef  <ds@schleef.org>
10136
10137         * plugins/elements/gstfakesrc.c:
10138           Use g_random_int_range(), since it produces better random
10139           numbers in a range than almost-correct floating point code.
10140
10141 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
10142
10143         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
10144         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
10145         (gst_check_teardown_sink_pad):
10146           do not automatically (de)activate pads
10147
10148         * tests/check/Makefile.am:
10149         * tests/check/elements/queue.c: (queue_overrun), (queue_underrun),
10150         (setup_queue), (cleanup_queue), (GST_START_TEST), (queue_suite):
10151           add new, yet simple tests for queue
10152
10153         * tests/check/elements/fakesrc.c: (cleanup_fakesrc):
10154         * tests/check/elements/fdsrc.c: (cleanup_fdsrc):
10155         * tests/check/elements/filesrc.c: (cleanup_filesrc),
10156         (GST_START_TEST):
10157         * tests/check/elements/identity.c: (cleanup_identity):
10158           consistent pad (de)activation
10159
10160 2006-12-20  Tim-Philipp Müller  <tim at centricular dot net>
10161
10162         Patch by: Sebastian Dröge  <slomo ubuntu com>
10163
10164         * libs/gst/base/gstcollectpads.c:
10165           Fix two doc typos (#387866).
10166
10167 2006-12-19  Tim-Philipp Müller  <tim at centricular dot net>
10168
10169         * docs/manual/advanced-dparams.xml:
10170           Fix typo (g_object_control_properties() doesn't exist).
10171
10172 2006-12-19  Edward Hervey  <edward@fluendo.com>
10173
10174         * gst/gstsegment.c: (gst_segment_set_seek):
10175         Fine tune the cases where the segment start/stop values are really
10176         updated.
10177         * tests/check/gst/gstsegment.c: (GST_START_TEST):
10178         Add tests for the return values of gst_segment_set_seek().
10179
10180 2006-12-19  Tim-Philipp Müller  <tim at centricular dot net>
10181
10182         * gst/gst.c:
10183           Docs typo fix.
10184
10185         * plugins/elements/gstqueue.c: (gst_queue_class_init),
10186         (gst_queue_init):
10187           Fix incorrect documentation and flesh it out a bit more.
10188           Set default values for the max properties on the GParamSpec as well,
10189           so it shows up correctly in gst-inspect.
10190
10191 2006-12-18  Stefan Kost  <ensonic@users.sf.net>
10192
10193         * plugins/elements/gstqueue.c: (queue_leaky_get_type):
10194           Correct docs of queue, add more detail and crosslink it more.
10195
10196 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10197
10198         * plugins/elements/gstidentity.c: (gst_identity_check_perfect):
10199           Print additional debug info when the stream isn't perfectly
10200           timestamped; don't try to use invalid durations.
10201
10202 2006-12-16  Tim-Philipp Müller  <tim at centricular dot net>
10203
10204         * docs/design/Makefile.am:
10205           Dist new design docs.
10206
10207 2006-12-16  Wim Taymans  <wim@fluendo.com>
10208
10209         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10210
10211         * libs/gst/base/gstcollectpads.c: (ref_data), (unref_data),
10212         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
10213         (gst_collect_pads_stop), (gst_collect_pads_event),
10214         (gst_collect_pads_chain):
10215         * libs/gst/base/gstcollectpads.h:
10216         Add refcounting to the collectpads data so we can track when it's safe
10217         to free the data. Fixes #383382.
10218
10219 2006-12-15  Wim Taymans  <wim@fluendo.com>
10220
10221         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
10222         (gst_collect_pads_remove_pad):
10223         Automatically activate/deactivate pads when they are added to a
10224         started/stoped collectpads.
10225
10226 2006-12-15  Wim Taymans  <wim@fluendo.com>
10227
10228         * gst/gstelement.c: (gst_element_add_pad):
10229         * gst/gstghostpad.c: (gst_ghost_pad_new_full):
10230         * gst/gstpad.c: (gst_pad_init):
10231         Set pads to FLUSHING when they are created. Check, warn and fix when a
10232         demuxer adds an inactive pad to itself when running. Fixes #339326.
10233
10234 2006-12-15  Wim Taymans  <wim@fluendo.com>
10235
10236         * gst/gstelement.c: (gst_element_class_init),
10237         (gst_element_default_send_event), (gst_element_send_event),
10238         (gst_element_default_query), (gst_element_query):
10239         Expose default element send_event and query handling as vmethods that
10240         subclasses can chain up to.
10241
10242 2006-12-15  Wim Taymans  <wim@fluendo.com>
10243
10244         * gst/gstelement.c: (gst_element_set_state_func):
10245         Small documentation fixes.
10246
10247 2006-12-15  Wim Taymans  <wim@fluendo.com>
10248
10249         * docs/design/draft-latency.txt:
10250         Checked in draft for handling latency in pipelines.
10251
10252 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
10253
10254         * Makefile.am:
10255         * gstreamer.doap:
10256         * gstreamer.spec.in:
10257           adding .doap file
10258
10259 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
10260
10261         * gst/gst.c: (init_pre), (init_post):
10262           init_pre() and init_post() might be called via our GOptionGroup or
10263           from gst_init(), and we should skip both of them if we've already
10264           been initialised, otherwise we will init some things twice or add
10265           two default log functions.
10266
10267 2006-12-13  Edward Hervey  <edward@fluendo.com>
10268
10269         * docs/manual/basics-bus.xml:
10270         No, gst_main_loop does not exist. Its g_main_loop.
10271         Discovered by somebody who abused the copy-paste technique of coding :)
10272
10273 2006-12-13  Tim-Philipp Müller  <tim at centricular dot net>
10274
10275         * gst/gstghostpad.c:
10276           Log ghostpad debug stuff to the GST_PADS category as well rather
10277           than just to the default category.
10278
10279 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
10280
10281         * configure.ac:
10282         * gst/gst.c: (init_pre):
10283           Add some basic system details such as OS and architecture
10284           to the debug output if possible, courtesy of uname().
10285
10286 2006-12-11  Tim-Philipp Müller  <tim at centricular dot net>
10287
10288         * docs/gst/running.xml:
10289           Document GST_REGISTRY_FORK and GST_DEBUG_NO_COLOR
10290           environment variables.
10291
10292 2006-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
10293
10294         * tests/check/gst/gstbin.c: (GST_START_TEST):
10295         It is acceptable to have a refcount of 2 or 3 at this point in the
10296         test, because the pipeline might be just posting its state_change
10297         message. The next line then waits for that message to appear using
10298         bus_poll, so that should be fine too.
10299
10300 2006-12-09  Jan Schmidt  <thaytan@mad.scientist.com>
10301
10302         * gst/gst.c: (ensure_current_registry_forking):
10303         Ignore EINTR when reading from the child registry pipe.
10304         Explicitly ignore the return value from close, since it makes no
10305         difference.
10306
10307         * gst/gstminiobject.c: (gst_mini_object_ref),
10308         (gst_mini_object_unref):
10309         When debugging refcounts, check GST_IS_MINI_OBJECT and warn.
10310
10311         * gst/gstregistry.c: (_priv_gst_registry_remove_cache_plugins):
10312         When removing cached plugins, remove their features too, so they're
10313         not visible after they've disappeared.
10314
10315         * gst/gstutils.c: (prepare_link_maybe_ghosting):
10316         In the unlikely case that we are linking pads with no parents, don't
10317         crash trying to get the non-existent parent bin.
10318
10319         * gst/parse/grammar.y:
10320         Output debug in the PIPELINE category
10321
10322 2005-03-08  Wim Taymans  <wim@fluendo.com>
10323
10324         Patch by: René Stadler <mail at renestadler dot de>
10325
10326         * gst/gstclock.c: (gst_clock_new_periodic_id):
10327         Reject invalid clock times for interval of periodic ids.
10328         Fixes ##383506.
10329
10330 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
10331
10332         * gst/gstelementfactory.c: (gst_element_factory_create):
10333         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
10334         * gst/gsttypefindfactory.c: (gst_type_find_factory_call_function):
10335         * tools/gst-inspect.c: (print_element_info):
10336         Fix refcounting of gst_plugin_feature_load to match the docs. 
10337         Fixes: #380129
10338
10339 2006-12-07  Wim Taymans  <wim@fluendo.com>
10340
10341         * libs/gst/base/gstbasesink.c: (gst_base_sink_event),
10342         (gst_base_sink_get_position):
10343         Improve debugging of events.
10344
10345 2006-12-07  Wim Taymans  <wim@fluendo.com>
10346
10347         Patch by: René Stadler <mail at renestadler dot de>
10348
10349         * gst/gstclock.c: (gst_clock_id_wait):
10350         Make period ids add the interval to the origial requested time instead
10351         of the possibly updated time which can be wrong when there are multiple
10352         waiters for the same id. Fixes #382592.
10353
10354         * gst/gstsystemclock.c: (gst_system_clock_async_thread),
10355         (gst_system_clock_id_wait_jitter_unlocked),
10356         (gst_system_clock_id_wait_jitter):
10357         Fix restart in the async notify thread when an async entry is added to
10358         the front of the list. Fixes #381492. 
10359
10360         * tests/check/gst/gstsystemclock.c: (store_callback),
10361         (notify_callback), (GST_START_TEST), (gst_systemclock_suite):
10362         Added test for multiple async waits.
10363         Added test for async wait order.
10364
10365 2006-12-07  Wim Taymans  <wim@fluendo.com>
10366
10367         * gst/gstbin.c: (gst_bin_query):
10368         Add some more docs about the POSITION query.
10369
10370 2006-12-07  Jan Schmidt  <thaytan@mad.scientist.com>
10371
10372         * configure.ac:
10373         Bump version nano - back to CVS.
10374
10375 === release 0.10.11 ===
10376
10377 2006-12-06  Jan Schmidt <thaytan@mad.scientist.com>
10378
10379         * configure.ac:
10380           releasing 0.10.11, "Love never runs on time"
10381
10382 2006-12-01  Jan Schmidt  <thaytan@mad.scientist.com>
10383
10384         * win32/common/libgstbase.def:
10385         * win32/common/libgstreamer.def:
10386         * win32/vs8/libgstbase.vcproj:
10387         * win32/vs8/libgstcoreelements.vcproj:
10388         * win32/vs8/libgstreamer.vcproj:
10389         Fix compilation on win32 under VS8
10390         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
10391         Partially fixes #381175
10392
10393 2006-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
10394
10395         * gst/gstvalue.c: (gst_value_compare_fraction):
10396         If someone is foolish enough to compare 2 fractions with denominator =
10397         0, return UNORDERED rather than aborting.
10398
10399 2006-11-28  Edward Hervey  <edward@fluendo.com>
10400
10401         * libs/gst/base/Makefile.am:
10402         * libs/gst/base/gstdataqueue.c: (gst_data_queue_get_type),
10403         (gst_data_queue_base_init), (gst_data_queue_class_init),
10404         (gst_data_queue_init), (gst_data_queue_new),
10405         (gst_data_queue_cleanup), (gst_data_queue_finalize),
10406         (gst_data_queue_locked_flush), (gst_data_queue_locked_is_empty),
10407         (gst_data_queue_locked_is_full), (gst_data_queue_flush),
10408         (gst_data_queue_is_empty), (gst_data_queue_is_full),
10409         (gst_data_queue_set_flushing), (gst_data_queue_push),
10410         (gst_data_queue_pop), (gst_data_queue_drop_head),
10411         (gst_data_queue_set_property), (gst_data_queue_get_property):
10412         * libs/gst/base/gstdataqueue.h:
10413         New GstDataQueue object for threadsafe queueing. Most useful for
10414         elements that need some queueing functionnality.
10415         * docs/libs/gstreamer-libs-docs.sgml:
10416         * docs/libs/gstreamer-libs-sections.txt:
10417         Insert documentation for GstDataQueue
10418         * plugins/elements/Makefile.am:
10419         * plugins/elements/gstelements.c:
10420         * plugins/elements/gstmultiqueue.c: (gst_multi_queue_base_init),
10421         (gst_multi_queue_class_init), (gst_multi_queue_init),
10422         (gst_multi_queue_finalize), (gst_multi_queue_set_property),
10423         (gst_multi_queue_get_property), (gst_multi_queue_request_new_pad),
10424         (gst_multi_queue_release_pad), (gst_single_queue_push_one),
10425         (gst_multi_queue_item_destroy), (gst_multi_queue_item_new),
10426         (gst_multi_queue_loop), (gst_multi_queue_chain),
10427         (gst_multi_queue_sink_activate_push), (gst_multi_queue_sink_event),
10428         (gst_multi_queue_getcaps), (gst_multi_queue_bufferalloc),
10429         (gst_multi_queue_src_activate_push), (gst_multi_queue_acceptcaps),
10430         (gst_multi_queue_src_event), (gst_multi_queue_src_query),
10431         (wake_up_next_non_linked), (compute_next_non_linked),
10432         (single_queue_overrun_cb), (single_queue_underrun_cb),
10433         (single_queue_check_full), (gst_single_queue_new):
10434         * plugins/elements/gstmultiqueue.h:
10435         New multiqueue element, using GstDataQueue. Used for queuing multiple
10436         streams.
10437         Closes #344639 and #347785
10438
10439 2006-11-22  Stefan Kost  <ensonic@users.sf.net>
10440
10441         * docs/pwg/advanced-types.xml:
10442           add more missing type details
10443
10444         * tools/gst-run.c: (main):
10445           remove unused variable
10446
10447 2006-11-21  Stefan Kost  <ensonic@users.sf.net>
10448
10449         * docs/libs/Makefile.am:
10450         * docs/libs/gstreamer-libs.types:
10451           add types of base classes to enable gobject specific stuff in the docs
10452
10453         * docs/random/ensonic/embedded.txt:
10454           more ideas about isolating platform specific things
10455
10456 2006-11-20  Wim Taymans  <wim@fluendo.com>
10457
10458         Patch by: Sebastian Dröge <slomo at ubuntu dot com>
10459
10460         * libs/gst/check/gstcheck.h:
10461         Fix compilation and running against 0.9.4. Fixes #377332.
10462
10463 2006-11-20  Wim Taymans  <wim@fluendo.com>
10464
10465         * gst/gstsegment.c: (gst_segment_set_seek),
10466         (gst_segment_set_newsegment_full), (gst_segment_to_stream_time),
10467         (gst_segment_to_running_time):
10468         Fix boundary checking in to_running_time() and to_stream_time().
10469         Fixes #377183.
10470
10471         * tests/check/gst/gstsegment.c: (GST_START_TEST):
10472         stream and running time can now be calculated for the complete
10473         clipped segment.
10474
10475 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
10476
10477         * gst/gstpad.c: (gst_pad_push_event):
10478           Can't access event structure after giving away ownership of
10479           the event.
10480
10481 2006-11-15  Stefan Kost  <ensonic@users.sf.net>
10482
10483         * docs/random/ensonic/embedded.txt:
10484         * docs/random/ensonic/profiling.txt:
10485         * docs/random/ensonic/receipies.txt:
10486           more thinking
10487
10488 2006-11-13  Wim Taymans  <wim@fluendo.com>
10489
10490         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
10491
10492         * gst/gstpad.c:
10493         Fix documentation for gst_pad_dispatcher. Fixes #374475.
10494
10495 2006-11-13  Wim Taymans  <wim@fluendo.com>
10496
10497         Patch by: Jonathan Matthew <jonathan at kaolin dot wh9 dot net>
10498
10499         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
10500         Store new length in segment duration so we don't keep on calling the
10501         potentially expensize get_size() call. Fixes #370865.
10502
10503 2006-11-10  Tim-Philipp Müller  <tim at centricular dot net>
10504
10505         Patch by: Sergey Scobich  <sergey.scobich at gmail com>
10506
10507         * win32/common/libgstreamer.def:
10508           Add two missing symbols (#366492).
10509
10510 2006-11-10  Jan Schmidt  <thaytan@mad.scientist.com>
10511
10512         * libs/gst/base/gstadapter.c: (gst_adapter_flush),
10513         (gst_adapter_take_buffer):
10514         Fix format string to use all its arguments.
10515         Remove useless >= check on a guint
10516
10517 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
10518
10519         * tests/examples/adapter/.cvsignore:
10520         Ignore build file as commanded by the build-bot
10521
10522 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
10523
10524         * tests/examples/adapter/Makefile.am:
10525         * tests/examples/adapter/adapter_test.c: (run_test_take),
10526         (run_test_take_buffer), (run_tests), (main):
10527
10528         Add new files from the previous commit
10529
10530 2006-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
10531
10532         * Makefile.am:
10533         * configure.ac:
10534         * libs/gst/base/gstadapter.c: (gst_adapter_clear),
10535         (gst_adapter_push), (gst_adapter_peek_into), (gst_adapter_peek),
10536         (gst_adapter_flush), (gst_adapter_take), (gst_adapter_take_buffer):
10537         * libs/gst/base/gstadapter.h:
10538         * tests/check/libs/adapter.c: (create_and_fill_adapter),
10539         (GST_START_TEST), (gst_adapter_suite):
10540         * tests/examples/Makefile.am:
10541         Do some optimisation work in GstAdapter to avoid copies in more cases.
10542         It could still do slightly better by merging buffers when
10543         gst_buffer_is_span_fast is true, but is already faster. 
10544
10545         Also, avoid traversing a single-linked list to append each incoming 
10546         buffer inside the adapter.
10547
10548         Add simple test app that times the adapter behaviour in different
10549         situations, and extend the unit test to check that bytes enter and
10550         exit the adapter in their original order.
10551
10552 2006-11-08  Tim-Philipp Müller  <tim at centricular dot net>
10553
10554         * docs/random/draft-missing-plugins.txt:
10555           Update: use element message instead of adding a new message
10556           type to the core; don't provide GStreamer API to initiate the
10557           plugin download, just provide API to compose the strings needed
10558           and let an external libgimmestuff handle the rest.
10559
10560 2006-11-08  Jan Schmidt  <thaytan@mad.scientist.com>
10561
10562         * tools/gst-inspect.c: (print_element_properties_info):
10563         Print a string instead of 'unknown type' for GValueArray properties
10564
10565 2006-11-08  Christian F.K. Schaller  <christian@fluendo.com>
10566
10567         * docs/random/draft-missing-plugins.txt:
10568         More small fixes.
10569
10570 2006-11-07  Tim-Philipp Müller  <tim at centricular dot net>
10571
10572         * tests/examples/typefind/typefind.c: (type_found), (main):
10573           Make typefind element example work again (#371894); add a
10574           license header.
10575
10576 2006-11-07  Tim-Philipp Müller  <tim at centricular dot net>
10577
10578         * docs/random/draft-missing-plugins.txt:
10579           Commit initial draft about how to deal with missing plugins,
10580           needs work (API too).
10581
10582 2006-11-07  Stefan Kost  <ensonic@users.sf.net>
10583
10584         * docs/pwg/advanced-types.xml:
10585           documents the new caps elements (see #363118)
10586
10587 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
10588
10589         * gst/gstplugin.c: (gst_plugin_load_file):
10590         * plugins/elements/gstfilesrc.c: (gst_mmap_buffer_finalize),
10591         (gst_file_src_map_region), (gst_file_src_start):
10592         * plugins/indexers/gstfileindex.c: (gst_file_index_load),
10593         (gst_file_index_commit):
10594           Use g_strerror() instead of strerror() - we want UTF-8.
10595
10596 2006-11-06  Tim-Philipp Müller  <tim at centricular dot net>
10597
10598         Patch by: Peter Kjellerstedt <pkj at axis com>
10599
10600         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
10601           Another printf fix (#371493).
10602
10603 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
10604
10605         * tests/check/gst/gsttag.c:
10606           relicence (okay with author=company)
10607
10608 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
10609
10610         * gst/gstpad.c: (gst_pad_event_default_dispatch),
10611         (gst_pad_push_event):
10612           Enhance debug and improve docs
10613         
10614         * gst/gsturi.c:
10615           Fix docs
10616
10617 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
10618
10619         * docs/random/ensonic/distributed.txt:
10620         * docs/random/ensonic/profiling.txt:
10621           more ideas
10622
10623 2006-11-06  Stefan Kost  <ensonic@users.sf.net>
10624
10625         * docs/gst/gstreamer-sections.txt:
10626           add new API and fix the build
10627           
10628         * gst/gstbin.c: (gst_bin_recalc_state):
10629         * gst/gstelement.c: (gst_element_message_full),
10630         (gst_element_get_state_func), (gst_element_set_state_func):
10631           use new API and improve logging
10632         
10633         * gst/gstutils.c: (gst_element_state_change_return_get_name):
10634         * gst/gstutils.h:
10635           API: add function to get StateChangereturn names to improve logs 
10636
10637 2006-11-04  Thomas Vander Stichele  <thomas at apestaart dot org>
10638
10639         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
10640           I'm considering shooting the next person to put strerror stuff
10641           in the translateable part of the message.
10642
10643 2006-11-03  Wim Taymans  <wim@fluendo.com>
10644
10645         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
10646         Get the type and printf conversion specifiers right.
10647
10648 2006-11-03  Wim Taymans  <wim@fluendo.com>
10649
10650         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
10651
10652         * gst/gstpad.c: (gst_pad_init), (pre_activate),
10653         (gst_pad_set_blocked_async), (gst_pad_acceptcaps_default),
10654         (gst_pad_accept_caps), (handle_pad_block), (gst_pad_push_event):
10655         Some small cleanups. Improve debugging.
10656         * gst/gstpad.h:
10657         Signal all waiting threads with a broadcast instead of just one.
10658         Fixes #369942.
10659
10660 2006-11-03  Wim Taymans  <wim@fluendo.com>
10661
10662         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd),
10663         (gst_fd_src_create):
10664         Add some debugging. 
10665         Only update fd when it's different from the old.
10666
10667 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
10668
10669         * plugins/elements/gstfilesrc.c: (gst_file_src_create_mmap):
10670           Printf fixes for PPC/OSX, take two (#369366).
10671
10672 2006-11-02  Tim-Philipp Müller  <tim at centricular dot net>
10673
10674         Based on patch by: Jan David Mol  <j.j.d.mol at tudelft nl>
10675
10676         * plugins/elements/gstfilesink.c: (gst_file_sink_class_init):
10677         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
10678         (gst_file_src_map_small_region), (gst_file_src_create_mmap):
10679           Printf fixes for gsize parameters on PPC/OSX (#369366). Also,
10680           don't cast to long long for portability reasons, but use
10681           GLib's types instead.
10682
10683 2006-10-30  Michael Smith  <msmith@fluendo.com>
10684
10685         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
10686           Get the arguments to lseek() the right way around.
10687           Fixes 367677.
10688
10689 2006-10-30  Wim Taymans  <wim@fluendo.com>
10690
10691         Patch by: gorshkov <gorshkov at oghma dot on dot ca>
10692
10693         * gst/gstinfo.h:
10694         _declspec should be __declspec (two underscores, not one). Fixes 366572.
10695
10696 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
10697
10698         Patch by: Kjartan Maraas  <kmaraas at gnome org>
10699
10700         * docs/design/part-MT-refcounting.txt:
10701         * docs/random/wtay/capsnego2-docs:
10702         * gst/gstclock.c:
10703         * gst/gstxml.c:
10704           Typo fixes (#366212).
10705
10706 2006-10-28  Wim Taymans  <wim@fluendo.com>
10707
10708         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
10709
10710         * gst/gst.c:
10711         * win32/common/libgstbase.def:
10712         * win32/common/libgstreamer.def:
10713         * win32/vs8/libgstbase.vcproj:
10714         * win32/vs8/libgstcontroller.vcproj:
10715         Add needed entries in .def files.
10716         Use HAVE_UNISTD_H.
10717         Rearrange def files in vs8 solutions. Fixes #366286.
10718
10719 2006-10-28  Tim-Philipp Müller  <tim at centricular dot net>
10720
10721         * win32/common/gstconfig.h:
10722           Add GST_SEGMENT_FORMAT and GST_USING_PRINTF_EXTENSION to the
10723           hand-made win32 gstconfig.h. Fixes #366321.
10724
10725 2006-10-27  Wim Taymans  <wim@fluendo.com>
10726
10727         * gst/gstghostpad.c: (gst_proxy_pad_do_acceptcaps),
10728         (gst_ghost_pad_new_full):
10729         Make acceptcaps return TRUE when we don't have a target, just like
10730         setcaps does.
10731
10732 2006-10-27  Wim Taymans  <wim@fluendo.com>
10733
10734         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
10735         Revert previous commit, 0 sized buffers are allowed. Reopens #363095.
10736
10737 2006-10-26  Tim-Philipp Müller  <tim at centricular dot net>
10738
10739         * gst/gststructure.c: (gst_structure_id_set_value):
10740           If someone tries to set a non-UTF8 string field on a structure,
10741           don't just print a warning, but also ignore the request and do
10742           not change/add that field to the structure.
10743
10744         * tests/check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
10745           Test for the above.
10746
10747 2006-10-25  David Schleef  <ds@schleef.org>
10748
10749         * gst/gstinfo.c:
10750           g_hash_table_insert() needs a cast to a non-const pointer duh.
10751
10752 2006-10-25  David Schleef  <ds@schleef.org>
10753
10754         * gst/gstinfo.c:
10755         * gst/gstinfo.h:
10756           Change name parameter of _gst_debug_register_funcptr to const
10757           to reflect the constness of its use in the function as well
10758           as to quiet a gcc warning.
10759
10760 2006-10-25  Edward Hervey  <edward@fluendo.com>
10761
10762         * libs/gst/base/gstbasetransform.c: (gst_base_transform_chain):
10763         Don't push the buffer if it's empty.
10764         Closes #363095
10765
10766 2006-10-24  Wim Taymans  <wim@fluendo.com>
10767
10768         * gst/gstevent.h:
10769         Add small comment.
10770
10771         * libs/gst/base/gstbasetransform.c:
10772         (gst_base_transform_sink_eventfunc):
10773         Debug segment values *after* updating them as this is more
10774         interesting.
10775
10776 2006-10-23  Wim Taymans  <wim@fluendo.com>
10777
10778         * docs/design/part-events.txt:
10779         Update some docs.
10780
10781         * docs/design/part-block.txt:
10782         * gst/gstpad.c: (gst_pad_is_blocking), (handle_pad_block),
10783         (gst_pad_push_event):
10784         Revert BLOCKING patch, it tries to be smart without really having a
10785         clear idea what or how. So, now we discard all FLUSHING events again on
10786         a blocking pad. Should fix gnonlin again.
10787
10788 2006-10-23  Wim Taymans  <wim@fluendo.com>
10789
10790         Patch by: Sergey Scobich <sergey dot scobich at gmail dot com>
10791
10792         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
10793         (gst_base_src_start), (gst_base_src_activate_push):
10794         Make sure size is always initialized. Fixes #364388.
10795
10796 2006-10-20  Stefan Kost  <ensonic@users.sf.net>
10797
10798         * docs/random/ensonic/distributed.txt:
10799           add some ideas about doing distributed processing
10800
10801         * docs/random/ensonic/profiling.txt:
10802           get_rusage look promising
10803
10804 2006-10-18  Stefan Kost  <ensonic@users.sf.net>
10805
10806         * docs/manual/basics-helloworld.xml:
10807           Add a cast in example to fix compile warning
10808
10809 2006-10-18  Wim Taymans  <wim@fluendo.com>
10810
10811         * gst/gstsegment.c: (gst_segment_set_last_stop),
10812         (gst_segment_set_seek), (gst_segment_set_newsegment_full):
10813         Relax arg checking again, -1 is allowed.
10814
10815 2006-10-18  Wim Taymans  <wim@fluendo.com>
10816
10817         * gst/gstsegment.c: (gst_segment_set_last_stop),
10818         (gst_segment_set_seek), (gst_segment_set_newsegment_full):
10819         _set_last_stop() must be with a value != -1
10820         A _TYPE_SET to -1 means seek to 0.
10821         Calc last_stop correctly for negative rates.
10822         Make sure we work with positive durations when updating a segment.
10823
10824 2006-10-18  Wim Taymans  <wim@fluendo.com>
10825
10826         * docs/design/part-live-source.txt:
10827         * gst/gstclock.h:
10828         Small docs fixes.
10829
10830 2006-10-18  Tim-Philipp Müller  <tim at centricular dot net>
10831
10832         * gst/gstbuffer.h:
10833           Add an explicit cast to GstBuffer** to keep old code that added an
10834           explicit cast to GstMiniObject** for gst_mini_object_replace()
10835           compiling without warning.
10836
10837 2006-10-18  Stefan Kost  <ensonic@users.sf.net>
10838
10839         * gst/gstvalue.c: (gst_value_set_date), (gst_date_copy):
10840           check for validity of dates
10841
10842 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
10843
10844         * docs/gst/gstreamer-sections.txt:
10845           Forgot this one, makes gtk-doc shut up.
10846
10847 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
10848
10849         Patch by: Peter Kjellerstedt <pkj at axis com>
10850
10851         * gst/gstobject.h:
10852           Don't define xmlNodePtr to gpointer if the core was built with
10853           --disable-loadsave and --disable-registry, this will break
10854           applications that want to use libxml2 but are buildling against a
10855           core that doesn't use libxml2. Use an intermediary type GstXmlNodePtr
10856           instead so we don't have to mess with the libxml2 namespace
10857           (#361675).
10858
10859 2006-10-17  Tim-Philipp Müller  <tim at centricular dot net>
10860
10861         * gst/gstbuffer.h:
10862           Fix gst_buffer_replace() macro to avoid gst_mini_object_replace()-related
10863           type-punned pointer warnings.
10864
10865 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
10866
10867         * gst/gstelement.h:
10868           Add casts to the correct return type to state <=> state transition
10869           macros.
10870
10871 2006-10-16  Stefan Kost  <ensonic@users.sf.net>
10872
10873         * docs/design/part-live-source.txt:
10874           describe howto handle latency
10875         
10876         * docs/random/ensonic/profiling.txt:
10877           more ideas
10878
10879         * tools/gst-plot-timeline.py:
10880           fix log parsing for solaris, remove unused function
10881
10882 2006-10-16  Wim Taymans  <wim@fluendo.com>
10883
10884         * docs/design/part-trickmodes.txt:
10885         * gst/gstevent.c:
10886         Update some docs regarding reverse playback.
10887
10888 2006-10-15  Tim-Philipp Müller  <tim at centricular dot net>
10889
10890         Patch by: Marcus Granado  <mrc dot gran at gmail com>
10891
10892         * win32/vs8/grammar.vcproj:
10893           Error out with a warning if glib-genmarshal.exe is not in path,
10894           instead of creating bogus gstmarshal.[ch] files. Fixes #361720.
10895
10896 2006-10-13  Wim Taymans  <wim@fluendo.com>
10897
10898         * gst/gstsegment.c: (gst_segment_set_seek):
10899         When seeking to stop -1, set last_stop (current position) to the
10900         duration of the segment.
10901
10902 2006-10-13  Wim Taymans  <wim@fluendo.com>
10903
10904         * gst/gstelement.h:
10905         Clarify _NO_PREROLL a bit more.
10906
10907         * gst/gstevent.c:
10908         Fix docs.
10909
10910         * gst/gstpad.c: (gst_pad_link_check_hierarchy),
10911         (gst_pad_get_caps_unlocked), (gst_pad_save_thyself),
10912         (handle_pad_block), (gst_pad_push_event), (gst_pad_send_event):
10913         Patch by: Yves Lefebvre <ivanohe at abacom dot com> Fix possible deadlock
10914         due to wrong locking order. Fixes #361769.
10915         Remove some redundant/misplaced checks in pad_block.
10916
10917         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
10918         For negative rates, count backwards from the duration.
10919
10920 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
10921
10922         * gst/gsterror.c: (_gst_library_errors_init):
10923           Fix error message for GST_LIBRARY_ERROR_SETTINGS (feel free to come
10924           up with something better).
10925
10926 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
10927
10928         * win32/vs6/libgstreamer.dsp:
10929         * win32/vs7/libgstreamer.vcproj:
10930         * win32/vs8/libgstreamer.vcproj:
10931           Don't reference glib-compat.c which is currently not used and not
10932           disted; add gstquark.c which was recently added. Fixes #361730.
10933
10934 2006-10-12  Tim-Philipp Müller  <tim at centricular dot net>
10935
10936         * win32/common/libgstbase.def:
10937         * win32/common/libgstcontroller.def:
10938         * win32/common/libgstreamer.def:
10939           Add gst_caps_merge() and a bunch of other recently-added functions.
10940           Fixes #361732.
10941
10942 2006-10-11  Wim Taymans  <wim@fluendo.com>
10943
10944         * docs/plugins/gstreamer-plugins.args:
10945         * docs/plugins/inspect/plugin-coreelements.xml:
10946         * docs/plugins/inspect/plugin-coreindexers.xml:
10947         Update element args.
10948
10949         * gst/gstsystemclock.c:
10950         Small comment update.
10951
10952         * plugins/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
10953         (gst_tee_request_new_pad), (gst_tee_release_pad),
10954         (gst_tee_buffer_alloc), (gst_tee_sink_activate_push),
10955         (gst_tee_sink_activate_pull):
10956         * plugins/elements/gsttee.h:
10957         Some tee loving:
10958         Add default property defines.
10959         Implement release pad function.
10960         Give properties better blubs etc.
10961         Activate pads before adding them to a running tee.
10962         Do simple buffer_alloc on the first requested pad.
10963         Post error when activation fails.
10964
10965 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
10966
10967         * gst/gst.c: (ensure_current_registry_forking):
10968           Check return value of write() to make compiler happy.
10969
10970 2006-10-11  Wim Taymans  <wim@fluendo.com>
10971
10972         Patch by: Sjoerd Simons <sjoerd at luon dot net>
10973
10974         * plugins/elements/gstqueue.c: (gst_queue_chain):
10975         Recheck queue filledness after signalling the overrun when we're about
10976         to leak downstream because we released the lock when emitting the signal
10977         and the queue could be empty again. Fixes #352345.
10978
10979 2006-10-11  Tim-Philipp Müller  <tim at centricular dot net>
10980
10981         * libs/gst/controller/gstcontroller.c: (gst_controller_new_list):
10982           Fix refcounting here too, just like we did for _new_valist() a few
10983           days ago (#357180) (thanks to René Stadler). Also remove all those
10984           'Since: 0.9' from the gtk-doc blobs.
10985
10986         * tests/check/libs/controller.c: (controller_refcount_new_list),
10987         (gst_controller_suite):
10988           Unit test for the above.
10989
10990 2006-10-10  Wim Taymans  <wim@fluendo.com>
10991
10992         Patch by: Sebastien Cote <sebas642 at yahoo dot ca>
10993
10994         * gst/gstpad.c: (gst_pad_get_caps_unlocked),
10995         (gst_pad_save_thyself):
10996         Update some docs.
10997         Write pad direction in XML output. Fixes #345496.
10998
10999 2006-10-10  Wim Taymans  <wim@fluendo.com>
11000
11001         Patch by: René Stadler <mail at renestadler dot de>
11002
11003         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
11004         (gst_controller_new_list), (_gst_controller_dispose),
11005         (_gst_controller_finalize), (_gst_controller_class_init):
11006         Take ref to controlled object so that it cannot disappear. 
11007         Fixes #357432.
11008
11009 2006-10-10  Wim Taymans  <wim@fluendo.com>
11010
11011         * libs/gst/check/gstcheck.c: (gst_check_setup_src_pad),
11012         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
11013         (gst_check_teardown_sink_pad):
11014         Activate/deactivate pads in setup/teardown respectively.
11015
11016 2006-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11017
11018         Patch by: Josep Torra Valles <josep@fluendo.com>
11019
11020         * gst/Makefile.am:
11021         Cast values when making gstenumtypes.h.  This pacifies Forte
11022         so it doesn't warn about the ~0 as GST_MESSAGE_ANY not fitting
11023         in the enumeration.
11024
11025 2006-10-09  Wim Taymans  <wim@fluendo.com>
11026
11027         * gst/gstevent.c: (gst_event_new_seek), (gst_event_parse_seek):
11028         Rename some more @cur to @start to fix docs. 
11029
11030         * gst/gstsegment.c: (gst_segment_set_seek):
11031         Fix typo.
11032         time and start must always stay in sync as defined in design doc.
11033
11034         * gst/gsttaglist.c: (gst_tag_list_is_empty):
11035         Rename param to fix docs.
11036
11037         * tests/check/gst/gstsegment.c: (GST_START_TEST):
11038         Check that start and time are in sync.
11039
11040         * tests/check/pipelines/parse-launch.c:
11041         (gst_parse_test_element_change_state):
11042         Activate pad before adding to the element.
11043
11044 2006-10-09  Wim Taymans  <wim@fluendo.com>
11045
11046         * docs/design/part-qos.txt:
11047         Fix typo.
11048
11049         * gst/gstevent.c:
11050         * gst/gstevent.h:
11051         Update seek event docs regarding negative rates.
11052         Rename @cur to @start. 
11053
11054         * gst/gstsegment.c: (gst_segment_set_seek):
11055         * gst/gstsegment.h:
11056         Update set_seek docs regarding negative rates.
11057         Correctly update last_stop to @stop when dealing with negative
11058         rates.
11059         Rename @cur to @start. 
11060
11061         * tests/check/gst/gstpad.c: (GST_START_TEST):
11062         Activate pads before trying to use them.
11063
11064         * tests/check/gst/gstsegment.c: (GST_START_TEST),
11065         (gst_segment_suite):
11066         Add simple check for segments and negative rates.
11067
11068 2006-10-09  Tim-Philipp Müller  <tim at centricular dot net>
11069
11070         * gst/gsttaglist.c: (gst_tag_list_is_empty):
11071         * gst/gsttaglist.h:
11072         * docs/gst/gstreamer-sections.txt:
11073           API: add gst_tag_list_is_empty() (#360467).
11074
11075         * tests/check/gst/gsttag.c: (GST_START_TEST):
11076           And a test case.
11077
11078 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11079
11080         * gst/gstmessage.h:
11081         Revert change from earlier wrt GST_MESSAGE_TYPE_ANY having
11082         a value that doesn't fit on enumeration.
11083
11084 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11085
11086         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
11087         Remove local debugging system and use Gstreamer's instead.
11088
11089 2006-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11090
11091         Patch by: Josep Torra Valles <josep@fluendo.com>
11092
11093         * common/m4/gst-error.m4:
11094         Disable warning of statement not reached on Forte.
11095         * gst/gstmessage.h:
11096         Fix warning on Forte (value doesn't fit on enumeration).
11097         * libs/gst/base/gstbasesink.c: (gst_base_sink_chain_unlocked):
11098         Fix warning on Forte (value doesn't fit on enumeration).
11099         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
11100         DEBUG macro says it takes minimum of 2 args and so Forte
11101         complains about the use with just 1 arg.
11102         * plugins/elements/gstfdsink.c:
11103         * plugins/elements/gstfdsrc.c:
11104         * plugins/elements/gstfilesink.c:
11105         * plugins/elements/gstfilesrc.c:
11106         Use correct return type for the uri handler implementations.
11107
11108         All these fix warnings in Forte.  Fixes bug #360860.
11109
11110 2006-10-08  Tim-Philipp Müller  <tim at centricular dot net>
11111
11112         * gst/gstelement.h:
11113           gcc versions prior to gcc 3.3 apparently complain about a NULL printf
11114           format string, so don't use G_GNUC_PRINTF for those versions.
11115
11116 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
11117
11118         * gst/gsttaglist.c: (gst_is_tag_list):
11119         * gst/gsttaglist.h:
11120           Minor fixes to GST_IS_TAG_LIST and gst_is_tag_list().
11121
11122         * tests/check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
11123           Small test for the above.
11124
11125 2006-10-07  Tim-Philipp Müller  <tim at centricular dot net>
11126
11127         * gst/gsttaglist.h:
11128           Less tabs, more spaces.
11129
11130 2006-10-06  Tim-Philipp Müller  <tim at centricular dot net>
11131
11132         * gst/gstinfo.h:
11133           Those two function declarations do actually belong there, revert
11134           commit from yesterday that turned them intro macros.
11135
11136 2006-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11137
11138         Patch by: Josep Torra Valles <josep@fluendo.com>
11139
11140         * gst/gst.c: (gst_init_get_option_group):
11141         Fix empty declaration and type mismatch.
11142         * gst/gstbin.c: (gst_bin_change_state_func):
11143         Fix type mismatch.
11144         * gst/gstelement.c: (gst_element_continue_state),
11145         (gst_element_set_state_func), (gst_element_change_state),
11146         (gst_element_change_state_func):
11147         Fix type mismatches.
11148         * gst/gstinfo.c: (gst_debug_compare_log_function_by_func),
11149         (gst_debug_remove_log_function), (_gst_debug_nameof_funcptr):
11150         Cast as appropriate.
11151         * gst/gstobject.c: (gst_class_signal_connect):
11152         Cast as appropriate.  The function pointer parameter really
11153         has the wrong type but would break API if we change it.
11154         * gst/gstquery.c:
11155         Fix redefinition of _FILE_OFFSET_BITS caused on Solaris wrt
11156         order of including string.h.
11157         * gst/gstutils.c: (gst_element_state_get_name):
11158         Remove unreachable line.
11159         * gst/gstxml.c: (gst_xml_parse_doc):
11160         Fix type mismatch.
11161         All these caught by Forte.
11162
11163 2006-10-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11164
11165         Patch by: Josep Torra Valles <josep@fluendo.com>
11166
11167         * common/m4/gst-error.m4:
11168         Fixed bug #360151.
11169         We need to disable warnings on Forte for empty declarations
11170         due to gst-indent adding ;s to lines that just use macros
11171         where the macro actually doesn't need a ; at end to end
11172         statement.
11173
11174 2006-10-06  Wim Taymans  <wim@fluendo.com>
11175
11176         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
11177         (gst_file_sink_close_file), (gst_file_sink_event),
11178         (gst_file_sink_render):
11179         Add some FIXME for the NEWSEGMENT handling.
11180
11181 2006-10-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11182
11183         * gst/parse/grammar.y:
11184         Remove static function gst_parse_element_lock as all it does
11185         is return.  Looks like cruft from 0.8.
11186
11187 2006-10-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
11188
11189         Patch by: Josep Torra Valles <josep@fluendo.com>
11190
11191         * common/m4/gst-error.m4:
11192         * configure.ac:
11193         * libs/gst/net/Makefile.am:
11194         Fix a compilation issue with Forte on Solaris.  inet_aton is in
11195         libresolv.
11196
11197 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
11198
11199         * gst/gstpad.c: (pre_activate):
11200         * gst/gstregistry.c: (gst_registry_scan_path_level):
11201         * gst/gstregistryxml.c: (load_plugin):
11202         * libs/gst/controller/gstcontroller.c:
11203         (gst_controlled_property_set_interpolation_mode):
11204         * libs/gst/dataprotocol/dataprotocol.c:
11205         (gst_dp_packet_from_event_1_0):
11206         * libs/gst/net/gstnetclientclock.c:
11207         (gst_net_client_clock_observe_times):
11208         * plugins/elements/gstfdsrc.c: (gst_fd_src_create):
11209           Printf fixes.
11210
11211 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
11212
11213         * configure.ac:
11214         * docs/gst/gstreamer-sections.txt:
11215         * gst/gstconfig.h.in:
11216         * gst/gstelement.h:
11217         * gst/gstinfo.h:
11218           Add GST_USING_PRINTF_EXTENSION to gstconfig.h so that we know
11219           whether we can use G_GNUC_PRINTF in other header files and at
11220           least check the printf format/arguments of debug messages and
11221           GST_ELEMENT_ERROR messages when the printf extension is not
11222           being used.
11223           Replace more tabs with spaces in gstinfo.h and remove two spurious
11224           function declarations in GST_DISABLE_DEBUG part with macros.
11225
11226 2006-10-03  Tim-Philipp Müller  <tim at centricular dot net>
11227
11228         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_post):
11229           More docs for the sync-message signal (mention that it is not
11230           emitted by default); log message structures of messages posted on
11231           the bus as well.
11232
11233 2006-10-03  Jan Schmidt  <thaytan@mad.scientist.com>
11234
11235         * gst/gst.c: (ensure_current_registry_forking):
11236         Use a pipe pair to receive status results from the forked child, and
11237         ignore the result from waitpid. Fixes #355499
11238
11239 2006-10-02  Wim Taymans  <wim@fluendo.com>
11240
11241         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
11242         (gst_ghost_pad_suite):
11243         Fix leak in check.
11244
11245 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
11246
11247         * gst/gstpad.c:
11248           Add 'Since: 0.10.11' to gst_pad_is_blocking() gtk-doc blurb.
11249
11250 2006-10-02  Edward Hervey  <edward@fluendo.com>
11251
11252         * docs/design/part-block.txt:
11253         Further explain the use of flushing on blocked pads.
11254         * docs/gst/gstreamer-sections.txt:
11255         * gst/gstpad.c: (gst_pad_is_blocking), (handle_pad_block),
11256         (gst_pad_push_event):
11257         * gst/gstpad.h:
11258         Added new GstPadFlag : GST_PAD_BLOCKING.
11259         Adds the notion of pads really blocking, which enables to properly
11260         handle FLUSH_START/FLUSH_STOP events on blocked pads.
11261         Fixes #358999
11262         API: gst_pad_is_blocking()
11263         API: GST_PAD_IS_BLOCKING() macro
11264         API: GST_PAD_BLOCKING GstPadFlag
11265         
11266 2006-10-02  Wim Taymans  <wim@fluendo.com>
11267
11268         Patch by: mrcgran <mrc.gran at gmail dot com>
11269
11270         * gst/gstghostpad.c: (gst_proxy_pad_do_getcaps):
11271         Filter the proxied caps against the padtemplate if we have one.
11272
11273         * gst/gstquery.c: (gst_query_new_segment):
11274         Add include for gstinfo.h so that compilation with
11275         -DGST_DISABLE_GST_DEBUG works again. Fixes #358436.
11276
11277 2006-10-02  Wim Taymans  <wim@fluendo.com>
11278
11279         Patch by: Alessandro Decina  <alessandro at nnva org>
11280
11281         * plugins/elements/gstfilesink.c: (gst_file_sink_init),
11282         (gst_file_sink_set_location), (gst_file_sink_open_file),
11283         (gst_file_sink_close_file), (gst_file_sink_event),
11284         (gst_file_sink_render):
11285         Set file to NULL when closing filesink so that we can set a new filename
11286         in READY. Fixes #358613.
11287
11288 2006-10-02  Tim-Philipp Müller  <tim at centricular dot net>
11289
11290         Patch by: Alessandro Decina  <alessandro at nnva org>
11291
11292         * gst/gstevent.c: (_gst_event_copy):
11293           Fix gst_mini_object_make_writable() and gst_event_copy() for events
11294           with event structures by setting the parent refcount address of the
11295           copied structure to the address of the refcount member of the newly
11296           copied event rather than the address of the refcount member of the
11297           original event. Fixes #358737.
11298
11299         * tests/check/gst/gstevent.c: (GST_START_TEST):
11300           Unit test for the above.
11301
11302 2006-09-29  Stefan Kost  <ensonic@users.sf.net>
11303
11304         * docs/design/Makefile.am:
11305           Dist some more files.
11306
11307 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
11308
11309         * tests/check/libs/controller.c: (GST_START_TEST),
11310         (gst_controller_suite):
11311           Add test for the previous fix; add some more tests
11312           for correct refcounting behaviour; fix a few leaks
11313           in test cases; call gst_controller_init() at start
11314           of all tests.
11315
11316 2006-09-29  Tim-Philipp Müller  <tim at centricular dot net>
11317
11318         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
11319         (gst_controller_set_from_list):
11320           Don't g_return_val_if_fail() on timed values with invalid timestamps
11321           inside a critical section without unlocking the mutex. Spotted by
11322           René Stadler. (#357617)
11323           Also, fix up refcounting properly: when returning an existing
11324           controller, we should increase the reference only once and not
11325           once per property and when trying to control a property again
11326           we should also increase the refcount.
11327
11328 2006-09-29  Wim Taymans  <wim@fluendo.com>
11329
11330         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
11331         * libs/gst/net/gstnettimeprovider.c:
11332         (gst_net_time_provider_thread):
11333         Stop reading commands when EOF as well.
11334
11335         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init):
11336         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init):
11337         * plugins/elements/gstidentity.c: (gst_identity_class_init):
11338         Unify description of the dump property.
11339
11340 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
11341
11342         * tests/examples/manual/.cvsignore:
11343         OK, so it's actually cvsignore that needs changing. Stop laughing.
11344
11345 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
11346
11347         * tests/examples/manual/Makefile.am:
11348         Gah, declare vars *before* using them
11349
11350 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
11351
11352         * gst/gst.c: (init_pre), (scan_and_update_registry),
11353         (ensure_current_registry_nonforking),
11354         (ensure_current_registry_forking), (ensure_current_registry),
11355         (init_post), (gst_debug_help), (gst_deinit):
11356         * gst/gst_private.h:
11357         * gst/gstregistry.c: (gst_registry_finalize),
11358         (gst_registry_remove_features_for_plugin_unlocked),
11359         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
11360         (gst_registry_scan_path),
11361         (_priv_gst_registry_remove_cache_plugins),
11362         (_priv_gst_registry_cleanup):
11363         * gst/gstregistry.h:
11364         Re-commit the registry changes, along with an extra fix:
11365           When a cached plugin is encountered at a different file path,
11366           update the stored path in the registry cache so that the parent
11367           process knows where it actually is now when it re-reads the registry
11368           cache. Fixes the thing that broke distcheck with the previous commit.
11369
11370         * tests/check/Makefile.am:
11371         Clean up files named 'core' too when running make clean.
11372
11373         * tests/examples/manual/Makefile.am:
11374         Set up a registry path for running these tests, and clean it properly
11375         for distcheck.
11376
11377 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
11378
11379         * configure.ac:
11380         Don't pull in gmodule-2.0.pc as a dependency in our .pc files - we
11381         want gmodule-no-export-2.0.pc instead so that we don't drag in
11382         --export-dynamic on every project that links to GStreamer.
11383
11384         Also, make our export regex only match the start of symbols, rather 
11385         than any symbol that contains '_gst' somewhere.
11386
11387         * libs/gst/check/Makefile.am:
11388         The libgstcheck we build does however need export-dynamic, as it
11389         produces some symbols that don't match our _gst... style regex.
11390         Fixes: #318031
11391
11392 2006-09-27  Jan Schmidt  <thaytan@mad.scientist.com>
11393
11394         * gst/gst.c: (init_pre), (scan_and_update_registry),
11395         (ensure_current_registry_nonforking),
11396         (ensure_current_registry_forking), (ensure_current_registry),
11397         (init_post), (gst_debug_help), (gst_deinit):
11398         * gst/gst_private.h:
11399         * gst/gstregistry.c: (gst_registry_finalize),
11400         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
11401         (gst_registry_scan_path), (_gst_registry_remove_cache_plugins),
11402         (_gst_registry_cleanup):
11403         * gst/gstregistry.h:
11404           Revert previous change until I figure out why it breaks distcheck.
11405
11406 2006-09-27  Jan Schmidt  <thaytan@mad.scientist.com>
11407
11408         * gst/gst.c: (init_pre), (scan_and_update_registry),
11409         (ensure_current_registry_nonforking),
11410         (ensure_current_registry_forking), (ensure_current_registry),
11411         (init_post), (gst_debug_help), (gst_deinit):
11412
11413           Make init_pre and init_post take the full complement of GOptionFunc
11414           args so they can return useful GErrors. Make the registry updating
11415           functions do so.
11416
11417           Call _priv_gst_registry_remove_cache_plugins after scanning files to
11418           ensure that the registry we're about to write out doesn't contain
11419           stale information about old-deleted plugin files.
11420
11421           Make _priv_gst_registry_remove_cache_plugins return a boolean so
11422           that deletion of plugin files is considered a registry change.
11423
11424         * gst/gst_private.h:
11425         * gst/gstregistry.c: (gst_registry_finalize),
11426         (gst_registry_remove_features_for_plugin_unlocked),
11427         (gst_registry_remove_plugin), (gst_registry_scan_path_level),
11428         (gst_registry_scan_path),
11429         (_priv_gst_registry_remove_cache_plugins),
11430         (_priv_gst_registry_cleanup):
11431         * gst/gstregistry.h:
11432         Rename _gst_registry_remove_cache_plugins and _gst_registry_cleanup
11433         by adding _priv prefix, so that they won't appear in the global
11434         symbol table. They still do atm though because of #318031. Move the
11435         prototypes to gst_private.h
11436
11437         When removing a plugin, remove all features for that plugin too. 
11438         Fixes #340878.
11439
11440 2006-09-27  Wim Taymans  <wim@fluendo.com>
11441
11442         * docs/random/moving-plugins:
11443         Make it clear that the "compiled-in descriptions" really mean
11444         the element details.
11445
11446         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
11447         (gst_base_sink_wait_preroll):
11448         Update docs.
11449
11450         * docs/libs/gstreamer-libs-sections.txt:
11451         * libs/gst/base/gstbasesrc.c: (gst_base_src_wait_playing),
11452         (gst_base_src_get_range), (gst_base_src_activate_push):
11453         * libs/gst/base/gstbasesrc.h:
11454         Added function to block while waiting for PLAYING, this function
11455         is used by live sources that block on the clock.
11456         API: gst_base_src_wait_playing()
11457
11458 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
11459
11460         Patch by: Peter Kjellerstedt <pkj at axis com>
11461
11462         * Makefile.am:
11463           gst-element-check.m4 is generated and should therefore be
11464           copied from the build dir rather than the source dir (#357593).
11465           'make distcheck' hasn't noticed this because we were disting
11466           the file as well, so stop doing that.
11467
11468 2006-09-27  Tim-Philipp Müller  <tim at centricular dot net>
11469
11470         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
11471           Add some tests for gst_caps_intersect().
11472
11473         * tools/gst-launch.c: (event_loop):
11474           Print all buffering percentages we get, even the 100% one.
11475
11476 2006-09-26  Wim Taymans  <wim@fluendo.com>
11477
11478         * tools/gst-inspect.c: (print_element_properties_info),
11479         (print_signal_info):
11480         Fix printing of flags to match the look of enums.
11481
11482 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11483
11484         * gst/gstelementfactory.c:
11485           Fix typo in docs blurb.
11486
11487 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11488
11489         * gst/gsturi.c: (search_by_entry):
11490           Don't assert/crash here if a uri handler doesn't return any
11491           supported protocols. The list of protocols could be generated
11492           dynamically at runtime or at plugin registration, and an error
11493           in the underlying library shouldn't be fatal (#353301).
11494
11495 2006-09-25  Tim-Philipp Müller  <tim at centricular dot net>
11496
11497         * gst/gstinfo.c:
11498           Fix warning if HAVE_PRINTF_EXTENSION is undefined
11499           (spotted by Peter Kjellerstedt).
11500
11501 2006-09-23  Wim Taymans  <wim@fluendo.com>
11502
11503         Based on patch by: Antoine Tremblay <hexa00 at gmail dot com>
11504
11505         * libs/gst/base/gstbasesrc.c:
11506         (gst_base_src_default_check_get_range), (gst_base_src_start),
11507         (gst_base_src_activate_push), (gst_base_src_activate_pull),
11508         (gst_base_src_change_state):
11509         Match _start/_stop calls in the activate functions. Remove redundant
11510         _stop call from the state change function. Fixes #356910.
11511         Turn failure DEBUG into ERROR. 
11512
11513 2006-09-22  Wim Taymans  <wim@fluendo.com>
11514
11515         * docs/design/part-buffering.txt:
11516         * gst/gstmessage.c: (gst_message_new_buffering),
11517         (gst_message_parse_buffering):
11518         Update docs about buffering.
11519
11520         * docs/design/part-trickmodes.txt:
11521         Fix typo.
11522
11523 2006-09-22  Stefan Kost  <ensonic@users.sf.net>
11524
11525         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
11526         (gst_controller_new_list):
11527           Ref instances when returning them again (fixes #357180)
11528
11529 2006-09-22  Tim-Philipp Müller  <tim at centricular dot net>
11530
11531         * gst/gstghostpad.c: (gst_ghost_pad_set_target):
11532           Don't forget to release proxy lock when there's an error.
11533
11534 2006-09-20  Jan Schmidt  <thaytan@mad.scientist.com>
11535
11536         * gst/gstcaps.h:
11537           Add extra initialisers for Caps things, to fix some plugin warnings
11538           when using -Wextra
11539
11540 2006-09-18  Wim Taymans  <wim@fluendo.com>
11541
11542         * gst/gstghostpad.c: (gst_ghost_pad_new_full):
11543           Also set template on the internal pad so that a getcaps from the 
11544           target pad returns the template caps.
11545
11546 2006-09-18  Wim Taymans  <wim@fluendo.com>
11547
11548         * gst/gstelement.c: (gst_element_post_message),
11549         (gst_element_dispose):
11550         Use _DEBUG_OBJECT some more.
11551
11552         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
11553         Avoid typechecks.
11554
11555         * tools/gst-launch.c: (main):
11556         If the toplevel element is not a GstPipeline, it must be put in a
11557         pipeline so that a bus and clock is selected.
11558
11559 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
11560
11561         * libs/gst/base/gstbasesrc.c: (gst_base_src_default_query):
11562           JITTER, RATE, and LATENCY query should be handled by the
11563           default case and not by the CONVERT query code.
11564
11565 2006-09-17  Tim-Philipp Müller  <tim at centricular dot net>
11566
11567         * gst/gstformat.c: (gst_format_register):
11568           Fix locking order (must take lock before using n_values).
11569
11570         * gst/gstvalue.c: (gst_value_serialize_enum),
11571         (gst_value_deserialize_enum_iter_cmp),
11572         (gst_value_deserialize_enum):
11573           Fix serialisation/deserialisation of custom registered GstFormats.
11574
11575         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
11576           Unit test for custom format serialisation/deserialisation.
11577
11578 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
11579
11580         * docs/pwg/building-boiler.xml:
11581         * plugins/elements/gstcapsfilter.c:
11582         More G_OBJECT macro fixing. Also Fix some details on the plugin-stamp
11583         section.
11584
11585 2006-09-16  Edward Hervey  <edward@fluendo.com>
11586
11587         * libs/gst/base/gstbasetransform.c:
11588         (gst_base_transform_buffer_alloc):
11589         Check if requested caps are the same as the sinks caps IF
11590         ->have_same_caps is TRUE. If they are not, act as if have_same_caps
11591         is FALSE.
11592         This fixes the renegotiation issues stated in #352827.
11593
11594 2006-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11595
11596         * configure.ac:
11597         * docs/manual/advanced-autoplugging.xml:
11598         * tests/examples/Makefile.am:
11599         * tests/examples/manual/.cvsignore:
11600         * tests/examples/manual/Makefile.am:
11601         * tests/examples/manual/extract.pl:
11602           Extract the manual examples again like we used to do.
11603           Fix one of them.
11604
11605 2006-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
11606
11607         * win32/common/config.h:
11608           update for version
11609
11610 2006-09-16  Stefan Kost  <ensonic@users.sf.net>
11611
11612         * gst/gsterror.c:
11613           Documents how to receive errors.
11614
11615 2006-09-15  Wim Taymans  <wim@fluendo.com>
11616
11617         * tools/gst-launch.c: (sigint_handler_sighandler), (check_intr),
11618         (event_loop), (main):
11619         Added some comments here and there.
11620         Post an application message when an interrupt is caught instead of doing
11621         an uncontrolled state change.
11622         Clean up the event loop.
11623         Handle buffering messages, pause/resume the pipeline.
11624         Make shutdown because of an interrupt more reliable.
11625
11626 2006-09-15  Wim Taymans  <wim@fluendo.com>
11627
11628         * libs/gst/base/gstbasesink.c: (gst_base_sink_commit_state),
11629         (gst_base_sink_wait_preroll), (gst_base_sink_do_sync),
11630         (gst_base_sink_preroll_object):
11631         Make sure that our internal state is correct when we commit our state
11632         asynchronously. This solves a race where a state change to PLAYING
11633         could cause the sink to remain blocked in preroll in some situations.
11634
11635 2006-09-15  Wim Taymans  <wim@fluendo.com>
11636
11637         * tools/gst-inspect.c: (print_element_properties_info),
11638         (print_signal_info):
11639         List flags as hex so it's easier to deal with.
11640
11641 2006-09-15  Wim Taymans  <wim@fluendo.com>
11642
11643         * docs/libs/gstreamer-libs-sections.txt:
11644         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_preroll),
11645         (gst_base_sink_do_sync):
11646         * libs/gst/base/gstbasesink.h:
11647         Expose logic to wait for preroll so that subclasses such as audiosink
11648         can also use this method.
11649         API: gst_base_sink_wait_preroll()
11650
11651 2006-09-15  Wim Taymans  <wim@fluendo.com>
11652
11653         * gst/gstobject.c: (gst_object_set_parent):
11654         * gst/gstpipeline.c: (do_pipeline_seek):
11655         Small cleanups in docs and code.
11656
11657         * gst/gstsegment.c: (gst_segment_clip):
11658         * tests/check/gst/gstsegment.c: (GST_START_TEST):
11659         if stop == start and start is in the segment, no clipping should be
11660         done. Also add a test for this.
11661
11662 2006-09-15  Wim Taymans  <wim@fluendo.com>
11663
11664         * docs/design/part-buffering.txt:
11665         * docs/gst/gstreamer-sections.txt:
11666         * gst/gstmessage.c: (gst_message_new_buffering),
11667         (gst_message_parse_buffering):
11668         * gst/gstmessage.h:
11669         Added methods to create and parse BUFFERING messages.
11670         Added preliminary docs about buffering.
11671         API: gst_message_new_buffering
11672         API: gst_message_parse_buffering
11673
11674 2006-09-06  Wim Taymans  <wim@fluendo.com>
11675
11676         * gst/gstbin.c:
11677         Update documentation.
11678
11679         * gst/gstelement.c: (gst_element_class_init),
11680         (gst_element_release_request_pad), (gst_element_set_clock),
11681         (gst_element_get_index), (gst_element_add_pad),
11682         (gst_element_remove_pad), (gst_element_get_random_pad),
11683         (gst_element_send_event), (gst_element_get_query_types),
11684         (gst_element_query), (gst_element_post_message),
11685         (gst_element_message_full), (gst_element_continue_state),
11686         (gst_element_lost_state), (gst_element_save_thyself),
11687         (gst_element_restore_thyself):
11688         Documentation updates.
11689         Rename last bit of the new-pad -> pad-added signal rename.
11690         Fix the case where an element query would only work if the source
11691         pad was linked.
11692         Avoid some useless type checking in message handling.
11693
11694         * gst/gstevent.c:
11695         * gst/gstevent.h:
11696         * gst/gstutils.c:
11697         Documentation updates.
11698
11699 2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11700
11701         * plugins/elements/gstfdsrc.c: (gst_fd_src_update_fd):
11702           add an INFO line for when we actually update the fd
11703
11704 2006-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
11705
11706         * configure.ac:
11707           back to TRUNK
11708
11709 === release 0.10.10 ===
11710
11711 2006-09-14  Thomas Vander Stichele <thomas at apestaart dot org>
11712
11713         * configure.ac:
11714           releasing 0.10.10, "Pais"
11715
11716 2006-09-05  Tim-Philipp Müller  <tim at centricular dot net>
11717
11718         * docs/manual/advanced-position.xml:
11719           Fix typo in sample code.
11720
11721 2006-09-05  Wim Taymans  <wim@fluendo.com>
11722
11723         * libs/gst/net/gstnetclientclock.c: (inet_aton),
11724         (gst_net_client_clock_init), (gst_net_client_clock_finalize),
11725         (gst_net_client_clock_do_select), (gst_net_client_clock_new):
11726         * libs/gst/net/gstnetclientclock.h:
11727         * libs/gst/net/gstnettimepacket.c: (gst_net_time_packet_send):
11728         * libs/gst/net/gstnettimepacket.h:
11729         * libs/gst/net/gstnettimeprovider.c: (inet_aton),
11730         (gst_net_time_provider_init), (gst_net_time_provider_finalize),
11731         (gst_net_time_provider_thread), (gst_net_time_provider_new):
11732         * libs/gst/net/gstnettimeprovider.h:
11733         Make stuff compile on windows. Fixes #345295.
11734
11735 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
11736
11737         * gst/gst.c: (ensure_current_registry_forking):
11738           Print better details when child was terminated by signal.
11739
11740 2006-09-03  Tim-Philipp Müller  <tim at centricular dot net>
11741
11742         * gst/gstregistryxml.c: (gst_registry_xml_save_feature):
11743           Print a warning rather than g_assert() if a plugin feature
11744           is a URI handler but returns no protocols (#353976).
11745
11746 2006-09-02  Stefan Kost  <ensonic@users.sf.net>
11747
11748         * docs/random/moving-plugins:
11749         Fix two typos.         
11750
11751 2006-09-01  Tim-Philipp Müller  <tim at centricular dot net>
11752
11753         * gst/gstinfo.c: (_gst_debug_nameof_funcptr):
11754           Fix locking order, handle NULL function values properly.
11755
11756         * gst/gstinfo.h:
11757           Fix docs.
11758
11759         * gst/gstpad.c: (gst_pad_buffer_alloc_unchecked):
11760           Initialise variable before using it and fix debug statement to
11761           print the address of the function rather than the address of the
11762           variable on the stack holding the address of the function.
11763
11764 2006-09-01  Wim Taymans  <wim@fluendo.com>
11765
11766         * gst/gstghostpad.c: (gst_proxy_pad_do_event),
11767         (gst_proxy_pad_do_bufferalloc), (gst_proxy_pad_do_chain),
11768         (gst_proxy_pad_do_getrange), (gst_proxy_pad_do_checkgetrange),
11769         (gst_proxy_pad_set_target_unlocked), (gst_ghost_pad_parent_set),
11770         (gst_ghost_pad_parent_unset),
11771         (gst_ghost_pad_internal_do_activate_push),
11772         (gst_ghost_pad_internal_do_activate_pull),
11773         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
11774         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
11775         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
11776         (gst_ghost_pad_new_full), (gst_ghost_pad_new_no_target),
11777         (gst_ghost_pad_new), (gst_ghost_pad_new_from_template),
11778         (gst_ghost_pad_new_no_target_from_template),
11779         (gst_ghost_pad_get_target), (gst_ghost_pad_set_target):
11780         More cleanups.
11781         Avoid needless typechecking in macros.
11782         Since the internal pad is always present and never changes, there is
11783         no need to locking or ref when retrieving it.
11784         Improve debugging a bit.
11785         Handle link errors when setting the target. Fixes #341029.
11786
11787 2006-09-01  Wim Taymans  <wim@fluendo.com>
11788
11789         * docs/libs/gstreamer-libs-sections.txt:
11790         * docs/plugins/gstreamer-plugins-sections.txt:
11791         Fix docs some more.
11792
11793         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
11794         (gst_collect_pads_event):
11795         * libs/gst/base/gstcollectpads.h:
11796         Documentation updates.
11797         Free queued buffer when removing a pad.
11798
11799 2006-08-31  Michael Smith  <msmith@fluendo.com>
11800
11801         * gst/gstutils.c: (gst_element_link_pads),
11802         (gst_element_link_pads_filtered):
11803           Ensure that we set a capsfilter to NULL if we failed to link it
11804           when doing filtered linking, to avoid criticals.
11805
11806           No need to check for unreffing srcpad, which is explicly NULLed
11807           above (a trivial code cleanup).
11808
11809 2006-08-31  Wim Taymans  <wim@fluendo.com>
11810
11811         * docs/design/part-gstghostpad.txt:
11812         Update ascii art in documentation.
11813
11814         * gst/gstghostpad.c: (gst_proxy_pad_do_internal_link),
11815         (gst_proxy_pad_set_target_unlocked), (gst_proxy_pad_init),
11816         (gst_ghost_pad_parent_set), (gst_ghost_pad_parent_unset),
11817         (gst_ghost_pad_internal_do_activate_push),
11818         (gst_ghost_pad_internal_do_activate_pull),
11819         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
11820         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
11821         (gst_ghost_pad_dispose), (gst_ghost_pad_new_full),
11822         (gst_ghost_pad_set_target):
11823         Small cleanups and leak fixes.
11824         Remove some checks now that the internal pad is never NULL.
11825         Fix the case where linking pads without a target would create nasty
11826         criticals. Fixes #341029.
11827         Don't assign a GstPadLinkReturn to a gboolean and mess up the return
11828         value of _set_target().
11829
11830         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
11831         (gst_ghost_pad_suite):
11832         Some more tests for creating and linking untargeted ghostpads.
11833
11834 2006-08-31  Edward Hervey  <edward@fluendo.com>
11835
11836         * docs/gst/gstreamer-sections.txt:
11837         * gst/gstghostpad.c: (gst_proxy_pad_do_getcaps),
11838         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target_unlocked),
11839         (gst_proxy_pad_dispose), (gst_ghost_pad_new_full),
11840         (gst_ghost_pad_new_no_target), (gst_ghost_pad_new),
11841         (gst_ghost_pad_new_from_template),
11842         (gst_ghost_pad_new_no_target_from_template):
11843         * gst/gstghostpad.h:
11844         Refactored *_new() functions.
11845         Templates are now used as a g_object_new() parameter.
11846         Use template in _do_getcaps() if we don't have a target.
11847         Small documentation cleanups.
11848         Added two new constructors:
11849         gst_ghost_pad_new_from_template()
11850         gst_ghost_pad_new_no_target_from_template()
11851         * tests/check/gst/gstghostpad.c: (GST_START_TEST),
11852         (gst_ghost_pad_suite):
11853         Added tests for new ghostpad instanciation functions.
11854
11855         API additions: gst_ghost_pad_new_from_template,
11856         gst_ghost_pad_new_no_target_from_template
11857
11858 2006-08-30  Stefan Kost  <ensonic@users.sf.net>
11859
11860         * docs/random/ensonic/profiling.txt:
11861           Ideas about qos profiling.
11862
11863 2006-08-29  Wim Taymans  <wim@fluendo.com>
11864
11865         * gst/gstcaps.c: (gst_caps_structure_is_subset_field):
11866         Code cleanups.
11867         Fix memleak.
11868
11869 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
11870
11871         * gst/gstxml.c:
11872           Improve and detypofy docs.
11873
11874         * tests/check/Makefile.am:
11875         * tests/check/gst/.cvsignore:
11876         * tests/check/gst/gstxml.c: (GST_START_TEST), (gst_xml_suite):
11877           Add a basic test suite for GstXML.
11878
11879 2006-08-29  Wim Taymans  <wim@fluendo.com>
11880
11881         * gst/gstelement.c: (activate_pads), (clear_caps),
11882         (iterator_activate_fold_with_resync), (gst_element_pads_activate):
11883         Clear the pad caps when the element shut down all of the pads and
11884         is not streaming data that could modify the caps. 
11885         Fixes #352958.
11886
11887 2006-08-28  Michael Smith  <msmith@fluendo.com>
11888
11889         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
11890           Revert previous change; I misunderstood single-segment mode.
11891
11892 2006-08-28  Michael Smith  <msmith@fluendo.com>
11893
11894         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
11895           Unset DISCONT on buffers when using single-segment mode.
11896
11897 2006-08-28  Wim Taymans  <wim@fluendo.com>
11898
11899         * gst/gstcaps.c: (gst_caps_merge_structure):
11900         * gst/gstcaps.h:
11901         Fix docs and indentation again.
11902
11903         * tests/check/gst/gstquery.c: (GST_START_TEST):
11904         Fix leak in tests and add some more tests.
11905
11906 2006-08-28  Edward Hervey  <edward@fluendo.com>
11907
11908         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
11909         Inform GstSegment of the last stop position in order for the current
11910         segment to have a proper duration if it doesn't have a specific stop
11911         position from which a duration could be calculated.
11912         This bug was noticeable when a non-flushing, non-update new segment was
11913         followed by another segment (all buffers from the new segment were being
11914         dropped).
11915
11916 2006-08-28  Wim Taymans  <wim@fluendo.com>
11917
11918         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek):
11919         Small comment update.
11920
11921         * plugins/elements/gstidentity.c: (gst_identity_class_init),
11922         (gst_identity_transform_ip):
11923         Drop-probability is broken, mention this in the code with a 
11924         FIXME and also in the property description.
11925         Make silent also be silent about the drop messages.
11926
11927 2006-08-28  Tim-Philipp Müller  <tim at centricular dot net>
11928
11929         * docs/manual/appendix-win32.xml:
11930           Remove mention of popt, we don't depend on that any
11931           longer (#353136). Add some comments pointing out that
11932           this section is slightly outdated.
11933
11934 2006-08-28  Wim Taymans  <wim@fluendo.com>
11935
11936         Patch by: Torsten Schoenfeld <kaffeetisch at gmx dot de>
11937
11938         * gst/gstquery.c: (gst_query_new_segment):
11939         * tests/check/gst/gstquery.c: (GST_START_TEST):
11940         Initialize variables when creating a new segment query.
11941         Fixes #353121.
11942
11943 2006-08-28  Wim Taymans  <wim@fluendo.com>
11944
11945         Patch by: Torsten Schoenfeld <kaffeetisch at gmx dot de>
11946
11947         * gst/gstelement.c: (gst_element_get_bus):
11948         * tests/check/gst/gstelement.c: (GST_START_TEST):
11949         Check for NULL before _reffing the bus. Fixes #353122.
11950
11951 2006-08-25  Tim-Philipp Müller  <tim at centricular dot net>
11952
11953         * docs/manual/basics-bus.xml:
11954           Docs update: fix wrong callback return value explanation; add
11955           some lines about the implicit relationship between main loop
11956           and main context; remove duplicate main loop variable declaration.
11957
11958 2006-08-24  Tim-Philipp Müller  <tim at centricular dot net>
11959
11960         * tests/check/gst/gstcaps.c: (GST_START_TEST):
11961           Don't leak caps in unit test; add a few more simple
11962           checks. 
11963
11964 2006-08-24  Stefan Kost  <ensonic@users.sf.net>
11965
11966         * docs/gst/gstreamer-sections.txt:
11967         * gst/gstcaps.c: (gst_caps_structure_is_subset_field),
11968         (gst_caps_structure_is_subset), (gst_caps_merge),
11969         (gst_caps_merge_structure):
11970         * gst/gstcaps.h:
11971         * libs/gst/base/gstbasetransform.c:
11972         (gst_base_transform_transform_caps):
11973         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
11974           implement caps merging (fixes #352580)
11975
11976 2006-08-23  Stefan Kost  <ensonic@users.sf.net>
11977
11978         * tools/Makefile.am:
11979         * tools/gst-plot-timeline.py:
11980           add debug-log plotting developer tool (#340674)
11981
11982 2006-08-23  Wim Taymans  <wim@fluendo.com>
11983
11984         * gst/gstpad.c: (gst_pad_start_task), (gst_pad_pause_task),
11985         (gst_pad_stop_task):
11986         Improve debugging for task functions.
11987
11988         * gst/gsttask.c: (gst_task_func), (gst_task_set_lock),
11989         (gst_task_start), (gst_task_pause), (gst_task_join):
11990         Make sure that the task function started and finished after a 
11991         join(). 
11992         Don't try to push the task function on the threadpool multiple
11993         times.
11994         Improve the g_warning message with some useful suggestions
11995         about how to fix the problem. 
11996
11997 2006-08-23  Wim Taymans  <wim@fluendo.com>
11998
11999         * gst/gstutils.c: (gst_pad_proxy_getcaps):
12000         Handle RESYNC correctly in _proxy_getcaps.
12001
12002 2006-08-21  Tim-Philipp Müller  <tim at centricular dot net>
12003
12004         * gst/gstxml.c: (gst_xml_dispose), (gst_xml_parse_file),
12005         (gst_xml_parse_memory), (gst_xml_get_element):
12006           Chain up to parent class in dispose function and also
12007           unref the elements in the toplevel_elements GList.
12008           Don't leak XmlDocPtr in _parse_file() and _parse_memory().
12009           Always return a reference in gst_xml_get_element() rather
12010           than only sometimes.
12011
12012         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
12013           Don't leak GstXml object.
12014
12015 2006-08-21  Stefan Kost  <ensonic@users.sf.net>
12016
12017         * docs/gst/gstreamer-sections.txt:
12018         * gst/gstcaps.c: (gst_structure_is_equal_foreach),
12019         (gst_caps_merge):
12020         * gst/gstcaps.h:
12021         * libs/gst/base/gstbasetransform.c:
12022         (gst_base_transform_transform_caps):
12023           API: Add gst_caps_merge() and use it in basetransform, fixes #345444
12024           in a better way
12025
12026 2006-08-21  Edward Hervey  <edward@fluendo.com>
12027
12028         * gst/gstxml.c: (gst_xml_class_init), (gst_xml_dispose):
12029         Implement GObject::dispose virtual method in GstXML so we can free the
12030         top_elements GList.
12031
12032 2006-08-21  Wim Taymans  <wim@fluendo.com>
12033
12034         * gst/gstbuffer.c: (gst_buffer_make_metadata_writable),
12035         (gst_buffer_create_sub):
12036         Copy duration/offset_end/caps when creating a subbuffer of the
12037         complete parent.
12038         Make the subbuffer read-only when we make the metadata writable for
12039         now. Fixes #351768.
12040
12041         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
12042         Added check for metadata copy when creating subbuffers.
12043
12044 2006-08-21  Edward Hervey  <edward@fluendo.com>
12045
12046         * libs/gst/base/gstbasetransform.c:
12047         (gst_base_transform_buffer_alloc):
12048         Only call downstream buffer_alloc if transform element is passthrough
12049         or always_in_place. Closes #350449.
12050
12051 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12052
12053         * ChangeLog:
12054           ChangeLog surgery to add comments to previous changes
12055
12056 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12057
12058         * gst/gst.c:
12059           Add comments
12060
12061         * gst/gstpad.c: (gst_pad_set_active):
12062           Be more verbose in the log
12063
12064         * libs/gst/base/gstbasetransform.c:
12065         (gst_base_transform_transform_caps):
12066           Simplify caps to get rid of duplicates, fixes #345444
12067
12068 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12069
12070         * gst/gstvalue.c:
12071         * gst/gstvalue.h:
12072           Use these optimizations only internally.
12073
12074 2006-08-20  Stefan Kost  <ensonic@users.sf.net>
12075
12076         * gst/gstvalue.c: (gst_value_compare_list),
12077         (gst_value_compare_fraction_range),
12078         (gst_value_intersect_fraction_fraction_range),
12079         (gst_value_intersect_fraction_range_fraction_range),
12080         (gst_value_subtract_fraction_fraction_range),
12081         (gst_value_subtract_fraction_range_fraction_range),
12082         (gst_value_get_compare_func), (gst_value_compare),
12083         (gst_value_compare_with_func):
12084         * gst/gstvalue.h:
12085           Saves the expensive lookup of the compare function in many cases
12086          (#345444)
12087
12088 2006-08-18  Edward Hervey  <edward@fluendo.com>
12089
12090         * tests/check/gst/gstinfo.c: (gst_info_suite):
12091         Disable test that require gstdebug if it wasn't built in core.
12092
12093 2006-08-18  Stefan Kost  <ensonic@users.sf.net>
12094
12095         * docs/random/ensonic/logging.txt:
12096           update ideas
12097           
12098         * gst/gstinfo.c: (gst_debug_log_default):
12099           reorder fields, save some columns, add optional color codes for log
12100           levels
12101
12102 2006-08-18  Stefan Kost  <ensonic@users.sf.net>
12103
12104         * docs/random/ensonic/logging.txt:
12105           add ideas about making the logs a bit more useful
12106
12107 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
12108
12109         * docs/pwg/advanced-events.xml:
12110         * docs/pwg/titlepage.xml:
12111           Update for 0.10 API (#340627). Add myself
12112           to authors list.
12113
12114 2006-08-17  Tim-Philipp Müller  <tim at centricular dot net>
12115
12116         * docs/libs/gstreamer-libs-docs.sgml:
12117         * docs/libs/gstreamer-libs-sections.txt:
12118         * libs/gst/check/gstbufferstraw.c:
12119           Make gstcheck stuff show up in docs (still needs to
12120           be documented properly though).
12121
12122 2006-08-16  Jan Schmidt  <thaytan@mad.scientist.com>
12123
12124         * docs/gst/gstreamer-sections.txt:
12125         * gst/Makefile.am:
12126         * gst/gst.c: (init_post):
12127         * gst/gst_private.h:
12128         * gst/gstquark.c: (_priv_gst_quarks_initialize):
12129         * gst/gstquark.h:
12130         * gst/gstquery.c: (gst_query_new_position),
12131         (gst_query_set_position), (gst_query_parse_position),
12132         (gst_query_new_duration), (gst_query_set_duration),
12133         (gst_query_parse_duration), (gst_query_new_convert),
12134         (gst_query_set_convert), (gst_query_parse_convert),
12135         (gst_query_new_segment), (gst_query_set_segment),
12136         (gst_query_parse_segment), (gst_query_new_seeking),
12137         (gst_query_set_seeking), (gst_query_parse_seeking):
12138         Add internal helpers for pre-registering quarks from static strings
12139         and using the quark values directly instead of looking them up when
12140         creating and parsing queries. Can be used for event construction too.
12141         Closes #350432.
12142
12143 2006-08-16  Wim Taymans  <wim@fluendo.com>
12144
12145         * gst/gstbin.c:
12146         Fix bogus docs.
12147
12148 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12149
12150         * gst/gstutils.c: (gst_util_set_value_from_string):
12151           Fix memleak (#351502).
12152
12153         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
12154           Add unit test for most of gst_util_set_value_from_string()
12155           (not that one would want to encourage use of this function).
12156
12157 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12158
12159         * libs/gst/check/gstcheck.h:
12160           Use const gchar * variables in fail_unless_equals_string
12161           macro to avoid compiler warnings (and don't use tabs for
12162           indenting).
12163
12164 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12165
12166         * tools/gst-launch.c: (print_tag):
12167           More space on the left for the tag names, to cater
12168           for the 'extended comment' tag (not touching the
12169           string for the first line since it's translated).
12170
12171 2006-08-15  Tim-Philipp Müller  <tim at centricular dot net>
12172
12173         * libs/gst/check/gstcheck.h:
12174           Fix ASSERT_CRITICAL and ASSERT_WARNING macros to actually
12175           print something when they fail.
12176
12177 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
12178
12179         * docs/gst/gstreamer-sections.txt:
12180         * gst/gsttaglist.c: (_gst_tag_initialize):
12181         * gst/gsttaglist.h:
12182           API: add GST_TAG_EXTENDED_COMMENT (#350935).
12183           Also change merge function for GST_TAG_COMMENT to
12184           use_first.
12185
12186 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
12187
12188         * gst/gstinfo.c: (gst_debug_print_object):
12189           Make GST_PTR_FORMAT print messages as well.
12190
12191         * tests/check/gst/gstinfo.c: (printf_extension_log_func),
12192         (GST_START_TEST), (gst_info_suite):
12193           More tests.
12194
12195 2006-08-14  Edward Hervey  <edward@fluendo.com>
12196
12197         * gst/gstelementfactory.c: (gst_element_register):
12198         If the GstElementClass doesn't have a GstElementDetails with all fields
12199         filled up correctly (longname, description AND author), then error out
12200         nicely instead of crashing.
12201
12202 2006-08-14  Tim-Philipp Müller  <tim at centricular dot net>
12203
12204         * gst/gststructure.c:
12205           Fix typo in docs and re-wrap docs blurb to not exceed 80 chars/line.
12206
12207         * gst/gstvalue.h:
12208           Expand on the difference between arrays and lists as we use them.
12209           
12210 2006-08-14  Wim Taymans  <wim@fluendo.com>
12211
12212         * libs/gst/base/gstbasesrc.c: (gst_base_src_change_state):
12213         If the parent state change function failed, don't assume we can safely
12214         stop the source, this will be done when the pads are deactivated.
12215
12216 2006-08-14  Wim Taymans  <wim@fluendo.com>
12217
12218         * gst/gstbuffer.c:
12219         * gst/gsttask.c: (gst_task_join):
12220         Small doc updates.
12221
12222         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_activate_push),
12223         (gst_pad_stop_task):
12224         When pad (de)activation failed for some reason, restore the old
12225         activation mode and set the pad to flushing instead of assuming the
12226         pad is deactivated.
12227         If the _task_join() failed, reinstall the task on the pad so that it can
12228         be stopped later and return an error.
12229
12230 2006-08-11  Andy Wingo  <wingo@pobox.com>
12231
12232         * configure.ac:
12233         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packetizer_new):
12234         * tests/check/libs/gdp.c: (gst_dp_suite): GST_DISABLE_DEPRECATED
12235         is only for users of API that don't want to see deprecated
12236         functions in the headers; people that want to compile out
12237         deprecated code should pass -DGST_REMOVE_DEPRECATED into the
12238         CFLAGS. Fixes the build of multifdsink, or will soon..
12239
12240 2006-08-11  Wim Taymans  <wim@fluendo.com>
12241
12242         * docs/gst/gstreamer-sections.txt:
12243         Add GstClockClass vmethod docs.
12244
12245         * gst/gstcaps.h:
12246         Mark #endif with comment for associated #if
12247
12248         * gst/gstclock.c: (gst_clock_id_wait):
12249         * gst/gstclock.h:
12250         Add vmethod wait_jitter to avoid an unneeded _get_time() for
12251         most clock implementations.
12252         Document vmethods.
12253         Flesh out docs about resolution methods.
12254         API: GstClockClass::wait_jitter
12255
12256         * gst/gstsystemclock.c: (gst_system_clock_class_init),
12257         (gst_system_clock_async_thread),
12258         (gst_system_clock_id_wait_jitter_unlocked),
12259         (gst_system_clock_id_wait_jitter):
12260         Use base class wait_jitter variant for improved performance
12261         due to less clock polling.
12262
12263 2006-08-11  Edward Hervey  <edward@fluendo.com>
12264
12265         * gst/gst.c: (gst_init_check), (init_post):
12266         Set gst as being initialized before scanning/updating the registry,
12267         since there might be my python plugin loader that calls gst_init() and
12268         we don't want to loop back in.
12269         Closes #350879
12270
12271 2006-08-11  Wim Taymans  <wim@fluendo.com>
12272
12273         * docs/design/part-qos.txt:
12274         Bring docs in line with the code. Mostly the sign of the jitter was
12275         wrong in the docs. Fixes #349943.
12276
12277         * gst/gstclock.c:
12278         Fix the docs for the jitter.
12279
12280         * gst/gstevent.c: (gst_event_new_custom), (gst_event_new_tag),
12281         (gst_event_parse_tag), (gst_event_new_buffer_size),
12282         (gst_event_parse_buffer_size), (gst_event_parse_qos),
12283         (gst_event_new_seek), (gst_event_parse_seek),
12284         (gst_event_new_navigation):
12285         Make sure the GstStructure has no parent when creating custom
12286         events.
12287         Add some more argument checking so that we avoid 0.0 rates.
12288         Flesh out the docs for the QoS event some more.
12289
12290 2006-08-11  Wim Taymans  <wim@fluendo.com>
12291
12292         * docs/gst/gstreamer-sections.txt:
12293         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
12294         (ensure_current_registry_forking), (ensure_current_registry),
12295         (parse_one_option), (parse_goption_arg), (gst_deinit),
12296         (gst_registry_fork_is_enabled), (gst_registry_fork_set_enabled):
12297         * gst/gst.h:
12298         Doc updates.
12299         Added API and command line option to disable registry forking in
12300         addition to the environment variable.
12301         Constify some static arrays.
12302         Added some more debug.
12303         Don't deinit twice.
12304         API: gst_registry_fork_is_enabled()
12305         API: gst_registry_fork_set_enabled()
12306         API: --gst-disable-registry-fork command line option
12307         Fixes #348918.
12308
12309 2006-08-11  Tim-Philipp Müller  <tim at centricular dot net>
12310
12311         * gst/gst.c: (gst_init):
12312           Fix typo in error message.
12313
12314 2006-08-10  Stefan Kost  <ensonic@users.sf.net>
12315
12316         * libs/gst/controller/gstcontroller.h:
12317           fix ABI size-correction
12318
12319         * tests/check/libs/gdp.c: (gst_dp_suite):
12320           make tests that use deprecated API conditional
12321
12322 2006-08-10  Stefan Kost  <ensonic@users.sf.net>
12323
12324         * docs/libs/gstreamer-libs-sections.txt:
12325         * libs/gst/controller/gstcontroller.c:
12326         (_gst_controller_get_property), (_gst_controller_set_property),
12327         (_gst_controller_init), (_gst_controller_class_init):
12328         * libs/gst/controller/gstcontroller.h:
12329         * libs/gst/controller/gsthelper.c: (gst_object_get_control_rate),
12330         (gst_object_set_control_rate):
12331           API: add gst_object_{s,g}et_control_rate(), add private data section,
12332           fix docs
12333
12334         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packetizer_new):
12335         * libs/gst/dataprotocol/dataprotocol.h:
12336           add deprecation guards to make gtk-doc happy and allow disabling cruft
12337
12338 2006-08-09  Tim-Philipp Müller  <tim at centricular dot net>
12339
12340         * tests/check/Makefile.am:
12341         * tests/check/gst/.cvsignore:
12342           Let's enable the new unit test as well.
12343
12344 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
12345
12346         * configure.ac:
12347         * docs/gst/gstreamer-sections.txt:
12348         * gst/gstconfig.h.in:
12349         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_segment),
12350         (_gst_info_printf_extension_ptr),
12351         (_gst_info_printf_extension_segment):
12352           API: add GST_SEGMENT_FORMAT, which is a printf extension we
12353           register that lets us easily dump GstSegments into debug
12354           logs (#350419).
12355
12356         * tests/check/gst/gstinfo.c: (segment_printf_extension_log_func),
12357         (info_segment_format_printf_extension), (gst_info_suite):
12358           Add simple unit test that logs a bunch of different segments (not
12359           valgrinded at the moment because of leaks in
12360           gst_debug_add_log_function).
12361
12362 2006-08-09  Edward Hervey  <edward@fluendo.com>
12363
12364         * libs/gst/base/gstbasetransform.c:
12365         (gst_base_transform_buffer_alloc):
12366         Even if we can't figure out the proper format to request downstream,
12367         call buffer_alloc() downstream with the input parameters without setting
12368         the caps on the srcpad. This will force negotiation in the chain
12369         function.
12370         Closes #350449
12371
12372 2006-08-08  Edward Hervey  <edward@fluendo.com>
12373
12374         * gst/gstghostpad.c: (gst_ghost_pad_do_unlink):
12375         Unlinking from a pad without a target is now a perfectly valid case
12376         which should NOT raise an assertion.
12377         This case would happen if a linked ghostpad its target set to NULL after
12378         it was previously linked.
12379
12380 2006-08-08  Edward Hervey  <edward@fluendo.com>
12381
12382         * tests/check/libs/gdp.c:
12383         Also comment out the test (see below).
12384
12385 2006-08-08  Edward Hervey  <edward@fluendo.com>
12386
12387         * tests/check/libs/gdp.c: (gst_dp_suite):
12388         Use the architecture information from config.h and not gcc macros
12389         in order to properly disable a test that fails on PPC64.
12390
12391 2006-08-04  Tim-Philipp Müller  <tim at centricular dot net>
12392
12393         * gst/gstelement.c: (gst_element_remove_pad):
12394           Don't crash printing the warning if the pad has no parent.
12395
12396 2006-08-02  Wim Taymans  <wim@fluendo.com>
12397
12398         * libs/gst/dataprotocol/dataprotocol.c:
12399         (gst_dp_header_from_buffer_any), (gst_dp_packet_from_caps_any),
12400         (gst_dp_crc), (gst_dp_header_payload_length),
12401         (gst_dp_header_payload_type), (gst_dp_packet_from_event),
12402         (gst_dp_packet_from_event_1_0), (gst_dp_buffer_from_header),
12403         (gst_dp_caps_from_packet), (gst_dp_event_from_packet_0_2),
12404         (gst_dp_event_from_packet), (gst_dp_validate_header),
12405         (gst_dp_validate_payload):
12406         Make debug category static
12407         Constify the crc table.
12408         Do some more arg checking in public functions.
12409         Fix some docs and do some small cleanups.
12410
12411         * tests/check/libs/gdp.c: (GST_START_TEST), (gst_dp_suite):
12412         Add some more checks to see if GDP deals with bogus input.
12413
12414 2006-07-31  Wim Taymans  <wim@fluendo.com>
12415
12416         * gst/gstvalue.c: (gst_value_compare_list):
12417         Fix GstValueList comparison code. Fixes #347293.
12418
12419         * tests/check/gst/gstvalue.c: (GST_START_TEST):
12420         Check to test GstValueList comparison.
12421
12422 2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
12423
12424         * gst/gstelementfactory.c: (gst_element_factory_create):
12425         Remove unnecessary ref/unref pair
12426
12427         * gst/parse/grammar.y:
12428         Make sure to free the parse buffer on all code paths.
12429         Move a g_free up to the error handler where it's easier to see.
12430
12431         * tests/check/gst/gstevent.c: (test_event):
12432         Extending timeout for downstream travelling events to 10 seconds to
12433         hopefully avoid intermittent failure on the buildbots.
12434
12435         * tests/check/pipelines/parse-launch.c: (run_delayed_test):
12436         Don't manually set the state of the src element - it will happen as a
12437         natural consequence of the pipeline changing state, and that way it
12438         will do it in the right order too.
12439
12440 2006-07-31  Wim Taymans  <wim@fluendo.com>
12441
12442         * libs/gst/base/gstbasetransform.c:
12443         (gst_base_transform_buffer_alloc):
12444         Use OBJECT_LOCK and refcounting to get the pad caps in the
12445         buffer_alloc function because the caps could change while we are
12446         busy with them. Fixes #349105
12447
12448 2006-07-31  Wim Taymans  <wim@fluendo.com>
12449
12450         * gst/gstutils.c: (gst_pad_get_fixed_caps_func):
12451         Protect _PAD_CAPS with OBJECT_LOCK.
12452
12453 2006-07-31  Wim Taymans  <wim@fluendo.com>
12454
12455         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_dispose),
12456         (gst_pad_get_property), (gst_pad_activate_pull),
12457         (gst_pad_activate_push), (gst_pad_set_blocked_async),
12458         (gst_pad_set_activate_function),
12459         (gst_pad_set_activatepull_function),
12460         (gst_pad_set_activatepush_function), (gst_pad_set_chain_function),
12461         (gst_pad_set_getrange_function),
12462         (gst_pad_set_checkgetrange_function), (gst_pad_set_event_function),
12463         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
12464         (gst_pad_set_internal_link_function), (gst_pad_set_link_function),
12465         (gst_pad_set_unlink_function), (gst_pad_set_getcaps_function),
12466         (gst_pad_set_acceptcaps_function),
12467         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
12468         (gst_pad_set_bufferalloc_function), (gst_pad_link_check_hierarchy),
12469         (gst_pad_get_caps_unlocked), (gst_pad_get_caps),
12470         (gst_pad_peer_get_caps), (gst_pad_accept_caps),
12471         (gst_pad_peer_accept_caps), (gst_pad_set_caps),
12472         (gst_pad_configure_sink), (gst_pad_configure_src),
12473         (gst_pad_get_allowed_caps), (gst_pad_get_negotiated_caps),
12474         (gst_pad_buffer_alloc_unchecked), (gst_pad_alloc_buffer_full),
12475         (gst_pad_query), (gst_pad_load_and_link), (handle_pad_block),
12476         (gst_pad_chain_unchecked), (gst_pad_push), (gst_pad_get_range),
12477         (gst_pad_send_event):
12478         Use _DEBUG_OBJECT when it makes sense.
12479         Protect GST_PAD_CAPS with the OBJECT_LOCK.
12480         Small cleanups and code reflows.
12481         Avoid caps refcounting in _accept_caps.
12482         Refactor alloc_buffer so that the code performed on the peer is in a
12483         separate function. Also if the pad does not implement a buffer alloc
12484         function, we should still check if the pad is flushing before falling
12485         back to the default allocator.
12486
12487 2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
12488
12489         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
12490         Make all uses of identity and fakesink have silent=true to avoid
12491         serialising every passing data structure, which is breaking tests
12492         on FC4 for some unknown reason.
12493
12494 2006-07-30  Stefan Kost  <ensonic@users.sf.net>
12495
12496         * gst/parse/Makefile.am:
12497         * gst/parse/grammar.y:
12498         * gst/parse/parse.l:
12499           Reverted previous patch as it required to bump the flex dependency to
12500           2.5.31, where fc4/5 seem to ship only the ancient 2.5.4a :(
12501
12502 2006-07-30  Stefan Kost  <ensonic@users.sf.net>
12503
12504         Patch by: Marc-Andre Lureau <marcandre.lureau@gmail.com>
12505
12506         * gst/parse/Makefile.am:
12507         * gst/parse/grammar.y:
12508         * gst/parse/parse.l:
12509           push & pop the state of the lexer for reentrant use case
12510           Fixes #349180
12511
12512 2006-07-29  Tim-Philipp Müller  <tim at centricular dot net>
12513
12514         * libs/gst/base/gstbasesrc.h:
12515           Note in the docs that the ::newsegment vfunc is not actually used by
12516           GstBaseSrc.
12517
12518 2006-07-28  Wim Taymans  <wim@fluendo.com>
12519
12520         * libs/gst/base/gstcollectpads.c:
12521         (gst_collect_pads_set_flushing_unlocked), (gst_collect_pads_pop),
12522         (gst_collect_pads_clear), (gst_collect_pads_flush),
12523         (gst_collect_pads_event), (gst_collect_pads_chain):
12524         When flushing a pad, also clear the queued buffer so that we don't
12525         accidentally use it when we shouldn't.
12526         Fix leaks by inreffing incomming buffer.
12527         Flush out queued buffers in case of errors.
12528         Fixes #347452.
12529
12530 2006-07-28  Wim Taymans  <wim@fluendo.com>
12531
12532         * docs/random/phonon-gst:
12533         Random notes about a Phonon backend.
12534
12535 2006-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
12536
12537         * libs/gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
12538         Extra debug output
12539         * tests/check/libs/gdp.c: (gst_dp_suite):
12540         Take a whack at fixing the ppc compile using a different define to
12541         disable the broken test.
12542
12543         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
12544         Remove excess g_print()
12545
12546 2006-07-27  Jan Schmidt <thaytan@mad.scientist.com>
12547
12548         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
12549         Oops, meant to uncomment this line too to dampen the noise a bit.
12550
12551 2006-07-27  Jan Schmidt <thaytan@mad.scientist.com>
12552
12553         * gst/parse/grammar.y:
12554         * gst/parse/parse.l:
12555         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe),
12556         (GST_START_TEST), (parse_suite):
12557         Fix some of the leaks exposed by extending the parse-launch testsuite,
12558         and move the 3 I can't figure out into a separate test that won't run
12559         the pipelines unless the appropriate line is uncommented.
12560
12561 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
12562
12563         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
12564           Requesting 0 bytes before the end of the file should result in
12565           FLOW_OK and an empty buffer, not FLOW_UNEXPECTED. Thank you
12566           unit test.
12567
12568 2006-07-27  Wim Taymans  <wim@fluendo.com>
12569
12570         * gst/gstcaps.c: (gst_static_caps_get), (gst_caps_get_structure):
12571         Fix useless assert, a uint is always positive.
12572
12573         * gst/gststructure.c: (gst_structure_nth_field_name),
12574         (gst_structure_foreach), (gst_structure_map_in_place):
12575         Check input arguments for public functions to avoid obvious crashes.
12576
12577         * plugins/elements/gstfakesink.c: (gst_fake_sink_render):
12578         * plugins/elements/gstfakesink.h:
12579         Do less useless typechecking.
12580
12581 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
12582
12583         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init):
12584           Do not use mmap() by default since there are a number of error
12585           conditions that we would like to handle in a non-fatal way that
12586           will result in a SIGBUS if we use mmap(). Examples: external
12587           devices (USB harddrive, portable music player) being unplugged
12588           while in use; file on mounted CD/DVD that can't be read because
12589           the medium is partly damaged. Fixes #348455 and #348475.
12590
12591 2006-07-27  Jan Schmidt  <thaytan@mad.scientist.com>
12592
12593         * gst/gstquery.h:
12594         Delete unused and misleading define of GST_QUERY_TYPE_RATE_DEN -
12595         rates are a gdouble
12596
12597 2006-07-26  Stefan Kost  <ensonic@users.sf.net>
12598
12599         * gst/gstregistry.c:
12600           Move big documentation comment into class section header, so that it
12601           appears in the API docs.
12602
12603 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
12604
12605         * docs/gst/gstreamer-sections.txt:
12606         Oops. Commit the docs additions too for new API.
12607         Also, remove the mention of the non-existent GST_QUERY_TYPE_RATE_DEN
12608
12609 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
12610
12611         * gst/gststructure.c: (gst_structure_id_set),
12612         (gst_structure_id_set_valist):
12613         * gst/gststructure.h:
12614         Add API for setting values into structures without performing
12615         a quark lookup, if the appropriate quark is already known.
12616
12617         API: gst_structure_id_set
12618         API: gst_structure_id_set_valist
12619
12620         * gst/parse/grammar.y:
12621         * gst/parse/parse.l:
12622         Remove some dead code shown by the coverage information.
12623         Don't throw a critical g_warning when encountering a syntax error,
12624         just warn and let the normal error path handle it.
12625
12626         * plugins/elements/gstelements.c:
12627         Bump the rank of filesink up to PRIMARY so that it is preferred over
12628         gnomevfssink for file:// sink uri's
12629
12630         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe),
12631         (GST_START_TEST), (run_delayed_test),
12632         (gst_parse_test_element_base_init),
12633         (gst_parse_test_element_class_init), (gst_parse_test_element_init),
12634         (gst_parse_test_element_change_state),
12635         (gst_register_parse_element), (parse_suite):
12636         Beef up the tests for parse syntax to check that more error cases
12637         fail as they are supposed to. Increases the test coverage a bit.
12638
12639 2006-07-26  Tim-Philipp Müller  <tim at centricular dot net>
12640
12641         * docs/manual/basics-elements.xml:
12642           Fix gst_element_link() example.
12643
12644         * gst/gstutils.c:
12645           Mention in API docs that one should usually gst_bin_add()
12646           elements to a bin or pipeline before doing the linking.
12647           
12648 2006-07-26  Wim Taymans  <wim@fluendo.com>
12649
12650         * gst/gstbuffer.c: (gst_buffer_get_type), (gst_buffer_new),
12651         (gst_subbuffer_get_type), (gst_buffer_create_sub):
12652         Avoid function call for known types by keeping the buffer and
12653         subbuffer GType global.
12654
12655         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
12656         Random silly optimisations in read() path.
12657
12658 2006-07-26  Jan Schmidt  <thaytan@mad.scientist.com>
12659
12660         * tools/gst-launch.c: (main):
12661           If the top-level of the parse is a normal bin, it doesn't do the
12662           right logic to run as a top-level element, so place it inside a
12663           pipeline.
12664
12665 2006-07-25  Tim-Philipp Müller  <tim at centricular dot net>
12666
12667         * plugins/elements/gstfilesrc.c: (gst_file_src_set_property):
12668           Remove superfluous g_object_notify() calls, GObject does
12669           that for us automatically.
12670
12671 2006-07-25  Stefan Kost  <ensonic@users.sf.net>
12672
12673         * gst/gstinfo.h:
12674           on Win32, use dllspec to export the debug category symbols
12675
12676 2006-07-24  Tim-Philipp Müller  <tim at centricular dot net>
12677
12678         * gst/gsttaglist.c: (_gst_tag_initialize):
12679           Allow more than one GST_TAG_IMAGE per taglist.
12680
12681 2006-07-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12682
12683         * gst/gstminiobject.c:
12684           update docs
12685         * plugins/elements/gstfdsrc.c: (gst_fd_src_set_property),
12686         (gst_fd_src_create):
12687           log recurring events at LOG level
12688           add more debug for when the fd gets set
12689
12690 2006-07-21  Stefan Kost  <ensonic@users.sf.net>
12691
12692         * gst/gstparse.c: (gst_parse_launch):
12693           Also remove reentrance checks if flex is MT safe (#348179)
12694          Fix my empty ChangeLog entry below
12695
12696 2006-07-21  Andy Wingo  <wingo@pobox.com>
12697
12698         * docs/libs/gstreamer-libs-sections.txt: Attempt to pacify buildbot.
12699
12700         * libs/gst/check/Makefile.am
12701         (libgstcheck_@GST_MAJORMINOR@include_HEADERS)
12702         (libgstcheck_@GST_MAJORMINOR@_la_SOURCES): 
12703         * libs/gst/check/gstbufferstraw.h:
12704         * libs/gst/check/gstbufferstraw.c: Add some new hype testing
12705         functions, thus proving I am still a GStreamer haxor. OK I wrote
12706         them a long time ago, but anyways.
12707
12708 2006-07-21  Stefan Kost  <ensonic@users.sf.net>
12709
12710         * configure.ac:
12711         * gst/gstparse.c: (gst_parse_launch):
12712           Check for flex version and omit mutex if we have a MT save flex
12713           (fixes #348179)
12714
12715 2006-07-21  Wim Taymans  <wim@fluendo.com>
12716
12717         * gst/gstparse.c: (gst_parse_launch):
12718         Protect recursive calls to _parse with a recursive mutex
12719         and busy flag.
12720
12721 2006-07-21  Wim Taymans  <wim@fluendo.com>
12722
12723         * tests/check/gst/gstpad.c: (GST_START_TEST):
12724         Fix leak in test.
12725
12726 2006-07-20  Stefan Kost  <ensonic@users.sf.net>
12727
12728         * gst/gstparse.c: (gst_parse_launch):
12729           Do not hang on recursive usage of gst_parse_launch()
12730
12731 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
12732
12733         * gst/gsttaglist.c:
12734           Add some more docs, comments and FIXME 0.11s here and there
12735           and also fix some typos.
12736
12737 2006-07-20  Tim-Philipp Müller  <tim at centricular dot net>
12738
12739         * gst/gstsegment.h:
12740           Convert tabs to spaces for better readability. 
12741
12742 2006-07-20  Edward Hervey  <edward@fluendo.com>
12743
12744         * tests/check/libs/gdp.c: (gst_dp_suite):
12745         the test_buffer test fails at line 140 on ppc64 at the following
12746         check:
12747         fail_unless (GST_BUFFER_FLAG_IS_SET (newbuffer,
12748                 GST_BUFFER_FLAG_IN_CAPS),
12749                 "GST_BUFFER_IN_CAPS flag should have been copied !");
12750         See bug #348114 for more details.
12751
12752 2006-07-19  Tim-Philipp Müller  <tim at centricular dot net>
12753
12754         * docs/pwg/advanced-scheduling.xml:
12755         * gst/gstpad.c:
12756           Fix typos (#348000).
12757
12758 2006-07-18  Tim-Philipp Müller  <tim at centricular dot net>
12759
12760         * docs/pwg/intro-basics.xml:
12761           Fix wrong links (#347927).
12762
12763 2006-07-18  Stefan Kost  <ensonic@users.sf.net>
12764
12765         * gst/gstregistry.h:
12766         * gst/gstregistryxml.c: (load_feature),
12767         (gst_registry_xml_read_cache), (gst_registry_xml_save_feature):
12768         * win32/common/config.h:
12769           make --disable-index work (#342564)
12770
12771 2006-07-18  Wim Taymans  <wim@fluendo.com>
12772
12773         Patch by: Peter Kjellerstedt <pkj at axis dot com>
12774
12775         * gst/Makefile.am:
12776         * gst/gsttrace.h:
12777         The attached patch adds two missing defines to gsttrace.h when tracing
12778         is disabled.  It also corrects one existing define.
12779         Fixes #347756.
12780
12781 2006-07-17  Wim Taymans  <wim@fluendo.com>
12782
12783         * docs/gst/gstreamer-sections.txt:
12784         * gst/gst.c: (gst_segtrap_is_enabled), (gst_segtrap_set_enabled):
12785         * gst/gst.h:
12786         * gst/gstplugin.c: (_gst_plugin_fault_handler_restore):
12787         Add two functions to check and change the SIGSEGV behaviour
12788         when loading plugins.
12789         Don't mess with the SIGSEGV handler when we were told not to.
12790         Fixes #347794.
12791         API: gst_segtrap_is_enabled
12792         API: gst_segtrap_set_enabled
12793
12794 2006-07-14  Wim Taymans  <wim@fluendo.com>
12795
12796         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
12797         * tests/check/elements/filesrc.c: (GST_START_TEST):
12798         Revert fix for regression in #347408 after release.
12799
12800 2006-07-14  Tim-Philipp Müller  <tim at centricular dot net>
12801
12802         Patch by: Antoine Tremblay <hexa00 at gmail com>
12803
12804         * gst/gstutils.c: (gst_element_unlink):
12805           Free iterator when done (#347311).
12806
12807         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
12808           And add a test case for this.
12809
12810 2006-07-14  Jan Schmidt  <thaytan@mad.scientist.com>
12811
12812         * configure.ac:
12813         Bump nano back to CVS
12814
12815 === release 0.10.9 ===
12816
12817 2006-07-13  Jan Schmidt <thaytan@mad.scientist.com>
12818
12819         * configure.ac:
12820           releasing 0.10.9, "On the road again"
12821
12822 2006-07-13  Wim Taymans  <wim@fluendo.com>
12823
12824         * libs/gst/base/gstbasesrc.c: (gst_base_src_update_length):
12825         * tests/check/elements/filesrc.c: (GST_START_TEST):
12826         Revert pull-0 fix for release. Disable check. Fixes #347408.
12827
12828 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
12829
12830         * libs/gst/dataprotocol/dataprotocol.c:
12831         (gst_dp_event_from_packet_1_0):
12832           Fixes #347337: failure to deserialize event packets with
12833           empty payload (only event type)
12834
12835 2006-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
12836
12837         * gst/Makefile.am:
12838           do not install a .c file in the header directory
12839
12840 2006-07-13  Edward Hervey  <edward@fluendo.com>
12841
12842         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked):
12843         GhostPad no longer implicitely use the padtemplates of the targets.
12844         Fixes #347384
12845
12846 2006-07-11  Jan Schmidt  <thaytan@mad.scientist.com>
12847
12848         * gst/gstvalue.c: (gst_value_compare_list),
12849         (gst_value_compare_array), (_gst_value_initialize):
12850         * tests/check/gst/gstvalue.c: (GST_START_TEST):
12851         Make GstValueArray comparison be order dependent as designed.
12852         Add checks for value lists and value array comparisons.
12853         Fixes #347221
12854
12855 2006-07-11  Edward Hervey  <edward@fluendo.com>
12856
12857         * gst/gstbin.c: (activate_pads),
12858         (iterator_activate_fold_with_resync), (gst_bin_src_pads_activate),
12859         (gst_bin_change_state_func):
12860         (de)activate src pads before calling state_change on the childs.
12861         This is to avoid the case where a src ghostpad is blocked (holding the
12862         stream lock), which would block the deactivation of the ghostpad's
12863         target pad.
12864         * gst/gstghostpad.c: (gst_proxy_pad_do_query_type),
12865         (gst_proxy_pad_do_event), (gst_proxy_pad_do_query),
12866         (gst_proxy_pad_do_internal_link), (gst_proxy_pad_do_bufferalloc),
12867         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange),
12868         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_getcaps),
12869         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
12870         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target_unlocked),
12871         (gst_proxy_pad_set_target), (gst_proxy_pad_get_internal),
12872         (gst_proxy_pad_dispose), (gst_proxy_pad_init),
12873         (gst_ghost_pad_parent_set), (gst_ghost_pad_parent_unset),
12874         (gst_ghost_pad_class_init),
12875         (gst_ghost_pad_internal_do_activate_push),
12876         (gst_ghost_pad_internal_do_activate_pull),
12877         (gst_ghost_pad_do_activate_push), (gst_ghost_pad_do_activate_pull),
12878         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
12879         (gst_ghost_pad_dispose), (gst_ghost_pad_new_no_target),
12880         (gst_ghost_pad_new), (gst_ghost_pad_set_target):
12881         GhostPads now create their internal GstProxyPad at creation (and not
12882         when they're linked, as it was being done previously).
12883         The internal and target pads are linked straight away.
12884         The data will also travel through the other pad in order to make
12885         pad blocking and probes non-hackish (the probe/block now really happens
12886         on the GhostPad and not on the target).
12887         * gst/gstpad.c: (gst_pad_set_blocked_async),
12888         (gst_pad_link_prepare), (gst_pad_push_event):
12889         Remove previous ghostpad cruft.
12890         * gst/gstutils.c: (gst_pad_add_data_probe),
12891         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
12892         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
12893         (gst_pad_remove_buffer_probe):
12894         Remove previous ghost pad cruft.
12895         Added more detailed debug statements.
12896         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
12897         Fix the testsuite for refcounting changes.
12898         The comments about who has references were correct, but the refcount
12899         being checked wasn't the same (!?!).
12900
12901         Fixes #341029
12902
12903 2006-07-10  Stefan Kost  <ensonic@users.sf.net>
12904
12905         * docs/gst/gstreamer-sections.txt:
12906         * gst/gstconfig.h.in:
12907         More docs for configuration options, add docs to gtk-doc.
12908
12909 2006-07-10  Stefan Kost  <ensonic@users.sf.net>
12910
12911         * gst/Makefile.am:
12912         * gst/gstconfig.h.in:
12913         * win32/common/config.h:
12914         Fix build when disabling tracing (fixes #344016). Also start to document
12915         the defines that disable the sub-systems.
12916
12917 2006-07-10  Edward Hervey  <edward@fluendo.com>
12918
12919         * gst/gst.c: (ensure_current_registry_forking):
12920         let's make valgrind happy...
12921
12922 2006-07-09  Wim Taymans  <wim@fluendo.com>
12923
12924         * gst/gstelement.c: (activate_pads),
12925         (iterator_activate_fold_with_resync), (gst_element_pads_activate):
12926         Better pad activation code: Reset the collect value too on resync.
12927         Add some comments.
12928
12929 2006-07-09  Wim Taymans  <wim@fluendo.com>
12930
12931         * gst/gstpad.c: (gst_pad_init), (gst_pad_activate_pull),
12932         (gst_pad_activate_push):
12933         Use some more macros where it makes sense.
12934         Allow pad mode switching instead of asserting. When a pad
12935         is activated in one mode and we activate it in another, 
12936         deactivate it first before activating it in a different mode.
12937         Fixes #329198.
12938
12939 2006-07-08  Andy Wingo  <wingo@pobox.com>
12940
12941         * tools/gst-launch.c (main): Handle err == NULL.
12942
12943         * gst/gst.c (init_post, ensure_current_registry)
12944         (ensure_current_registry_forking)
12945         (ensure_current_registry_nonforking): Reduce #ifdef ratnest by
12946         factoring out the registry scanning into separate functions. Don't
12947         fork for the rescan is GST_REGISTRY_FORK=no; useful in debugging.
12948         Better environment var name/interface suggestions accepted.
12949
12950 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
12951
12952         * gst/gstobject.c: (gst_object_set_name_default),
12953         (gst_object_set_name):
12954           Random micro-optimisation: don't use a hash table
12955           with strings as keys and the usual strdup/strcmp
12956           involved, but rather just use the GQuark of the
12957           type name as key, since it needs to be looked up
12958           anyway to get the type name string.
12959
12960         * tests/check/gst/gstobject.c: (GST_START_TEST):
12961           Fix various leaks.
12962
12963 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
12964
12965         * gst/gstbin.c: (compare_interface), (gst_bin_get_by_interface),
12966         (gst_bin_iterate_all_by_interface):
12967           Can't use GPOINTER_TO_INT and GINT_TO_POINTER with GTypes.
12968           GTypes are gulongs and thus the top 4 bytes might be cut
12969           off on some platforms when doing GPOINTER_TO_INT, leading
12970           to invalid GTypes and bad things happening (see RH bug #179654).
12971           Also add a check to make sure the type passed in is really
12972           an interface type.
12973
12974 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
12975
12976         * .cvsignore:
12977           Ignore more.
12978
12979 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
12980
12981         * Makefile.am:
12982         * configure.ac:
12983         * gst-element-check.m4:
12984         * gst-element-check.m4.in:
12985           Make gst-element-check-$VERSION.m4 call gst-inspect-$VERSION
12986           instead of the unversioned gst-inspect (#324176, #168659).
12987
12988 2006-07-06  Wim Taymans  <wim@fluendo.com>
12989
12990         * gst/gstmessage.h:
12991         Use a valid int for the _MESSAGE_ANY enum value to avoid compiler
12992         warnings.
12993
12994 2006-07-06  Wim Taymans  <wim@fluendo.com>
12995
12996         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
12997         (gst_base_src_wait), (gst_base_src_update_length),
12998         (gst_base_src_get_range), (gst_base_src_default_check_get_range),
12999         (gst_base_src_check_get_range), (gst_base_src_pad_check_get_range),
13000         (gst_base_src_loop), (gst_base_src_start),
13001         (gst_base_src_activate_pull):
13002         Update docs.
13003         blocksize == 0 now means the default blocksize when working in push
13004         based mode.
13005         Remove some pointless asserts in _wait function.
13006         Fix offset/length calculations and EOS handling. We can now pull 0
13007         bytes as well, which is allowed.
13008         use _check_get_range() to decide if we can operate in _pull based
13009         mode.
13010         Fix refcounting leak when check_get_range function was not 
13011         implemented.
13012         API GstBaseSrc::blocksize range can be 0 too now (default)
13013
13014         * tests/check/elements/filesrc.c: (GST_START_TEST),
13015         (filesrc_suite):
13016         Added check to test _get_range() behaviour.
13017
13018 2006-07-06  Wim Taymans  <wim@fluendo.com>
13019
13020         * gst/gstpad.c: (gst_pad_chain_unchecked), (gst_pad_chain),
13021         (gst_pad_push), (gst_pad_check_pull_range), (gst_pad_get_range),
13022         (gst_pad_pull_range):
13023         * gst/gstpad.h:
13024         Lots of comments and docs added to the pad functions.
13025         Flesh out the expected behaviour of the get_range() functions.
13026
13027 2006-07-06  Wim Taymans  <wim@fluendo.com>
13028
13029         * gst/gstbus.h:
13030         * gst/gstclock.h:
13031         * gst/gstevent.h:
13032         * gst/gstiterator.h:
13033         * gst/gstpad.h:
13034         * gst/gstplugin.h:
13035         * gst/gsttask.h:
13036         Remove comma at end of enumerator list. 
13037
13038 2006-07-05  Sebastien Moutte  <sebastien@moutte.net>
13039
13040         * win32/common/libgstbase.def:
13041         * win32/common/libgstdataprotocol.def:
13042         * win32/common/libsgtreamer.def:
13043         Add new exported functions.
13044
13045 2006-07-05  Wim Taymans  <wim@fluendo.com>
13046
13047         * libs/gst/base/gstpushsrc.c: (gst_push_src_check_get_range):
13048         Add some more docs here and there.
13049
13050 2006-07-05  Wim Taymans  <wim@fluendo.com>
13051
13052         * libs/gst/base/gstbasesink.c: (gst_base_sink_preroll_object),
13053         (gst_base_sink_loop), (gst_base_sink_get_position):
13054         When operating in pull mode update the offset so that we
13055         read sequentially.
13056
13057 2006-07-05  Wim Taymans  <wim@fluendo.com>
13058
13059         * gst/gstregistryxml.c: (read_string):
13060         Avoid strdup. (will happen in libxml, but hey!)
13061
13062         * gst/gsturi.c:
13063         Add some more docs.
13064
13065 2006-07-05  Wim Taymans  <wim@fluendo.com>
13066
13067         * gst/gstbuffer.c: (_gst_buffer_copy), (gst_buffer_create_sub):
13068         * tests/check/gst/gstbuffer.c: (GST_START_TEST),
13069         (gst_buffer_suite):
13070         No point in checking if the size of the subbuffer > 0, the
13071         code handles it correclty as demonstrated by unit test.
13072         Also add a unit test for the zero sized _new_and_alloc and
13073         _copy. Fixes #346663.
13074
13075 2006-07-05  Wim Taymans  <wim@fluendo.com>
13076
13077         * libs/gst/base/gstbasetransform.c:
13078         (gst_base_transform_prepare_output_buffer),
13079         (gst_base_transform_buffer_alloc),
13080         (gst_base_transform_handle_buffer):
13081         Make sure the buffer we pass to transform_ip has a refcount of
13082         1 and thus is writable. Fixes #343196
13083
13084 2006-07-04  Jan Schmidt  <thaytan@mad.scientist.com>
13085
13086         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
13087         (gst_file_src_init), (gst_file_src_set_property),
13088         (gst_file_src_get_property), (gst_file_src_map_region):
13089         * plugins/elements/gstfilesrc.h:
13090         Add "sequential" property, off by default, to use madvise and hint
13091         to the kernel that sequential access is desired.
13092         Touch all retrieved pages by default to ensure they are pulled
13093         into memory. (Closes #345720)
13094
13095 2006-07-03  Wim Taymans  <wim@fluendo.com>
13096
13097         * docs/design/part-block.txt:
13098         * docs/design/part-dynamic.txt:
13099         Small docs updates.
13100
13101 2006-07-03  Wim Taymans  <wim@fluendo.com>
13102
13103         * gst/gstcaps.c: (gst_caps_new_empty), (_gst_caps_free),
13104         (gst_caps_unref), (gst_static_caps_get),
13105         (gst_caps_append_structure):
13106         * gst/gstclock.c: (gst_clock_entry_new), (_gst_clock_id_free):
13107         Use GSlice when the glib we build against is >= 2.10
13108
13109 2006-07-03  Wim Taymans  <wim@fluendo.com>
13110
13111         * gst/gstelement.c: (gst_element_pads_activate):
13112         Small cleanup in pad activation code.
13113
13114 2006-07-03  Wim Taymans  <wim@fluendo.com>
13115
13116         Patch by: Peter Kjellerstedt <pkj at axis dot com>
13117
13118         * gst/gst-i18n-app.h:
13119         * gst/gst-i18n-lib.h:
13120         * tools/gst-inspect.c: (print_signal_info):
13121         The attached patch will make the inclusion of gettext.h unconditional in
13122         gst/gst-i18n-app.h and gst/gst-i18n-lib.h, and it will remove the inclusion of
13123         libintl.h in tools/gst-inspect.c.
13124         This allows use of --disable-nls again and fixes #344642.
13125
13126 2006-07-03  Edward Hervey  <edward@fluendo.com>
13127
13128         * gst/gstpad.c: (handle_pad_block), (gst_pad_push_event):
13129         Implement pad blocking on events according to part-block.txt.
13130         More comments on behaviour.
13131         * tests/check/gst/gstevent.c: (test_event):
13132         Send event to peer pad of blocked pad (else it will block).
13133
13134 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13135
13136         * libs/gst/check/gstcheck.c: (gst_check_message_error),
13137         (gst_check_run_suite):
13138           if we get the wrong message, give us the types as string
13139         * plugins/elements/gstfilesrc.c: (gst_file_src_start):
13140           Fix a translatable
13141         * tests/check/elements/filesrc.c: (GST_START_TEST):
13142           add a test for trying to open a non-existing file
13143
13144 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13145
13146         * tests/check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
13147           add a test for adding self
13148
13149 2006-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
13150
13151         * libs/gst/check/gstcheck.h:
13152           add some assert_ as alias for fail_unless_*
13153         * tests/check/gst/gst.c: (GST_START_TEST), (gst_suite):
13154           increase test coverage
13155
13156 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13157
13158         * Makefile.am:
13159           include lcov.mak for lcov coverage generation
13160         * tools/Makefile.am:
13161           add to CLEANFILES
13162
13163 2006-07-02  Edward Hervey  <edward@fluendo.com>
13164
13165         * tests/check/elements/.cvsignore:
13166         moaping
13167
13168 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13169
13170         * configure.ac:
13171           don't set CFLAGS and friends for gcov, done from GST_GCOV now
13172         * tests/check/Makefile.am:
13173           clean up gcov files
13174
13175 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13176
13177         * gst/gstcaps.c: (gst_caps_remove_and_get_structure):
13178           remove gst_caps_simplify; it was not declared and not used
13179           and deprecated in 0.8
13180
13181 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13182
13183         * docs/faq/gst-uninstalled:
13184           don't put empty paths on PYTHONPATH
13185         * docs/gst/gstreamer-sections.txt:
13186           remove some symbols that are not there
13187
13188 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13189
13190         * gst/gstcaps.c: (gst_caps_compare_structures):
13191           whitespace fixes
13192         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
13193         * tests/check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
13194           add more tests
13195
13196 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13197
13198         * libs/gst/dataprotocol/Makefile.am:
13199           build dataprotocol test by linking to the lib, instead of
13200           compiling the source, so we get coverage
13201         * tests/check/Makefile.am:
13202         * tests/check/elements/filesrc.c: (event_func), (setup_filesrc),
13203         (cleanup_filesrc), (GST_START_TEST), (filesrc_suite):
13204           add a test for filesrc
13205
13206 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13207
13208         * tests/check/gst/gststructure.c: (GST_START_TEST),
13209         (gst_structure_suite):
13210           Push coverage from 59.04% to 70.00%
13211
13212 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13213
13214         * tests/check/Makefile.am:
13215           gst-inspect every element; this makes sure that we also get
13216           coverage on element's get/set functions
13217
13218 2006-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13219
13220         * configure.ac:
13221           set CFLAGS and friends to -O0 if gcov is being used
13222           add GCOV LIBS
13223         * gst/Makefile.am:
13224         * libs/gst/base/Makefile.am:
13225         * libs/gst/check/Makefile.am:
13226         * libs/gst/controller/Makefile.am:
13227         * libs/gst/dataprotocol/Makefile.am:
13228         * libs/gst/net/Makefile.am:
13229         * plugins/elements/Makefile.am:
13230         * plugins/indexers/Makefile.am:
13231           add makefile rules to generate gcov data and clean up
13232         * tests/check/Makefile.am:
13233           add a coverage target that generates an html overview
13234           of coverage data
13235
13236 2006-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13237
13238         * tests/check/elements/fakesink.c:
13239         * tests/check/elements/fakesrc.c:
13240         * tests/check/elements/fdsrc.c:
13241         * tests/check/elements/identity.c:
13242         * tests/check/generic/sinks.c: (gst_sinks_suite):
13243         * tests/check/generic/states.c:
13244         * tests/check/gst/gst.c:
13245         * tests/check/gst/gstabi.c:
13246         * tests/check/gst/gstbin.c:
13247         * tests/check/gst/gstbuffer.c: (gst_buffer_suite):
13248         * tests/check/gst/gstbus.c: (gst_bus_suite):
13249         * tests/check/gst/gstcaps.c: (GST_START_TEST):
13250         * tests/check/gst/gstelement.c:
13251         * tests/check/gst/gstevent.c: (gst_event_suite):
13252         * tests/check/gst/gstghostpad.c:
13253         * tests/check/gst/gstiterator.c: (gst_iterator_suite):
13254         * tests/check/gst/gstmessage.c: (gst_message_suite):
13255         * tests/check/gst/gstminiobject.c:
13256         * tests/check/gst/gstobject.c:
13257         * tests/check/gst/gstpad.c:
13258         * tests/check/gst/gstpipeline.c:
13259         * tests/check/gst/gstplugin.c:
13260         * tests/check/gst/gstquery.c: (gst_query_suite):
13261         * tests/check/gst/gstsegment.c: (gst_segment_suite):
13262         * tests/check/gst/gststructure.c:
13263         * tests/check/gst/gstsystemclock.c:
13264         * tests/check/gst/gsttag.c:
13265         * tests/check/gst/gsttask.c: (gst_task_suite):
13266         * tests/check/gst/gstutils.c:
13267         * tests/check/gst/gstvalue.c:
13268         * tests/check/libs/adapter.c:
13269         * tests/check/libs/basesrc.c:
13270         * tests/check/libs/collectpads.c:
13271         * tests/check/libs/controller.c:
13272         * tests/check/libs/gdp.c: (gst_dp_suite):
13273         * tests/check/libs/gstnetclientclock.c:
13274         * tests/check/libs/gstnettimeprovider.c:
13275         * tests/check/libs/libsabi.c: (libsabi_suite):
13276         * tests/check/libs/typefindhelper.c:
13277         * tests/check/pipelines/cleanup.c:
13278         * tests/check/pipelines/parse-launch.c:
13279         * tests/check/pipelines/simple-launch-lines.c:
13280         * tests/check/pipelines/stress.c: (stress_suite):
13281           use the new macro
13282
13283 2006-07-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13284
13285         * libs/gst/check/gstcheck.c: (gst_check_run_suite):
13286         * libs/gst/check/gstcheck.h:
13287           create a macro and function so that the simple unit test
13288           case can be just one macro to create main()
13289
13290 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
13291
13292         * gst/gstbin.c: (gst_bin_restore_thyself):
13293         * gst/gstxml.c: (gst_xml_make_element):
13294           Fix deserialisation from XML. Set parent manually
13295           instead of using gst_bin_add(), since gst_bin_add()
13296           will unlink all pads of the element being added.
13297           Fixes #341667.
13298
13299 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
13300
13301         Patch by: Peter Kjellerstedt <pkj at axis com>
13302
13303         * gst/gst.c: (prepare_for_load_plugin_func), (split_and_iterate):
13304           Fix missing g_strdup() and double free when using the
13305           --gst-plugin-load command line option (#346097).
13306
13307 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
13308
13309         * gst/gstinfo.c:
13310           Promote GST_DEBUG_CATEGORY_STATIC in example in docs.
13311
13312         * libs/gst/net/gstnetclientclock.c:
13313         * libs/gst/net/gstnettimeprovider.c:
13314           Use GST_DEBUG_CATEGORY_STATIC here too (#342503).
13315
13316 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
13317
13318         * docs/manual/advanced-dataaccess.xml:
13319           Fix buffer probe example compilation in
13320           ADM (#345708).
13321         
13322 2006-06-22  Edward Hervey  <edward@fluendo.com>
13323
13324         * gst/gstelement.c: (gst_element_pads_activate):
13325         We need to deactivate src pads first and then sink pads.
13326         The reason is the src pads might be blocking while holding the streaming
13327         lock, so we need to deactivate them first so that deactivating the sink
13328         pads doesn't block (since it will require the streaming lock).
13329
13330 2006-06-22  Wim Taymans  <wim@fluendo.com>
13331
13332         * libs/gst/base/gstbasetransform.c:
13333         (gst_base_transform_buffer_alloc):
13334         Forgot to remove two unneeded unrefs.
13335         Simplify a check _is_equal allready checks the obvious case.
13336
13337 2006-06-22  Wim Taymans  <wim@fluendo.com>
13338
13339         * docs/design/part-block.txt:
13340         Some docs about what pad_block should do.
13341
13342 2006-06-22  Wim Taymans  <wim@fluendo.com>
13343
13344         * gst/gstcaps.c: (gst_caps_replace):
13345         Fix crasher when passed NULL. Doc clarification.
13346         Optimize for the trivial case.
13347
13348         * gst/gstpipeline.c: (gst_pipeline_change_state):
13349         Small cleanups.
13350
13351         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
13352         Small documentation cleanup.
13353
13354         * libs/gst/base/gstbasetransform.c:
13355         (gst_base_transform_buffer_alloc):
13356         Don't use silly gst_pad_get_negotiated_caps, GST_PAD_CAPS
13357         is what we need and it avoids a whole lot of redundant 
13358         refcount operations.
13359
13360 2006-06-22  Tim-Philipp Müller  <tim at centricular dot net>
13361
13362         Patch by: Philip Jägenstedt  <philip at lysator liu se>
13363
13364         * docs/manual/advanced-dataaccess.xml:
13365           Fix 'Embedding static elements' section to use
13366           GST_PLUGIN_DEFINE_STATIC (#345607).
13367
13368 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
13369
13370         * tests/check/pipelines/simple-launch-lines.c: (test_stop_from_app):
13371           Attempt to 'fix' spuriously failing test case: it seems like the
13372           timeout of half a second is simply too small when the system is under
13373           load otherwise, and the timeout doesn't really seem to serve any
13374           particular purpose here. Give the pipeline a few seconds to preroll
13375           first, and then give it another half a second to go from PAUSED to
13376           PLAYING and marshal the message into the main thread.
13377
13378 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
13379
13380         * tools/gst-feedback-m.m:
13381           Don't only use unversioned tools, try versioned tools as well
13382           (#345086).
13383
13384 2006-06-21  Tim-Philipp Müller  <tim at centricular dot net>
13385
13386         * gst/gstbus.c: (gst_bus_class_init):
13387           Fix some typos, make docs more explicit.
13388
13389 2006-06-20  Wim Taymans  <wim@fluendo.com>
13390
13391         * tests/check/gst/gstghostpad.c: (block_callback),
13392         (GST_START_TEST), (gst_ghost_pad_suite):
13393         Added some more ghostpad tests, mainly blocking
13394         and probes.
13395
13396 2006-06-16  Wim Taymans  <wim@fluendo.com>
13397
13398         * plugins/elements/gstfilesink.c: (gst_file_sink_open_file),
13399         (gst_file_sink_close_file), (gst_file_sink_do_seek),
13400         (gst_file_sink_event), (gst_file_sink_render):
13401         * plugins/elements/gstfilesink.h:
13402         Check if we can seek in the file instead of assuming
13403         we always can. Post an error when we are asked to seek in a
13404         non-seekable file (like a fifo). Fixes #343312.
13405         Some cleanups.
13406
13407 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13408
13409         * tools/gst-launch.1.in:
13410           Un-garble (fourcc) bit in filtered caps section.
13411
13412 2006-06-16  Tim-Philipp Müller  <tim at centricular dot net>
13413
13414         * docs/manual/advanced-autoplugging.xml:
13415         * docs/manual/basics-helloworld.xml:
13416         * docs/manual/highlevel-components.xml:
13417           Don't leak bus reference in sample code.
13418
13419 2006-06-15  Tim-Philipp Müller  <tim at centricular dot net>
13420
13421         * autogen.sh:
13422           Add default for new --enable-plugin-docs switch.
13423
13424         * configure.ac:
13425           Use new GST_PLUGIN_DOCS macro to check for pyxml etc.
13426           Fixes #344039.
13427
13428         * docs/Makefile.am:
13429           Use new ENABLE_PLUGIN_DOCS conditional.
13430
13431 2006-06-14  Wim Taymans  <wim@fluendo.com>
13432
13433         * gst/gstbin.c: (bin_query_duration_done), (gst_bin_query):
13434         Make it clear with a FIXME and a real define what the #if 0
13435         previously disabled.
13436
13437 2006-06-14  Wim Taymans  <wim@fluendo.com>
13438
13439         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
13440         (gst_base_sink_preroll_object), (gst_base_sink_get_position):
13441         * libs/gst/base/gstbasetransform.c:
13442         (gst_base_transform_sink_eventfunc):
13443         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
13444         Don't randomly and silently reset a segment when the format 
13445         changes as this is a bug somewhere upstream. Fixes #330379.
13446
13447 2006-06-14  Tim-Philipp Müller  <tim at centricular dot net>
13448
13449         Patch by: Wouter Paesen  <wouter at kangaroot net>
13450
13451         * libs/gst/controller/gstcontroller.c:
13452         (gst_controlled_property_new):
13453           Fix controlling of float properties (#344849).
13454
13455         * tests/check/libs/controller.c:
13456         (gst_test_mono_source_get_property),
13457         (gst_test_mono_source_set_property),
13458         (gst_test_mono_source_class_init), (GST_START_TEST):
13459           While we're at it, add some float stuff to unit test.
13460
13461 2006-06-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13462
13463         * docs/README:
13464         * docs/images/gdp-header.svg:
13465           add a gdp image
13466         * docs/libs/Makefile.am:
13467         * docs/libs/gdp-header.png:
13468         * libs/gst/dataprotocol/dataprotocol.c:
13469           add it to the API docs
13470         * docs/manual/intro-motivation.xml:
13471           fix typo
13472
13473 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
13474
13475         * gst/gst.c: (scan_and_update_registry), (init_post):
13476           If the fork()'ed child process can't write the updated registry cache
13477           file to disk for some reason, make it exit with a failure exit code,
13478           so that the parent can then re-scan the plugins itself and update the
13479           registry structures in memory and work with that (rather than failing
13480           when creating elements because seemingly no plugins are available).
13481           Refactor registry scanning code into separate function for this and
13482           also separate fork() and non-fork() code paths. Fixes #344748.
13483
13484 2006-06-13  Wim Taymans  <wim@fluendo.com>
13485
13486         * docs/manual/advanced-dataaccess.xml:
13487         Fix wrong PluginDesc. Fixes #344755.
13488
13489 2006-06-13  Tim-Philipp Müller  <tim at centricular dot net>
13490
13491         * gst/gstregistryxml.c: (gst_registry_xml_write_cache):
13492           Fix silly bug that prevented us from creating
13493           ~/.gstreamer-0.10 and writing the registry in one
13494           go (the first call to g_mkstemp() would overwrite the
13495           placeholder in the template string, so the second call
13496           to g_mkstemp() after creating the missing directory
13497           would then error out with 'invalid argument').
13498
13499 2006-06-13  Edward Hervey  <edward@fluendo.com>
13500
13501         * gst/gst.c: (init_post):
13502         Free string.
13503
13504 2006-06-13  Thomas Vander Stichele  <thomas at apestaart dot org>
13505
13506         * gst/glib-compat-private.h:
13507         * gst/glib-compat.c:
13508         * gst/glib-compat.h:
13509         * gst/gstvalue.c: (gst_value_serialize_flags):
13510           remove GLib 2.6 compatibility code
13511
13512 2006-06-12  Tim-Philipp Müller  <tim at centricular dot net>
13513
13514         * gst/parse/Makefile.am:
13515           Fix build with 'make -j N' even more (#340016).
13516
13517 2006-06-12  Wim Taymans  <wim@fluendo.com>
13518
13519         * docs/gst/gstreamer-sections.txt:
13520         Fix docs.
13521
13522 2006-06-12  Wim Taymans  <wim@fluendo.com>
13523
13524         * gst/gstsegment.c: (gst_segment_set_duration),
13525         (gst_segment_set_last_stop), (gst_segment_set_seek),
13526         (gst_segment_set_newsegment_full), (gst_segment_to_stream_time),
13527         (gst_segment_to_running_time), (gst_segment_clip):
13528         Use G_UNLIKELY to help the compiler a bit.
13529
13530 2006-06-12  Wim Taymans  <wim@fluendo.com>
13531
13532         Patch by: Stefan Kost <ensonic at sonicpulse dot de>
13533
13534         * gst/gstevent.c: (gst_event_get_type):
13535         * gst/gstmessage.c:
13536         * gst/gstpad.c: (gst_pad_chain_unchecked), (gst_pad_chain),
13537         (gst_pad_push):
13538         constify quark registration strings. Fixes #344115
13539         Avoid unneeded type checking is _pad_push() by internally
13540         calling gst_pad_chain_unchecked().
13541
13542 2006-06-12  Wim Taymans  <wim@fluendo.com>
13543
13544         * gst/gstbuffer.c: (gst_buffer_get_type), (gst_buffer_finalize),
13545         (_gst_buffer_copy), (gst_buffer_is_metadata_writable),
13546         (gst_subbuffer_finalize), (gst_buffer_create_sub),
13547         (gst_buffer_is_span_fast), (gst_buffer_span):
13548         Init _type for consistency.
13549         Use _FLAGS macro to avoid type check.
13550         Avoid unneeded type checks in subbufer code.
13551
13552 2006-06-12  Wim Taymans  <wim@fluendo.com>
13553
13554         * gst/gst.c: (gst_debug_help):
13555         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_list_free):
13556         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
13557         (gst_plugin_feature_list_free):
13558         * gst/gstregistry.c: (gst_registry_add_plugin),
13559         (gst_registry_add_feature), (gst_registry_plugin_filter),
13560         (gst_registry_feature_filter), (gst_registry_find_plugin),
13561         (gst_registry_find_feature), (gst_registry_get_plugin_list),
13562         (gst_registry_lookup_feature_locked), (gst_registry_lookup_locked):
13563         * gst/gstregistryxml.c: (load_feature),
13564         (gst_registry_xml_read_cache), (gst_registry_xml_write_cache):
13565         * gst/gstminiobject.c: (gst_mini_object_unref),
13566         (gst_mini_object_replace), (gst_value_mini_object_free),
13567         (gst_value_mini_object_copy):
13568         Use _CAST macros to avoid unneeded type checking.
13569         Added some more G_UNLIKELY.
13570
13571 2006-06-12  Wim Taymans  <wim@fluendo.com>
13572
13573         * gst/gstbuffer.h:
13574         Avoid unneeded type checking.
13575         API: GST_BUFFER_IS_DISCONT
13576
13577         * gst/gstminiobject.h:
13578         Avoid type check in flag accessor.
13579
13580         * gst/gstelementfactory.h:
13581         * gst/gstplugin.h:
13582         * gst/gstpluginfeature.h:
13583         Add _CAST macros.
13584         API: GST_ELEMENT_FACTORY_CAST
13585         API: GST_PLUGIN_CAST
13586         API: GST_PLUGIN_FEATURE_CAST
13587
13588 2006-06-12  Wim Taymans  <wim@fluendo.com>
13589
13590         * gst/gstobject.c: (gst_object_get_type), (gst_object_ref),
13591         (gst_object_unref):
13592         Add G_UNLIKELY in type registration.
13593         Avoid type check in _ref/_unref since that is also
13594         done in glib.
13595
13596 2006-06-12  Wim Taymans  <wim@fluendo.com>
13597
13598         * gst/gsterror.c: (gst_g_error_get_type):
13599         * gst/gstpadtemplate.c: (gst_pad_template_get_type),
13600         (gst_static_pad_template_get_type):
13601         * gst/gsttaglist.c: (gst_tag_list_get_type):
13602         * gst/gsttagsetter.c: (gst_tag_setter_get_type):
13603         * gst/gsttypefindfactory.c: (gst_type_find_factory_get_type):
13604         * gst/gsturi.c: (gst_uri_handler_get_type):
13605         * gst/gstvalue.c: (gst_date_get_type):
13606         * gst/gstxml.c: (gst_xml_get_type):
13607         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_type),
13608         (gst_base_sink_preroll_object), (gst_base_sink_get_position):
13609         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_type):
13610         Add G_UNLIKELY in type registration.
13611
13612 2006-06-12  Wim Taymans  <wim@fluendo.com>
13613
13614         * tools/gst-inspect.c: (print_signal_info):
13615         Properly print enum values.
13616
13617 2006-06-12  Wim Taymans  <wim@fluendo.com>
13618
13619         * gst/gstinfo.c: (gst_debug_set_active),
13620         (gst_debug_category_set_threshold), (_gst_debug_nameof_funcptr):
13621         * gst/gstinfo.h:
13622         Add some G_[UN]LIKELY.
13623         Maintain __gst_debug_min to avoid formatting the arguments of
13624         debug messages that will be dropped anyway to avoid a lot of 
13625         overhead from the debugging system.
13626
13627 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13628
13629         * po/POTFILES.in:
13630         * po/POTFILES.skip:
13631           add missing files containing translatable strings, tell intltool about
13632           one exception
13633
13634 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13635
13636         * tests/check/libs/.cvsignore:
13637         add test-binary to ignore list
13638
13639 2006-06-11  Stefan Kost  <ensonic@users.sf.net>
13640
13641         * docs/libs/gstreamer-libs-docs.sgml:
13642         reorder (put dp into a chapter) and indent
13643
13644 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13645
13646         * configure.ac:
13647           back to HEAD
13648
13649 === release 0.10.8 ===
13650
13651 2006-06-10  Thomas Vander Stichele <thomas at apestaart dot org>
13652
13653         * configure.ac:
13654           releasing 0.10.8, "Soepeke, ik zie ou nog altijd nie"
13655
13656 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13657
13658         * gst/gst.c: (init_post):
13659           move pid declaration to declaration block
13660
13661 2006-06-10  Thomas Vander Stichele  <thomas at apestaart dot org>
13662
13663         * gst/gst.c: (init_post):
13664           use _exit() instead of exit() in our forked child; this ensures
13665           that none of the registered exit handlers from whatever is using
13666           GStreamer get executed.  This fixes gnome-mixer-applet failing
13667           to load, because ORBit would shut down.
13668           Spotted by: Edward Hervey  <edward@fluendo.com>
13669           Fix suggested by: Tim-Philipp Müller  <tim at centricular dot net>
13670           Fixes #344474
13671
13672 2006-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13673
13674         * configure.ac:
13675           back to TRUNK
13676
13677 === release 0.10.7 ===
13678
13679 2006-06-09  Thomas Vander Stichele <thomas at apestaart dot org>
13680
13681         * configure.ac:
13682           releasing 0.10.7, "Soepeke, ik zie ou"
13683
13684 2006-06-07  Thomas Vander Stichele  <thomas at apestaart dot org>
13685
13686         * configure.ac:
13687         * po/af.po:
13688         * po/az.po:
13689         * po/bg.po:
13690         * po/ca.po:
13691         * po/cs.po:
13692         * po/de.po:
13693         * po/en_GB.po:
13694         * po/fr.po:
13695         * po/it.po:
13696         * po/nb.po:
13697         * po/nl.po:
13698         * po/ru.po:
13699         * po/sq.po:
13700         * po/sr.po:
13701         * po/sv.po:
13702         * po/tr.po:
13703         * po/uk.po:
13704         * po/vi.po:
13705         * po/zh_CN.po:
13706         * po/zh_TW.po:
13707         * win32/common/config.h:
13708           0.10.6.2 prerelease
13709
13710 2006-06-07  Wim Taymans  <wim@fluendo.com>
13711
13712         * gst/gstindex.c: (gst_index_gtype_resolver):
13713         * tools/gst-xmlinspect.c: (print_plugin_info):
13714         Fix leak spotted by coverity checker. Fixes #343827
13715         Fix another other leak found by paolo borelli.
13716
13717 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13718
13719         * libs/gst/dataprotocol/dataprotocol.c:
13720         (gst_dp_header_from_buffer_any), (gst_dp_packet_from_caps_any),
13721         (gst_dp_version_get_type), (gst_dp_init),
13722         (gst_dp_header_from_buffer), (gst_dp_header_from_buffer_1_0),
13723         (gst_dp_packet_from_caps), (gst_dp_packet_from_caps_1_0),
13724         (gst_dp_packet_from_event), (gst_dp_packet_from_event_1_0),
13725         (gst_dp_event_from_packet_0_2), (gst_dp_event_from_packet_1_0),
13726         (gst_dp_event_from_packet), (gst_dp_packetizer_new),
13727         (gst_dp_packetizer_free):
13728         * libs/gst/dataprotocol/dataprotocol.h:
13729           API: add a GstDPPacketizer object, and create/free functions
13730           API: add GstDPVersion enum
13731           Add 1.0 event function that uses the string serialization
13732           Serialize more useful buffer flags
13733           Fixes #343988
13734
13735 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13736
13737         * tests/check/Makefile.am:
13738         * tests/check/gst/gstabi.c:
13739         * tests/check/gst/struct_ppc64.h:
13740         * tests/check/libs/libsabi.c:
13741         * tests/check/libs/struct_ppc64.h:
13742           add ppc64 structure sizes
13743
13744 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13745
13746         * tests/check/Makefile.am:
13747         * tests/check/gst/gstabi.c:
13748         * tests/check/gst/struct_x86_64.h:
13749         * tests/check/libs/libsabi.c:
13750         * tests/check/libs/struct_x86_64.h:
13751           generate and add structure size lists for x86_64
13752
13753 2006-06-06  Thomas Vander Stichele  <thomas at apestaart dot org>
13754
13755         * libs/gst/check/gstcheck.c: (gst_check_abi_list):
13756         * libs/gst/check/gstcheck.h:
13757           factor out the method from tests that checks size of structures,
13758           and add code to generate the header containing these sizes
13759         * tests/check/gst/gstabi.c: (GST_START_TEST):
13760         * tests/check/gst/struct_i386.h:
13761         * tests/check/libs/libsabi.c: (GST_START_TEST):
13762         * tests/check/libs/struct_i386.h:
13763           use it
13764
13765 2006-06-06  Michael Smith  <msmith@fluendo.com>
13766
13767         * gst/gstsegment.h:
13768           Don't use c++-style comments, fixes #343929
13769
13770 2006-06-05  Edward Hervey  <edward@fluendo.com>
13771
13772         * gst/gst.c:
13773         plugin_paths is not used if we build without registry support.
13774
13775         * gst/gstsegment.c: (gst_segment_copy): 
13776         _copy() was always returning NULL...
13777
13778 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13779
13780         * libs/gst/dataprotocol/dataprotocol.c:
13781         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
13782         (gst_dp_packet_from_event):
13783           factor out CRC code
13784
13785 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13786
13787         * libs/gst/check/gstcheck.c: (gst_check_teardown_src_pad):
13788           make sure we unset caps
13789
13790 2006-06-02  Michael Smith  <msmith@fluendo.com>
13791
13792         * libs/gst/check/gstcheck.c: (gst_check_init),
13793         (gst_check_chain_func):
13794         * libs/gst/check/gstcheck.h:
13795           Add a cond/mutex to the check support lib, signal this whenever we
13796           add to the buffers list. This will allow tests to not busy-wait on
13797           the buffer-list.
13798
13799 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13800
13801         * libs/gst/dataprotocol/dataprotocol.c:
13802         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
13803         (gst_dp_packet_from_event):
13804           factor out some common header init code
13805
13806 2006-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
13807
13808         * docs/libs/gstreamer-libs-sections.txt:
13809         * docs/libs/tmpl/gstdataprotocol.sgml:
13810         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
13811         * libs/gst/dataprotocol/dataprotocol.h:
13812           API: make gst_dp_crc() public
13813
13814 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
13815
13816         * plugins/indexers/gstindexers.c: (plugin_init):
13817         conditionally register fileindexer (fixes #343598)
13818
13819 2006-06-01  Stefan Kost  <ensonic@users.sf.net>
13820
13821         * gst/gsttagsetter.h:
13822         Can't cast ifaces to a class
13823
13824         * libs/gst/net/gstnetclientclock.h:
13825         * libs/gst/net/gstnettimeprovider.h:
13826         * plugins/elements/gstfakesink.h:
13827         * plugins/elements/gstfakesrc.h:
13828         * plugins/elements/gstfdsink.h:
13829         * plugins/elements/gstfdsrc.h:
13830         * plugins/elements/gstfilesink.h:
13831         * plugins/elements/gstfilesrc.h:
13832         * plugins/elements/gstidentity.h:
13833         * plugins/elements/gstqueue.h:
13834         * plugins/elements/gsttee.h:
13835         * plugins/indexers/gstfileindex.c:
13836         * plugins/indexers/gstmemindex.c:
13837         * tests/old/examples/plugins/example.h:
13838         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
13839
13840 2006-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
13841
13842         * libs/gst/dataprotocol/dataprotocol.c:
13843         (gst_dp_header_from_buffer):
13844           make sure we zero the whole ABI-compatible area
13845
13846 2006-06-01  Wim Taymans  <wim@fluendo.com>
13847
13848         Patch by: Alessandro Decina <alessandro at nnva dot org>
13849
13850         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_stop):
13851         Make sure the EOS flag is cleared from pads after a flush
13852         or stop. Fixes #343538.
13853
13854         * tests/check/libs/collectpads.c: (GST_START_TEST),
13855         (gst_collect_pads_suite):
13856         Added test for collectpads reusage after EOS.
13857
13858 2006-05-30  Sebastien Moutte  <sebastien@moutte.net>
13859
13860         * gst/gst.c:
13861          set #include <sys/wait.h> in a #ifdef #ifdef HAVE_FORK
13862         * win32/common/libgstbase.def:
13863          export gst_collect_pads_set_flushing
13864         * win32/common/libgstreamer.def:
13865          export gst_pad_set_acceptcaps_function, gst_structure_empty_new,
13866          gst_value_fraction_multiply
13867         * win32/vs6/gst_inspect.dsp:
13868          add a link to intl.lib
13869
13870 2006-05-30  Wim Taymans  <wim@fluendo.com>
13871
13872         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
13873         (gst_collect_pads_chain):
13874         Handle the case where a pad is removed from the collection
13875         that could cause the other pads to become collectable.
13876
13877 2006-05-30  Wim Taymans  <wim@fluendo.com>
13878
13879         * gst/gstelement.c:
13880         Clarify the use of _release_request_pad() and
13881         _get_request_pad() a bit better.
13882
13883         * libs/gst/base/gstadapter.c: (gst_adapter_peek),
13884         (gst_adapter_take_buffer):
13885         Fix some doc and comment typos.
13886
13887 2006-05-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
13888
13889         * docs/gst/gstreamer-sections.txt:
13890         * docs/libs/gstreamer-libs-sections.txt:
13891           add declared symbols
13892
13893 2006-05-30  Jan Schmidt  <thaytan@mad.scientist.com>
13894
13895         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
13896         Add debug that can be enabled using a #define at the top of the file,
13897         for dumping stats about how late/early we were when waking up from
13898         waiting on the clock.
13899
13900 2006-05-30  Wim Taymans  <wim@fluendo.com>
13901
13902         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_check_pads):
13903         When rebuilding the pad list, don't leak the previous list.
13904
13905 2006-05-30  Wim Taymans  <wim@fluendo.com>
13906
13907         Patch by: Lutz Mueller <lutz at topfrose dot de>
13908
13909         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
13910         (gst_base_src_get_query_types), (gst_base_src_update_length):
13911         Publish supported query types.
13912         Update last_stop field in get_range mode so the position
13913         query works. Fixes #342321.
13914
13915 2006-05-30  Tim-Philipp Müller  <tim at centricular dot net>
13916
13917         * docs/gst/gstreamer-sections.txt:
13918         * gst/gsttaglist.c: (_gst_tag_initialize):
13919         * gst/gsttaglist.h:
13920           API: add GST_TAG_PREVIEW_IMAGE (#343341).
13921
13922 2006-05-30  Wim Taymans  <wim@fluendo.com>
13923
13924         Patch by: Alessandro Decina <alessandro at nnva dot org>
13925
13926         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad):
13927         Unlock mutex when removing an unknown pad.
13928         Fixes #343334.
13929
13930         * tests/check/Makefile.am:
13931         * tests/check/libs/collectpads.c: (collected_cb), (push_buffer),
13932         (push_event), (setup), (teardown), (GST_START_TEST),
13933         (gst_collect_pads_suite), (main):
13934         Added collecpads check, disabled for now as check crashes for
13935         some reason.
13936
13937 2006-05-29  Wim Taymans  <wim@fluendo.com>
13938
13939         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize):
13940         Don't leak pads lists.
13941
13942 2006-05-29  Wim Taymans  <wim@fluendo.com>
13943
13944         * docs/libs/gstreamer-libs-sections.txt:
13945         * libs/gst/base/gstcollectpads.c:
13946         (gst_collect_pads_set_flushing_unlocked),
13947         (gst_collect_pads_set_flushing), (gst_collect_pads_start),
13948         (gst_collect_pads_stop):
13949         * libs/gst/base/gstcollectpads.h:
13950         API: gst_collect_pads_set_flushing()
13951         Added api to set the pads to flushing, useful for seeking
13952         code in elements using collectpads.
13953         Clear segment when receiving a flush.
13954
13955 2006-05-29  Tim-Philipp Müller  <tim at centricular dot net>
13956
13957         * gst/gst.c: (add_path_func), (init_post):
13958           Don't scan registry paths passed via --gst-plugin-path immediately
13959           (will crash, because absolutely nothing is set up and no types are
13960           registered etc.); do this later in init_post(). Fixes #343057.
13961
13962 2006-05-28  Thomas Vander Stichele  <thomas at apestaart dot org>
13963
13964         * gst/gst.c: (init_post):
13965           if we have fork, fork while reading/rebuilding the registry
13966           so the parent doesn't take the hit of having all plugins loaded
13967           in memory.  Fixes #342777.
13968         * configure.ac:
13969           Check if we have fork()
13970         * win32/common/config.h.in:
13971           no fork() on win32
13972
13973 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
13974
13975         * plugins/elements/gstelements.c:
13976         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init),
13977         (gst_file_src_init), (gst_file_src_set_property),
13978         (gst_file_src_get_property), (gst_file_src_start):
13979         * plugins/elements/gstfilesrc.h:
13980           API: GstFileSrc::use-mmap
13981
13982         Add a use-mmap property to enable easier testing of all code paths.
13983         Bump rank to PRIMARY, so filesrc is the preferred file reader and used
13984         in the absence of gnomevfssrc. (Closes #340501)
13985
13986 2006-05-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13987
13988         * tools/gst-inspect.c:
13989         Add missing include, removes warning of ngettext not being defined on
13990         some arches.
13991
13992 2006-05-26  Jan Schmidt  <thaytan@mad.scientist.com>
13993
13994         * gst/gstvalue.c: (gst_value_deserialize_fraction):
13995         Handle NULL input and output pointers silently as a failed conversion,
13996         rather than g_warnings.
13997
13998 2006-05-25  Wim Taymans  <wim@fluendo.com>
13999
14000         * libs/gst/net/gstnetclientclock.c: (gst_net_client_clock_start):
14001         Initialize variable before using. Fixes #342820.
14002
14003 2006-05-24  Tim-Philipp Müller  <tim at centricular dot net>
14004
14005         * libs/gst/base/gsttypefindhelper.c: (buf_helper_find_peek):
14006           Fix off-by-one bug that would only allow peeks of N-1 bytes
14007           from the start even if the buffer to typefind on contains
14008           in fact N bytes of data (makes vorbis typefinding from a
14009           vorbis identification header buffer work).
14010
14011         * tests/check/Makefile.am:
14012         * tests/check/libs/.cvsignore:
14013         * tests/check/libs/typefindhelper.c: (GST_START_TEST),
14014         (gst_typefindhelper_suite), (main), (foobar_typefind),
14015         (plugin_init):
14016           Add very basic unit test for gst_type_find_helper_for_buffer()
14017           that checks for the problem fixed above.
14018
14019 2006-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
14020
14021         * tools/gst-inspect.c: (print_interfaces),
14022         (print_element_properties_info), (print_element_list), (main):
14023           add more translatable strings
14024
14025 2006-05-23  Tim-Philipp Müller  <tim at centricular dot net>
14026
14027         Patch by: Julien Moutte  <julien at moutte net>
14028
14029         * docs/gst/gstreamer-sections.txt:
14030           Make new GST_FLOW_IS_SUCCESS macro visible in docs.
14031           
14032         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init),
14033         (gst_fake_sink_preroll):
14034         * plugins/elements/gstfakesink.h:
14035           API: Add new GstFakeSink::preroll-handoff signal (#337100).
14036
14037 2006-05-23  Wim Taymans  <wim@fluendo.com>
14038
14039         * gst/gstpad.c: (gst_flow_get_name), (gst_flow_to_quark):
14040         * gst/gstpad.h:
14041         Added _CUSTOM error and success GstFlowReturn that can be
14042         used be elements internally. 
14043         Added macro to check for SUCCESS flowreturns.
14044         API: GST_FLOW_CUSTOM_SUCCESS
14045         API: GST_FLOW_CUSTOM_ERROR
14046         API: GST_FLOW_IS_SUCCESS
14047
14048         * tests/check/gst/gstpad.c: (GST_START_TEST), (gst_pad_suite):
14049         Added check for GstFlowReturn sanity.
14050
14051 2006-05-23  Wim Taymans  <wim@fluendo.com>
14052
14053         Patch by: Mark Nauwelaerts <manauw at skynet dot be>
14054
14055         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_remove_pad),
14056         (gst_collect_pads_event):
14057         clear/reset segment info in FLUSH_STOP.
14058         Fixes #336929.
14059
14060 2006-05-22  Stefan Kost  <ensonic@users.sf.net>
14061
14062         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_stop),
14063         (gst_collect_pads_check_collected):
14064         Flush queued buffer on _stop(), fixes playing again (#342454)
14065
14066 2006-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14067
14068         * tests/check/gst/gststructure.c: (GST_START_TEST),
14069         (gst_structure_suite):
14070           add a test for a complete structure
14071
14072 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14073
14074         * docs/faq/developing.xml:
14075         * docs/faq/faq.xml:
14076         * docs/faq/troubleshooting.xml:
14077         * docs/faq/using.xml:
14078           Some minor FAQ updates that won't change the fact that
14079           our FAQ is badly structured, full of information hardly
14080           anyone new to GStreamer needs to know and lacking lots
14081           of information people constantly ask for.
14082           
14083 2006-05-19  Jan Schmidt  <thaytan@mad.scientist.com>
14084
14085         * gst/gstpad.c: (gst_pad_set_caps):
14086           Short-circuit gst_pad_set_caps if setting the existing
14087           caps pointer again, and avoid printing debug and 
14088           reffing/unreffing the caps.
14089
14090         * plugins/elements/gstqueue.c: (gst_queue_push_one):
14091           There's actually no need to set the caps before pushing -
14092           the acceptcaps method will handle it anyway.
14093
14094 2006-05-19  Tim-Philipp Müller  <tim at centricular dot net>
14095
14096         * docs/gst/gstreamer-sections.txt:
14097         * win32/common/libgstreamer.def:
14098         * gst/gstutils.c: (gst_element_seek_simple):
14099         * gst/gstutils.h:
14100           API: add gst_element_seek_simple() (#342238).
14101
14102 2006-05-18  Edward Hervey  <edward@fluendo.com>
14103
14104         * gst/gsttypefind.c: (gst_type_find_get_type):
14105         * gst/gsttypefind.h:
14106         Added GST_TYPE_TYPE_FIND and gst_type_find_get_type() so a GType gets
14107         registered for GstTypeFind pointers. This allows wrapping the structure
14108         in bindings (i.e. gst-python).
14109
14110 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14111
14112         * gst/gsttagsetter.c:
14113           Docs additions and fixes (see #339918).
14114
14115 2006-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
14116
14117         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
14118         The caps intersection algorithm can produce multiple copies of the
14119         caps. Until that is fixed, we need to simplify the result to be
14120         sure whether the allowed caps are fixed or not.
14121
14122         * plugins/elements/gstqueue.c: (gst_queue_init),
14123         (gst_queue_bufferalloc), (gst_queue_acceptcaps),
14124         (gst_queue_push_one):
14125         Proxied buffer alloc should not set the caps on the source pad.
14126         When pushing buffers, we always accept the caps change that triggers.
14127         This prevents negotiation errors caused by caps changing mid-stream 
14128         and then being refused on our source pad (because upstream is now
14129         refusing those caps).
14130
14131 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
14132
14133         * tests/examples/helloworld/helloworld.c: (main):
14134           Must plug audioconvert and audioresample between decoder
14135           and audio sink.
14136
14137 2006-05-17  Jan Schmidt  <thaytan@mad.scientist.com>
14138
14139         * gst/gstregistryxml.c: (read_string), (load_pad_template),
14140         (load_feature), (load_plugin):
14141         Allow empty strings for some of the plugin fields so we don't 
14142         drop valid plugin entries that were written out correctly
14143         (Fixes #341479)
14144
14145 2006-05-17  Sebastien Moutte  <sebastien@moutte.net>
14146         
14147         * gst/gstregistryxml.c: (gst_registry_xml_write_cache):
14148           Use g_remove and g_rename instead of remove and rename that don't 
14149           handle utf8 characters. rename was failing for users who had specific
14150           characters in their name then the registry was built at each 
14151           gstreamer init.
14152         * win32/vs6/gst_inspect.dsp:
14153         * win32/vs6/gst_launch.dsp:
14154         * win32/vs6/libgstbase.dsp:
14155         * win32/vs6/libgstcoreelements.dsp:
14156         * win32/vs6/libgstreamer.dsp:
14157           Use a debug version of libxml2 (libxml2D.lib,libxml2D.dll) for DEBUG 
14158           build of libgstreamer and clean unused libraries in projects link 
14159           settings.
14160
14161 2006-05-17  Edward Hervey  <edward@fluendo.com>
14162
14163         * plugins/elements/gstqueue.c: (gst_queue_push_one):
14164         The queue is not responsible for pushing an EOS when receiving a fatal
14165         flow error. It's up to the real element driving the pipeline to do that.
14166
14167 2006-05-16  Edward Hervey  <edward@fluendo.com>
14168
14169         * plugins/elements/gstqueue.c: (gst_queue_push_one):
14170         The queue was posting a non-needed GST_MESSAGE_ERROR when pushing a
14171         buffer returned a fatal error. It should just send an EOS and stop
14172         its task.
14173         Upstream elements will then properly receive the GST_FLOW_UNEXPECTED
14174         when pushing buffers on the queue and will be able to handle the event.
14175
14176 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14177
14178         * docs/manual/basics-bins.xml:
14179         * docs/manual/basics-init.xml:
14180           Fix typos and minor errors in sample code (#341856).
14181
14182 2006-05-16  Wim Taymans  <wim@fluendo.com>
14183
14184         * docs/design/part-qos.txt:
14185         Fix indexes in formulas to make more sense.
14186
14187 2006-05-15  Wim Taymans  <wim@fluendo.com>
14188
14189         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
14190         Don't report POSITION based on clock time if sync is
14191         disabled in a sink.
14192
14193 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
14194
14195         * gst/gstobject.h:
14196           Add cast to make compiler happy - refcount variable was a gint
14197           in GstObject but is a guint in GObject and g_atomic_int_get()
14198           wants a gint *.
14199
14200 2006-05-15  Thomas Vander Stichele  <thomas at apestaart dot org>
14201
14202         * gst/parse/Makefile.am:
14203           chain commands using &&, which also makes parallel make work
14204
14205 2006-05-14  Tim-Philipp Müller  <tim at centricular dot net>
14206
14207         * docs/gst/gstreamer-sections.txt:
14208         * gst/gstevent.c:
14209         * gst/gstevent.h:
14210         * gst/gstmessage.h:
14211           Minor docs fixes.
14212
14213 === release 0.10.6 ===
14214
14215 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
14216
14217         * configure.ac:
14218           releasing 0.10.6, "Take the cannoli"
14219
14220 2006-05-13  Tim-Philipp Müller  <tim at centricular dot net>
14221
14222         * tools/gst-launch.c: (print_tag):
14223           Fix use of uninitialized variable in the hypothetical
14224           case that some broken plugin creates a GST_TAG_IMAGE
14225           tag containing a NULL buffer (#341667).
14226
14227 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
14228
14229         * tools/gst-launch.c: (print_tag):
14230           Print something more intelligible for image tags when
14231           using the -t switch (#341556).
14232
14233 2006-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
14234
14235         * Makefile.am:
14236           updates for win32
14237         * configure.ac:
14238           define GST_MAJORMINOR so we have it available in win32/common/config.h
14239           Possibly remove it from our Makefile.am files later
14240         * win32/common/config.h:
14241         * win32/common/config.h.in:
14242           added GST_MAJORMINOR
14243         * win32/common/gstenumtypes.c: (register_gst_resource_error):
14244         * win32/common/gstversion.h:
14245           updated
14246
14247 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
14248
14249         * win32/MANIFEST:
14250           Update win32 files listing.
14251         * win32/common/gstversion.h:
14252           Add GST_MAJORMINOR definition.
14253         * win32/common/libgstreamer.def:
14254           Add new exported functions.
14255           
14256 2006-05-12  Michael Smith  <msmith@fluendo.com>
14257
14258         * gst/gstplugin.c: (gst_plugin_load_file):
14259           If an so file has no plugin entry point, unload the module.
14260
14261 2006-05-11  Wim Taymans  <wim@fluendo.com>
14262
14263         * plugins/elements/gstqueue.c: (gst_queue_chain), (gst_queue_loop),
14264         (gst_queue_set_property):
14265         Don't forget to signal the _chain or _loop function 
14266         when the queue size or thresholds change since that might
14267         cause them to make progres again.
14268
14269 2006-05-11  Stefan Kost  <ensonic@users.sf.net>
14270
14271         * gst/gstclock.c: (gst_clock_class_init):
14272         * gst/gstindex.c: (gst_index_class_init):
14273         * gst/gstobject.c: (gst_object_class_init):
14274         * gst/gstpad.c: (gst_pad_class_init):
14275         * gst/gstpipeline.c: (gst_pipeline_class_init):
14276         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
14277         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init):
14278         * libs/gst/base/gstbasetransform.c:
14279         (gst_base_transform_class_init):
14280         * libs/gst/net/gstnetclientclock.c:
14281         (gst_net_client_clock_class_init):
14282         * libs/gst/net/gstnettimeprovider.c:
14283         (gst_net_time_provider_class_init):
14284         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_class_init):
14285         * plugins/elements/gstfakesink.c: (gst_fake_sink_class_init):
14286         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init):
14287         * plugins/elements/gstfdsink.c: (gst_fd_sink_class_init):
14288         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
14289         * plugins/elements/gstfilesink.c: (gst_file_sink_class_init):
14290         * plugins/elements/gstfilesrc.c: (gst_file_src_class_init):
14291         * plugins/elements/gstidentity.c: (gst_identity_class_init):
14292         * plugins/elements/gsttee.c: (gst_tee_class_init):
14293         * tests/old/examples/plugins/example.c: (gst_example_class_init):
14294         * tests/old/testsuite/threads/signals.c: (gst_test_class_init):
14295           G_OBJECT_CLASS macro usage batch cleanup, fixes #337747 for core
14296
14297 2006-05-11  Wim Taymans  <wim@fluendo.com>
14298
14299         * gst/gstbuffer.c: (_gst_buffer_initialize):
14300         Register subbufer along with the buffer type so that
14301         it does not accidentally gets registered from N
14302         different streaming threads in a non threadsafe way.
14303
14304 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
14305
14306         * gst/gstbuffer.h:
14307         * gst/gstevent.h:
14308         * gst/gstmessage.h:
14309           Make gtk-doc generate docs for our inlined gst_buffer_ref(),
14310           gst_event_ref() and gst_message_ref() functions again
14311           (ugly hack, please do fix if there's a better way besides
14312           overrides.txt, which doesn't seem to work).
14313
14314 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14315
14316         * libs/gst/check/gstcheck.h:
14317           add an assert for setting state to avoid lots of repetitive code
14318           in the future
14319
14320 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14321
14322         * gst/gstvalue.c: (gst_value_serialize_flags):
14323           fix a leak if no flags are set
14324         * tests/check/gst/gstvalue.c: (GST_START_TEST):
14325           fix leak in tests
14326
14327 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
14328
14329         * docs/manual/basics-pads.xml:
14330           Expand a bit on caps and filtered links and update
14331           examples that were still using the no longer existing
14332           gst_pad_link_filtered() (#338206).
14333
14334 2006-05-10  Wim Taymans  <wim@fluendo.com>
14335
14336         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
14337         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
14338         (gst_collect_pads_set_flushing), (gst_collect_pads_start),
14339         (gst_collect_pads_stop):
14340         * libs/gst/base/gstcollectpads.h:
14341         No need to call _stop in _finalize.
14342         Iterate the main pad list in _finalize.
14343         Added some more debug.
14344         Free lists and data in the right order.
14345         Also free data whem doing _remove_pad when stopped for
14346         backward compatibility protect ::started with PAD_LOCK as
14347         well.
14348
14349 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14350
14351         * gst/gststructure.c: (gst_structure_gtype_from_abbr),
14352         (gst_structure_parse_value):
14353           add some comments
14354           rename a method so that it actually says what it does better
14355
14356 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
14357
14358         * gst/gstevent.c: (_gst_event_initialize):
14359         * gst/gstformat.c: (_gst_format_initialize):
14360           make sure some essential types used by events are registered
14361           as part of gst_init()
14362         * gst/gstvalue.c: (gst_value_serialize_flags):
14363           if no flags are set, serialize them to a value that represents NONE
14364           so that deserializing them works
14365         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
14366           add tests for serialization and deserialization of flags
14367
14368 2006-05-10  Wim Taymans  <wim@fluendo.com>
14369
14370         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_collect),
14371         (gst_collect_pads_collect_range), (gst_collect_pads_available),
14372         (gst_collect_pads_check_pads), (gst_collect_pads_check_collected),
14373         (gst_collect_pads_event), (gst_collect_pads_chain):
14374         Update docs.
14375         Better debug info.
14376         Catch and return errors from the collect function
14377         Refuse data on eos pads.
14378
14379 2006-05-10  Edward Hervey  <edward@fluendo.com>
14380
14381         * gst/gstinterface.h:
14382         GST_IMPLEMENTS_INTERFACE and GST_IS_IMPLEMENTS_INTERFACE use the normal
14383         GInterface type checking.
14384         They were previously using non-defined macros.
14385
14386 2006-05-09  Wim Taymans  <wim@fluendo.com>
14387
14388         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_init),
14389         (gst_collect_pads_finalize), (gst_collect_pads_add_pad),
14390         (gst_collect_pads_remove_pad), (gst_collect_pads_set_flushing),
14391         (gst_collect_pads_start), (gst_collect_pads_stop),
14392         (gst_collect_pads_peek), (gst_collect_pads_pop),
14393         (gst_collect_pads_available), (gst_collect_pads_read),
14394         (gst_collect_pads_flush), (gst_collect_pads_check_pads),
14395         (gst_collect_pads_is_collected), (gst_collect_pads_event),
14396         (gst_collect_pads_chain):
14397         * libs/gst/base/gstcollectpads.h:
14398         Clean up the mess that is collectpads, add comments and
14399         FIXMEs where needed.
14400         Maintain a separate pad list so we can add pads while
14401         collecting the other ones. For this we need a new separate 
14402         lock (see comics).
14403         Fix memory leak in finalize.
14404         Refactor some weird code to set/unset pad flushing flags, mark
14405         with comments.
14406         Don't crash in _available, _read, _flush when we're EOS.
14407
14408         * tests/check/libs/.cvsignore:
14409         Ignore adapter check binary.
14410
14411 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14412
14413         * gst/gstindex.c: (gst_index_resolver_get_type):
14414         * plugins/elements/gstfakesink.c:
14415         (gst_fake_sink_state_error_get_type):
14416         * plugins/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
14417         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type):
14418         * plugins/elements/gstqueue.c: (queue_leaky_get_type):
14419           Const-ify GEnumValue arrays.
14420
14421 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14422
14423         * tests/check/gst/gstbuffer.c: (GST_START_TEST):
14424           Add test case for flags + gst_buffer_make_metadata_writable().
14425
14426 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14427
14428         * gst/gstbuffer.c: (gst_buffer_make_metadata_writable):
14429           gst_buffer_make_metadata_writable() should maintain the
14430           buffer flags (those that make sense at least) (see #340859).
14431
14432 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14433
14434         * tools/gst-inspect.c:
14435         * tools/gst-launch.c:
14436         * tools/gst-typefind.c:
14437         * tools/gst-xmlinspect.c:
14438         * tools/tools.h:
14439           Fix up includes: need to include stdlib.h in tools.h for exit().
14440
14441 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
14442
14443         * gst/gsttaglist.c: (_gst_tag_initialize):
14444         * gst/gsttaglist.h:
14445           API: add GST_TAG_IMAGE tag (#340721).
14446
14447 2006-05-08  Wim Taymans  <wim@fluendo.com>
14448
14449         * gst/gstquery.c:
14450         Added some docs for the segment query.
14451
14452 2006-05-08  Wim Taymans  <wim@fluendo.com>
14453
14454         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
14455         (gst_base_src_loop), (gst_base_src_change_state):
14456         Always push non-flushing serialized events in the streaming 
14457         thread.
14458
14459 2006-05-08  Thomas Vander Stichele  <thomas at apestaart dot org>
14460
14461         * gst/gsterror.c: (_gst_stream_errors_init):
14462           Add a missing error string.
14463
14464 2006-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
14465
14466         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment):
14467         Add applied_rate to the debug
14468
14469         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek):
14470         Copy applied_rate into the outgoing NEWSEGMENT event
14471
14472 2006-05-08  Wim Taymans  <wim@fluendo.com>
14473
14474         Patch by: Philippe Rouquier <philippero at libertysurf dot fr>
14475
14476         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_flushing),
14477         (gst_base_sink_change_state):
14478         call ::unlock before taking the PREROLL_LOCK so we can safely
14479         handle elements that lock in ::render.
14480         Fixes #340174.
14481
14482 2006-05-08  Edward Hervey  <edward@fluendo.com>
14483
14484         * autogen.sh: (CONFIGURE_DEF_OPT): 
14485         Darwin's libtoolize is in fact called glibtoolize.
14486         Adding glibtoolize to the list of accepted names for libtoolize.
14487
14488 2006-05-08  Wim Taymans  <wim@fluendo.com>
14489
14490         * libs/gst/base/gstbasesrc.c: (gst_base_src_loop):
14491         Unify error handling, don't post an error message
14492         when a push() returns EOS but perform our normal EOS
14493         handling code. Fixes #340772.
14494
14495 2006-05-08  Wim Taymans  <wim@fluendo.com>
14496
14497         * docs/design/part-overview.txt:
14498         Make upsteam/downstream concepts more clear.
14499         Give an example of serialized/non-serialized events.
14500
14501         * docs/design/part-events.txt:
14502         * docs/design/part-streams.txt:
14503         Mention applied_rate.
14504
14505         * docs/design/part-trickmodes.txt:
14506         Mention applied rate, flesh out some more use cases.
14507
14508         * gst/gstevent.c: (gst_event_new_new_segment),
14509         (gst_event_parse_new_segment), (gst_event_new_new_segment_full),
14510         (gst_event_parse_new_segment_full), (gst_event_new_tag),
14511         (gst_event_parse_tag), (gst_event_new_buffer_size),
14512         (gst_event_parse_buffer_size), (gst_event_new_qos),
14513         (gst_event_parse_qos), (gst_event_parse_seek),
14514         (gst_event_new_navigation):
14515         * gst/gstevent.h:
14516         Add applied_rate field to NEWSEGMENT event.
14517         API: gst_event_new_new_segment_full()
14518         API: gst_event_parse_new_segment_full()
14519
14520         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_seek),
14521         (gst_segment_set_newsegment), (gst_segment_set_newsegment_full),
14522         (gst_segment_to_stream_time), (gst_segment_to_running_time):
14523         * gst/gstsegment.h:
14524         Add applied_rate to GstSegment structure.
14525         Make calculation of stream_time and running_time more correct
14526         wrt rate/applied_rate.
14527         Add some more docs.
14528         API: GstSegment::applied_rate field
14529         API: gst_segment_set_newsegment_full();
14530
14531         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
14532         (gst_base_sink_get_sync_times), (gst_base_sink_get_position):
14533         * libs/gst/base/gstbasetransform.c:
14534         (gst_base_transform_sink_eventfunc),
14535         (gst_base_transform_handle_buffer):
14536         Parse and use applied_rate in the GstSegment field.
14537
14538         * tests/check/gst/gstevent.c: (GST_START_TEST):
14539         Add check for applied_rate field.
14540
14541         * tests/check/gst/gstsegment.c: (GST_START_TEST),
14542         (gstsegments_suite):
14543         Add more checks for various GstSegment operations.
14544
14545 2006-05-08  Wim Taymans  <wim@fluendo.com>
14546
14547         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
14548         (gst_base_sink_do_sync), (gst_base_sink_chain_unlocked),
14549         (gst_base_sink_get_position), (gst_base_sink_change_state):
14550         Store the sync time of the buffer end position separatly in a
14551         new variable eos_rtime so we can properly sync the EOS event.
14552         Fixes #340697.
14553         Fix the docs for gst_base_sink_set_qos_enabled().
14554         Don't set segment start to invalid value when we receive a 
14555         non TIME newsegment.
14556         get closer to handling position reporting for negative rates 
14557         correctly.
14558
14559 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14560
14561         * gst/gstcaps.c:
14562         Docs about how to print caps for debug purposes.
14563
14564         * gst/gstpadtemplate.c: (gst_static_pad_template_get):
14565         use gst_caps_make_writable instead of gst_caps_copy, Fixes #340608
14566
14567 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
14568
14569         * gst/gstelement.c:
14570           use full enum names and preprend a '%' in docs strings to make recent 
14571           gtk-doc turn that into a link
14572
14573 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
14574
14575         * docs/manual/basics-bins.xml:
14576         * docs/manual/basics-bus.xml:
14577         * docs/manual/basics-pads.xml:
14578           Some typo fixes, some additions, some clarifications. 
14579
14580 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
14581
14582         * tools/gst-inspect.c: (main):
14583         * tools/gst-launch.c: (main):
14584         * tools/gst-run.c: (main):
14585         * tools/gst-typefind.c: (main):
14586         * tools/gst-xmlinspect.c: (main):
14587           Use the string passed to g_option_context_new() for
14588           what it's intended for - the program name is already
14589           printed elsewhere.
14590
14591 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
14592
14593         * tools/Makefile.am:
14594         * tools/gst-inspect.c: (main):
14595         * tools/gst-launch.c: (main):
14596         * tools/gst-xmlinspect.c: (main):
14597         * tools/tools.h:
14598           Add back --version command line option (#340460).
14599
14600         * tools/gst-typefind.c: (have_type_handler), (typefind_file), (main):
14601           Add --version option and use GOption for argument parsing; refactor a
14602           bit; accept directories as arguments and recurse into them; lastly,
14603           print a decent error message when things go wrong.
14604
14605 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
14606
14607         * docs/manual/basics-bins.xml:
14608         Don't mention GstThread (#340611)
14609         * docs/manual/basics-elements.xml:
14610         Update link to GObject tutorial (#340607)
14611         
14612 2006-05-05  Wim Taymans  <wim@fluendo.com>
14613
14614         * gst/gstbuffer.h:
14615         * gst/gstminiobject.c:
14616         Add note about refcounting and miniobject/buffer writeability
14617         to docs. Fixes #340604
14618
14619         * gst/gstelementfactory.h:
14620         Added some explanation about @klass.
14621
14622 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
14623
14624         * docs/manual/intro-motivation.xml:
14625         * docs/manual/manual.xml:
14626         Avoid CORBA & Bonobo references (#340598)
14627
14628 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
14629
14630         * docs/manual/basics-bus.xml:
14631         * docs/manual/basics-pads.xml:
14632         Fix up some inaccuracies and omissions (#340609)
14633         
14634 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
14635
14636         * gst/gstghostpad.c:
14637           Small typo in docs (#340625)
14638
14639 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
14640
14641         * gst/parse/Makefile.am:
14642           Make 'make -j' proof (see #340698).
14643
14644 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
14645
14646         * configure.ac:
14647           Require GLib-2.8 here as well.
14648
14649 2006-05-05  Wim Taymans  <wim@fluendo.com>
14650
14651         * gst/glib-compat.c:
14652         * gst/gst.c: (init_pre):
14653         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
14654         (gst_object_unref), (gst_object_replace), (gst_object_dispose),
14655         (gst_object_dispatch_properties_changed):
14656         * gst/gstobject.h:
14657         * gst/gstregistryxml.c: (gst_registry_xml_read_cache):
14658         * gst/gststructure.c: (gst_structure_set_valist):
14659         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
14660         Remove pre glib2.8 compatibility, fixes #340508
14661
14662 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
14663
14664         * gst/gsttaglist.h:
14665           Mention type of tags in doc blurbs.
14666
14667 2006-05-04  Jan Schmidt  <thaytan@mad.scientist.com>
14668
14669         * gst/gstpad.c: (gst_pad_init), (gst_pad_configure_sink),
14670         (gst_pad_configure_src), (gst_pad_push):
14671         Restore acceptcaps checking behaviour now that good plugins have
14672         been released.
14673
14674 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
14675
14676         Patch by: James Andrewartha <trs80 at tartarus uwa edu au>
14677
14678         * gst/gst.c:
14679         * gst/gstbus.c:
14680         * gst/gstclock.c:
14681         * gst/gstevent.c:
14682         * gst/gstformat.c:
14683         * gst/gstmessage.c:
14684         * gst/gstparse.c:
14685         * gst/gstquery.c:
14686         * gst/gstutils.c:
14687         * gst/parse/Makefile.am:
14688         * libs/gst/base/gstadapter.c:
14689         * libs/gst/base/gstbasesrc.c:
14690         * libs/gst/base/gstpushsrc.c:
14691         * libs/gst/base/gsttypefindhelper.c:
14692         * plugins/elements/gstfakesrc.c:
14693         * plugins/elements/gstidentity.c:
14694           Make sure gstprivate.h and/or config.h are
14695           always included first, otherwise some of our
14696           defines (like _FILE_OFFSET_BITS) might be
14697           redefined in the system headers. Fixes build
14698           on opensolaris (#340016).
14699
14700 2006-05-04  Wim Taymans  <wim@fluendo.com>
14701
14702         * docs/libs/gstreamer-libs-sections.txt:
14703         API: addition: gst_adapter_take_buffer()
14704         
14705         * libs/gst/base/gstadapter.c: (gst_adapter_push),
14706         (gst_adapter_peek), (gst_adapter_take), (gst_adapter_take_buffer),
14707         (gst_adapter_available_fast):
14708         * libs/gst/base/gstadapter.h:
14709         Prepare for optimizing the hell out of this hugely inefficient
14710         piece of code. 
14711         Added gst_adapter_take_buffer() so we can at least start thinking
14712         about subbuffering and merging.
14713         Added some comments.
14714
14715         * tests/check/Makefile.am:
14716         * tests/check/libs/adapter.c: (GST_START_TEST),
14717         (gst_adapter_suite), (main):
14718         Added GstAdapter check.
14719
14720 2006-05-04  Wim Taymans  <wim@fluendo.com>
14721
14722         * docs/design/part-overview.txt:
14723         Fix some typos, add blurb about buffer flags.
14724
14725 2006-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
14726
14727         * docs/libs/gstreamer-libs-sections.txt:
14728           make sure GstBaseTransformClass shows up in the docs
14729         * libs/gst/base/gstbasetransform.c:
14730         * libs/gst/base/gstbasetransform.h:
14731           move docs so gtk-doc picks it up now
14732
14733 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
14734
14735         * docs/libs/gstreamer-libs-sections.txt:
14736           add missing symbols to docs
14737
14738 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
14739
14740         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
14741           back out the newsegment handling change, see #340060 for ongoing
14742           discussion
14743
14744 2006-04-30  Tim-Philipp Müller  <tim at centricular dot net>
14745
14746         * tools/gst-run.c: (get_candidates), (main):
14747           Fix wrong g_file_test() usage (see glib docs for why it doesn't
14748           work); fix typo in error message. Fixes #340079.
14749
14750 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14751
14752         * common/Makefile.am:
14753         * docs/Makefile.am:
14754         * docs/faq/Makefile.am:
14755         * docs/gst/Makefile.am:
14756         * docs/libs/Makefile.am:
14757         * docs/manual/Makefile.am:
14758         * docs/plugins/Makefile.am:
14759         * docs/pwg/Makefile.am:
14760         * docs/slides/Makefile.am:
14761         * docs/upload.mak:
14762         * common/upload.mak:
14763           move upload.mak to common
14764
14765 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
14766
14767         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
14768           add more asserts on refcounts
14769           do more cleanup at end of tests
14770           fix test leaks showing in FC5
14771
14772 2006-04-29  Stefan Kost  <ensonic@users.sf.net>
14773
14774         * plugins/elements/gsttypefindelement.c:
14775         (gst_type_find_element_handle_event):
14776         reverted wrong change and reflowed code to avoid others falling into
14777         this trap
14778
14779 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14780
14781         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_event):
14782           fix changelog entry about last collectpads change,
14783           add notes about proper fix
14784
14785 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14786
14787         * gst/gst.c:
14788         * gst/gstregistry.c: (gst_registry_scan_path_level),
14789         (gst_registry_scan_path):
14790         * gst/gstregistry.h:
14791           only write out registry if it has changed, fixes #338339
14792
14793 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14794
14795         * gst/gstbin.c:
14796         * gst/gstpipeline.c:
14797         * plugins/elements/gstcapsfilter.c:
14798         * plugins/elements/gstfakesink.c:
14799         * plugins/elements/gstfakesrc.c:
14800         * plugins/elements/gstfdsink.c:
14801         * plugins/elements/gstfdsrc.c:
14802         * plugins/elements/gstfilesink.c:
14803         * plugins/elements/gstfilesrc.c:
14804         * plugins/elements/gstidentity.c:
14805         * plugins/elements/gstqueue.c:
14806         * plugins/elements/gsttee.c:
14807         * plugins/elements/gsttypefindelement.c:
14808         (gst_type_find_element_handle_event):
14809           make GstElementDetails const
14810
14811 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14812
14813         * libs/gst/base/gstbasesink.c: (gst_base_sink_event):
14814         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
14815         (gst_collect_pads_is_collected), (gst_collect_pads_event):
14816           more detailed debug and formatting cleanup,
14817           forward newsegments to src-pad (so that e.g. adder not eats them)
14818
14819 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14820
14821         * gst/gstutils.c: (gst_element_link_pads):
14822           cleanup double code
14823
14824 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
14825
14826         * libs/gst/controller/gstcontroller.c:
14827         (gst_controller_sync_values):
14828           some little tuning
14829         * tests/check/libs/controller.c: (GST_START_TEST),
14830         (gst_controller_suite):
14831           a new test for live value handling
14832
14833 2006-04-28  Wim Taymans  <wim@fluendo.com>
14834
14835         * gst/gstutils.c: (push_and_ref):
14836         Added some more docs.
14837         Fix refcount issue whith gst_element_found_tags() helper 
14838         function. Fixes #338335
14839
14840         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
14841         Added testsuite for gst_element_found_tags().
14842
14843 2006-04-28  Michael Smith  <msmith@fluendo.com>
14844
14845         * gst/gstvalue.c: (gst_value_serialize_flags):
14846           Avoid NULL dereference when trying to serialize flags containing
14847           invalid values.
14848
14849 2006-04-28  Michael Smith  <msmith@fluendo.com>
14850
14851         * plugins/elements/gsttypefindelement.c:
14852         (gst_type_find_element_handle_event):
14853           If we get EOS before any data is accumulated, don't use
14854           uninitialised local variables.
14855
14856 2006-04-28  Michael Smith  <msmith@fluendo.com>
14857
14858         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
14859         (gst_dp_event_from_packet):
14860           Fixes in reading/writing events over GDP (not currently used?) - 
14861           dereferencing NULL events for unknown/invalid event types, memory
14862           leak, and change g_warning to GST_WARNING.
14863
14864 2006-04-28  Wim Taymans  <wim@fluendo.com>
14865
14866         * libs/gst/base/gstbasesink.c: (gst_base_sink_is_too_late),
14867         (gst_base_sink_do_render_stats), (gst_base_sink_render_object),
14868         (gst_base_sink_get_position), (gst_base_sink_change_state):
14869         When frame dropping is enabled, we should not ignore frames
14870         without a duration.
14871         Update some documentation.
14872
14873 2006-04-28  Wim Taymans  <wim@fluendo.com>
14874
14875         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
14876         (gst_base_src_send_event), (gst_base_src_change_state):
14877         Documentation updates.
14878
14879 2006-04-28  Wim Taymans  <wim@fluendo.com>
14880
14881         * plugins/elements/gstfdsink.c: (gst_fd_sink_render),
14882         (gst_fd_sink_check_fd), (gst_fd_sink_update_fd):
14883         handle EAGAIN, EINTR and short writes correctly. Also clean
14884         up some error cases, avoid a deadlock on bad file descriptors and
14885         use GST_DEBUG_OBJECT.
14886         Fixes #339843
14887
14888 2006-04-28  Wim Taymans  <wim@fluendo.com>
14889
14890         * gst/gstvalue.c: (gst_value_serialize_buffer),
14891         (gst_value_deserialize_buffer):
14892         Don't try to serialize a GValue with a NULL buffer. 
14893         Fixes #339821.
14894
14895         * tests/check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
14896         Added check for serialisation of NULL buffers.
14897
14898 2006-04-28  Wim Taymans  <wim@fluendo.com>
14899
14900         * gst/gstminiobject.c: (gst_value_take_mini_object):
14901         Taking a NULL miniobject is valid, fix the case where
14902         we try to unref the NULL miniobject.
14903
14904 2006-04-28  Wim Taymans  <wim@fluendo.com>
14905
14906         Patch by: Stefan Kost <ensonic at sonicpulse dot de>
14907
14908         * gst/gstbin.c: (gst_bin_handle_message_func):
14909         Update docs.
14910         Don't leak bin refcount when a state recalc is
14911         in progress and we delay another one #339808.
14912
14913 2006-04-28  Wim Taymans  <wim@fluendo.com>
14914
14915         * docs/design/part-TODO.txt:
14916         Mention QoS as an ongoing work item.
14917
14918         * docs/design/part-buffering.txt:
14919         New doc about buffering that needs to be fleshed out
14920         at some point.
14921
14922         * docs/design/part-qos.txt:
14923         More QoS policy for decoders/demuxers/transforms
14924
14925         * docs/design/part-trickmodes.txt:
14926         Small update.
14927
14928 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
14929
14930         * configure.ac:
14931           back to HEAD
14932
14933 === release 0.10.5 ===
14934
14935 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
14936
14937         * configure.ac:
14938           releasing 0.10.5, "Fogo"
14939
14940 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
14941
14942         patch by: Wim Taymans
14943
14944         * gst/gstpad.c: (gst_pad_init), (gst_pad_configure_sink),
14945         (gst_pad_configure_src), (gst_pad_push):
14946         * gst/gstpipeline.c: (gst_pipeline_init):
14947           Fix internal data flow errors.  Fixes #338711.
14948
14949 2006-04-12  Wim Taymans  <wim@fluendo.com>
14950
14951         * tests/check/gst/gstelement.c: (GST_START_TEST):
14952         Don't leak the factory.
14953
14954 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
14955
14956         * configure.ac:
14957         * win32/common/config.h:
14958           prerelease
14959
14960 2006-04-12  Tim-Philipp Müller  <tim at centricular dot net>
14961
14962         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
14963         (gst_controller_unset_all):
14964           Free allocated GstTimedValues when freeing list nodes.
14965           Should fix leaks 'make check-valgrind' complains about.
14966
14967         * win32/common/libgstcontroller.def:
14968           Add gst_controller_unset_all.
14969
14970 2006-04-11  Stefan Kost  <ensonic@users.sf.net>
14971
14972         * docs/libs/gstreamer-libs-sections.txt:
14973         * libs/gst/controller/gstcontroller.c: (gst_controller_unset),
14974         (gst_controller_unset_all):
14975         * libs/gst/controller/gstcontroller.h:
14976         API: Added new method gst_controller_unset_all()
14977         fixed gst_controller_unset()
14978         * tests/check/libs/controller.c: (GST_START_TEST),
14979         (gst_controller_suite):
14980         Added two testcases for new and fixed method
14981
14982 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
14983
14984         * libs/gst/net/gstnettimepacket.c: (gst_net_time_packet_send):
14985           MSG_DONTWAIT is not defined on Cygwin, so work
14986           around that (fixes #317048).
14987           
14988 2006-04-11  Wim Taymans  <wim@fluendo.com>
14989
14990         * gst/gstelementfactory.c: (gst_element_register),
14991         (gst_element_factory_create), (gst_element_factory_make):
14992         Some cleanups.
14993         Fixed a FIXME.
14994         Updated docs (Fixes #131079)
14995
14996         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
14997         Small cleanups.
14998
14999         * tests/check/gst/gstelement.c: (GST_START_TEST),
15000         (gst_element_suite):
15001         Added testcase for elementfactory class field.
15002
15003 2006-04-10  Wim Taymans  <wim@fluendo.com>
15004
15005         * gst/gstsegment.c:
15006         Added some more docs.
15007
15008         * libs/gst/base/gstbasesink.c: (gst_base_sink_perform_qos),
15009         (gst_base_sink_reset_qos):
15010         Calculate more accurate rate values.
15011
15012 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
15013
15014         * gst/gst_private.h:
15015           add a new #ifdef to use __declspec(dllimport) only for
15016           other modules and not for gstreamer core
15017         * gst/gstbasesink.c: (gst_base_sink_perform_qos):
15018           use gst_guint64_to_gdouble for conversion
15019         * win32/common/libgstreamer.def:
15020           add new exported functions
15021         * win32/vs6/gst_inspect.dsp:
15022         * win32/vs6/gst_launch.dsp:
15023         * win32/vs6/libgstbase.dsp:
15024         * win32/vs6/libgstcontroller.dsp:
15025         * win32/vs6/libgstcoreelements.dsp:
15026         * win32/vs6/libgstdataprotocol.dsp:
15027         * win32/vs6/libgstnet.dsp:
15028           update project files
15029
15030 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15031
15032         * gst/gstbuffer.c: (gst_subbuffer_class_init):
15033         * gst/gstclock.c: (gst_clock_class_init):
15034         * gst/gstelement.c: (gst_element_class_init):
15035         * gst/gstindex.c: (gst_index_class_init):
15036         * gst/gstindexfactory.c: (gst_index_factory_class_init):
15037         * gst/gstobject.c: (gst_object_class_init),
15038         (gst_signal_object_class_init):
15039         * gst/gstpad.c: (gst_pad_class_init):
15040         * gst/gstpadtemplate.c: (gst_pad_template_class_init):
15041         * gst/gstpluginfeature.c: (gst_plugin_feature_class_init):
15042         * gst/gstregistry.c: (gst_registry_class_init):
15043         * gst/gstsystemclock.c: (gst_system_clock_class_init):
15044         * gst/gsttask.c: (gst_task_class_init):
15045         * gst/gstxml.c: (gst_xml_class_init):
15046         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
15047         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
15048         (gst_base_src_loop):
15049         * libs/gst/controller/gstcontroller.c:/
15050         (_gst_controller_class_init):
15051         * plugins/elements/gstfdsrc.c: (gst_fd_src_class_init):
15052         * plugins/indexers/gstfileindex.c: (gst_file_index_class_init):
15053         * plugins/indexers/gstmemindex.c: (gst_mem_index_class_init):
15054         * tests/old/examples/plugins/example.c: (gst_example_class_init):
15055         * tests/old/testsuite/threads/signals.c: (gst_test_class_init):
15056         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
15057
15058 2006-04-08  Tim-Philipp Müller  <tim at centricular dot net>
15059
15060         * gst/gstpad.c: (gst_pad_link):
15061           Must set peer pads before calling the link function, otherwise
15062           a task started from a link function might get a flow-not-linked
15063           result when trying to push because the other thread where the
15064           linking happens hasn't had a chance to set the peers yet. This
15065           might happen for example when a queue gets linked to a downstream
15066           element, as queue starts a streaming task when its source pad
15067           gets linked. Happens in real life when playing back flac/musepack
15068           files in playbin (#332390).
15069           
15070 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
15071
15072         * gst/gstindex.h:
15073         * gst/gstxml.h:
15074         * libs/gst/base/gstadapter.h:
15075         * libs/gst/base/gstbasesink.h:
15076         * libs/gst/base/gstbasesrc.h:
15077         * libs/gst/base/gstbasetransform.h:
15078         * libs/gst/base/gstcollectpads.h:
15079         * libs/gst/base/gstpushsrc.h:
15080         Fix broken GObject macros
15081
15082 2006-04-07  Wim Taymans  <wim@fluendo.com>
15083
15084         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
15085         Initialize start and stop times, thanks valgrind.
15086
15087 2006-04-07  Wim Taymans  <wim@fluendo.com>
15088
15089         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
15090         Be a bit nicer to badly behaving upstream elements that expect
15091         us to deal with non TIME segments and timestamps (such as fakesrc
15092         in the testsuite).
15093
15094 2006-04-07  Wim Taymans  <wim@fluendo.com>
15095
15096         * gst/gstbus.c:
15097         Small documentation clarification about the signal watch.
15098
15099         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times),
15100         (gst_base_sink_wait_clock), (gst_base_sink_do_sync),
15101         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
15102         (gst_base_sink_do_render_stats), (gst_base_sink_render_object),
15103         (gst_base_sink_get_position_last),
15104         (gst_base_sink_get_position_paused), (gst_base_sink_change_state):
15105         Convert and store timestamps in stream time and running time, the
15106         raw timestamps are not useful, also document this better.
15107         Use different window sizes for good and bad QoS observations so
15108         we react to badness a little quicker.
15109         Keep track of the amount of rendered and dropped buffers.
15110         Send QoS timestamps in running time.
15111
15112         * libs/gst/base/gstbasetransform.c:
15113         (gst_base_transform_sink_eventfunc),
15114         (gst_base_transform_handle_buffer):
15115         Compare QoS timestamps against running time.
15116
15117 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
15118
15119         * gst/gstpad.c:
15120           Typo fixes in docs.
15121
15122 2006-04-06  Michael Smith  <msmith@fluendo.com>
15123
15124         * gst/gstpad.c: (gst_pad_set_property):
15125           Use g_value_get_object() instead of g_value_dup_gst_object(),
15126           to avoid double-reffing the pad template (which we then sink,
15127           so this worked previously if (and only if) the pad template
15128           was floating.
15129
15130         * gst/gstpadtemplate.c: (gst_pad_template_init),
15131         (gst_pad_template_pad_created):
15132           Never return floating references to pad templates, create
15133           them as initially-sunken.
15134
15135           Document an extra function (and make this stop sinking our
15136           pad template, since that is now guaranteed to do nothing,
15137           since we created it sunken).
15138
15139         * gst/gstghostpad.c:
15140           Fix docs typo.
15141
15142 2006-04-06  Tim-Philipp Müller  <tim at centricular dot net>
15143
15144         * gst/gstinfo.c: (__gst_in_valgrind):
15145           Add some newlines.
15146
15147         * plugins/elements/gsttypefindelement.c:
15148         (gst_type_find_element_chain):
15149           Don't leak buffer caps.
15150
15151 2006-04-06  Michael Smith  <msmith@fluendo.com>
15152
15153         * gst/parse/grammar.y:
15154           Fix a leak in parse-launch for any source-or-sink named element 
15155           references used.
15156
15157         * tests/check/pipelines/parse-launch.c: (expected_fail_pipe):
15158           Unref the pipeline if it exists after we've failed parsing.
15159
15160 2006-04-05  Michael Smith  <msmith@fluendo.com>
15161
15162         * gst/gstpipeline.c: (gst_pipeline_init):
15163           When we create a pipeline bus, initially create it in flushing mode.
15164           Fixes leaks in at least one test, and makes a new pipeline work the
15165           same as one that has gone to READY and then back to NULL.
15166
15167         * gst/gstelement.c:
15168           Typo fix in docs.
15169
15170 2006-04-05  Michael Smith  <msmith@fluendo.com>
15171
15172         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
15173           Unref a pad we reffed.
15174         * tests/check/gst/gstutils.c: (GST_START_TEST):
15175           Unref bins
15176
15177 2006-04-05  Michael Smith  <msmith@fluendo.com>
15178
15179         * gst/gstquery.c: (gst_query_set_formats),
15180         (gst_query_set_formatsv):
15181           Fix leaking GValues in queries, as shown by valgrind/testsuite.
15182
15183 2006-04-05  Michael Smith  <msmith@fluendo.com>
15184
15185         * tests/check/generic/sinks.c: (GST_START_TEST):
15186           Fix a variety of memleaks in sinks check, which are only sometimes 
15187           shown by running the tests under valgrind (weird?).
15188
15189 2006-04-05  Jan Schmidt  <thaytan@mad.scientist.com>
15190
15191         * docs/version.entities.in:
15192           Fix the substituted entity name after thomas' changes on the
15193           weekend.
15194
15195 2006-04-05  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15196
15197         * gst/gstinfo.c: (__gst_in_valgrind): Use printf instead of
15198         VALGRIND_PRINTF
15199         
15200 2006-04-05  Andy Wingo  <wingo@pobox.com>
15201
15202         * gst/gstpad.c (gst_pad_set_blocked_async): More debug.
15203
15204         * libs/gst/base/gstbasetransform.c
15205         (gst_base_transform_sink_eventfunc): When resetting our segment on
15206         FLUSH_STOP, also update the flag saying we haven't seen a
15207         newsegment.
15208
15209 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
15210
15211         Patch by: Paolo Borelli  <pborelli at katamail dot com>
15212
15213         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_class_init),
15214         (gst_plugin_check_license):
15215           minor clean-ups: G_DEFINE_TYPE already takes care of the
15216           parent_class stuff, no need to do it twice. Mark array of
15217           license strings as constant. (#337103)
15218           
15219 2006-04-04  Michael Smith  <msmith@fluendo.com>
15220
15221         * tools/gst-inspect.c: (print_element_list):
15222           Free the right plugin list; fixes a memory leak.
15223
15224 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
15225
15226         Patch by: Mark Nauwelaerts  <manauw at skynet dot be>
15227
15228         * plugins/elements/gstfilesink.c: (gst_file_sink_render):
15229           Don't error out on empty buffers (#336945).
15230           
15231 2006-04-04  Jan Schmidt  <thaytan@mad.scientist.com>
15232
15233         * docs/libs/gstreamer-libs-sections.txt:
15234         * gst/gsttaglist.c:
15235         * libs/gst/base/gstbasesink.c:
15236         * libs/gst/base/gstbasesink.h:
15237         * libs/gst/base/gstbasesrc.c:
15238         * libs/gst/base/gstbasesrc.h:
15239           Documentation updates. Make BaseSink and BaseSrc docs contain the
15240           class structure so that people can actually see the prototypes for
15241           virtual functions they're supposed to be overriding.
15242
15243 2006-04-04  Tim-Philipp Müller  <tim at centricular dot net>
15244
15245         * plugins/elements/gsttypefindelement.c:
15246         (gst_type_find_element_chain):
15247           More debug info; when skipping typefinding, send cached
15248           events in all cases.
15249
15250 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
15251
15252         * configure.ac:
15253           use new AS_VERSION and AS_NANO macros
15254         * gst/gst-i18n-lib.h:
15255         * gst/gst.c:
15256         * gst/gsterror.c:
15257         * gst/gstversion.h.in:
15258         * win32/common/config.h:
15259         * win32/common/config.h.in:
15260           update accordingly
15261
15262 2006-03-31  Michael Smith  <msmith@fluendo.com>
15263
15264         * plugins/elements/gsttypefindelement.c:
15265         (gst_type_find_element_chain):
15266           Do not typefind content if the buffers already have caps.
15267           Neccesary for icydemux (#333657), and the right thing to do anyway.
15268
15269 2006-03-30  Wim Taymans  <wim@fluendo.com>
15270
15271         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
15272         (gst_base_sink_finalize), (gst_base_sink_set_qos_enabled),
15273         (gst_base_sink_is_qos_enabled), (gst_base_sink_do_sync),
15274         (gst_base_sink_record_qos_observation),
15275         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
15276         (gst_base_sink_is_too_late), (gst_base_sink_render_object),
15277         (gst_base_sink_change_state):
15278         More QoS measurements as described in the design doc.
15279         Get rid of ringbuffer with observations, running average is
15280         more simple and equally good.
15281         Calculates valid proportion now.
15282         Added beginning of flood measurement.
15283
15284 2006-03-29  Wim Taymans  <wim@fluendo.com>
15285
15286         * docs/design/part-qos.txt:
15287         * gst/gstclock.c:
15288         Small documentation updates and additions.
15289
15290 2006-03-29  Wim Taymans  <wim@fluendo.com>
15291
15292         * libs/gst/base/gstbasesrc.c: (gst_base_src_finalize),
15293         (gst_base_src_send_event), (gst_base_src_loop),
15294         (gst_base_src_change_state):
15295         Perform the EOS logic when we reach the segment stop position.
15296         Fix compilation on gcc4.1
15297
15298 2006-03-29  Wim Taymans  <wim@fluendo.com>
15299
15300         Patch by: Tommi Myöhänen <ext-tommi dot myohanen at nokia dot com>
15301
15302         * plugins/elements/gstqueue.c: (gst_queue_init),
15303         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
15304         (gst_queue_set_property):
15305         * plugins/elements/gstqueue.h:
15306         In queue, when EOS is received, if minimum threshold > max_size -
15307         current_level, there is chance that queue blocks forever in conditional
15308         item del wait. This is because the queue is not emptied completely due
15309         to minimum threshold.  Here is another approach. Instead of setting
15310         cur_levels to max in EOS, just zero all minimum threshold levels. This
15311         should make sure that queue gives out all data. When going to READY
15312         (stop) state, just reset the original minimum threshold levels.
15313         Fixes #336336.
15314
15315 2006-03-29  Tim-Philipp Müller  <tim at centricular dot net>
15316
15317         * plugins/elements/gsttypefindelement.c: (stop_typefinding),
15318         (gst_type_find_element_handle_event),
15319         (gst_type_find_element_send_cached_events),
15320         (gst_type_find_element_change_state):
15321         * plugins/elements/gsttypefindelement.h:
15322           When typefinding is done in push mode, we should cache
15323           events we receive during typefinding instead of just
15324           dropping them (e.g. newsegment, custom events from
15325           dvdreadsrc etc.) and then send them out once we've
15326           determined the type of the stream (and decodebin
15327           has had a chance to plug in a decoder/demuxer).
15328           
15329 2006-03-27  Wim Taymans  <wim@fluendo.com>
15330
15331         * docs/design/part-qos.txt:
15332         First QoS ideas.
15333
15334 2006-03-27  Wim Taymans  <wim@fluendo.com>
15335
15336         Inspired by a patch of: Lutz Mueller <lutz at topfrose dot de>
15337
15338         * libs/gst/base/gstbasesrc.c: (gst_base_src_finalize),
15339         (gst_base_src_send_event), (gst_base_src_change_state):
15340         Handle element seek correctly when we are streaming.
15341         Fixes #326998.
15342
15343 2006-03-24  Michael Smith  <msmith@fluendo.com>
15344
15345         * docs/faq/gst-uninstalled:
15346           Set up LD_LIBRARY_PATH to point at all the gstreamer libs. This will
15347           allow you to correctly run intalled applications built against old 
15348           core, using plugins that require updated core (e.g. running
15349           installed totem against a full uninstalled gstreamer stack)
15350
15351 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15352
15353         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_is_collected):
15354         more debug details
15355
15356 2006-03-24  Wim Taymans  <wim@fluendo.com>
15357
15358         * docs/gst/gstreamer-sections.txt:
15359         Rearrange the order of the methods so that related methods
15360         are grouped together in sections.
15361
15362 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15363
15364         * gst/gstelement.c:
15365           Little clarification in the docs
15366
15367 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
15368
15369         * docs/README:
15370         formatting fix
15371         * plugins/elements/gstidentity.c:
15372         * plugins/elements/gstqueue.c:
15373         * plugins/elements/gsttee.c:
15374         * plugins/elements/gsttypefindelement.c:
15375         GST_ELEMENT_DETAILS formatting
15376
15377 2006-03-24  Wim Taymans  <wim@fluendo.com>
15378
15379         * libs/gst/base/gstbasesink.h:
15380         Only add fields, not insert or we break ABI.
15381
15382 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15383
15384         * win32/common/libgstbase.def:
15385         * win32/common/libgstreamer.def:
15386           Update, add recently added functions.
15387
15388 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15389
15390         * docs/gst/gstreamer-sections.txt:
15391         * gst/gstutils.c: (gst_pad_query_peer_position),
15392         (gst_pad_query_peer_duration), (gst_pad_query_peer_convert):
15393         * gst/gstutils.h:
15394           API: add some new utility functions:
15395            - gst_pad_query_peer_position()
15396            - gst_pad_query_peer_duration()
15397            - gst_pad_query_peer_convert()
15398           
15399 2006-03-23  Wim Taymans  <wim@fluendo.com>
15400
15401         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
15402         (gst_base_sink_init), (gst_base_sink_finalize),
15403         (gst_base_sink_set_qos_enabled), (gst_base_sink_is_qos_enabled),
15404         (gst_base_sink_set_property), (gst_base_sink_get_property),
15405         (gst_base_sink_commit_state), (gst_base_sink_get_sync_times),
15406         (gst_base_sink_wait_clock), (gst_base_sink_do_sync),
15407         (gst_base_sink_add_qos_observation), (gst_base_sink_send_qos),
15408         (gst_base_sink_perform_qos), (gst_base_sink_reset_qos),
15409         (gst_base_sink_is_too_late), (gst_base_sink_render_object),
15410         (gst_base_sink_preroll_object), (gst_base_sink_event),
15411         (gst_base_sink_chain_unlocked), (gst_base_sink_get_position_last),
15412         (gst_base_sink_get_position_paused), (gst_base_sink_get_position),
15413         (gst_base_sink_query), (gst_base_sink_change_state):
15414         Decouple max-lateness and the fact that QoS messages are generated
15415         with a new property (qos).
15416         added API: GstBaseSink::async_play()
15417         Add vmethod so subclasses can be notified of ASYNC playing
15418         state changes.
15419         Collect timestamp start and stop to report better current
15420         position in EOS/PLAYING/PAUSED/READY/NULL.
15421         Refactor QoS/frame dropping and other measurements.
15422         API: GstBaseSrc::qos
15423         Fixes #326311
15424
15425         * libs/gst/base/gstbasesink.h:
15426         Added Private struct.
15427         API: gst_base_sink_set_qos_enabled()
15428         API: gst_base_sink_is_qos_enabled()
15429
15430 2006-03-23  Tim-Philipp Müller  <tim at centricular dot net>
15431
15432         * gst/gstregistryxml.c: (gst_registry_xml_read_cache):
15433           If compiling against GLib-2.8 or newer, try to read the
15434           registry file using GMappedFile first before falling back
15435           to fopen() + fread() (#332151).
15436
15437 2006-03-22  Wim Taymans  <wim@fluendo.com>
15438
15439         * gst/gstinfo.c: (gst_debug_set_active),
15440         (gst_debug_category_set_threshold):
15441         Disable debugging unless explicitly activated.
15442         Fixes #335480.
15443
15444 2006-03-22  Wim Taymans  <wim@fluendo.com>
15445
15446         * gst/gstelement.c: (gst_element_set_locked_state),
15447         (gst_element_dispose):
15448         Cleanup the error case.
15449
15450         * gst/gstobject.c: (gst_object_dispose):
15451         print a critical when some object was disposed with
15452         a parent, also revive the object since it might
15453         crash the parent.
15454
15455 2006-03-22  Tim-Philipp Müller  <tim at centricular dot net>
15456
15457         * tools/gst-launch.1.in:
15458           Fix another typo.
15459
15460 2006-03-21  Thomas Vander Stichele  <thomas at apestaart dot org>
15461
15462         * configure.ac:
15463         * tests/check/Makefile.am:
15464           disable some tests when we don't have a registry
15465         * tests/check/gst/gstutils.c: (gst_utils_suite):
15466           don't build the part that needs parsing
15467
15468 2006-03-21  Thomas Vander Stichele  <thomas at apestaart dot org>
15469
15470         * gst/Makefile.am
15471         * tests/examples/Makefile.am:
15472           fix --disable-parse build
15473
15474 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15475
15476         * tools/gst-feedback.1.in:
15477           Fix typo: s/feeback/feedback/ (#133494).
15478
15479 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15480
15481         * tools/Makefile.am:
15482         * tools/gst-launch.1.in:
15483           Add FILES section and correct entry about GST_REGISTRY_PATH
15484           environment variable (#133495; #133494).
15485
15486 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15487
15488         * tools/Makefile.am:
15489         * tools/gst-md5sum.1.in:
15490         * tools/gst-md5sum.c:
15491           Remove gst-md5sum and man page (the md5sink element
15492           required was removed ages ago)
15493
15494 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15495
15496         * gst/gststructure.c: (gst_structure_id_set_value):
15497           Make sure that string fields in structures/taglists
15498           contain valid UTF-8 - we don't want to pass rubbish to
15499           applications because of a buggy plugin (cp. #334167).
15500
15501 2006-03-21  Edward Hervey  <edward@fluendo.com>
15502
15503         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
15504         (gst_bin_handle_message_func):
15505         * gst/gstclock.c: (gst_clock_dispose), (gst_clock_set_master):
15506         * gst/gstelement.c: (gst_element_set_clock), (gst_element_dispose),
15507         (gst_element_set_bus_func):
15508         * gst/gstghostpad.c: (gst_proxy_pad_dispose):
15509         * gst/gstminiobject.c: (gst_value_set_mini_object),
15510         (gst_value_take_mini_object):
15511         * gst/gstpad.c: (gst_pad_set_pad_template):
15512         * gst/gstpipeline.c: (gst_pipeline_dispose),
15513         (gst_pipeline_use_clock), (gst_pipeline_auto_clock):
15514         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_pop),
15515         (gst_collect_pads_chain):
15516         * libs/gst/net/gstnettimeprovider.c:
15517         (gst_net_time_provider_set_property):
15518         Series of fixes for dereferenced pointers that gcc 4.1 complains about.
15519         It's in fact all issues with gst_*object_replace().
15520
15521 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
15522
15523         Patch by: Loïc Minier  <lool + gnome at via dot ecp dot fr>
15524         
15525         * pkgconfig/gstreamer-check-uninstalled.pc.in:
15526         * pkgconfig/gstreamer-check.pc.in:
15527           Use @CHECK_LIBS@ here instead of hard-coding -lcheck (#334109).
15528
15529 2006-03-21  Edward Hervey  <edward@fluendo.com>
15530
15531         * gst/gstbuffer.h:
15532         * gst/gstevent.h:
15533         * gst/gstmessage.h:
15534         gst_[buffer|event|message]_ref() macros are replaced by a static
15535         inline functions because gcc-4.1 will about if the return value
15536         isn't used.
15537         * tests/check/gst/gstevent.c: (event_probe):
15538         gst_event_ref now has to be given a GstEvent* , fix check accordingly.
15539
15540 2006-03-20  Jan Schmidt  <thaytan@mad.scientist.com>
15541
15542         * gst/gstutils.h:
15543         Add G_UNLIKELY to our boilerplate to optimise the 'already registered
15544         the type' case. (Closes: #335195 for now). In the future, when we
15545         depend on GLib 2.10, we could also intern the type name using
15546         g_intern_static_string()
15547
15548 2006-03-20  Wim Taymans  <wim@fluendo.com>
15549
15550         * gst/gstbin.c: (gst_bin_handle_message_func),
15551         (bin_query_max_init), (bin_query_position_fold),
15552         (bin_query_position_done), (gst_bin_query):
15553         Position query should also take max of all streams.
15554
15555 2006-03-20  Wim Taymans  <wim@fluendo.com>
15556
15557         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
15558         (gst_fake_src_finalize):
15559         Fix leaks in fakesrc.
15560
15561         * tests/check/pipelines/parse-launch.c: (GST_START_TEST):
15562         Fix leaks in the testcase.
15563
15564 2006-03-19  Sebastien Moutte  <sebastien@moutte.net>
15565
15566         * gst/gst_private.h:
15567           add win32 specific import decoration(__declspec(dllimport)) 
15568           for all extern GstDebugCategory * variables
15569         * win32/common/libgstbase.def:
15570         * win32/common/libgstcontroller.def:
15571         * win32/common/libgstreamer.def:
15572           Add some exports, remove empty lines
15573         * win32/common/libgstdataprotocol.def:
15574         * win32/common/libgstdataprotocol.dsp:
15575         * win32/common/libgstnet.def:
15576         * win32/common/libgstnet.dsp:
15577           new project files and exportation files added
15578         
15579 2006-03-19  Wim Taymans  <wim@fluendo.com>
15580
15581         * tests/check/libs/basesrc.c: (eos_event_counter):
15582         Use proper return value for probe.
15583
15584 2006-03-17  Wim Taymans  <wim@fluendo.com>
15585
15586         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_alloc_buffer_full),
15587         (gst_pad_push):
15588         Don't leak buffers, caps and pads on negotiation errors.
15589
15590 2006-03-16  Stefan Kost  <ensonic@users.sf.net>
15591
15592         * docs/faq/cvs.xml:
15593         * docs/faq/dependencies.xml:
15594         * docs/faq/developing.xml:
15595         * docs/faq/faq.xml:
15596         * docs/faq/general.xml:
15597         * docs/faq/getting.xml:
15598         * docs/faq/legal.xml:
15599         * docs/faq/troubleshooting.xml:
15600         * docs/faq/using.xml:
15601         Faq review and update.
15602
15603 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
15604
15605         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_alloc_buffer_full),
15606         (gst_pad_push):
15607         Don't pound the cpu to pieces by checking get_caps when accept_caps
15608         is called with the same caps as the pad already has.
15609         Use GST_DEBUG_OBJECT when outputting caps change information.
15610
15611 2006-03-15  Wim Taymans  <wim@fluendo.com>
15612
15613         * gst/gstclock.c: (gst_clock_class_init):
15614         Fix docs.
15615
15616 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
15617
15618         * gst/gstbuffer.h:
15619         Documentation fix.
15620
15621         * gst/gstpad.c: (gst_pad_init), (gst_pad_acceptcaps_default),
15622         (gst_pad_accept_caps), (gst_pad_configure_sink),
15623         (gst_pad_configure_src), (gst_pad_chain), (gst_pad_push):
15624         Make the default acceptcaps behaviour be to check the requested 
15625         caps against the gst_pad_get_caps output. 
15626
15627         Ensure that gst_pad_accept_caps is used to check caps when a pad
15628         doesn't have a setcaps function, so that pads automatically refuse 
15629         caps that they don't allow in their pad template. (Fixes #332986)
15630
15631         When a buffer with attached caps is pushed, ensure that the source 
15632         pad receives those caps even if the element didn't call
15633         gst_pad_set_caps first.
15634
15635 2006-03-15  Wim Taymans  <wim@fluendo.com>
15636
15637         * libs/gst/base/gstadapter.c:
15638         Add some docs.
15639
15640 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
15641
15642         * win32/common/libgstbase.def:
15643         * win32/common/libgstcontroller.def:
15644         * win32/common/libgstreamer.def:
15645           Add a whole bunch of missing functions (#334434).
15646
15647 2006-03-14  Wim Taymans  <wim@fluendo.com>
15648
15649         * libs/gst/base/gstbasesink.c: (gst_base_sink_configure_segment),
15650         (gst_base_sink_get_sync_times), (gst_base_sink_wait_clock),
15651         (gst_base_sink_do_sync), (gst_base_sink_do_qos):
15652         Better debug info when we receive a segment event.
15653         Reorganize a bit so we can pass the get_times() results around.
15654         Use the segment format when calculating the running time.
15655         Don't do QoS is sync is disabled or we have no clock or the
15656         element does not want us to sync to the clock.
15657         Don't drop buffers if QoS is disabled for now.
15658
15659 2006-03-14  Wim Taymans  <wim@fluendo.com>
15660
15661         * gst/gstclock.c: (gst_clock_class_init), (do_linear_regression):
15662         Marked the stats property as unimplemented so people don't get
15663         wild ideas.
15664         Add debug message when regression goes wrong.
15665         Added some more docs.
15666
15667 2006-03-14  Wim Taymans  <wim@fluendo.com>
15668
15669         * gst/gstsegment.c: (gst_segment_to_stream_time):
15670         Return correct return type in case of errors.
15671
15672 2006-03-14  Wim Taymans  <wim@fluendo.com>
15673
15674         * gst/gstformat.c: (gst_format_get_name), (gst_format_to_quark):
15675           Don't segfault on invalid formats.
15676
15677 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15678
15679         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
15680           Can't use gst_segment_to_running_time() when the segment
15681           is not in GST_TIME_FORMAT (like with filesink, for example).
15682           Stops flac encoding pipelines from spewing critical warnings
15683           at EOS (#331248).
15684           
15685 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
15686
15687         * gst/gstpipeline.c: (gst_pipeline_class_init):
15688           Add 'Since: 0.10.5' to gtk-doc blurb for added property.
15689
15690         * plugins/elements/gsttypefindelement.c:
15691         (gst_type_find_element_handle_event):
15692           Don't try to typefind empty streams.
15693
15694 2006-03-14  Wim Taymans  <wim@fluendo.com>
15695
15696         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync),
15697         (gst_base_sink_do_qos):
15698         Separate QoS calculation.
15699         Only drop buffers when lateness is bigger than the 
15700         duration of the buffer.
15701
15702 2006-03-13  Wim Taymans  <wim@fluendo.com>
15703
15704         * gst/gstpipeline.c: (gst_pipeline_set_property),
15705         (gst_pipeline_get_property), (do_pipeline_seek),
15706         (gst_pipeline_change_state), (gst_pipeline_set_delay),
15707         (gst_pipeline_get_delay):
15708         Don't deadlock when reading properties.
15709
15710 2006-03-13  Wim Taymans  <wim@fluendo.com>
15711
15712         * libs/gst/base/gstbasetransform.c:
15713         (gst_base_transform_class_init), (gst_base_transform_init),
15714         (gst_base_transform_sink_event),
15715         (gst_base_transform_sink_eventfunc),
15716         (gst_base_transform_src_event), (gst_base_transform_src_eventfunc),
15717         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
15718         (gst_base_transform_set_property),
15719         (gst_base_transform_get_property),
15720         (gst_base_transform_change_state), (gst_base_transform_update_qos),
15721         (gst_base_transform_set_qos_enabled),
15722         (gst_base_transform_is_qos_enabled):
15723         * libs/gst/base/gstbasetransform.h:
15724         Make basetransform virtual method for src events too.
15725         Handle QOS in basetransform.
15726         API: gst_base_transform_update_qos()
15727         API: gst_base_transform_set_qos_enabled()
15728         API: gst_base_transform_is_qos_enabled()
15729
15730 2006-03-13  Wim Taymans  <wim@fluendo.com>
15731
15732         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
15733         (gst_base_sink_do_sync):
15734         Small cleanups.
15735         Use QOS debug category.
15736
15737 2006-03-13  Wim Taymans  <wim@fluendo.com>
15738
15739         * plugins/elements/gstqueue.c:
15740         Very small doc update.
15741
15742 2006-03-13  Wim Taymans  <wim@fluendo.com>
15743
15744         * gst/gst_private.h:
15745         * gst/gstinfo.c: (_gst_debug_init):
15746         Added QOS debug category
15747
15748 2006-03-13  Wim Taymans  <wim@fluendo.com>
15749
15750         * docs/gst/gstreamer-sections.txt:
15751         * gst/gstbin.c: (bin_bus_handler), (gst_bin_handle_message_func):
15752         * gst/gstbin.h:
15753         * gst/gstbus.c: (gst_bus_class_init):
15754         * gst/gstbus.h:
15755         * gst/gstclock.c:
15756         * gst/gstelement.c: (gst_element_set_locked_state):
15757         * gst/gstsegment.c:
15758         Documentation updates.
15759
15760         * gst/gstpipeline.c: (gst_pipeline_get_type),
15761         (gst_pipeline_class_init), (gst_pipeline_init),
15762         (gst_pipeline_dispose), (gst_pipeline_set_property),
15763         (gst_pipeline_get_property), (do_pipeline_seek),
15764         (gst_pipeline_send_event), (gst_pipeline_change_state),
15765         (gst_pipeline_provide_clock_func), (gst_pipeline_set_delay),
15766         (gst_pipeline_get_delay):
15767         * gst/gstpipeline.h:
15768         Added methods for setting the delay.
15769         API: gst_pipeline_set_delay()
15770         API: gst_pipeline_get_delay()
15771         Add pipeline debug category
15772         Various cleanups.
15773         Updated docs.
15774         Don't reset stream time when seek failed.
15775
15776 2006-03-13  Wim Taymans  <wim@fluendo.com>
15777
15778         * docs/design/draft-klass.txt:
15779         * docs/design/part-clocks.txt:
15780         * docs/design/part-events.txt:
15781         * docs/design/part-gstbin.txt:
15782         * docs/design/part-gstpipeline.txt:
15783         * docs/design/part-messages.txt:
15784         * docs/design/part-negotiation.txt:
15785         * docs/design/part-overview.txt:
15786         * docs/design/part-preroll.txt:
15787         * docs/design/part-seeking.txt:
15788         * docs/design/part-states.txt:
15789         * docs/design/part-streams.txt:
15790         Documentation updates.
15791
15792 2006-03-12  Julien MOUTTE  <julien@moutte.net>
15793
15794         * gst/gsttaglist.c: Fix rubbish docs that are encouraging
15795         us to leak strings...
15796
15797 2006-03-12  Thomas Vander Stichele  <thomas at apestaart dot org>
15798
15799         * libs/gst/net/gstnettimeprovider.c:
15800           fix docs
15801         * win32/common/config.h:
15802           update
15803
15804 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
15805
15806         Patch by: Julio M. Merino Vidal <jmmv at netbsd org>
15807
15808         * configure.ac:
15809           Don't check for libgnomeui (leftover from old examples
15810           that aren't built or disted any longer) (#334303).
15811           
15812 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
15813
15814         * plugins/elements/gstfdsink.c: (gst_fd_sink_render):
15815         * plugins/elements/gstfilesink.c: (gst_file_sink_render):
15816           Emit RESOURCE_NO_SPACE_LEFT error here as well when
15817           there's no space left on the device.
15818
15819 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
15820
15821         * gst/gstclock.h:
15822           Fix GST_CLOCK_TIME_IS_VALID signedness issues - we need
15823           to cast the input to GstClockTime before comparing with
15824           another GstClockTime value.
15825
15826 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
15827
15828         * configure.ac:
15829           back to trunk
15830
15831 === release 0.10.4 ===
15832
15833 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
15834
15835         * configure.ac:
15836           releasing 0.10.4, "Light"
15837
15838 2006-03-10  Michael Smith  <msmith@fluendo.com>
15839
15840         * libs/gst/dataprotocol/dataprotocol.c:
15841           Fix docs for dataprocotol to not get the return types completely
15842           wrong for a few functions.
15843
15844 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
15845
15846         * docs/gst/gstreamer-sections.txt:
15847         * gst/gstpipeline.c: (gst_pipeline_class_init),
15848         (gst_pipeline_init), (gst_pipeline_set_property),
15849         (gst_pipeline_get_property), (gst_pipeline_change_state),
15850         (gst_pipeline_set_auto_flush_bus),
15851         (gst_pipeline_get_auto_flush_bus):
15852         * gst/gstpipeline.h:
15853           Add new API: gst_pipeline_set_auto_flush_bus() and
15854           gst_pipeline_get_auto_flush_bus() to disable automatic
15855           flushing of the pipeline's GstBus when going from READY
15856           to NULL state (#332045).
15857
15858 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
15859
15860         * docs/gst/gstreamer-sections.txt:
15861         * gst/gsturi.c: (gst_uri_has_protocol):
15862         * gst/gsturi.h:
15863            Add new API: gst_uri_has_protocol() (#333779).
15864
15865 2006-03-09  Wim Taymans  <wim@fluendo.com>
15866
15867         * gst/gstclock.c: (gst_clock_entry_new),
15868         (gst_clock_id_compare_func), (gst_clock_id_wait),
15869         (gst_clock_id_wait_async), (gst_clock_id_unschedule),
15870         (gst_clock_init), (gst_clock_get_internal_time),
15871         (gst_clock_set_master), (do_linear_regression),
15872         (gst_clock_add_observation), (gst_clock_set_property):
15873         * gst/gstclock.h:
15874         Review docs.
15875         Small cleanups.
15876         Fix a possible segfault when the window-size is made smaller.
15877         Calculate jitter before performing the clock wait. Ideally
15878         the clock implementation should calculate jitter but we need
15879         API breakage for that.
15880
15881         * gst/gstsystemclock.c: (gst_system_clock_init):
15882         Docs review.
15883         
15884         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync):
15885         Remove leftover else
15886
15887         * tests/check/gst/gstsystemclock.c: (GST_START_TEST),
15888         (gst_systemclock_suite):
15889         Added check to test GST_CLOCK_DIFF.
15890
15891 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
15892
15893         * libs/gst/base/gsttypefindhelper.c: (helper_find_get_length),
15894         (gst_type_find_helper_get_range):
15895           If we are provided with the size, we should implement
15896           GstTypeFind::get_length, so that typefind functions who
15897           want to can actually peek at the middle of a file.
15898
15899 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
15900
15901         * docs/manual/advanced-dataaccess.xml:
15902           Add some very very basic error checking.
15903
15904         * docs/pwg/appendix-checklist.xml:
15905           Some updates to the list of things to check when writing an element.
15906
15907 2006-03-08  Wim Taymans  <wim@fluendo.com>
15908
15909         * docs/design/part-element-transform.txt:
15910         Added some docs about the design of tranform elements.
15911
15912         * libs/gst/base/gstbasesrc.c: (gst_base_src_perform_seek),
15913         (gst_base_src_loop), (gst_base_src_change_state):
15914         Mark buffers with the DISCONT flag.
15915
15916 2006-03-08  Michael Smith  <msmith@fluendo.com>
15917
15918         * gst/gstregistry.h:
15919         * gst/gstregistryxml.c: (gst_registry_save),
15920         (gst_registry_save_escaped), (gst_registry_xml_save_caps),
15921         (gst_registry_xml_save_pad_template),
15922         (gst_registry_xml_save_feature), (gst_registry_xml_save_plugin),
15923         (gst_registry_xml_write_cache):
15924           Rewrite registry-saving to avoid race conditions and check for
15925           failed writes.
15926
15927 2006-03-08  Wim Taymans  <wim@fluendo.com>
15928
15929         * libs/gst/base/gstbasetransform.c:
15930         (gst_base_transform_transform_caps),
15931         (gst_base_transform_transform_size),
15932         (gst_base_transform_prepare_output_buffer),
15933         (gst_base_transform_get_unit_size),
15934         (gst_base_transform_buffer_alloc),
15935         (gst_base_transform_handle_buffer),
15936         (gst_base_transform_change_state):
15937         Cleanups, separate normal flow from errors, add sensible
15938         DEBUG lines.
15939         Don't try to renegotiate when allocating an output buffer.
15940         Also copy DISCONT buffer flag when copying a buffer.
15941         Reset the transform after we finish streaming, not during.
15942
15943 2006-03-08  Wim Taymans  <wim@fluendo.com>
15944
15945         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync):
15946         Use last buffer timestamp in qos message.
15947
15948 2006-03-07  Wim Taymans  <wim@fluendo.com>
15949
15950         Patch by: Christophe Fergeau
15951
15952         * docs/pwg/advanced-tagging.xml:
15953         * docs/pwg/building-pads.xml:
15954           fixes #333416
15955
15956 2006-03-07  Wim Taymans  <wim@fluendo.com>
15957
15958         * docs/libs/gstreamer-libs-sections.txt:
15959         Added basesink new methods.
15960
15961         * gst/gstevent.c:
15962         * gst/gstevent.h:
15963         Docs updates. Flesh out the QoS docs.
15964
15965         * libs/gst/base/gstadapter.c:
15966         Small doc clarification about ownership and flushing.
15967
15968         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_sync),
15969         (gst_base_sink_get_sync), (gst_base_sink_set_max_lateness),
15970         (gst_base_sink_get_max_lateness), (gst_base_sink_set_property),
15971         (gst_base_sink_get_property), (gst_base_sink_do_sync):
15972         * libs/gst/base/gstbasesink.h:
15973         API additions: 
15974         Added new methods to allow subclass to control max-lateness 
15975         and sync.
15976         Generate very basic QoS events based on last sync observation.
15977         Updated docs, fix typo, added some QoS blurb.
15978
15979         * libs/gst/base/gstbasesrc.c:
15980         Remove obsolete _get_state() calls from docs.
15981
15982 2006-03-07  Wim Taymans  <wim@fluendo.com>
15983
15984         * docs/libs/gstreamer-libs-sections.txt:
15985         * libs/gst/base/gstbasetransform.h:
15986         API addition: Fix #333669, Add pad accessor defines for GstBaseTransform
15987         Fix docs for GstBaseSrc.
15988
15989 2006-03-07  Wim Taymans  <wim@fluendo.com>
15990
15991         * docs/gst/gstreamer-sections.txt:
15992         * gst/gstbuffer.h:
15993         * gst/gstvalue.c:
15994         * libs/gst/base/gstbasetransform.h:
15995         Small documentation fixes.
15996
15997 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
15998
15999         * gst/gstvalue.c:
16000           Document thread-unsafety of gst_value_register_foo_func()
16001           when used at the same time as gst_value_foo() (#322628).
16002
16003 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
16004
16005         * libs/gst/base/gstpushsrc.c: (gst_push_src_class_init),
16006         (gst_push_src_check_get_range):
16007           Push sources don't support pull mode by default.
16008
16009 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16010
16011         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
16012         (gst_base_src_init), (gst_base_src_pad_check_get_range),
16013         (gst_base_src_default_check_get_range):
16014         * libs/gst/base/gstbasesrc.h:
16015           API addition:  Add ::check_get_range() vfunc to GstBaseSrc (#332611),
16016           provide default implementation, and rename
16017           gst_base_src_check_get_range() to
16018           gst_base_src_pad_check_get_range() for clarity.
16019
16020 2006-03-06  Wim Taymans  <wim@fluendo.com>
16021
16022         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init):
16023         Make property overridable.
16024
16025 2006-03-06  Wim Taymans  <wim@fluendo.com>
16026
16027         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
16028         (gst_base_sink_init), (gst_base_sink_set_property),
16029         (gst_base_sink_get_property), (gst_base_sink_do_sync):
16030         * libs/gst/base/gstbasesink.h:
16031         API addition: Make max-lateness a property.
16032
16033 2006-03-06  Wim Taymans  <wim@fluendo.com>
16034
16035         * libs/gst/base/gstbasesink.c: (gst_base_sink_wait_clock),
16036         (gst_base_sink_do_sync), (gst_base_sink_render_object):
16037         Don't ever draw a frame that is >10ms late.
16038
16039 2006-03-06  Michael Smith  <msmith@fluendo.com>
16040
16041         * gst/gstmessage.c: (_gst_message_copy):
16042           When copying a message, set the parent_refcount of the enclosed
16043           structure to point at the copy, not the original message.
16044
16045 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
16046
16047         Patch by: Christophe Fergeau
16048
16049         * gst/gstutils.h:
16050           Do proper cast here to make GST_BOILERPLATE_WITH_INTERFACE
16051           usable in c++ code (#333417)
16052
16053 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
16054
16055         * gst/gstclock.h:
16056           Show GST_CLOCK_TIME_NONE as 99:99:99.999999999
16057
16058 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
16059
16060         * libs/gst/base/gstbasetransform.c:
16061         (gst_base_transform_transform_caps):
16062           Make sure caps are writable before passing them to
16063           gst_caps_append().
16064
16065 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
16066
16067         * gst/gsterror.h:
16068           Fix some minor docs errors.
16069
16070 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
16071
16072           Patch by: Ross Burton <ross at burtonini dot com>
16073
16074         * gst/gsterror.c: (_gst_resource_errors_init):
16075         * gst/gsterror.h:
16076           Add GST_RESOURCE_ERROR_NO_SPACE_LEFT (for #333352;
16077
16078 2006-03-03  Jan Schmidt  <thaytan@mad.scientist.com>
16079
16080         * gst/gst.c:
16081         Add a check and output a g_warning when GStreamer is built
16082         against GLib 2.6 but running against 2.8 or higher, and vice 
16083         versa. (Closes: #323542)
16084
16085 2006-03-03  Jan Schmidt  <thaytan@mad.scientist.com>
16086
16087         * gst/parse/parse.l:
16088           Commit patch for parse_launch syntax from #331255. Removes 
16089           support for quoted strings and mimetypes when writing filtered 
16090           caps. See the bug report for more details - I'm pretty sure this
16091           obscure feature is not in use by _anyone_ anywhere.
16092
16093           With this simple change, the size of the gstreamer.so here 
16094           drops from 2193KB to 1565KB.
16095
16096 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
16097
16098         * plugins/elements/gsttypefindelement.h:
16099         * plugins/elements/gsttypefindelement.c:
16100         (gst_type_find_element_src_event), (start_typefinding),
16101         (stop_typefinding), (gst_type_find_element_handle_event),
16102         (gst_type_find_element_chain),
16103         (gst_type_find_element_chain_do_typefinding):
16104           Use gst_type_find_helper_for_buffer() for chain-based
16105           typefinding.
16106
16107 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
16108
16109         * plugins/elements/gsttypefindelement.c:
16110         (gst_type_find_element_class_init),
16111         (gst_type_find_element_set_property),
16112         (gst_type_find_element_get_property):
16113           Deprecate "maximum" property (not only was it only taken into
16114           account for typefinding in push-mode anyway, it also was never
16115           actually possible to set it in the first place because the
16116           property was registered with the numeric property ID for the
16117           "minimum" property). Register "maximum" property correctly,
16118           for the sake of future copy'n'pasters. Remove some cruft
16119           from property get/set functions.
16120
16121 2006-03-03  Tim-Philipp Müller  <tim at centricular dot net>
16122
16123         * plugins/elements/gsttypefindelement.c:
16124         (gst_type_find_element_activate):
16125           Use gst_type_find_helper_get_range() here, so we
16126           can honour the "minimum" property and also emit
16127           the signal with the correct probability of the found caps.
16128
16129 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
16130
16131         * docs/libs/gstreamer-libs-sections.txt:
16132         * libs/gst/base/gsttypefindhelper.c: (helper_find_peek),
16133         (helper_find_suggest), (gst_type_find_helper_get_range),
16134         (gst_type_find_helper):
16135         * libs/gst/base/gsttypefindhelper.h:
16136           New API: gst_type_find_helper_get_range() (#333042).
16137
16138 2006-03-02  Michael Smith  <msmith@fluendo.com>
16139
16140         * gst/gstregistryxml.c: (load_feature):
16141           Asserting on a failure to read part of the registry is Not Cool.
16142           Just log a warning and return NULL (which is already handled)
16143
16144 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
16145
16146         * win32/common/libgstbase.def:
16147           added export of gst_type_find_helper_for_buffer
16148         * win32/common/libgstbase.def:
16149           added some exports : gst_bin_iterate_elements, gst_iterator_resync,
16150           gst_ghost_pad_get_target
16151
16152 2006-02-28  Wim Taymans  <wim@fluendo.com>
16153
16154         * docs/design/draft-klass.txt:
16155         We use Filter now.
16156         Added Connector to mark elements that are only used to
16157         allow pipeline connections.
16158         Moved Debug to extra feature since most of them are 
16159         functionally something else.
16160
16161 2006-02-28  Wim Taymans  <wim@fluendo.com>
16162
16163         * docs/design/draft-klass.txt:
16164         Some updates and clarifications.
16165
16166 2006-02-28  Wim Taymans  <wim@fluendo.com>
16167
16168         * docs/design/draft-klass.txt:
16169         Proposal for klass field values.
16170
16171         * docs/design/part-streams.txt:
16172         Start of a doc describing stream anatomy.
16173
16174 2006-02-28  Wim Taymans  <wim@fluendo.com>
16175
16176         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_handle_message_func):
16177         Help the compiler a bit with type registration.
16178         Use existing forward cod path instead of duplicating it when 
16179         handling a message.
16180         
16181         * gst/gstbus.c: (gst_bus_get_type):
16182         * gst/gstcaps.c: (gst_caps_get_type), (gst_static_caps_get_type):
16183         * gst/gstchildproxy.c: (gst_child_proxy_get_type):
16184         * gst/gstclock.c: (gst_clock_get_type):
16185         * gst/gstelement.c: (gst_element_get_type),
16186         * gst/gstelementfactory.c: (gst_element_factory_get_type):
16187         * gst/gstindexfactory.c: (gst_index_factory_get_type):
16188         * gst/gstminiobject.c: (gst_mini_object_get_type):
16189         * gst/gstpad.c: (gst_pad_get_type):
16190         * gst/gstsegment.c: (gst_segment_get_type):
16191         * gst/gststructure.c: (gst_structure_get_type):
16192         * gst/gstsystemclock.c: (gst_system_clock_get_type):
16193         * gst/gsttask.c: (gst_task_get_type), (gst_task_join):
16194         * gst/gstvalue.c:
16195         Help compiler with type registration.
16196
16197         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event):
16198         Small doc update.
16199
16200 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
16201
16202         * plugins/elements/gsttypefindelement.c:
16203         (gst_type_find_element_handle_event):
16204           When we get an EOS event and have not found a type yet
16205           (most likely because we had not yet accumulated
16206           TYPE_FIND_MIN_SIZE of data yet), try to determine the
16207           type given the data we have so far. Fixes typefinding
16208           for very short streams again, most notably quicktime
16209           redirections as used on Apple's trailer site (#331701).
16210
16211 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
16212
16213         * libs/gst/base/gsttypefindhelper.c: (type_find_factory_rank_cmp),
16214         (gst_type_find_helper):
16215           Try typefinding factories with the highest rank first.
16216
16217 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
16218
16219         * docs/libs/gstreamer-libs-docs.sgml:
16220         * docs/libs/gstreamer-libs-sections.txt:
16221         * libs/gst/base/gsttypefindhelper.c:
16222           Add section for typefind helper and add documentation
16223           for the old and the new function.
16224
16225 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
16226
16227         * libs/gst/base/gsttypefindhelper.c: (buf_helper_find_peek),
16228         (buf_helper_find_suggest), (type_find_factory_rank_cmp),
16229         (gst_type_find_helper_for_buffer):
16230         * libs/gst/base/gsttypefindhelper.h:
16231           New API: gst_type_find_helper_for_buffer() (#332723).
16232           
16233 2006-02-27  Michael Smith  <msmith@fluendo.com>
16234
16235         Patch by: Loïc Minier
16236
16237         * configure.ac:
16238         * docs/Makefile.am:
16239         * docs/slides/Makefile.am:
16240           prevent CVS directories getting disted.
16241
16242 2006-02-27  Tim-Philipp Müller  <tim at centricular dot net>
16243
16244         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref):
16245           Use the REFCOUNTING category for caps refcounting.
16246           
16247 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
16248
16249         * plugins/elements/gsttypefindelement.c: (stop_typefinding):
16250           This should be 0 not GST_CLOCK_TIME_NONE (see #331701).
16251
16252 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
16253
16254         * plugins/elements/gsttypefindelement.c:
16255         (gst_type_find_element_activate):
16256           Use gst_pad_check_pull_range() before _activate_pull()
16257           to avoid unnecessary open/close (see #331690).
16258
16259 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16260
16261         * gst/gstutils.c:
16262           Docs enhancement: make it crystal clear what the
16263           gst_pad_add_*_probe() callbacks should look like.
16264
16265 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
16266
16267         * libs/gst/base/gstbasesrc.c:
16268           Document how applications can stop recording from
16269           live sources (see #330996).
16270
16271 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
16272
16273         * tests/check/Makefile.am:
16274         * tests/check/libs/basesrc.c: (eos_event_counter),
16275         (basesrc_eos_events_pull), (basesrc_eos_events_push),
16276         (basesrc_eos_events_push_live_op), (basesrc_eos_events_pull_live_op),
16277         (gst_basesrc_suite), (main):
16278           ... and add some tests for the base source EOS stuff.
16279
16280 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
16281
16282         * tests/check/gst/gstutils.c: (test_buffer_probe_n_times):
16283           Test case originally showed the problem fixed below,
16284           but was then amended. Add checks back at the place
16285           where they used to be.
16286
16287 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
16288
16289         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
16290         (gst_base_src_init), (gst_base_src_loop),
16291         (gst_base_src_activate_push), (gst_base_src_activate_pull),
16292         (gst_base_src_change_state):
16293         * libs/gst/base/gstbasesrc.h:
16294           Don't unconditionally send EOS when going from PAUSED to
16295           READY state, esp. make sure we don't send two EOS events
16296           in some cases (e.g. one when reaching EOS and one when
16297           going from PAUSED to READY). Also, we don't want to send
16298           EOS events when operating in pull mode. However, we do
16299           want to send an EOS event when shutting down a live
16300           source explicitly, for example (fixes #330996).
16301           
16302 2006-02-23  Tim-Philipp Müller  <tim at centricular dot net>
16303
16304         * plugins/elements/gstfilesrc.c: (gst_file_src_create_read):
16305           Update src->read_position after a seek when not using mmap.
16306           Fixes #332277, patch by: Renchi Raju <renchi gmail com>
16307
16308 2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
16309
16310         * gst/Makefile.am:
16311         * gst/gstparse.h:
16312         * gst/gstutils.c:
16313         * gst/gstutils.h:
16314         Make things work with --disable-parse as they do with 
16315         --disable-load-save - the symbols involved disappear, but the
16316         header is still installed and GST_DISABLE_PARSE is included via
16317         gstconfig.h
16318
16319 2006-02-20  Julien MOUTTE  <julien@moutte.net>
16320
16321         * libs/gst/base/gstbasetransform.c:
16322         (gst_base_transform_change_state): Fix a stupid bug. I was 
16323         sure I compiled that.
16324
16325 2006-02-20  Julien MOUTTE  <julien@moutte.net>
16326
16327         * gst/gstpad.c: (gst_pad_set_blocked_async):
16328         * gst/gstutils.c: (gst_pad_add_data_probe),
16329         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
16330         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
16331         (gst_pad_remove_buffer_probe): Make those function act on the
16332         ghostpad target when it's a ghostpad. (Closes #331727)
16333
16334 2006-02-20  Julien MOUTTE  <julien@moutte.net>
16335
16336         * libs/gst/base/gstbasetransform.c:
16337         (gst_base_transform_change_state): Make basetransform reusable.
16338         (Closes #331898)
16339
16340 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
16341
16342         * docs/random/release:
16343         Move the current documentation of how to do a release to the top
16344         of the file.
16345
16346         * gst/gstbin.c: (gst_bin_class_init),
16347         (gst_bin_handle_message_func):
16348         Allow multiple state-recalculation threads. (Closes #328873)
16349
16350 2006-02-19  Julien MOUTTE  <julien@moutte.net>
16351
16352         * gst/gstinfo.h: Add GST_STR_NULL to the second string.
16353         * gst/gstpad.c: (gst_pad_set_event_function),
16354         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
16355         (gst_pad_set_getcaps_function): GST_DEBUG_PAD_NAME evaluates to
16356         2 strings. You can't use the STR_NULL macro on that.
16357
16358 2006-02-19  Sebastien Moutte <sebastien@moutte.net>
16359
16360         * gst/gstpad.c: (gst_pad_set_event_function),
16361         (gst_pad_set_query_function), (gst_pad_set_query_type_function),
16362         (gst_pad_set_getcaps_function)
16363         * gst/parse/grammar.y: (gst_parse_found_pad), (gst_parse_perform_delayed_link)
16364           Fixed NULL pointer used in GST_CAT_DEBUG using GST_STR_NULL macro
16365           So now, we can use --gst-debug-level=5 on Windows
16366         * win32/common/libgstcontroller.def:
16367           Added export of gst_controller_init
16368         * win32/vs6/libgstcontroller.dsp:
16369           Fixed Release post build configuration
16370
16371 2006-02-17  Wim Taymans  <wim@fluendo.com>
16372
16373         * tests/check/gst/gstquery.c: (GST_START_TEST):
16374         Added another check.
16375
16376 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
16377
16378         * plugins/elements/gsttypefindelement.c: (find_peek):
16379           We can do peeks at non-zero offsets, as long as they
16380           fall within the buffer we have.
16381
16382 2006-02-15  Jan Schmidt  <thaytan@mad.scientist.com>
16383
16384         * tests/check/Makefile.am:
16385         * tests/check/pipelines/parse-launch.c: (setup_pipeline),
16386         (expected_fail_pipe), (check_pipeline_runs), (GST_START_TEST),
16387         (parse_suite), (main):
16388           Add testsuite for parse launch syntax
16389
16390 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
16391
16392         * plugins/elements/gsttypefindelement.c:
16393         (gst_type_find_element_chain):
16394           When typefinding is unsuccessful in the chain function, don't
16395           error out immediately. Only error out with NO_CAPS_FOUND if
16396           the amount of data is at least MAX_TYPEFIND_SIZE bytes,
16397           otherwise simply wait for more data so we can try typefinding
16398           again with more data later. Also, don't attempt to typefind
16399           if we have less than MIN_TYPEFIND_SIZE data available. Overall,
16400           this should improve typefinding from network sources where the
16401           size of the first buffer can be somewhat random.
16402
16403 2006-02-14  Wim Taymans  <wim@fluendo.com>
16404
16405         * docs/gst/gstreamer-sections.txt:
16406         * gst/gstpadtemplate.c:
16407         * gst/gstpadtemplate.h:
16408         Fix padtemplate docs, fixes #328805.
16409
16410 2006-02-14  Wim Taymans  <wim@fluendo.com>
16411
16412         * tools/gst-launch.c: (main):
16413         NO_PREROLL is not an ERROR so don't send confusing messages
16414         to the user.
16415
16416 2006-02-14  Wim Taymans  <wim@fluendo.com>
16417
16418         Patch by: Torsten Schoenfeld
16419
16420         * gst/gstregistry.c: (gst_registry_get_default),
16421         (_gst_registry_cleanup):
16422         Protect default registry with lock and ref/sink it.
16423         Fixes #324818
16424
16425 2006-02-14  Wim Taymans  <wim@fluendo.com>
16426
16427         * gst/gstbuffer.c:
16428         * gst/gstquery.c: (gst_query_list_add_format),
16429         (gst_query_set_formatsv), (gst_query_parse_formats_length),
16430         (gst_query_parse_formats_nth):
16431         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_sync_times):
16432         Docs fixes.
16433
16434 2006-02-14  Wim Taymans  <wim@fluendo.com>
16435
16436         * docs/gst/gstreamer-sections.txt:
16437         Reworked query docs.
16438
16439         * gst/gstquery.c: (gst_query_new_formats),
16440         (gst_query_list_add_format), (gst_query_set_formats),
16441         (gst_query_set_formatsv), (gst_query_parse_formats_length),
16442         (gst_query_parse_formats_nth):
16443         * gst/gstquery.h:
16444         Flesh out formats query, added some new methods.
16445         Fix part of #324398.
16446
16447         * tests/check/gst/gstquery.c: (GST_START_TEST), (gstquery_suite):
16448         Added query creation tests.
16449
16450 2006-02-14  Jan Schmidt  <thaytan@mad.scientist.com>
16451
16452         * gst/gstpad.c: (fixate_value):
16453         Add a default fixation for fraction lists.
16454
16455 2006-02-13  Wim Taymans  <wim@fluendo.com>
16456
16457         * gst/gsttask.c: (gst_task_init), (gst_task_func),
16458         (gst_task_set_lock), (gst_task_start), (gst_task_pause),
16459         (gst_task_join):
16460         * gst/gsttask.h:
16461         Detect and warn for obvious deadlocks. fixes #320340
16462         Fix error case where lock was not released.
16463
16464         * tests/check/Makefile.am:
16465         * tests/check/gst/gsttask.c: (task_func2), (GST_START_TEST),
16466         (task_func), (gst_element_suite), (main):
16467         Add task check.
16468
16469 2006-02-13  Wim Taymans  <wim@fluendo.com>
16470
16471         * docs/gst/gstreamer-sections.txt:
16472         * gst/gstbus.c:
16473         Add new functions to docs.
16474
16475 2006-02-13  Wim Taymans  <wim@fluendo.com>
16476
16477         * docs/design/part-TODO.txt:
16478         Updated TODO list, basesrc supports seeking to non-bytes
16479         formats.
16480
16481         * docs/design/part-element-sink.txt:
16482         Update docs.
16483
16484         * gst/gstbin.c: (bin_replace_message),
16485         (gst_bin_handle_message_func):
16486         * gst/gstbus.c: (gst_bus_post), (gst_bus_pop):
16487         * gst/gstevent.c: (gst_event_finalize):
16488         * gst/gstpad.c: (gst_pad_event_default_dispatch),
16489         (gst_pad_send_event):
16490         Use shiny new _TYPE_NAME macros.
16491
16492         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
16493         Move debug statement up.
16494
16495         * gst/gstelement.c: (gst_element_set_locked_state):
16496         Add some debugging.
16497
16498 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
16499
16500         * docs/gst/gstreamer-sections.txt:
16501         * gst/gstmessage.h:
16502         * gst/gstquery.h:
16503           New API: add GST_MESSAGE_TYPE_NAME and GST_QUERY_TYPE_NAME
16504           macros (#330906). Also, document the already existing
16505           GST_QUERY_TYPE macro.
16506
16507 2006-02-13  Wim Taymans  <wim@fluendo.com>
16508
16509         * tests/check/gst/gstutils.c: (data_probe), (buffer_probe),
16510         (event_probe), (GST_START_TEST):
16511         Only events up to the pipeline EOS are counted, there are
16512         some more when going to NULL currently which we don't care
16513         about for now.
16514
16515 2006-02-13  Wim Taymans  <wim@fluendo.com>
16516
16517         * gst/gstpad.c: (gst_pad_send_event):
16518         Correctly check flushing and emit probes. fixes #330125
16519
16520 2006-02-10  Andy Wingo  <wingo@pobox.com>
16521
16522         * gst/gstbus.c (gst_bus_class_init): Declare our private data
16523         structure.
16524         (gst_bus_init): Cache the location of the private data in the
16525         instance structure.
16526         (gst_bus_enable_sync_message_emission) 
16527         (gst_bus_disable_sync_message_emission): Implement new public
16528         functions.
16529         (gst_bus_post): Emit the sync-message signal if the user asked for
16530         it. Fixes #330684.
16531
16532         * gst/gstbus.h (GstBus): Use a padding pointer to cache the
16533         location of the bus-private structure.
16534         (gst_bus_enable_sync_message_emission)
16535         (gst_bus_disable_sync_message_emission): API addition
16536
16537 2006-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
16538
16539         Patch by: Vincent Torri
16540
16541         * docs/pwg/building-boiler.xml:
16542         PWG patch from #326800
16543
16544 2006-02-09  Tim-Philipp Müller  <tim at centricular dot net>
16545
16546         * configure.ac:
16547         * docs/Makefile.am:
16548         * docs/design/Makefile.am:
16549           Dist design docs.
16550
16551 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16552
16553         * configure.ac:
16554           back to CVS
16555
16556 === release 0.10.3 ===
16557
16558 2006-02-08  Jan Schmidt <thaytan@mad.scientist.com>
16559
16560         * configure.ac:
16561           releasing 0.10.3, "Like a virgin"
16562
16563 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
16564
16565         * configure.ac:
16566           2nd prerelease of 0.10.3
16567           Bump libtool versioning.
16568
16569 2006-02-07  Andy Wingo  <wingo@pobox.com>
16570
16571         * libs/gst/base/gstcollectpads.c (gst_collect_pads_chain): Only
16572         update last_stop if we're in TIME format and the timestamp is
16573         valid.
16574
16575         * libs/gst/base/gstcollectpads.c (gst_collect_pads_event) 
16576         * libs/gst/base/gstbasetransform.c (gst_base_transform_eventfunc): 
16577         * libs/gst/base/gstbasesink.c (gst_base_sink_configure_segment):
16578         If we get a new newsegment with a different format, adapt
16579         accordingly.
16580
16581         * gst/gstclock.c (gst_clock_set_calibration): Accept a numerator
16582         of 0. Not a problem, really.
16583
16584         * libs/gst/base/gstbasesink.c (gst_base_sink_chain_unlocked): Only
16585         warn if sync=true.
16586
16587 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
16588
16589         * configure.ac:
16590           Prelease of 0.10.3
16591
16592 2006-02-06  Sebastien Moutte  <sebastien@moutte.net>
16593
16594         * win32/vs7:
16595           project files updated to the default vs7 configuration
16596         * win32/common/libgstbase.def:
16597         * win32/common/libgstreamer.def:
16598           added new symbols,
16599           removed empty lines,
16600           sorted all exported symbols alphabetically
16601         * win32/common/dirent.c:
16602         * win32/common/dirent.h:
16603         * win32/common/gchar.h:
16604           use windows line end.
16605           
16606 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16607
16608         * libs/gst/base/gstbasesrc.c: (gst_base_src_change_state):
16609           Send EOS event when stopping.
16610
16611 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
16612
16613         * docs/README:
16614           Tell folks what to do if the plugin-foobar.xml file
16615           hasn't been generated for a newly-added plugin.
16616
16617 2006-02-05  Julien MOUTTE  <julien@moutte.net>
16618
16619         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_finalize),
16620         (gst_collect_pads_add_pad), (gst_collect_pads_remove_pad),
16621         (gst_collect_pads_start), (gst_collect_pads_stop),
16622         (gst_collect_pads_event): Collectpads now holds a reference
16623         to the GstPad that was added. Indeed we don't want to look
16624         at pads that might just go away with no warning...
16625
16626 2006-02-05  Julien MOUTTE  <julien@moutte.net>
16627
16628         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
16629         (gst_collect_pads_start), (gst_collect_pads_stop),
16630         (gst_collect_pads_event), (gst_collect_pads_chain):
16631         * libs/gst/base/gstcollectpads.h: Handle flush. Adapted from
16632         Mark Nauwelaerts's patch on bug #328491.
16633
16634 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
16635
16636         * tests/check/gst/gstutils.c: (test_parse_bin_from_description),
16637         (gst_utils_suite):
16638           Add some simple tests for gst_parse_bin_from_description() and
16639           gst_bin_find_unconnected_pad() (#329069).
16640
16641 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
16642
16643         * tools/gst-launch.c: (event_loop), (main):
16644           Catch errors during preroll (#320084).
16645
16646 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
16647
16648         * plugins/elements/gsttypefindelement.c:
16649         (gst_type_find_element_activate):
16650           Post TYPE_NOT_FOUND error message when typefinding
16651           is unsuccessful in the activate function as well.
16652
16653 2006-02-02  Wim Taymans  <wim@fluendo.com>
16654
16655         * docs/design/part-element-sink.txt:
16656         Updated doc.
16657
16658 2006-02-02  Wim Taymans  <wim@fluendo.com>
16659
16660         * libs/gst/base/gstbasesink.c: (gst_base_sink_do_sync),
16661         (gst_base_sink_render_object),
16662         (gst_base_sink_queue_object_unlocked):
16663         Only keep track of prerollable items when we are 
16664         prerolling.
16665         Before rendering after preroll, always check if we
16666         have queued items.
16667         Added some more debugging.
16668
16669 2006-02-02  Wim Taymans  <wim@fluendo.com>
16670
16671         * gst/gstelement.c: (gst_element_continue_state),
16672         (gst_element_set_state_func), (gst_element_change_state):
16673         Fixed #326576, been running this for quite some time with
16674         no regressions at all.
16675
16676 2006-02-02  Wim Taymans  <wim@fluendo.com>
16677
16678         * common/gst.supp:
16679         Added more suppressions
16680
16681 2006-02-02  Wim Taymans  <wim@fluendo.com>
16682
16683         * docs/design/part-element-sink.txt:
16684         Updated document.
16685
16686         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
16687         (gst_base_sink_finalize), (gst_base_sink_preroll_queue_flush),
16688         (gst_base_sink_configure_segment), (gst_base_sink_commit_state),
16689         (gst_base_sink_get_sync_times), (gst_base_sink_wait_clock),
16690         (gst_base_sink_do_sync), (gst_base_sink_render_object),
16691         (gst_base_sink_preroll_object),
16692         (gst_base_sink_queue_object_unlocked),
16693         (gst_base_sink_queue_object), (gst_base_sink_event),
16694         (gst_base_sink_chain_unlocked), (gst_base_sink_chain),
16695         (gst_base_sink_loop), (gst_base_sink_activate_pull),
16696         (gst_base_sink_get_position), (gst_base_sink_change_state):
16697         * libs/gst/base/gstbasesink.h:
16698         Totally refactored matching the design doc.
16699         Use two segments, one to clip incomming buffers and another to
16700         perform sync.
16701         Handle queueing correctly, bypass the queue when playing.
16702         Make EOS cancelable.
16703         Handle errors correctly when operating in pull based mode.
16704
16705         * tests/check/elements/fakesink.c: (GST_START_TEST),
16706         (fakesink_suite):
16707         Added new check for sinks.
16708
16709 2006-02-02  Wim Taymans  <wim@fluendo.com>
16710
16711         * gst/gstsegment.c: (gst_segment_clip):
16712         No reason to refuse to clip when start == -1
16713
16714 2006-02-02  Stefan Kost  <ensonic@users.sf.net>
16715
16716         * docs/README:
16717         * docs/manual/intro-basics.xml:
16718         * docs/manual/intro-preface.xml:
16719         * docs/manual/manual.xml:
16720         * docs/pwg/advanced-dparams.xml:
16721         * docs/pwg/intro-basics.xml:
16722         * docs/pwg/intro-preface.xml:
16723         * docs/pwg/pwg.xml:
16724           describe dparams (controller) for plugins
16725           unify docs a little more
16726
16727 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
16728
16729         * docs/gst/gstreamer-sections.txt:
16730         * gst/gstutils.c: (element_find_unconnected_pad),
16731         (gst_bin_find_unconnected_pad), (gst_parse_bin_from_description):
16732         * gst/gstutils.h:
16733           Add new API: gst_parse_bin_from_description() and
16734           gst_bin_find_unconnected_pad() (#329069).
16735
16736 2006-02-01  Stefan Kost  <ensonic@users.sf.net>
16737
16738         * docs/manual/README:
16739           uncover a nasty detail of the docs build
16740
16741 2006-01-31  Wim Taymans  <wim@fluendo.com>
16742
16743         * gst/gstbin.c: (bin_remove_messages), (bin_query_duration_done):
16744         Don't cache duration messages if we're not going to use or
16745         free them.
16746
16747 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
16748
16749         * docs/manual/advanced-dparams.xml:
16750         * docs/pwg/advanced-dparams.xml:
16751           more dparam docs
16752         * gst/gstindex.c:
16753           fix docs
16754         * libs/gst/controller/lib.c: (gst_controller_init):
16755           init just once
16756
16757 2006-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
16758
16759         * gst/gstelement.c: (gst_element_message_full):
16760           also show file/line/func if no additional debug was given
16761
16762 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
16763         
16764         * win32/vs7/grammar.vcproj:
16765           activate copy of autogenerated files for Release mode
16766
16767 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
16768         
16769         * win32/common/libgstreamer.def:
16770           export gst_value_compare
16771
16772 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
16773
16774         * plugins/elements/Makefile.am:
16775         * plugins/elements/gstelements.c:
16776         * plugins/elements/gstfdsink.c: (_do_init),
16777         (gst_fd_sink_base_init), (gst_fd_sink_class_init),
16778         (gst_fd_sink_init), (gst_fd_sink_dispose), (gst_fd_sink_query),
16779         (gst_fd_sink_render), (gst_fd_sink_check_fd), (gst_fd_sink_start),
16780         (gst_fd_sink_stop), (gst_fd_sink_unlock), (gst_fd_sink_update_fd),
16781         (gst_fd_sink_set_property), (gst_fd_sink_uri_get_type),
16782         (gst_fd_sink_uri_get_protocols), (gst_fd_sink_uri_get_uri),
16783         (gst_fd_sink_uri_set_uri), (gst_fd_sink_uri_handler_init):
16784         * plugins/elements/gstfdsink.h:
16785         Port fdsink to 0.10 (patch by Philippe Rouquier) (Fixes #325490)
16786
16787 2006-01-30  Stefan Kost  <ensonic@users.sf.net>
16788
16789         * docs/manual/advanced-dparams.xml:
16790           describe controller
16791         * docs/manual/advanced-position.xml:
16792         * docs/manual/basics-init.xml:
16793         * docs/manual/manual.xml:
16794         * docs/manual/titlepage.xml:
16795         * docs/pwg/pwg.xml:
16796         * docs/pwg/titlepage.xml:
16797           cleanup xml (more to come)
16798         * libs/gst/controller/gstcontroller.c:
16799           fix typo
16800
16801 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
16802         
16803         * win32/vs6/grammar.dsp:
16804           add autogen of gstmarshal.c,h for Release mode
16805                 
16806 2006-01-30  Wim Taymans  <wim@fluendo.com>
16807
16808         * libs/gst/base/gstbasesink.c: (gst_base_sink_init),
16809         (gst_base_sink_preroll_queue_empty), (gst_base_sink_commit_state),
16810         (gst_base_sink_handle_object), (gst_base_sink_event),
16811         (gst_base_sink_is_prerolled), (gst_base_sink_wait),
16812         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
16813         (gst_base_sink_handle_buffer), (gst_base_sink_set_flushing),
16814         (gst_base_sink_deactivate), (gst_base_sink_activate),
16815         (gst_base_sink_activate_pull), (gst_base_sink_get_position),
16816         (gst_base_sink_query), (gst_base_sink_change_state):
16817         Basesink cleanups, remove some old code.
16818         Handle the case where a subclass can preroll in the render
16819         method (mostly audiosinks).
16820         Handle more events.
16821         Remove some locks around variables that are now protected
16822         with the PREROLL_LOCK (clock_id, flushing, ..).
16823         Optimize position query some more, do correct locking.
16824         Remove old code to push queue in state change, this is not
16825         needed anymore since preroll blocks on all prerollable items 
16826         now.
16827         Almost implemented as described in design doc.
16828
16829 2006-01-30  Wim Taymans  <wim@fluendo.com>
16830
16831         * tests/check/gst/gstbin.c: (GST_START_TEST):
16832         Wait for refcount to settle down before checking.
16833
16834 2006-01-30  Wim Taymans  <wim@fluendo.com>
16835
16836         * docs/design/part-element-sink.txt:
16837         Pseudo code overview of desired sink behaviour regarding
16838         preroll.
16839
16840 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
16841         * win32/vs6/grammar.dsp:
16842           fix some bugs in Release mode for autogenerated files
16843                 
16844 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
16845         * win32/common/libgstbase.def:
16846         * win32/common/libgstreamer.def:
16847           export some new symbols: gst_base_src_set_format,
16848           gst_iterator_next, gst_structure_set_valist
16849
16850 2006-01-29  Julien MOUTTE  <julien@moutte.net>
16851
16852         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked):
16853         Set pad functions unconditionally. Fixes #329105.
16854
16855 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
16856         * win32/vs8:
16857           add vs8 project files created by Sergey Scobich
16858
16859 2006-01-28  Jan Schmidt  <thaytan@mad.scientist.com>
16860
16861         * gst/gstutils.c: (gst_element_unlink_pads):
16862         Don't leak pad references.
16863
16864         * tests/check/elements/fakesink.c: (GST_START_TEST):
16865         * tests/check/generic/sinks.c: (GST_START_TEST):
16866         * tests/check/generic/states.c: (GST_START_TEST):
16867         * tests/check/gst/gstbin.c: (GST_START_TEST):
16868         * tests/check/gst/gstcaps.c: (GST_START_TEST):
16869         * tests/check/gst/gstelement.c: (GST_START_TEST):
16870         * tests/check/gst/gstghostpad.c: (GST_START_TEST):
16871         * tests/check/gst/gstiterator.c: (GST_START_TEST):
16872         * tests/check/gst/gstvalue.c: (GST_START_TEST):
16873         Fix a bunch of leaks. Make generic/sinks.c
16874         use a bit less cpu by slowing the buffer rate
16875         between fakesrc and fakesink.
16876         
16877 2006-01-27  Stefan Kost  <ensonic@users.sf.net>
16878         * gst/gstcaps.c:
16879         * gst/gstelement.c: (gst_element_send_event):
16880         * gst/gstevent.c:
16881         * gst/gstinfo.c:
16882         * gst/gstiterator.c:
16883         * gst/gstiterator.h:
16884         * gst/gstpad.c: (gst_pad_send_event):
16885         * gst/gststructure.c:
16886         * gst/gsturi.c:
16887         * gst/gstutils.c:
16888         * gst/gstvalue.c:
16889         * libs/gst/base/gstadapter.c:
16890           doc fixes, to link to function, just write gst_cool_function(), don't
16891           prefix with '#'
16892
16893 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
16894
16895         * plugins/elements/gsttee.c: (gst_tee_do_push),
16896         (gst_tee_handle_buffer):
16897         Always prefer an actual return value from a src
16898         pad in place of NOT_LINKED. This means we return
16899         WRONG_STATE when all src pads are WRONG_STATE
16900         instead of NOT_LINKED.
16901
16902         Lock when replacing the last message to prevent
16903         racing with the get_property method.
16904
16905         Add debug output
16906
16907 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
16908
16909         * tests/check/Makefile.am:
16910         * tests/check/gst/gstquery.c: (GST_START_TEST), (gstquery_suite),
16911         (main):
16912         Add a very simple check that should have caught the memleak I fixed
16913         last night (if not for the slice allocator hiding it)
16914
16915 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
16916
16917         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
16918         (gst_bin_remove_func), (gst_bin_handle_message_func),
16919         (bin_query_duration_fold), (bin_query_generic_fold):
16920         Clean up references to the clock provider when disposed or when
16921         handling a clock-lost message from it.
16922
16923         Unref sinks when performing a query via gst_iterator_fold, as the
16924         gst_bin_iterate_sinks iterator refs each item. (Fixes #323874)
16925
16926         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_dispose),
16927         (gst_clock_set_master):
16928         Drop our reference to the master clock, if any, when we are disposed.
16929
16930         * gst/gsttypefindfactory.c: (gst_type_find_factory_dispose):
16931         Chain up in dispose. 
16932
16933 2006-01-26  Wim Taymans  <wim@fluendo.com>
16934
16935         * libs/gst/base/gstbasesrc.c: (gst_base_src_get_range):
16936         Add some debugging.
16937
16938 2006-01-26  Julien MOUTTE  <julien@moutte.net>
16939
16940         * plugins/elements/gsttee.c: (gst_tee_do_push),
16941         (gst_tee_handle_buffer): Apply patch from #328715. Tee now
16942         handles pad being NOT_LINKED or in WRONG_STATE.
16943
16944 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
16945
16946         * win32/MANIFEST:
16947           more updating
16948
16949 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
16950
16951         * win32/MANIFEST:
16952           remove obsolete entry
16953
16954 2006-01-26  Stefan Kost  <ensonic@users.sf.net>
16955
16956         * docs/gst/gstreamer-sections.txt:
16957         * gst/gstbin.c: (bin_element_is_src), (src_iterator_filter),
16958         (gst_bin_iterate_sources), (gst_bin_send_event):
16959         * gst/gstbin.h:
16960         * gst/gstelement.c: (gst_element_send_event):
16961         * gst/gstevent.c:
16962         * gst/gstpad.c: (gst_pad_send_event):
16963           added code for downstream events, reviewed docs in gstevent.c
16964
16965 2006-01-25  Julien MOUTTE  <julien@moutte.net>
16966
16967         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
16968         We only query position using the clock in the playing state.
16969         Query peer in the other cases.
16970         * win32/common/config.h: Updates.
16971
16972 2006-01-24  Wim Taymans  <wim@fluendo.com>
16973
16974         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
16975         A clock entry that is scheduled for the exact time of the
16976         clock is still in time.
16977
16978         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
16979         (gst_base_sink_do_sync):
16980         Add some more debug info.
16981
16982 2006-01-23  Sebastien Moutte  <sebastien@moutte.net>
16983
16984         * win32/vs7:
16985           Add new vs7 project files and solution.
16986
16987 2006-01-23  Sebastien Moutte  <sebastien@moutte.net>
16988
16989         * win32/vs7:
16990           all files removed as they were out-dated.
16991
16992 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
16993
16994         * docs/random/release:
16995           update notes
16996         * gst/gstbin.c: (gst_bin_init):
16997         * gst/gstbus.c: (gst_bus_new):
16998         * gst/gstbus.h:
16999         * gst/gstpipeline.c: (gst_pipeline_init):
17000           use gst_bus_new(), improve logging, fix docs
17001         * win32/common/config.h:
17002           update for cvs build
17003
17004 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17005
17006         * autogen.sh:
17007           up required version of automake to 1.7
17008
17009 2006-01-20  Sebastien Moutte  <sebastien@moutte.net>
17010
17011         * win32/common/libgstreamer.def:
17012           export gst_buffer_is_metadata_writable
17013
17014 2006-01-20  Tim-Philipp Müller  <tim at centricular dot net>
17015
17016         * docs/gst/gstreamer-sections.txt:
17017         * gst/gstevent.h:
17018           Add gst_event_replace() (#327001)
17019
17020 2006-01-20  Wim Taymans  <wim@fluendo.com>
17021
17022         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked):
17023         Make it actually compile too..
17024
17025 2006-01-20  Wim Taymans  <wim@fluendo.com>
17026
17027         * gst/gstcaps.c:
17028         Clarify behaviour of _is_equal() when passing NULL parameters.
17029
17030         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
17031         (gst_pad_set_caps):
17032         Cleanups. Don't unref NULL caps.
17033         When setting the same caps, protect caps of the pad with
17034         proper lock.
17035         Use full functionality of _is_equal() when comparing caps.
17036
17037 2006-01-20  Jan Schmidt  <thaytan@mad.scientist.com>
17038
17039         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_is_collected):
17040         Don't loop infinitely if there are no buffers to present. Partially
17041         fixes #327197, but collectpads is just broken for reusing elements
17042         to do multiple encodes atm.
17043
17044 2006-01-20  Jan Schmidt  <thaytan@mad.scientist.com>
17045
17046         * tools/gst-inspect.c: (print_element_features):
17047         * tools/gst-xmlinspect.c: (main):
17048         URL_HANDLER is not a plugin feature we can search for in
17049         the registry.
17050
17051 2006-01-19  Edward Hervey  <edward@fluendo.com>
17052
17053         * gst/gstelement.c: (gst_element_pads_activate): 
17054         When activating, do src pads first, then sink pads.
17055         When de-activating, do sink pads first, then src pads.
17056
17057 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
17058
17059         * docs/gst/gstreamer-sections.txt:
17060         Add gst_index_add_associationv to the docs
17061
17062 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
17063
17064         * gst/gstevent.c:
17065           Fix docs typo
17066
17067         * plugins/elements/gstqueue.c: (gst_queue_handle_sink_event),
17068         (gst_queue_chain), (gst_queue_push_one), (gst_queue_loop):
17069           Do some refactoring. Doesn't actually change functionality,
17070           but makes landing the DRAIN event easier later.
17071
17072 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
17073
17074         * docs/pwg/advanced-scheduling.xml:
17075           Update from 0.9.x to 0.10 API and make example a bit
17076           clearer.
17077
17078 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
17079
17080         * docs/gst/gstreamer-sections.txt:
17081         Add gst_buffer_(is|make)_metadata_writable methods.
17082
17083 2006-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
17084
17085         * docs/design/part-sparsestreams.txt:
17086         Update sparse streams doc, hopefully for greater clarity
17087
17088 2006-01-18  Jan Schmidt  <thaytan@mad.scientist.com>
17089
17090         * docs/design/part-events.txt:
17091         Remove mention of FILLER events.
17092         Add DRAIN event.
17093
17094         * docs/design/part-sparsestreams.txt:
17095         Write some things about using NEWSEGMENT to keep sparse streams
17096         flowing.
17097
17098 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
17099
17100         * gst/gstbin.c: (gst_bin_dispose):
17101           Guard gst_object_unref call against a NULL object (dispose
17102           can theoretically be called multiple times).
17103           
17104 2006-01-18  Wim Taymans  <wim@fluendo.com>
17105
17106         * gst/gstbin.c: (gst_bin_element_set_state):
17107         * gst/gstclock.c: (gst_clock_id_wait):
17108         Added some more debug info.
17109
17110         * libs/gst/base/gstadapter.c:
17111         Added more docs.
17112
17113         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
17114         (gst_base_sink_do_sync), (gst_base_sink_chain):
17115         Added some comments.
17116
17117 2006-01-18  Wim Taymans  <wim@fluendo.com>
17118
17119         * tests/check/Makefile.am:
17120         * tests/check/elements/fakesink.c: (chain_async_buffer),
17121         (chain_async), (chain_async_return), (GST_START_TEST),
17122         (fakesink_suite), (main):
17123         Added fakesink test that checks prerolling and clipping
17124         behaviour.
17125
17126         * tests/check/gst/gstutils.c: (GST_START_TEST):
17127         Make check run faster so that buildbots don't timeout.
17128
17129 2006-01-18  Wim Taymans  <wim@fluendo.com>
17130
17131         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object),
17132         (gst_base_sink_do_sync):
17133         Some cleanups.
17134         When the sink finishes blocking on the preroll buffer, it can
17135         immediatly render it instead of rendering when the next buffer
17136         arrives.
17137
17138 2006-01-18  Wim Taymans  <wim@fluendo.com>
17139
17140         * libs/gst/base/gstbasesink.c: (gst_base_sink_set_property),
17141         (gst_base_sink_get_property), (gst_base_sink_do_sync),
17142         (gst_base_sink_chain):
17143         Small cleanups.
17144         GST_ELEMENT_CLOCK and sync are protected with LOCK.
17145         Don't store _last_stop if the buffer is dropped.
17146
17147 2006-01-18  Tim-Philipp Müller  <tim at centricular dot net>
17148
17149         * plugins/elements/gsttypefindelement.c:
17150         (gst_type_find_element_class_init):
17151           'have-type' signal needs to be G_SIGNAL_RUN_FIRST, as it is the
17152           object method handler that sets the caps on the pad and we want
17153           that to happen before we emit the signal (fixes e.g. feeding a
17154           plain text file to decodebin).
17155
17156 2006-01-18  Christian Schaller  <Christian@fluendo.com>
17157
17158         * gst/gstplugin.c: Add MPL and Proprietary as license options
17159
17160 2006-01-18  Andy Wingo  <wingo@pobox.com>
17161
17162         * gst/gstindex.h (gst_index_add_associationv): Add to header. The
17163         symbol was exported before, it appears this was just an oversight.
17164         Fixes #168703.
17165         Patch by: Torsten Schoenfeld <kaffeetisch at gmx.de>
17166
17167         * gst/gstindex.c (gst_index_add_associationv): Changed int in
17168         prototype to gint. OK since this prototype was not in the header.
17169
17170 2006-01-17  Andy Wingo  <wingo@pobox.com>
17171
17172         * gst/gstregistry.c (_gst_registry_remove_cache_plugins): Lock the
17173         registry while we remove plugins.
17174
17175         * tools/gst-inspect.c (print_element_info): Don't unref the
17176         factory arg, that should be the responsibility of whatever code
17177         received the ref. Fixes a double-free when called from
17178         print_element_list via gst-inspect-0.10 -a. Fixes #327324.
17179         (main): Unref the factory if we have one.
17180         (print_element_list): No change -- relies on the
17181         plugin_feature_list_free to free the list of features.
17182
17183 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
17184
17185         * gst/gstbuffer.c: (gst_buffer_is_metadata_writable),
17186         (gst_buffer_make_metadata_writable):
17187         * gst/gstbuffer.h:
17188         * libs/gst/base/gstbasetransform.c:
17189         (gst_base_transform_prepare_output_buf):
17190         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
17191         * tests/check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
17192           Replace gst_buffer_(make|is)_metadata_writable patch now
17193           that the release is out.
17194
17195 2006-01-17  Andy Wingo  <wingo@pobox.com>
17196
17197         * gst/gstregistry.c: Reflow design comment. Update so as to speak
17198         in the present tense without reference to versions.
17199
17200         * gst/gstregistry.c (gst_registry_add_plugin)
17201         (gst_registry_remove_plugin, gst_registry_remove_feature)
17202         (gst_registry_find_feature, gst_registry_get_feature_list)
17203         (gst_registry_get_plugin_list, gst_registry_lookup_feature)
17204         (gst_registry_lookup, gst_registry_scan_path)
17205         (_gst_registry_remove_cache_plugins)
17206         (gst_registry_get_feature_list_by_plugin): Add argument
17207         validation.
17208
17209 === release 0.10.2 ===
17210
17211 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
17212
17213         * configure.ac:
17214           releasing 0.10.2, "If man is five"
17215
17216 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17217
17218         * gst/gstbuffer.c:
17219         * gst/gstbuffer.h:
17220         * libs/gst/base/gstbasetransform.c:
17221         (gst_base_transform_prepare_output_buf):
17222         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
17223         * tests/check/gst/gstbuffer.c: (gst_test_suite):
17224           Back out patch until after the release.
17225
17226 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17227
17228         * gst/gstminiobject.c:
17229           Spelling fix in docs.
17230         * ChangeLog - remove conflict indicator
17231
17232 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
17233
17234         Reviewed By: Andy Wingo
17235
17236         * gst/gstbuffer.c: (gst_buffer_is_metadata_writable),
17237         (gst_buffer_make_metadata_writable):
17238         * gst/gstbuffer.h:
17239           Add gst_buffer_(is|make)_metadata_writable as analogues of
17240           gst_buffer_(is|make)_writable.
17241
17242         * libs/gst/base/gstbasetransform.c:
17243         (gst_base_transform_prepare_output_buf):
17244         * plugins/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
17245           Use name gst_buffer_(is|make)_metadata_writable functions.
17246
17247         * tests/check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
17248           Test gst_buffer_(is|make)_metadata_writable
17249         
17250           (Closes: #324162)
17251
17252 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17253
17254         * docs/manual/Makefile.am:
17255           don't do parallel make
17256         * configure.ac:
17257           AC_SUBST HOST_CPU
17258         * win32/common/config.h.in:
17259           add generations for HOST_CPU and GST_MAJORMINOR
17260         * win32/common/config.h:
17261           commit generated result
17262
17263 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
17264
17265         * docs/manual/appendix-integration.xml:
17266           Update GNOME integration section to use gst_init_get_option_group()
17267           instead of the old popt stuff (#322911). Also, GNOME applications
17268           should  now use gconf*sink and gconf*src instead of the old gconf
17269           helper lib we had.
17270
17271 2006-01-13  Stefan Kost  <ensonic@users.sf.net>
17272
17273
17274         * docs/gst/gstreamer-docs.sgml:
17275         * docs/gst/gstreamer-sections.txt:
17276         * docs/libs/gstreamer-libs-sections.txt:
17277           add new API entries to the docs
17278         * libs/gst/controller/Makefile.am:
17279         * libs/gst/controller/gstcontroller.c:
17280         * libs/gst/controller/gstcontroller.h:
17281         * libs/gst/controller/gstcontrollerprivate.h:
17282         * libs/gst/controller/gsthelper.c:
17283         * libs/gst/controller/gstinterpolation.c:
17284           move private structs to private header
17285         * po/README:
17286           gstreamer-0.7 -> gstreamer-0.10
17287         * tests/check/libs/struct_i386.h:
17288           remove private structs
17289
17290 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17291
17292         * plugins/indexers/Makefile.am:
17293           Fixes as part of #317048
17294
17295 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
17296
17297         * plugins/indexers/Makefile.am:
17298           fix #316086 - compilation when mmap is missing
17299
17300 2006-01-12  Sebastien Moutte  <sebastien@moutte.net>
17301
17302         * libs/gst/base/gstbasesink.c:
17303           *cur = (now - base) * basesink->segment.abs_rate + time; replaced by 
17304           *cur = gst_guint64_to_gdouble(now - base) * basesink->segment.abs_rate + time; for vs6
17305         * win32/common/config.h:
17306           added some defines GST_MAJORMINOR and HOST_CPU
17307         * win32/common/libgstbase.def:
17308         * win32/common/libgstreamer.def:
17309           added some exported functions.
17310
17311 2006-01-12  Stefan Kost  <ensonic@users.sf.net>
17312
17313         * libs/gst/controller/gstcontroller.c:
17314         (gst_controlled_property_set_interpolation_mode),
17315         (gst_controlled_property_new):
17316         * libs/gst/controller/gstcontroller.h:
17317         * libs/gst/controller/gstinterpolation.c:
17318         (interpolate_none_get_string_value_array):
17319           make G_TYPE_STRING controlable
17320
17321 2006-01-12  Stefan Kost  <ensonic@users.sf.net>
17322
17323         * tools/README:
17324         * tools/gst-feedback.1.in:
17325         * tools/gst-inspect.1.in:
17326         * tools/gst-launch.1.in:
17327         * tools/gst-md5sum.1.in:
17328         * tools/gst-typefind.1.in:
17329         * tools/gst-xmlinspect.1.in:
17330         * tools/gst-xmllaunch.1.in:
17331           cleanup man-pages, remove reference to gst-register, document env-vars
17332
17333 2006-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
17334
17335         * gst/gstbuffer.c: (gst_buffer_span):
17336           gst_buffer_span should copy the timestamp of the first buffer
17337           if they were both originally overlapping subbuffers of the 
17338           same parent, using the same logic as the 'slow copy' case.
17339
17340 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
17341
17342         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_pop):
17343           Need to awaken ALL the pads when we pop a buffer, otherwise
17344           collectpads only works when there is 2 input streams.
17345
17346 2006-01-11  Stefan Kost  <ensonic@users.sf.net>
17347
17348         * docs/random/ensonic/media-device-daemon.txt:
17349           more ideas (dbus)
17350         * gst/gstbuffer.c:
17351           fix doc example, add clarification
17352         * tools/gst-launch.1.in:
17353           add initial info about GST_PLUGIN_PATH, needs more work
17354
17355 2006-01-11  Tim-Philipp Müller  <tim at centricular dot net>
17356
17357         * docs/manual/basics-bins.xml:
17358         * docs/manual/basics-elements.xml:
17359         * docs/manual/intro-basics.xml:
17360           Some more minor docs additions and updates.
17361
17362 2006-01-11  Wim Taymans  <wim@fluendo.com>
17363
17364         * docs/manual/basics-bins.xml:
17365         * docs/manual/basics-elements.xml:
17366         Some small fixes as pointed out by Ser-ver on IRC.
17367
17368 2006-01-10  Edward Hervey  <edward@fluendo.com>
17369
17370         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
17371         Set the buffer offset/offset_end to GST_CLOCK_TIME_NONE when using
17372         the single-segment mode.
17373
17374 2006-01-10  Brian Cameron  <brian dot cameron at sun dot com>
17375
17376         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17377
17378         * libs/gst/base/gstbasesrc.c: (gst_base_src_init),
17379         (gst_base_src_perform_seek), (gst_base_src_send_event),
17380         (gst_base_src_set_property), (gst_base_src_get_property),
17381         (gst_base_src_loop), (gst_base_src_start),
17382         (gst_base_src_activate_push):
17383         * libs/gst/base/gstbasesrc.h:
17384           Name (private) union; makes Sun's Forte compiler happy (#324900).
17385
17386 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
17387
17388         * README:
17389           gst-register is gone.
17390
17391 2006-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
17392
17393         * gst/gstvalue.c: (_gst_value_initialize):
17394           make the G_TYPE_DATE instantiation work if debug is disabled
17395
17396 2006-01-06  Tim-Philipp Müller  <tim at centricular dot net>
17397
17398         * gst/gstmessage.c: (gst_message_parse_tag),
17399         (gst_message_parse_error), (gst_message_parse_warning):
17400           Don't crash when return location for error/warning debug
17401           string is NULL; add fact that return locations can be
17402           NULL to docs where appropriate.
17403
17404 2006-01-05  Wim Taymans  <wim@fluendo.com>
17405
17406         * gst/gstplugin.c: (gst_plugin_load_file):
17407         Replace strdup by g_strdup.
17408
17409 2006-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17410
17411         * docs/pwg/advanced-types.xml:
17412           fix doc borkage
17413
17414 2006-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
17415
17416         submitted by: Abel Cheung
17417
17418         * po/LINGUAS:
17419         * po/zh_TW.po:
17420           Added Chinese (traditional) translation
17421
17422 2006-01-04  Wim Taymans  <wim@fluendo.com>
17423
17424         * docs/manual/basics-pads.xml:
17425         * docs/plugins/Makefile.am:
17426         * docs/plugins/gstreamer-plugins-docs.sgml:
17427         * docs/plugins/gstreamer-plugins-sections.txt:
17428         * docs/pwg/advanced-clock.xml:
17429         * docs/pwg/advanced-scheduling.xml:
17430         * docs/pwg/advanced-types.xml:
17431         * plugins/elements/gstfdsink.c:
17432         * plugins/elements/gstfdsrc.c:
17433         * plugins/elements/gstfdsrc.h:
17434         * plugins/elements/gstidentity.c: (gst_identity_class_init):
17435         * plugins/elements/gstidentity.h:
17436         * plugins/elements/gstqueue.h:
17437         * plugins/elements/gsttee.c:
17438         * plugins/elements/gsttee.h:
17439         * plugins/elements/gsttypefindelement.c:
17440         (gst_type_find_element_class_init):
17441         * plugins/elements/gsttypefindelement.h:
17442         Small updates to various docs.
17443         Added core plugins to docs.
17444
17445 2006-01-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17446
17447         * common/gst.supp:
17448           add a suppression for liboil's uninitialized variable
17449
17450 2006-01-02  James Livingston  <jrl at ids dot org dot au>
17451
17452         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
17453
17454         * gst/gstutils.h:
17455           Add prototype for _get_type() function to GST_BOILERPLATE_FULL
17456           macro, so that gcc doesn't complain if the -Wmissing-prototypes
17457           compiler switch is being used (#325429).
17458
17459 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
17460
17461         * gst/gstbin.c: (gst_bin_query):
17462           Disable duration query caching in bins until it gets
17463           fixed (see #324807).
17464
17465 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
17466
17467         * tools/gst-inspect.c: (print_element_properties_info):
17468           Handle properties of POINTER and BOXED type.
17469
17470 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
17471
17472         * gst/gst.c: (init_post):
17473           Init tags stuff and some other things before loading
17474           any static plugins (there may be other static plugins
17475           than just the GStreamer ones, and they may want to
17476           register their own tags or formats or whatever, and
17477           preferably without segfaulting).
17478
17479         * plugins/elements/gstqueue.c: (gst_queue_handle_src_query):
17480           Print at least a warning in the debug logs if we drop a
17481           query just because we don't know how to adjust the value
17482           in the particular format.
17483
17484 2005-12-24  David Schleef  <ds@schleef.org>
17485
17486         * tools/gstreamer-completion:
17487           Replacement for gst-complete written in sh and sed.  Only
17488           completes names of features, but that's 90% of what I want
17489           it for.  Properties are not available in registry.xml.  (Maybe
17490           they should be...)
17491
17492 === release 0.10.1 ===
17493
17494 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
17495
17496         * configure.ac:
17497           releasing 0.10.1, "Nollaig chridheil"
17498
17499 2005-12-22  Tim-Philipp Müller  <tim at centricular dot net>
17500
17501         * docs/faq/cvs.xml:
17502           Add missing quote, should be make ERROR_CFLAGS="".
17503
17504 2005-12-20  Wim Taymans  <wim@fluendo.com>
17505
17506         * docs/design/part-trickmodes.txt:
17507         More documentation on trickmodes.
17508
17509 2005-12-20  Edward Hervey  <edward@fluendo.com>
17510
17511         * gst/gstcaps.c: (gst_static_caps_get_type):
17512         * gst/gstcaps.h:
17513           API addition: GST_TYPE_STATIC_CAPS
17514         Added gpointer GType for GstStaticCaps so we can wrap them in bindings.
17515         * gst/gstpadtemplate.c: (gst_static_pad_template_get_type):
17516         * gst/gstpadtemplate.h:
17517           API addition: GST_TYPE_STATIC_PAD_TEMPLATE
17518         Added gpointer GType for GstStaticPadTemplate so we can wrap them in
17519         bindings.
17520
17521 2005-12-18  Wim Taymans  <wim@fluendo.com>
17522
17523         * libs/gst/base/gstadapter.c:
17524         * libs/gst/base/gstadapter.h:
17525         * libs/gst/base/gstbasesink.c: (gst_base_sink_class_init),
17526         (gst_base_sink_get_position):
17527         * libs/gst/base/gstbasesink.h:
17528         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
17529         (gst_base_src_default_query), (gst_base_src_default_do_seek),
17530         (gst_base_src_do_seek), (gst_base_src_perform_seek),
17531         (gst_base_src_send_event), (gst_base_src_update_length),
17532         (gst_base_src_get_range), (gst_base_src_loop),
17533         (gst_base_src_start):
17534         * libs/gst/base/gstbasesrc.h:
17535         * libs/gst/base/gstbasetransform.h:
17536         * libs/gst/base/gstcollectpads.h:
17537         * libs/gst/base/gstpushsrc.c:
17538         * libs/gst/base/gstpushsrc.h:
17539         * libs/gst/dataprotocol/dataprotocol.c:
17540         * libs/gst/dataprotocol/dataprotocol.h:
17541         * libs/gst/net/gstnetclientclock.h:
17542         * libs/gst/net/gstnettimeprovider.h:
17543         Documentation updates.
17544
17545 2005-12-18  Tim-Philipp Müller  <tim at centricular dot net>
17546
17547         * docs/manual/basics-helloworld.xml:
17548           Remove superfluous closing bracket in helloworld example.
17549
17550 2005-12-17  Tim-Philipp Müller  <tim at centricular dot net>
17551
17552         * tools/gst-launch.1.in:
17553           Update gst-launch man page; add a section with useful
17554           environment variables. Fixes #323882.
17555
17556 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
17557
17558         * gst/gst.c:
17559         * gst/gst_private.h:
17560           change some char* into char[]
17561
17562 2005-12-16  Wim Taymans  <wim@fluendo.com>
17563
17564         * gst/gstregistryxml.c: (load_feature):
17565         Cleanups.
17566         Don't use g_object_unref on GstObjects so that we avoid
17567         leaks on unsafe glibs.
17568
17569 2005-12-16  Wim Taymans  <wim@fluendo.com>
17570
17571         * gst/gstbin.c: (gst_bin_recalc_state):
17572         Small doc updates.
17573
17574 2005-12-16  Wim Taymans  <wim@fluendo.com>
17575
17576         * common/check.mak:
17577         Added make forever target for check.
17578
17579 2005-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
17580
17581         * gst/gst.c: (init_post):
17582           make the registry cache file HOST_CPU-dependent
17583
17584 2005-12-16  Andy Wingo  <wingo@pobox.com>
17585
17586         * plugins/elements/gstbufferstore.c
17587         (gst_buffer_store_cleared_func): Pay attention to g_list_append
17588         return value.
17589
17590         * tests/check/gst/gstobject.c
17591         (test_fake_object_name_threaded_unique): Pay attention to
17592         g_list_sort return value.
17593
17594 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
17595
17596         * tools/gst-feedback-m.m:
17597           Update for 0.9/0.10 (fixes #323870).
17598
17599 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
17600
17601         * gst/gstminiobject.c: (gst_value_mini_object_lcopy):
17602           Fix lcopy for mini objects, the mini object needs to be ref'ed.
17603           
17604         * tests/check/gst/gstminiobject.c: (my_foo_init),
17605         (my_foo_get_property), (my_foo_set_property), (my_foo_class_init),
17606         (test_value_collection), (gst_mini_object_suite):
17607           Add test to ensure refcounts end up as expected when passing
17608           GstMiniObjects through g_object_get() and g_object_set().
17609
17610 2005-12-14  Julien MOUTTE  <julien@moutte.net>
17611
17612         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
17613         (gst_collect_pads_remove_pad), (gst_collect_pads_is_collected),
17614         (gst_collect_pads_event), (gst_collect_pads_chain): Refactoring
17615         of collectpads. This version removes a lot of races without
17616         touching API/ABI. Yay !
17617
17618 2005-12-14  Jan Schmidt  <thaytan@mad.scientist.com>
17619
17620         * gst/gstpad.c: (gst_pad_activate_pull), (gst_pad_link_prepare):
17621           Don't allow activation of a srcpad in pull_range if it has no
17622           getrange function.
17623           Change some debug statements to be a little clearer
17624
17625         * plugins/elements/gsttypefindelement.c:
17626         (gst_type_find_handle_src_query):
17627           Check that we have a peer before executing queries thereupon.
17628
17629         * tests/examples/metadata/read-metadata.c: (message_loop):
17630           Use gst_bus_pop instead of gst_bus_poll when we just want it to
17631           immediately return us any available message with 0 timeout.
17632
17633 2005-12-12  Michael Smith  <msmith@fluendo.com>
17634
17635         * gst/gsttypefindfactory.c: (gst_type_find_factory_call_function):
17636           Don't unref factories after calling them.
17637         * libs/gst/base/gsttypefindhelper.c: (gst_type_find_helper):
17638         * plugins/elements/gsttypefindelement.c:
17639         (gst_type_find_element_chain):
17640           Free lists of factories after using them. Fixing typefinding memory
17641           leaks.
17642
17643 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17644
17645         * gst/gstpluginfeature.c: (gst_plugin_feature_finalize),
17646         (gst_plugin_feature_load):
17647           more meaningful debug output
17648         * configure.ac:
17649         * tests/Makefile.am:
17650         * tests/old/examples/Makefile.am:
17651           make make distcheck happy again
17652
17653 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
17654
17655         * plugins/elements/gsttypefindelement.c: (stop_typefinding):
17656           Catch the special case where we are operating chain-based,
17657           but the downstream peer pad has no chain function. Emit a
17658           custom error message in this case instead of letting the
17659           core generate one implying that this is some sort of core
17660           bug. It's not, it just means that whatever got plugged
17661           into the pipeline downstream when we announced the type
17662           can only operate pull-based, while our source can only
17663           operate push-based (e.g. http://foo/bar.mov ! qtdemux ! ...)
17664           Error string has not been marked for translation yet, as
17665           it probably needs some more work first.
17666
17667         (gst_type_find_element_get_best_possibility):
17668           Add helper function to find the best of all available
17669           found possibilities that qualify given the min. threshold.
17670
17671         (gst_type_find_element_handle_event):
17672           Fix the case where we get an EOS while still in TYPEFIND
17673           mode (we want to chose the best of all possible types,
17674           not just the first type that happens to be in our unsorted
17675           list of possible types).
17676
17677         (gst_type_find_element_chain):
17678           Make sure we return GST_FLOW_ERROR when we errored out
17679           in stop_typefinding(); also, don't just find the best of
17680           all found type entries and then use the last examined
17681           type entry, but actually use the best entry.
17682
17683 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
17684
17685         * tests/examples/typefind/typefind.c: (type_found):
17686         * tests/examples/xml/runxml.c: (xml_loaded):
17687           More gcc4 fixes and a mem leak fix.
17688
17689 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17690
17691         * tests/examples/xml/createxml.c: (object_saved):
17692           gcc 4 fixes
17693
17694 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17695
17696         * tests/Makefile.am:
17697           enable the examples even more
17698
17699 2005-12-12  Andy Wingo  <wingo@pobox.com>
17700
17701         * libs/gst/net/gstnettimeprovider.c
17702         (gst_net_time_provider_class_init, gst_net_time_provider_init)
17703         (gst_net_time_provider_set_property)
17704         (gst_net_time_provider_get_property):
17705         API addition: Export "active" as a GObject property.
17706         (gst_net_time_provider_thread): Only respond to time queries if
17707         the time provider is active.
17708
17709         * libs/gst/net/gstnettimeprovider.h: Add an "active" boolean to
17710         NetTimeProvider, preserving binary compat.
17711
17712 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17713
17714         * tests/examples/controller/audio-example.c: (main):
17715         * tests/examples/launch/Makefile.am:
17716           convert comments again
17717
17718 2005-12-12  Wim Taymans  <wim@fluendo.com>
17719
17720         * libs/gst/base/gstpushsrc.c:
17721         Fix typo.
17722
17723 2005-12-12  Wim Taymans  <wim@fluendo.com>
17724
17725         * docs/libs/gstreamer-libs-sections.txt:
17726         Added new symbol to docs.
17727
17728         * libs/gst/base/gstbasesrc.c: (gst_base_src_class_init),
17729         (gst_base_src_init), (gst_base_src_set_format),
17730         (gst_base_src_default_query), (gst_base_src_query),
17731         (gst_base_src_default_do_seek), (gst_base_src_do_seek),
17732         (gst_base_src_perform_seek), (gst_base_src_send_event),
17733         (gst_base_src_default_event), (gst_base_src_event_handler),
17734         (gst_base_src_set_property), (gst_base_src_get_property),
17735         (gst_base_src_wait), (gst_base_src_do_sync),
17736         (gst_base_src_update_length), (gst_base_src_get_range),
17737         (gst_base_src_check_get_range), (gst_base_src_loop),
17738         (gst_base_src_default_negotiate), (gst_base_src_start),
17739         (gst_base_src_activate_push), (gst_base_src_activate_pull),
17740         (gst_base_src_change_state):
17741         * libs/gst/base/gstbasesrc.h:
17742         Implement seeking to other formats than _BYTES.
17743         Implement more seeking methods correctly.
17744         Doc updates.
17745         Added query vmethod.
17746         Added do_seek vmethod to make life easier for subclasses
17747         when seeking.
17748         API addition: gst_base_src_set_format()
17749
17750 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17751
17752         * tests/examples/Makefile.am:
17753           added that too
17754
17755 2005-12-12  Stefan Kost  <ensonic@users.sf.net>
17756
17757         * configure.ac:
17758         * docs/random/ensonic/media-device-daemon.txt:
17759         * tests/examples/controller/.cvsignore:
17760         * tests/examples/controller/Makefile.am:
17761         * tests/examples/controller/audio-example.c: (main):
17762         * tests/examples/helloworld/.cvsignore:
17763         * tests/examples/helloworld/Makefile.am:
17764         * tests/examples/helloworld/helloworld.c: (event_loop), (main):
17765         * tests/examples/launch/.cvsignore:
17766         * tests/examples/launch/Makefile.am:
17767         * tests/examples/launch/mp3parselaunch.c: (event_loop), (main):
17768         * tests/examples/metadata/.cvsignore:
17769         * tests/examples/metadata/Makefile.am:
17770         * tests/examples/metadata/read-metadata.c: (message_loop),
17771         (make_pipeline), (print_tag), (main):
17772         * tests/examples/queue/.cvsignore:
17773         * tests/examples/queue/Makefile.am:
17774         * tests/examples/queue/queue.c: (event_loop), (main):
17775         * tests/examples/typefind/.cvsignore:
17776         * tests/examples/typefind/Makefile.am:
17777         * tests/examples/typefind/typefind.c: (type_found), (event_loop),
17778         (main):
17779         * tests/examples/xml/.cvsignore:
17780         * tests/examples/xml/Makefile.am:
17781         * tests/examples/xml/createxml.c: (object_saved), (main):
17782         * tests/examples/xml/runxml.c: (xml_loaded), (event_loop), (main):
17783         * tests/old/examples/Makefile.am:
17784         * tests/old/examples/TODO:
17785         * tests/old/examples/controller/.cvsignore:
17786         * tests/old/examples/controller/Makefile.am:
17787         * tests/old/examples/controller/audio-example.c:
17788         * tests/old/examples/helloworld/.cvsignore:
17789         * tests/old/examples/helloworld/Makefile.am:
17790         * tests/old/examples/helloworld/helloworld.c:
17791         * tests/old/examples/launch/.cvsignore:
17792         * tests/old/examples/launch/Makefile.am:
17793         * tests/old/examples/launch/mp3parselaunch.c:
17794         * tests/old/examples/launch/mp3play:
17795         * tests/old/examples/manual/Makefile.am:
17796         * tests/old/examples/metadata/Makefile.am:
17797         * tests/old/examples/metadata/read-metadata.c:
17798         * tests/old/examples/queue/.cvsignore:
17799         * tests/old/examples/queue/Makefile.am:
17800         * tests/old/examples/queue/queue.c:
17801         * tests/old/examples/typefind/.cvsignore:
17802         * tests/old/examples/typefind/Makefile.am:
17803         * tests/old/examples/typefind/typefind.c:
17804         * tests/old/examples/xml/.cvsignore:
17805         * tests/old/examples/xml/Makefile.am:
17806         * tests/old/examples/xml/createxml.c:
17807         * tests/old/examples/xml/runxml.c:
17808           applied some simple fixing to some examples
17809           re-enabled the working examples
17810
17811 2005-12-12  Wim Taymans  <wim@fluendo.com>
17812
17813         * gst/gstsegment.c: (gst_segment_init),
17814         (gst_segment_set_last_stop), (gst_segment_set_seek),
17815         (gst_segment_set_newsegment), (gst_segment_to_stream_time),
17816         (gst_segment_to_running_time):
17817         Added more documentation.
17818         Make sure the last_pos value is updated properly.
17819         Make sure to_stream_time and to_running_time don't
17820         operate on wrong values.
17821
17822         * tests/check/gst/gstsegment.c: (GST_START_TEST):
17823         Update check.
17824
17825 2005-12-12  Michael Smith  <msmith@fluendo.com>
17826
17827         * plugins/elements/gsttypefindelement.c: (free_entry),
17828         (gst_type_find_element_chain):
17829           Now that we're not leaking factories, make sure we keep references
17830           to them while we need them.
17831
17832 2005-12-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17833
17834         * tests/check/gst/struct_i386.h:
17835           ifdef out the XML structs
17836
17837 2005-12-12  Thomas Vander Stichele  <thomas at apestaart dot org>
17838
17839         * gst/gstvalue.c: (gst_value_transform_double_fraction):
17840           floor is not needed, F is always positive; this obviates the
17841           need for adding -lm when building without libxml
17842
17843 2005-12-12  Wim Taymans  <wim@fluendo.com>
17844
17845         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
17846         Take current playback rate into account when reporting
17847         the position.
17848
17849 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
17850
17851         * docs/manual/mime-world.fig:
17852           Let's try this again, this time with a file that is
17853           actually in XFig format.
17854
17855 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
17856
17857         * docs/manual/mime-world.fig:
17858           Add audioconvert element to diagram so that it
17859           matches the text and the code (fixes #319526).
17860
17861 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
17862
17863         * docs/pwg/building-chainfn.xml:
17864         * docs/pwg/building-pads.xml:
17865         * docs/pwg/building-state.xml:
17866         * docs/pwg/other-source.xml:
17867           Update state change stuff for 0.10 (fixes #322969).
17868
17869 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
17870
17871         * docs/manual/advanced-dataaccess.xml:
17872         * docs/manual/appendix-checklist.xml:
17873         * docs/manual/appendix-programs.xml:
17874         * docs/manual/basics-pads.xml:
17875         * docs/manual/highlevel-components.xml:
17876         * docs/manual/manual.xml:
17877           Update for 0.10: s/0.9/0.10/; s/audioscale/audiorsample/;
17878           add converters in front of pipelines; remove curly
17879           brackets for threads stuff, they no longer exist; use
17880           GST_TYPE_FRACTION for framerates; update some pieces of
17881           code to 0.10, but there's plenty more to do.
17882
17883         * docs/manual/appendix-porting.xml:
17884           Expand on asynchroneous state changes; s/0.9/0.10/;
17885           mention disappearance of gst_init_get_popt_table()
17886           (fixes #322916).
17887
17888 2005-12-11  Tim-Philipp Müller  <tim at centricular dot net>
17889
17890         * docs/faq/using.xml:
17891           Spider no longer exists, and neither does gst-launch-ext.
17892           Update examples to use decodebin and playbin and put
17893           converters in front of sinks (fixes #323726).
17894
17895 2005-12-09  Michael Smith  <msmith@fluendo.com>
17896
17897         * plugins/elements/gsttypefindelement.c: (find_peek),
17898         (gst_type_find_element_chain):
17899           Fix leaking element factories in typefinding.
17900           Fix problem where we forgot about a probable type on non-seekable
17901           files, and thus later mis-typefound it.
17902
17903 2005-12-09  Michael Smith  <msmith@fluendo.com>
17904
17905         * common/m4/gst-makecontext.m4:
17906         * common/m4/gst-mcsc.m4:
17907         * configure.ac:
17908         * win32/common/config.h:
17909         * win32/common/config.h.in:
17910           Remove makecontext stuff; not used in 0.10 and causes problems on
17911           HPUX according to bug #322441
17912
17913 2005-12-07  Wim Taymans  <wim@fluendo.com>
17914
17915         * tests/check/Makefile.am:
17916         * tests/check/libs/libsabi.c: (GST_START_TEST), (gstabi_suite),
17917         (main):
17918         * tests/check/libs/struct_i386.h:
17919         Added ABI check for libs
17920
17921 2005-12-07  Wim Taymans  <wim@fluendo.com>
17922
17923         * tests/check/Makefile.am:
17924         And add the struct_i386.h to dist.
17925
17926 2005-12-07  Wim Taymans  <wim@fluendo.com>
17927
17928         * tests/check/Makefile.am:
17929         * tests/check/gst/.cvsignore:
17930         * tests/check/gst/gstabi.c: (GST_START_TEST), (gstabi_suite),
17931         (main):
17932         * tests/check/gst/struct_i386.h:
17933         Added check for ABI compatibility.
17934
17935 2005-12-07  Wim Taymans  <wim@fluendo.com>
17936
17937         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
17938         (gst_fake_src_get_times), (gst_fake_src_create):
17939         Fix broken sync option, fixes #323259
17940
17941 2005-12-07  Wim Taymans  <wim@fluendo.com>
17942
17943         * gst/gstbuffer.c:
17944         Small docs update.
17945
17946         * gst/gstcaps.c: (gst_caps_is_equal):
17947         Don't assert on NULL <--> X. Fixes #323260
17948
17949         * gst/gstminiobject.c: (gst_mini_object_replace):
17950         If we're doing atomic operations, we might just as well use
17951         the proper way to get an atomic pointer.
17952
17953         * libs/gst/base/gstbasesink.c: (gst_base_sink_get_position):
17954         Clean up debugging.
17955
17956 2005-12-07  Michael Smith  <msmith@fluendo.com>
17957
17958         * gst/parse/grammar.y:
17959           Remove handling of { } for threads.
17960
17961 2005-12-06  David Schleef  <ds@schleef.org>
17962
17963         * libs/gst/base/gstbasetransform.c: speling fix.
17964
17965 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
17966
17967         * docs/libs/tmpl/gstdataprotocol.sgml:
17968         * docs/random/omega/testing/gstobject.c:
17969         * gst/gst.c:
17970         * gst/gstclock.c:
17971         * gst/gstelement.c:
17972         * gst/gstelementfactory.c:
17973         * gst/gsterror.c:
17974         * gst/gstevent.c:
17975         * gst/gstghostpad.c:
17976         * gst/gstinfo.c:
17977         * gst/gstpadtemplate.c:
17978         * gst/gstregistryxml.c:
17979         * gst/gsttaglist.c:
17980         * gst/gsttagsetter.c:
17981         * gst/gsttypefind.c:
17982         * gst/gstvalue.c:
17983         * libs/gst/base/gstbasesrc.c:
17984         * libs/gst/net/gstnetclientclock.c:
17985         * libs/gst/net/gstnettimeprovider.c:
17986         * plugins/elements/gstfakesrc.c:
17987         * plugins/elements/gstfdsrc.c:
17988         * plugins/elements/gstfilesrc.c:
17989         * plugins/elements/gstidentity.c:
17990         * plugins/elements/gstqueue.c:
17991         * plugins/elements/gsttypefindelement.c:
17992         * plugins/indexers/gstfileindex.c:
17993         * plugins/indexers/gstmemindex.c:
17994         * tests/check/gst/gsttag.c:
17995         * tests/old/examples/cutter/cutter.c:
17996         * tests/old/examples/mixer/mixer.c:
17997         * tests/old/examples/xml/runxml.c: (main):
17998         * tests/old/testsuite/caps/normalisation.c:
17999         * tests/old/testsuite/debug/global.c:
18000         * tests/old/testsuite/parse/parse1.c:
18001         * tools/gst-xmlinspect.c:
18002         * win32/common/dirent.c:
18003           expand tabs
18004
18005 === release 0.10.0 ===
18006
18007 2005-12-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18008
18009         * configure.ac:
18010           releasing 0.10.0, "Maroilles"
18011
18012 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18013
18014         submitted by: Funda Wang <fundawang@linux.net.cn>
18015
18016         * po/LINGUAS:
18017         * po/zh_CN.po:
18018           added Chinese (Traditional) translation
18019
18020 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18021
18022         * docs/gst/gstreamer-sections.txt:
18023         * docs/libs/tmpl/gstdataprotocol.sgml:
18024         * docs/random/thomasvs/TODO:
18025         * gst/gstutils.c:
18026         * gst/gstutils.h:
18027           fix docs
18028
18029 2005-12-05  Andy Wingo  <wingo@pobox.com>
18030
18031         patch by: Wim Taymans <wim@fluendo.com>
18032
18033         * libs/gst/base/gstbasetransform.c
18034         (gst_base_transform_prepare_output_buf)
18035         (gst_base_transform_buffer_alloc):
18036         * plugins/elements/gstqueue.c (gst_queue_bufferalloc): Call
18037         alloc_buffer_and_set_caps.
18038
18039         * gst/gstpad.c (gst_pad_alloc_buffer): Changed to not call
18040         set_caps on the source pad.
18041         (gst_pad_alloc_buffer_and_set_caps): New function, does what
18042         alloc_buffer used to do. Fixes #322874.
18043
18044         * docs/gst/gstreamer-sections.txt: 
18045         * docs/design/part-negotiation.txt: 
18046         * docs/pwg/advanced-negotiation.xml: Update for the alloc_buffer
18047         changes.
18048
18049 2005-12-05  Thomas Vander Stichele  <thomas at apestaart dot org>
18050
18051         patch by: Sebastien Moutte
18052
18053         * win32/MANIFEST:
18054         * win32/common/config.h.in:
18055         * win32/vs6/libgstcontroller.dsp:
18056           win32 build fixes
18057
18058 2005-12-05  Wim Taymans  <wim@fluendo.com>
18059
18060         * gst/gstcaps.c: (gst_caps_is_equal):
18061         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
18062         (gst_fake_src_create):
18063         Back out previous code changes, leave doc updates, file bugs 
18064         instead. 
18065
18066 2005-12-05  Wim Taymans  <wim@fluendo.com>
18067
18068         * plugins/elements/gstfakesrc.c: (gst_fake_src_class_init),
18069         (gst_fake_src_get_times), (gst_fake_src_create):
18070         * plugins/elements/gstfakesrc.h:
18071         Fix broken sync code.
18072
18073 2005-12-05  Wim Taymans  <wim@fluendo.com>
18074
18075         * gst/gstcaps.c: (gst_caps_is_equal):
18076         Comparing NULL against !NULL yields different caps, not a
18077         failure.
18078
18079 2005-12-05  Wim Taymans  <wim@fluendo.com>
18080
18081         * gst/gstpipeline.c:
18082         Fix small typo in docs.
18083
18084 2005-12-05  Andy Wingo  <wingo@pobox.com>
18085
18086         patch by: Thomas Vander Stichele  <thomas at apestaart dot org>
18087
18088         * gst/gst.c (init_post): remove hard-coded 0.9 location for
18089         registries/plugins with a MAJORMINOR one.
18090         (plugin_desc): Rename library from gstcoreleements to
18091         staticelements. Fixes #323222.
18092
18093 2005-12-05  Tim-Philipp Müller  <tim at centricular dot net>
18094
18095         * libs/gst/base/gstcollectpads.c: (gst_collect_pads_base_init):
18096           Change debug category to 'collectpads' from 'collect_pads'
18097           (fixes #323250).
18098
18099 2005-12-04  Thomas Vander Stichele  <thomas at apestaart dot org>
18100
18101         patch by: Sebastien Moutte
18102
18103         * libs/gst/controller/gstinterpolation.c:
18104           use convert function for uint64/double
18105         * win32/vs6/libgstcontroller.dsp:
18106           link to GLib
18107
18108 2005-12-04  Thomas Vander Stichele  <thomas at apestaart dot org>
18109
18110         * gst/gstutils.c: (gst_util_guint64_to_gdouble),
18111         (gst_util_gdouble_to_guint64), (gst_util_uint64_scale_int64):
18112         * gst/gstutils.h:
18113         * tests/check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
18114           add tests that seem to show that the guint64/gdouble conversions
18115           are correct.
18116
18117 2005-12-02  Wim Taymans  <wim@fluendo.com>
18118
18119         * gst/gstregistry.c: (gst_registry_add_path):
18120         * gst/gstregistry.h:
18121         * gst/gstregistryxml.c:
18122         Fix docs again.
18123
18124 2005-12-02  Wim Taymans  <wim@fluendo.com>
18125
18126         * gst/gstutils.c: (gst_util_uint64_scale_int64),
18127         (gst_util_uint64_scale_int):
18128         Small cleanup.
18129
18130         * libs/gst/base/gstbasesink.c: (gst_base_sink_handle_object):
18131         Add debug log line.
18132
18133         * libs/gst/base/gstbasetransform.c: (gst_base_transform_event):
18134         Add FIXME.
18135
18136 2005-12-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18137
18138         * win32/MANIFEST:
18139         * win32/common/config.h:
18140         * win32/vs6/gstreamer.dsw:
18141         * win32/vs6/libgstcoreelements.dsp:
18142         * win32/vs6/libgstelements.dsp:
18143           renamed core elements plugin
18144
18145 2005-12-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18146
18147         * tools/gst-run.c: (compare_major_minor), (find_highest_version),
18148         (get_candidates):
18149           do piece-wise major/minor comparison so 0.9 < 0.10
18150           also allow .exe extensions for tools
18151
18152 2005-12-02  Michael Smith  <msmith@fluendo.com>
18153
18154         * gst/gst.c:
18155           Escape a % to make gtkdoc happier; bug 322958.
18156
18157 === release 0.9.7 ===
18158
18159 2005-12-01  Thomas Vander Stichele <thomas (at) apestaart (dot) org>
18160
18161         * configure.ac:
18162           releasing 0.9.7, "My Dog Has No Nose"
18163
18164 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18165
18166         * common/gst-xmlinspect.py:
18167         * configure.ac:
18168         * docs/libs/tmpl/gstdataprotocol.sgml:
18169         * docs/random/release:
18170         * po/af.po:
18171         * po/az.po:
18172         * po/bg.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         * win32/common/config.h:
18189         * win32/common/config.h.in:
18190         * win32/vs6/gst_inspect.dsp:
18191         * win32/vs6/gst_launch.dsp:
18192         * win32/vs6/libgstbase.dsp:
18193         * win32/vs6/libgstelements.dsp:
18194         * win32/vs6/libgstreamer.dsp:
18195         * win32/vs7/GStreamer.vcproj:
18196         * win32/vs7/gst-inspect.vcproj:
18197         * win32/vs7/gst-launch.vcproj:
18198         * win32/vs7/libgstbase.vcproj:
18199           bump GST_MAJORMINOR to 0.10
18200           reset libtool version
18201
18202 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18203
18204         * po/LINGUAS:
18205         * po/bg.po:
18206           Added Bulgarian translation by (Alexander Shopov)
18207
18208 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18209
18210         * tests/check/gst/gstplugin.c:
18211           fix test
18212
18213 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18214
18215         * common/gst-xmlinspect.py:
18216         * common/gtk-doc-plugins.mak:
18217         * configure.ac:
18218         * docs/Makefile.am:
18219         * docs/gst/Makefile.am:
18220         * docs/gst/gstreamer-docs.sgml:
18221         * docs/gst/gstreamer-sections.txt:
18222         * docs/gst/gstreamer.types:
18223         * docs/gst/gstreamer.types.in:
18224         * docs/plugins/Makefile.am:
18225         * docs/plugins/gstreamer-plugins-docs.sgml:
18226         * docs/plugins/gstreamer-plugins-sections.txt:
18227         * docs/plugins/gstreamer-plugins.types:
18228         * docs/plugins/inspect.stamp:
18229         * docs/plugins/inspect/plugin-coreelements.xml:
18230         * docs/plugins/inspect/plugin-coreindexers.xml:
18231         * docs/plugins/scanobj-build.stamp:
18232         * gstreamer.spec.in:
18233         * plugins/elements/Makefile.am:
18234         * plugins/elements/gstelements.c:
18235         * plugins/elements/gstfakesink.c:
18236         * plugins/elements/gstfakesrc.c:
18237         * plugins/elements/gstfilesink.c:
18238         * plugins/elements/gstfilesrc.c:
18239         * plugins/elements/gstqueue.c:
18240         * plugins/indexers/Makefile.am:
18241         * plugins/indexers/gstindexers.c:
18242           document core plugins in a separate document just like all the
18243           others
18244           rename these plugins to something starting with core
18245
18246 2005-12-01  Andy Wingo  <wingo@pobox.com>
18247
18248         * gst/gstevent.h (struct _GstEvent): Meant to remove the extra
18249         padding here before, but it missed the commit.
18250
18251 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18252
18253         * libs/gst/controller/gstinterpolation.c:
18254           whitespace prices have crashed, we should feel free to use some now
18255           use gst_guint64_to_gdouble
18256
18257 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18258
18259         * libs/gst/controller/gstcontroller.c:
18260         * libs/gst/controller/gsthelper.c:
18261         * libs/gst/controller/gstinterpolation.c:
18262         * libs/gst/controller/lib.c:
18263           wrap config.h include
18264
18265 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18266
18267         * docs/gst/gstreamer-sections.txt:
18268           update docs
18269
18270 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
18271
18272         * plugins/elements/gstelements.c:
18273         * plugins/elements/gstfdsink.c: (gst_fd_sink__base_init),
18274         (gst_fd_sink__class_init), (gst_fd_sink__init),
18275         (gst_fd_sink__chain), (gst_fd_sink__set_property),
18276         (gst_fd_sink__get_property):
18277         * plugins/elements/gstfdsink.h:
18278         * plugins/elements/gstfdsrc.c: (_do_init), (gst_fd_src_base_init),
18279         (gst_fd_src_class_init), (gst_fd_src_init), (gst_fd_src_dispose),
18280         (gst_fd_src_update_fd), (gst_fd_src_start), (gst_fd_src_stop),
18281         (gst_fd_src_unlock), (gst_fd_src_set_property),
18282         (gst_fd_src_get_property), (gst_fd_src_create),
18283         (gst_fd_src_is_seekable), (gst_fd_src_get_size),
18284         (gst_fd_src_uri_get_type), (gst_fd_src_uri_get_protocols),
18285         (gst_fd_src_uri_get_uri), (gst_fd_src_uri_set_uri),
18286         (gst_fd_src_uri_handler_init):
18287         * plugins/elements/gstfdsrc.h:
18288         * plugins/elements/gstqueue.c: (gst_queue_get_type):
18289           more anal cleanup
18290
18291 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18292
18293         * docs/gst/Makefile.am:
18294         * docs/gst/gstreamer.types.in:
18295         * gst/Makefile.am:
18296           fix the docs build
18297
18298 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18299
18300         * configure.ac:
18301         * gst/Makefile.am:
18302         * gst/gst.c:
18303         * gst/gstplugin.h:
18304         * gst/gstregistry.h:
18305         * tests/benchmarks/complexity.c:
18306         * tests/benchmarks/mass-elements.c:
18307         * tests/check/Makefile.am:
18308         * tools/Makefile.am:
18309         * tools/gst-inspect.c:
18310         * tools/gst-xmlinspect.c:
18311           various fixes to make
18312           --disable-nls --disable-registry --disable-loadsave
18313           --disable-parse --disable-gst-debug
18314           work and get the core .so down to 360444 bytes after stripping
18315
18316 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18317
18318         * Makefile.am:
18319         * configure.ac:
18320           descend into tests
18321         * docs/random/thomasvs/TODO:
18322         * tests/Makefile.am:
18323         * tests/README:
18324           add a README
18325
18326 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18327
18328         * win32/GStreamer.vcproj:
18329         * win32/MANIFEST:
18330         * win32/Makefile:
18331         * win32/Makefile.inspect:
18332         * win32/Makefile.launch:
18333         * win32/Makefile.register:
18334         * win32/README.txt:
18335         * win32/gst-inspect.vcproj:
18336         * win32/gst-launch.vcproj:
18337         * win32/gst-register.vcproj:
18338         * win32/gstelements.vcproj:
18339         * win32/gstgetbits.def:
18340         * win32/gstgetbits.vcproj:
18341         * win32/gstreamer-dbg.def:
18342         * win32/gstreamer.def:
18343         * win32/libgstbase.def:
18344         * win32/libgstbase.vcproj:
18345         * win32/link_oldruntime.c:
18346         * win32/mman.c:
18347         * win32/mman.h:
18348         * win32/mman.inl:
18349         * win32/msvc71.sln:
18350           move even more stuff, win32/ is nice and clean now
18351
18352 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18353
18354         * libs/gst/control/.cvsignore:
18355         * win32/MANIFEST:
18356         * win32/config.h:
18357         * win32/dirent.c:
18358         * win32/dirent.h:
18359         * win32/gstbytestream.def:
18360         * win32/gstbytestream.vcproj:
18361         * win32/gstconfig.h:
18362         * win32/gstenumtypes.c:
18363         * win32/gstenumtypes.h:
18364         * win32/gstoptimalscheduler.vcproj:
18365         * win32/gstversion.h:
18366         * win32/gtchar.h:
18367         * win32/testsuite/bins.vcproj:
18368         * win32/testsuite/bytestream.vcproj:
18369         * win32/testsuite/caps.vcproj:
18370         * win32/testsuite/cleanup.vcproj:
18371         * win32/testsuite/clock.vcproj:
18372         * win32/testsuite/debug.vcproj:
18373         * win32/testsuite/dlopen.vcproj:
18374         * win32/testsuite/dynparams.vcproj:
18375         * win32/testsuite/elements.vcproj:
18376         * win32/testsuite/ghostpads.vcproj:
18377         * win32/testsuite/indexers.vcproj:
18378         * win32/testsuite/negotiation.vcproj:
18379         * win32/testsuite/parse.vcproj:
18380         * win32/testsuite/plugin.vcproj:
18381         * win32/testsuite/refcounting.vcproj:
18382         * win32/testsuite/schedulers.vcproj:
18383         * win32/testsuite/states.vcproj:
18384         * win32/testsuite/tags.vcproj:
18385         * win32/testsuite/threads.vcproj:
18386           remove old win32 stuff that isn't maintained and should be
18387           reorganized
18388
18389 2005-11-30  Andy Wingo  <wingo@pobox.com>
18390
18391         * configure.ac (GST_PKG_DEPS): Revert previous patch, makes
18392         loading the gst.interfaces python module bork.
18393
18394         * configure.ac (GST_PKG_DEPS): Use gmodule-no-export-2.0.pc,
18395         available since GLib 2.2. Fixes #318031.
18396
18397 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18398
18399         * Makefile.am:
18400         * check/.cvsignore:
18401         * check/Makefile.am:
18402         * check/elements/.cvsignore:
18403         * check/elements/fakesrc.c:
18404         * check/elements/fdsrc.c:
18405         * check/elements/identity.c:
18406         * check/generic/.cvsignore:
18407         * check/generic/states.c:
18408         * check/gst-libs/.cvsignore:
18409         * check/gst-libs/controller.c:
18410         * check/gst-libs/gdp.c:
18411         * check/gst/.cvsignore:
18412         * check/gst/capslist.h:
18413         * check/gst/gst.c:
18414         * check/gst/gstbin.c:
18415         * check/gst/gstbuffer.c:
18416         * check/gst/gstbus.c:
18417         * check/gst/gstcaps.c:
18418         * check/gst/gstelement.c:
18419         * check/gst/gstevent.c:
18420         * check/gst/gstghostpad.c:
18421         * check/gst/gstiterator.c:
18422         * check/gst/gstmessage.c:
18423         * check/gst/gstminiobject.c:
18424         * check/gst/gstobject.c:
18425         * check/gst/gstpad.c:
18426         * check/gst/gstpipeline.c:
18427         * check/gst/gstplugin.c:
18428         * check/gst/gstsegment.c:
18429         * check/gst/gststructure.c:
18430         * check/gst/gstsystemclock.c:
18431         * check/gst/gsttag.c:
18432         * check/gst/gstutils.c:
18433         * check/gst/gstvalue.c:
18434         * check/net/.cvsignore:
18435         * check/net/gstnetclientclock.c:
18436         * check/net/gstnettimeprovider.c:
18437         * check/pipelines/.cvsignore:
18438         * check/pipelines/cleanup.c:
18439         * check/pipelines/simple_launch_lines.c:
18440         * check/pipelines/stress.c:
18441         * check/states/.cvsignore:
18442         * check/states/sinks.c:
18443         * configure.ac:
18444         * examples/Makefile.am:
18445         * examples/appreader/.cvsignore:
18446         * examples/appreader/Makefile.am:
18447         * examples/appreader/appreader.c:
18448         * examples/controller/.cvsignore:
18449         * examples/controller/Makefile.am:
18450         * examples/controller/audio-example.c:
18451         * examples/cutter/.cvsignore:
18452         * examples/cutter/Makefile.am:
18453         * examples/cutter/cutter.c:
18454         * examples/cutter/cutter.h:
18455         * examples/events/Makefile.am:
18456         * examples/events/seek.c:
18457         * examples/helloworld/.cvsignore:
18458         * examples/helloworld/Makefile.am:
18459         * examples/helloworld/helloworld.c:
18460         * examples/helloworld2/.cvsignore:
18461         * examples/helloworld2/Makefile.am:
18462         * examples/helloworld2/helloworld2.c:
18463         * examples/launch/.cvsignore:
18464         * examples/launch/Makefile.am:
18465         * examples/launch/mp3parselaunch.c:
18466         * examples/launch/mp3play:
18467         * examples/manual/.cvsignore:
18468         * examples/manual/Makefile.am:
18469         * examples/manual/extract.pl:
18470         * examples/metadata/Makefile.am:
18471         * examples/metadata/read-metadata.c:
18472         * examples/mixer/.cvsignore:
18473         * examples/mixer/Makefile.am:
18474         * examples/mixer/mixer.c:
18475         * examples/mixer/mixer.h:
18476         * examples/pingpong/.cvsignore:
18477         * examples/pingpong/Makefile.am:
18478         * examples/pingpong/pingpong.c:
18479         * examples/plugins/.cvsignore:
18480         * examples/plugins/Makefile.am:
18481         * examples/plugins/example.c:
18482         * examples/plugins/example.h:
18483         * examples/pwg/.cvsignore:
18484         * examples/pwg/Makefile.am:
18485         * examples/pwg/extract.pl:
18486         * examples/queue/.cvsignore:
18487         * examples/queue/Makefile.am:
18488         * examples/queue/queue.c:
18489         * examples/queue2/.cvsignore:
18490         * examples/queue2/Makefile.am:
18491         * examples/queue2/queue2.c:
18492         * examples/queue3/.cvsignore:
18493         * examples/queue3/Makefile.am:
18494         * examples/queue3/queue3.c:
18495         * examples/queue4/.cvsignore:
18496         * examples/queue4/Makefile.am:
18497         * examples/queue4/queue4.c:
18498         * examples/retag/.cvsignore:
18499         * examples/retag/Makefile.am:
18500         * examples/retag/retag.c:
18501         * examples/retag/transcode.c:
18502         * examples/thread/.cvsignore:
18503         * examples/thread/Makefile.am:
18504         * examples/thread/thread.c:
18505         * examples/typefind/.cvsignore:
18506         * examples/typefind/Makefile.am:
18507         * examples/typefind/typefind.c:
18508         * examples/xml/.cvsignore:
18509         * examples/xml/Makefile.am:
18510         * examples/xml/createxml.c:
18511         * examples/xml/runxml.c:
18512         * tests/Makefile.am:
18513         * tests/check/Makefile.am:
18514         * testsuite/.cvsignore:
18515         * testsuite/Makefile.am:
18516         * testsuite/Rules:
18517         * testsuite/caps/.cvsignore:
18518         * testsuite/caps/Makefile.am:
18519         * testsuite/caps/app_fixate.c:
18520         * testsuite/caps/audioscale.c:
18521         * testsuite/caps/caps.c:
18522         * testsuite/caps/caps.h:
18523         * testsuite/caps/caps_strings:
18524         * testsuite/caps/compatibility.c:
18525         * testsuite/caps/deserialize.c:
18526         * testsuite/caps/enumcaps.c:
18527         * testsuite/caps/eratosthenes.c:
18528         * testsuite/caps/filtercaps.c:
18529         * testsuite/caps/fixed.c:
18530         * testsuite/caps/fraction-convert.c:
18531         * testsuite/caps/fraction-multiply-and-zero.c:
18532         * testsuite/caps/intersect2.c:
18533         * testsuite/caps/intersection.c:
18534         * testsuite/caps/normalisation.c:
18535         * testsuite/caps/random.c:
18536         * testsuite/caps/renegotiate.c:
18537         * testsuite/caps/sets.c:
18538         * testsuite/caps/simplify.c:
18539         * testsuite/caps/string-conversions.c:
18540         * testsuite/caps/structure.c:
18541         * testsuite/caps/subtract.c:
18542         * testsuite/caps/union.c:
18543         * testsuite/debug/.cvsignore:
18544         * testsuite/debug/Makefile.am:
18545         * testsuite/debug/category.c:
18546         * testsuite/debug/commandline.c:
18547         * testsuite/debug/global.c:
18548         * testsuite/debug/output.c:
18549         * testsuite/debug/printf_extension.c:
18550         * testsuite/dlopen/.cvsignore:
18551         * testsuite/dlopen/Makefile.am:
18552         * testsuite/dlopen/dlopen_gst.c:
18553         * testsuite/dlopen/loadgst.c:
18554         * testsuite/elements/.cvsignore:
18555         * testsuite/elements/Makefile.am:
18556         * testsuite/elements/gst-inspect-check.in:
18557         * testsuite/elements/struct_i386.h:
18558         * testsuite/elements/struct_size.c:
18559         * testsuite/indexers/.cvsignore:
18560         * testsuite/indexers/Makefile.am:
18561         * testsuite/indexers/cache1.c:
18562         * testsuite/indexers/indexdump.c:
18563         * testsuite/parse/.cvsignore:
18564         * testsuite/parse/Makefile.am:
18565         * testsuite/parse/parse1.c:
18566         * testsuite/parse/parse2.c:
18567         * testsuite/plugin/.cvsignore:
18568         * testsuite/plugin/Makefile.am:
18569         * testsuite/plugin/README:
18570         * testsuite/plugin/dynamic.c:
18571         * testsuite/plugin/linked.c:
18572         * testsuite/plugin/loading.c:
18573         * testsuite/plugin/registry.c:
18574         * testsuite/plugin/static.c:
18575         * testsuite/plugin/static2.c:
18576         * testsuite/plugin/testplugin.c:
18577         * testsuite/plugin/testplugin2.c:
18578         * testsuite/plugin/testplugin2_s.c:
18579         * testsuite/plugin/testplugin_s.c:
18580         * testsuite/refcounting/.cvsignore:
18581         * testsuite/refcounting/Makefile.am:
18582         * testsuite/refcounting/bin.c:
18583         * testsuite/refcounting/element.c:
18584         * testsuite/refcounting/element_pad.c:
18585         * testsuite/refcounting/mainloop.c:
18586         * testsuite/refcounting/mem.c:
18587         * testsuite/refcounting/mem.h:
18588         * testsuite/refcounting/object.c:
18589         * testsuite/refcounting/pad.c:
18590         * testsuite/refcounting/sched.c:
18591         * testsuite/refcounting/thread.c:
18592         * testsuite/states/.cvsignore:
18593         * testsuite/states/Makefile.am:
18594         * testsuite/states/bin.c:
18595         * testsuite/states/locked.c:
18596         * testsuite/states/parent.c:
18597         * testsuite/threads/.cvsignore:
18598         * testsuite/threads/159566.c:
18599         * testsuite/threads/159852.c:
18600         * testsuite/threads/Makefile.am:
18601         * testsuite/threads/queue.c:
18602         * testsuite/threads/signals.c:
18603         * testsuite/threads/staticrec.c:
18604         * testsuite/threads/thread.c:
18605         * testsuite/threads/threadb.c:
18606         * testsuite/threads/threadc.c:
18607         * testsuite/threads/threadd.c:
18608         * testsuite/threads/threade.c:
18609         * testsuite/threads/threadf.c:
18610         * testsuite/threads/threadg.c:
18611         * testsuite/threads/threadh.c:
18612         * testsuite/threads/threadi.c:
18613           move all of these under tests
18614
18615 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18616
18617         * configure.ac:
18618         * tests/Makefile.am:
18619           fix distcheck
18620
18621 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18622
18623         * docs/gst/gstreamer-sections.txt:
18624         * tests/sched/.cvsignore:
18625         * tests/sched/Makefile.am:
18626         * tests/sched/cases/(fs-fs).xml:
18627         * tests/sched/cases/(fs-i-fs).xml:
18628         * tests/sched/cases/(fs-i-i-fs).xml:
18629         * tests/sched/cases/(fs-i-q[i-fs]).xml:
18630         * tests/sched/dynamic-pipeline.c:
18631         * tests/sched/interrupt1.c:
18632         * tests/sched/interrupt2.c:
18633         * tests/sched/interrupt3.c:
18634         * tests/sched/runtestcases:
18635         * tests/sched/runxml.c:
18636         * tests/sched/sched-stress.c:
18637         * tests/sched/sort.c:
18638         * tests/sched/testcases:
18639         * tests/sched/testcases1.tc:
18640         * tests/seeking/.cvsignore:
18641         * tests/seeking/Makefile.am:
18642         * tests/seeking/seeking1.c:
18643         * tests/threadstate/.cvsignore:
18644         * tests/threadstate/Makefile.am:
18645         * tests/threadstate/test1.c:
18646         * tests/threadstate/test2.c:
18647         * tests/threadstate/threadstate1.c:
18648         * tests/threadstate/threadstate2.c:
18649         * tests/threadstate/threadstate3.c:
18650         * tests/threadstate/threadstate4.c:
18651         * tests/threadstate/threadstate5.c:
18652           remove obsolete tests
18653         * configure.ac:
18654         * tests/bench-complexity.scm:
18655         * tests/bench-mass_elements.scm:
18656         * tests/complexity.c:
18657         * tests/complexity.gnuplot:
18658         * tests/instantiate/.cvsignore:
18659         * tests/instantiate/Makefile.am:
18660         * tests/instantiate/caps.c:
18661         * tests/mass_elements.c:
18662         * tests/network-clock-utils.scm:
18663         * tests/network-clock.scm:
18664         * tests/plot-data:
18665         First pass at cleaning up tests/ dir before moving the rest
18666         Combined with CVS surgery
18667
18668 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18669
18670         * po/POTFILES.in:
18671           queue has moved, update
18672
18673 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18674
18675         * docs/gst/gstreamer-sections.txt:
18676           remove double entries from the docs
18677         * gst/gst_private.h:
18678         * gst/gstinfo.c: (_gst_debug_init):
18679           remove the THREAD debug category
18680         * gst/Makefile.am:
18681         * gst/gstqueue.c:
18682         * gst/gstqueue.h:
18683         * docs/gst/gstreamer.types:
18684         * plugins/elements/gstqueue.c: (gst_queue_get_type),
18685         (gst_queue_init), (gst_queue_finalize), (gst_queue_change_state):
18686           completely move queue and fix up debugging categories
18687
18688 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18689
18690         * plugins/elements/gstidentity.c: (gst_identity_transform_ip):
18691           make initialization portable, using LL is not
18692
18693 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18694
18695         * win32/common/gstconfig.h:
18696           add large padding
18697
18698 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18699
18700         * win32/common/libgstreamer.def:
18701           rename symbols; sort base section
18702
18703 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18704
18705         * gst/gstclock.c: (do_linear_regression):
18706           remove crack non-portable handrolled DEBUG macro
18707
18708 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18709
18710         * docs/random/release:
18711           update notes
18712         * win32/common/gstenumtypes.c: (register_gst_object_flags),
18713         (gst_object_flags_get_type), (register_gst_bin_flags),
18714         (gst_bin_flags_get_type), (register_gst_buffer_flag),
18715         (gst_buffer_flag_get_type), (register_gst_bus_flags),
18716         (gst_bus_flags_get_type), (register_gst_bus_sync_reply),
18717         (gst_bus_sync_reply_get_type), (register_gst_caps_flags),
18718         (gst_caps_flags_get_type), (register_gst_clock_return),
18719         (gst_clock_return_get_type), (register_gst_clock_entry_type),
18720         (gst_clock_entry_type_get_type), (register_gst_clock_flags),
18721         (gst_clock_flags_get_type), (register_gst_state),
18722         (gst_state_get_type), (register_gst_state_change_return),
18723         (gst_state_change_return_get_type), (register_gst_state_change),
18724         (gst_state_change_get_type), (register_gst_element_flags),
18725         (gst_element_flags_get_type), (register_gst_core_error),
18726         (gst_core_error_get_type), (register_gst_library_error),
18727         (gst_library_error_get_type), (register_gst_resource_error),
18728         (gst_resource_error_get_type), (register_gst_stream_error),
18729         (gst_stream_error_get_type), (register_gst_event_type_flags),
18730         (gst_event_type_flags_get_type), (register_gst_event_type),
18731         (gst_event_type_get_type), (register_gst_seek_type),
18732         (gst_seek_type_get_type), (register_gst_seek_flags),
18733         (gst_seek_flags_get_type), (register_gst_format),
18734         (gst_format_get_type), (register_gst_index_certainty),
18735         (gst_index_certainty_get_type), (register_gst_index_entry_type),
18736         (gst_index_entry_type_get_type),
18737         (register_gst_index_lookup_method),
18738         (gst_index_lookup_method_get_type), (register_gst_assoc_flags),
18739         (gst_assoc_flags_get_type), (register_gst_index_resolver_method),
18740         (gst_index_resolver_method_get_type), (register_gst_index_flags),
18741         (gst_index_flags_get_type), (register_gst_debug_level),
18742         (gst_debug_level_get_type), (register_gst_debug_color_flags),
18743         (gst_debug_color_flags_get_type), (register_gst_iterator_result),
18744         (gst_iterator_result_get_type), (register_gst_iterator_item),
18745         (gst_iterator_item_get_type), (register_gst_message_type),
18746         (gst_message_type_get_type), (register_gst_mini_object_flags),
18747         (gst_mini_object_flags_get_type), (register_gst_pad_link_return),
18748         (gst_pad_link_return_get_type), (register_gst_flow_return),
18749         (gst_flow_return_get_type), (register_gst_activate_mode),
18750         (gst_activate_mode_get_type), (register_gst_pad_direction),
18751         (gst_pad_direction_get_type), (register_gst_pad_flags),
18752         (gst_pad_flags_get_type), (register_gst_pad_presence),
18753         (gst_pad_presence_get_type), (register_gst_pad_template_flags),
18754         (gst_pad_template_flags_get_type), (register_gst_pipeline_flags),
18755         (gst_pipeline_flags_get_type), (register_gst_plugin_error),
18756         (gst_plugin_error_get_type), (register_gst_plugin_flags),
18757         (gst_plugin_flags_get_type), (register_gst_rank),
18758         (gst_rank_get_type), (register_gst_query_type),
18759         (gst_query_type_get_type), (register_gst_tag_merge_mode),
18760         (gst_tag_merge_mode_get_type), (register_gst_tag_flag),
18761         (gst_tag_flag_get_type), (register_gst_task_state),
18762         (gst_task_state_get_type), (register_gst_alloc_trace_flags),
18763         (gst_alloc_trace_flags_get_type),
18764         (register_gst_type_find_probability),
18765         (gst_type_find_probability_get_type), (register_gst_uri_type),
18766         (gst_uri_type_get_type), (register_gst_parse_error),
18767         (gst_parse_error_get_type):
18768         * win32/common/gstenumtypes.h:
18769         * win32/common/gstversion.h:
18770           update visual studio generated files
18771
18772 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18773
18774         * win32/vs6/libgstbase.dsp:
18775         * win32/vs6/libgstelements.dsp:
18776           update project files for new locations
18777
18778 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
18779
18780         * Makefile.am:
18781           remove some files
18782         * README:
18783           reinstate and update
18784         * DEVEL:
18785         * REQUIREMENTS:
18786           removed
18787         * LICENSE:
18788         * docs/random/LICENSE:
18789           moved to random
18790
18791 2005-11-30  Edward Hervey  <edward@fluendo.com>
18792
18793         * gst/gsttypefind.c: (gst_type_find_register):
18794         * gst/gsttypefind.h:
18795         * gst/gsttypefindfactory.c: (gst_type_find_factory_init),
18796         (gst_type_find_factory_dispose):
18797         * gst/gsttypefindfactory.h:
18798         Fix memory leak in GstTypeFindFactory.
18799
18800 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18801
18802         * gst/gst.c:
18803         * plugins/elements/Makefile.am:
18804         * plugins/elements/gstelements.c:
18805         * plugins/elements/gstqueue.c:
18806           move queue from core to the elements plugin
18807
18808 2005-11-29  Andy Wingo  <wingo@pobox.com>
18809
18810         * libs/gst/base/gstbasetransform.h: 
18811         * libs/gst/base/gstbasesrc.h: 
18812         * libs/gst/base/gstbasesink.h: en-LARGE the padding.
18813
18814         * gst/gstconfig.h.in (GST_PADDING_LARGE): New define, the number
18815         of pointers by which to pad very extensible base classes (like the
18816         ones in libs/gst/base).
18817
18818 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18819
18820         * docs/gst/gstreamer-docs.sgml:
18821         * docs/gst/gstreamer-sections.txt:
18822         * docs/libs/gstreamer-libs-docs.sgml:
18823         * docs/libs/gstreamer-libs-sections.txt:
18824           moving documentation from core to lib
18825
18826 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18827
18828         * check/Makefile.am:
18829         * configure.ac:
18830         * docs/gst/Makefile.am:
18831         * gst/Makefile.am:
18832         * gst/base/.cvsignore:
18833         * gst/base/Makefile.am:
18834         * gst/base/README:
18835         * gst/base/gstadapter.c:
18836         * gst/base/gstadapter.h:
18837         * gst/base/gstbasesink.c:
18838         * gst/base/gstbasesink.h:
18839         * gst/base/gstbasesrc.c:
18840         * gst/base/gstbasesrc.h:
18841         * gst/base/gstbasetransform.c:
18842         * gst/base/gstbasetransform.h:
18843         * gst/base/gstcollectpads.c:
18844         * gst/base/gstcollectpads.h:
18845         * gst/base/gstpushsrc.c:
18846         * gst/base/gstpushsrc.h:
18847         * gst/base/gsttypefindhelper.c:
18848         * gst/base/gsttypefindhelper.h:
18849         * gst/check/Makefile.am:
18850         * gst/check/gstcheck.c:
18851         * gst/check/gstcheck.h:
18852         * gst/net/Makefile.am:
18853         * gst/net/gstnet.h:
18854         * gst/net/gstnetclientclock.c:
18855         * gst/net/gstnetclientclock.h:
18856         * gst/net/gstnettimepacket.c:
18857         * gst/net/gstnettimepacket.h:
18858         * gst/net/gstnettimeprovider.c:
18859         * gst/net/gstnettimeprovider.h:
18860         * libs/gst/Makefile.am:
18861         * libs/gst/base/Makefile.am:
18862         * libs/gst/base/gstbasetransform.c:
18863         * libs/gst/check/Makefile.am:
18864         * plugins/elements/Makefile.am:
18865         * po/POTFILES.in:
18866           CVS surgery + support to move base, check, and net out of gst
18867           and into libs/gst
18868
18869 2005-11-29  Andy Wingo  <wingo@pobox.com>
18870
18871         * gst/gstevent.h (struct _GstEvent): Only one pointer of padding.
18872
18873         * gst/gststructure.h (struct _GstStructure): Only one pointer of
18874         padding.
18875
18876         * gst/gstquery.h (struct _GstQuery): Only one pointer of padding.
18877
18878         * gst/gstpluginfeature.h: Remove a comment in PluginFeature.
18879
18880         * gst/gstplugin.h (struct _GstPluginClass): Add some padding.
18881
18882         * gst/gstobject.h: (struct _GstObject): Only one pointer of
18883         padding; reduces object size by about 30%. We don't expect
18884         anything else to go into gstobject.
18885
18886         * gst/gstminiobject.h (struct _GstMiniObject)
18887         (struct _GstMiniObjectClass): Only one pointer of padding; the
18888         payload is only a pointer and two ints anyway. For the class there
18889         are only two methods as well.
18890         
18891         * gst/gstelement.h (struct _GstElementClass): Removed
18892         the state_changed signal callback, it is not used.
18893
18894 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18895
18896         * docs/gst/gstreamer.types:
18897           fix includes, though they are a little dinky
18898
18899 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18900
18901         * check/Makefile.am:
18902           look in the right place for elements, a lot more chance of
18903           success
18904         * gst/Makefile.am:
18905           remove indexers and elements subdirs
18906         * plugins/Makefile.am:
18907           make indexers conditional
18908
18909 2005-11-29  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18910
18911         * Makefile.am:
18912         * configure.ac:
18913         * plugins/elements/Makefile.am:
18914         * plugins/elements/gstcapsfilter.c:
18915         * plugins/elements/gstfilesink.c:
18916         * plugins/elements/gstfilesrc.c:
18917         * plugins/elements/gstidentity.c:
18918         * plugins/indexers/Makefile.am:
18919           do CVS surgery and related build fixery to move elements
18920           and indexers in a new gstreamer/plugins directory, out of the
18921           gst/ directory
18922
18923 2005-11-29  Andy Wingo  <wingo@pobox.com>
18924
18925         * check/Makefile.am:
18926         * pkgconfig/gstreamer-net-uninstalled.pc.in:
18927         * pkgconfig/gstreamer-net.pc.in:
18928         * gst/net/Makefile.am: Rename gstnet-tempname to gstnet. Fixes
18929         #322257.
18930
18931 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18932
18933         * tools/Makefile.am:
18934         * tools/gst-complete.1.in:
18935         * tools/gst-complete.c:
18936         * tools/gst-compprep.1.in:
18937         * tools/gst-compprep.c:
18938           removing -compprep and -complete
18939
18940 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
18941
18942         * gst/gstevent.c: (gst_event_new_new_segment),
18943         (gst_event_parse_new_segment):
18944         * gst/gstevent.h:
18945           fix #320529 - clean up new_segment API and structure.
18946           Let's hope everyone was using the methods, and not the structure.
18947
18948 2005-11-29  Edward Hervey  <edward@fluendo.com>
18949
18950         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
18951         (gst_base_sink_event), (gst_base_sink_do_sync),
18952         (gst_base_sink_activate_pull), (gst_base_sink_change_state):
18953         Properly handle non GST_FORMAT_TIME segment
18954         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
18955         Properly handle non GST_FORMAT_TIME segment
18956         * gst/gstsegment.c:
18957         This function is valid if the accumulator is 0 and the format
18958         is different from the requested format.
18959         
18960 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
18961
18962         * docs/gst/gstreamer-sections.txt:
18963         Add gst_query_new_seeking and gst_query_parse_seeking to the
18964         docs.
18965
18966 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
18967
18968         * gst/base/gstbasetransform.c: (gst_base_transform_buffer_alloc):
18969           Treat a pad alloc with new caps the same as if we were not
18970           negotiated, in order to allow a changing upstream output
18971           to produce a new format of data.
18972
18973 2005-11-29  Edward Hervey  <edward@fluendo.com>
18974
18975         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
18976         (gst_base_transform_event), (gst_base_transform_eventfunc):
18977         The event virtual method is now properly implemented, with a default
18978         handler
18979         Sub classes should call the parent_class event method. They should
18980         return FALSE if they had a problem handling the given event, or don't
18981         want GstBaseTransform to send that even downstream
18982         * gst/elements/gstidentity.c: (gst_identity_class_init),
18983         (gst_identity_init), (gst_identity_event),
18984         (gst_identity_transform_ip), (gst_identity_set_property),
18985         (gst_identity_get_property):
18986         * gst/elements/gstidentity.h:
18987         Added the single-segment boolean property.
18988         If set to TRUE, it will output a single segment of data, starting from
18989         0, will eat up all incoming newsegment, and modify the timestamp of the
18990         buffers accordingly
18991
18992 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
18993
18994         * gst/gstghostpad.c: (gst_proxy_pad_get_target):
18995           Don't ref NULL target pad (#322751). Improve docs.
18996
18997 2005-11-29  Michael Smith  <msmith@fluendo.com>
18998
18999         * gst/gstregistryxml.c: (load_plugin):
19000           Don't crash if we failed to load a feature from a plugin. 
19001
19002 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19003
19004         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
19005         (GST_START_TEST):
19006           use more check API and less GLib API
19007
19008 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19009
19010         * Makefile.am:
19011           don't run checks if we don't have check
19012         * common/check.mak:
19013           remove the registry when running make torture
19014         * docs/gst/gstreamer-sections.txt:
19015           remove second multiply
19016         * gst/gstqueue.c: (gst_queue_loop):
19017           fix a compile warning when disabling debug
19018
19019 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
19020
19021         * gst/gstinfo.h:
19022         Hey! Let's print the pad name if the pointer != NULL instead
19023         of when it == NULL :-)
19024
19025 2005-11-28  Wim Taymans  <wim@fluendo.com>
19026
19027         * check/gst/gstutils.c: (GST_START_TEST):
19028         Updated check, add some scaling accuracy checking code.
19029
19030         * gst/gstutils.c: (gst_util_div128_64),
19031         (gst_util_uint64_scale_int64), (gst_util_uint64_scale),
19032         (gst_util_uint64_scale_int):
19033         Fix 6 times faster division code. Optimize for common 
19034         1/1 and less common X/1 cases.
19035
19036 2005-11-28  Wim Taymans  <wim@fluendo.com>
19037
19038         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
19039         More checks.
19040
19041         * gst/gstclock.c: (gst_clock_finalize), (gst_clock_set_master),
19042         (do_linear_regression), (gst_clock_add_observation):
19043         Cleanups.
19044         Release lock when the clock cannot be slaved.
19045         Catch the case where the regression returned an invalid denominator.
19046
19047         * gst/gstutils.c: (gst_util_div128_64_iterate),
19048         (gst_util_div128_64), (gst_util_uint64_scale_int64),
19049         (gst_util_uint64_scale), (gst_util_uint64_scale_int):
19050         Add protentially more performant non-iterative 128/64 divide function
19051         that unfortunatly does not work yet.
19052         Shortcut the trivial 0/X = 0 case.
19053         Remove the warnings on overflow.
19054
19055 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19056
19057         * gst/gstplugin.c: (gst_plugin_register_func):
19058           everything causing a plugin not to load should be at least a WARNING
19059
19060 2005-11-28  Stefan Kost  <ensonic@users.sf.net>
19061
19062         * docs/random/ensonic/dparams.txt:
19063           some TODOs for the next dev cycle
19064         * libs/gst/controller/gstcontroller.c:
19065         (gst_controlled_property_set_interpolation_mode),
19066         (gst_controlled_property_new):
19067         * libs/gst/controller/gstcontroller.h:
19068           use base type to assign acccessor functions
19069
19070 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
19071
19072         * check/Makefile.am:
19073         Oops, that should have been top_srcdir
19074
19075 2005-11-28  Jan Schmidt  <thaytan@mad.scientist.com>
19076
19077         * check/Makefile.am:
19078         * check/elements/fdsrc.c: (GST_START_TEST):
19079         Use a cmdline define to specify the location of a file to use for
19080         testing, to avoid breaking distcheck.
19081
19082 2005-11-28  Andy Wingo  <wingo@pobox.com>
19083
19084         * gst/gstpad.c (fixate_value): Use array functions for arrays.
19085
19086 2005-11-28  Edward Hervey  <edward@fluendo.com>
19087
19088         * tools/gst-launch.c: (main):
19089         Clarify the output strings, makes it easier to translate.
19090         Fixes #322626
19091
19092 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
19093
19094         * gst/Makefile.am:
19095           don't try and build net if we don't even have <sys/socket.h>
19096
19097 2005-11-27  Jan Schmidt  <thaytan@mad.scientist.com>
19098
19099         * check/Makefile.am:
19100         * check/elements/fdsrc.c: (event_func), (setup_fdsrc),
19101         (cleanup_fdsrc), (GST_START_TEST), (fdsrc_suite), (main):
19102           Add tests for fdsrc seekability
19103
19104         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
19105         (gst_fdsrc_init), (gst_fdsrc_update_fd), (gst_fdsrc_start),
19106         (gst_fdsrc_set_property), (gst_fdsrc_is_seekable),
19107         (gst_fdsrc_get_size), (gst_fdsrc_uri_set_uri):
19108         * gst/elements/gstfdsrc.h:
19109           fdsrc should not be a 'live' source.
19110           Implement seeking on seekable fd's.
19111
19112         * gst/gstquery.c: (gst_query_new_seeking),
19113         (gst_query_parse_seeking):
19114         * gst/gstquery.h:
19115           Implement SEEKING query functions: 
19116             *_new_seeking and *_parse_seeking
19117
19118 2005-11-27  Stefan Kost  <ensonic@users.sf.net>
19119
19120         * gst/gstelement.c: (gst_element_dispose):
19121           don't loop forever
19122
19123         * gst/gstiterator.c:
19124         * gst/gststructure.c:
19125           doc fixes
19126
19127         * libs/gst/controller/gstcontroller.c:
19128         (gst_controlled_property_set_interpolation_mode):
19129         * libs/gst/controller/gstcontroller.h:
19130         * libs/gst/controller/gstinterpolation.c:
19131         (interpolate_none_get_enum_value_array):
19132           support controlling enums
19133
19134 2005-11-27  Tim-Philipp Müller  <tim at centricular dot net>
19135
19136         * gst/gstvalue.c:
19137           Improve documentation for gst_value_union().
19138
19139         * gst/gstvalue.h:
19140           Change return value for union, intersect and subtract functions
19141           from gint to gboolean.
19142
19143 2005-11-27  Tim-Philipp Müller  <tim at centricular dot net>
19144
19145         * gst/gstvalue.c: (gst_value_serialize_any_list),
19146         (gst_value_transform_any_list_string),
19147         (gst_value_deserialize_list), (gst_value_deserialize_array),
19148         (gst_value_set_int_range), (gst_value_deserialize_int_range),
19149         (gst_value_set_double_range), (gst_value_deserialize_double_range),
19150         (gst_value_set_fraction_range_full),
19151         (gst_value_deserialize_fraction_range),
19152         (gst_value_deserialize_caps), (gst_value_deserialize_buffer),
19153         (gst_value_deserialize_boolean),
19154         (gst_value_deserialize_int_helper), (gst_value_deserialize_double),
19155         (gst_value_serialize_float), (gst_value_deserialize_float),
19156         (gst_string_wrap), (gst_value_deserialize_string),
19157         (gst_value_deserialize_enum), (gst_value_deserialize_flags),
19158         (gst_value_union_int_range_int_range),
19159         (gst_value_intersect_int_range_int_range),
19160         (gst_value_intersect_double_range_double_range),
19161         (gst_value_create_new_range), (gst_value_subtract_int_range_int),
19162         (gst_value_subtract_int_range_int_range),
19163         (gst_value_subtract_double_double_range),
19164         (gst_value_subtract_double_range_double_range),
19165         (gst_value_deserialize_fraction):
19166         * gst/gstvalue.h:
19167           Use gint, gdouble and gchar in our API instead of int, double and
19168           char (and make usage in gstvalue.c more consistent).
19169
19170 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19171
19172         * check/Makefile.am:
19173         * libs/gst/controller/Makefile.am:
19174         * libs/gst/dataprotocol/Makefile.am:
19175           fix up Makefile.am and remove GST_ENABLE_NEW
19176
19177 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19178
19179         * configure.ac:
19180         * gst/Makefile.am:
19181         * gst/base/Makefile.am:
19182         * gst/check/Makefile.am:
19183         * gst/elements/Makefile.am:
19184         * gst/net/Makefile.am:
19185           update LDFLAGS use some more
19186
19187 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
19188
19189         * common/m4/gst-doc.m4:
19190           Fixes #312589
19191
19192 2005-11-26  Edward Hervey  <edward@fluendo.com>
19193
19194         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
19195         This shouldn't issue a g_warning since it returns NULL if it
19196         couldn't find the plugin, and all functions using this behave
19197         properly on a NULL return. Switching to a GST_WARNING.
19198
19199 2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>
19200
19201         * gst/gstbin.c: (gst_bin_handle_message_func):
19202         Don't leak clock messages.
19203
19204 2005-11-25  Wim Taymans  <wim@fluendo.com>
19205
19206         * gst/gstutils.c: (gst_util_uint64_scale_int64),
19207         (gst_util_uint64_scale_int):
19208         Optimisations, remove unneeded vars.
19209
19210 2005-11-25  Wim Taymans  <wim@fluendo.com>
19211
19212         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
19213         Added more checks for the high precision uint64 cases.
19214
19215         * gst/gstutils.c: (gst_util_uint64_scale_int64),
19216         (gst_util_uint64_scale), (gst_util_uint64_scale_int):
19217         Implement high precision (guint64 * guint64) / guint64.
19218
19219 2005-11-24  Wim Taymans  <wim@fluendo.com>
19220
19221         * gst/base/gstbasesrc.c: (gst_base_src_query):
19222         Fix wrong percentage query.
19223
19224         * gst/gstutils.c: (gst_util_uint64_scale),
19225         (gst_util_uint64_scale_int):
19226         Add some more common cases that can be handled 
19227         efficiently to _scale.
19228
19229 2005-11-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19230
19231         * check/gst/gstminiobject.c: (thread_ref), (GST_START_TEST),
19232         (gst_mini_object_suite):
19233           don't use check calls from threads; check probably isn't
19234           threadsafe and using a lock to make it threadsafe would
19235           defeat the purpose of this check
19236         * gst/check/gstcheck.c:
19237         * gst/check/gstcheck.h:
19238           use GST_DEBUG some more
19239
19240 2005-11-24  Wim Taymans  <wim@fluendo.com>
19241
19242         * gst/gstutils.c: (gst_util_uint64_scale),
19243         (gst_util_uint64_scale_int):
19244         Chain trivial case to _scale_int.
19245
19246 2005-11-24  Wim Taymans  <wim@fluendo.com>
19247
19248         * check/gst/gstutils.c: (GST_START_TEST), (gst_utils_suite):
19249         Added test for scaling.
19250
19251         * gst/gstclock.h:
19252         Small doc fix.
19253
19254         * gst/gstutils.c: (gst_util_uint64_scale_int):
19255         Implemented high precision scaling code.
19256
19257 2005-11-24  Stefan Kost  <ensonic@users.sf.net>
19258
19259         * gst/gstinfo.h:
19260           do not crash on pad==NULL
19261
19262 2005-11-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19263
19264         Patch by: Stefan Kost
19265
19266         * common/gtk-doc.mak:
19267         * docs/gst/Makefile.am:
19268         * docs/libs/Makefile.am:
19269           Fix distcheck issues for the libraries docs build
19270           Closes #319599.
19271
19272 2005-11-24  Michael Smith <msmith@fluendo.com>
19273
19274         * docs/manual/basics-helloworld.xml:
19275           Fix bug #315027: memory leak in example code in docs.
19276
19277 2005-11-24  Michael Smith <msmith@fluendo.com>
19278
19279         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
19280           Unlock the PREROLL_LOCK in a failure case.
19281
19282 2005-11-24  Wim Taymans  <wim@fluendo.com>
19283
19284         * docs/gst/gstreamer-sections.txt:
19285         * gst/base/gstadapter.h:
19286         * gst/base/gstbasesink.h:
19287         * gst/base/gstbasesrc.h:
19288         * gst/base/gstbasetransform.h:
19289         * gst/base/gstpushsrc.h:
19290         * gst/elements/gstfakesink.h:
19291         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type):
19292         * gst/elements/gstfakesrc.h:
19293         * gst/elements/gstfilesink.h:
19294         * gst/elements/gstfilesrc.h:
19295         * gst/gst.c:
19296         * gst/gstbin.c:
19297         * gst/gstbuffer.c: (_gst_buffer_copy):
19298         * gst/gstbus.h:
19299         * gst/gstcaps.c:
19300         * gst/gstchildproxy.c:
19301         * gst/gstclock.c:
19302         * gst/gstelement.c:
19303         * gst/gstelementfactory.c:
19304         * gst/gstelementfactory.h:
19305         * gst/gstevent.c:
19306         * gst/gstghostpad.h:
19307         * gst/gstindex.h:
19308         * gst/gstinterface.h:
19309         * gst/gstminiobject.c:
19310         * gst/gstminiobject.h:
19311         * gst/gstpad.c:
19312         * gst/gstpad.h:
19313         * gst/gstpadtemplate.h:
19314         * gst/gstpipeline.h:
19315         * gst/gstpluginfeature.h:
19316         * gst/gstquery.h:
19317         * gst/gstqueue.h:
19318         * gst/gsttaglist.c:
19319         * gst/gsttaglist.h:
19320         * gst/gsttagsetter.c:
19321         * gst/gsttagsetter.h:
19322         * gst/gsttrace.c:
19323         * gst/gsttrace.h:
19324         * gst/gsttypefind.h:
19325         * gst/gsturi.h:
19326         * gst/gstvalue.c:
19327         * gst/net/gstnetclientclock.c:
19328         * gst/net/gstnetclientclock.h:
19329         * gst/net/gstnettimepacket.c:
19330         * gst/net/gstnettimeprovider.c:
19331         * gst/net/gstnettimeprovider.h:
19332         Doc fixes.
19333
19334 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19335
19336         * configure.ac: back to HEAD
19337
19338 === release 0.9.6 ===
19339
19340 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
19341
19342         * configure.ac:
19343           releasing 0.9.6, "Always On Time"
19344
19345 2005-11-23  Wim Taymans  <wim@fluendo.com>
19346
19347         * docs/gst/gstreamer-sections.txt:
19348         * gst/glib-compat.c:
19349         * gst/gsttagsetter.c:
19350         * gst/gstvalue.c:
19351         * gst/net/gstnetclientclock.c:
19352         * gst/net/gstnettimepacket.h:
19353         Doc updates.
19354
19355 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
19356
19357         * docs/faq/using.xml:
19358         * docs/libs/tmpl/gstcontrol.sgml:
19359         * docs/manual/advanced-dparams.xml:
19360         * docs/manual/appendix-checklist.xml:
19361         * docs/manual/basics-elements.xml:
19362         * docs/pwg/other-source.xml:
19363         * docs/random/moving-plugins:
19364         * gst/gstpad.c:
19365         * tools/gst-launch.1.in:
19366           remove mentions of sinesrc
19367
19368 2005-11-23  Michael Smith <msmith@fluendo.com>
19369
19370         * docs/gst/gstreamer-sections.txt:
19371           Update for new API and API changes.
19372         * gst/gstobject.h:
19373           Documentation fix: GST_TRYLOCK -> GST_OBJECT_TRYLOCK
19374         * gst/gstvalue.c:
19375           Documentation typo fix.
19376         * gst/net/gstnettimepacket.c:
19377           Documentation fixes for arguments.
19378
19379 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
19380
19381         * gst/gststructure.c: (gst_structure_get_fraction),
19382         (gst_structure_parse_value),
19383         (gst_structure_fixate_field_nearest_fraction):
19384         * gst/gststructure.h:
19385         * gst/gstutils.c: (gst_util_uint64_scale_int):
19386         * gst/gstutils.h:
19387         * scripts/update-funcnames:
19388         API Changes. 
19389         Rename gst_util_clock_time_scale to gst_util_uint64_scale_int
19390         Make gst_structure_fixate_field_nearest_fraction take a numerator
19391         and denominator argument instead of a GValue
19392         add gst_structure_get_fraction helper function.
19393
19394 2005-11-23  Wim Taymans  <wim@fluendo.com>
19395
19396         * docs/design/part-TODO.txt:
19397         Update TODO.
19398
19399         * gst/net/gstnetclientclock.c: (gst_net_client_clock_thread):
19400         * gst/net/gstnetclientclock.h:
19401         Use parent fields for timeout and window_size.
19402
19403 2005-11-23  Andy Wingo  <wingo@pobox.com>
19404
19405         * check/net/gstnetclientclock.c (test_functioning): Adjust to
19406         rate_num/rate_denom change.
19407
19408         * gst/net/gstnetclientclock.c
19409         (gst_net_client_clock_observe_times): Take the SLAVE_LOCK not the
19410         OBJECT_LOCK. Don't call add_observation with the lock.
19411
19412         * gst/gstclock.c (gst_clock_init): Initialize the rate as a
19413         fraction.
19414         (gst_clock_adjust_unlocked): Adjust using uint64_scale and the
19415         rate fraction.
19416         (gst_clock_set_calibration, gst_clock_get_calibration): Change to
19417         deal with rate as a fraction whose numerator and denominator are
19418         GstClockTime values.
19419         (gst_clock_set_master): Only use the OBJECT_LOCK to set the
19420         master; the other fields are protected by the SLAVE_LOCK.
19421         (do_linear_regression): Note that this must be called with the
19422         SLAVE_LOCK.
19423         (gst_clock_add_observation): Take the SLAVE_LOCK, not the
19424         OBJECT_LOCK. Call set_calibration instead of touching the
19425         variables directly.
19426         (gst_clock_set_property, gst_clock_get_property): Protect
19427         master/slave parameters with the SLAVE_LOCK.
19428
19429         * gst/gstclock.h (GstClock): Remove rate, add rate_numerator and
19430         rate_denominator. PR3C1S3. Add a new lock, the SLAVE_LOCK, and
19431         note that all of the instance variables that add_observation and
19432         the set_master functions use are protected by that lock and not
19433         the OBJECT_LOCK.
19434         (GST_CLOCK_SLAVE_LOCK, GST_CLOCK_SLAVE_UNLOCK): New macros.
19435
19436         * gst/gstclock.c (gst_clock_add_observation): No longer requires
19437         the caller to take the object lock.
19438
19439 2005-11-23  Wim Taymans  <wim@fluendo.com>
19440
19441         * gst/gsterror.c: (_gst_core_errors_init):
19442         * gst/gsterror.h:
19443         Add error for clock stuff.
19444
19445         * gst/gstpipeline.c: (gst_pipeline_change_state),
19446         (gst_pipeline_set_clock):
19447         Post clock error when clock cannot be used in a pipeline.
19448
19449 2005-11-23  Stefan Kost  <ensonic@users.sf.net>
19450
19451         * docs/gst/gstreamer-sections.txt:
19452           make two symbols from gstinfo private for the docs
19453         * gst/base/gstcollectpads.h:
19454         * gst/gstutils.c:
19455           fix doc typos, update docs
19456
19457 2005-11-22  Wim Taymans  <wim@fluendo.com>
19458
19459         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
19460         (gst_base_sink_wait), (gst_base_sink_do_sync),
19461         (gst_base_sink_handle_event):
19462         * gst/base/gstbasesink.h:
19463         No need to store the clock, the parent element class already
19464         has it.
19465
19466         * gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_add_func):
19467         Updates for clock_set returning a gboolean
19468
19469         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_wait),
19470         (gst_clock_id_wait_async), (gst_clock_class_init),
19471         (gst_clock_init), (gst_clock_finalize),
19472         (gst_clock_get_internal_time), (gst_clock_get_time),
19473         (gst_clock_slave_callback), (gst_clock_set_master),
19474         (gst_clock_get_master), (do_linear_regression),
19475         (gst_clock_add_observation), (gst_clock_set_property),
19476         (gst_clock_get_property):
19477         * gst/gstclock.h:
19478         Implement master/slave. When setting a clock as a slave, a
19479         periodic timeout is scheduled to sample master and slave times.
19480         Then the slave clock is recalibrated to match offset and rate
19481         of the master clock.
19482         Update logging a bit.
19483         Add flag so that a clock can state that is cannot be slaved to
19484         another clock.
19485
19486         * gst/gstelement.c: (gst_element_set_clock):
19487         * gst/gstelement.h:
19488         The set clock returns a gboolean for when an element cannot
19489         deal with the selected clock in the pipeline. 
19490
19491         * gst/gstpipeline.c: (gst_pipeline_change_state),
19492         (gst_pipeline_set_clock):
19493         * gst/gstpipeline.h:
19494         Handle the case where the selected clock cannot be set on
19495         the pipeline.
19496
19497         * gst/net/gstnetclientclock.c: (gst_net_client_clock_class_init),
19498         (gst_net_client_clock_init), (gst_net_client_clock_finalize),
19499         (gst_net_client_clock_set_property),
19500         (gst_net_client_clock_get_property),
19501         (gst_net_client_clock_observe_times):
19502         * gst/net/gstnetclientclock.h:
19503         Use regression code in GstClock parent, remove duplicated
19504         functionality.
19505
19506 2005-11-22  Michael Smith <msmith@fluendo.com>
19507
19508         * gst/gstutils.c: (gst_util_clock_time_scale):
19509         * gst/gstutils.h:
19510         * docs/gst/gstreamer-sections.txt:
19511           Rename method to have extra underscore.
19512
19513 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
19514
19515         * gst/elements/Makefile.am:
19516         * gst/elements/gstfakesink.c: (gst_fake_sink_state_error_get_type):
19517         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
19518         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type),
19519         (gst_fake_src_init), (gst_fake_src_prepare_buffer),
19520         (gst_fake_src_alloc_buffer), (gst_fake_src_get_size):
19521         * gst/elements/gstfakesrc.h:
19522         * gst/gstqueue.c: (queue_leaky_get_type):
19523           correctly fix GEnumValues so that nick is the short lowercase
19524           dashed tag
19525         * tools/gst-inspect.c: (print_element_properties_info):
19526           also show the nick, since it's useful to use from parse_launch
19527           syntax
19528           Fixes #322139
19529
19530 2005-11-22  Michael Smith <msmith@fluendo.com>
19531
19532         * gst/gstutils.c: (gst_util_clocktime_scale):
19533         * gst/gstutils.h:
19534         * docs/gst/gstreamer-sections.txt:
19535           Add util method for scaling a clocktime by a fraction. Useful 
19536           implementation is left as an exercise for the reader.
19537
19538 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19539
19540         * gst/gstvalue.c: (gst_value_collect_fraction_range):
19541         If needed, allocate storage in the destination value during
19542         collection.
19543
19544 2005-11-22  Edward Hervey  <edward@fluendo.com>
19545
19546         * docs/gst/gstreamer-sections.txt:
19547         * gst/Makefile.am:
19548         * gst/gst.h:
19549         * gst/gsturitype.c:
19550         * gst/gsturitype.h:
19551         * gst/gstutils.c: (gst_util_set_object_arg):
19552         * tools/gst-compprep.c: (main):
19553         * tools/gst-inspect.c: (print_element_properties_info):
19554         Removed GstURI, closes bug #321061
19555
19556 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19557
19558         * check/gst/gststructure.c: (GST_START_TEST):
19559         * gst/gststructure.c: (gst_structure_parse_value):
19560           Oops, broke automatic string type parsing.
19561           Add a test to catch it in future.
19562
19563 2005-11-22  Andy Wingo  <wingo@pobox.com>
19564
19565         * gst/gsttagsetter.c (gst_tag_setter_get_tag_merge_mode) 
19566         (gst_tag_setter_set_tag_merge_mode, gst_tag_setter_get_tag_list):
19567         Actually rename the function implementations. Grr.
19568
19569 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19570
19571         * check/gst/capslist.h:
19572           Comment test cases
19573         * check/gst/gststructure.c: (GST_START_TEST),
19574         (gst_structure_suite):
19575           Test automatic value type detection in gst_structure_from_string.
19576         * gst/gststructure.c: (gst_structure_parse_value):
19577           Add fraction as a type we try and guess automatically in
19578           caps/structure strings.
19579
19580 2005-11-22  Andy Wingo  <wingo@pobox.com>
19581
19582         patch by: Torsten Schoenfeld <kaffeetisch gmx de>
19583
19584         * gst/gsttagsetter.h:
19585         * gst/gsttagsetter.c: (gst_tag_setter_merge_tags)
19586         (gst_tag_setter_add_tags, gst_tag_setter_add_tag_values)
19587         (gst_tag_setter_add_tag_valist)
19588         (gst_tag_setter_add_tag_valist_values): Renamed from _merge, _add,
19589         _add_values, _add_valist, and _add_valist_values. Since this is an
19590         interface the function suffixes should be more explicit so
19591         language binding don't end up with element.add_valist ->
19592         gst_tag_setter_add_valist, for example. Fixes #322069.
19593
19594 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19595
19596         * check/gst/gstcaps.c: (GST_START_TEST):
19597           Extend caps string tests to check that a caps to string
19598           conversion is reversible and produces the same caps.
19599
19600         * gst/gststructure.c: (gst_structure_value_get_generic_type):
19601           Output "fraction" as the generic type fraction range, so caps
19602           serialisation and deserialisation works.
19603         * check/gst/capslist.h:
19604         * gst/gstvalue.c: (gst_value_deserialize_fraction):
19605           Support 'MIN' and 'MAX' for deserialising fractions.
19606
19607 2005-11-22  Andy Wingo  <wingo@pobox.com>
19608
19609         * gst/gstevent.h (gst_event_new_new_segment)
19610         (gst_event_parse_new_segment, gst_event_new_buffer_size)
19611         (gst_event_parse_buffer_size, gst_ghost_pad_new_no_target):
19612         Renamed from *_newsegment, *_buffersize, *_notarget.
19613
19614         * scripts/update-funcnames: New script, performs the changes
19615         listed above.
19616
19617 2005-11-22  Wim Taymans  <wim@fluendo.com>
19618
19619         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
19620         Make sure the GstFlowReturn is returned.
19621
19622         * gst/gstbus.c: (gst_bus_add_signal_watch_full),
19623         (gst_bus_add_signal_watch):
19624         * gst/gstbus.h:
19625         add gst_bus_add_signal_watch_full.
19626
19627         * gst/gstplugin.c: (gst_plugin_load_file):
19628         Small style cleanup.
19629
19630 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19631
19632         * check/gst/gstevent.c: (test_event), (GST_START_TEST):
19633           Block the fakesrc srcpad when we send an event, to avoid
19634           contention on the stream_lock causing random test failures.
19635
19636 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19637
19638         * check/gst/gstvalue.c: (GST_START_TEST):
19639         * gst/gstvalue.c: (gst_value_fraction_subtract):
19640           Fix subtraction.
19641
19642 2005-11-22  Stefan Kost  <ensonic@users.sf.net>
19643
19644         * gst/gst.h:
19645           include "gstchildproxy.h"
19646         * gst/gstchildproxy.h:
19647         * libs/gst/controller/gstcontroller.h:
19648           use G_GNUC_NULL_TERMINATED
19649
19650 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
19651
19652         * check/gst/capslist.h:
19653         * check/gst/gstcaps.c: (GST_START_TEST):
19654         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
19655         * gst/gststructure.c: (gst_structure_parse_range),
19656         (gst_structure_fixate_field_nearest_fraction):
19657         * gst/gststructure.h:
19658         * gst/gstvalue.c: (gst_value_init_fraction_range),
19659         (gst_value_free_fraction_range), (gst_value_copy_fraction_range),
19660         (gst_value_collect_fraction_range),
19661         (gst_value_lcopy_fraction_range), (gst_value_set_fraction_range),
19662         (gst_value_set_fraction_range_full),
19663         (gst_value_get_fraction_range_min),
19664         (gst_value_get_fraction_range_max),
19665         (gst_value_serialize_fraction_range),
19666         (gst_value_transform_fraction_range_string),
19667         (gst_value_compare_fraction_range),
19668         (gst_value_deserialize_fraction_range),
19669         (gst_value_intersect_fraction_fraction_range),
19670         (gst_value_intersect_fraction_range_fraction_range),
19671         (gst_value_subtract_fraction_fraction_range),
19672         (gst_value_subtract_fraction_range_fraction),
19673         (gst_value_subtract_fraction_range_fraction_range),
19674         (gst_value_collect_fraction), (gst_value_fraction_multiply),
19675         (gst_value_fraction_subtract), (gst_value_deserialize_fraction),
19676         (gst_value_transform_string_fraction), (_gst_value_initialize):
19677         * gst/gstvalue.h:
19678           Implement fraction ranges and extend GstFraction to support
19679           arithmetic subtraction, as well as deserialization from integer
19680           strings such as "100"
19681           Add a testsuite as for int and double range set operations
19682
19683 2005-11-21  Andy Wingo  <wingo@pobox.com>
19684
19685         * gst/gsttaglist.h: 
19686         * gst/gstcaps.h: 
19687         * gst/gststructure.h: Add glib-compat.h.
19688
19689 2005-11-21  Wim Taymans  <wim@fluendo.com>
19690
19691         * gst/gstbin.c: (gst_bin_change_state_func):
19692         Fix for #321595
19693
19694 2005-11-21  Wim Taymans  <wim@fluendo.com>
19695
19696         * gst/gstsegment.h:
19697         And add a nice define too.
19698
19699 2005-11-21  Wim Taymans  <wim@fluendo.com>
19700
19701         * gst/gstsegment.c: (gst_segment_copy), (gst_segment_get_type),
19702         (gst_segment_new), (gst_segment_free), (gst_segment_init),
19703         (gst_segment_set_duration), (gst_segment_set_last_stop),
19704         (gst_segment_set_seek), (gst_segment_set_newsegment),
19705         (gst_segment_to_stream_time), (gst_segment_to_running_time),
19706         (gst_segment_clip):
19707         * gst/gstsegment.h:
19708         Make binding friendly.
19709
19710 2005-11-21  Andy Wingo  <wingo@pobox.com>
19711
19712         * gst/gsttagsetter.h: 
19713         * gst/gsttaglist.h: 
19714         * gst/gststructure.h: 
19715         * gst/gstcaps.h: 
19716         * gst/gstutils.h: Sprinkle NULL_TERMINATED to taste. Fixes
19717         #319940.
19718
19719         * gst/gsterror.c (_gst_core_errors_init):
19720         * gst/gsterror.h (GST_CORE_ERROR_MISSING_PLUGIN): New error
19721         category.
19722
19723         * gst/Makefile.am (gst_headers): Add glib-compat.h.
19724         (noinst_HEADERS): noinst the -private.
19725
19726 2005-11-21  Michael Smith <msmith@fluendo.com>
19727
19728         * gst/gstplugin.h:
19729         * gst/gstregistry.h:
19730           Remove unimplemented declarations for which we can see no sensible
19731           use.
19732
19733 2005-11-21  Andy Wingo  <wingo@pobox.com>
19734
19735         * gst/gst.h: Include glib-compat.h.
19736
19737         * gst/glib-compat.h: Add G_GNUC_NULL_TERMINATED.
19738
19739         * gst/glib-compat.c: Include the public and the private header.
19740
19741         * gst/glib-compat-private.h: Copied here from glib-compat.h.
19742
19743         * gst/gstvalue.c: 
19744         * gst/gstpad.c: 
19745         * gst/gstregistryxml.c: s/glib-compat/glib-compat-private/.
19746
19747         * check/gst/gstevent.c (create_custom_events): Check that
19748         FLUSH_STOP is serialized.
19749
19750         * check/elements/identity.c (event_func): 
19751         * check/elements/fakesrc.c (event_func): No stream lock, the core
19752         takes it.
19753
19754         * gst/base/gstbasetransform.c (gst_base_transform_event): No more
19755         stream lock taking, yay.
19756
19757         * gst/gstevent.h (GST_EVENT_FLUSH_STOP): Marked as serialized to
19758         ensure that core takes the stream lock.
19759
19760         * gst/base/gstbasesrc.c (gst_base_src_do_seek): Update for stream
19761         lock name change.
19762
19763         * gst/base/gstbasesink.c (gst_base_sink_event): No need to take
19764         the stream lock for EOS, NEWSEGMENT, or FLUSH_STOP, the core does
19765         it already. For the flush start we do take it though so we get the
19766         right preroll state change messages.
19767
19768         * gst/gstqueue.c (gst_queue_sink_activate_push): No need to take
19769         the stream lock here, the core does it for us.
19770
19771         * gst/gstpad.h (GST_PAD_GET_STREAM_LOCK): Renamed from
19772         GST_STREAM_GET_LOCK.
19773         (GST_PAD_STREAM_LOCK, GST_PAD_STREAM_TRYLOCK) 
19774         (GST_PAD_STREAM_UNLOCK, GST_PAD_STREAM_UNLOCK_FULL) 
19775         (GST_PAD_STREAM_LOCK_FULL): Renamed from GST_STREAM_*.
19776         (GST_PAD_GET_PREROLL_LOCK): Renamed from GST_PREROLL_GET_LOCK.
19777         (GST_PAD_PREROLL_LOCK, GST_PAD_PREROLL_TRYLOCK) 
19778         (GST_PAD_PREROLL_UNLOCK): Renamed from GST_PREROLL_*.
19779
19780         * gst/gstpad.c: Update for stream lock name change.
19781
19782         * gst/base/gstbasesink.c: Update for preroll lock name change.
19783
19784 2005-11-21  Wim Taymans  <wim@fluendo.com>
19785
19786         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_master),
19787         (gst_clock_get_master):
19788         * gst/gstclock.h:
19789         * gst/gstsystemclock.c: (gst_system_clock_init):
19790         Convert Clock flags to object flags.
19791         Added methods to manage master/slave clocks.
19792
19793 2005-11-21  Wim Taymans  <wim@fluendo.com>
19794
19795         * check/gst/gstsegment.c: (GST_START_TEST):
19796         * docs/design/part-TODO.txt:
19797         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
19798         (gst_base_sink_event), (gst_base_sink_do_sync),
19799         (gst_base_sink_activate_pull), (gst_base_sink_get_position),
19800         (gst_base_sink_query), (gst_base_sink_change_state):
19801         * gst/base/gstbasesink.h:
19802         * gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
19803         (gst_base_src_default_newsegment),
19804         (gst_base_src_configure_segment), (gst_base_src_do_seek),
19805         (gst_base_src_get_range), (gst_base_src_loop),
19806         (gst_base_src_change_state):
19807         * gst/base/gstbasesrc.h:
19808         * gst/base/gstbasetransform.c:
19809         (gst_base_transform_prepare_output_buf),
19810         (gst_base_transform_event), (gst_base_transform_change_state):
19811         * gst/base/gstbasetransform.h:
19812         * gst/base/gstcollectpads.c: (gst_collect_pads_add_pad),
19813         (gst_collect_pads_event):
19814         * gst/base/gstcollectpads.h:
19815         * gst/elements/gstfakesrc.c: (gst_fake_src_init),
19816         (gst_fake_src_create):
19817         * gst/elements/gstfakesrc.h:
19818         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
19819         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
19820         (gst_segment_set_last_stop), (gst_segment_set_seek),
19821         (gst_segment_set_newsegment), (gst_segment_to_stream_time),
19822         (gst_segment_to_running_time), (gst_segment_clip):
19823         * gst/gstsegment.h:
19824         More segment updates, replace code in plugins with segment
19825         helper functions.
19826
19827 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19828
19829         * gst/elements/gstfdsrc.c: (gst_fdsrc_uri_set_uri):
19830         Don't ignore sscanf results
19831
19832 2005-11-21  Andy Wingo  <wingo@pobox.com>
19833
19834         * gst/gstpad.h (GST_IS_PAD_FAST): Removed.
19835
19836         * *.h:
19837         * *.c: Ran scripts/update-macros. Oh yes.
19838
19839         * gst/gstobject.h (GST_OBJECT_GET_LOCK, GST_OBJECT_LOCK)
19840         (GST_OBJECT_TRYLOCK, GST_OBJECT_UNLOCK): Renamed from
19841         GST_GET_LOCK, etc.
19842
19843         * scripts/update-macros: New script. Run it on your files to
19844         change GST_LOCK to GST_OBJECT_LOCK, and the same for UNLOCK as
19845         well.
19846
19847 2005-11-21  Stefan Kost  <ensonic@users.sf.net>
19848
19849         * docs/gst/Makefile.am:
19850         * docs/gst/gstreamer-docs.sgml:
19851         * docs/gst/gstreamer-sections.txt:
19852         * docs/gst/gstreamer.types:
19853         * gst/gstinfo.h:
19854           more docs fixes, add new api to the docs
19855
19856 2005-11-21  Andy Wingo  <wingo@pobox.com>
19857
19858         * gst/gstbin.c (gst_bin_remove_func): Wim claims I can remove this
19859         state_broadcast call.
19860
19861         * gst/gstsegment.c (gst_segment_init): Initialize abs_rate.
19862
19863 2005-11-21  Julien MOUTTE  <julien@moutte.net>
19864
19865         * gst/gstvalue.c: (gst_value_intersect_array): Fix wrong
19866         function calls for arrays.
19867
19868 2005-11-21  Stefan Kost  <ensonic@users.sf.net>
19869
19870         * docs/random/ensonic/media-device-daemon.txt:
19871           wild idea, can this be done?
19872         * docs/gst/gstreamer-sections.txt:
19873         * gst/gsterror.h:
19874         * gst/gstfilter.c:
19875         * gst/gstfilter.h:
19876         * gst/gstplugin.h:
19877         * gst/gstpluginfeature.c:
19878         * gst/gsttrace.c:
19879         * gst/gstvalue.c:
19880         * gst/gstvalue.h:
19881           doc fixes and additions
19882
19883 2005-11-21  Andy Wingo  <wingo@pobox.com>
19884
19885         * gst/base/gstbasesrc.c (GST_LIVE_BROADCAST, GST_LIVE_SIGNAL) 
19886         (GST_LIVE_TIMED_WAIT, GST_LIVE_WAIT, GST_LIVE_GET_COND) 
19887         (GST_LIVE_UNLOCK, GST_LIVE_TRYLOCK, GST_LIVE_LOCK) 
19888         (GST_LIVE_GET_LOCK): Moved here from gstbasesrc.h. They are
19889         private to the basesrc implementation.
19890
19891         * gst/gstpad.c (gst_pad_send_event): Doc more. Take stream lock on
19892         behalf of event function if necessary. It should no longer be
19893         necessary to take the stream lock in pad's event functions. Fixes
19894         #320299.
19895
19896 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19897         * docs/gst/gstreamer-sections.txt:
19898         * gst/gststructure.c: (gst_structure_fixate_field_nearest_int),
19899         (gst_structure_fixate_field_nearest_double),
19900         (gst_structure_fixate_field_boolean):
19901         * gst/gststructure.h:
19902         * win32/common/libgstreamer.def:
19903         * win32/gstreamer.def:
19904
19905         Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
19906         (#322027)
19907
19908 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
19909
19910         * gst/elements/gstfdsrc.c: (_do_init), (gst_fdsrc_class_init),
19911         (gst_fdsrc_init), (gst_fdsrc_dispose), (gst_fdsrc_set_property),
19912         (gst_fdsrc_uri_get_type), (gst_fdsrc_uri_get_protocols),
19913         (gst_fdsrc_uri_get_uri), (gst_fdsrc_uri_set_uri),
19914         (gst_fdsrc_uri_handler_init):
19915         * gst/elements/gstfdsrc.h:
19916           Port fd:// URI handler from 0.8 to fdsrc
19917
19918 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19919
19920         * gst/gstvalue.c: (gst_value_transform_fourcc_string),
19921         (gst_value_serialize_fourcc):
19922         * gst/gstvalue.h:
19923           Drop leading '%' from GST_FOURCC_FORMAT, thus making it
19924           consistent with our other format defines (#320324).
19925
19926 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19927
19928         * gst/gstvalue.c: (gst_value_is_fixed):
19929           Revert previous commit. Value lists are by definition
19930           not fixed, as they are a list of possible values.
19931
19932 2005-11-21  Andy Wingo  <wingo@pobox.com>
19933
19934         * gst/gstevent.h (GST_EVENT_FILLER): Removed. Can be added back
19935         during the stable series if we need it. Fixes #319178.
19936
19937         * gst/gstevent.c (gst_event_new_filler): Removed.
19938
19939         * check/gst/gstevent.c: Update comment about filler events.
19940
19941 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19942
19943         * gst/gstvalue.c: (gst_value_is_fixed):
19944           Should handle both value arrays and value lists.
19945
19946 2005-11-21  Andy Wingo  <wingo@pobox.com>
19947
19948         patch by: Alessandro Dessina <alessandro nnva org>
19949
19950         * gst/gstvalue.c (gst_value_is_fixed): Use gst_value_array
19951         functions to access arrays. Fixes #321962.
19952
19953 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19954
19955         * docs/gst/gstreamer.types:
19956           gst_collectpads_get_type => gst_collect_pads_get_type.
19957           
19958         * gst/base/gstbasetransform.c:
19959           Remove unused SIGNAL_HANDOFF enum.
19960
19961 2005-11-21  Andy Wingo  <wingo@pobox.com>
19962
19963         * gst/gstevent.h (GstEventTypeFlags): New data type, the flags of
19964         the event type (upstream, downstream, serialized). Renamed
19965         GST_EVDIR_* and GST_EVSER to GST_EVENT_TYPE_*.
19966         (GstEventType): Use GstEventTypeFlags. Rename CUSTOM_UP to
19967         CUSTOM_UPSTREAM, CUSTOM_DS to CUSTOM_DOWNSTREAM, etc.
19968
19969         * gst/gstevent.c: Update for new CUSTOM event names.
19970
19971         * check/gst/gstevent.c: Update check for new CUSTOM event names.
19972
19973         * gst/gstevent.h:
19974         * gst/gstevent.c (gst_event_type_get_flags): New function. Fixes
19975         bug #319392.
19976
19977 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19978
19979         * docs/gst/gstreamer-sections.txt:
19980         * win32/common/libgstbase.def:
19981         * win32/libgstbase.def:
19982         * gst/base/gstcollectpads.c: (gst_collect_pads_base_init),
19983         (gst_collect_pads_class_init), (gst_collect_pads_init),
19984         (gst_collect_pads_finalize), (gst_collect_pads_new),
19985         (gst_collect_pads_set_function), (gst_collect_pads_add_pad),
19986         (gst_collect_pads_remove_pad), (gst_collect_pads_is_active),
19987         (gst_collect_pads_collect), (gst_collect_pads_collect_range),
19988         (gst_collect_pads_start), (gst_collect_pads_stop),
19989         (gst_collect_pads_peek), (gst_collect_pads_pop),
19990         (gst_collect_pads_available), (gst_collect_pads_read),
19991         (gst_collect_pads_flush), (gst_collect_pads_event),
19992         (gst_collect_pads_chain):
19993         * gst/base/gstcollectpads.h:
19994           Rename gst_collecpads_foo() => gst_collect_pads_foo(). Document
19995           unimplemented functions as unimplemented. Add padding to
19996           GstCollectData. (#320766, #320423)
19997
19998 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
19999
20000         * gst/gstmessage.c:
20001           Improve docs for DURATION message (usage of duration parameter)
20002           (#320113)
20003
20004 2005-11-20  Wim Taymans  <wim@fluendo.com>
20005
20006         * check/Makefile.am:
20007         * check/gst/gstsegment.c: (GST_START_TEST), (gstevents_suite),
20008         (main):
20009         * gst/Makefile.am:
20010         * gst/gst.h:
20011         * gst/gstsegment.c: (gst_segment_init), (gst_segment_set_duration),
20012         (gst_segment_set_seek), (gst_segment_set_newsegment),
20013         (gst_segment_to_stream_time), (gst_segment_to_running_time),
20014         (gst_segment_clip):
20015         * gst/gstsegment.h:
20016         Added segment helper structure and methods. Not fully implemented
20017         yet.
20018         Added segment check.
20019
20020 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
20021
20022         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
20023           Add a deserialisation test for fractions
20024         * examples/metadata/read-metadata.c: (message_loop),
20025         (make_pipeline), (main):
20026           Fix up metadata reading sample.
20027         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
20028           Debug format fix
20029         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
20030           Don't try and fixate empty caps
20031         * gst/gst_private.h:
20032           Wrap in G_BEGIN_DECLS/G_END_DECLS
20033         * gst/gstvalue.c: (gst_value_collect_fraction),
20034         (gst_value_set_fraction), (gst_value_get_fraction_denominator),
20035         (gst_value_transform_string_fraction),
20036         (gst_value_compare_fraction):
20037           Add some extra guards to ensure that we don't end up 
20038           with an invalid denominator of 0 in a gstfraction and
20039           that fractions always get reduced.
20040
20041 2005-11-20  Wim Taymans  <wim@fluendo.com>
20042
20043         * docs/gst/gstreamer-sections.txt:
20044         * gst/gstbuffer.h:
20045         * gst/gstelement.c:
20046         * gst/gstformat.c:
20047         * gst/gstformat.h:
20048         * gst/gstindex.h:
20049         * gst/gstquery.c:
20050         * gst/gstquery.h:
20051         * gst/gstvalue.c:
20052         Doc fixes.
20053
20054 2005-11-20  Wim Taymans  <wim@fluendo.com>
20055
20056         * docs/design/part-TODO.txt:
20057         * gst/gstcaps.h:
20058         Make a proper enum of the flag.
20059
20060 2005-11-19  Wim Taymans  <wim@fluendo.com>
20061
20062         * docs/design/part-TODO.txt:
20063         * gst/gstformat.c: (_gst_format_initialize), (gst_format_get_name),
20064         (gst_format_to_quark), (gst_format_register):
20065         * gst/gstformat.h:
20066         * gst/gstquery.c: (_gst_query_initialize),
20067         (gst_query_type_get_name), (gst_query_type_to_quark),
20068         (gst_query_type_register):
20069         * gst/gstquery.h:
20070         Add type to quark and type to string conversions.
20071
20072 2005-11-19  Andy Wingo  <wingo@pobox.com>
20073
20074         * gst/gstbuffer.h (GST_BUFFER_FLAG_ORIGINAL): Removed. Fixes
20075         #320097.
20076
20077 2005-11-19  Wim Taymans  <wim@fluendo.com>
20078
20079         * docs/design/part-TODO.txt:
20080         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_provide_clock_func),
20081         (gst_bin_add_func), (gst_bin_remove_func), (bin_bus_handler),
20082         (gst_bin_handle_message_func):
20083         * gst/gstbin.h:
20084         Make message handling overridable.
20085
20086 2005-11-19  Andy Wingo  <wingo@pobox.com>
20087
20088         * gst/gstpad.h (GST_PAD_IS_USABLE): Removed. Fixes #321235.
20089
20090         * gst/gstclock.h:
20091         * gst/gstclock.c (GstClock, GstClockClass): Change resolution to
20092         be a GstClockTime.
20093         (gst_clock_set_resolution, gst_clock_get_resolution): Resolution
20094         is a GstClockTime. Fixes #321710.
20095
20096         * gst/gstclock.h (GstClock): Remove offset property. Add
20097         internal_calibration and external_calibration. Fix padding. Pad
20098         also by GstClockTime so we don't run into problems.
20099
20100         * gst/gstclock.c (gst_clock_set_rate_offset): Remove.
20101         (gst_clock_get_rate_offset): Remove.
20102         (gst_clock_set_time_adjust): Remove. Fixes #321712.
20103
20104         * gst/gstutils.h:
20105         * gst/gstutils.c (g_static_rec_cond_wait)
20106         (g_static_rec_cond_timed_wait): Removed, no longer needed.
20107
20108         * gst/gstbin.c: Remove terrible continue_state prototype.
20109
20110         * gst/gstelement.h (gst_element_continue_state): Make public.
20111
20112         * gst/gstelement.h:
20113         * gst/gstelement.c (gst_element_commit_state): Removed, replaced
20114         by continue_state. Fixes #319389.
20115
20116         * gst/gstindex.h (GstIndexFilter): Actually pass on the user_data.
20117         Really fixes #168438. However I don't see anywhere where the
20118         filter function is called... stupid GStreamer...
20119         
20120         * gst/gstindex.h (GstIndex): Add field for user_data_destroy. We
20121         don't have a dispose function, so it won't get called when the
20122         object is unreffed, but oh well!
20123
20124         * gst/gstindex.c (gst_index_set_filter_full): New API function,
20125         allows a destroy function to be set so user_data can be freed.
20126         Fixes #168438.
20127         (gst_index_set_filter): Call gst_index_set_filter_full.
20128
20129         * check/gst/gstvalue.c (test_string): Add test for bug #165650.
20130
20131         * gst/gstvalue.c (gst_string_wrap): Trying to serialize a NULL
20132         string should produce an error, given the lack of a way to
20133         represent NULL strings. Fixes #165650.
20134         
20135         * gst/gstvalue.h: 
20136         * gst/gstvalue.c (gst_value_array_append_value) 
20137         (gst_value_array_prepend_value, gst_value_array_get_size) 
20138         (gst_value_array_get_value): New API, copied from
20139         gst_value_list_*, only operates on arrays.
20140         (gst_value_list_append_value, gst_value_list_prepend_value) 
20141         (gst_value_list_concat, gst_value_list_get_size) 
20142         (gst_value_list_get_value): Only operate on lists. Fixes #156633.
20143
20144         * gst/gstvalue.c (gst_value_init_list_or_array): Renamed from
20145         init_list, because it works on both.
20146         (copy_garray_of_gstvalue): Renamed from gst_value_list_copy_array.
20147         (gst_value_copy_list_or_array): Renamed from copy_list.
20148         (gst_value_free_list_or_array): Renamed from free_list.
20149         (gst_value_collect_list_or_array): Renamed from collect_list.
20150         (gst_value_lcopy_list_or_array): Renamed from lcopy_list.
20151         (gst_value_list_or_array_peek_pointer): Renamed from
20152         list_peek_pointer.
20153         (_gst_value_array_value_table, _gst_value_list_value_table):
20154         Update value table functions.
20155         (gst_value_compare_list_or_array): Renamed from compare_list.
20156
20157         * gsttaglist.h: Whoops, foreach function returns void. Also fix
20158         some constness.
20159
20160         * gst/gsttaglist.c:
20161         * gst/gsttaglist.h (gst_tag_list_foreach): Operates on a const
20162         GstTagList*. Fixes #143472.
20163
20164         * gst/gststructure.h: Clarify what the foreach/map functions can
20165         or can't do to their arguments.
20166
20167 2005-11-18  Wim Taymans  <wim@fluendo.com>
20168
20169         * gst/gstclock.c: (gst_clock_set_calibration),
20170         (gst_clock_get_calibration):
20171         Doc and API fixes.
20172         Calibration can be set with internal time equal to current
20173         internal time too.
20174
20175 2005-11-18  Thomas Vander Stichele  <thomas at apestaart dot org>
20176
20177         * gst/gsterror.c:
20178         * gst/gsterror.h:
20179           document
20180
20181 2005-11-18  Andy Wingo  <wingo@pobox.com>
20182
20183         * configure.ac: 
20184         * pkgconfig/gstreamer-net.pc.in:
20185         * pkgconfig/gstreamer-net-uninstalled.pc.in:
20186         * pkgconfig/Makefile.am: Add net pkgconfig files.
20187
20188 2005-11-18  Stefan Kost  <ensonic@users.sf.net>
20189
20190         * gst/gstcaps.c:
20191         * gst/gstghostpad.c:
20192         * gst/gsttrace.c:
20193         * gst/gstvalue.c:
20194         * gst/gstvalue.h:
20195           docs fixes
20196
20197 2005-11-18  Andy Wingo  <wingo@pobox.com>
20198
20199         * gst/net/gstnetclientclock.c: Turn off debugging.
20200
20201         * check/net/gstnetclientclock.c (test_functioning): Assert that the
20202         times connverge somewhat. Can't make a real test.
20203
20204         * gst/net/gstnetclientclock.c (do_linear_regression): Use all
20205         integer arithmetic. Return the minimum of the domain, which can be
20206         set as "internal" for gst_clock_set_calibration.
20207         (gst_net_client_clock_observe_times): Call _set_calibration.
20208         (gst_net_client_clock_new): Call _set_calibration instead of
20209         rate_offset.
20210
20211         * check/net/gstnetclientclock.c (test_functioning): Use the right
20212         adjustment api.
20213
20214         * gst/gstclock.h:
20215         * gst/gstclock.c (gst_clock_get_calibration) 
20216         (gst_clock_set_calibration): New functions, obsolete the ones I
20217         added yesterday. Doh. Precision issues mean we have to extrapolate
20218         from a point in the more recent past than 1970.
20219         (gst_clock_get_rate_offset, gst_clock_set_rate_offset): Mark as
20220         obsolete.
20221         (gst_clock_adjust_unlocked): Use the right calibration data.
20222
20223 2005-11-18  Edward Hervey  <edward@fluendo.com>
20224
20225         * gst/base/gstbasesink.c: (gst_base_sink_change_state): 
20226         Also reset the ->current_* values in READY->PAUSED
20227
20228 2005-11-18  Andy Wingo  <wingo@pobox.com>
20229
20230         * gst/net/gstnetclientclock.c (gst_net_client_clock_thread):
20231         Whoops, check the right fd. Also add some debugging.
20232         (gst_net_client_clock_observe_times): Adjust for int64 offset.
20233         (do_linear_regression): Add a crapload of debugging. Subtract off
20234         the minimum values from the input series to discard unneeded bits.
20235         Use only int arithmetic. There is still double arithmetic when
20236         calculating the intercept that needs fixing. Return boolean to
20237         indicate success; FALSE would mean the domain or range is too
20238         great. Still needs fixes.
20239
20240 2005-11-18  Wim Taymans  <wim@fluendo.com>
20241
20242         * gst/base/gstbasesink.c: (gst_base_sink_get_position):
20243         For the current position in stream time, we need to subtract
20244         accumulated time.
20245         
20246         * gst/gstsystemclock.c: (gst_system_clock_async_thread):
20247         Release lock before calling the callback function of async
20248         entries.
20249
20250 2005-11-18  Andy Wingo  <wingo@pobox.com>
20251
20252         * gst/net/gstnetclientclock.c (gst_net_client_clock_class_init):
20253         Port goes all the way to MAXUINT16.
20254
20255         * gst/net/gstnettimeprovider.c: Make the port range the same as
20256         for the kernel: 0 assigns, otherwise ports are less than
20257         MAXUINT16.
20258
20259         * check/net/gstnettimeprovider.c: Adapt for 0 == kernel assigns
20260         port change.
20261
20262         * check/net/gstnetclientclock.c (test_functioning): Add the start
20263         of another test. 
20264
20265 2005-11-18  Wim Taymans  <wim@fluendo.com>
20266
20267         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
20268         (gst_bin_remove_func), (bin_bus_handler):
20269         * gst/gstbin.h:
20270         Removing a clock provider from a bin, triggers a clock lost message
20271         so that a new clock will be selected.
20272         Adding a clock to a bin triggers a clock provider message.
20273         Make sure we reselect a clock when we received a clock lost message.
20274         Keep a reference to the element that provided the clock.
20275
20276 2005-11-18  Andy Wingo  <wingo@pobox.com>
20277
20278         * gst/net/gstnetclientclock.c (gst_net_client_clock_new): Adjust
20279         the clock initially so it produces values around the base time.
20280         (gst_net_client_clock_class_init): Typo fix.
20281         (gst_net_client_clock_thread): Add note on when the socket gets
20282         closed.
20283
20284 2005-11-17  Wim Taymans  <wim@fluendo.com>
20285
20286         * gst/net/gstnetclientclock.c: (gst_net_client_clock_finalize):
20287         Free remote and local time arrays.
20288
20289 2005-11-17  Wim Taymans  <wim@fluendo.com>
20290
20291         * gst/net/gstnetclientclock.c: (do_linear_regression),
20292         (gst_net_client_clock_do_select), (gst_net_client_clock_thread):
20293         Fix compilation, uninitialized vars and a forgotten continue.
20294
20295 2005-11-17  Andy Wingo  <wingo@pobox.com>
20296
20297         * check/Makefile.am (check_PROGRAMS): 
20298         * check/net/gstnetclientclock.c: Add a most minimal test for the
20299         net client clock. More to come later.
20300
20301         * gst/net/gstnet.h: 
20302         * gst/net/Makefile.am: Add netclientclock.
20303
20304         * gst/net/gstnetclientclock.h:
20305         * gst/net/gstnetclientclock.c: New files, implement an untested
20306         GstClock that takes its time from a network time provider.
20307         Implements the algorithm in network-clock.scm.
20308
20309         * tests/network-clock.scm (*window-size*): Rename from
20310         *queue-length*.
20311         * tests/network-clock.scm (network-time): 
20312         * tests/network-clock-utils.scm (q-push): Update callers.
20313
20314 2005-11-17  Wim Taymans  <wim@fluendo.com>
20315
20316         * gst/gstbin.c: (gst_bin_provide_clock_func),
20317         (gst_bin_sort_iterator_new):
20318         And unref the child too..
20319
20320 2005-11-17  Wim Taymans  <wim@fluendo.com>
20321
20322         * gst/gstbin.c: (gst_bin_dispose), (gst_bin_provide_clock_func),
20323         (gst_bin_sort_iterator_new), (gst_bin_iterate_sorted):
20324         Refactor the sort iterator so it can be used while holding the
20325         LOCK too.
20326         Make clock selection select a clock closest to the source.
20327
20328 2005-11-17  Michael Smith <msmith@fluendo.com>
20329
20330         * gst/gstclock.c: (gst_clock_init), (gst_clock_adjust_unlocked),
20331         (gst_clock_set_rate_offset), (gst_clock_get_rate_offset):
20332         * gst/gstclock.h:
20333           Anonymous structs are a gcc (and some other compilers) extension, so
20334           don't use them. Since this is only for ABI-compatibility, and our
20335           API/ABI freeze is over in a few days, this whole thing will only
20336           last a few days, so don't bother trying to think up a meaningful
20337           name for the struct.
20338
20339 2005-11-17  Andy Wingo  <wingo@pobox.com>
20340
20341         * gst/gstclock.h (GstClock): Add rate and offset properties,
20342         preserving ABI stability. Add rate/offset accessors. Will file bug
20343         for the freeze break.
20344
20345         * gst/gstclock.c (gst_clock_adjust_unlocked): Implement using rate
20346         and offset, trying to keep precision and avoiding
20347         underflow/overflow.
20348         (gst_clock_set_rate_offset, gst_clock_get_rate_offset): New
20349         functions. Make gst_clock_set_time_adjust obsolete.
20350         (gst_clock_set_time_adjust): Note that this function is obsolete.
20351         Will file bug soon.
20352
20353         * gst/base/gstbasetransform.h: Make the ABI-stability hack
20354         greppable by using GST_PADDING-1+1.
20355
20356 2005-11-17  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
20357
20358         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20359
20360         * gst/gstmessage.c: (gst_message_parse_clock_lost):
20361           Assertion should check for CLOCK_LOST, not NEW_CLOCK (#321648).
20362
20363         * gst/gstpadtemplate.h:
20364         * gst/gstpluginfeature.h:
20365           Don't use c++ style comments in headers (#321638).
20366
20367 2005-11-16  Andy Wingo  <wingo@pobox.com>
20368
20369         * gst/net/gstnettimepacket.c (gst_net_time_packet_send): Free
20370         buffer.
20371
20372         * check/net/gstnettimeprovider.c: Check to see that the time
20373         provider actually provides times. Works, yo!
20374
20375 2005-11-16  Wim Taymans  <wim@fluendo.com>
20376
20377         * check/Makefile.am:
20378         Enable more tests.
20379
20380         * check/elements/fakesrc.c: (GST_START_TEST):
20381         Set element to NULL before disposing it.
20382
20383 2005-11-16  Andy Wingo  <wingo@pobox.com>
20384
20385         * gst/net/Makefile.am:
20386         * gst/net/gstnet.h:
20387         * gst/net/gstnettimeprovider.c: 
20388         * gst/net/gstnettimeprovider.h: Use the timepacket stuff in the
20389         provider, include it from gstnet.h, and add it to the build.
20390
20391         * gst/net/gstnettimepacket.h: 
20392         * gst/net/gstnettimepacket.c: New files, abstracts out the packet
20393         sending and receiving.
20394
20395 2005-11-16  Wim Taymans  <wim@fluendo.com>
20396
20397         * check/Makefile.am:
20398         Enable valgrind check.
20399
20400         * gst/elements/gstfakesrc.c: (gst_fake_src_alloc_parent),
20401         (gst_fake_src_alloc_buffer):
20402         Fix memleak.
20403
20404 2005-11-16  Wim Taymans  <wim@fluendo.com>
20405
20406         * gst/net/gstnettimeprovider.c: (gst_net_time_provider_finalize):
20407         Call parent finalize too.
20408
20409 2005-11-16  Wim Taymans  <wim@fluendo.com>
20410
20411         * check/Makefile.am:
20412         Enable valgrind check that should work fine now.
20413
20414         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
20415         * gst/gstqueue.c: (gst_queue_init):
20416         Fix memleaks in pad allocation.
20417
20418 2005-11-16  Andy Wingo  <wingo@pobox.com>
20419
20420         * gst/net/Makefile.am:
20421         * gst/net/gstnet.h: New part of core to hold network elements and
20422         objects. Put in core because it exposes API that applications want
20423         to use. The library is named libgstnet-tempname right now because
20424         of the existing libgstnet in gst-plugins-base. Solution is
20425         probably to rename the one in plugins-base; will file a bug for
20426         the freeze break.
20427
20428         * gst/net/gstnettimeprovider.c: 
20429         * gst/net/gstnettimeprovider.h: New object to export a GstClock's
20430         get_time call over the network.
20431
20432         * configure.ac: 
20433         * gst/Makefile.am (lib_LTLIBRARIES): Add gstnet to the build.
20434
20435         * check/Makefile.am:
20436         * check/net/gstnettimeprovider.c: A most minimal test suite. Will
20437         get additions shortly.
20438
20439 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20440
20441         * gst/gstpad.c: (gst_pad_new_from_static_template):
20442         * gst/gstpad.h:
20443           add gst_pad_new_from_static_template functions
20444         * gst/check/gstcheck.c: (gst_check_setup_src_pad),
20445         (gst_check_setup_sink_pad):
20446         * gst/elements/gsttee.c: (gst_tee_init):
20447           and use them
20448
20449 2005-11-16  Wim Taymans  <wim@fluendo.com>
20450
20451         * gst/gstpad.c: (gst_pad_pause_task):
20452         Removed warning, it's not really an error either.
20453
20454 2005-11-16  Wim Taymans  <wim@fluendo.com>
20455
20456         * gst/base/gstbasetransform.c:
20457         (gst_base_transform_prepare_output_buf),
20458         (gst_base_transform_event):
20459         Check if the caps are NULL, this can happen if the element
20460         is shutting down and the pad caps are set to NULL.
20461
20462 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20463
20464         * gst/elements/gsttee.c: (gst_tee_init):
20465           fix pad template leak in tee
20466
20467 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20468
20469         * gst/glib-compat.c: (g_value_dup_gst_object):
20470         * gst/glib-compat.h:
20471         * gst/gstpad.c: (gst_pad_set_property):
20472           use gst_object_ref when setting the pad template; this will
20473           trigger the pad template leaks on GLib 2.6 and the slaves
20474
20475 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20476
20477         * gst/glib-compat.c: (gst_flags_get_first_value):
20478         * gst/glib-compat.h:
20479         * gst/gstregistryxml.c:
20480           remove functions copied from GLib 2.6
20481
20482 2005-11-16  Michael Smith <msmith@fluendo.com>
20483
20484         * gst/Makefile.am:
20485           Don't link against VALGRIND_LIBS. That was always the wrong thing to
20486           do, but only breaks with newer valgrind versions. We're not a
20487           valgrind tool, we have no link-time dependencies on libcoregrind.
20488
20489 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20490
20491         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
20492           some debug changes
20493         * gst/gstmessage.h:
20494           typo fixes
20495
20496 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20497
20498         * gst/base/gstbasesrc.c: (gst_base_src_init):
20499         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
20500         * gst/gstqueue.c: (gst_queue_init):
20501         * gst/gstregistryxml.c: (load_feature):
20502           Revert all these unrefs, they don't even pass make check !
20503
20504 2005-11-15  Johan Dahlin  <johan@gnome.org>
20505
20506         * gst/base/gstbasesrc.c: (gst_base_src_init):
20507         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
20508         * gst/gstqueue.c: (gst_queue_init): 
20509         Free pad templates, fixes a couple of leaks.
20510
20511 2005-11-15  Daniel Fischer  <dan at f3c dot com>
20512
20513         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
20514
20515         * gst/gstpad.c: (gst_pad_get_property):
20516           GST_PAD_PAD_TEMPLATE(pad) gets the pad template, while
20517           GST_PAD_TEMPLATE(pad) does a cast. We want the former here.
20518           (#321452)
20519
20520 2005-11-15  Wim Taymans  <wim@fluendo.com>
20521
20522         * gst/gstevent.c:
20523         Small doc update.
20524
20525 2005-11-15  Andy Wingo  <wingo@pobox.com>
20526
20527         * gst/gstelement.c (gst_element_set_base_time): Add debugging.
20528
20529         * gst/gstpipeline.c (gst_pipeline_set_new_stream_time): Document
20530         using GST_CLOCK_TIME_NONE to disable base time management.
20531         (do_pipeline_seek, gst_pipeline_change_state): Don't reset stream
20532         time if it was NONE before.
20533         (gst_pipeline_change_state): Only munge the base time if
20534         stream_time != GST_CLOCK_TIME_NONE.
20535
20536         * check/gst/gstpipeline.c (test_base_time): Punt around the
20537         problem of the probe not being called, because that's not the
20538         issue I'm looking at. Add a check that setting stream_time to NONE
20539         disables base time management.
20540         
20541 2005-11-15  Wim Taymans  <wim@fluendo.com>
20542
20543         * gst/base/gstbasesink.c: (gst_base_sink_change_state):
20544         segment_stop == -1 at startup.
20545
20546         * gst/base/gstbasetransform.c: (gst_base_transform_event),
20547         (gst_base_transform_change_state):
20548         Init segment values at start.
20549
20550 2005-11-15  Wim Taymans  <wim@fluendo.com>
20551
20552         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
20553         0 segment values are 0 in any format.
20554
20555         * gst/base/gstbasetransform.c: (gst_base_transform_event):
20556         * gst/base/gstbasetransform.h:
20557         Parse newsegment correctly in basetransform
20558
20559         * gst/elements/gstidentity.c: (gst_identity_transform_ip):
20560         Sync to clock using updated segment values.
20561
20562 2005-11-15  Andy Wingo  <wingo@pobox.com>
20563
20564         * check/gst/gstpipeline.c (test_base_time): Add check that the
20565         base time and stream time are reset correctly.
20566
20567 2005-11-15  Wim Taymans  <wim@fluendo.com>
20568
20569         * docs/design/part-TODO.txt:
20570         Some more TODO items.
20571
20572 2005-11-15  Andy Wingo  <wingo@pobox.com>
20573
20574         * gst/elements/gstfakesrc.c (gst_fake_src_create): It's not an
20575         error if the user selected "no clock" as the clocking method.
20576
20577         * check/gst/gstpipeline.c (test_base_time): New test for buffer
20578         timestamps with live capture.
20579
20580         * gst/elements/gstfakesrc.c (gst_fake_src_create): If the datarate
20581         is 0 but we are a live source, timestamp the buffers using the
20582         element's clock.
20583
20584 2005-11-14  Stefan Kost  <ensonic@users.sf.net>
20585
20586         * docs/gst/gstreamer-sections.txt:
20587         * gst/gsterror.c:
20588         * gst/gstghostpad.c:
20589         * gst/gstobject.h:
20590         * gst/gstxml.c:
20591           more section docs
20592
20593 2005-11-14  Wim Taymans  <wim@fluendo.com>
20594
20595         * common/gst.supp:
20596           add suppressions from Wim's Debian machine
20597
20598 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20599
20600         * common/gst.supp:
20601           add suppressions from Andy's AMD64 Ubuntu machine
20602
20603 2005-11-14  Andy Wingo  <wingo@pobox.com>
20604
20605         * gst/gstpad.c (gst_pad_set_active): Change docs; parent's
20606         STATE_LOCK not necessary. Fixes #311489.
20607
20608         * gst/gsterror.c (FILE_A_BUG): Be polite *and* helpful. Fixes
20609         #305291.
20610
20611         * gst/gstindex.c (gst_index_add_object): Note in the docs that
20612         this function is not implemented.
20613
20614 2005-11-14  Julien MOUTTE  <julien@moutte.net>
20615
20616         * gst/base/gstbasetransform.c:
20617         (gst_base_transform_prepare_output_buf):
20618         Ref the source pad caps while we need them.
20619         Fixes (#321386)
20620
20621 2005-11-11  Wim Taymans  <wim@fluendo.com>
20622
20623         * docs/gst/gstreamer-sections.txt:
20624         Added some docs for GstCollectData.
20625
20626         * gst/base/gstadapter.c:
20627         Some small code example fix.
20628
20629         * gst/base/gstcollectpads.c:
20630         * gst/base/gstcollectpads.h:
20631         Document some more.
20632
20633 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
20634
20635         * configure.ac: back to HEAD
20636
20637 === release 0.9.5 ===
20638
20639 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
20640
20641         * configure.ac:
20642           releasing 0.9.5, "Bike Lunch Day"
20643
20644 2005-11-11  Wim Taymans  <wim@fluendo.com>
20645
20646         * gst/gstbuffer.c: (_gst_buffer_copy):
20647         Copy more flags.
20648
20649         * gst/gstcaps.c: (gst_caps_is_equal):
20650         Fix some docs.
20651         Make _is_equal fast in the trivial cases.
20652
20653         * gst/gstminiobject.c:
20654         * gst/gstminiobject.h:
20655         More docs. Spifify .h file.
20656
20657         * gst/gstutils.c:
20658         Small doc update.
20659
20660 2005-11-11  Wim Taymans  <wim@fluendo.com>
20661
20662         * gst/base/gstbasetransform.c:
20663         (gst_base_transform_prepare_output_buf),
20664         (gst_base_transform_handle_buffer):
20665         Small cleanups.
20666         If we're processing a buffer and need to allocate an output
20667         buffer, we cannot accept a format change. If we did get a 
20668         format change, we have to alloc a buffer ourselves of the 
20669         right size.
20670
20671 2005-11-11  Wim Taymans  <wim@fluendo.com>
20672
20673         * gst/gstpad.c: (gst_pad_get_caps), (gst_pad_peer_get_caps):
20674         While checking the flag for reentrancy in the gstcaps function
20675         is nice to detect recursive invocations, it also makes it 
20676         impossible to call getcaps from multiple threads, which must be
20677         possible. So, checking for recursive calls has to go.
20678
20679 2005-11-11  Michael Smith <msmith@fluendo.com>
20680
20681         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
20682           Don't sync on buffers that fall partially outside our current
20683           segment. Prevents an assertion failure/abort playing some files.
20684
20685 2005-11-10  Andy Wingo  <wingo@pobox.com>
20686
20687         * check/gst/gstbin.c (test_message_state_changed_children): Style
20688         fix..
20689
20690         * gst/gstbus.c (poll_destroy, poll_func, gst_bus_poll): Implement
20691         gst_bus_poll with the signal watch. Ensures that poll and a signal
20692         watch see the same messages.
20693
20694         * check/gst/gstbus.c (test_watch_with_poll): New test, checks that
20695         a poll and a watch at the same time get the same messages.
20696
20697 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20698
20699         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps):
20700         * gst/gstcaps.c: (gst_caps_intersect):
20701           Don't call gst_caps_do_simplify - it doesn't respect order of caps
20702           and it's not needed.
20703
20704 2005-11-10  Wim Taymans  <wim@fluendo.com>
20705
20706         * docs/design/part-TODO.txt:
20707         Updated todo.
20708
20709 2005-11-10  Wim Taymans  <wim@fluendo.com>
20710
20711         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
20712         * gst/base/gstbasesrc.c: (gst_base_src_wait),
20713         (gst_base_src_do_sync), (gst_base_src_get_range):
20714         Implement clock sync in base class.
20715
20716 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
20717
20718         patch by: Tim-Philipp Müller <tim at centricular dot net>
20719
20720         * gst/gststructure.c: (gst_structure_parse_field),
20721         (gst_structure_from_string):
20722           Forward-port a 0.8 patch to handle escaped spaces in structure string,
20723           so that gst_parse_launch() can deal with spaces in filtered link
20724           caps (fixes #164479)
20725         * check/gst/capslist.h:
20726         * check/gst/gststructure.c: (GST_START_TEST):
20727           add unit tests for this change
20728
20729 2005-11-10  Wim Taymans  <wim@fluendo.com>
20730
20731         * docs/gst/gstreamer-sections.txt:
20732         * gst/gstelement.c:
20733         * gst/gstelement.h:
20734         Fix docs, move some STATE macros to private.
20735
20736 2005-11-10  Wim Taymans  <wim@fluendo.com>
20737
20738         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
20739         Added check for bug #317341
20740
20741         * gst/gstbuffer.c:
20742         * gst/gstbuffer.h:
20743         Some more spiffifying.
20744
20745         * gst/gstghostpad.c: (gst_ghost_pad_do_link):
20746         Call peer linkfunction if we are a source pad. Totally fixes
20747         #317341
20748
20749         * gst/gstpad.c:
20750         Update docs, source pads should call the peer linkfunction
20751         so they can atomically perform the pad link.
20752
20753 2005-11-09  Wim Taymans  <wim@fluendo.com>
20754
20755         * gst/gstbuffer.c:
20756         * gst/gstbuffer.h:
20757         Uber-spiffy-spiffify some more.
20758
20759 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
20760
20761         * gst/base/gstcollectpads.c: (gst_collectpads_add_pad):
20762         * gst/elements/gstfilesink.c: (gst_file_sink_init):
20763         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init):
20764         * gst/gstghostpad.c: (gst_ghost_pad_set_internal),
20765         (gst_ghost_pad_init), (gst_ghost_pad_new_notarget):
20766         * gst/gstpad.c: (gst_pad_init):
20767           Use GST_DEBUG_FUNCPTR() more extensively.
20768
20769 2005-11-09  Wim Taymans  <wim@fluendo.com>
20770
20771         * gst/gstobject.c: (gst_object_class_init):
20772         * gst/gstobject.h:
20773         Documentation fixes.
20774
20775 2005-11-09  Edward Hervey  <edward@fluendo.com>
20776
20777         * gst/gsttypefindfactory.c:
20778         Fix docs.
20779         
20780 2005-11-09  Edward Hervey  <edward@fluendo.com>
20781
20782         * gst/base/gsttypefindhelper.c:
20783         * gst/gsttypefind.c:
20784         * gst/gsttypefind.h:
20785         Fix docs.
20786
20787 2005-11-09  Wim Taymans  <wim@fluendo.com>
20788
20789         * gst/gstiterator.c:
20790         Fix revision data.
20791
20792         * gst/gsttask.c:
20793         * gst/gsttask.h:
20794         Fix docs.
20795
20796 2005-11-09  Wim Taymans  <wim@fluendo.com>
20797
20798         * gst/gstevent.h:
20799         * gst/gsturi.h:
20800         Fix docs.
20801
20802 2005-11-09  Wim Taymans  <wim@fluendo.com>
20803
20804         * docs/gst/gstreamer-sections.txt:
20805         Moved the message async delivery private lock and cond
20806         to the private section.
20807
20808         * gst/gstmessage.c:
20809         * gst/gstmessage.h:
20810         Fixed docs.
20811
20812 2005-11-09  Edward Hervey  <edward@fluendo.com>
20813
20814         * docs/gst/gstreamer-sections.txt:
20815         * gst/gsturi.c:
20816         * gst/gsturi.h:
20817         Document GstURIHandler
20818
20819 2005-11-09  Wim Taymans  <wim@fluendo.com>
20820
20821         * gst/gstiterator.c: (gst_iterator_fold), (gst_iterator_foreach),
20822         (gst_iterator_find_custom):
20823         * gst/gstiterator.h:
20824         Fix iterator docs.
20825
20826 2005-11-09  Wim Taymans  <wim@fluendo.com>
20827
20828         * gst/gstbin.h:
20829         Document another field.
20830
20831         * gst/gststructure.c:
20832         * gst/gststructure.h:
20833         Document.
20834
20835 2005-11-09  Wim Taymans  <wim@fluendo.com>
20836
20837         * gst/gstbin.h:
20838         Documented structs.
20839
20840 2005-11-09  Wim Taymans  <wim@fluendo.com>
20841
20842         * docs/gst/gstreamer-sections.txt:
20843         Added some new macros.
20844
20845         * gst/gstclock.c:
20846         * gst/gstclock.h:
20847         * gst/gstobject.h:
20848         Docs updates.
20849
20850 2005-11-09  Wim Taymans  <wim@fluendo.com>
20851
20852         * docs/design/part-TODO.txt:
20853         Some more items for the TODO
20854
20855         * gst/gstcaps.c:
20856         * gst/gstcaps.h:
20857         Document GstCaps.
20858
20859 2005-11-09  Andy Wingo  <wingo@pobox.com>
20860
20861         * gst/base/gstbasesink.c: Add the beginning of docs here -- have
20862         to work on something else now tho...
20863
20864         * gst/base/gstadapter.c: More adapter docs.
20865
20866         * gst/elements/gstfilesink.c (gst_file_sink_start) 
20867         (gst_file_sink_stop): New functions, replace the state change
20868         handler.
20869         (gst_file_sink_class_init): Hook up the start and stop functions.
20870         (gst_file_sink_base_init): Don't set the state change handler any
20871         more. It was a bit ugly too, being set from here...
20872         (gst_file_sink_get_property, gst_file_sink_set_property):
20873         Cleanups...
20874         (gst_file_sink_set_location): More robust check that doesn't call
20875         GST_STATE. Ugggggg.
20876
20877 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
20878
20879         * gst/base/gstbasetransform.c: (gst_base_transform_event):
20880           Hold STREAM_LOCK while pushing newsegment or tag events as well.
20881
20882 2005-11-08  Wim Taymans  <wim@fluendo.com>
20883
20884         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
20885         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
20886         (gst_base_sink_chain), (gst_base_sink_change_state):
20887         * gst/base/gstbasesink.h:
20888         * gst/base/gstbasesrc.h:
20889         * gst/gstelement.h:
20890         * gst/gstevent.h:
20891         Avoid excessive typechecking in macros.
20892
20893         * gst/gstminiobject.c: (gst_mini_object_get_type),
20894         (gst_mini_object_init), (gst_mini_object_new),
20895         (gst_mini_object_free):
20896         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
20897         (gst_object_finalize):
20898         Remove cruft code, optimize alloc_trace.
20899
20900 2005-11-07  Thomas Vander Stichele  <thomas at apestaart dot org>
20901
20902         * docs/faq/gst-uninstalled:
20903           fix up PS1 for systems that try to reset it
20904
20905 2005-11-07  Wim Taymans  <wim@fluendo.com>
20906
20907         * gst/base/gstbasesrc.c: (gst_base_src_init),
20908         (gst_base_src_get_range):
20909         Set the segment_end to -1 initially. Fixed typefind.
20910
20911 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
20912
20913         * gst/base/gstadapter.c:
20914           Debug category should be 'adapter', not 'GstAdapter'.
20915           
20916         * gst/base/gstcollectpads.c: (gst_collectpads_base_init),
20917         (gst_collectpads_class_init), (gst_collectpads_init),
20918         (gst_collectpads_peek), (gst_collectpads_pop),
20919         (gst_collectpads_event), (gst_collectpads_chain):
20920           Add debug category and some debugging output. Use boilerplate
20921           macros. Remove some extraneous words from docs.
20922
20923 2005-11-05  Andy Wingo  <wingo@pobox.com>
20924
20925         * gst/base/gstpushsrc.c: Shorten by 30% via use of boilerplate
20926         macro.
20927
20928 2005-11-04  Stefan Kost  <ensonic@users.sf.net>
20929
20930         * docs/gst/gstreamer-sections.txt:
20931         * gst/gstcaps.h:
20932         * gst/gstinfo.c:
20933         * gst/gstminiobject.h:
20934         * gst/gstobject.h:
20935         * gst/gstutils.h:
20936           more docs added
20937
20938 2005-11-04  Wim Taymans  <wim@fluendo.com>
20939
20940         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
20941         Small update to stop at the configured segment_end
20942         position.
20943
20944 2005-11-04  Stefan Kost  <ensonic@users.sf.net>
20945
20946         * gst/gstregistry.c:
20947         * gst/gstregistry.h:
20948           added missing docs
20949
20950 2005-11-04  Edward Hervey  <edward@fluendo.com>
20951
20952         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
20953         Check if we are doing a segment seek and have arrived at the
20954         end of that segment.
20955
20956 2005-11-04  Wim Taymans  <wim@fluendo.com>
20957
20958         * gst/gstbus.c: (gst_bus_post), (gst_bus_set_sync_handler):
20959         Don't leak a mutex unlock in case of an error.
20960
20961         * gst/gstbus.h:
20962         Doc fixes.
20963
20964 2005-11-04  Wim Taymans  <wim@fluendo.com>
20965
20966         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_init),
20967         (gst_bus_post):
20968         Get the context to wake up only once.
20969
20970 2005-11-03  Wim Taymans  <wim@fluendo.com>
20971
20972         * check/states/sinks.c: (GST_START_TEST):
20973         Uncomment fixed check.
20974
20975         * docs/design/part-TODO.txt:
20976         Updated TODO.
20977
20978         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
20979         (gst_base_sink_handle_object), (gst_base_sink_do_sync),
20980         (gst_base_sink_get_position):
20981         If we are going to PLAYING, post the right pending state
20982         when we post the intermediate paused message.
20983
20984         * gst/gstelement.c: (gst_element_continue_state),
20985         (gst_element_set_state_func), (gst_element_change_state):
20986         Don't post state changes that were between the same state
20987         and were not ASYNC.
20988
20989 2005-11-03  Stefan Kost  <ensonic@users.sf.net>
20990
20991         * docs/gst/gstreamer-sections.txt:
20992         * gst/gstcaps.h:
20993         * gst/gstinfo.c:
20994         * gst/gstminiobject.h:
20995         * gst/gstobject.h:
20996         * gst/gstutils.h:
20997           more docs and doc style fixes
20998
20999 2005-11-03  Stefan Kost  <ensonic@users.sf.net>
21000
21001         * docs/gst/gstreamer-sections.txt:
21002         * gst/gstelement.c:
21003         * gst/gstminiobject.c:
21004         doc fixes
21005
21006 2005-11-03  Andy Wingo  <wingo@pobox.com>
21007
21008         * check/states/sinks.c (test_livesrc_sink): Add checks that the
21009         state-changed messages actually have the right order and the right
21010         values.
21011
21012 2005-11-03  Wim Taymans  <wim@fluendo.com>
21013
21014         * check/states/sinks.c: (GST_START_TEST), (gst_object_suite):
21015         Added some more checks. Specifically the case where NO_PREROLL
21016         elements are in the pipeline.
21017
21018         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
21019         (gst_base_sink_handle_object), (gst_base_sink_do_sync),
21020         (gst_base_sink_get_position):
21021         Post READY->PAUSED state change messages too.
21022         Fix bug where VOID was posted as pending state...
21023
21024         * gst/gstbin.c: (gst_bin_recalc_state):
21025         use _element_continue_state() to continue the state change.
21026
21027         * gst/gstelement.c: (gst_element_continue_state),
21028         (gst_element_commit_state), (gst_element_set_state_func),
21029         (gst_element_change_state), (gst_element_change_state_func):
21030         Lots of state change cleanups, assign the STATE_RETURN in
21031         a new continue_state() function that also propagates the
21032         last return value from a state change to the app.
21033         Update some debug statements with proper category.
21034
21035 2005-11-03  Wim Taymans  <wim@fluendo.com>
21036
21037         * docs/design/part-events.txt:
21038         * docs/design/part-gstpipeline.txt:
21039         * docs/design/part-messages.txt:
21040         * docs/design/part-overview.txt:
21041         * docs/design/part-seeking.txt:
21042         * docs/design/part-states.txt:
21043         * docs/design/part-trickmodes.txt:
21044         * docs/manual/advanced-position.xml:
21045         Small docs updates.
21046
21047         * gst/gstobject.h:
21048         People think !! is ugly, this looks better.
21049
21050         * gst/gstpad.c: (gst_pad_set_blocked_async):
21051         Remove !! since it's fixed elsewhere now.
21052
21053 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
21054
21055         * gst/gstminiobject.h:
21056         * gst/gstobject.h:
21057           Add !! to _FLAG_IS_SET macros to make the result boolean.
21058
21059 2005-11-03  Edward Hervey  <edward@fluendo.com>
21060
21061         * gst/gstpad.c: (gst_pad_set_blocked_async):
21062         comparing a flag and a gboolean rarely returns coherent results...
21063         Added two characters (!!) to make that work correctly.
21064         
21065 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
21066
21067         * gst/gstbus.c: (gst_bus_class_init):
21068           Fix some typos.
21069           
21070         * gst/gstqueue.c: (gst_queue_loop):
21071           Don't assume a miniobject that isn't a buffer is an
21072           event (it could be that there is a refcounting
21073           problem somewhere and the pointer is stale and
21074           refers to an already destroyed miniobject).
21075
21076 2005-11-03  Julien MOUTTE  <julien@moutte.net>
21077
21078         * gst/gstpad.c: (gst_pad_alloc_buffer): Fix some typos.
21079
21080 2005-11-03  Tim-Philipp Müller  <tim at centricular dot net>
21081
21082         * docs/manual/advanced-position.xml:
21083           Update seek example and explanations to current 0.9 API.
21084
21085         * gst/elements/gsttypefindelement.c:
21086         (gst_type_find_element_activate):
21087           Remove FIXME comment now that the found caps
21088           are unreffed.
21089
21090 2005-11-03  Thomas Vander Stichele  <thomas at apestaart dot org>
21091
21092         * gst/gstregistryxml.c: (load_feature):
21093           Add another GST_STR_NULL instance
21094
21095 2005-11-02  Edward Hervey  <edward@fluendo.com>
21096
21097         * gst/gstpad.c: (handle_pad_block):
21098         Follow-up to Wim's patch, solves deadlock for blocked and flushing pads
21099         
21100 2005-11-02  Wim Taymans  <wim@fluendo.com>
21101
21102         * gst/gstbin.c:
21103         Fix typo in docs.
21104
21105         * gst/gstelement.c: (gst_element_commit_state):
21106         Remove unused value.
21107
21108         * gst/gstiterator.c:
21109         Mention that the returned element is reffed in the docs.
21110
21111 2005-11-02  Wim Taymans  <wim@fluendo.com>
21112
21113         * gst/gstpad.c: (gst_pad_alloc_buffer), (handle_pad_block),
21114         (gst_pad_push), (gst_pad_push_event):
21115         Unlock blocked pads when they are flushed.
21116
21117 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21118
21119         * docs/README:
21120         * docs/gst/gstreamer-sections.txt:
21121         * gst/gstbin.c:
21122           doc updates
21123         * gst/gstregistry.c: (gst_registry_scan_path_level):
21124           fix for a nasty little missed situation where an installed plug-in
21125           which was in the cache did not get overridden by an uninstalled one
21126           which was earlier in the plugin path because the newly created plugin
21127           for the uninstalled one (not in the registry) didn't get its
21128           ->registered set to TRUE
21129
21130 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
21131
21132         * gst/base/gstcollectpads.c: (gst_collectpads_set_function),
21133         (gst_collectpads_add_pad), (gst_collectpads_remove_pad),
21134         (gst_collectpads_is_active), (gst_collectpads_collect),
21135         (gst_collectpads_collect_range), (gst_collectpads_start),
21136         (gst_collectpads_stop), (gst_collectpads_peek),
21137         (gst_collectpads_pop), (gst_collectpads_available),
21138         (gst_collectpads_read), (gst_collectpads_flush):
21139           Guard public API with assertions.
21140         
21141         * gst/gstpad.c:
21142           Fix docs for gst_pad_set_link_function().
21143
21144 2005-11-02  Johan Dahlin  <johan@gnome.org>
21145
21146         * gst/elements/gsttypefindelement.c (gst_type_find_element_activate): 
21147         Unref found_caps after we used it.
21148
21149 2005-11-02  Tim-Philipp Müller  <tim at centricular dot net>
21150
21151         * gst/base/gstcollectpads.c: (gst_collectpads_peek):
21152           Don't try to ref NULL.
21153
21154 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21155
21156         * win32/common/config.h.in:
21157           provide a GST_FUNCTION that just gives a string for now
21158
21159 2005-11-02  Thomas Vander Stichele  <thomas at apestaart dot org>
21160
21161         * win32/common/gstenumtypes.c: (register_gst_object_flags),
21162         (gst_object_flags_get_type), (register_gst_bin_flags),
21163         (gst_bin_flags_get_type), (register_gst_buffer_flag),
21164         (gst_buffer_flag_get_type), (register_gst_bus_flags),
21165         (gst_bus_flags_get_type), (register_gst_bus_sync_reply),
21166         (gst_bus_sync_reply_get_type), (register_gst_clock_return),
21167         (gst_clock_return_get_type), (register_gst_clock_entry_type),
21168         (gst_clock_entry_type_get_type), (register_gst_clock_flags),
21169         (gst_clock_flags_get_type), (register_gst_state),
21170         (gst_state_get_type), (register_gst_state_change_return),
21171         (gst_state_change_return_get_type), (register_gst_state_change),
21172         (gst_state_change_get_type), (register_gst_element_flags),
21173         (gst_element_flags_get_type), (register_gst_core_error),
21174         (gst_core_error_get_type), (register_gst_library_error),
21175         (gst_library_error_get_type), (register_gst_resource_error),
21176         (gst_resource_error_get_type), (register_gst_stream_error),
21177         (gst_stream_error_get_type), (register_gst_event_type),
21178         (gst_event_type_get_type), (register_gst_seek_type),
21179         (gst_seek_type_get_type), (register_gst_seek_flags),
21180         (gst_seek_flags_get_type), (register_gst_format),
21181         (gst_format_get_type), (register_gst_index_certainty),
21182         (gst_index_certainty_get_type), (register_gst_index_entry_type),
21183         (gst_index_entry_type_get_type),
21184         (register_gst_index_lookup_method),
21185         (gst_index_lookup_method_get_type), (register_gst_assoc_flags),
21186         (gst_assoc_flags_get_type), (register_gst_index_resolver_method),
21187         (gst_index_resolver_method_get_type), (register_gst_index_flags),
21188         (gst_index_flags_get_type), (register_gst_debug_level),
21189         (gst_debug_level_get_type), (register_gst_debug_color_flags),
21190         (gst_debug_color_flags_get_type), (register_gst_iterator_result),
21191         (gst_iterator_result_get_type), (register_gst_iterator_item),
21192         (gst_iterator_item_get_type), (register_gst_message_type),
21193         (gst_message_type_get_type), (register_gst_mini_object_flags),
21194         (gst_mini_object_flags_get_type), (register_gst_pad_link_return),
21195         (gst_pad_link_return_get_type), (register_gst_flow_return),
21196         (gst_flow_return_get_type), (register_gst_activate_mode),
21197         (gst_activate_mode_get_type), (register_gst_pad_direction),
21198         (gst_pad_direction_get_type), (register_gst_pad_flags),
21199         (gst_pad_flags_get_type), (register_gst_pad_presence),
21200         (gst_pad_presence_get_type), (register_gst_pad_template_flags),
21201         (gst_pad_template_flags_get_type), (register_gst_pipeline_flags),
21202         (gst_pipeline_flags_get_type), (register_gst_plugin_error),
21203         (gst_plugin_error_get_type), (register_gst_plugin_flags),
21204         (gst_plugin_flags_get_type), (register_gst_rank),
21205         (gst_rank_get_type), (register_gst_query_type),
21206         (gst_query_type_get_type), (register_gst_tag_merge_mode),
21207         (gst_tag_merge_mode_get_type), (register_gst_tag_flag),
21208         (gst_tag_flag_get_type), (register_gst_task_state),
21209         (gst_task_state_get_type), (register_gst_alloc_trace_flags),
21210         (gst_alloc_trace_flags_get_type),
21211         (register_gst_type_find_probability),
21212         (gst_type_find_probability_get_type), (register_gst_uri_type),
21213         (gst_uri_type_get_type), (register_gst_parse_error),
21214         (gst_parse_error_get_type):
21215         * win32/common/gstversion.h:
21216           update win32 copies
21217
21218 2005-11-01  Luca Ognibene  <luogni@tin.it>
21219
21220         * gst/gst.c:
21221           fix docs. popt is dead, long live GOption.
21222
21223 2005-10-31  Wim Taymans  <wim@fluendo.com>
21224
21225         * gst/gstbuffer.h:
21226         Small doc fix.
21227
21228 2005-10-31  Andy Wingo  <wingo@pobox.com>
21229
21230         * Boo!
21231
21232         * gst/gstqueue.c (gst_queue_chain): Fix downstream leaky mode.
21233
21234         * gst/gstobject.c (gst_object_dispatch_properties_changed): No
21235         need to serialize property notifications on GLib 2.8. GLib 2.6 has
21236         the possibility of deadlocks here if code calling notify() or
21237         set() has a lock that can be taken in another notify handler (ABBA
21238         with class lock and e.g. python GIL state lock).
21239
21240 2005-10-28  Julien MOUTTE  <julien@moutte.net>
21241
21242         * gst/gstbus.c: Doc updates.
21243
21244 2005-10-28  Wim Taymans  <wim@fluendo.com>
21245
21246         * docs/design/part-TODO.txt:
21247         * gst/gstiterator.c:
21248         * gst/gstsystemclock.c:
21249         * gst/gstsystemclock.h:
21250         Doc updates.
21251
21252 2005-10-28  Edward Hervey  <edward@fluendo.com>
21253
21254         * docs/gst/gstreamer-docs.sgml:
21255         * docs/gst/gstreamer-sections.txt:
21256         the GstURIType documentation page is private, it only defines GstURIType
21257         which should be defined in the GstURIHandler page
21258         
21259 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
21260
21261         * gst/gstbin.c: (gst_bin_class_init):
21262         * gst/gstbin.h:
21263         * gst/gstutils.c:
21264         Documentation updates.
21265
21266 2005-10-28  Wim Taymans  <wim@fluendo.com>
21267
21268         * docs/gst/gstreamer-sections.txt:
21269         * gst/gstclock.c:
21270         * gst/gstclock.h:
21271         Documented the clocks.
21272
21273 2005-10-28  Stefan Kost  <ensonic@users.sf.net>
21274
21275         * docs/gst/gstreamer-sections.txt:
21276           move some macros to private sections
21277         * gst/gstminiobject.c:
21278         * gst/gstminiobject.h:
21279           add descriptions provided by ds and some more
21280         * gst/gstpad.h:
21281           mark macro as to be removed
21282
21283 2005-10-28  Wim Taymans  <wim@fluendo.com>
21284
21285         * docs/design/part-TODO.txt:
21286         Add an item to TODO.
21287
21288         * gst/gstiterator.c: (gst_iterator_fold),
21289         (gst_iterator_find_custom):
21290         * gst/gstiterator.h:
21291         Add iterator docs.
21292
21293 2005-10-28  Wim Taymans  <wim@fluendo.com>
21294
21295         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
21296         (gst_base_transform_init):
21297         Don't leak class.
21298
21299         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_loop):
21300         An EOS event marks the queue as completely filled.
21301
21302 2005-10-27  Wim Taymans  <wim@fluendo.com>
21303
21304         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
21305         (gst_base_sink_do_sync), (gst_base_sink_get_position):
21306         Some more debugging.
21307
21308         * gst/base/gstbasetransform.c: (gst_base_transform_finalize),
21309         (gst_base_transform_init), (gst_base_transform_buffer_alloc),
21310         (gst_base_transform_event), (gst_base_transform_getrange),
21311         (gst_base_transform_chain):
21312         * gst/base/gstbasetransform.h:
21313         Fix debugging,
21314         Protect transform and concurrent buffer alloc with a new lock.
21315         Try not to break ABI/API.
21316
21317 2005-10-27  Wim Taymans  <wim@fluendo.com>
21318
21319         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
21320         (gst_base_src_init), (gst_base_src_query),
21321         (gst_base_src_default_newsegment),
21322         (gst_base_src_configure_segment), (gst_base_src_do_seek),
21323         (gst_base_src_send_event), (gst_base_src_event_handler),
21324         (gst_base_src_pad_get_range), (gst_base_src_loop),
21325         (gst_base_src_unlock), (gst_base_src_default_negotiate),
21326         (gst_base_src_start), (gst_base_src_deactivate),
21327         (gst_base_src_activate_push), (gst_base_src_change_state):
21328         Move some stuff around and cleanup things.
21329
21330 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
21331
21332         * gst/base/gstbasesrc.c: (gst_base_src_query):
21333           Add missing break statements.
21334
21335 2005-10-27  Wim Taymans  <wim@fluendo.com>
21336
21337         * check/gst/gstbin.c: (GST_START_TEST):
21338         An extra refcount is taken in basesrc.
21339
21340         * gst/base/gstbasesrc.c: (gst_base_src_init), (gst_base_src_query),
21341         (gst_base_src_get_range), (gst_base_src_pad_get_range),
21342         (gst_base_src_loop):
21343         Small cleanups, check for flushing after being unlocked from the 
21344         LIVE_LOCK. take refcounts correctly (not yet everywhere).
21345         Don't send out EOS when going to READY.
21346
21347 2005-10-27  Wim Taymans  <wim@fluendo.com>
21348
21349         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
21350         (gst_base_sink_get_position):
21351         Some more debug.
21352
21353         * gst/gstbin.c: (message_check), (bin_replace_message),
21354         (bin_remove_messages), (is_eos), (gst_bin_add_func),
21355         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
21356         (bin_query_duration_init), (bin_query_duration_fold),
21357         (bin_query_duration_done), (bin_query_generic_fold),
21358         (gst_bin_query):
21359         * tools/gst-launch.c: (main):
21360         Remove old option.
21361
21362 2005-10-26  Stefan Kost  <ensonic@users.sf.net>
21363
21364         * examples/controller/audio-example.c: (main):
21365         * examples/queue/queue.c: (event_loop):
21366         * gst/base/gstbasetransform.h:
21367         * gst/gstelement.c: (gst_element_send_event):
21368         * gst/gstevent.h:
21369         * gst/gstpad.c: (gst_pad_send_event):
21370           fixing examples
21371           fixing docs typos
21372           changing log priority in error situations
21373
21374 2005-10-25  Wim Taymans  <wim@fluendo.com>
21375
21376         * gst/gstbin.c: (message_check), (bin_replace_message),
21377         (bin_remove_messages), (is_eos), (gst_bin_add_func),
21378         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
21379         (bin_query_duration_init), (bin_query_duration_fold),
21380         (bin_query_duration_done), (bin_query_generic_fold),
21381         (gst_bin_query):
21382         Some doc and debug updates.
21383         Cache previously requested query DURATION for speed. invalidate
21384         cached duration if element posts a DURATION message.
21385
21386 2005-10-25  Wim Taymans  <wim@fluendo.com>
21387
21388         * docs/design/part-TODO.txt:
21389         Update TODO.
21390
21391         * gst/gstbin.c: (message_check), (bin_replace_message),
21392         (bin_remove_messages), (is_eos), (gst_bin_add_func),
21393         (update_degree), (gst_bin_sort_iterator_next), (bin_bus_handler),
21394         (bin_query_duration_init), (bin_query_duration_fold),
21395         (bin_query_duration_done), (bin_query_generic_fold),
21396         (gst_bin_query):
21397         Handle SEGMENT_START/DONE messages correctly.
21398         More evolved query algorithm that handles duration queries
21399         correctly.
21400
21401         * gst/gstelement.c: (gst_element_send_event), (gst_element_query),
21402         (gst_element_get_state_func), (gst_element_abort_state),
21403         (gst_element_commit_state), (gst_element_lost_state):
21404         Some more debugging.
21405
21406         * gst/gstmessage.h:
21407         Added doc.
21408
21409 2005-10-25  Wim Taymans  <wim@fluendo.com>
21410
21411         * gst/base/gstbasesink.c: (gst_base_sink_get_position):
21412         Don't use invalid stream_time.
21413
21414         * gst/gstevent.c: (gst_event_new_newsegment):
21415         stream_time in newsegment cannot be undefined.
21416
21417 2005-10-24  Wim Taymans  <wim@fluendo.com>
21418
21419         * gst/gstbus.c:
21420         Doc fix.
21421
21422         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
21423         (gst_queue_loop):
21424         Fix potential deadlock when QUEUE_LOCK is taken before STREAM_LOCK.
21425
21426 2005-10-24  Stefan Kost  <ensonic@users.sf.net>
21427
21428         * docs/libs/tmpl/gstdparam.sgml:
21429         * docs/libs/tmpl/gstdplinint.sgml:
21430         * docs/libs/tmpl/gstdpman.sgml:
21431         * docs/libs/tmpl/gstdpsmooth.sgml:
21432         * docs/libs/tmpl/gstunitconvert.sgml:
21433           these are obsolete
21434
21435 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
21436
21437         * configure.ac:
21438           back to HEAD
21439
21440 === release 0.9.4 ===
21441
21442 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21443
21444         * configure.ac:
21445           releasing 0.9.4, "Tyrannosaurus Rex"
21446
21447 2005-10-23  Tim-Philipp Müller  <tim at centricular dot net>
21448
21449         * gst/elements/gstfilesink.c: (gst_file_sink_do_seek),
21450         (gst_file_sink_get_current_offset):
21451           Use fseeko() and ftello() if available. When falling back on
21452           lseek() to get the current offset, fflush() first to make sure
21453           everything is up-to-date and we get the right offset.
21454
21455 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
21456
21457         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
21458         * gst/base/gstbasesrc.c: (gst_base_src_loop):
21459         * gst/gsterror.c: (_gst_stream_errors_init):
21460         * gst/gsterror.h:
21461         * gst/gstqueue.c: (gst_queue_loop):
21462         * po/POTFILES.in:
21463           remove prematurely added error category and clean up the instances
21464
21465 2005-10-21  Wim Taymans  <wim@fluendo.com>
21466
21467         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
21468         (gst_base_sink_get_position), (gst_base_sink_query),
21469         (gst_base_sink_change_state):
21470         Simply set the right flag when going to playing, that's all
21471         we need to do instead of calling a function inside the object
21472         lock (that could take the lock as well and deadlock)
21473
21474 2005-10-21  Wim Taymans  <wim@fluendo.com>
21475
21476         * gst/base/gstbasesrc.c: (gst_base_src_do_seek),
21477         (gst_base_src_loop):
21478         Don't warn, the peer element knows what to do best when
21479         the seek failed, it might try something else.
21480
21481 2005-10-21  Wim Taymans  <wim@fluendo.com>
21482
21483         * gst/base/gstbasesrc.c: (gst_base_src_init),
21484         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start):
21485         Fix seeking.
21486
21487 2005-10-21  Wim Taymans  <wim@fluendo.com>
21488
21489         * docs/design/part-segments.txt:
21490         More docs.
21491
21492         * gst/elements/gstcapsfilter.c: (gst_capsfilter_prepare_buf):
21493         Correctly set caps, even on the subbufer.
21494
21495 2005-10-21  Wim Taymans  <wim@fluendo.com>
21496
21497         * docs/gst/gstreamer-docs.sgml:
21498         * docs/gst/gstreamer-sections.txt:
21499         * gst/gstelement.h:
21500         * gst/gstevent.c:
21501         * gst/gstevent.h:
21502         * gst/gstmessage.h:
21503         * gst/gstpad.h:
21504         * gst/gstparse.h:
21505         * gst/gsttask.c: (gst_task_finalize), (gst_task_func):
21506         * gst/gsttask.h:
21507         * gst/gstutils.c:
21508         * gst/gstutils.h:
21509         And 2% more doc coverage.
21510
21511 2005-10-21  Andy Wingo  <wingo@pobox.com>
21512
21513         * gst/base/gstbasesrc.c (gst_base_src_query): Clean up percent
21514         position reporting.
21515
21516 2005-10-20  Wim Taymans  <wim@fluendo.com>
21517
21518         * gst/gsterror.c: (gst_error_get_message):
21519         * gst/gstparse.h:
21520         * gst/gstquery.h:
21521         * gst/gststructure.c:
21522         * gst/gsttrace.c:
21523         * gst/gstutils.c:
21524         More docs.
21525
21526 2005-10-20  Wim Taymans  <wim@fluendo.com>
21527
21528         * gst/gstbuffer.h:
21529         * gst/gstpad.c:
21530         * gst/gstparse.c:
21531         Another 1% more coverage.
21532
21533 2005-10-20  Wim Taymans  <wim@fluendo.com>
21534
21535         * docs/gst/gstreamer-sections.txt:
21536         * gst/gstelement.c: (gst_element_get_state_func),
21537         (gst_element_abort_state), (gst_element_commit_state),
21538         (gst_element_lost_state):
21539         * gst/gstevent.h:
21540         * gst/gstquery.c: (gst_query_set_position),
21541         (gst_query_parse_position), (gst_query_set_duration),
21542         (gst_query_parse_duration), (gst_query_new_convert):
21543         * gst/gstutils.c:
21544         Yay! 1% more docs coverage.
21545
21546 2005-10-20  Wim Taymans  <wim@fluendo.com>
21547
21548         * gst/gstpad.h:
21549         * gst/gstquery.c: (gst_query_set_position),
21550         (gst_query_parse_position), (gst_query_set_duration),
21551         (gst_query_parse_duration), (gst_query_new_convert):
21552         * gst/gstquery.h:
21553         * gst/gstutils.c: (gst_element_query_convert):
21554         * gst/gstutils.h:
21555         Docs and consistency fixes.
21556
21557 2005-10-20  Wim Taymans  <wim@fluendo.com>
21558
21559         * gst/gsttask.c:
21560         * gst/gsttask.h:
21561         More docs.
21562
21563 2005-10-20  Wim Taymans  <wim@fluendo.com>
21564
21565         * gst/gstbin.c: (message_check), (bin_replace_message),
21566         (bin_remove_messages), (is_eos), (gst_bin_add_func),
21567         (update_degree), (gst_bin_sort_iterator_next),
21568         (gst_bin_change_state_func), (gst_bin_dispose), (bin_bus_handler):
21569         Reworked the message handling a bit, cache the messages instead of
21570         only the senders. alows us to do more in the future.
21571
21572 2005-10-20  Wim Taymans  <wim@fluendo.com>
21573
21574         * docs/design/part-TODO.txt:
21575         Update TODO
21576
21577         * gst/base/gstbasesink.c: (gst_base_sink_get_position),
21578         (gst_base_sink_query):
21579         Don't use clock time to report position when in EOS.
21580
21581 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
21582
21583         * tools/gst-inspect.c: (print_interfaces),
21584         (print_element_properties_info), (print_element_info):
21585           Fix interface output with gst-inspect -a; don't print
21586           newlines after double/float properties.
21587
21588 2005-10-20  Wim Taymans  <wim@fluendo.com>
21589
21590         * gst/base/gstbasesink.c: (gst_base_sink_get_position),
21591         (gst_base_sink_query):
21592         Speed up current position calculation.
21593
21594         * gst/base/gstbasesrc.c: (gst_base_src_query),
21595         (gst_base_src_default_newsegment):
21596         Correctly set stream position in newsegment.
21597
21598         * gst/gstbin.c: (gst_bin_add_func), (add_to_queue),
21599         (update_degree), (gst_bin_sort_iterator_next),
21600         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free):
21601         * gst/gstmessage.c: (gst_message_new_custom):
21602         Clean up debugging info
21603
21604         * gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
21605         (gst_queue_loop), (gst_queue_handle_src_query):
21606         Pause task faster.
21607
21608 2005-10-19  Wim Taymans  <wim@fluendo.com>
21609
21610         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
21611         (gst_base_sink_handle_object), (gst_base_sink_query), (do_playing):
21612         Fix query handling again.
21613
21614 2005-10-19  Wim Taymans  <wim@fluendo.com>
21615
21616         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
21617         (gst_base_sink_handle_object), (gst_base_sink_query), (do_playing):
21618         * gst/base/gstbasesrc.c: (gst_base_src_query):
21619         * gst/elements/gstfilesink.c: (gst_file_sink_query):
21620         * gst/elements/gsttypefindelement.c:
21621         (gst_type_find_handle_src_query), (find_element_get_length),
21622         (gst_type_find_element_activate):
21623         API change fix.
21624
21625         * gst/gstquery.c: (gst_query_new_position),
21626         (gst_query_set_position), (gst_query_parse_position),
21627         (gst_query_new_duration), (gst_query_set_duration),
21628         (gst_query_parse_duration), (gst_query_set_segment),
21629         (gst_query_parse_segment):
21630         * gst/gstquery.h:
21631         Bundling query position/duration is not a good idea since duration
21632         does not change much and we don't want to recalculate it for every
21633         position query, so they are separated again..
21634         Base value in segment query is not needed.
21635
21636         * gst/gstqueue.c: (gst_queue_handle_src_query):
21637         * gst/gstutils.c: (gst_element_query_position),
21638         (gst_element_query_duration), (gst_pad_query_position),
21639         (gst_pad_query_duration):
21640         * gst/gstutils.h:
21641         Updates for query API change.
21642         Added some docs here and there.
21643
21644 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
21645
21646         * check/gst/gstbin.c: (GST_START_TEST):
21647         * check/gst/gstghostpad.c: (GST_START_TEST):
21648         * check/pipelines/cleanup.c: (GST_START_TEST):
21649           wait on thread to die so we can check refcount correctly
21650
21651 2005-10-18  Wim Taymans  <wim@fluendo.com>
21652
21653         * check/pipelines/stress.c: (GST_START_TEST):
21654         Make check a little more time consuming.
21655
21656 2005-10-18  Wim Taymans  <wim@fluendo.com>
21657
21658         * check/Makefile.am:
21659         * check/pipelines/stress.c: (GST_START_TEST),
21660         (simple_launch_lines_suite), (main):
21661         Small state change torture test.
21662
21663         * docs/design/part-states.txt:
21664         * gst/base/gstbasesink.c: (gst_base_sink_commit_state),
21665         (gst_base_sink_handle_object), (gst_base_sink_event), (do_playing),
21666         (gst_base_sink_change_state):
21667         Never take state lock from streaming thread, clean up ugly
21668         hacks. Unfortunatly core does not yet support nice ways to
21669         async commit state.
21670         
21671         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_recalc_state),
21672         (bin_bus_handler):
21673         Start state recalc if a STATE_DIRTY message is posted, but only
21674         on the toplevel bin.
21675
21676         * gst/gstelement.c: (gst_element_sync_state_with_parent),
21677         (gst_element_get_state_func), (gst_element_abort_state),
21678         (gst_element_commit_state), (gst_element_lost_state),
21679         (gst_element_set_state_func), (gst_element_change_state):
21680         * gst/gstelement.h:
21681         State variables are now protected with the LOCK, the state
21682         lock is only used to serialize _set_state().
21683
21684 2005-10-18  Wim Taymans  <wim@fluendo.com>
21685
21686         * check/gst/gstbin.c: (GST_START_TEST):
21687         * check/gst/gstmessage.c: (GST_START_TEST):
21688         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
21689         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_recalc_func),
21690         (bin_bus_handler):
21691         * gst/gstelement.c: (gst_element_abort_state),
21692         (gst_element_commit_state), (gst_element_lost_state):
21693         * gst/gstmessage.c: (gst_message_new_state_changed),
21694         (gst_message_new_state_dirty), (gst_message_new_segment_start),
21695         (gst_message_new_segment_done), (gst_message_new_duration),
21696         (gst_message_parse_state_changed),
21697         (gst_message_parse_segment_start),
21698         (gst_message_parse_segment_done), (gst_message_parse_duration):
21699         * gst/gstmessage.h:
21700         * tools/gst-launch.c: (event_loop):
21701         Seriously, this is better than a previous commit as we only need
21702         to notify the fact that an element changed state in a streaming
21703         thread, marking the state of the parents dirty, hence the 
21704         STATE_DIRTY message instead of abusing a boolean in a STATE_CHANGE
21705         message.
21706
21707 2005-10-18  Wim Taymans  <wim@fluendo.com>
21708
21709         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_get_state_func),
21710         (gst_bin_recalc_func):
21711         * gst/gstelement.c: (gst_element_set_clock),
21712         (gst_element_abort_state), (gst_element_lost_state):
21713         Cleanups, prepare for state change fixes.
21714
21715 2005-10-18  Wim Taymans  <wim@fluendo.com>
21716
21717         * gst/gstbin.h:
21718         * gst/gstelement.c: (gst_element_class_init),
21719         (gst_element_set_state), (gst_element_set_state_func):
21720         * gst/gstelement.h:
21721         Pending ABI changes.
21722         GThreadPool in GstBinClass to monitor async state changes.
21723         state_cookie in GstElement to detect concurrent gst/set state.
21724         set_state is now virtual too in case a very complicated element
21725         has to be constructed.
21726
21727 2005-10-18  Wim Taymans  <wim@fluendo.com>
21728
21729         * check/gst/gstbin.c: (GST_START_TEST):
21730         * check/gst/gstmessage.c: (GST_START_TEST):
21731         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
21732         * gst/gstbin.c: (bin_bus_handler):
21733         * gst/gstelement.c: (gst_element_commit_state),
21734         (gst_element_lost_state):
21735         * gst/gstmessage.c: (gst_message_new_state_changed),
21736         (gst_message_new_segment_start), (gst_message_new_segment_done),
21737         (gst_message_new_duration), (gst_message_parse_state_changed),
21738         (gst_message_parse_segment_start),
21739         (gst_message_parse_segment_done), (gst_message_parse_duration):
21740         * gst/gstmessage.h:
21741         * tools/gst-launch.c: (event_loop):
21742         Make messages future proof.
21743         state-change gets a flag if it was a message comming from the
21744         streaming thread.
21745         segment-start/stop can also be specified in other formats.
21746         A message to notify an app that a pipeline changed playback 
21747         duration.
21748         Also fix a GstMessage leak in -launch
21749
21750 2005-10-18  Andy Wingo  <wingo@pobox.com>
21751
21752         * gst/gstelement.c (gst_element_dispose): More helpful message.
21753
21754 2005-10-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21755
21756         reviewed by: <delete if not using a buddy>
21757
21758         * common/gtk-doc.mak:
21759
21760 2005-10-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21761
21762         * gst/gstregistry.c: (gst_registry_scan_path_level):
21763           unref a plug-in we get that was already initialized
21764
21765 2005-10-18  Stefan Kost  <ensonic@users.sf.net>
21766
21767         * docs/gst/gstreamer-sections.txt:
21768         * docs/libs/gstreamer-libs-sections.txt:
21769         * gst/gstelement.h:
21770           add new api entries
21771           hide internal macro
21772
21773 2005-10-17  Andy Wingo  <wingo@pobox.com>
21774
21775         * gst/base/gstcollectpads.c (gst_collectpads_chain): Slight
21776         cleanup.
21777
21778         * gst/Makefile.am (gstenumtypes.c): Threadsafe now.
21779
21780         * gst/gstevent.c (gst_event_new, gst_event_finalize): LOG.
21781
21782         * gst/gstelement.c (gst_element_get_state_func): s/INFO/DEBUG/.
21783         (gst_element_get_state_func): Better debug message.
21784         (gst_element_commit_state): s/INFO/DEBUG/.
21785         (gst_element_lost_state, gst_element_change_state): 
21786
21787         * gst/gstmessage.c (gst_message_init): s/INFO/LOG/.
21788         (gst_message_new_custom): s/INFO/LOG/.
21789
21790 2005-10-17  Michael Smith <msmith@fluendo.com>
21791
21792         * gst/base/gstbasesink.c: (gst_base_sink_do_sync):
21793           Check if end time is valid using end time, not start time.
21794
21795 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
21796
21797         * check/gst-libs/controller.c: (GST_START_TEST),
21798         (gst_controller_suite):
21799         * libs/gst/controller/gstcontroller.c:
21800         (gst_controlled_property_set_interpolation_mode):
21801         * libs/gst/controller/gstcontroller.h:
21802         * libs/gst/controller/gstinterpolation.c:
21803         * testsuite/controller/.cvsignore:
21804         * testsuite/controller/Makefile.am:
21805         * testsuite/controller/interpolator.c:
21806           merge controller testsuites
21807           fix broken tests
21808           remove mem-chunk from docs
21809
21810 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21811
21812         * gst/gstmemchunk.c:
21813         * gst/gstmemchunk.h:
21814         * gst/gsttrashstack.c:
21815         * gst/gsttrashstack.h:
21816           out.  get out.  you're fired.  to the Attic !
21817
21818 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21819
21820         * gst/gstcaps.c: (gst_caps_intersect):
21821           fix signedness issues in a (hopefully) correct way
21822         * gst/gstelement.c: (gst_element_pads_activate):
21823           some debugging
21824         * gst/gstobject.c: (gst_object_set_parent):
21825           some debugging
21826
21827 2005-10-17  Julien MOUTTE  <julien@moutte.net>
21828
21829         * gst/gstvalue.h: Fix prototypes.
21830
21831 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21832
21833         * docs/gst/gstreamer-sections.txt:
21834         * gst/gst.c: (gst_version_string):
21835         * gst/gst.h:
21836         * gst/gstversion.h.in:
21837         * win32/common/libgstreamer.def:
21838           add gst_version_string ()
21839
21840 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21841
21842         * configure.ac:
21843           clean up further
21844         * gst/gst.c: (init_post):
21845         * win32/common/config.h.in:
21846           it's PLUGINDIR now
21847         * gst/gstcaps.c: (gst_caps_intersect):
21848           use gint64, the range could be bigger than a guint
21849
21850 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21851
21852         * gst/gstclock.h:
21853           document potential problem in 2038
21854
21855 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21856
21857         * gst/gstcaps.c: (gst_caps_intersect):
21858           Fix guint j diving under 0
21859
21860 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21861
21862         * configure.ac:
21863         * win32/common/config.h:
21864         * win32/common/config.h.in:
21865           check for process.h, declares getpid() on Windows
21866         * gst/gstinfo.c:
21867           include process.h if we have it
21868         * gst/gstmemchunk.c: (populate), (gst_mem_chunk_new):
21869         * gst/gstmemchunk.h:
21870           fix signedness issues
21871         * win32/common/libgstreamer.def:
21872           fix get_type's
21873
21874 2005-10-16  Julien MOUTTE  <julien@moutte.net>
21875
21876         * gst/gstcaps.c: (gst_caps_intersect): Fix a bad bug with a simple
21877         fix. Because of unsigned ints, caps intersection was going nuts and
21878         trying to access structures with G_MAXUINT index. That fixes
21879         videotestsrc ! ffmpegcolorspace ! fakesink
21880         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked): logs
21881         consistency.
21882
21883 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21884
21885         * configure.ac:
21886           use the gettext macro
21887         * gst/elements/gstelements.c:
21888         * gst/gst.c:
21889         * gst/indexers/gstindexers.c:
21890           update for GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN
21891         * win32/common/config.h:
21892           updated config.h
21893         * win32/common/config.h.in:
21894           add the template to generate config.h
21895         * win32/common/gstenumtypes.c:
21896         * win32/common/gstversion.h:
21897           updated copies
21898
21899 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21900
21901         * gst/gst.c: (gst_version):
21902         * gst/gstversion.h.in:
21903           add the nano
21904
21905 2005-10-15  Tim-Philipp Müller  <tim at centricular dot net>
21906
21907         * gst/gstevent.h:
21908           Oops, add missing closing bracket.
21909
21910 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21911
21912         * configure.ac:
21913           use common m4's for argument checking
21914
21915 2005-10-15  Tim-Philipp Müller  <tim at centricular dot net>
21916
21917         * docs/gst/gstreamer-sections.txt:
21918         * gst/gstevent.h:
21919           Add GST_EVENT_TYPE_NAME() macro.
21920
21921 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21922
21923         * gst/gstinfo.c:
21924         * gst/gstpluginfeature.c:
21925         * gst/gsttask.c:
21926           privatize more symbols
21927
21928 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21929
21930         * configure.ac:
21931           add srcdir, builddir includes to GST_ALL_CFLAGS, since
21932           everything that uses GStreamer API should have the includes
21933
21934 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21935
21936         * docs/gst/gstreamer-sections.txt:
21937         * gst/gstvalue.c: (gst_date_get_type), (_gst_value_initialize):
21938         * gst/gstvalue.h:
21939           give each value a _get_type, removes the DATA exports
21940
21941 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21942
21943         * gst/gst.c:
21944         * gst/gst.h:
21945           remove _gst_registry_auto_load, not used anymore
21946         * gst/gstbin.c: (gst_bin_get_type):
21947         * gst/gstbin.h:
21948         * gst/gstelement.c: (gst_element_get_type):
21949         * gst/gstelement.h:
21950         * gst/gstobject.c: (gst_object_get_type):
21951         * gst/gstobject.h:
21952         * gst/gstpad.c: (gst_pad_get_type):
21953         * gst/gstpad.h:
21954           make _get_type functions similar, fixes data export from library
21955
21956 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21957
21958         * configure.ac:
21959           correctly make conditionals
21960         * gst/elements/Makefile.am:
21961         * gst/elements/gstelements.c:
21962           fix typo causing fdsrc not to build
21963
21964 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21965
21966         * testsuite/Makefile.am:
21967         * testsuite/bytestream/.cvsignore:
21968         * testsuite/bytestream/Makefile.am:
21969         * testsuite/bytestream/filepadsink.c:
21970         * testsuite/bytestream/gstbstest.c:
21971         * testsuite/bytestream/test1.c:
21972         * testsuite/bytestream/testfile1:
21973         * testsuite/caps/normalisation.c:
21974         * testsuite/caps/random.c: (main):
21975         * testsuite/cleanup/.cvsignore:
21976         * testsuite/cleanup/Makefile.am:
21977         * testsuite/cleanup/cleanup1.c:
21978         * testsuite/cleanup/cleanup2.c:
21979         * testsuite/cleanup/cleanup3.c:
21980         * testsuite/cleanup/cleanup4.c:
21981         * testsuite/cleanup/cleanup5.c:
21982         * testsuite/controller/interpolator.c:
21983         * testsuite/debug/printf_extension.c: (main):
21984         * testsuite/elements/tee.c:
21985         * testsuite/negotiation/.cvsignore:
21986         * testsuite/negotiation/Makefile.am:
21987         * testsuite/negotiation/pad_link.c:
21988         * testsuite/pad/Makefile.am:
21989         * testsuite/pad/chainnopull.c:
21990         * testsuite/pad/getnopush.c:
21991         * testsuite/pad/link.c:
21992         * testsuite/refcounting/sched.c: (create_pipeline):
21993         * testsuite/registry/Makefile.am:
21994         * testsuite/registry/gst-print-formats.c:
21995         * testsuite/schedulers/.cvsignore:
21996         * testsuite/schedulers/142183-2.c:
21997         * testsuite/schedulers/142183.c:
21998         * testsuite/schedulers/143777-2.c:
21999         * testsuite/schedulers/143777.c:
22000         * testsuite/schedulers/147713.c:
22001         * testsuite/schedulers/147819.c:
22002         * testsuite/schedulers/147894-2.c:
22003         * testsuite/schedulers/147894.c:
22004         * testsuite/schedulers/Makefile.am:
22005         * testsuite/schedulers/group_link.c:
22006         * testsuite/schedulers/queue_link.c:
22007         * testsuite/schedulers/relink.c:
22008         * testsuite/schedulers/unlink.c:
22009         * testsuite/schedulers/unref.c:
22010         * testsuite/schedulers/useless_iteration.c:
22011         * testsuite/states/bin.c:
22012           clean out/remove some stuff from the testsuite directories
22013
22014 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22015
22016         * configure.ac:
22017           check for some headers
22018         * gst/elements/Makefile.am:
22019         * gst/elements/gstelements.c:
22020           don't compile fdsrc without sys/socket.h
22021         * gst/indexers/Makefile.am:
22022         * gst/indexers/gstindexers.c: (plugin_init):
22023           don't compile fileindex without mmap
22024
22025 2005-10-15  Thomas Vander Stichele  <thomas at apestaart dot org>
22026
22027         * configure.ac:
22028           reorganize
22029           clean up
22030           document more
22031           remove cruft
22032         * check/Makefile.am:
22033         * docs/gst/Makefile.am:
22034         * examples/helloworld/Makefile.am:
22035         * gst/Makefile.am:
22036         * gst/base/Makefile.am:
22037         * gst/check/Makefile.am:
22038         * gst/elements/Makefile.am:
22039         * gst/indexers/Makefile.am:
22040         * gst/parse/Makefile.am:
22041         * libs/gst/controller/Makefile.am:
22042         * libs/gst/dataprotocol/Makefile.am:
22043         * examples/helloworld/helloworld.c: (event_loop):
22044           compile fixes, though it's not being compiled currently
22045
22046 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
22047
22048         * check/gst/gsttag.c: (test_date_tags), (gst_tag_suite):
22049           Add some simple tests for the new taglist date API.
22050
22051 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
22052
22053         * gst/elements/gstfakesink.c: (gst_fake_sink_render):
22054         * gst/elements/gstfakesrc.c: (gst_fake_src_create):
22055           Beautify 'last-message' output: print 'none' for buffer timestamps
22056           and durations if none is set; improve alignment with next messages.
22057
22058 2005-10-14  Tim-Philipp Müller  <tim at centricular dot net>
22059
22060         * gst/gstpluginfeature.c: (gst_plugin_feature_check_version):
22061         * gst/gstpluginfeature.h:
22062         * gst/gstregistry.c: (gst_default_registry_check_feature_version):
22063         * gst/gstregistry.h:
22064         * docs/gst/gstreamer-sections.txt:
22065           Add new API to check plugin feature version requirements.
22066
22067         * check/gst/gstplugin.c: (test_version_checks), (gst_plugin_suite):
22068           Some basic tests for the above.         
22069
22070 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22071
22072         * gst/gststructure.c: (gst_structure_to_string):
22073           guard against NULL printf - happens when for example
22074           a message structure with GstClock gets serialized
22075
22076 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
22077
22078         * gst/base/gstcollectpads.c: (gst_collectpads_event):
22079           Fix presumable copy'n'pasto.
22080
22081 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22082
22083         * gst/elements/gstfakesrc.h:
22084         * gst/elements/gstfilesrc.c: (gst_file_src_create_read):
22085         * gst/elements/gsttypefindelement.c:
22086           fix some signedness
22087         * gst/elements/gstfilesink.c: (gst_file_sink_render):
22088           I wonder if this could actually write +2GB files before
22089
22090 2005-10-13  Andy Wingo  <wingo@pobox.com>
22091
22092         * libs/gst/dataprotocol/dataprotocol.c (gst_dp_packet_from_caps):
22093         Fix Timmeke Waymans bug.
22094         (gst_dp_caps_from_packet): Make sure we pass a NUL-terminated
22095         string of the proper length to gst_caps_from_string. There's a
22096         potential for, before this fix, that this could cause someone
22097         connecting over the network to cause a segfault if the payload is
22098         not NUL-terminated.
22099
22100 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
22101
22102         * docs/design/draft-push-pull.txt:
22103         * docs/design/part-overview.txt:
22104         * docs/random/TODO-pre-0.9:
22105         * docs/random/old/ChangeLog.gstreamer:
22106         * gst/base/gstpushsrc.c:
22107         * gst/gstclock.c:
22108           fixed typos
22109
22110 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22111
22112         * gst/glib-compat.c: (gst_flags_get_first_value):
22113         * gst/glib-compat.h:
22114         * gst/gstvalue.c: (gst_value_deserialize_int_helper),
22115         (gst_value_compare_double), (gst_value_serialize_flags):
22116           GLib 2.6 g_flags_get_first_value has a bug that triggers an
22117           infinite loop
22118
22119 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22120
22121         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
22122         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
22123           fix up debugging
22124         * tools/gst-launch.c: (event_loop):
22125           print out clock nicely
22126
22127 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
22128
22129         * docs/gst/gstreamer-sections.txt:
22130         * gst/gsttaglist.h:
22131         * gst/gsttaglist.c: (_gst_tag_initialize), (gst_tag_list_get_date),
22132         (gst_tag_list_get_date_index):
22133           Added gst_tag_list_get_date() and gst_tag_list_get_date_index().
22134           GST_TAG_DATE now has a tag type of GST_TYPE_DATE (#170777).
22135
22136 2005-10-13  Julien MOUTTE  <julien@moutte.net>
22137
22138         * gst/base/gstcollectpads.c: (gst_collectpads_event),
22139         (gst_collectpads_chain):
22140         * gst/base/gstcollectpads.h: Handle newsegment and store informations
22141         in CollectData.
22142
22143 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
22144
22145         * docs/gst/gstreamer-sections.txt:
22146         * gst/gst.c:
22147         * gst/gsterror.h:
22148         * tools/gst-inspect.c: (main):
22149         * tools/gst-launch.c: (main):
22150         * tools/gst-run.c: (main):
22151         * tools/gst-xmlinspect.c: (main):
22152           fix GOption context leaks
22153           doc fixes
22154
22155 2005-10-13  Thomas Vander Stichele  <thomas at apestaart dot org>
22156
22157         * gst/gstbus.c:
22158           use HAVE_UNISTD_H
22159         * win32/common/config.h:
22160           update config
22161         * win32/vs6/grammar.dsp:
22162         * win32/vs6/libgstelements.dsp:
22163         * win32/vs6/libgstreamer.dsp:
22164           update vs6 files
22165
22166 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22167
22168         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
22169         * gst/base/gstbasesrc.c: (gst_base_src_query):
22170           fix more guint64<->gdouble conversions
22171
22172 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22173
22174         * Makefile.am:
22175           add win32-update target
22176         * win32/common/gstconfig.h:
22177         * win32/common/gstenumtypes.c:
22178         * win32/common/gstenumtypes.h:
22179         * win32/common/gstversion.h:
22180           add files that visual studio can't generate
22181
22182 2005-10-12  Thomas Vander Stichele  <thomas at apestaart dot org>
22183
22184         * Makefile.am:
22185           add a win32-update target
22186         * configure.ac:
22187
22188 2005-10-12  Wim Taymans  <wim@fluendo.com>
22189
22190         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
22191         (reset_degree), (gst_bin_dispose), (bin_bus_handler):
22192         * gst/gstelement.c: (gst_element_commit_state),
22193         (gst_element_set_state):
22194         Protect flags with proper lock.
22195         unref provided cached clock in dispose.
22196
22197 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
22198
22199         * gst/gst.c:
22200         * gst/gstminiobject.h:
22201         * gst/gstpad.h:
22202         * win32/gstenumtypes.c: (gst_mini_object_flags_get_type):
22203           removed unused flags from miniobject
22204           doc fixes
22205
22206 2005-10-12  Wim Taymans  <wim@fluendo.com>
22207
22208         * gst/elements/gstfilesink.c: (gst_file_sink_do_seek),
22209         (gst_file_sink_event), (gst_file_sink_render):
22210         Flush before seeking.
22211
22212 2005-10-12  Andy Wingo  <wingo@pobox.com>
22213
22214         * gst/gst.c (gst_init_check): Ignore unknown options, as has
22215         always been the case.
22216
22217 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
22218
22219         * check/gst/gstbin.c: (GST_START_TEST):
22220         * docs/gst/gstreamer-sections.txt:
22221         * gst/base/gstbasesink.c: (gst_base_sink_init):
22222         * gst/base/gstbasesrc.c: (gst_base_src_init),
22223         (gst_base_src_get_range), (gst_base_src_check_get_range),
22224         (gst_base_src_start), (gst_base_src_stop):
22225         * gst/base/gstbasesrc.h:
22226         * gst/elements/gstfakesrc.c: (gst_fake_src_set_property):
22227         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
22228         (bin_element_is_sink), (reset_degree), (gst_bin_element_set_state),
22229         (bin_bus_handler):
22230         * gst/gstbin.h:
22231         * gst/gstbuffer.h:
22232         * gst/gstbus.c: (gst_bus_post), (gst_bus_set_flushing):
22233         * gst/gstbus.h:
22234         * gst/gstelement.c: (gst_element_is_locked_state),
22235         (gst_element_set_locked_state), (gst_element_commit_state),
22236         (gst_element_set_state):
22237         * gst/gstelement.h:
22238         * gst/gstindex.c: (gst_index_init):
22239         * gst/gstindex.h:
22240         * gst/gstminiobject.h:
22241         * gst/gstobject.c: (gst_object_init), (gst_object_sink),
22242         (gst_object_set_parent):
22243         * gst/gstobject.h:
22244         * gst/gstpad.c: (gst_pad_set_blocked_async), (gst_pad_is_blocked),
22245         (gst_pad_get_caps_unlocked), (gst_pad_set_caps):
22246         * gst/gstpad.h:
22247         * gst/gstpadtemplate.h:
22248         * gst/gstpipeline.c: (gst_pipeline_provide_clock_func),
22249         (gst_pipeline_use_clock), (gst_pipeline_auto_clock):
22250         * gst/gstpipeline.h:
22251         * gst/indexers/gstfileindex.c: (gst_file_index_load),
22252         (gst_file_index_commit):
22253         * testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
22254         * testsuite/pad/link.c: (gst_test_src_init),
22255         (gst_test_filter_init), (gst_test_sink_init):
22256         * testsuite/states/locked.c: (main):
22257           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
22258           moved bitshift from macro to enum definition
22259
22260 2005-10-12  Wim Taymans  <wim@fluendo.com>
22261
22262         * gst/base/gstbasesink.c: (gst_base_sink_handle_buffer):
22263         * gst/elements/gstfilesink.c: (gst_file_sink_event),
22264         (gst_file_sink_render):
22265         Some more debugging info.
22266
22267 2005-10-12  Wim Taymans  <wim@fluendo.com>
22268
22269         * docs/design/part-states.txt:
22270         * tools/gst-launch.c: (main):
22271         Some doc updates.
22272         Revert non-intentional change.
22273
22274 2005-10-12  Wim Taymans  <wim@fluendo.com>
22275
22276         * check/gst/gstbin.c: (GST_START_TEST):
22277         * check/gst/gstelement.c: (GST_START_TEST):
22278         * check/gst/gstevent.c: (GST_START_TEST), (test_event):
22279         * check/gst/gstghostpad.c: (GST_START_TEST):
22280         * check/gst/gstpipeline.c: (GST_START_TEST):
22281         * check/pipelines/simple_launch_lines.c: (run_pipeline):
22282         * check/states/sinks.c: (GST_START_TEST):
22283         * gst/elements/gsttypefindelement.c: (stop_typefinding):
22284         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
22285         (gst_bin_remove_func), (gst_bin_get_state_func),
22286         (gst_bin_recalc_state), (gst_bin_change_state_func),
22287         (bin_bus_handler):
22288         * gst/gstelement.c: (gst_element_get_state_func),
22289         (gst_element_get_state), (gst_element_abort_state),
22290         (gst_element_commit_state), (gst_element_set_state),
22291         (gst_element_change_state), (gst_element_change_state_func):
22292         * gst/gstelement.h:
22293         * gst/gstpipeline.c: (gst_pipeline_class_init), (do_pipeline_seek),
22294         (gst_pipeline_provide_clock_func):
22295         * gst/gstutils.c: (gst_element_link_pads_filtered):
22296         * tools/gst-launch.c: (main):
22297         * tools/gst-typefind.c: (main):
22298         Use GstClockTime in _get_state() instead of GTimeVal.
22299         Remove old code in gstutils.c
22300
22301 2005-10-12  Andy Wingo  <wingo@pobox.com>
22302
22303         * gst/gstregistry.h (gst_registry_scan_paths): Not implemented, so
22304         removed.
22305
22306         * gst/gstpad.c (gst_pad_pause_task): Actually return FALSE if
22307         there is no task. Shouldn't affect any code, as nothing in our
22308         plugins checks this return value.
22309         (gst_pad_stop_task): Also take the stream lock if the pad has no
22310         task. Docs updated.
22311
22312 2005-10-12  Wim Taymans  <wim@fluendo.com>
22313
22314         * gst/gstpad.c: (pre_activate), (post_activate),
22315         (gst_pad_activate_pull), (gst_pad_activate_push):
22316         Cleanup activation code. Reset old state if
22317         activation failed.
22318
22319 2005-10-12  Wim Taymans  <wim@fluendo.com>
22320
22321         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22322         (gst_base_sink_change_state):
22323         No need to prerol after receiving EOS.
22324
22325         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
22326         * gst/elements/gstfakesrc.c: (gst_fake_src_event_handler):
22327         * gst/elements/gstidentity.c: (gst_identity_event):
22328         Print events more verbosely.
22329
22330 2005-10-12  Wim Taymans  <wim@fluendo.com>
22331
22332         * check/Makefile.am:
22333         * check/states/sinks.c: (GST_START_TEST), (gst_object_suite):
22334         * check/states/sinks2.c:
22335         Moved sinks2 testcode in sinks check.
22336
22337         * gst/gstbin.c: (gst_bin_provide_clock_func), (gst_bin_add_func),
22338         (gst_bin_remove_func), (gst_bin_recalc_state),
22339         (gst_bin_change_state_func), (bin_bus_handler):
22340         Fix potential race condition when _get_state() iterated over an
22341         ASYNC element right before it posted a state completion.
22342
22343         * gst/gstclock.h:
22344         Do proper cast here.
22345
22346         * gst/gstevent.c: (gst_event_new_newsegment),
22347         (gst_event_parse_newsegment):
22348         A playback rate of 0.0 is not allowed.
22349
22350 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22351
22352         * win32/common/config.h:
22353         * win32/common/dirent.c: (_topendir), (_treaddir), (_tclosedir),
22354         (_trewinddir), (_ttelldir), (_tseekdir):
22355         * win32/common/dirent.h:
22356         * win32/common/gtchar.h:
22357         * win32/common/libgstbase.def:
22358         * win32/common/libgstreamer.def:
22359         * win32/vs6/grammar.dsp:
22360         * win32/vs6/gst_inspect.dsp:
22361         * win32/vs6/gst_launch.dsp:
22362         * win32/vs6/gstreamer.dsw:
22363         * win32/vs6/libgstbase.dsp:
22364         * win32/vs6/libgstelements.dsp:
22365         * win32/vs6/libgstreamer.dsp:
22366           Visual Studio 6 project files, and a new common directory.
22367           Phear.
22368
22369 2005-10-11  Wim Taymans  <wim@fluendo.com>
22370
22371         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22372         (gst_base_sink_do_sync), (gst_base_sink_query),
22373         (gst_base_sink_change_state):
22374         * gst/base/gstbasesink.h:
22375         Correctly parse newsegment info.
22376
22377 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22378
22379         * gst/gst.c: (init_post):
22380           split plugin paths correctly
22381
22382 2005-10-11  Wim Taymans  <wim@fluendo.com>
22383
22384         * check/gst/gstevent.c: (GST_START_TEST):
22385         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22386         (gst_base_sink_change_state):
22387         * gst/base/gstbasesrc.c: (gst_base_src_default_newsegment):
22388         * gst/base/gstbasetransform.c: (gst_base_transform_event):
22389         * gst/elements/gstfilesink.c: (gst_file_sink_event):
22390         * gst/gstevent.c: (gst_event_new_newsegment),
22391         (gst_event_parse_newsegment):
22392         * gst/gstevent.h:
22393         Added extra flag to newsegment for future API freeze.
22394         Updated check and base elements.
22395
22396 2005-10-11  Julien MOUTTE  <julien@moutte.net>
22397
22398         * gst/base/gstcollectpads.c: (gst_collectpads_init),
22399         (gst_collectpads_add_pad), (gst_collectpads_pop),
22400         (gst_collectpads_event), (gst_collectpads_chain):
22401         * gst/base/gstcollectpads.h: Handle EOS correctly.
22402
22403 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22404
22405         * tools/gst-launch.c: (main):
22406           more null protecting
22407
22408 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22409
22410         * gst/gst-i18n-lib.h:
22411           check for ENABLE_NLS, not GETTEXT_PACKAGE
22412         * gst/gstregistry.c: (gst_registry_add_plugin),
22413         (gst_registry_scan_path_level),
22414         (_gst_registry_remove_cache_plugins):
22415           protect possibly NULL strings
22416         * gst/parse/types.h:
22417           config.h already included before
22418         * tools/gst-inspect.c: (main):
22419           sys/wait.h also doesn�t exist on mingw, so change the ifdef check
22420           check for ENABLE_NLS, not GETTEXT_PACKAGE
22421         * tools/gst-launch.c: (main):
22422           check for ENABLE_NLS, not GETTEXT_PACKAGE
22423
22424 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22425
22426         * configure.ac:
22427           if we don't have glib, fail before testing 2.8
22428         * gst/base/gstbasetransform.c: (gst_base_transform_change_state):
22429           fix a leak, should fix plugins-base testsuite
22430
22431 2005-10-11  Andy Wingo  <wingo@pobox.com>
22432
22433         * gst/gstpad.c (pre_activate): Renamed from pre_activate_switch,
22434         take the mode we're going to as an arg. Go head and set the mode
22435         and flushing flags now, so that if the activate function starts a
22436         thread all the flags will be in the right state.
22437         (post_activate): Renamed also. Just handle making sure streaming
22438         finishes for the deactivation case, and setting the deactivated
22439         mode.
22440         (gst_pad_set_active): Complain loudly if deactivation fails.
22441         (gst_pad_activate_pull): Adapt to pre/post_activate changes.
22442         (gst_pad_activate_push): Adapt to pre/post_activate changes,
22443         remove the terrible hack.
22444
22445 2005-10-11  Wim Taymans  <wim@fluendo.com>
22446
22447         * gst/gstbin.c: (gst_bin_init), (gst_bin_provide_clock_func),
22448         (is_eos), (gst_bin_add_func), (gst_bin_remove_func),
22449         (gst_bin_recalc_state), (gst_bin_change_state_func),
22450         (gst_bin_dispose), (bin_bus_handler):
22451         * gst/gstbin.h:
22452         Prepare to make current EOS message queue more generic.
22453         Fix some typos.
22454
22455         * gst/gstevent.c: (gst_event_new_newsegment),
22456         (gst_event_parse_newsegment):
22457         * gst/gstevent.h:
22458         Rename base to stream_time.
22459
22460         * gst/gstmessage.h:
22461         Fix typo in docs.
22462
22463 2005-10-11  Wim Taymans  <wim@fluendo.com>
22464
22465         * gst/gstbin.c: (gst_bin_init), (gst_bin_provide_clock_func),
22466         (gst_bin_add_func), (gst_bin_remove_func), (gst_bin_recalc_state),
22467         (gst_bin_change_state_func), (bin_bus_handler):
22468         * gst/gstbin.h:
22469         Work on proper clock selection.
22470
22471 2005-10-11  Edward Hervey  <edward@fluendo.com>
22472
22473         * libs/gst/controller/gstcontroller.c: (gst_controller_remove_properties_list): 
22474         * libs/gst/controller/gstcontroller.h:
22475         Added GList* version of _remove_properties() in order to be able to wrap
22476         it in bindings.
22477
22478 2005-10-11  Wim Taymans  <wim@fluendo.com>
22479
22480         * docs/design/part-states.txt:
22481         Some more docs.
22482
22483         * gst/gstbin.c: (gst_bin_set_clock_func), (gst_bin_recalc_state),
22484         (gst_bin_change_state_func), (bin_bus_handler):
22485         Doc updates. Don't distribute the same clock over and over again.
22486
22487         * gst/gstclock.c:
22488         * gst/gstclock.h:
22489         Doc updates.
22490
22491         * gst/gstpad.c: (gst_flow_get_name), (gst_flow_to_quark),
22492         (gst_pad_get_type), (gst_pad_push), (gst_pad_push_event),
22493         (gst_pad_send_event):
22494         * gst/gstpad.h:
22495         Make probe emission threadsafe again.
22496         Register quarks and move _get_name() from utils.
22497         Doc updates.
22498
22499         * gst/gstpipeline.c: (gst_pipeline_class_init),
22500         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
22501         Only redistribute the clock of it changed.
22502
22503         * gst/gstsystemclock.h:
22504         Doc updates. 
22505
22506         * gst/gstutils.c:
22507         * gst/gstutils.h:
22508         Moved the _flow_get_name() to GstPad.
22509
22510 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22511
22512         * check/gst-libs/gdp.c: (GST_START_TEST):
22513         * check/gst/gstcaps.c: (GST_START_TEST):
22514         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
22515         (gst_dp_dump_byte_array), (gst_dp_header_from_buffer),
22516         (gst_dp_packet_from_caps):
22517           fix more valgrind warnings before turning up the heat
22518
22519 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
22520
22521         * gst/parse/grammar.y:
22522           some cleanup before the hacking
22523
22524 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
22525
22526         * gst/base/gstbasesrc.c: (gst_base_src_query):
22527           use conversions
22528         * gst/gstutils.c: (gst_guint64_to_gdouble),
22529         (gst_gdouble_to_guint64), (gst_util_uint64_scale):
22530         * gst/gstutils.h:
22531           externalize, basesrc uses it
22532           obviously the implementation needs testing
22533
22534 2005-10-10  Wim Taymans  <wim@fluendo.com>
22535
22536         * tests/sched/Makefile.am:
22537         * tests/sched/sort.c: (make_pipeline1), (make_pipeline2),
22538         (make_pipeline3), (make_pipeline4), (print_elem), (main):
22539
22540 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
22541
22542         * gst/gstutils.c: (guint64_to_gdouble), (gst_util_uint64_scale):
22543           apparently converting from guint64 to double is not implemented
22544           on MSVC
22545
22546 2005-10-10  Wim Taymans  <wim@fluendo.com>
22547
22548         * check/Makefile.am:
22549         * check/generic/states.c: (GST_START_TEST):
22550         * check/gst/gstbin.c: (GST_START_TEST):
22551         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
22552         * check/states/sinks.c: (GST_START_TEST):
22553         * check/states/sinks2.c: (GST_START_TEST), (gst_object_suite),
22554         (main):
22555         Check fixes, use API as stated in design docs, remove hacks.
22556
22557         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22558         (gst_base_sink_change_state):
22559         Catch stopping our task while we're shutting down.
22560
22561         * gst/gstbin.c: (gst_bin_init), (gst_bin_add_func),
22562         (gst_bin_remove_func), (gst_bin_get_state_func),
22563         (gst_bin_recalc_state), (gst_bin_change_state_func),
22564         (bin_bus_handler):
22565         * gst/gstbin.h:
22566         * gst/gstelement.c: (gst_element_init),
22567         (gst_element_get_state_func), (gst_element_abort_state),
22568         (gst_element_commit_state), (gst_element_lost_state),
22569         (gst_element_set_state), (gst_element_change_state),
22570         (gst_element_change_state_func):
22571         * gst/gstelement.h:
22572         New state change algorithm (see #318116)
22573
22574         * gst/gstpipeline.c: (gst_pipeline_class_init),
22575         (gst_pipeline_init), (gst_pipeline_set_property),
22576         (gst_pipeline_get_property), (do_pipeline_seek),
22577         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func):
22578         * gst/gstpipeline.h:
22579         Remove crude state change hacks.
22580
22581         * gst/gstutils.h:
22582         Remove crude hacks.
22583
22584         * tools/gst-launch.c: (main):
22585         Fixes for state change. Needs some more work to fully use the
22586         new stuff.
22587
22588 2005-10-10  Andy Wingo  <wingo@pobox.com>
22589
22590         * tests/Makefile.am (noinst_PROGRAMS): No more init.c.
22591
22592         * gst/gst.c (G_OPTION_FLAG_NO_ARG): Apparently GLib 2.8 requires
22593         this flag, but it's not even in GLib 2.6. Odd. Hack around the
22594         issue.
22595
22596 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
22597
22598         * gst/gstiterator.c: (gst_iterator_new):
22599           Fix my previous commit: GTypes passed to gst_iterator_new()
22600           can be fundamental types.
22601
22602 2005-10-10  Wim Taymans  <wim@fluendo.com>
22603
22604         * gst/gstelement.c: (gst_element_iterate_pad_list),
22605         (gst_element_iterate_pads), (gst_element_iterate_src_pads),
22606         (gst_element_iterate_sink_pads):
22607         Use src/sink pads lists for the respective iterators instead
22608         of filtering.
22609
22610 2005-10-10  Andy Wingo  <wingo@pobox.com>
22611
22612         Merged in popt removal + GOption addition patch from Ronald, bug
22613         #169772.
22614
22615         * docs/gst/gstreamer-sections.txt: Add STATE_(UN)LOCK_FULL, move
22616         GstElement macros around, remove popt-related symbols, add goption
22617         stuff.
22618
22619         * configure.ac: Remove popt checks, require GLib 2.6 for GOption.
22620         
22621         * docs/gst/Makefile.am:
22622         * docs/libs/Makefile.am: No POPT_CFLAGS.
22623         
22624         * examples/manual/Makefile.am:
22625         * docs/manual/basics-init.xml: Doc updates with an example.
22626         
22627         * gst/gst.c: (gst_init_get_option_group), (gst_init_check),
22628         (gst_init), (parse_one_option), (parse_goption_arg):
22629         * gst/gst.h: Removed gst_init_with_popt_table and friends. Took a
22630         bit of hand merging and debugging to get the GOption stuff working
22631         tho.
22632         
22633         * tests/Makefile.am:
22634         * tools/Makefile.am:
22635         * tools/gst-inspect.c: (main):
22636         * tools/gst-launch.c: (main):
22637         * tools/gst-run.c: (main):
22638         * tools/gst-xmlinspect.c: (main): Thanks Ronald!
22639
22640 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
22641
22642         * gst/gstiterator.c: (gst_iterator_new):
22643           Add assertions to make sure passed GType is likely to really
22644           be a GType (as the compiler won't catch it if the size and
22645           GType arguments get mixed up, see #318447).
22646
22647 2005-10-10  Josef Zlomek  <josef dot zlomek at xeris dot cz>
22648
22649         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
22650
22651         * gst/gstbin.c: (gst_bin_iterate_sorted):
22652           Pass GType and size arguments to gst_iterator_new() in the right
22653           order (maybe we should make _new() take the GType as first argument
22654           just like _new_list()?) (#318447).
22655           
22656
22657 2005-10-10  Wim Taymans  <wim@fluendo.com>
22658
22659         * gst/gstelement.c: (gst_element_finalize):
22660         And free the GStaticRecMutex too
22661
22662 2005-10-10  Andy Wingo  <wingo@pobox.com>
22663
22664         * gst/gstelement.c (gst_element_init, gst_element_finalize):
22665         Allocate and free the mutex properly.
22666
22667         * gst/gstelement.h (GST_STATE_UNLOCK_FULL, GST_STATE_LOCK_FULL):
22668         New macros.
22669         (GstElement): The state_lock is now recursive. Rebuild your
22670         plugins, suckers. Old macros adapted.
22671
22672         * docs/gst/gstreamer-sections.txt: Doc updates.
22673
22674         * gst/gstutils.h:
22675         * gst/gstutils.c (g_static_rec_cond_timed_wait) 
22676         (g_static_rec_cond_wait): Ported from state changes patch, while
22677         we wait on bug #317802 to be solved in a well-distributed GLib.
22678
22679         * gst/gstelement.c (gst_element_change_state_func): Renamed from
22680         gst_element_change_state, variable name changes.
22681         (gst_element_change_state): Split out of gst_element_set_state in
22682         preparation for the state change merge. Doesn't pay attention to
22683         the 'transition' argument.
22684         (gst_element_set_state): Updates, hopefully purely cosmetic.
22685         (gst_element_sync_state_with_parent): MT-safety. Ported from the
22686         state change patch.
22687         (gst_element_get_state_func): Renamed from get_state, cosmetic
22688         changes.
22689
22690 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
22691
22692         * gst/elements/gstelements.c:
22693         * win32/GStreamer.vcproj:
22694         * win32/config.h:
22695         * win32/dirent.c: (_tseekdir):
22696         * win32/gst-inspect.vcproj:
22697         * win32/gst-launch.vcproj:
22698         * win32/gstconfig.h:
22699         * win32/gstelements.vcproj:
22700         * win32/gstenumtypes.c: (gst_object_flags_get_type):
22701         * win32/gstreamer.def:
22702         * win32/msvc71.sln:
22703           updates for the win32 build (patch from Sebastien Moutte)
22704
22705 2005-10-10  Andy Wingo  <wingo@pobox.com>
22706
22707         * gst/gstbin.c (gst_bin_get_state_func): Renamed from
22708         gst_bin_get_state, cleaned up (but no logic changes).
22709         (bin_element_is_sink): Comment updates.
22710         (sink_iterator_filter): Remove needless cast.
22711         (gst_bin_iterate_sinks): Doc update.
22712         (gst_bin_change_state_func): Renamed from gst_bin_change_state,
22713         cleaned up (but no logic changes).
22714
22715         * check/states/sinks.c (test_src_sink): Cleanups from the state
22716         change patch.
22717         (test_livesrc_sink): Sync on the state.
22718
22719         * check/pipelines/simple_launch_lines.c (run_pipeline): Merge from
22720         the state change patch.
22721
22722         * check/gst/gstghostpad.c (test_ghost_pads): Merge from the state
22723         change patch.
22724
22725         * check/gst/gstbin.c: Merge in some style fixes and additional
22726         checks from Wim's state change patch.
22727
22728 2005-10-10  Tim-Philipp Müller  <tim at centricular dot net>
22729
22730         * gst/base/gsttypefindhelper.c: (helper_find_peek),
22731         (gst_type_find_helper):
22732           Check whether we have the requested data already in our list of
22733           cached buffers before pulling a new buffer; also make the buffer
22734           list a GSList. Speeds up typefinding by ca. 5-10% altogether.
22735
22736 2005-10-10  Thomas Vander Stichele  <thomas at apestaart dot org>
22737
22738         * gst/gstcaps.c:
22739         * gst/gstevent.c:
22740           doc updates
22741         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
22742           don't use long long, it's not portable.  Replacing with
22743           gint64 seems to work; let's hope no skeletons fall out of the closet.
22744
22745 2005-10-10  Andy Wingo  <wingo@pobox.com>
22746
22747         * autogen.sh (CONFIGURE_DEF_OPT): No more --plugin-buiddir, yay
22748
22749 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
22750
22751         * docs/gst/gstreamer-sections.txt:
22752         * gst/gstevent.c:
22753         * gst/gstevent.h:
22754         * gst/gstinfo.c:
22755         * gst/gstinfo.h:
22756         * gst/gstmessage.c: (gst_message_parse_state_changed):
22757         * gst/gstpad.c:
22758         * gst/gstpad.h:
22759           more docs, fix compilation
22760
22761 2005-10-09  Philippe Khalaf <burger@speedy.org>
22762         * gst/gstmessage.c:
22763           Fixed a few forgotten variables on previous commit
22764
22765 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
22766
22767         * gst/base/gsttypefindhelper.c: (helper_find_peek):
22768           Fix evil typefind crasher: getrange() might return a short
22769           buffer at the end of a file, but gst_type_find_peek() must
22770           either return the full data as requested or NULL, but
22771           never a short buffer.
22772
22773 2005-10-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22774
22775         * gst/gstmessage.c: (gst_message_new_state_changed),
22776         (gst_message_parse_state_changed):
22777         * gst/gstmessage.h:
22778           don't use "new", it's a C++ keyword
22779
22780 2005-10-08  Wim Taymans  <wim@fluendo.com>
22781
22782         * gst/gstbin.c: (is_eos), (update_degree), (gst_bin_query):
22783         * gst/gstelement.c: (gst_element_post_message):
22784         * gst/gstpipeline.c: (gst_pipeline_change_state):
22785         Small docs and debug updates.
22786
22787 2005-10-08  Stefan Kost  <ensonic@users.sf.net>
22788
22789         * docs/gst/gstreamer-sections.txt:
22790         * gst/gstelementfactory.c:
22791         * gst/gstevent.c:
22792         * gst/gsttaglist.c:
22793           more docs
22794
22795 2005-10-08  Wim Taymans  <wim@fluendo.com>
22796
22797         * gst/gstbin.c: (is_eos), (update_degree), (gst_bin_change_state),
22798         (gst_bin_dispose), (bin_bus_handler):
22799         Fix typos, add comments.
22800         Clear EOS list when going to PAUSED from any direction and do it
22801         in a threadsafe way.
22802         Get base time in a threadsafe way too.
22803         Fix confusing debug in the change_state function.
22804         Various other small cleanups.
22805         
22806         * gst/gstelement.c: (gst_element_post_message):
22807         Fix very verbose bus posting code.
22808
22809         * gst/gstpipeline.c: (gst_pipeline_class_init),
22810         (gst_pipeline_set_property), (gst_pipeline_get_property),
22811         (gst_pipeline_change_state):
22812         Small ARG_ -> PROP_ cleanup
22813
22814 2005-10-08  Wim Taymans  <wim@fluendo.com>
22815
22816         * gst/gstbin.c: (is_eos), (bin_bus_handler):
22817         Do a less CPU demanding EOS check because we can.
22818
22819 2005-10-08  Wim Taymans  <wim@fluendo.com>
22820
22821         * libs/gst/dataprotocol/dataprotocol.c:
22822         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
22823         (gst_dp_packet_from_event):
22824         * libs/gst/dataprotocol/dataprotocol.h:
22825         * libs/gst/dataprotocol/dp-private.h:
22826         It's about time we bump the version number.
22827         Since event types don't fit in the guint8 anymore describing
22828         the payload type, make payload type 16 bits wide.
22829
22830 2005-10-08  Wim Taymans  <wim@fluendo.com>
22831
22832         * docs/design/part-TODO.txt:
22833         * docs/design/part-clocks.txt:
22834         * docs/design/part-events.txt:
22835         * docs/design/part-gstbin.txt:
22836         * docs/design/part-gstelement.txt:
22837         * docs/design/part-gstpipeline.txt:
22838         * docs/design/part-live-source.txt:
22839         * docs/design/part-messages.txt:
22840         * docs/design/part-overview.txt:
22841         * docs/design/part-states.txt:
22842         Many doc updates.
22843
22844 2005-10-08  Wim Taymans  <wim@fluendo.com>
22845
22846         * gst/gstevent.c:
22847         * gst/gstevent.h:
22848         Fix event quark registration.
22849         Add some space between events so we can insert them in the
22850         right groups.
22851
22852 2005-10-08  Wim Taymans  <wim@fluendo.com>
22853
22854         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22855         (gst_base_sink_handle_buffer):
22856         Better log message.
22857
22858         * gst/gstbus.h:
22859         * gst/gstelement.h:
22860         More docs.
22861
22862         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
22863         (gst_queue_set_property), (gst_queue_get_property):
22864         * gst/gstqueue.h:
22865         Remove old unused properties.
22866
22867 2005-10-08  Stefan Kost  <ensonic@users.sf.net>
22868         * docs/gst/gstreamer-sections.txt:
22869         * gst/gstmessage.c:
22870         * gst/gstmessage.h:
22871         * gst/gstminiobject.c:
22872         * gst/gstminiobject.h:
22873         * gst/gstobject.h:
22874         * gst/gstpad.h:
22875         * gst/gstutils.h:
22876           lots of new docs and doc fixes
22877
22878 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22879
22880         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_load_file):
22881         * gst/gstplugin.h:
22882         * gst/gstregistry.c: (gst_registry_lookup_locked),
22883         (gst_registry_scan_path_level):
22884         * gst/gstregistryxml.c: (load_plugin):
22885           Only ever load one plugin for a given plugin basename.
22886           This ensures correct overriding of GST_PLUGIN_PATH over
22887           GST_PLUGIN_SYSTEM_PATH and of home dir plugins over
22888           system installed plugins.
22889
22890 2005-10-08  Wim Taymans  <wim@fluendo.com>
22891
22892         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
22893         (gst_base_sink_do_sync), (gst_base_sink_handle_buffer):
22894         Prepare for doing QOS.
22895
22896 2005-10-08  Wim Taymans  <wim@fluendo.com>
22897
22898         * check/gst/gstbin.c: (GST_START_TEST):
22899         * check/pipelines/cleanup.c: (GST_START_TEST):
22900         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
22901         Allow new clock message too.
22902
22903 2005-10-08  Wim Taymans  <wim@fluendo.com>
22904
22905         * gst/gstmessage.c: (gst_message_new_error),
22906         (gst_message_new_warning), (gst_message_new_tag),
22907         (gst_message_new_state_changed), (gst_message_new_clock_provide),
22908         (gst_message_new_clock_lost), (gst_message_new_new_clock),
22909         (gst_message_new_segment_start), (gst_message_new_segment_done),
22910         (gst_message_parse_state_changed),
22911         (gst_message_parse_clock_provide), (gst_message_parse_clock_lost),
22912         (gst_message_parse_new_clock):
22913         * gst/gstmessage.h:
22914         Also carry the clock in question.
22915
22916 2005-10-08  Wim Taymans  <wim@fluendo.com>
22917
22918         * gst/gstmessage.c: (gst_message_new_custom),
22919         (gst_message_new_eos), (gst_message_new_error),
22920         (gst_message_new_warning), (gst_message_new_tag),
22921         (gst_message_new_state_changed), (gst_message_new_clock_provide),
22922         (gst_message_new_new_clock), (gst_message_new_segment_start),
22923         (gst_message_new_segment_done), (gst_message_parse_state_changed),
22924         (gst_message_parse_clock_provide), (gst_message_parse_new_clock):
22925         * gst/gstmessage.h:
22926         Clean up.
22927         Added clock related messages.
22928
22929         * gst/gstpipeline.c: (gst_pipeline_change_state):
22930         Post message when the clock changed.
22931
22932         * tools/gst-launch.c: (event_loop):
22933         Print new clock.
22934
22935 2005-10-08  Tim-Philipp Müller  <tim at centricular dot net>
22936
22937         * tools/gst-inspect.c: (print_element_properties_info):
22938           Can't pass NULL strings to g_print() on windows.
22939
22940 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22941
22942         * docs/Makefile.am:
22943         * docs/gst/Makefile.am:
22944         * docs/gst/gstreamer-docs.sgml:
22945         * docs/gst/running.xml:
22946         * docs/version.entities.in:
22947           add a chapter on running GStreamer.
22948           document GST_DEBUG and GST_PLUGIN* env vars
22949
22950 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22951
22952         * Makefile.am:
22953           remove include dir
22954         * configure.ac:
22955           remove PLUGINS_BUILDDIR stuff
22956         * gst/gst.c: (init_post):
22957           reorder parsing of GST_PLUGIN_PATH and GST_PLUGIN_SYSTEM_PATH
22958         * idiottest.mak:
22959           remove, it was condescending and not needed
22960
22961 2005-10-08  Wim Taymans  <wim@fluendo.com>
22962
22963         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_flush),
22964         (gst_base_sink_handle_object), (gst_base_sink_event),
22965         (gst_base_sink_wait), (gst_base_sink_handle_event),
22966         (gst_base_sink_change_state):
22967         * gst/base/gstbasesink.h:
22968         Repost EOS message while going to PLAYING if still EOS.
22969         Make sure that when receiving a FLUSH_START we don't attempt
22970         to sync on the clock anymore.
22971
22972 2005-10-08  Wim Taymans  <wim@fluendo.com>
22973
22974         * tools/gst-launch.c: (event_loop):
22975         Better message printout.
22976
22977 2005-10-08  Wim Taymans  <wim@fluendo.com>
22978
22979         * gst/gstbin.c: (gst_bin_child_proxy_get_child_by_index),
22980         (gst_bin_child_proxy_get_children_count):
22981         * gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
22982         (gst_child_proxy_lookup), (gst_child_proxy_get_property),
22983         (gst_child_proxy_get_valist), (gst_child_proxy_set_property),
22984         (gst_child_proxy_set_valist):
22985         * gst/parse/grammar.y:
22986         Make ChildProxy threadsafe and fix mem leaks.
22987
22988 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22989
22990         * gst/gst.c: (init_post):
22991           debug the GST_PLUGIN_ env vars
22992
22993 2005-10-08  Wim Taymans  <wim@fluendo.com>
22994
22995         * check/gst/gstbin.c: (GST_START_TEST):
22996         * check/gst/gstmessage.c: (GST_START_TEST):
22997         * check/gst/gstpipeline.c: (GST_START_TEST), (message_received):
22998         * gst/gstelement.c: (gst_element_commit_state),
22999         (gst_element_lost_state):
23000         * gst/gstmessage.c: (gst_message_new_state_changed),
23001         (gst_message_parse_state_changed):
23002         * gst/gstmessage.h:
23003         * tools/gst-launch.c: (event_loop):
23004         Added extra field to STATE_CHANGE message with the pending
23005         state, which will be different from the new state soon.
23006
23007 2005-10-08  Wim Taymans  <wim@fluendo.com>
23008
23009         * gst/gstbus.c: (gst_bus_pop):
23010         * gst/gstclock.c:
23011         * gst/gstsystemclock.c: (gst_system_clock_async_thread):
23012         Small cleanups and doc updates.
23013
23014 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
23015
23016         * gst/gst.c: (init_pre):
23017         * gst/gstbin.c: (gst_bin_add_func):
23018           log distributing clocks and base time
23019         * gst/gstregistry.c: (gst_registry_add_plugin),
23020         (gst_registry_scan_path_level), (gst_registry_scan_path):
23021           clean up the debugging output a little
23022         * gst/gstutils.c: (gst_element_state_get_name):
23023           warn about a memleak (I've actually seen this be used, though
23024           it was probably a bug)
23025
23026 2005-10-07  Wim Taymans  <wim@fluendo.com>
23027
23028         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
23029         (gst_base_src_init), (gst_base_src_default_newsegment),
23030         (gst_base_src_newsegment), (gst_base_src_do_seek),
23031         (gst_base_src_loop), (gst_base_src_start):
23032         * gst/base/gstbasesrc.h:
23033         Make the newsegment event customizable by subclasses.
23034
23035 2005-10-07  Wim Taymans  <wim@fluendo.com>
23036
23037         * gst/gstevent.c: (gst_event_new_buffersize),
23038         (gst_event_parse_buffersize):
23039         * gst/gstevent.h:
23040         New event for future idea.
23041
23042 2005-10-07  Andy Wingo  <wingo@pobox.com>
23043
23044         * gst/gstelement.c (gst_element_post_message): Doc update.
23045
23046         * docs/gst/gstreamer-sections.txt: Update.
23047
23048         * gst/gstmessage.c (gst_message_new_application): Made into a
23049         function like honest API calls.
23050         (gst_message_new_element): New message type.
23051
23052         * gst/gstmessage.h (enum): Add GST_MESSAGE_ELEMENT type.
23053
23054         * check/elements/fakesrc.c (test_no_preroll): New check, checks
23055         that setting a live fakesrc to PAUSED returns NO_PREROLL both
23056         times.
23057
23058         * gst/base/gstbasesrc.c (gst_base_src_change_state): Allow a
23059         NO_PREROLL from gst_element_change_state to fall through.
23060
23061 2005-10-07  Wim Taymans  <wim@fluendo.com>
23062
23063         * gst/gstghostpad.c: (gst_ghost_pad_get_internal),
23064         (gst_ghost_pad_do_activate_push):
23065         Activating a ghostpad with no internal pad in push mode
23066         is ok.
23067
23068 2005-10-07  Thomas Vander Stichele  <thomas at apestaart dot org>
23069
23070         * gst/gstobject.h:
23071           there's no point in wrapping FLAG_SET/_UNSET in STMT macros.
23072           Fixes compilation on Windows.
23073
23074 2005-10-07  Michael Smith <msmith@fluendo.com>
23075
23076         * tools/gst-inspect.c:
23077           Print out feature and plugin count at the end when printing out
23078           all features.
23079
23080 2005-10-04  Michael Smith <msmith@fluendo.com>
23081
23082         * gst/gsterror.c: (_gst_stream_errors_init):
23083           Add another error string used in a few existing plugins.
23084
23085         * gst/gstplugin.c:
23086         * gst/gstpluginfeature.c: (gst_plugin_feature_load):
23087         * tools/gst-inspect.c: (print_element_info):
23088           When a feature disappears from a plugin (and the feature exists in
23089           the cached registry file), things went horribly wrong. This isn't a
23090           complete fix, we should actually be removing the 'missing' features
23091           from the features list when we load the actual plugin. That's not
23092           yet implemented. 
23093
23094 2005-10-04  Johan Dahlin  <johan@gnome.org>
23095
23096         * check/gst/gstiterator.c: (GST_START_TEST):
23097         * gst/gstbin.c: (gst_bin_iterate_elements),
23098         (gst_bin_iterate_recurse), (gst_bin_iterate_sorted):
23099         * gst/gstelement.c: (gst_element_iterate_pads):
23100         * gst/gstformat.c: (gst_format_iterate_definitions):
23101         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
23102         (gst_iterator_new_list), (gst_iterator_filter):
23103         * gst/gstiterator.h:
23104         * gst/gstquery.c: (gst_query_type_iterate_definitions):
23105         Add a GType to GstIterator, update callsites and tests.
23106
23107 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23108
23109         * gst/gstpad.c: (gst_pad_event_default_dispatch):
23110           give events a chance to be handled by event probes when the pad
23111           is not linked
23112
23113 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23114
23115         * gst/gstevent.c: (gst_event_type_get_name),
23116         (gst_event_type_to_quark), (gst_event_finalize), (gst_event_new):
23117         * gst/gstevent.h:
23118           add string representations for event types
23119
23120 2005-10-06  Wim Taymans  <wim@fluendo.com>
23121
23122         * gst/elements/gstfilesink.c: (gst_file_sink_close_file):
23123         Don't use NULL pointers.
23124
23125 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23126
23127         * gst/gst_private.h:
23128         * gst/gstbus.c:
23129         * gst/gstelement.c:
23130         * gst/gstinfo.c:
23131         * gst/gstpluginfeature.c:
23132           widen the debug category in output to fit the biggest one we have
23133           add a bus category and use it
23134           play with the colors
23135           fix up some categories
23136
23137 2005-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23138
23139         * gst/gstghostpad.c: (gst_ghost_pad_internal_do_activate_push):
23140           add push activation of sink ghost pads.
23141           Andye, please verify
23142
23143 2005-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23144
23145         * gst/gstutils.c: (gst_element_link_pads):
23146           fix a bug in the case where neither element has a pad
23147         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
23148           add a test for that case
23149
23150 2005-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23151
23152         * gst/gstpad.c: (gst_pad_push), (gst_pad_push_event):
23153           emit have-data before checking for peers.  This allows
23154           for probe handlers to connect elements.  This helps autopluggers.
23155         * check/gst/gstpad.c: (GST_START_TEST), (_probe_handler),
23156         (gst_pad_suite):
23157           add six checks, linked/unlinked with no/true/false probe
23158
23159 2005-10-04  Wim Taymans  <wim@fluendo.com>
23160
23161         * gst/elements/gstfakesink.c: (gst_fake_sink_get_property),
23162         (gst_fake_sink_event), (gst_fake_sink_preroll),
23163         (gst_fake_sink_render), (gst_fake_sink_change_state):
23164         * gst/elements/gstfakesrc.c: (gst_fake_src_event_handler),
23165         (gst_fake_src_get_property), (gst_fake_src_create),
23166         (gst_fake_src_stop):
23167         * gst/elements/gstidentity.c: (gst_identity_stop):
23168         Protect last_message with lock.
23169
23170 2005-10-04  Edward Hervey  <edward@fluendo.com>
23171
23172         * gst/gstformat.h: 
23173         Added precision in the comments for GST_FORMAT_DEFAULT
23174
23175 2005-10-04  Tim-Philipp Müller  <tim at centricular dot net>
23176
23177         * tools/gst-launch.c: (main):
23178           Don't try to run erroneous pipelines.
23179
23180 2005-10-04  Julien MOUTTE  <julien@moutte.net>
23181
23182         * gst/gstbus.c: We don't need this header.
23183
23184 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
23185
23186         * configure.ac:
23187           back to development
23188
23189 === release 0.9.3 ===
23190
23191 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
23192
23193         * README:
23194         * configure.ac:
23195           Releasing 0.9.3, "Unregistered"
23196
23197 2005-10-03  Andy Wingo  <wingo@pobox.com>
23198
23199         * gst/gstpad.c (gst_pad_activate_push): There is a race condition
23200         whereby calling a pad's activatepush() function can start a thread
23201         that starts to push or pull before the pad gets the FLUSHING flag
23202         unset. Hack around it by holding the stream lock until the flag is
23203         set. Need to replace this with a proper solution. Together with
23204         the ghost pad fixes, this fixes mp3 playing/tagreading.
23205
23206         * docs/design/part-gstghostpad.txt: Add a note about activation of
23207         proxy pads outside of ghost pads.
23208
23209         * gst/gstghostpad.c: Implement the ghost pad activation design.
23210
23211 2005-10-02  Andy Wingo  <wingo@pobox.com>
23212
23213         * gst/gstobject.h (GST_OBJECT_REFCOUNT_VALUE): Just use the int.
23214         It is volatile, after all.
23215
23216         * docs/design/part-gstghostpad.txt: Flesh out activation with
23217         ghost pads.
23218
23219         * gst/base/gstbasesrc.c (gst_base_src_init): Use
23220         GST_DEBUG_FUNCPTR.
23221
23222 2005-10-02  Tim-Philipp Müller  <tim at centricular dot net>
23223
23224         * configure.ac:
23225           Fix (unused) AM_CONDITIONAL tests.
23226
23227 2005-10-01  Alessandro Decina  <alessandro at nnva dot org>
23228
23229         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
23230
23231         * gst/gstutils.c: (gst_pad_query_convert):
23232           Add assertion that makes sure src_val is >=0, just like
23233           gst_query_new_convert() has. (#315895)
23234
23235 2005-09-30  Edward Hervey  <edward@fluendo.com>
23236
23237         * gst/elements/gsttee.c: (gst_tee_do_push), (gst_tee_handle_buffer):
23238         Let's not iterate pads we're not interested in, it avoids getting 
23239         sky-high refcounts on sinkpad.
23240
23241 2005-09-30  Wim Taymans  <wim@fluendo.com>
23242
23243         * gst/gstelement.c: (gst_element_set_state),
23244         (gst_element_change_state):
23245         Small tweak, element in ASYNC remains ASYNC.
23246
23247 2005-09-30  Wim Taymans  <wim@fluendo.com>
23248
23249         * gst/base/gstbasesink.c: (gst_base_sink_change_state):
23250         Only error is an error.
23251
23252         * gst/gstbin.c: (gst_bin_change_state):
23253         Better debugging.
23254
23255         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_chain):
23256         Also call pad_block in pad alloc.
23257
23258         * gst/gstutils.c: (gst_flow_get_name):
23259         Better debugging.
23260
23261 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
23262
23263         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
23264         (gst_base_src_get_range):
23265           Fix documentation typos. Add some more debug info.
23266
23267 2005-09-29  David Schleef  <ds@schleef.org>
23268
23269         * gst/gstplugin.c: (gst_plugin_load_file): Make some error messages
23270           more end-user friendly.
23271         * tools/gst-inspect.c: (main): Check if command-line argument is
23272           a file and attempt to load that file as a plugin.
23273
23274 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
23275
23276         * check/gst/gstbin.c:
23277         * check/states/sinks.c:
23278           fix tests for the new warning
23279         * check/gst/gstpipeline.c:
23280           add a test for pipeline and bus interaction
23281         * gst/gstelement.c:
23282           elements should be NULL if they get disposed; add a warning if not
23283
23284 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
23285
23286         * gst/gstobject.c:
23287           for 2.6 refcounting, make debug log more correct by printing
23288           the actual refcounts at the time of swap (Wim)
23289
23290 2005-09-29  Andy Wingo  <wingo@pobox.com>
23291
23292         * gst/gstbus.c (gst_bus_remove_signal_watch): New function,
23293         removes signal watches previously added via
23294         gst_bus_add_signal_watch.
23295         (gst_bus_add_signal_watch): Don't return the source id, just store
23296         it on the bus if there wasn't an id already.
23297
23298         * gst/gstbus.h (GstBus): Add a couple new fields. API changes for
23299         add_signal_watch and remove_signal_watch.
23300
23301 2005-09-29  Edward Hervey  <edward@fluendo.com>
23302
23303         * libs/gst/controller/gstcontroller.c: (gst_controller_new_list): 
23304         Better if we actually iterate the list :)
23305
23306 2005-09-29  Wim Taymans  <wim@fluendo.com>
23307
23308         * check/gst/gstbin.c: (GST_START_TEST):
23309         Change for new bus API.
23310
23311         * check/gst/gstbus.c: (message_func_eos), (message_func_app),
23312         (send_messages), (GST_START_TEST), (gstbus_suite):
23313         Change for new bus signal API.
23314
23315         * gst/gstbus.c: (gst_bus_class_init), (gst_bus_have_pending),
23316         (gst_bus_source_prepare), (gst_bus_source_check),
23317         (gst_bus_create_watch), (gst_bus_add_watch_full),
23318         (gst_bus_add_watch), (gst_bus_poll), (gst_bus_async_signal_func),
23319         (gst_bus_sync_signal_handler), (gst_bus_add_signal_watch):
23320         * gst/gstbus.h:
23321         Remove support for multiple GSources operating on different
23322         message types as it is too complex and unneeded when using
23323         signals.
23324         Added support for receiving signals from the bus.
23325
23326 2005-09-29  Thomas Vander Stichele  <thomas at apestaart dot org>
23327
23328         * docs/libs/tmpl/gstdataprotocol.sgml:
23329         * docs/manual/advanced-dataaccess.xml:
23330         * gst/elements/gstcapsfilter.c:
23331         * gst/gstutils.c:
23332           rename filter-caps to caps property
23333
23334 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
23335
23336         * gst/gstvalue.c: (gst_value_deserialize_fraction):
23337           More robust fraction string parsing.
23338
23339         * docs/pwg/appendix-porting.xml:
23340           Mention gst_pad_use_explicit_caps() => gst_pad_use_fixed_caps()
23341
23342 2005-09-29  Tim-Philipp Müller  <tim at centricular dot net>
23343
23344         * gst/gstcaps.c: (gst_caps_do_simplify):
23345           Thou shalt not free a structure and then continue using it
23346           in the next loop iteration.
23347
23348         * check/gst/gstcaps.c: (check_fourcc_list), (test_simplify),
23349         (gst_caps_suite):
23350           Add test case for caps simplification.
23351
23352 2005-09-29  Wim Taymans  <wim@fluendo.com>
23353
23354         * check/gst/gstbin.c: (GST_START_TEST):
23355         Oops.
23356
23357 2005-09-29  Wim Taymans  <wim@fluendo.com>
23358
23359         * check/gst/gstbin.c: (GST_START_TEST):
23360         Add bus to bin.
23361
23362         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init),
23363         (add_to_queue), (clear_queue), (reset_degree), (update_degree),
23364         (find_element), (gst_bin_sort_iterator_next),
23365         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
23366         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
23367         (gst_bin_change_state), (gst_bin_dispose):
23368         A bin does not have a bus, it gets the bus from the parent.
23369
23370         * gst/gstelement.c: (gst_element_requires_clock),
23371         (gst_element_provides_clock), (gst_element_is_indexable),
23372         (gst_element_is_locked_state), (gst_element_change_state),
23373         (gst_element_set_bus_func):
23374         Small cleanups.
23375
23376         * gst/gstpipeline.c: (gst_pipeline_class_init),
23377         (gst_pipeline_init), (gst_pipeline_provide_clock_func):
23378         The pipeline provides a bus.
23379
23380 2005-09-28  Johan Dahlin  <johan@gnome.org>
23381
23382         * gst/gstmessage.c (gst_message_parse_state_changed): Use
23383         gst_structure_get_enum instead of gst_structure_get_int
23384
23385         * gst/gststructure.c (gst_structure_get_enum): Impl.
23386
23387         * gst/gststructure.h (gst_structure_get_enum): Add
23388
23389         * docs/gst/gstreamer-sections.txt: Ditto
23390
23391         * gst/gstmessage.c (gst_message_new_state_changed): Use
23392         GST_TYPE_STATE instead of G_TYPE_INT, mainly for language bindings
23393         which does introspection.
23394         Reviewed by Christian Schaller
23395
23396 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
23397
23398         * gst/gstinfo.c: (gst_debug_log_default):
23399           don't do dummy g_strdup()s
23400         * libs/gst/controller/gstcontroller.c:
23401         (on_object_controlled_property_changed),
23402         (gst_controlled_property_new), (gst_controller_new_valist),
23403         (gst_controller_new_list),
23404         (gst_controller_remove_properties_valist), (gst_controller_set),
23405         (gst_controller_get), (gst_controller_sync_values),
23406         (gst_controller_get_value_array), (_gst_controller_class_init),
23407         (gst_controller_get_type):
23408         * libs/gst/controller/gstcontroller.h:
23409         * libs/gst/controller/gstinterpolation.c:
23410         (gst_controlled_property_find_timed_value_node):
23411           convert // to /**/ comments
23412
23413 2005-09-28  Wim Taymans  <wim@fluendo.com>
23414
23415         * gst/gstbus.c: (marshal_VOID__MINIOBJECT), (gst_bus_class_init),
23416         (gst_bus_post), (poll_func), (gst_bus_async_signal_func),
23417         (gst_bus_sync_signal_handler):
23418         * gst/gstbus.h:
23419         Added async-message and sync-message signals to the bus.
23420         Added helper BusFunc to emit signals for all posted messages.
23421
23422         * gst/gstmessage.c: (gst_message_type_get_name),
23423         (gst_message_type_to_quark), (gst_message_get_type):
23424         * gst/gstmessage.h:
23425         Register quarks for message names.
23426
23427 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
23428
23429         * docs/libs/gstreamer-libs-sections.txt:
23430         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist),
23431         (gst_controller_new_list):
23432         * libs/gst/controller/gstcontroller.h:
23433           added another constructor for language bindings
23434
23435 2005-09-28  Thomas Vander Stichele  <thomas at apestaart dot org>
23436
23437         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
23438           add another check
23439         * gst/gstbus.c:
23440           add some doc
23441         * gst/gstinfo.c: (_gst_debug_init):
23442           slightly more readable color for refcount debugging
23443
23444 2005-09-28  Wim Taymans  <wim@fluendo.com>
23445
23446         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_provide_clock_func),
23447         (add_to_queue), (clear_queue), (reset_degree), (update_degree),
23448         (find_element), (gst_bin_sort_iterator_next),
23449         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
23450         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
23451         (gst_bin_change_state), (gst_bin_dispose):
23452         Small doc fixes. get_clock -> provide_clock.
23453
23454         * gst/gstelement.c: (gst_element_class_init),
23455         (gst_element_provides_clock), (gst_element_provide_clock),
23456         (gst_element_get_clock), (gst_element_commit_state),
23457         (gst_element_lost_state):
23458         * gst/gstelement.h:
23459         Make get/set_clock() symetric. Add provide_clock vmethod since
23460         that is actually what this function does.
23461
23462         * gst/gstpipeline.c: (gst_pipeline_class_init),
23463         (gst_pipeline_change_state), (gst_pipeline_provide_clock_func),
23464         (gst_pipeline_get_clock):
23465         get_clock -> provide_clock.
23466
23467 2005-09-28  Andy Wingo  <wingo@pobox.com>
23468
23469         * gst/base/gstbasesrc.c (gst_base_src_unlock): Comment a bit in
23470         lieu of real docs...
23471
23472         * gst/elements/gstfdsrc.c: Cleaned up a bit.
23473
23474 2005-09-28  Tim-Philipp Müller  <tim at centricular dot net>
23475
23476         * gst/elements/gstcapsfilter.c:
23477         * gst/elements/gstfakesink.c:
23478         * gst/elements/gstfakesrc.c:
23479         * gst/elements/gstfdsink.c:
23480         * gst/elements/gstfdsrc.c:
23481         * gst/elements/gstfilesink.c:
23482         * gst/elements/gstfilesrc.c:
23483         * gst/elements/gstidentity.c:
23484         * gst/elements/gsttee.c:
23485         * gst/elements/gsttypefindelement.c:
23486           Make element details static.
23487
23488 2005-09-28  Wim Taymans  <wim@fluendo.com>
23489
23490         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
23491         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
23492         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
23493         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
23494         (gst_bin_change_state), (gst_bin_dispose):
23495         Some documentation updates.
23496         Clean up dispose handlers.
23497
23498         * gst/gstobject.c: (gst_object_ref), (gst_object_unref):
23499         * gst/gstpad.c: (gst_pad_dispose):
23500         Clean up dispose handler.
23501
23502         * gst/gstpipeline.c: (gst_pipeline_change_state):
23503         Removed spurious UNLOCK.
23504
23505 2005-09-27  Stefan Kost  <ensonic@users.sf.net>
23506
23507         * docs/gst/gstreamer-sections.txt:
23508         * gst/base/gstbasesrc.h:
23509         * gst/gstelement.h:
23510         * gst/gstevent.h:
23511         * gst/gstobject.h:
23512         * gst/gstpad.h:
23513         * gst/gstpipeline.c:
23514         * gst/gstpipeline.h:
23515         * gst/gstutils.h:
23516         * gst/gstxml.h:
23517           added two new functions to the docs
23518                 documents all undocumented GstXXXFlags
23519                 completed some incomplete docs 
23520
23521 2005-09-27  Thomas Vander Stichele  <thomas at apestaart dot org>
23522
23523         * gst/gstbin.c: (gst_bin_dispose):
23524         * gst/gstelement.c: (gst_element_dispose):
23525           remove now useless and leaky resurrection code in dispose
23526         * gst/base/gstbasesrc.c: (gst_base_src_init):
23527         * gst/gstelementfactory.c: (gst_element_factory_create):
23528         * gst/gstobject.c: (gst_object_set_parent):
23529           add some debugging
23530
23531 2005-09-27  Wim Taymans  <wim@fluendo.com>
23532
23533         * docs/design/part-TODO.txt:
23534         Update TODO.
23535
23536         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
23537         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
23538         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
23539         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
23540         (gst_bin_change_state):
23541         * gst/gstelement.h:
23542         Remove element variable, we keep element info in the iterator now.
23543
23544 2005-09-27  Andy Wingo  <wingo@pobox.com>
23545
23546         * libs/gst/dataprotocol/dataprotocol.c: Fix error-checking return
23547         values.
23548
23549 2005-09-27  Wim Taymans  <wim@fluendo.com>
23550
23551         * check/gst/gstbin.c: (GST_START_TEST):
23552         Enable check that works now.
23553
23554         * gst/gstbin.c: (add_to_queue), (clear_queue), (reset_outdegree),
23555         (update_outdegree), (find_element), (gst_bin_sort_iterator_next),
23556         (gst_bin_sort_iterator_resync), (gst_bin_sort_iterator_free),
23557         (gst_bin_iterate_sorted), (gst_bin_element_set_state),
23558         (gst_bin_change_state):
23559         * gst/gstbin.h:
23560         Redid the state change algorithm using a topological sort algo.
23561         Handles all cases correctly.
23562         Exposed iterator for state change order.
23563
23564         * gst/gstelement.h:
23565         Temp storage for state changes. Need to get rid of this soon.
23566
23567 2005-09-27  Wim Taymans  <wim@fluendo.com>
23568
23569         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_do_push):
23570         * gst/gstutils.c: (intersect_caps_func), (gst_pad_proxy_getcaps),
23571         (link_fold_func), (gst_pad_proxy_setcaps):
23572         Leak fixes, the fold functions need to unref the passed object and
23573         _get_parent_*() returns ref to parent.
23574
23575 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
23576
23577         * check/gst/gstbuffer.c: (test_make_writable):
23578           Plug leak in test case and fix 'make check-valgrind'
23579
23580 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
23581
23582         * gst/gstbuffer.c: (gst_subbuffer_init):
23583           Set READONLY flag on subbuffers, so that gst_buffer_make_writable()
23584           works correctly in all circumstances (we could have just copied
23585           the parent buffer's readonly flag, but conceptually it seems
23586           cleaner to mark all subbuffers as read-only). (based on patch
23587           by Alessandro Decina, #314710).
23588         
23589         * check/gst/gstbuffer.c: (create_read_only_buffer),
23590         (test_make_writable), (test_subbuffer_make_writable),
23591         (gst_test_suite):
23592           Add some tests for gst_buffer_make_writable().
23593
23594 2005-09-27  Wim Taymans  <wim@fluendo.com>
23595
23596         * gst/gstbin.c: (bin_element_is_semi_sink), (gst_bin_change_state):
23597         use gst_object_has_ancestor().
23598
23599         * gst/gstobject.c: (gst_object_has_ancestor):
23600         * gst/gstobject.h:
23601         gst_object_has_ancestor() copied from gstbin.c as it is a
23602         useful function.
23603
23604         * tests/instantiate/create.c: (create_all_elements):
23605         * tests/lat.c: (handoff_src), (handoff_sink):
23606         * tests/sched/runxml.c: (main):
23607         * tests/seeking/seeking1.c: (main):
23608         * tests/threadstate/threadstate2.c: (bus_handler), (timeout_func),
23609         (main):
23610         Fix compilation of some tests.
23611
23612 2005-09-27  Tim-Philipp Müller  <tim at centricular dot net>
23613
23614         * gst/gsterror.h:
23615           Remove comment. GST_TYPE_G_ERROR is here to stay,
23616           G_TYPE_ERROR has been WONTFIX'ed by the GLib folks
23617           (#316961, #300610).
23618
23619 2005-09-26  Wim Taymans  <wim@fluendo.com>
23620
23621         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
23622         Added check that shows error in state change order.
23623
23624 2005-09-26  Wim Taymans  <wim@fluendo.com>
23625
23626         * gst/gstbin.c: (gst_bin_change_state):
23627         Make state change function use 3 queues again, we were
23628         adding elements in the wrong order.
23629
23630         * gst/gstghostpad.c: (gst_ghost_pad_do_unlink):
23631         Some debug info,
23632
23633         * gst/gstpad.c: (gst_pad_dispose):
23634         Added some debug info first.
23635
23636 2005-09-26  Tim-Philipp Müller  <tim at centricular dot net>
23637
23638         * docs/design/draft-push-pull.txt:
23639         * docs/design/part-events.txt:
23640         * docs/design/part-overview.txt:
23641         * docs/design/part-scheduling.txt:
23642           Replace all _pull_region() with _pull_range()
23643           
23644 2005-09-26  Andy Wingo  <wingo@pobox.com>
23645
23646         * gst/gstvalue.c (_gst_value_initialize): Better fakeout.
23647
23648         * check/gst-libs/controller.c: Update for controller api change.
23649
23650         * configure.ac: 
23651         * tests/Makefile.am:
23652         * tests/memchunk: Remove memchunk benchmark stuff, this is taken
23653         over by GLib bug 118439.
23654         
23655         * gst/base/gstbasesink.c (gst_base_sink_wait): Factor out the wait
23656         routines to a function.
23657
23658         * docs/libs/gstreamer-libs-sections.txt: I am a good person today.
23659
23660         * libs/gst/controller/gsthelper.c:
23661         * libs/gst/controller/gstcontroller.h (gst_controller_sync_values)
23662         (gst_object_sync_values): Renamed from sink_values. Ugh.
23663
23664         * libs/gst/controller/gsthelper.c: Update for __gst_controller_key.
23665
23666         * libs/gst/controller/gstcontroller.c (__gst_controller_key):
23667         Renamed from controller_key, as it is exported.
23668
23669         * gst/gstvalue.c (_gst_value_initialize): Fake out the compiler.
23670
23671 2005-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
23672
23673         * gst/Makefile.am:
23674         * gst/gst.h:
23675         * gst/gstpad.h:
23676         * gst/gstpadtemplate.h:
23677         * gst/gstquery.c:
23678         * gst/gstquery.h:
23679         * gst/gstqueryutils.c:
23680         * gst/gstqueryutils.h:
23681           remove queryutils headers after moving the two used functions
23682           to gstquery.  also fixes build problem for gstsiddec
23683
23684 2005-09-26  Michael Smith <msmith@fluendo.com>
23685
23686         * tools/gst-launch.1.in:
23687         Correct documentation in manpage of debug syntax
23688
23689 2005-09-26  Wim Taymans  <wim@fluendo.com>
23690
23691         * gst/base/gstbasesrc.c: (gst_base_src_get_range),
23692         (gst_base_src_is_seekable), (gst_base_src_change_state):
23693         Some more debugging info.
23694
23695 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
23696
23697         * docs/gst/gstreamer-sections.txt:
23698         * gst/base/gstbasetransform.h:
23699         * gst/gstindex.h:
23700           added more docs
23701
23702 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
23703
23704         * docs/gst/.cvsignore:
23705         * docs/gst/tmpl/.cvsignore:
23706         * docs/gst/tmpl/gstpipeline.sgml:
23707         * docs/gst/tmpl/gstplugin.sgml:
23708         * gst/gstpipeline.c:
23709         * gst/gstplugin.c:
23710         * gst/gstplugin.h:
23711           inlined the last two docs files
23712           removed the tmpl directory from cvs (no more conflicts here!)
23713
23714 2005-09-25  Stefan Kost  <ensonic@users.sf.net>
23715
23716         * docs/gst/gstreamer-sections.txt:
23717         * docs/gst/tmpl/.cvsignore:
23718         * docs/gst/tmpl/gstpad.sgml:
23719         * docs/gst/tmpl/gstpadtemplate.sgml:
23720         * gst/Makefile.am:
23721         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_dispose),
23722         (gst_pad_finalize), (gst_pad_set_pad_template):
23723         * gst/gstpad.h:
23724         * gst/gstpadtemplate.c: (gst_pad_template_get_type),
23725         (gst_pad_template_class_init), (gst_pad_template_init),
23726         (gst_pad_template_dispose), (name_is_valid),
23727         (gst_static_pad_template_get), (gst_pad_template_new),
23728         (gst_static_pad_template_get_caps), (gst_pad_template_get_caps),
23729         (gst_pad_template_pad_created):
23730         * gst/gstpadtemplate.h:
23731           inlined two more docs
23732           factored gstpadtemplate out of gstpad
23733
23734 2005-09-24  Tim-Philipp Müller  <tim at centricular dot net>
23735
23736         * check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
23737         (test_children_state_change_order_semi_sink):
23738           Fix test case: we can't rely on a fixed state change order when
23739           going from READY => PAUSED because the sink might commit its 
23740           new state first when the first buffer created by the source 
23741           reaches the sink before the source has finished its change state.
23742           (Test case still fails at times, see #316856, comment 5 onwards)
23743
23744 2005-09-24  Wim Taymans  <wim@fluendo.com>
23745
23746         * docs/design/part-events.txt:
23747         * docs/design/part-gstbus.txt:
23748         * docs/design/part-gstpipeline.txt:
23749         * docs/design/part-messages.txt:
23750         * docs/design/part-overview.txt:
23751         * docs/design/part-segments.txt:
23752         * gst/gstbin.c:
23753         * gst/gstbuffer.c:
23754         * gst/gstclock.c:
23755         * gst/gstelement.c:
23756         * gst/gstevent.c:
23757         * gst/gstfilter.c:
23758         * gst/gstiterator.c:
23759         Various documentation updates.
23760
23761 2005-09-24  Thomas Vander Stichele  <thomas at apestaart dot org>
23762
23763         * gst/gstclock.h:
23764           Well, that's embarassing.  Luckily we weren't using
23765           GST_CLOCK_DIFF anywhere.
23766
23767 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23768
23769         * common/gtk-doc.mak:
23770           don't fail on building XML, FC4 slave shows a bunch of doc
23771           missing bits that I don't get
23772         * gst/gstpad.c:
23773         * gst/gstpipeline.c:
23774         * gst/gststructure.c:
23775           some doc updates
23776
23777 2005-09-23  Tim-Philipp Müller  <tim at centricular dot net>
23778
23779         * docs/design/part-gstbin.txt:
23780         * docs/design/part-gstbus.txt:
23781         * gst/gstbus.c:
23782           Add blurb about how the bus goes into flushing mode and
23783           drops all messages when its bin goes from READY into NULL 
23784           state.
23785
23786 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23787
23788         * docs/gst/gstreamer-sections.txt:
23789         * gst/gststructure.c: (gst_structure_get_clock_time):
23790         * gst/gststructure.h:
23791           add a method to get a GstClockTime out of a structure
23792
23793 2005-09-23  Tim-Philipp Müller  <tim at centricular dot net>
23794
23795         * check/gst/gstbin.c: (test_children_state_change_order_flagged_sink),
23796         (test_children_state_change_order_semi_sink), (gst_bin_suite):
23797           Added test to check state change order in bins (can still be made
23798           to fail here under heavy disk load; bails out with 'Push on pad
23799           fakesink:sink0, but it was not activated in push mode').
23800
23801         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_change_state):
23802           Fix state change order when there is only a semi sink (#316856)
23803
23804         * gst/gstbus.c: (gst_bus_class_init):
23805           Use _class_peek_parent(), not _class_ref(); fix docs to say
23806           'default main context' instead of 'mainloop' where that is
23807           what's meant.
23808
23809         * gst/gstelement.c: (gst_element_commit_state),
23810         (gst_element_set_state):
23811           Fix typos in debug messages
23812
23813 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23814
23815         * docs/README:
23816         * gst/gstpad.c: (gst_pad_class_init), (gst_pad_chain):
23817         * gst/gstpluginfeature.c:
23818         * gst/gstutils.c:
23819           various doc updates
23820         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
23821           change an assert into an error until it gets fixed properly
23822
23823 2005-09-23  Stefan Kost  <ensonic@users.sf.net>
23824
23825         * docs/gst/gstreamer-sections.txt:
23826         * docs/gst/tmpl/.cvsignore:
23827         * docs/gst/tmpl/gstelement.sgml:
23828         * docs/gst/tmpl/gstinfo.sgml:
23829         * docs/gst/tmpl/gstobject.sgml:
23830         * gst/gstelement.c:
23831         * gst/gstelement.h:
23832         * gst/gstinfo.c:
23833         * gst/gstinfo.h:
23834         * gst/gstobject.c: (gst_object_class_init):
23835         * gst/gstobject.h:
23836           inlined 3 more biiiig doc files and added some missing docs on the fly
23837
23838 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
23839
23840         * check/gst/.cvsignore:
23841         * check/gst/gstplugin.c: (GST_START_TEST), (gst_plugin_suite):
23842         * gst/gstregistryxml.c: (load_plugin),
23843         (gst_registry_xml_save_plugin):
23844           put back source in registry.  add checks for find_plugin.
23845         * testsuite/states/bin.c: (assert_state), (empty_bin),
23846         (test_adding_one_element), (main):
23847         * testsuite/states/locked.c: (main):
23848           some compile/run fixes
23849
23850 2005-09-22  Thomas Vander Stichele  <thomas at apestaart dot org>
23851
23852         * check/gst/gstvalue.c: (GST_START_TEST):
23853           fix leaks in the test itself
23854
23855 2005-09-22  Wim Taymans  <wim@fluendo.com>
23856
23857         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
23858         (gst_base_sink_send_event), (gst_base_sink_peer_query),
23859         (gst_base_sink_query):
23860         Prepare for more accurate position reporting and query
23861         handling.
23862
23863         * gst/gstelement.c: (gst_element_send_event),
23864         (gst_element_set_state):
23865         Add some comment.
23866
23867 2005-09-22  Wim Taymans  <wim@fluendo.com>
23868
23869         * gst/gstquery.c: (gst_query_new_segment), (gst_query_set_segment),
23870         (gst_query_parse_segment):
23871         * gst/gstquery.h:
23872         More documentation.
23873         Add segment query for future use.
23874
23875 2005-09-22  Wim Taymans  <wim@fluendo.com>
23876
23877         * gst/gstbin.c: (gst_bin_add_func):
23878         Some more debug info.
23879
23880         * gst/gstelement.c: (gst_element_send_event):
23881         Simplify send_event
23882
23883         * gst/gstelement.h:
23884         Don't know how flags got broken.
23885
23886         * gst/gstquery.h:
23887         Added new query.
23888
23889 2005-09-22  Tim-Philipp Müller  <tim at centricular dot net>
23890
23891         * check/gst/gstvalue.c: (test_date), (gst_value_suite):
23892           Add simplistic test suite for GST_TYPE_DATE serialisation and
23893           deserialisation.
23894
23895 2005-09-22  Tim-Philipp Müller  <tim at centricular dot net>
23896
23897         * docs/gst/gstreamer-sections.txt:
23898         * gst/gststructure.c: (gst_structure_set_valist),
23899         (gst_structure_get_date):
23900         * gst/gststructure.h:
23901         * gst/gstvalue.c: (gst_value_set_date), (gst_value_get_date),
23902         (gst_date_copy), (gst_value_compare_date),
23903         (gst_value_serialize_date), (gst_value_deserialize_date),
23904         (gst_value_transform_date_string),
23905         (gst_value_transform_string_date), (_gst_value_initialize):
23906         * gst/gstvalue.h:
23907           Add GST_TYPE_DATE, a boxed type that wraps GDate, and the usual
23908           bunch of utility functions along with a hack that checks that
23909           developers don't accidentally use G_TYPE_DATE where GST_TYPE_DATE
23910           is required. Part of the grand scheme in #170777.
23911
23912 2005-09-22  Andy Wingo  <wingo@pobox.com>
23913
23914         * gst/gstconfig.h.in: Psych out gtk-doc.
23915
23916         * docs/gst/gstreamer-sections.txt: Add GST_HAVE_GLIB_2_8.
23917
23918         * check/Makefile.am (check_PROGRAMS): Add gstplugin to the tests.
23919
23920         * tools/gst-inspect.c (print_element_list): Plug some
23921         inconsequential leaks.
23922
23923         * gst/gstregistry.c (gst_registry_get_default): Doc.
23924
23925         * check/gst/gstplugin.c: 
23926         * gst/gsttypefindfactory.c (gst_type_find_factory_call_function):
23927         * gst/gstelementfactory.c (gst_element_factory_create): 
23928         * gst/gstindexfactory.c (gst_index_factory_create): Update for
23929         refcount changes.
23930
23931         * gst/gstpluginfeature.c (gst_plugin_feature_list_free): Doc.
23932         (gst_plugin_feature_load): Doc, don't eat refs.
23933
23934         * gst/gstplugin.c (gst_plugin_load): Doc, don't eat refs.
23935         (gst_plugin_list_free): Doc.
23936         (gst_plugin_load_file): Doc updates.
23937
23938         * gst/gstbuffer.c (gst_buffer_get_caps): Like all our _get
23939         accessors returning refcounted objects, return a ref.
23940
23941         * check/gst/gstbuffer.c (GST_START_TEST): Use refcount-idempotent
23942         accessor for caps. IDEMPOTENCE. Oh yes.
23943
23944 2005-09-21  Francis Labonte  <francis_labonte at hotmail dot com>
23945
23946         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
23947
23948         * gst/gstinfo.c: (_gst_debug_nameof_funcptr),
23949         (_gst_debug_register_funcptr):
23950           Add mutex to serialise access to the hash table with
23951           the function pointer => function name string mapping;
23952           make that hash table static scope (#316809).
23953
23954         * gst/registries/.cvsignore:
23955           Remove left-over file.
23956
23957 2005-09-21  Tim-Philipp Müller  <tim at centricular dot net>
23958
23959         * docs/pwg/appendix-porting.xml:
23960           And something about newsegment events and caps-on-buffers to
23961           the porting guide (feel free to improve).
23962
23963 2005-09-21  Andy Wingo  <wingo@pobox.com>
23964
23965         * check/gst/gstutils.c (test_buffer_probe_n_times): Add tests for
23966         data and event probes on the same pad.
23967         (test_buffer_probe_once): Test that removing probes from within
23968         the probe functions works.
23969
23970 2005-09-21  Andy Wingo  <wingo@pobox.com>
23971
23972         * check/gst/gstutils.c: New file.
23973         (test_buffer_probe_n_times): A simple buffer probe test. More to
23974         come, foolios.
23975
23976         * gst/gstutils.c (gst_pad_add_buffer_probe): Connect to
23977         have-data::buffer, not have-data.
23978         (gst_pad_add_event_probe): Likewise for have-data::event.
23979         (gst_pad_add_data_probe): More docs. The part about 'resolving the
23980         peer' isn't quite right yet though.
23981         (gst_pad_remove_buffer_probe, gst_pad_remove_event_probe) 
23982         (gst_pad_remove_data_probe): Change to take the guint handler_id
23983         as their arg, not the function+data, which is more glib-like.
23984
23985         * gst/gstpad.c (gst_pad_emit_have_data_signal): Add a detail to
23986         the signal emission to indicate if the data is a buffer or an
23987         event.
23988         (gst_pad_get_type): Initialize buffer and event quarks.
23989         (gst_pad_class_init): have-data is now a detailed signal, yes it
23990         is.
23991
23992 2005-09-21  Tim-Philipp Müller  <tim at centricular dot net>
23993
23994         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size):
23995         * gst/gstutils.c: (gst_util_set_value_from_string),
23996         (gst_util_set_object_arg):
23997           Don't put functional code in g_return_if_fail() or
23998           g_return_val_if_fail() statements, otherwise things will 
23999           break when G_DISABLE_CHECKS is defined during compilation.
24000
24001 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
24002
24003         * docs/gst/tmpl/.cvsignore:
24004         * docs/gst/tmpl/gstvalue.sgml:
24005         * gst/gstvalue.c:
24006         * gst/gstvalue.h:
24007           inlied another one and added  some obvious docs
24008
24009 2005-09-21  Wim Taymans  <wim@fluendo.com>
24010
24011         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
24012         (gst_fdsrc_init), (gst_fdsrc_start), (gst_fdsrc_stop),
24013         (gst_fdsrc_unlock), (gst_fdsrc_set_property),
24014         (gst_fdsrc_get_property), (gst_fdsrc_create):
24015         * gst/elements/gstfdsrc.h:
24016         Properly implement fdsrc. Removed signal and timeout,
24017         better implemented somewhere else.
24018
24019 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
24020
24021         * docs/gst/tmpl/.cvsignore:
24022         * docs/gst/tmpl/gstimplementsinterface.sgml:
24023         * gst/gstinterface.c:
24024           inlined more docs
24025
24026 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
24027
24028         * docs/gst/gstreamer-sections.txt:
24029         * docs/gst/tmpl/.cvsignore:
24030         * docs/gst/tmpl/gstenumtypes.sgml:
24031           remove obsolete doc file
24032
24033 2005-09-21  David Schleef  <ds@schleef.org>
24034
24035         * gst/gstelementfactory.c: (gst_element_factory_make): Drink a
24036         little beer, fix a little leak.
24037
24038 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
24039
24040         * docs/gst/gstreamer-docs.sgml:
24041         * docs/gst/gstreamer-sections.txt:
24042         * docs/gst/tmpl/.cvsignore:
24043         * gst/Makefile.am:
24044         * gst/gst.h:
24045         * gst/gstbin.c:
24046         * gst/gstelement.h:
24047         * gst/gstindex.c: (gst_index_class_init):
24048         * gst/gstindex.h:
24049         * gst/gstindexfactory.c: (gst_index_factory_get_type),
24050         (gst_index_factory_class_init), (gst_index_factory_init),
24051         (gst_index_factory_finalize), (gst_index_factory_new),
24052         (gst_index_factory_destroy), (gst_index_factory_find),
24053         (gst_index_factory_create), (gst_index_factory_make):
24054         * gst/gstindexfactory.h:
24055         * gst/gstpluginfeature.c:
24056         * gst/gstpluginfeature.h:
24057         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
24058           more docs inlined, splitted gstindex.{c,h}
24059
24060 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24061
24062         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
24063           fix a leak
24064
24065 2005-09-20  Tim-Philipp Müller  <tim at centricular dot net>
24066
24067         * gst/elements/gstfilesink.c: (gst_file_sink_init):
24068           Set sync to FALSE by default.
24069
24070 2005-09-20  Wim Taymans  <wim@fluendo.com>
24071
24072         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
24073         (gst_base_sink_init):
24074         Make sync property settable from subclass.
24075
24076         * gst/elements/gstfakesink.c: (gst_fake_sink_init),
24077         (gst_fake_sink_change_state):
24078         Set sync to FALSE by default.
24079
24080 2005-09-20  Wim Taymans  <wim@fluendo.com>
24081
24082         * gst/gstbus.c: (poll_func), (poll_timeout), (gst_bus_poll):
24083         * tools/gst-launch.c: (main):
24084         The timeout handler should have lower priority than the source
24085         so we don't timeout before popping a message with 0 timeout.
24086         Dump error messages after failed state change.
24087
24088 2005-09-20  Tim-Philipp Müller  <tim at centricular dot net>
24089
24090         * tools/gst-inspect.c: (print_element_properties_info):
24091           Fix two typos.
24092
24093 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24094
24095         * check/gst/gstevent.c:
24096         * gst/elements/gstfakesink.c:
24097         * gst/elements/gstfakesink.h:
24098           remove the sync property from fakesink.
24099           has the side effect of setting sync TRUE
24100           for fakesink, which is a change.  Anyone who knows how
24101           to fix this nicely in a GObject-y way, feel free.
24102
24103 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
24104
24105         * docs/gst/gstreamer-docs.sgml:
24106           remove probe refsection
24107
24108 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
24109
24110         * check/Makefile.am:
24111           disable valgrinding the controller test again
24112         * docs/gst/gstreamer-sections.txt:
24113           update for api-changes
24114
24115 2005-09-20  Wim Taymans  <wim@fluendo.com>
24116
24117         * gst/base/gstbasesink.c: (gst_base_sink_class_init),
24118         (gst_base_sink_set_property), (gst_base_sink_get_property),
24119         (gst_base_sink_do_sync):
24120         * gst/base/gstbasesink.h:
24121         Added sync property to basesink to disable clock sync.
24122
24123 2005-09-20  Andy Wingo  <wingo@pobox.com>
24124
24125         * gst/gstelementfactory.c (gst_element_factory_create): Avoid
24126         eating the caller's refcount.
24127
24128         * gst/gstobject.h (GST_OBJECT_REFCOUNT) 
24129         (GST_OBJECT_REFCOUNT_VALUE): Conditionally fondle the right
24130         refcount.
24131
24132         * gst/gstconfig.h.in (GST_HAVE_GLIB_2_8):
24133         * configure.ac (GST_HAVE_GLIB_2_8_DEFINE): Make the availability
24134         of GLib 2.8 public, so we can know which refcount to check in
24135         tests.
24136
24137         * gst/gstobject.c: Use the GST_HAVE_GLIB_2_8 define.
24138         (gst_object_init): Only set the gst refcount if we're going ahead
24139         with the refcount hack.
24140
24141 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
24142
24143         * check/gst-libs/controller.c: (plugin_init), (GST_START_TEST):
24144         * libs/gst/controller/gstcontroller.c: (gst_controller_new_valist):
24145           more leaks plumbed, added more debug-logging
24146         * gst/gstmacros.h:
24147           whitespace fix
24148
24149 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24150
24151         * gst/gstmessage.c:
24152           remove include of gstmemchunk.h
24153
24154 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24155
24156         * gst/gstclock.c: (_gst_clock_id_free):
24157           Commit from the Political Party For More Atomic CVS Commits,
24158           so that people don't waste too much of their day fishing
24159           out obvious leaks out of massive commits.
24160           Oh, and fix a pretty damn obvious leak in the memchunk
24161           removal code.
24162
24163 2005-09-20  Stefan Kost  <ensonic@users.sf.net>
24164
24165         * check/Makefile.am:
24166         * check/gst-libs/controller.c: (plugin_init), (GST_START_TEST):
24167           plug mem-leak, re-add to valgrindable tests
24168
24169 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24170
24171         * gst/gstplugin.h:
24172           unbreak the build for those who have chronic arthritis
24173           and typing "make check" is just too taxing on the hands
24174
24175 2005-09-20  Andy Wingo  <wingo@pobox.com>
24176
24177         * gst/gst.h: Re-add marshal to gst.h's include list -- if we
24178         really want it out, you should fix plugins at the same time.
24179
24180 2005-09-19  Stefan Kost  <ensonic@users.sf.net>
24181
24182         * configure.ac:
24183         * docs/gst/gstreamer-sections.txt:
24184         * gst/gstobject.c:
24185           added missing symbols to api docs
24186           disable ref-count hack if we have glib >= 2.8
24187
24188 2005-09-19  David Schleef  <ds@schleef.org>
24189
24190         * docs/gst/Makefile.am: Ignore a few more internal headers
24191         * docs/gst/gstreamer-docs.sgml: Remove old sections
24192         * docs/gst/gstreamer-sections.txt: Remove old sections
24193         * docs/gst/tmpl/gstobject.sgml: update
24194         * docs/gst/tmpl/gstplugin.sgml: update
24195         * docs/gst/tmpl/gstpluginfeature.sgml: update
24196         * docs/random/ds/0.9-suggested-changes: update.
24197         * gst/Makefile.am: remove memchunk and trashstack, since they're
24198           not used.
24199         * gst/gst.c: (gst_deinit): rename gst_registry_deinit to _cleanup
24200         * gst/gst.h: don't include some headers
24201         * gst/gstchildproxy.c: add gstmarshal.h
24202         * gst/gstclock.c: Don't use memchunks
24203         * gst/gstminiobject.c: Add some docs
24204         * gst/gstobject.c: remove DESTROYED flag, since it's redundant
24205         * gst/gstobject.h: same
24206         * gst/gstplugin.c: include gstmacros.h
24207         * gst/gstplugin.h: don't include gstmacros.h, since it's private
24208         * gst/gstquery.c: don't use memchunks
24209         * gst/gstregistry.c: rename gst_registry_deinit()
24210         * gst/gstregistry.h: same
24211
24212 2005-09-19  David Schleef  <ds@schleef.org>
24213
24214         * docs/libs/gstreamer-libs-docs.sgml: Remove docs for getbits
24215         * docs/libs/gstreamer-libs-sections.txt:
24216         * docs/libs/tmpl/gstgetbits.sgml:
24217         * docs/libs/tmpl/gstputbits.sgml:
24218
24219 2005-09-19  Tim-Philipp Müller  <tim at centricular dot net>
24220
24221         * win32/gstenumtypes.c:
24222         * win32/gstenumtypes.h:
24223           Update.
24224
24225 2005-09-19  Wim Taymans  <wim@fluendo.com>
24226
24227         * gst/gstpipeline.c: (do_pipeline_seek), (gst_pipeline_send_event):
24228         Automatically PAUSE and RESUME a pipeline when a flushing seek
24229         is performed.
24230
24231 2005-09-19  Andy Wingo  <wingo@pobox.com>
24232
24233         * gst/gstregistry.h: Spacing fixen.
24234
24235 2005-09-19  Wim Taymans  <wim@fluendo.com>
24236
24237         * gst/base/gstbasesrc.c: (gst_base_src_change_state):
24238         Handle state change failure more correctly.
24239
24240 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24241
24242         * check/Makefile.am:
24243         * check/pipelines/cleanup.c: (run_pipeline):
24244         * check/pipelines/simple_launch_lines.c: (run_pipeline),
24245         (GST_START_TEST):
24246           enable cleanup again after fixing the leak
24247         * docs/README:
24248           some more info on docs
24249
24250 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24251
24252         * check/Makefile.am:
24253           re-enable tests now that leaks are plugged
24254         * check/gst/gst.c:
24255         * check/gst/gstbin.c:
24256         * check/gst/gstpipeline.c:
24257           add some more tests while fixing leaks
24258         * common/check.mak:
24259           make sure binaries are uptodate when valgrinding/gdbing
24260         * gst/gst.c:
24261         * gst/gstelementfactory.c:
24262           remove a ref too many, and add a FIXME for when we get
24263           round to disposing of classes
24264         * gst/gstplugin.c:
24265           fix the refcounting when loading a plugin from a file and
24266           the code pretends that the pointer is the same even though
24267           of course it can change
24268         * gst/gstpluginfeature.c:
24269           unref plugins marked cached (a bit confusing as a name)
24270           as the docs state should be done
24271           various doc additions to explain refcounting
24272         * gst/gstregistry.c:
24273         * gst/gstregistryxml.c:
24274           debugging
24275
24276 2005-09-19  Wim Taymans  <wim@fluendo.com>
24277
24278         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
24279         * check/gst/gstbus.c: (message_func_eos), (message_func_app),
24280         (send_messages), (GST_START_TEST), (gstbus_suite):
24281         * check/gst/gstpipeline.c: (GST_START_TEST):
24282         * check/pipelines/cleanup.c: (run_pipeline):
24283         * check/pipelines/simple_launch_lines.c: (run_pipeline),
24284         (GST_START_TEST):
24285         * gst/gstbus.c: (gst_bus_have_pending), (gst_bus_source_prepare),
24286         (gst_bus_source_check), (gst_bus_source_dispatch),
24287         (gst_bus_create_watch), (gst_bus_add_watch_full),
24288         (gst_bus_add_watch), (poll_func), (poll_timeout), (gst_bus_poll):
24289         * gst/gstbus.h:
24290         * tools/gst-launch.c: (event_loop):
24291         * tools/gst-md5sum.c: (event_loop):
24292         GstBusHandler -> GstBusFunc, return value has the same meaning as
24293         any other GSource (FALSE == remove source).
24294         _add_watch() and _add_watch_full() now take a MessageType mask to
24295         only handle specific types of messages.
24296         _poll() returns the GstMessage instead of the message type to avoid
24297         race conditions.
24298         _have_pending() takes a MessageType mask now too.
24299         Added testsuite for multiple bus watches.
24300         Fix testsuites and applications for new bus API.
24301
24302 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24303
24304         * check/Makefile.am:
24305           mark a bunch of the tests as to fix until we fix them
24306
24307 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24308
24309         * common/check.mak:
24310           use GST_PLUGIN settings for valgrind tests as well, so we're
24311           valgrinding the correct thing
24312         * gst/gst.c: (init_post):
24313           plug another leak
24314
24315 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24316
24317         * gst/gst.c: (init_post), (gst_deinit):
24318         * gst/gstelementfactory.c: (gst_element_factory_class_init),
24319         (gst_element_factory_finalize), (gst_element_factory_cleanup):
24320         * gst/gstindex.c: (gst_index_factory_class_init),
24321         (gst_index_factory_finalize):
24322         * gst/gstobject.c: (gst_object_dispose):
24323         * gst/gstplugin.c: (gst_plugin_finalize), (gst_plugin_class_init),
24324         (gst_plugin_load_file), (gst_plugin_desc_free):
24325         * gst/gstpluginfeature.c: (gst_plugin_feature_class_init),
24326         (gst_plugin_feature_finalize):
24327         * gst/gstregistry.c: (gst_registry_class_init),
24328         (gst_registry_init), (gst_registry_finalize),
24329         (gst_registry_get_default), (gst_registry_deinit):
24330         * gst/gstregistry.h:
24331         * gst/gstregistryxml.c: (load_feature), (load_plugin):
24332           various cleanups and memleak plugging.  make valgrind is happy now.
24333
24334 2005-09-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24335
24336         * common/check.mak:
24337           add a check-valgrind target
24338
24339 2005-09-18  David Schleef  <ds@schleef.org>
24340
24341         * tools/gst-inspect.c: Revert the GOption code.
24342
24343 2005-09-17  David Schleef  <ds@schleef.org>
24344
24345         * check/Makefile.am: Fix environment variables.
24346         * check/gst/gstplugin.c: Fix for API changes.
24347         * tools/gst-inspect.c: Fix for API changes.
24348         * tools/gst-xmlinspect.c: Fix for API changes.
24349         * gst/gstelementfactory.c:
24350         * gst/gstplugin.c:
24351         * gst/gstplugin.h:
24352         * gst/gstpluginfeature.c:
24353         * gst/gstpluginfeature.h:
24354         * gst/gstregistry.c:
24355         * gst/gstregistry.h:
24356         * gst/gstregistryxml.c:
24357         * gst/gsttypefind.c:
24358         * gst/gsttypefindfactory.c:
24359         * gst/indexers/gstfileindex.c:
24360         * gst/indexers/gstmemindex.c:
24361         * gst/schedulers/Makefile.am:
24362           Change registry to keep track of both plugins and features,
24363           removing the feature tracking from plugins themselves.
24364
24365 2005-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
24366
24367         * check/Makefile.am:
24368         * tools/gst-register.1.in:
24369           remove gst-register
24370
24371 2005-09-15  David Schleef  <ds@schleef.org>
24372
24373         * check/gst/gstplugin.c:
24374         * gst/gstelementfactory.c:
24375         * gst/gstplugin.c:
24376         * gst/gstpluginfeature.c:
24377         * gst/gstregistry.c:
24378           Getting tired of debugging.  Disabled all the unreffing of
24379           plugins and features, which fixes the segfaults, but of
24380           course leaks like crazy.  At least playbin works.
24381
24382 2005-09-15  David Schleef  <ds@schleef.org>
24383
24384         * check/gst/gstplugin.c: (register_check_elements),
24385         (GST_START_TEST), (peek), (suggest), (gst_plugin_suite):
24386         More testing
24387         * gst/elements/gsttypefindelement.c: Fix refcounting.
24388         * gst/gsttypefind.c:
24389         * gst/gsttypefindfactory.c:
24390         * gst/gsttypefindfactory.h:
24391
24392 2005-09-15  David Schleef  <ds@schleef.org>
24393
24394         * gst/gstindex.c: get refcounting correct.
24395         * gst/gstregistry.c: Handle the case where a feature/plugin is
24396           not found.
24397
24398 2005-09-15  David Schleef  <ds@schleef.org>
24399
24400         * check/Makefile.am:
24401         * check/gst/gstplugin.c: Add test
24402         * gst/gstplugin.c: Fix problems noticed by testsuite
24403         * gst/gstplugin.h:
24404         * gst/gstregistry.c: 
24405         * gst/gstregistry.h:
24406
24407 2005-09-15  David Schleef  <ds@schleef.org>
24408
24409         * gst/gstplugin.c: Implement semi-decent recounting and locking
24410           in plugins and plugin features.
24411         * gst/gstplugin.h:
24412         * gst/gstpluginfeature.c:
24413         * gst/gstpluginfeature.h:
24414         * gst/gstregistry.c:
24415
24416 2005-09-15  Michael Smith <msmith@fluendo.com>
24417
24418         * gst/gstregistry.c: (gst_registry_get_feature_list):
24419           Implement this. Makes oggdemux work; decodebin still broken.
24420
24421 2005-09-14  David Schleef  <ds@schleef.org>
24422
24423         * configure.ac: Add -no-undefined to GST_PLUGIN_LDFLAGS (bug
24424           #316076)
24425         * gst/base/Makefile.am: Add -no-undefined to LDFLAGS for libs
24426         * gst/check/Makefile.am:
24427         * libs/gst/controller/Makefile.am:
24428         * libs/gst/dataprotocol/Makefile.am:
24429
24430 2005-09-14  David Schleef  <ds@schleef.org>
24431
24432         * configure.ac: Remove getbits library.  Nothing uses it, and
24433           it should be in something like liboil if someone did want
24434           to use it.
24435         * libs/gst/Makefile.am:
24436         * libs/gst/getbits/Makefile.am:
24437         * libs/gst/getbits/gbtest.c:
24438         * libs/gst/getbits/getbits.c:
24439         * libs/gst/getbits/getbits.h:
24440         * libs/gst/getbits/gstgetbits_generic.c:
24441         * libs/gst/getbits/gstgetbits_i386.s:
24442         * libs/gst/getbits/gstgetbits_inl.h:
24443
24444 2005-09-14  David Schleef  <ds@schleef.org>
24445
24446         * gst/Makefile.am: Dist glib-compat.h
24447
24448 2005-09-14  David Schleef  <ds@schleef.org>
24449
24450         * configure.ac: Remove gst/registries, since it's no longer used.
24451         * gst/registries/Makefile.am:
24452         * gst/registries/gstlibxmlregistry.c:
24453         * gst/registries/gstlibxmlregistry.h:
24454         * gst/registries/gstxmlregistry.c:
24455         * gst/registries/gstxmlregistry.h:
24456         * gst/registries/registrytest.c:
24457
24458 2005-09-14  David Schleef  <ds@schleef.org>
24459
24460         * gst/glib-compat.h:
24461         * gst/gstregistryxml.c:
24462           Convergence is near.  Seriously.
24463
24464 2005-09-14  David Schleef  <ds@schleef.org>
24465
24466         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
24467         * gst/glib-compat.h:
24468           Attempt #4 to appease the buildbots.
24469
24470 2005-09-14  David Schleef  <ds@schleef.org>
24471
24472         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
24473           Attempt #3.
24474
24475 2005-09-14  David Schleef  <ds@schleef.org>
24476
24477         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
24478         Attempt #2.
24479
24480 2005-09-14  David Schleef  <ds@schleef.org>
24481
24482         * gst/Makefile.am: Oh yeah, libgstreamer.so needs to contain
24483           the new functions.
24484
24485 2005-09-14  David Schleef  <ds@schleef.org>
24486
24487         * gst/glib-compat.c: (g_mkdir_with_parents), (g_mkdir), (g_stat):
24488         * gst/glib-compat.h: Add some functions that are in newer versions
24489           of glib than we care to require.
24490         * gst/gstregistryxml.c: Use them.
24491
24492 2005-09-14  David Schleef  <ds@schleef.org>
24493
24494         * po/POTFILES.in: remove gst-register.c
24495
24496 2005-09-14  David Schleef  <ds@schleef.org>
24497
24498         * docs/gst/gstreamer-docs.sgml:
24499         * docs/gst/gstreamer-sections.txt:
24500         * docs/gst/gstreamer.types:
24501         * docs/gst/tmpl/gstelement.sgml:
24502         * docs/gst/tmpl/gstplugin.sgml:
24503         * docs/gst/tmpl/gstpluginfeature.sgml:
24504           Documentation updates for registry changes.
24505
24506 2005-09-14  David Schleef  <ds@schleef.org>
24507
24508         * gst/gstregistryxml.c: Copy g_mkdir_with_parent() from glib,
24509           because we don't require glib-2.8.
24510
24511 2005-09-14  David Schleef  <ds@schleef.org>
24512
24513         * gst/gstregistryxml.c: Added.  Essentially moved out of the
24514           registries directory.
24515
24516 2005-09-14  David Schleef  <ds@schleef.org>
24517
24518         * check/Makefile.am:
24519         * check/generic/states.c:
24520         * gst/Makefile.am:
24521         * gst/gst.c:
24522         * gst/gst.h:
24523         * gst/gst_private.h:
24524         * gst/gstelementfactory.c:
24525         * gst/gstindex.c:
24526         * gst/gstinfo.c:
24527         * gst/gstplugin.c:
24528         * gst/gstplugin.h:
24529         * gst/gstpluginfeature.c:
24530         * gst/gstpluginfeature.h:
24531         * gst/gstregistry.c:
24532         * gst/gstregistry.h:
24533         * gst/gstregistrypool.c: remove
24534         * gst/gstregistrypool.h: remove
24535         * gst/gsttypefind.c:
24536         * gst/gsttypefindfactory.c:
24537         * gst/gsturi.c:
24538         * tools/Makefile.am:
24539         * tools/gst-compprep.c:
24540         * tools/gst-inspect.c:
24541         * tools/gst-register.c: remove
24542         * tools/gst-xmlinspect.c:
24543           Registry rewrite.  Changes registry from being a file created
24544           by a tool into a simple cache file created automatically by 
24545           libgstreamer.  Removed gst-register (because it's no longer
24546           needed).  Remove registry pools, because we only have one
24547           registry implementation (XML).  Fix up other subsystems as
24548           necessary.
24549
24550 2005-09-13  Michael Smith <msmith@fluendo.com>
24551
24552         * gst/gstconfig.h.in:
24553           Don't Use windows linking attributes for MinGW. Fixes #316157
24554
24555 2005-09-13  Thomas Vander Stichele  <thomas at apestaart dot org>
24556
24557         * gst/gstutils.c: (set_state_async_thread_func),
24558         (gst_element_set_state_async):
24559           Apparently people think it's better if this function doesn't
24560           try to set the state to whatever state was asked for on the first
24561           call to this function for any object.  Seriously.
24562
24563 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24564
24565         * check/gst/gstpipeline.c: (GST_START_TEST):
24566         * docs/gst/gstreamer-sections.txt:
24567         * gst/gstutils.c: (set_state_async_thread_func),
24568         (gst_element_set_state_async):
24569         * gst/gstutils.h:
24570           add a "gst_element_set_state_async" method that
24571           sets the state and starts a thread to make sure the state
24572           change completes as best as it can
24573
24574 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24575
24576         * check/gst/gstpipeline.c: (GST_START_TEST), (gst_pipeline_suite):
24577           codify design+behaviour in testsuite after discussion
24578
24579 2005-09-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24580
24581         * docs/gst/tmpl/gstelement.sgml:
24582         * docs/manual/appendix-quotes.xml:
24583           add a quote
24584         * gst/gstelement.c: (gst_element_set_state):
24585           add some debug
24586
24587 2005-09-12  Jan Schmidt  <thaytan@mad.scientist.com>
24588
24589         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
24590         (gst_base_transform_prepare_output_buf),
24591         (gst_base_transform_handle_buffer):
24592         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip),
24593         (gst_capsfilter_prepare_buf):
24594           Remove the requirement for sub-classes to call the parent
24595           implementation of prepare_output_buffer with a wrapper function.
24596           
24597         * gst/gsttaglist.h:
24598         * gst/gsttagsetter.h:
24599           Fix #define wrapper
24600
24601 2005-09-11  Stefan Kost  <ensonic@users.sf.net>
24602
24603         * docs/gst/gstreamer-sections.txt:
24604           more doc cleanups
24605
24606 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
24607
24608         * docs/gst/gstreamer-sections.txt:
24609         * docs/gst/tmpl/gstelement.sgml:
24610         * docs/gst/tmpl/gstplugin.sgml:
24611         * gst/gstminiobject.c:
24612         * gst/gstvalue.h:
24613           docs now stop throwing warnings
24614
24615 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
24616
24617         * docs/gst/gstreamer-sections.txt:
24618         * docs/gst/gstreamer.types:
24619         * docs/gst/tmpl/gstpad.sgml:
24620         * docs/gst/tmpl/gsttypes.sgml:
24621         * gst/base/gstadapter.h:
24622         * gst/base/gstbasesink.h:
24623         * gst/base/gstbasesrc.h:
24624         * gst/gstbin.h:
24625         * gst/gstbuffer.h:
24626         * gst/gstbus.h:
24627         * gst/gstcaps.h:
24628         * gst/gstclock.h:
24629         * gst/gstelement.h:
24630         * gst/gstevent.h:
24631         * gst/gstmessage.h:
24632         * gst/gstpad.h:
24633         * gst/gststructure.c:
24634         * gst/registries/gstlibxmlregistry.h:
24635           various documentation fixes
24636
24637 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
24638
24639         * docs/gst/gstreamer-sections.txt:
24640         * docs/gst/tmpl/gstvalue.sgml:
24641           rearrange gstvalue section
24642         * gst/gstutils.c: (gst_element_state_get_name):
24643           NONE -> VOID
24644         * gst/gstvalue.c: (_gst_value_initialize):
24645         * gst/gstvalue.h:
24646           doc updates
24647
24648 2005-09-10  Jan Schmidt  <thaytan@mad.scientist.com>
24649
24650         * check/gst-libs/controller.c:
24651           Header include fix.
24652         * gst/base/gstbasetransform.c:
24653         (gst_base_transform_default_prepare_buf),
24654         (gst_base_transform_handle_buffer):
24655         * gst/base/gstbasetransform.h:
24656           Some more basetransform changes and fixes to enable sub-classes
24657           that modify buffer metadata only.
24658         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
24659         (gst_capsfilter_init), (gst_capsfilter_transform_ip),
24660         (gst_capsfilter_prepare_buf):
24661           If the output pad has fixed allowed caps and input buffers 
24662           don't have any, set the fixed caps on outgoing buffers.
24663
24664 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
24665         * check/elements/identity.c: (GST_START_TEST):
24666           Make the error a little clearer when the test fails because
24667           identity made a copy of the buffer.
24668         * docs/gst/gstreamer-sections.txt:
24669           New symbols in gstbasetransform.h
24670         * gst/base/gstbasetransform.c: (gst_base_transform_class_init),
24671         (gst_base_transform_init), (gst_base_transform_transform_size),
24672         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
24673         (gst_base_transform_default_prepare_buf),
24674         (gst_base_transform_get_unit_size),
24675         (gst_base_transform_buffer_alloc),
24676         (gst_base_transform_handle_buffer), (gst_base_transform_chain),
24677         (gst_base_transform_change_state),
24678         (gst_base_transform_set_passthrough),
24679         (gst_base_transform_set_in_place),
24680         (gst_base_transform_is_in_place):
24681         * gst/base/gstbasetransform.h:
24682           Change BaseTransform to separate in_place operate from same_caps
24683           output. in_place implies that the element can perform the transform
24684           on incoming buffers in-place, even if the caps on the output are
24685           different.
24686           Sub-class elements can now implement special buffer allocation
24687           methods for outgoing buffers if they wish to.
24688           Big documentation addition.
24689         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_ip):
24690         * gst/elements/gstelements.c:
24691           Changes for basetransform modifications.
24692         * gst/elements/Makefile.am:
24693         * gst/elements/gstfdsrc.c: (gst_fdsrc_init), (gst_fdsrc_create):
24694           Compile fix. Extra debug output.
24695
24696 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24697
24698         * check/gst/gstpad.c: (GST_START_TEST), (name_is_valid),
24699         (gst_pad_suite):
24700           add tests for valid pad naming
24701         * gst/check/gstcheck.c: (gst_check_log_message_func),
24702         (gst_check_log_critical_func):
24703           add ASSERT_WARNING
24704           remove printing of code, it is fragile when the code contains
24705           % and the line number is enough info
24706         * gst/check/gstcheck.h:
24707         * gst/gstpad.c: (gst_pad_template_new):
24708           fix memleaks
24709
24710 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24711
24712         * configure.ac:
24713           say what CHECK flags we use
24714         * docs/libs/gstreamer-libs.types:
24715         * libs/gst/controller/Makefile.am:
24716         * libs/gst/controller/gst-controller.c:
24717         * libs/gst/controller/gst-controller.h:
24718         * libs/gst/controller/gst-helper.c:
24719         * libs/gst/controller/gst-interpolation.c:
24720         * libs/gst/controller/gstcontroller.c:
24721         * libs/gst/controller/gsthelper.c:
24722         * libs/gst/controller/gstinterpolation.c:
24723         * tools/gst-inspect.c: (print_plugin_info):
24724           we don't use dashes in header names
24725
24726 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
24727
24728         * check/Makefile.am:
24729         * check/gst/.cvsignore:
24730         * check/gst/gstpipeline.c: (pop_messages), (GST_START_TEST),
24731         (gst_pipeline_suite), (main):
24732           adding a test for pipelines and state changes
24733         * gst/gstutils.c: (get_state_func):
24734           add some debugging
24735         * gstreamer.spec.in:
24736           fix up spec file
24737
24738 2005-09-08  Michael Smith <msmith@fluendo.com>
24739
24740         * gst/elements/gstfilesrc.c: (gst_file_src_map_region),
24741         (gst_file_src_map_small_region), (gst_file_src_create_mmap),
24742         (gst_file_src_is_seekable), (gst_file_src_get_size),
24743         (gst_file_src_start):
24744         * gst/elements/gstfilesrc.h:
24745           Various fixes for unseekable, unmmapable, and non-normal files, so
24746           that fallback to read() rather than mmap() works.
24747         * gst/gstevent.c: (gst_event_new_newsegment):
24748           Allow newsegment events with segment_start == segment_end, as will
24749           correctly happen if you use filesrc on a zero-size file, for
24750           example.
24751
24752 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
24753
24754         * gst/gstplugin.c: (gst_plugin_load_file):
24755           Call g_module_close when we don't load the module
24756
24757         * gst/registries/gstlibxmlregistry.c:
24758         (gst_xml_registry_get_property):
24759           Port leak fix from 0.8
24760
24761 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
24762
24763         * docs/gst/gstreamer-docs.sgml:
24764         * docs/gst/tmpl/.cvsignore:
24765         * docs/gst/tmpl/gsttrace.sgml:
24766         * docs/gst/tmpl/gsttrashstack.sgml:
24767         * gst/Makefile.am:
24768         * gst/gst.h:
24769         * gst/gstelement.h:
24770         * gst/gstevent.h:
24771         * gst/gstmessage.c:
24772         * gst/gstmessage.h:
24773         * gst/gsttag.c:
24774         * gst/gsttag.h:
24775         * gst/gsttaginterface.c:
24776         * gst/gsttaginterface.h:
24777         * gst/gsttaglist.c:
24778         * gst/gsttaglist.h:
24779         * gst/gsttagsetter.c:
24780         * gst/gsttagsetter.h:
24781         * gst/gsttrace.c:
24782         * gst/gsttrace.h:
24783         * gst/gsttrashstack.c:
24784           renamed gsttag -> gsttaglist, gsttaginterface -> gsttagsetter
24785           inlined docs for gsttrace, gsttrashstack
24786
24787 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
24788
24789         * gst/Makefile.am:
24790         * gst/elements/gstbufferstore.h:
24791         * gst/elements/gsttypefindelement.c:
24792         * gst/elements/gsttypefindelement.h:
24793         * gst/gst.h:
24794         * gst/gsttypefind.c:
24795         * gst/gsttypefind.h:
24796         * gst/gsttypefindfactory.c: (gst_type_find_factory_get_type),
24797         (gst_type_find_factory_class_init), (gst_type_find_factory_init),
24798         (gst_type_find_factory_dispose),
24799         (gst_type_find_factory_unload_thyself),
24800         (gst_type_find_load_plugin), (gst_type_find_factory_get_list),
24801         (gst_type_find_factory_get_caps),
24802         (gst_type_find_factory_get_extensions),
24803         (gst_type_find_factory_call_function):
24804         * gst/gsttypefindfactory.h:
24805         * gst/registries/gstlibxmlregistry.c:
24806         * gst/registries/gstxmlregistry.c:
24807           splitted gsttypefind into gsttypefind, gsttypefindfactory
24808
24809 2005-09-07  Andy Wingo  <wingo@pobox.com>
24810
24811         * gst/base/gstbasesink.c (gst_base_sink_activate_pull): Fix a race
24812         condition whereby the pad's task function is entered before the
24813         pad_mode variable was set.
24814
24815 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
24816
24817         * gst/gstpad.c: (gst_pad_alloc_buffer):
24818           Catch misbehaving pad_alloc functions that don't
24819           set up caps and do it for them.
24820
24821 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
24822
24823         * check/pipelines/simple_launch_lines.c: (run_pipeline):
24824           test for pipe!=NULL
24825         * docs/gst/tmpl/.cvsignore:
24826         * docs/gst/tmpl/gstmemchunk.sgml:
24827         * docs/gst/tmpl/gstparse.sgml:
24828         * docs/gst/tmpl/gsttaglist.sgml:
24829         * docs/gst/tmpl/gsttagsetter.sgml:
24830         * docs/gst/tmpl/gsttypefind.sgml:
24831         * docs/gst/tmpl/gsttypefindfactory.sgml:
24832         * gst/gstmemchunk.c:
24833         * gst/gstparse.c:
24834         * gst/gsttag.c:
24835         * gst/gsttaginterface.c:
24836         * gst/gsttypefind.c:
24837         * gst/gsttypefind.h:
24838           inlined more docs
24839
24840 === release 0.9.2 ===
24841
24842 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
24843
24844         * NEWS:
24845         * RELEASE:
24846         * configure.ac:
24847           releasing 0.9.2, "South"
24848
24849 2005-09-05  Andy Wingo  <wingo@pobox.com>
24850
24851         * gst/registries/gstxmlregistry.h:
24852         * gst/registries/gstxmlregistry.c: Um... resurrect...
24853         
24854         * gst/registries/gstxmlregistry.h:
24855         * gst/registries/gstxmlregistry.c: and update to newer API.
24856         Incidentally they should be a bit faster now that they don't have
24857         to parse the caps.
24858         
24859 2005-09-05  Andy Wingo  <wingo@pobox.com>
24860
24861         * gst/registries/gstxmlregistry.h:
24862         * gst/registries/gstxmlregistry.c: Remove from CVS, they were
24863         replaced by the libxml registry a while back
24864
24865 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
24866
24867         * docs/gst/tmpl/gstplugin.sgml:
24868         * gst/elements/gstelements.c:
24869         * gst/gst.c:
24870         * gst/gstplugin.c: (gst_plugin_register_func),
24871         (gst_plugin_desc_copy), (gst_plugin_desc_free),
24872         (gst_plugin_get_source):
24873         * gst/gstplugin.h:
24874         * gst/registries/gstlibxmlregistry.c: (load_plugin),
24875         (gst_xml_registry_save_plugin):
24876         * gst/registries/gstxmlregistry.c: (gst_xml_registry_parse_plugin),
24877         (gst_xml_registry_save_plugin):
24878         * tools/gst-inspect.c: (print_plugin_info):
24879           add a "source" plugin description field, to represent the source
24880           module this plugin is a part of.  By default GST_PLUGIN_DEFINE
24881           will set it to PACKAGE, which is automake's idea of the name of
24882           the source project.
24883
24884 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
24885
24886         * Makefile.am:
24887         * autogen.sh:
24888         * configure.ac:
24889         * docs/Makefile.am:
24890         * docs/faq/Makefile.am:
24891         * docs/gst/tmpl/gstelement.sgml:
24892         * docs/gst/tmpl/gsttypes.sgml:
24893         * docs/htmlinstall.mak:
24894         * docs/manual/Makefile.am:
24895         * docs/pwg/Makefile.am:
24896           reorganize doc build a little
24897           split out docbook and gtk-doc stuff
24898           have two separate --enable's and enable them through autogen
24899           but disable by default in configure (to be similar to other
24900           projects)
24901         * gstreamer.spec.in:
24902           clean up docs install
24903         * po/af.po:
24904         * po/az.po:
24905         * po/ca.po:
24906         * po/cs.po:
24907         * po/de.po:
24908         * po/en_GB.po:
24909         * po/fr.po:
24910         * po/it.po:
24911         * po/nb.po:
24912         * po/nl.po:
24913         * po/ru.po:
24914         * po/sq.po:
24915         * po/sr.po:
24916         * po/sv.po:
24917         * po/tr.po:
24918         * po/uk.po:
24919         * po/vi.po:
24920           translation updates
24921
24922 2005-09-03  Tim-Philipp Müller  <tim at centricular dot net>
24923
24924         * gst/base/gstbasesink.c: (gst_base_sink_pad_buffer_alloc):
24925           Add comment.
24926           
24927         * gst/elements/gstfakesink.c: (gst_fake_sink_init),
24928         (gst_fake_sink_change_state):
24929           Make state change function thread-safe.
24930           
24931         * gst/gstpad.c: (gst_pad_alloc_buffer):
24932           Set offset on generic buffer allocated by fallback.
24933
24934 2005-09-03  Stefan Kost  <ensonic@users.sf.net>
24935
24936         * docs/gst/gstreamer-sections.txt:
24937         * docs/gst/tmpl/gstelement.sgml:
24938         * gst/gstpad.c:
24939         * libs/gst/controller/gst-controller.c:
24940         (gst_controlled_property_set_interpolation_mode),
24941         (gst_controlled_property_new),
24942         (gst_controller_find_controlled_property):
24943          run the wingo-magic script against the docs
24944
24945 2005-09-02  Stefan Kost  <ensonic@users.sf.net>
24946
24947         * docs/gst/gstreamer-docs.sgml:
24948         * docs/gst/gstreamer-sections.txt:
24949         * docs/gst/tmpl/.cvsignore:
24950         * docs/gst/tmpl/gstelementdetails.sgml:
24951         * docs/gst/tmpl/gstelementfactory.sgml:
24952         * gst/gst.c:
24953         * gst/gstbus.c:
24954         * gst/gstelementfactory.c:
24955         * gst/gstelementfactory.h:
24956           merged elementdetails docs into elementfactory docs
24957           inlined both
24958
24959 2005-09-02  Andy Wingo  <wingo@pobox.com>
24960
24961         * gst/gstelement.h: Add magical pixie dust to make glib-mkenums
24962         consider this enum an enum and not a flags.
24963
24964 2005-09-02  Stefan Kost  <ensonic@users.sf.net>
24965
24966         * docs/gst/gstreamer-docs.sgml:
24967         * docs/gst/tmpl/.cvsignore:
24968         * docs/gst/tmpl/gstghostpad.sgml:
24969         * docs/gst/tmpl/gstiterator.sgml:
24970         * docs/gst/tmpl/gstmacros.sgml:
24971         * docs/gst/tmpl/gstrealpad.sgml:
24972         * docs/gst/tmpl/gstregistry.sgml:
24973         * docs/gst/tmpl/gstregistrypool.sgml:
24974         * docs/gst/tmpl/gststructure.sgml:
24975         * docs/gst/tmpl/gstsystemclock.sgml:
24976         * docs/gst/tmpl/gsttrace.sgml:
24977         * gst/gstghostpad.c:
24978         * gst/gstmacros.h:
24979         * gst/gstmemchunk.c:
24980         * gst/gstmemchunk.h:
24981         * gst/gstqueue.c:
24982         * gst/gstregistry.c:
24983         * gst/gstregistrypool.c:
24984         * gst/gststructure.c:
24985         * gst/gstsystemclock.c:
24986           more docs inlined
24987
24988 2005-09-02  Andy Wingo  <wingo@pobox.com>
24989
24990         * gst/gstelement.h (GstState): Renamed from GstElementState,
24991         changed to be a normal enum instead of flags.
24992         (GstStateChangeReturn): Renamed from GstElementStateReturn, names
24993         munged to be GST_STATE_CHANGE_*.
24994         (GST_STATE_CHANGE): Renamed from GST_STATE_TRANSITION, updated to
24995         work with the new state representation.
24996         (GstStateChange): New enumeration of possible state transitions.
24997         Replaces GST_STATE_FOO_TO_BAR with GST_STATE_CHANGE_FOO_TO_BAR.
24998         (GstElementClass::change_state): Pass the GstStateChange along as
24999         an argument. Helps language bindings, so they don't have to use
25000         tricky lock-needing macros like GST_STATE_CHANGE ().
25001
25002         * scripts/update-states (file): New script. Run it on a file to
25003         update it for state naming and API changes. Updates files in
25004         place.
25005
25006         * All files updated for the new API.
25007
25008 2005-09-02  Thomas Vander Stichele  <thomas at apestaart dot org>
25009
25010         * gst/gsttrace.c: (gst_trace_flush), (gst_trace_text_flush):
25011         * gst/gstutils.c: (gst_util_set_value_from_string),
25012         (gst_util_set_object_arg):
25013           fix a bunch of unchecked return values
25014         * tools/gst-complete.c: (main):
25015         * gstreamer.spec.in:
25016           clean up a little
25017
25018 2005-09-01  Wim Taymans  <wim@fluendo.com>
25019
25020         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
25021         (gst_base_sink_event), (gst_base_sink_do_sync),
25022         (gst_base_sink_handle_event):
25023         * gst/base/gstbasesink.h:
25024         Handle newsegments more correctly.
25025
25026         * gst/gstbus.c:
25027         Fix docs.
25028
25029         * gst/gstevent.c: (gst_event_new_newsegment):
25030         A newsegment cannot have a start_time of -1
25031
25032 2005-09-01  Tim-Philipp Müller  <tim at centricular dot net>
25033
25034         * win32/gstenumtypes.c:
25035         * win32/gstenumtypes.h:
25036           Update
25037
25038 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
25039
25040         * libs/gst/controller/gst-controller.c:
25041         (gst_controlled_property_set_interpolation_mode),
25042         (gst_controlled_property_new):
25043          fixed boolean again
25044
25045 2005-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
25046
25047         * docs/faq/gst-uninstalled:
25048           add -good
25049         * gst/gstevent.c:
25050         * gst/gstevent.h:
25051           remove wrong docs
25052         * gst/gstutils.c: (gst_element_link_filtered):
25053         * gst/gstutils.h:
25054           add gst_element_link_filtered
25055
25056 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
25057
25058         * docs/gst/gstreamer-docs.sgml:
25059         * docs/gst/gstreamer-sections.txt:
25060         * docs/gst/tmpl/.cvsignore:
25061         * docs/gst/tmpl/gsterror.sgml:
25062         * docs/gst/tmpl/gstfilter.sgml:
25063         * docs/gst/tmpl/gsturihandler.sgml:
25064         * docs/gst/tmpl/gsturitype.sgml:
25065         * docs/gst/tmpl/gstutils.sgml:
25066         * docs/gst/tmpl/gstxml.sgml:
25067         * gst/gsterror.c:
25068         * gst/gsterror.h:
25069         * gst/gstfilter.c:
25070         * gst/gsturi.c:
25071         * gst/gsturitype.c:
25072         * gst/gstutils.c:
25073         * gst/gstxml.c:
25074           inlined more docs, fixed double id-ref
25075
25076 2005-08-31  Wim Taymans  <wim@fluendo.com>
25077
25078         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
25079         (gst_base_transform_handle_buffer):
25080         Passthrough elements don't need the caps as they don't care.
25081
25082 2005-08-31  Wim Taymans  <wim@fluendo.com>
25083
25084         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
25085         (gst_base_transform_handle_buffer), (gst_base_transform_chain):
25086         Don't leak refcounts on buffers.
25087
25088 2005-08-31  Wim Taymans  <wim@fluendo.com>
25089
25090         * gst/base/gstbasetransform.c: (gst_base_transform_configure_caps),
25091         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
25092         (gst_base_transform_chain), (gst_base_transform_change_state):
25093         * gst/base/gstbasetransform.h:
25094         Handle the case where we are not negotiated more gracefully.
25095
25096 2005-08-31  Tim-Philipp Müller  <tim at centricular dot net>
25097
25098         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_init),
25099         (gst_file_src_map_region):
25100           Set READONLY flag on mmap'ed buffers, otherwise
25101           gst_buffer_make_writable() won't work properly (#314708).
25102
25103 2005-08-31  Wim Taymans  <wim@fluendo.com>
25104
25105         * gst/base/gstbasetransform.c: (gst_base_transform_handle_buffer):
25106         passthrough elements can even do inplace on non writable
25107         buffers (as they don't touch them).
25108
25109 2005-08-31  Stefan Kost  <ensonic@users.sf.net>
25110
25111         * check/gst-libs/controller.c: (gst_test_mono_source_get_property),
25112         (gst_test_mono_source_set_property),
25113         (gst_test_mono_source_class_init), (GST_START_TEST),
25114         (gst_controller_suite):
25115           more tests (hehe I have the most)
25116         * gst/gstbus.c:
25117           describe popping messages whenusing mulltiple sources
25118         * libs/gst/controller/gst-controller.c:
25119         (gst_controlled_property_set_interpolation_mode),
25120         (gst_controlled_property_new):
25121         * libs/gst/controller/gst-controller.h:
25122         * libs/gst/controller/gst-interpolation.c:
25123           implement boolean properties
25124
25125 2005-08-31  Wim Taymans  <wim@fluendo.com>
25126
25127         * gst/gstminiobject.c: (gst_mini_object_ref):
25128         Cannot assert that the refcount has to be positive
25129         since a disposed object can be resurrected.
25130
25131 2005-08-31  Wim Taymans  <wim@fluendo.com>
25132
25133         * gst/gstpad.c: (gst_pad_init):
25134         Revert change, need to first fix badly behaving 
25135         apps.
25136
25137 2005-08-30  Wim Taymans  <wim@fluendo.com>
25138
25139         * check/elements/fakesrc.c: (setup_fakesrc):
25140         * check/elements/identity.c: (setup_identity):
25141         Activate pads before using them.
25142
25143 2005-08-30  Wim Taymans  <wim@fluendo.com>
25144
25145         * gst/base/gstadapter.c: (gst_adapter_flush):
25146         Flushing out 0 bytes is ok for this function.
25147
25148         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
25149         no newsegment gives a warning and sets the start/stop to 
25150         invalid.
25151
25152         * gst/base/gstbasetransform.c: (gst_base_transform_change_state),
25153         (gst_base_transform_set_passthrough):
25154         Some debug info.
25155
25156         * gst/gstminiobject.c: (gst_mini_object_ref):
25157         Check refcount here too.
25158
25159         * gst/gstpad.c: (gst_pad_init):
25160         Pads are initially flushing and refusing data.
25161
25162         * gst/gstutils.c: (gst_element_link_pads_filtered):
25163         When adding a capsfilter element make sure it has the
25164         same state as the parent bin.
25165
25166 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
25167
25168         * docs/gst/tmpl/.cvsignore:
25169         * docs/gst/tmpl/gstformat.sgml:
25170         * docs/gst/tmpl/gstversion.sgml:
25171         * gst/gstbus.h:
25172         * gst/gstformat.c:
25173         * gst/gstformat.h:
25174         * gst/gstversion.h.in:
25175           more docs and two more inlined
25176
25177 2005-08-30  Wim Taymans  <wim@fluendo.com>
25178
25179         * gst/elements/gstfilesink.c: (gst_file_sink_class_init):
25180         Don't sync to clock.
25181
25182 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
25183
25184         * docs/gst/gstreamer-sections.txt:
25185           ultral33t func10ns deserve to appear in the docs actually
25186         * docs/gst/tmpl/.cvsignore:
25187         * docs/gst/tmpl/gstcompat.sgml:
25188         * docs/gst/tmpl/gstconfig.sgml:
25189         * gst/check/gstcheck.c:
25190         * gst/gstcompat.h:
25191         * gst/gstconfig.h.in:
25192           inlined more docs
25193
25194 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
25195
25196         * docs/gst/tmpl/.cvsignore:
25197         * docs/gst/tmpl/gstquery.sgml:
25198         * docs/gst/tmpl/gstutils.sgml:
25199         * gst/gstquery.c:
25200         * gst/gstquery.h:
25201           inlined and extended docs
25202
25203 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
25204
25205         * check/gst-libs/controller.c: (GST_START_TEST),
25206         (gst_controller_suite):
25207           more tests
25208         * docs/gst/tmpl/gstutils.sgml:
25209         * docs/libs/gstreamer-libs-sections.txt:
25210         * docs/libs/tmpl/gstdataprotocol.sgml:
25211           include path fixes
25212         * examples/controller/audio-example.c: (main):
25213           controller example works now
25214         * gst/gstclock.h:
25215           doc fixes
25216         * tools/gst-inspect.c: (print_element_properties_info):
25217           show param spec flags
25218
25219 2005-08-29  Andy Wingo  <wingo@pobox.com>
25220
25221         * gst/gstutils.c (gst_util_uint64_scale): New 3733t funct10n.
25222
25223 2005-08-28  Andy Wingo  <wingo@pobox.com>
25224
25225         * gst/gstutils.h (GST_BOILERPLATE_FULL): Prototype instance_init
25226         as having two arguments instead of just one. Allows superclasses
25227         to access information on subclasses -- see the terrible for() loop
25228         in gtype.c:g_type_create_instance for the reason why. All callers
25229         changed.
25230
25231 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
25232
25233         * docs/design/part-messages.txt:
25234           update info
25235         * docs/gst/tmpl/.cvsignore:
25236         * docs/gst/tmpl/gstcaps.sgml:
25237         * docs/gst/tmpl/gstclock.sgml:
25238         * gst/gstbus.c:
25239         * gst/gstcaps.c:
25240         * gst/gstcaps.h:
25241         * gst/gstclock.c:
25242         * gst/gstclock.h:
25243         * gst/gstmessage.c:
25244           added descriptions for bus and message
25245           inline caps and clock docs
25246
25247 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
25248
25249         * gst/gstmessage.c:
25250         * gst/gstmessage.h:
25251           doc fixes
25252
25253 2005-08-27  Stefan Kost  <ensonic@users.sf.net>
25254
25255         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size):
25256           fix div-by-zero
25257
25258 2005-08-26  Andy Wingo  <wingo@pobox.com>
25259
25260         * check/pipelines/simple_launch_lines.c (run_pipeline): Check
25261         element_set_state's return val.
25262         (test_2_elements): Add test that's been disabled for months.
25263
25264         * gst/elements/gstfakesink.c: Cleanups. Add can-activate-push and
25265         can-activate-pull properties.
25266
25267         * gst/elements/gstfakesrc.c: Cleanups. Add can-activate-push and
25268         can-activate-pull properties. Implement is_seekable so fakesrc can
25269         operate in pull mode.
25270
25271         * gst/base/gstbasesink.c (GstBaseSink): Remove has-loop, has-chain
25272         properties.
25273         (gst_base_sink_activate, gst_base_sink_activate_pull)
25274         (gst_base_sink_activate_push): Make activation mode choosing work.
25275         Cleanups.
25276         (gst_base_sink_chain, gst_base_sink_loop): Assert activation mode
25277         is right. Make pull mode work. Post an eos before pausing in pull
25278         mode.
25279         (gst_base_sink_change_state): Pay attention to the core's
25280         change_state() return val.
25281         
25282         * gst/base/gstbasesrc.c (GstBaseSrc): Remove has-loop,
25283         has-getrange properties. Cleanups.
25284         
25285         * gst/base/gstbasesrc.h (GstBaseSrc): Remove has_loop,
25286         has_getrange and replace with can_activate_pull and
25287         can_activate_push.
25288
25289         * gst/base/gstbasesink.h (GstBaseSink): Rearrange fields, add
25290         locking comments. Remove has_loop, has_chain and replace with
25291         can_activate_pull and can_activate_push.
25292
25293 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
25294
25295         * configure.ac:
25296         * examples/Makefile.am:
25297         * examples/metadata/Makefile.am:
25298         * examples/metadata/read-metadata.c: (message_loop),
25299         (have_pad_handler), (make_pipeline), (print_tag), (main):
25300           Add metadata reading example that loops over a list of filenames,
25301           dumping any tags found.
25302
25303         * gst/gstbus.c: (gst_bus_dispose):
25304         * gst/gstelement.c: (gst_element_dispose):
25305           Release a few potentially-held references in dispose.
25306
25307 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
25308
25309         * docs/gst/tmpl/gstminiobject.sgml:
25310           do *not* add tmpl/*.sgml files to CVS!
25311
25312 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
25313
25314         * libs/gst/bytestream/.cvsignore:
25315         * libs/gst/bytestream/Makefile.am:
25316         * libs/gst/bytestream/adapter.c:
25317         * libs/gst/bytestream/adapter.h:
25318         * libs/gst/bytestream/bytestream.c:
25319         * libs/gst/bytestream/bytestream.h:
25320         * libs/gst/bytestream/filepad.c:
25321         * libs/gst/bytestream/filepad.h:
25322           removing obsolete files
25323
25324 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
25325
25326         * docs/gst/gstreamer-docs.sgml:
25327         * docs/libs/gstreamer-libs-docs.sgml:
25328           disabed additional index entries again, as this makes docs-gen just
25329           slow and they aren't useful yet
25330         * docs/libs/gstreamer-libs-sections.txt:
25331           little -section.txt cleanup for libs
25332
25333 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
25334
25335         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
25336         * gst/base/gstbasetransform.c: (gst_base_transform_transform_size),
25337           fix up some debugging
25338         (gst_base_transform_get_unit_size),
25339         (gst_base_transform_buffer_alloc), (gst_base_transform_event),
25340         (gst_base_transform_handle_buffer):
25341         * gst/base/gstbasetransform.h:
25342           handle and store timed NEWSEGMENT events so that subclasses that
25343           calculate time by counting samples have a segment_start time they
25344           need to add to their timestamps - see audioresample
25345
25346 2005-08-26  Stefan Kost  <ensonic@users.sf.net>
25347
25348         * gst/gstbin.h:
25349           removed ';' from the end of macro defs
25350         * docs/gst/gstreamer-docs.sgml:
25351         * docs/gst/gstreamer-sections.txt:
25352         * docs/gst/tmpl/.cvsignore:
25353         * gst/gstbus.h:
25354         * gst/gstelement.c: (gst_element_class_init),
25355         (gst_element_set_state), (activate_pads),
25356         (gst_element_save_thyself):
25357         * gst/gstevent.c: (gst_event_new_newsegment):
25358         * gst/gstevent.h:
25359         * gst/gstiterator.c:
25360         * gst/gstiterator.h:
25361         * gst/gstpad.c:
25362         * gst/gstprobe.h:
25363         * gst/gstutils.c: (gst_pad_query_convert):
25364         * gst/gstutils.h:
25365           fixed parameter name mismatches between source, header and docs
25366           added some more docs, resolved the last batch of unused elements in
25367           docs (now someone needs to doc them)
25368
25369 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25370
25371         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_rebuild):
25372         * gst/registries/gstxmlregistry.c: (gst_xml_registry_rebuild):
25373           don't walk through the plugins backwards.  Where is all this
25374           reversed logic coming from ?
25375
25376 2005-08-25  Wim Taymans  <wim@fluendo.com>
25377
25378         * gst/base/gstbasetransform.c: (gst_base_transform_init),
25379         (gst_base_transform_transform_size),
25380         (gst_base_transform_configure_caps),
25381         (gst_base_transform_get_unit_size),
25382         (gst_base_transform_buffer_alloc),
25383         (gst_base_transform_change_state):
25384         * gst/base/gstbasetransform.h:
25385         Cache caps unit_size.
25386         Make sure we cannot negotiate up and downstream at the
25387         same time.
25388
25389 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25390
25391         * gst/gst.c: (init_pre), (init_post):
25392           register the installed plugin path after the env var
25393         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_save):
25394         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save):
25395           don't reverse order of paths; conserve the order of GST_PLUGIN_PATH
25396           directories, so the tests can prefer uninstalled over installed
25397
25398 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
25399
25400         * gst/base/gstbasetransform.h:
25401           comment
25402         * gst/gstpad.c:
25403           add to docs
25404
25405 2005-08-25  Wim Taymans  <wim@fluendo.com>
25406
25407         * gst/gstbin.c: (bin_bus_handler):
25408         Be a bit more conservative about the posted message.
25409         
25410         * gst/gstbus.c: (gst_bus_post):
25411         Some cleanups, warn wrong return values.
25412
25413 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
25414
25415         * check/gst/gstbin.c: (GST_START_TEST):
25416         * gst/gstbin.c: (bin_bus_handler):
25417         * gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
25418         (gst_message_new), (gst_message_new_eos), (gst_message_new_error),
25419         (gst_message_new_warning), (gst_message_new_tag),
25420         (gst_message_new_state_changed), (gst_message_new_segment_start),
25421         (gst_message_new_segment_done), (gst_message_new_custom):
25422         * gst/gstmessage.h:
25423         * tools/gst-launch.c: (event_loop):
25424         * tools/gst-md5sum.c: (event_loop):
25425           Revert unpopular change for GST_MESSAGE_SRC to GObject.
25426
25427 2005-08-25  Wim Taymans  <wim@fluendo.com>
25428
25429         * check/generic/states.c: (GST_START_TEST):
25430         Cleanup can be done at the end.
25431
25432         * gst/gsttask.c: (gst_task_get_type), (gst_task_finalize),
25433         (gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
25434         (gst_task_get_state), (gst_task_start), (gst_task_pause):
25435         Oh boy.. Thanks for finding this, Thomas. 
25436
25437 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
25438
25439         * docs/gst/gstreamer.types:
25440           added missing types
25441
25442 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
25443
25444         * docs/gst/gstreamer-docs.sgml:
25445         * docs/gst/gstreamer-sections.txt:
25446         * docs/gst/tmpl/.cvsignore:
25447         * gst/gstbin.c:
25448         * gst/gstiterator.c:
25449         * gst/gstutils.c:
25450         * gst/registries/gstxmlregistry.h:
25451           added missing classes and symbols (123 more to go)
25452           removed removed symbols from section file
25453           fixed many doc-comments
25454
25455 2005-08-24  Wim Taymans  <wim@fluendo.com>
25456
25457         * check/generic/states.c: (GST_START_TEST):
25458         Make sure all tasks are stopped.
25459
25460         * check/gst/gstbin.c: (GST_START_TEST):
25461         Unref after usage for proper valgrinding.
25462
25463         * gst/gstpad.c: (gst_pad_finalize), (gst_pad_stop_task):
25464         Really wait for the task to stop before destroying the
25465         mutex.
25466
25467         * gst/gstqueue.c: (gst_queue_sink_activate_push),
25468         (gst_queue_src_activate_push):
25469         Small cleanups. Don't stop the task when we did not start
25470         it.
25471
25472         * gst/gsttask.c: (gst_task_get_type), (gst_task_init),
25473         (gst_task_func), (gst_task_cleanup_all), (gst_task_set_lock),
25474         (gst_task_get_state), (gst_task_start), (gst_task_pause),
25475         (gst_task_join):
25476         * gst/gsttask.h:
25477         Protect the stream lock with the object lock.
25478         Disallow setting the stream lock when running.
25479         Add cleanup_all to wait for the threadpool to finish.
25480         Remove code to autoallocate a mutex if none was provided.
25481         Add _join() to wait for a task to stop.
25482         Protect the thread pool with a global lock.
25483
25484 2005-08-24  Wim Taymans  <wim@fluendo.com>
25485
25486         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
25487         (gst_base_sink_get_times), (gst_base_sink_do_sync),
25488         (gst_base_sink_handle_buffer), (gst_base_sink_change_state):
25489         * gst/base/gstbasesink.h:
25490         Handle newsegment events correctly.
25491         Drop buffers out of the segment range.
25492
25493 2005-08-22  Andy Wingo  <wingo@pobox.com>
25494
25495         * gst/gstutils.h (GST_BOILERPLATE_WITH_INTERFACE): New ghetto
25496         macro, implements an interface and gstimplementsinterface for a
25497         new type.
25498
25499 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
25500
25501         * check/Makefile.am:
25502         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
25503           add a test that does a bunch of state changes on elements
25504           needs some fixing for valgrind
25505         * check/states/sinks.c: (gst_object_suite):
25506           whitespace
25507         * gst/gstcaps.h:
25508           add prototype for gst_caps_is_equal_fixed
25509         * gst/gstplugin.c:
25510         * gst/gstregistrypool.c:
25511           doc fixes
25512
25513 2005-08-24  Andy Wingo  <wingo@pobox.com>
25514
25515         * gst/gstquery.c (gst_query_new_convert): Spew if we try to
25516         convert a negative value. Doesn't make much sense. Mostly this is
25517         here to force callers to ensure -1 maps to -1.
25518
25519 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
25520
25521         * docs/pwg/advanced-types.xml:
25522           Well done to Michael for catching my deliberate introduction
25523           of this spelling mistake. 
25524         * gst/gstbin.c: (gst_bin_remove_func), (bin_bus_handler):
25525         * gst/gstelement.h:
25526           Add GST_ELEMENT_UNPARENTING to prevent races so that we can
25527           unlink pads before removing the element from the bin.
25528
25529 2005-08-24  Andy Wingo  <wingo@pobox.com>
25530
25531         * gst/gst.c (parse_debug_list): Accept e.g. GST_DEBUG=4 to mean
25532         the same thing as GST_DEBUG=*:4.
25533         (parse_debug_level, parse_debug_category): New helper parsers.
25534
25535 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
25536
25537         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
25538         (gst_base_transform_transform_size), (gst_base_transform_getcaps),
25539         (gst_base_transform_setcaps), (gst_base_transform_get_unit_size),
25540         (gst_base_transform_buffer_alloc),
25541         (gst_base_transform_handle_buffer):
25542           use gboolean return values and pointers to size so we can use the
25543           full GST_BUFFER_SIZE range (guint) for buffer sizes
25544           use GstPadDirection for transform_caps
25545         * gst/base/gstbasetransform.h:
25546           rename get_size to get_unit_size since that's what it is
25547         * gst/elements/gstcapsfilter.c: (gst_capsfilter_transform_caps):
25548           use GstPadDirection for transform_caps
25549         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
25550         * gst/gstutils.h:
25551           cleanup and debugging
25552
25553 2005-08-24  Stefan Kost  <ensonic@users.sf.net>
25554
25555         * gst/gstelement.c: (gst_element_class_init),
25556         (gst_element_set_state), (activate_pads),
25557         (gst_element_save_thyself):
25558         * tools/gst-compprep.c: (main):
25559         * tools/gst-inspect.c: (print_element_properties_info):
25560         * tools/gst-xmlinspect.c: (print_element_properties):
25561           Fixed long standing mem-leak
25562
25563 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
25564
25565         * check/gst/gstbin.c: (GST_START_TEST):
25566         * gst/gstbin.c: (bin_bus_handler):
25567         * gst/gstmessage.c: (gst_message_finalize), (_gst_message_copy),
25568         (gst_message_new), (gst_message_new_eos), (gst_message_new_error),
25569         (gst_message_new_warning), (gst_message_new_tag),
25570         (gst_message_new_state_changed), (gst_message_new_segment_start),
25571         (gst_message_new_segment_done), (gst_message_new_custom):
25572         * gst/gstmessage.h:
25573         * tools/gst-launch.c: (event_loop):
25574         * tools/gst-md5sum.c: (event_loop):
25575           Change GST_MESSAGE_SRC to be a GObject rather than a GstObject, so
25576           that applications can sensibly post custom messages with references
25577           to their own objects.
25578
25579 2005-08-24  Andy Wingo  <wingo@pobox.com>
25580
25581         * gst/gstpad.c (gst_pad_fixate_caps): Check if the caps is fixed
25582         already.
25583
25584 2005-08-24  Wim Taymans  <wim@fluendo.com>
25585
25586         * gst/base/gstbasetransform.c: (gst_base_transform_init),
25587         (gst_base_transform_transform_caps),
25588         (gst_base_transform_transform_size),
25589         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
25590         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
25591         (gst_base_transform_handle_buffer):
25592         * gst/base/gstbasetransform.h:
25593         Many fixes and new features added by Thomas. Can now also do
25594         transforms with variable sizes and a custom fixate_caps function.
25595
25596 2005-08-24  Wim Taymans  <wim@fluendo.com>
25597
25598         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
25599         Some debugging.
25600
25601         * gst/gstclock.h:
25602         Cast to ClockTime before formatting to time.
25603
25604         * gst/gstutils.h:
25605         Cleanups.
25606
25607 2005-08-24  Stefan Kost  <ensonic@users.sf.net>
25608
25609         * check/gst-libs/controller.c: (GST_START_TEST),
25610         (gst_controller_suite):
25611         * docs/gst/tmpl/gstcaps.sgml:
25612         * docs/gst/tmpl/gstghostpad.sgml:
25613         * docs/gst/tmpl/gstquery.sgml:
25614         * docs/gst/tmpl/gstutils.sgml:
25615         * libs/gst/controller/gst-helper.c: (gst_object_set_controller),
25616         (gst_object_sink_values), (gst_object_get_value_arrays),
25617         (gst_object_get_value_array):
25618           gracefully handle helper method calls to objects that are not beeing
25619           controlled, added test case for that          
25620
25621 2005-08-23  Wim Taymans  <wim@fluendo.com>
25622
25623         * gst/gstevent.c: (_gst_event_copy), (gst_event_new_custom),
25624         (gst_event_new_newsegment), (gst_event_parse_newsegment),
25625         (gst_event_new_tag), (gst_event_parse_tag), (gst_event_new_qos),
25626         (gst_event_parse_qos), (gst_event_new_seek),
25627         (gst_event_parse_seek):
25628         * gst/gstevent.h:
25629         Some more debugging output and doc cleanups.
25630
25631         * gst/gstqueue.c: (gst_queue_handle_sink_event):
25632         Fix possible deadlock.
25633
25634 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
25635
25636         * docs/gst/gstreamer-docs.sgml:
25637         * docs/gst/gstreamer-sections.txt:
25638         * docs/gst/gstreamer.types:
25639         * docs/gst/tmpl/.cvsignore:
25640         * gst/gstbin.h:
25641         * gst/gstbus.c:
25642         * gst/gstelement.c:
25643         * gst/gstevent.h:
25644           added 100 symbols from gstreamer-unused.txt to the right sections
25645           fixed more broken comments
25646           added GstBus to docs
25647
25648 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
25649
25650         * docs/gst/gstreamer-sections.txt:
25651         * docs/gst/tmpl/.cvsignore:
25652         * docs/gst/tmpl/gstbin.sgml:
25653         * docs/gst/tmpl/gstbuffer.sgml:
25654         * gst/base/gstbasesrc.c:
25655         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init):
25656         * gst/gstbuffer.c:
25657         * gst/gstbuffer.h:
25658         * tools/gst-launch.1.in:
25659           inlined more doc comments, added missing comments and fixed comments
25660           fixed typos
25661
25662 2005-08-23  Thomas Vander Stichele  <thomas at apestaart dot org>
25663
25664         * gst/gstbuffer.c: (gst_buffer_new_and_alloc):
25665           some debugging
25666         * gst/gstcaps.h:
25667           whitespace fixes
25668         * gst/gstpad.c: (gst_pad_activate_push), (gst_pad_alloc_buffer):
25669           more debugging
25670         * gst/gststructure.c: (gst_caps_structure_fixate_field_boolean):
25671         * gst/gststructure.h:
25672           add a fixate function for booleans; add a FIXME that these func
25673           names should probably be gst_structure_fixate_*
25674
25675 2005-08-23  Stefan Kost  <ensonic@users.sf.net>
25676
25677         * docs/gst/gstreamer-docs.sgml:
25678         * docs/gst/gstreamer-sections.txt:
25679         * gst/Makefile.am:
25680         * gst/gstbin.c: (gst_bin_get_type),
25681         (gst_bin_child_proxy_get_child_by_index),
25682         (gst_bin_child_proxy_get_children_count),
25683         (gst_bin_child_proxy_init):
25684         * gst/gstchildproxy.c: (gst_child_proxy_get_child_by_name),
25685         (gst_child_proxy_get_child_by_index),
25686         (gst_child_proxy_get_children_count), (gst_child_proxy_lookup),
25687         (gst_child_proxy_get_property), (gst_child_proxy_get_valist),
25688         (gst_child_proxy_get), (gst_child_proxy_set_property),
25689         (gst_child_proxy_set_valist), (gst_child_proxy_set),
25690         (gst_child_proxy_child_added), (gst_child_proxy_child_removed),
25691         (gst_child_proxy_base_init), (gst_child_proxy_get_type):
25692         * gst/gstchildproxy.h:
25693         * gst/parse/grammar.y:
25694         * tools/gst-inspect.c: (print_interfaces),
25695         (print_element_properties_info), (print_element_info):
25696           ported gstchildproxy over from 0.8
25697           ported gst-inspect fixes and enhancements over from 0.8
25698
25699 2005-08-22  Wim Taymans  <wim@fluendo.com>
25700
25701         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
25702         (gst_base_transform_handle_buffer):
25703         Also call the transform function if we have ANY caps.
25704
25705         * gst/gstpipeline.c: (gst_pipeline_set_new_stream_time):
25706         Fix debug info.
25707
25708 2005-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
25709
25710         * gst/base/gstbasesrc.c: (gst_base_src_event_handler)
25711           Don't pretend to handle seek events if the source is not seekable
25712
25713 2005-08-22  Jan Schmidt  <thaytan@mad.scientist.com>
25714
25715         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
25716           Remove extra parameter to debug output
25717
25718         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
25719         (gst_base_src_do_seek), (gst_base_src_activate_push):
25720           Fix seek event handling.
25721
25722         * gst/gstpipeline.c: (gst_pipeline_change_state):
25723         * gst/gstqueue.c: (gst_queue_handle_sink_event),
25724         (gst_queue_src_activate_push):
25725           Don't start the src pad task on FLUSH_STOP if the pad
25726           isn't linked.
25727           Debug changes.
25728
25729 2005-08-22  Wim Taymans  <wim@fluendo.com>
25730
25731         * check/gst/gstcaps.c: (GST_START_TEST), (gst_caps_suite):
25732         Added check for gst_static_caps_get() refcounting.
25733
25734 2005-08-22  Wim Taymans  <wim@fluendo.com>
25735
25736         * gst/gstcaps.c: (gst_static_caps_get), (gst_caps_to_string):
25737         Make _static_caps_get() refcounting sane.
25738         
25739         * gst/gstelement.c: (gst_element_set_state):
25740         Add g_return_val_if_fail() to protect against segfaults.
25741
25742 2005-08-22  Stefan Kost  <ensonic@users.sf.net>
25743
25744         * docs/gst/tmpl/gstevent.sgml:
25745         * gst/gstevent.c:
25746         * gst/gstevent.h:
25747           inlined remaining docs, added missing doc comments
25748
25749 2005-08-22  Thomas Vander Stichele  <thomas at apestaart dot org>
25750
25751         * check/gst/gstbin.c: (GST_START_TEST):
25752           since we don't know when preroll is done, use refcount range
25753           check for the sink
25754         * gst/check/gstcheck.h:
25755           add macro for checking refcount range
25756
25757 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
25758
25759         * check/Makefile.am:
25760           clean up environment for when registry gets built versus
25761           when actual tests are run; valgrind seems to not report
25762           leaks if GST_PLUGIN_PATH is set to some specific values
25763         * check/gst/gstbin.c: (GST_START_TEST):
25764           add more refcounting checks; maybe this exposes a
25765           preroll lock bug ?
25766         * common/check.mak:
25767         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
25768         * gst/check/gstcheck.h:
25769         * gst/gstbin.c: (bin_element_is_semi_sink), (gst_bin_get_state),
25770         (gst_bin_change_state):
25771         * gst/gstpad.c: (gst_pad_activate_push), (gst_pad_chain):
25772           add/fix debugging/whitespace
25773
25774 2005-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
25775
25776         * check/gst/gstevent.c: (event_probe), (test_event),
25777         (GST_START_TEST):
25778          Er, don't call gst_bin_watch_for_state_change you idiot.
25779
25780 2005-08-21  Jan Schmidt  <thaytan@mad.scientist.com>
25781
25782         * check/Makefile.am:
25783           Use CHECK_CFLAGS and CHECK_LIBS
25784         * check/gst/gstevent.c: (event_probe), (test_event),
25785         (GST_START_TEST):
25786           Don't leak events.
25787         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
25788         (gst_base_src_start), (gst_base_src_stop),
25789         (gst_base_src_activate_push), (gst_base_src_activate_pull),
25790         (gst_base_src_change_state):
25791           Sprinkle gst_base_src_stop liberally around error paths to fix
25792           problems reusing a source after failed state changes.
25793         * gst/base/gsttypefindhelper.c: (helper_find_peek),
25794         (helper_find_suggest), (gst_type_find_helper):
25795           Extra debug output. Don't segfault on GST_PAD_GETRANGEFUNC = NULL
25796         * gst/gstevent.h:
25797         * docs/gst/tmpl/gstevent.sgml:
25798           Migrate part of the docs from the SGML file. Wait for ensonic to
25799           tell me how I did it wrong ;)
25800         * tools/gst-typefind.c: (main):
25801           Extra robustness to state changes between files.
25802
25803 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
25804
25805         * check/Makefile.am:
25806           don't valgrind the controller test - it's leaking - Stefan, HELP
25807         * gst/check/gstcheck.c: (gst_check_message_error),
25808         (gst_check_chain_func), (gst_check_setup_element),
25809         (gst_check_teardown_element), (gst_check_setup_src_pad),
25810         (gst_check_teardown_src_pad), (gst_check_setup_sink_pad),
25811         (gst_check_teardown_sink_pad):
25812         * gst/check/gstcheck.h:
25813           add a bunch of methods to set up elements, and src and sink pads
25814         * check/elements/fakesrc.c: (setup_fakesrc), (cleanup_fakesrc):
25815         * check/elements/identity.c: (setup_identity), (cleanup_identity),
25816         (GST_START_TEST):
25817           use them
25818         * gst/gstmessage.c:
25819         * gst/gsttag.h:
25820           whitespace/doc fixes
25821
25822 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25823
25824         * gst/gstelement.h:
25825           make GST_ELEMENT_ERROR not do GST_ERROR_OBJECT - these errors should
25826           be handled by the application and not always printed as well
25827
25828 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25829
25830         * check/Makefile.am:
25831           set GST_TOOLS_DIR
25832         * gst/check/gstcheck.c: (gst_check_message_error):
25833         * gst/check/gstcheck.h:
25834           add a fail_unless_equals_int
25835           add fail_unless for error messages
25836
25837 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25838
25839         * check/Makefile.am:
25840         * check/gst.supp:
25841         * common/Makefile.am:
25842         * common/check.mak:
25843         * common/gst.supp:
25844           factor out some of the common stuff so we can use it
25845
25846 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25847
25848         * check/Makefile.am:
25849         * check/gst/gstiterator.c: (GST_START_TEST):
25850         * check/gst/gstsystemclock.c: (GST_START_TEST),
25851         (gst_systemclock_suite):
25852         * check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
25853         * gst/gstclock.c:
25854           valgrind more tests
25855
25856 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
25857
25858         * check/elements/.cvsignore:
25859         * check/elements/gstfakesrc.c:
25860           rename to name of element
25861         * check/elements/identity.c: (chain_func), (event_func),
25862         (setup_identity), (cleanup_identity), (GST_START_TEST),
25863         (identity_suite), (main):
25864           add a test for identity
25865         * check/Makefile.am:
25866         * pkgconfig/Makefile.am:
25867         * pkgconfig/gstreamer-check.pc.in:
25868         * pkgconfig/gstreamer-check-uninstalled.pc.in:
25869         * gst/check:
25870         * gst/Makefile.am:
25871         * configure.ac:
25872           move the check stuff to a library that gets installed
25873         * check/gst-libs/controller.c: (GST_START_TEST):
25874         * check/gst-libs/gdp.c:
25875         * check/gst/gst.c: (GST_START_TEST):
25876         * check/gst/gstbin.c:
25877         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
25878         * check/gst/gstbus.c:
25879         * check/gst/gstcaps.c: (GST_START_TEST):
25880         * check/gst/gstelement.c:
25881         * check/gst/gstghostpad.c:
25882         * check/gst/gstiterator.c:
25883         * check/gst/gstmessage.c:
25884         * check/gst/gstminiobject.c: (thread_ref), (GST_START_TEST):
25885         * check/gst/gstobject.c:
25886         * check/gst/gstpad.c: (GST_START_TEST):
25887         * check/gst/gststructure.c: (GST_START_TEST):
25888         * check/gst/gstsystemclock.c: (GST_START_TEST),
25889         (gst_systemclock_suite):
25890         * check/gst/gsttag.c: (gst_tag_suite):
25891         * check/gst/gstvalue.c:
25892         * check/pipelines/cleanup.c:
25893         * check/pipelines/simple_launch_lines.c:
25894         * check/states/sinks.c:
25895           change include statement
25896
25897         * docs/gst/gstreamer-sections.txt:
25898         * docs/gst/tmpl/gstpad.sgml:
25899           document more pad stuff
25900         * gst/gstminiobject.c: (gst_mini_object_ref),
25901         (gst_mini_object_unref):
25902           debug refcounting
25903
25904 2005-08-19  Stefan Kost  <ensonic@users.sf.net>
25905
25906         * docs/gst/tmpl/gst.sgml:
25907         * gst/gst.c:
25908           eliminate another tmpl file, fix spelling in the long-description
25909
25910 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
25911
25912         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
25913         (test_event), (timediff), (gstevents_suite):
25914           Should fix build on 64-bit arch's
25915
25916 2005-08-18  Andy Wingo  <wingo@pobox.com>
25917
25918         Make sure that when a pipeline goes to PLAYING, that data has
25919         actually hit the sink.
25920
25921         * check/states/sinks.c (test_sink): A sink that doesn't get any
25922         data shouldn't return SUCCESS for going to either PLAYING or
25923         PAUSED. Test also the return values on the way back down.
25924
25925         * gst/gstelement.c (gst_element_set_state): When changing the
25926         state of an element currently changing state asynchronously, go to
25927         lost-state after commiting the pending state. Makes future calls
25928         to get_state continue to return ASYNC.
25929
25930         * gst/base/gstbasesink.c (gst_base_sink_change_state): Return
25931         ASYNC when going to PLAYING if we still don't have preroll, as can
25932         happen with live sources.
25933
25934 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
25935
25936         * docs/pwg/advanced-types.xml:
25937           Hack long paragraph into 2 chunks as a workaround for buggy
25938           jadetex version in sid and breezy that loops infinitely and
25939           eats all RAM.
25940
25941 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
25942
25943         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
25944         (test_event), (timediff), (gstevents_suite):
25945           Provide more error margin in clock measurements to allow for 
25946           g_get_current_time inaccuracies.
25947
25948 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
25949
25950         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
25951         (test_event), (timediff), (gstevents_suite):
25952            Fix error message output so I might be able to tell why the
25953            test works here but fails on the build farm.
25954
25955 2005-08-18  Jan Schmidt  <thaytan@mad.scientist.com>
25956
25957         * check/Makefile.am:
25958         * check/gst/gstevents.c: (GST_START_TEST), (event_probe),
25959         (test_event), (timediff), (gstevents_suite), (main):
25960           I wrote a test!
25961
25962         * docs/design/part-seeking.txt:
25963           Spelling correction
25964
25965         * docs/gst/tmpl/gstevent.sgml:
25966         * docs/gst/tmpl/gstfakesrc.sgml:
25967           Docs updates.
25968
25969         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
25970           Treat a buffer-without-newsegment the same as a receiving 
25971           a newsegment not in time format, and disable syncing to the clock
25972           with a warning.
25973
25974         * gst/gstbus.c: (gst_bus_set_sync_handler):
25975           Assert if anyone tries to replace the existing sync_handler for bus, 
25976           as only the owner should be setting it.
25977
25978         * gst/gstevent.h:
25979           Have a fixed set of custom event enums with events identified by
25980           their structure name (as in 0.8), rather than a free-for-all
25981           allowing collisions between enum values from different plugins.
25982
25983         * gst/gstpad.c: (gst_pad_class_init):
25984           Docs change.
25985           
25986         * gst/gstqueue.c: (gst_queue_handle_sink_event):
25987           Handle out-of-band downstream events from the sending thread.
25988
25989 2005-08-17  Andy Wingo  <wingo@pobox.com>
25990
25991         * gst/gstpipeline.c (gst_pipeline_change_state): Interpret
25992         play-timeout==0 to mean no timeout at all. In that case, don't
25993         bother with a get_state or a warning, just return directly, even
25994         if it's ASYNC.
25995
25996         * gst/base/gstbasetransform.c: Debug changes.
25997
25998         * gst/gstutils.h:
25999         * gst/gstutils.c (gst_bin_watch_for_state_change): Add function to
26000         ensure bins post state change messages. A bit of a hack but I can't
26001         think of a way to avoid it.
26002
26003         * check/gst/gstbin.c (test_watch_for_state_change): Added test.
26004
26005 2005-08-16  Andy Wingo  <wingo@pobox.com>
26006
26007         * gst/base/gstadapter.h:
26008         * gst/base/gstadapter.c (gst_adapter_take): New function, like
26009         peek() but you own the data. Not terribly efficient atm.
26010
26011 2005-08-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26012
26013         * gst/gstutils.c: (gst_element_found_tags_for_pad), (push_and_ref),
26014         (gst_element_found_tags):
26015         * gst/gstutils.h:
26016           Add two utility functions for tag handling.
26017
26018 2005-08-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26019
26020         * docs/manual/advanced-dataaccess.xml:
26021         * docs/manual/basics-helloworld.xml:
26022           Fix docs to use _bin_add() before _link(), which fixes the examples
26023           with recent core versions (reported by Madhan Raj M
26024           <raj_madan@rediffmail.com>, #313199).
26025
26026 2005-08-16  Wim Taymans  <wim@fluendo.com>
26027
26028         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
26029         Added subtract checks.
26030
26031         * docs/design/part-events.txt:
26032         Some more docs about newsegment
26033
26034         * gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
26035         Fix FIXME
26036
26037         * gst/gstcaps.c: (gst_caps_to_string):
26038         Add comments, cleanups.
26039         
26040         * gst/gstelement.c: (gst_element_save_thyself):
26041         cleanups
26042         
26043         * gst/gstvalue.c: (gst_value_collect_int_range),
26044         (gst_string_unwrap), (gst_value_union_int_int_range),
26045         (gst_value_union_int_range_int_range),
26046         (gst_value_intersect_int_int_range),
26047         (gst_value_intersect_int_range_int_range),
26048         (gst_value_intersect_double_double_range),
26049         (gst_value_intersect_double_range_double_range),
26050         (gst_value_intersect_list), (gst_value_subtract_int_int_range),
26051         (gst_value_subtract_int_range_int),
26052         (gst_value_subtract_double_range_double),
26053         (gst_value_subtract_double_range_double_range),
26054         (gst_value_subtract_from_list), (gst_value_subtract_list),
26055         (gst_value_can_compare), (gst_value_compare_fraction):
26056         Cleanups, add comments, remove unneeded asserts.
26057
26058 2005-08-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26059
26060         * tools/gst-launch.c: (event_loop):
26061           don't convert NULL structures to strings
26062
26063 2005-08-15  Stefan Kost  <ensonic@users.sf.net>
26064
26065         * docs/gst/gstreamer-sections.txt:
26066           made some defines private
26067         * docs/gst/tmpl/gstconfig.sgml:
26068         * docs/gst/tmpl/gstqueue.sgml:
26069         * docs/gst/tmpl/gsttaglist.sgml:
26070         * docs/gst/tmpl/gsttypes.sgml:
26071         * docs/gst/tmpl/gstutils.sgml:
26072         * docs/pwg/appendix-porting.xml:
26073         * gst/base/gstbasesink.h:
26074         * gst/base/gstbasesrc.c:
26075         * gst/base/gstbasesrc.h:
26076         * gst/elements/gstfakesink.c: (gst_fake_sink_class_init):
26077         * gst/elements/gstfakesrc.c: (gst_fake_src_class_init):
26078         * gst/gstelement.c: (gst_element_class_init):
26079         * gst/gstpad.c: (gst_pad_class_init):
26080         * gst/gstqueue.c: (gst_queue_class_init):
26081         * gst/gstxml.c: (gst_xml_class_init):
26082           documented all undocumented signal inline
26083         * libs/gst/controller/gst-controller.h:
26084           added padding
26085
26086 2005-08-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26087
26088         * docs/pwg/appendix-porting.xml:
26089           Document _set_link_function -> _set_setcaps_function.
26090
26091 2005-08-15  Thomas Vander Stichele  <thomas at apestaart dot org>
26092
26093         * check/Makefile.am:
26094           add a .check target for running the check
26095         * check/gst-libs/controller.c: (GST_START_TEST):
26096           cosmetic fixups
26097         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
26098           complete checks for gstbuffer; would be nice if I could get the
26099           gcov stuff to work so I can see if I actually completed gstbuffer.c
26100         * check/gstcheck.h:
26101           add ASSERT_BUFFER_REFCOUNT
26102
26103 2005-08-13  Tim-Philipp Müller  <tim at centricular dot net>
26104
26105         * docs/gst/gstreamer-sections.txt:
26106         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
26107         * gst/gsttag.h:
26108           Add GST_TAG_LANGUAGE_CODE as we have in 0.8, and don't
26109           spew out a warning if a tag that is already registered
26110           is re-registered, unless it is re-registered with a 
26111           different type (#308438).
26112
26113 2005-08-12  Tim-Philipp Müller  <tim at centricular dot net>
26114
26115         * docs/pwg/appendix-porting.xml:
26116         * docs/pwg/building-state.xml:
26117           Add some paragraphs about state changes in 0.9 to the PWG
26118           and the porting guide, in particular about the new meaning
26119           of GST_STATE_PAUSED and how to write state change functions
26120           with concurrent access by multiple threads in mind.
26121
26122 2005-08-11  Stefan Kost  <ensonic@users.sf.net>
26123
26124         * docs/gst/gstreamer-docs.sgml:
26125         * docs/libs/gstreamer-libs-docs.sgml:
26126           added deprecation and since indexes
26127         * libs/gst/controller/gst-controller.c:
26128         * libs/gst/controller/gst-helper.c:
26129           added since tags
26130
26131
26132 2005-08-11  Wim Taymans  <wim@fluendo.com>
26133
26134         * gst/gstghostpad.c: (gst_proxy_pad_set_target_unlocked),
26135         (gst_proxy_pad_set_target), (gst_proxy_pad_get_target),
26136         (gst_proxy_pad_dispose), (gst_ghost_pad_do_activate_push),
26137         (gst_ghost_pad_do_link), (gst_ghost_pad_set_internal),
26138         (gst_ghost_pad_new_notarget), (gst_ghost_pad_get_target),
26139         (gst_ghost_pad_set_target):
26140         Actually implement (re)setting the target on a ghostpad
26141         as described in the docs.
26142
26143 2005-08-10  Tim-Philipp Müller  <tim at centricular dot net>
26144
26145         * gst/gst.c: (gst_init_check_with_popt_table), (init_pre):
26146           Check whether GST_DEBUG_NO_COLOR environment variable is
26147           set and disable coloured debug output if that is the case.
26148
26149 2005-08-10  Tim-Philipp Müller  <tim at centricular dot net>
26150
26151         * gst/base/gsttypefindhelper.c: (helper_find_peek),
26152         (gst_type_find_helper):
26153           The memory returned by gst_type_find_peek() needs to
26154           stay valid until the end of a typefind function, and
26155           typefind functions may keep results from different 
26156           offsets around, so we can't just unref the buffer from
26157           the previous _peek(), but have to save all buffers 
26158           returned by _peek() until typefinding is done and only
26159           free them then.
26160
26161 2005-08-09  Tim-Philipp Müller  <tim at centricular dot net>
26162
26163         * docs/gst/gstreamer-sections.txt:
26164         * gst/gstutils.h:
26165           New macros: GST_ROUND_UP_2() through GST_ROUND_UP_64().
26166
26167 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26168
26169         * gst/base/gstbasetransform.c: (gst_base_transform_buffer_alloc):
26170           Fix a pretty good memleak.
26171
26172 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
26173
26174         * gst/gstiterator.h:
26175           Fix wrong include and 'make distcheck'.
26176
26177 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26178
26179         * gst/gstbin.c: (bin_bus_handler):
26180           Use gst_element_post_message() instead.
26181
26182 2005-08-08  Tim-Philipp Müller  <tim at centricular dot net>
26183
26184         * gst/base/gstadapter.h:
26185         * gst/base/gstbasesink.h:
26186         * gst/base/gstbasesrc.h:
26187         * gst/base/gstbasetransform.h:
26188         * gst/base/gstcollectpads.h:
26189         * gst/base/gstpushsrc.h:
26190         * gst/gstiterator.h:
26191           Add padding to our base elements' class and instance structs and
26192           to GstIterator (you will need to rebuild all plugins and apps!)
26193
26194 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26195
26196         * gst/gstbin.c: (bin_bus_handler):
26197           Make default message forwarding from child->bus to bin->bus
26198           threadsafe and make it not emit warnings if the parent has no bus.
26199
26200 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26201
26202         * gst/gstelement.c: (activate_pads):
26203           On paused->ready, set pad->caps to NULL, as is the documented
26204           behaviour in this state change. Fixes playback of series of
26205           media files when visualization is enabled in Totem.
26206
26207 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26208
26209         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
26210           Allow NULL as filter-caps (which means "any").
26211
26212 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
26213
26214         * docs/libs/gstreamer-libs-sections.txt:
26215         * libs/gst/controller/gst-controller.c:
26216         * libs/gst/controller/gst-controller.h:
26217         * libs/gst/controller/gst-helper.c:
26218           adding more entries to the docs and fix small doc-bugs
26219
26220 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
26221
26222         * docs/gst/gstreamer-docs.sgml:
26223         * docs/gst/gstreamer-sections.txt:
26224         * docs/gst/gstreamer.types:
26225         * docs/gst/tmpl/gstbasesink.sgml:
26226         * docs/gst/tmpl/gstbasesrc.sgml:
26227         * docs/gst/tmpl/gstbasetransform.sgml:
26228         * docs/gst/tmpl/gstfakesrc.sgml:
26229         * gst/base/gstcollectpads.c:
26230         * gst/base/gstcollectpads.h:
26231         * libs/gst/controller/gst-controller.c:
26232         * libs/gst/controller/gst-controller.h:
26233         * libs/gst/controller/gst-helper.c:
26234         * libs/gst/controller/gst-interpolation.c:
26235         * libs/gst/controller/lib.c:
26236           added long/short desc for controller docs
26237           added collectpads base class docs
26238           added correct includes to base-class docs
26239
26240 2005-08-05  Stefan Kost  <ensonic@users.sf.net>
26241
26242         * check/gst-libs/controller.c: (gst_test_mono_source_get_property),
26243         (gst_test_mono_source_set_property),
26244         (gst_test_mono_source_class_init), (GST_START_TEST),
26245         (gst_controller_suite):
26246         * docs/gst/gstreamer-docs.sgml:
26247         * docs/gst/gstreamer-sections.txt:
26248         * docs/gst/gstreamer.types:
26249         * docs/libs/gstreamer-libs-docs.sgml:
26250         * docs/libs/gstreamer-libs-sections.txt:
26251         * gst/base/gstadapter.c:
26252         * libs/gst/controller/gst-controller.c:
26253         (gst_controlled_property_new), (gst_controlled_property_free),
26254         (gst_controller_new_valist),
26255         (gst_controller_remove_properties_valist),
26256         (gst_controller_sink_values), (_gst_controller_finalize):
26257         * libs/gst/controller/gst-controller.h:
26258         * libs/gst/controller/gst-helper.c:
26259         (gst_object_control_properties), (gst_object_uncontrol_properties),
26260         (gst_object_get_controller), (gst_object_set_controller),
26261         (gst_object_sink_values), (gst_object_get_value_arrays),
26262         (gst_object_get_value_array):
26263           more tests (and fixes) for the controller
26264           more docs for the controller
26265           integrated companies docs for the adapter 
26266
26267 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
26268
26269         * check/elements/gstfakesrc.c: (setup_fakesrc), (cleanup_fakesrc),
26270         (GST_START_TEST), (fakesrc_suite):
26271           add tests for sizetype
26272
26273 2005-08-04  Andy Wingo  <wingo@pobox.com>
26274
26275         * gst/elements/gstcapsfilter.c: Reimplement using basetransform,
26276         fixes buffer_alloc proxying among other things.
26277
26278         * gst/base/gstbasetransform.c:
26279         * gst/base/gstbasetransform.h:
26280         Revert patch to gstbasetransform from 7-28 removing
26281         delay_configure.
26282
26283         * gst/base/gstbasetransform.h (GstBaseTransformClass.get_size):
26284         * gst/base/gstbasetransform.c (gst_base_transform_get_size):
26285         Semantics changed, should return not the size of the output buffer
26286         but the byte size of a buffer with a given caps.
26287
26288         * gst/base/gstbasetransform.c (gst_base_transform_getcaps): Better
26289         debug object.
26290         (gst_base_transform_configure_caps): Don't set out_size here: (in,
26291         out) are not the pad caps until setcaps finishes.
26292         (gst_base_transform_buffer_alloc): Proxy the buffer_alloc for the
26293         not-in-place case as well. Deal with changing from in-place to
26294         not-in-place within calling pad_alloc_buffer. Still a bit
26295         concerned about the overhead here...
26296
26297 2005-08-03  Andy Wingo  <wingo@pobox.com>
26298
26299         * gst/base/gstbasetransform.c (gst_base_transform_setcaps): Not
26300         fixating is an error.
26301
26302 2005-08-04  Edward Hervey  <edward@fluendo.com>
26303
26304         * gst/base/gstadapter.h: 
26305         Added gst_adapter_get_type() to the header
26306
26307 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
26308
26309         * check/Makefile.am:
26310         * check/gst-libs/controller.c:
26311         * libs/gst/controller/gst-controller.c:
26312         (gst_controller_new_valist):
26313           added check test suite for the controller
26314         * gst/base/gstpushsrc.c:
26315           fixed a doc typo
26316
26317 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
26318
26319         * docs/gst/Makefile.am:
26320         * docs/gst/gstreamer-docs.sgml:
26321         * docs/gst/gstreamer-sections.txt:
26322         * docs/gst/gstreamer.types:
26323         * docs/gst/tmpl/gstfakesrc.sgml:
26324         * gst/base/README:
26325         * gst/base/gstbasesink.c:
26326         * gst/base/gstbasesink.h:
26327         * gst/base/gstbasesrc.c:
26328         * gst/base/gstbasesrc.h:
26329         * gst/base/gstbasetransform.c:
26330         * gst/base/gstpushsrc.c:
26331         * gst/base/gstpushsrc.h:
26332           add short/long description docs to base classes
26333           add pushsrc to the docs
26334           remove consolidated doc fragments
26335
26336 2005-08-03  Stefan Kost  <ensonic@users.sf.net>
26337
26338         * configure.ac:
26339         * docs/libs/Makefile.am:
26340         * docs/libs/gstreamer-libs-docs.sgml:
26341         * docs/libs/gstreamer-libs-sections.txt:
26342         * docs/libs/gstreamer-libs.types:
26343         * examples/Makefile.am:
26344         * examples/controller/.cvsignore:
26345         * examples/controller/Makefile.am:
26346         * examples/controller/audio-example.c: (main):
26347         * libs/gst/Makefile.am:
26348         * libs/gst/controller/.cvsignore:
26349         * libs/gst/controller/Makefile.am:
26350         * libs/gst/controller/gst-controller.c:
26351         (on_object_controlled_property_changed), (gst_timed_value_compare),
26352         (gst_timed_value_find),
26353         (gst_controlled_property_set_interpolation_mode),
26354         (gst_controlled_property_new), (gst_controlled_property_free),
26355         (gst_controller_find_controlled_property),
26356         (gst_controller_new_valist), (gst_controller_new),
26357         (gst_controller_remove_properties_valist),
26358         (gst_controller_remove_properties), (gst_controller_set),
26359         (gst_controller_set_from_list), (gst_controller_unset),
26360         (gst_controller_get), (gst_controller_get_all),
26361         (gst_controller_sink_values), (gst_controller_get_value_arrays),
26362         (gst_controller_get_value_array),
26363         (gst_controller_set_interpolation_mode),
26364         (_gst_controller_finalize), (_gst_controller_init),
26365         (_gst_controller_class_init), (gst_controller_get_type):
26366         * libs/gst/controller/gst-controller.h:
26367         * libs/gst/controller/gst-helper.c: (g_object_control_properties),
26368         (g_object_uncontrol_properties), (g_object_get_controller),
26369         (g_object_set_controller), (g_object_sink_values),
26370         (g_object_get_value_arrays), (g_object_get_value_array):
26371         * libs/gst/controller/gst-interpolation.c:
26372         (gst_controlled_property_find_timed_value_node),
26373         (interpolate_none_get), (interpolate_trigger_get),
26374         (interpolate_trigger_get_value_array):
26375         * libs/gst/controller/lib.c: (gst_controller_init):
26376         * pkgconfig/Makefile.am:
26377         * pkgconfig/gstreamer-control-uninstalled.pc.in:
26378         * pkgconfig/gstreamer-control.pc.in:
26379         * testsuite/Makefile.am:
26380         * testsuite/controller/.cvsignore:
26381         * testsuite/controller/Makefile.am:
26382         * testsuite/controller/interpolator.c: (main):
26383           added controller code
26384           removed dparam pc files
26385
26386 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
26387         * gst/base/gstcollectpads.c: (gst_collectpads_finalize),
26388         (gst_collectpads_stop):
26389           Broadcast the condition when shutting down, to make sure we wake all
26390           threads up. Shut down pads on finalize, for safety.
26391
26392 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
26393         * gst/base/gstbasetransform.c: (gst_base_transform_init),
26394         (gst_base_transform_handle_buffer),
26395         (gst_base_transform_change_state):
26396           Handle PAUSED->READY->PAUSED transition after negotiation
26397           occurred already.
26398         * gst/gstmessage.c: (gst_message_init):
26399           Extra piece of debug for new messages.
26400
26401 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
26402
26403         * configure.ac:
26404         * docs/gst/tmpl/gstbasesrc.sgml:
26405         * docs/gst/tmpl/gstelement.sgml:
26406         * docs/gst/tmpl/gstevent.sgml:
26407         * docs/gst/tmpl/gstfakesrc.sgml:
26408         * docs/gst/tmpl/gstformat.sgml:
26409         * docs/gst/tmpl/gstghostpad.sgml:
26410         * docs/gst/tmpl/gstpad.sgml:
26411         * docs/gst/tmpl/gstquery.sgml:
26412         * docs/gst/tmpl/gststructure.sgml:
26413         * docs/gst/tmpl/gsttaglist.sgml:
26414         * docs/gst/tmpl/gstvalue.sgml:
26415         * docs/libs/gstreamer-libs-docs.sgml:
26416         * docs/libs/gstreamer-libs-sections.txt:
26417         * docs/libs/gstreamer-libs.types:
26418         * libs/gst/Makefile.am:
26419         * libs/gst/control/.cvsignore:
26420         * libs/gst/control/Makefile.am:
26421         * libs/gst/control/control.c:
26422         * libs/gst/control/control.h:
26423         * libs/gst/control/dparam.c:
26424         * libs/gst/control/dparam.h:
26425         * libs/gst/control/dparam_smooth.c:
26426         * libs/gst/control/dparam_smooth.h:
26427         * libs/gst/control/dparamcommon.h:
26428         * libs/gst/control/dparammanager.c:
26429         * libs/gst/control/dparammanager.h:
26430         * libs/gst/control/dplinearinterp.c:
26431         * libs/gst/control/dplinearinterp.h:
26432         * libs/gst/control/unitconvert.c:
26433         * libs/gst/control/unitconvert.h:
26434         * testsuite/Makefile.am:
26435         * testsuite/dynparams/.cvsignore:
26436         * testsuite/dynparams/Makefile.am:
26437         * testsuite/dynparams/dparamstest.c:
26438         * tools/Makefile.am:
26439         * tools/gst-inspect.c: (print_element_info), (main):
26440         * tools/gst-xmlinspect.c: (print_element_info), (main):
26441           deactivate and remove dparams (libgstcontrol)
26442
26443 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
26444
26445         * gst/elements/gsttypefindelement.c:
26446         (gst_type_find_element_have_type), (gst_type_find_element_init),
26447         (stop_typefinding), (gst_type_find_element_handle_event),
26448         (gst_type_find_element_chain), (gst_type_find_element_getrange):
26449         * gst/elements/gsttypefindelement.h:
26450           Set caps on all outgoing buffers, not just the first one.
26451
26452 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
26453
26454         * gst/elements/gsttypefindelement.c:
26455         (gst_type_find_element_have_type),
26456         (gst_type_find_element_check_set_buffer_caps),
26457         (gst_type_find_element_init), (stop_typefinding),
26458         (gst_type_find_element_handle_event),
26459         (gst_type_find_element_chain), (gst_type_find_element_getrange):
26460         * gst/elements/gsttypefindelement.h:
26461           Set caps on first outgoing buffer when we've found the type.
26462
26463 2005-08-01  Tim-Philipp Müller  <tim at centricular dot net>
26464
26465         * docs/gst/gstreamer-docs.sgml:
26466         * docs/gst/gstreamer-sections.txt:
26467         * docs/gst/tmpl/gstscheduler.sgml:
26468         * docs/gst/tmpl/gstschedulerfactory.sgml:
26469           Remove some old cruft from docs.
26470
26471 2005-07-31  Tim-Philipp Müller  <tim at centricular dot net>
26472
26473         * gst/gstpad.h:
26474           Fix inline docs for GstPadLinkReturn.
26475           
26476         * gst/gststructure.c: (gst_structure_has_name):
26477         * gst/gststructure.h:
26478         * docs/gst/gstreamer-sections.txt:
26479           New API: gst_structure_has_name().
26480
26481 2005-07-30  Tim-Philipp Müller  <tim at centricular dot net>
26482
26483         * configure.ac:
26484           Use AC_SYS_LARGEFILE, which will set _FILE_OFFSET_BITS=64
26485           and _LARGEFILE_SOURCE in config.h as required. Do not 
26486           export those flags in our .pc files any longer (#142209).
26487
26488           Remove unused GST_DISABLE_OMEGA_COTHREADS stuff.
26489
26490         * gst/elements/gstfilesink.c: (gst_file_sink_class_init),
26491         (gst_file_sink_do_seek), (gst_file_sink_event),
26492         (gst_file_sink_get_current_offset), (gst_file_sink_render):
26493           Redo seek/tell calls with large file support in mind; add some
26494           debugging messages; add log message that tells us when large
26495           file support is unavailable or not enabled for some reason.
26496
26497         * gst/elements/gstfilesrc.c: (gst_file_src_class_init):
26498           Add log message that tells us when large file support 
26499           is unavailable or not enabled for some reason.
26500
26501 2005-07-29  Wim Taymans  <wim@fluendo.com>
26502
26503         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
26504         Added test for removing an element with ghostpad from a bin.
26505         Fixed test as current implementation does the right thing.
26506
26507         * gst/gstghostpad.c: (gst_proxy_pad_class_init),
26508         (gst_proxy_pad_do_query_type), (gst_proxy_pad_do_event),
26509         (gst_proxy_pad_do_query), (gst_proxy_pad_do_internal_link),
26510         (gst_proxy_pad_do_bufferalloc), (gst_proxy_pad_do_activate),
26511         (gst_proxy_pad_do_activatepull), (gst_proxy_pad_do_activatepush),
26512         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange),
26513         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_getcaps),
26514         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
26515         (gst_proxy_pad_do_setcaps), (gst_proxy_pad_set_target),
26516         (gst_proxy_pad_get_target), (gst_proxy_pad_init),
26517         (gst_proxy_pad_dispose), (gst_proxy_pad_finalize),
26518         (gst_ghost_pad_class_init), (gst_ghost_pad_do_activate_push),
26519         (gst_ghost_pad_do_link), (gst_ghost_pad_do_unlink),
26520         (gst_ghost_pad_set_internal), (gst_ghost_pad_dispose),
26521         (gst_ghost_pad_new_notarget), (gst_ghost_pad_new),
26522         (gst_ghost_pad_get_target), (gst_ghost_pad_set_target):
26523         * gst/gstghostpad.h:
26524         Clean up ghostpads, remove properties for internal stuff.
26525         Make threadsafe.
26526         Fix refcounting.
26527         Prepare for switching targets, not all use cases work yet.
26528
26529 2005-07-29  Wim Taymans  <wim@fluendo.com>
26530
26531         * docs/design/part-gstghostpad.txt:
26532         Small update.
26533
26534         * gst/gstbin.c: (unlink_pads), (gst_bin_add_func),
26535         (gst_bin_remove_func):
26536         Unlinking pads while holding the bin LOCK is not a good
26537         idea.
26538
26539         * gst/gstpad.c: (gst_pad_class_init),
26540         (gst_pad_link_check_hierarchy), (gst_pad_get_caps_unlocked),
26541         (gst_pad_accept_caps), (gst_pad_set_caps), (gst_pad_send_event):
26542         No prob setting template after creating the pad.
26543
26544 2005-07-29  Jan Schmidt  <thaytan@mad.scientist.com>
26545
26546         * gst/gstbus.c: (gst_bus_set_flushing), (gst_bus_pop),
26547         (gst_bus_peek), (gst_bus_source_dispatch),
26548         (gst_bus_add_watch_full), (poll_handler), (poll_timeout),
26549         (poll_destroy), (poll_destroy_timeout), (gst_bus_poll):
26550           gst_bus_poll may be called from other threads. Handle
26551           this nicely by not making poll_data disappear off the
26552           stack once gst_bus_poll returns.
26553           gst_bus_peek now increments the refcount on the returned
26554           message.
26555
26556 2005-07-29  Wim Taymans  <wim@fluendo.com>
26557
26558         * docs/design/part-gstghostpad.txt:
26559         Overview of current GhostPad datastructures and use
26560         cases for changing the target.
26561
26562 2005-07-28  Wim Taymans  <wim@fluendo.com>
26563
26564         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
26565         Added checks for hierarchy consistency whan adding linked
26566         elements to bins.
26567
26568         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
26569         Added check to test element scheduling without bin/pipeline.
26570
26571         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
26572         First add elements to bin, then link.
26573         
26574         * gst/gstbin.c: (unlink_pads), (gst_bin_add_func),
26575         (gst_bin_remove_func):
26576         Unlink pads from elements added/removed from bin to maintain
26577         hierarchy consistency.
26578
26579 2005-07-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26580
26581         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps),
26582         (gst_base_transform_handle_buffer):
26583         * gst/base/gstbasetransform.h:
26584           Remove broken delay_configure (fixes renegotiation of software
26585           scaling pipelines); remove some leftover printf()s.
26586
26587 2005-07-28  Wim Taymans  <wim@fluendo.com>
26588
26589         * check/gst/gstghostpad.c: (GST_START_TEST), (gst_ghost_pad_suite):
26590         Added some more tests for wrong hierarchy
26591
26592         * docs/design/part-overview.txt:
26593         Some updates.
26594
26595         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_dispose):
26596         Cleanups.
26597
26598         * gst/gstelement.c: (gst_element_remove_pad), (gst_element_seek),
26599         (gst_element_dispose):
26600         Some more cleanups.
26601
26602         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
26603         (gst_pad_link_check_hierarchy), (gst_pad_link_prepare),
26604         (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
26605         (gst_pad_set_caps), (gst_pad_send_event):
26606         Check for correct hierarchy when linking pads. Moving to
26607         strict requirement for ghostpads when linking elements in
26608         different bins.
26609
26610         * gst/gstpad.h:
26611         Clean ups. Added WRONG_HIERARCHY return value.
26612
26613 2005-07-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26614
26615         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
26616           Better debug if no transform is possible.
26617
26618 2005-07-27  Wim Taymans  <wim@fluendo.com>
26619
26620         * docs/random/wtay/network-transp:
26621         Some old doc I had.
26622
26623 2005-07-27  Wim Taymans  <wim@fluendo.com>
26624
26625         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
26626         (gst_dp_event_from_packet):
26627         Fix serialization of seek events.
26628
26629 2005-07-27  Wim Taymans  <wim@fluendo.com>
26630
26631         * check/gst-libs/gdp.c: (GST_START_TEST):
26632         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
26633         Fix compilation and fix event serialization.
26634
26635 2005-07-27  Wim Taymans  <wim@fluendo.com>
26636
26637         * CHANGES-0.9:
26638         * docs/design/part-TODO.txt:
26639         * docs/design/part-events.txt:
26640         Some docs updates
26641
26642         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
26643         (gst_base_sink_event), (gst_base_sink_do_sync),
26644         (gst_base_sink_activate_push), (gst_base_sink_activate_pull):
26645         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
26646         (gst_base_src_do_seek), (gst_base_src_event_handler),
26647         (gst_base_src_loop):
26648         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
26649         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
26650         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
26651         (gst_base_transform_event), (gst_base_transform_handle_buffer),
26652         (gst_base_transform_set_passthrough),
26653         (gst_base_transform_is_passthrough):
26654         * gst/elements/gstfakesink.c: (gst_fake_sink_event):
26655         * gst/elements/gstfilesink.c: (gst_file_sink_event):
26656         Event updates.
26657
26658         * gst/gstbuffer.h:
26659         Use faster casts.
26660
26661         * gst/gstelement.c: (gst_element_seek):
26662         * gst/gstelement.h:
26663         Update gst_element_seek.
26664
26665         * gst/gstevent.c: (gst_event_finalize), (_gst_event_copy),
26666         (gst_event_new), (gst_event_new_custom), (gst_event_get_structure),
26667         (gst_event_new_flush_start), (gst_event_new_flush_stop),
26668         (gst_event_new_eos), (gst_event_new_newsegment),
26669         (gst_event_parse_newsegment), (gst_event_new_tag),
26670         (gst_event_parse_tag), (gst_event_new_filler), (gst_event_new_qos),
26671         (gst_event_parse_qos), (gst_event_new_seek),
26672         (gst_event_parse_seek), (gst_event_new_navigation):
26673         * gst/gstevent.h:
26674         Make GstEvent use GstStructure. Add parsing code, make sure the
26675         API is sufficiently generic.
26676         Mark possible directions of events and serialization.
26677
26678         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize),
26679         (_gst_message_copy), (gst_message_new_segment_start),
26680         (gst_message_new_segment_done), (gst_message_new_custom),
26681         (gst_message_parse_segment_start),
26682         (gst_message_parse_segment_done):
26683         Small cleanups.
26684
26685         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
26686         (gst_pad_set_caps), (gst_pad_send_event):
26687         Update for new events. 
26688         Catch events sent in wrong directions.
26689
26690         * gst/gstqueue.c: (gst_queue_link_src),
26691         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
26692         (gst_queue_handle_src_query):
26693         Event updates.
26694
26695         * gst/gsttag.c:
26696         * gst/gsttag.h:
26697         Remove event code from this file.
26698
26699         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
26700         (gst_dp_event_from_packet):
26701         Event updates.
26702
26703 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26704
26705         * gst/base/gstbasetransform.c: (gst_base_transform_getcaps),
26706         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
26707         (gst_base_transform_get_size), (gst_base_transform_handle_buffer):
26708           Make debugging actually useful.
26709
26710 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26711
26712         * gst/gstpad.c: (fixate_value), (gst_pad_default_fixate),
26713         (gst_pad_fixate_caps):
26714           Implement default fixation once again, so that gst_pad_fixate()
26715           actually does anything at all. This probably needs to be some
26716           sort of a last resort, and use profile-based fixation first, but
26717           since that doesn't exist yet, this is the best we have. Fixes
26718           visualization in Totem.
26719
26720 2005-07-22  Wim Taymans  <wim@fluendo.com>
26721
26722         * docs/design/part-events.txt:
26723         Small update.
26724
26725         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
26726         (gst_base_sink_do_sync), (gst_base_sink_activate_push),
26727         (gst_base_sink_activate_pull):
26728         Some more comments.
26729
26730         * gst/elements/gstfakesrc.c: (gst_fake_src_class_init),
26731         (gst_fake_src_create):
26732         Fix handoff marshall.
26733
26734         * gst/elements/gstidentity.c: (gst_identity_class_init),
26735         (gst_identity_transform_ip):
26736         We're a real inplace element.
26737
26738         * gst/gstbus.c: (gst_bus_post):
26739         Added some comments.
26740
26741         * tests/lat.c: (fakesrc), (fakesink), (simple), (queue), (main):
26742         * tests/muxing/case1.c: (main):
26743         * tests/sched/dynamic-pipeline.c: (main):
26744         * tests/sched/interrupt1.c: (main):
26745         * tests/sched/interrupt2.c: (main):
26746         * tests/sched/interrupt3.c: (main):
26747         * tests/sched/runxml.c: (main):
26748         * tests/sched/sched-stress.c: (main):
26749         * tests/seeking/seeking1.c: (event_received), (main):
26750         * tests/threadstate/threadstate2.c: (bus_handler), (timeout_func),
26751         (main):
26752         * tests/threadstate/threadstate3.c: (main):
26753         * tests/threadstate/threadstate4.c: (main):
26754         * tests/threadstate/threadstate5.c: (main):
26755         Fix the tests.
26756
26757 2005-07-21  Wim Taymans  <wim@fluendo.com>
26758
26759         * docs/design/part-seeking.txt:
26760         Some small additions.
26761
26762         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
26763         (gst_base_sink_get_times), (gst_base_sink_do_sync),
26764         (gst_base_sink_activate_push), (gst_base_sink_activate_pull):
26765         * gst/base/gstbasesink.h:
26766         discont values are gint64, handle the math correctly.
26767
26768         * gst/base/gstbasesrc.c: (gst_base_src_loop):
26769         Make the basesrc report error if the source pad is not linked.
26770
26771         * gst/gstqueue.c: (gst_queue_link_src), (gst_queue_chain),
26772         (gst_queue_loop), (gst_queue_handle_src_query),
26773         (gst_queue_src_activate_push):
26774         Make queue collect data even if the srcpad is not linked.
26775         Start pushing out data as soon as it is linked.
26776
26777         * gst/gstutils.c: (gst_element_unlink), (gst_flow_get_name):
26778         * gst/gstutils.h:
26779         Added gst_flow_get_name() to ease error reporting.
26780
26781 2005-07-20  Wim Taymans  <wim@fluendo.com>
26782
26783         * gst/gstmessage.c: (gst_message_new_segment_start),
26784         (gst_message_new_segment_done), (gst_message_parse_segment_start),
26785         (gst_message_parse_segment_done):
26786         * gst/gstmessage.h:
26787         Added a bunch of messages for advanced seeking.
26788
26789         * gst/parse/grammar.y:
26790         * libs/gst/control/dparammanager.c: (gst_dpman_set_parent),
26791         (gst_dpman_state_changed):
26792         Fix some new-pad -> pad-added signals
26793
26794 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26795
26796         * docs/manual/appendix-porting.xml:
26797         * docs/pwg/appendix-porting.xml:
26798           Document new-pad/state-change signal renames and the FixedList
26799           type rename.
26800
26801 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26802
26803         * docs/manual/advanced-autoplugging.xml:
26804         * docs/manual/basics-helloworld.xml:
26805         * docs/manual/basics-pads.xml:
26806         * docs/random/ds/0.9-suggested-changes:
26807         * gst/gstelement.c: (gst_element_class_init), (gst_element_seek):
26808         * gst/gstelement.h:
26809         * gst/gstevent.h:
26810         * gst/gstformat.h:
26811         * gst/gstquery.h:
26812         * gst/gststructure.c: (gst_structure_value_get_generic_type),
26813         (gst_structure_parse_array), (gst_structure_parse_value):
26814         * gst/gstvalue.c: (gst_type_is_fixed),
26815         (gst_value_list_prepend_value), (gst_value_list_append_value),
26816         (gst_value_list_get_size), (gst_value_list_get_value),
26817         (gst_value_transform_array_string), (gst_value_serialize_array),
26818         (gst_value_deserialize_array), (gst_value_intersect_array),
26819         (gst_value_is_fixed), (_gst_value_initialize):
26820         * gst/gstvalue.h:
26821           GstElement::new-pad -> pad-added, GstElement::state-change ->
26822           state-changed, GstValueFixedList -> GstValueArray, add format and
26823           flags as their own arguments in gst_element_seek() (should improve
26824           "bindeability"), remove function generators since they don't work
26825           under a whole bunch of compilers (they were deprecated already
26826           anyway).
26827
26828 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26829
26830         * gst/gstinfo.c: (_gst_debug_nameof_funcptr),
26831         (_gst_debug_register_funcptr):
26832         * gst/gstinfo.h:
26833           Fix illegal cast on some platforms (#309253).
26834
26835 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26836
26837         * gst/gstmessage.c: (gst_message_new_custom):
26838         * gst/gstmessage.h:
26839           Add _new_custom, make _new_application a macro to _new_custom.
26840
26841 2005-07-20  Wim Taymans  <wim@fluendo.com>
26842
26843         * gst/base/gstbasesrc.c: (gst_base_src_init),
26844         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start):
26845         * gst/base/gstbasesrc.h:
26846         Add a gboolean to decide when to push out a discont.
26847
26848         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
26849         (gst_queue_loop), (gst_queue_handle_src_query),
26850         (gst_queue_sink_activate_push), (gst_queue_src_activate_push),
26851         (gst_queue_set_property), (gst_queue_get_property):
26852         Some cleanups.
26853
26854         * tests/threadstate/threadstate1.c: (main):
26855         Make a thread test compile and run... very silly..
26856
26857
26858 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26859
26860         * docs/manual/appendix-porting.xml:
26861           Mention removal of libgstgconf-0.9.la and existence of gconf
26862           elements.
26863
26864 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
26865
26866         * docs/pwg/advanced-clock.xml:
26867         * docs/pwg/appendix-porting.xml:
26868         * docs/pwg/intro-preface.xml:
26869         * docs/pwg/other-base.xml:
26870         * docs/pwg/other-manager.xml:
26871         * docs/pwg/other-nton.xml:
26872         * docs/pwg/other-ntoone.xml:
26873         * docs/pwg/other-oneton.xml:
26874         * docs/pwg/pwg.xml:
26875           Document base classes, update sections of n-to-1 and 1-to-n (muxer,
26876           demuxer), remove n-to-n (was never written), fix some code examples
26877           and links and update the porting section to include all this.
26878
26879 2005-07-19  Wim Taymans  <wim@fluendo.com>
26880
26881         * gst/gstqueue.c: (gst_queue_init), (gst_queue_handle_sink_event),
26882         (gst_queue_chain), (gst_queue_loop), (gst_queue_handle_src_event),
26883         (gst_queue_handle_src_query), (gst_queue_sink_activate_push),
26884         (gst_queue_src_activate_push), (gst_queue_change_state),
26885         (gst_queue_get_property):
26886         * gst/gstqueue.h:
26887         Propagate GstFlowReturn more intelligently upstream and output
26888         an ERROR/EOS when streaming stopped due to fatal error.
26889
26890 2005-07-19  Wim Taymans  <wim@fluendo.com>
26891
26892         * tools/gst-launch.c: (check_intr), (event_loop), (main):
26893         Don't block forever for the state change to complete, the
26894         pipeline already did with a sensible timeout.
26895
26896 2005-07-19  Wim Taymans  <wim@fluendo.com>
26897
26898         * gst/base/gstbasesrc.c: (gst_base_src_get_range):
26899         Make sure we never call the create function is we
26900         got deactivated.
26901
26902 2005-07-19  Andy Wingo  <wingo@pobox.com>
26903
26904         * gst/parse/parse.l: Attempt to solve bug #172815.
26905
26906 2005-07-19  Wim Taymans  <wim@fluendo.com>
26907
26908         * docs/design/part-clocks.txt:
26909         * docs/design/part-events.txt:
26910         * gst/base/gstbasesrc.c: (gst_base_src_do_seek):
26911         Small docs updates.
26912         Only update the seeking values when we are not
26913         busy streaming.
26914
26915 2005-07-19  Jan Schmidt  <thaytan@mad.scientist.com>
26916
26917         * gst/base/gstbasesrc.c: (gst_base_src_loop):
26918           Oops, ignore the result of gst_pad_push_event here.
26919
26920 2005-07-19  Jan Schmidt  <thaytan@mad.scientist.com>
26921
26922         * gst/base/gstbasesrc.c: (gst_base_src_loop),
26923         (gst_base_src_activate_push):
26924           Send discont event from the loop function, as pads
26925           aren't activated yet in the activate_push handler.
26926
26927         * gst/gstbin.c: (bin_bus_handler):
26928           Don't leak element name.
26929
26930 2005-07-18  Andy Wingo  <wingo@pobox.com>
26931
26932         * configure.ac: Use AS_LIBTOOL_TAGS.
26933
26934 2005-07-18  Wim Taymans  <wim@fluendo.com>
26935
26936         * docs/gst/gstreamer.types:
26937         Remove deleted types.
26938
26939 2005-07-18  Wim Taymans  <wim@fluendo.com>
26940
26941         * check/elements/gstfakesrc.c: (GST_START_TEST):
26942         * configure.ac:
26943         * gst/Makefile.am:
26944         * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
26945         (init_popt_callback):
26946         * gst/gst.h:
26947         * gst/gst_private.h:
26948         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_add_func),
26949         (gst_bin_remove_func), (gst_bin_get_state), (gst_bin_change_state):
26950         * gst/gstbin.h:
26951         * gst/gstbus.h:
26952         * gst/gstconfig.h.in:
26953         * gst/gstelement.c: (gst_element_class_init),
26954         (gst_element_set_base_time), (gst_element_get_base_time),
26955         (iterator_fold_with_resync), (gst_element_change_state),
26956         (gst_element_dispose), (gst_element_get_bus):
26957         * gst/gstelement.h:
26958         * gst/gstelementfactory.h:
26959         * gst/gsterror.c: (_gst_core_errors_init):
26960         * gst/gsterror.h:
26961         * gst/gstevent.h:
26962         * gst/gstghostpad.c: (gst_ghost_pad_do_activate_push):
26963         * gst/gstindex.c:
26964         * gst/gstinfo.c: (_gst_debug_init):
26965         * gst/gstmessage.c: (_gst_message_copy):
26966         * gst/gstmessage.h:
26967         * gst/gstminiobject.h:
26968         * gst/gstobject.c:
26969         * gst/gstobject.h:
26970         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
26971         (gst_pad_set_caps), (gst_pad_start_task), (gst_pad_stop_task):
26972         * gst/gstpad.h:
26973         * gst/gstparse.h:
26974         * gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
26975         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time),
26976         (gst_pipeline_get_last_stream_time):
26977         * gst/gstpipeline.h:
26978         * gst/gstpluginfeature.h:
26979         * gst/gstquery.h:
26980         * gst/gstscheduler.c:
26981         * gst/gstscheduler.h:
26982         * gst/gststructure.h:
26983         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
26984         (gst_task_finalize), (gst_task_func), (gst_task_create),
26985         (gst_task_set_lock), (gst_task_get_state), (gst_task_start),
26986         (gst_task_stop), (gst_task_pause):
26987         * gst/gsttask.h:
26988         * gst/gsttypefind.h:
26989         * gst/gsttypes.h:
26990         * gst/registries/gstlibxmlregistry.c: (load_feature),
26991         (gst_xml_registry_load), (gst_xml_registry_save_feature):
26992         * gst/registries/gstxmlregistry.c:
26993         (gst_xml_registry_start_element), (gst_xml_registry_save_feature):
26994         * gst/schedulers/threadscheduler.c:
26995         * libs/gst/control/dparammanager.h:
26996         * tools/gst-inspect.c: (print_element_list),
26997         (print_plugin_features), (print_element_features):
26998         * tools/gst-xmlinspect.c: (print_element_list),
26999         (print_plugin_info), (main):
27000         Removed plugable schedulers.
27001         Removed Scheduler/Manager from elements.
27002         Removed gsttypes.h, rearranged includes.
27003         Removed dependency pad<->element, element<>pipeline, and
27004         various others,  fix includes.
27005         implement gst_pad_get_parent() with gst_object_get_parent()
27006         Make GstTask sefcontained.
27007         Fix _get_state() on GstBin, it did not return ASYNC with a 0
27008         timeout.
27009         Fix endless loop in iterator_fold_with_resync.
27010
27011
27012 2005-07-18  Wim Taymans  <wim@fluendo.com>
27013
27014         * gst/Makefile.am:
27015         * gst/gstarch.h:
27016         Remove old file.
27017
27018 2005-07-18  Wim Taymans  <wim@fluendo.com>
27019
27020         * gst/Makefile.am:
27021         No more cothreads.h
27022
27023 2005-07-18  Wim Taymans  <wim@fluendo.com>
27024
27025         * gst/cothreads.c:
27026         * gst/cothreads.h:
27027         Let's remove these.
27028
27029 2005-07-18  Wim Taymans  <wim@fluendo.com>
27030
27031         * docs/design/part-dynamic.txt:
27032         * docs/design/part-events.txt:
27033         * docs/design/part-seeking.txt:
27034         Some more docs in the works.
27035
27036         * gst/base/gstbasetransform.c: (gst_base_transform_transform_caps),
27037         (gst_base_transform_getcaps), (gst_base_transform_configure_caps),
27038         (gst_base_transform_setcaps), (gst_base_transform_get_size),
27039         (gst_base_transform_buffer_alloc), (gst_base_transform_event),
27040         (gst_base_transform_handle_buffer),
27041         (gst_base_transform_sink_activate_push),
27042         (gst_base_transform_src_activate_pull),
27043         (gst_base_transform_set_passthrough),
27044         (gst_base_transform_is_passthrough):
27045         Refcounting fixes.
27046
27047         * gst/gstbus.c: (gst_bus_source_dispatch), (gst_bus_poll):
27048         Cleanups.
27049
27050         * gst/gstevent.c: (gst_event_finalize):
27051         Set SRC to NULL.
27052
27053         * gst/gstutils.c: (gst_element_unlink),
27054         (gst_pad_get_parent_element), (gst_pad_proxy_getcaps),
27055         (gst_pad_proxy_setcaps):
27056         * gst/gstutils.h:
27057         Add _get_parent_element() to get a pads parent as an element.
27058
27059 2005-07-18  Wim Taymans  <wim@fluendo.com>
27060
27061         * check/gst/gstbin.c: (GST_START_TEST):
27062         Remove bogus test.
27063
27064 2005-07-18  Wim Taymans  <wim@fluendo.com>
27065
27066         * gst/base/gstbasesink.c: (gst_base_sink_pad_getcaps),
27067         (gst_base_sink_pad_setcaps), (gst_base_sink_pad_buffer_alloc),
27068         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_object),
27069         (gst_base_sink_event), (gst_base_sink_do_sync),
27070         (gst_base_sink_chain), (gst_base_sink_loop),
27071         (gst_base_sink_deactivate), (gst_base_sink_activate_push),
27072         (gst_base_sink_activate_pull), (gst_base_sink_change_state):
27073         Refcounting fixes.
27074         Fix logic for returning ASYNC when not prerolled.
27075
27076 2005-07-18  Wim Taymans  <wim@fluendo.com>
27077
27078         * gst/gstqueue.c: (gst_queue_handle_sink_event):
27079         Fix nasty refcount bug.
27080
27081 2005-07-16 Philippe Khalaf <burger@speedy.org>
27082
27083         * gst/elements/gstfdsrc.c:
27084         * gst/elements/gstfdsrc.h:
27085         * gst/elements/gstelements.c:
27086         * gst/elements/Makefile.am:
27087         Ported fdsrc to 0.9.
27088
27089 2005-07-16  Wim Taymans  <wim@fluendo.com>
27090
27091         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
27092         (gst_base_sink_do_sync):
27093         Fix compile error.
27094
27095 2005-07-16  Wim Taymans  <wim@fluendo.com>
27096
27097         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
27098         (gst_base_sink_event), (gst_base_sink_get_times),
27099         (gst_base_sink_do_sync), (gst_base_sink_change_state):
27100         * gst/base/gstbasesink.h:
27101         Store and use discont values when syncing buffers as described
27102         in design docs.
27103         
27104         * gst/base/gstbasesrc.c: (gst_base_src_send_discont),
27105         (gst_base_src_do_seek), (gst_base_src_loop), (gst_base_src_start),
27106         (gst_base_src_activate_push):
27107         Push discont event when starting.
27108
27109         * gst/elements/gstidentity.c: (gst_identity_transform):
27110         Small cleanups.
27111
27112         * gst/gstbin.c: (gst_bin_change_state):
27113         Small cleanups in base_time  distribution.
27114
27115         * gst/gstelement.c: (gst_element_set_base_time),
27116         (gst_element_get_base_time), (gst_element_change_state):
27117         * gst/gstelement.h:
27118         Added methods for the base_time of the element.
27119         Some MT fixes.
27120
27121         * gst/gstpipeline.c: (gst_pipeline_send_event),
27122         (gst_pipeline_change_state), (gst_pipeline_set_new_stream_time),
27123         (gst_pipeline_get_last_stream_time):
27124         * gst/gstpipeline.h:
27125         MT fixes.
27126         Handle seeking as described in design doc, remove stream_time
27127         hack.
27128         Cleanups clock and stream_time selection code. Added accessors
27129         for the stream_time.
27130         
27131
27132 2005-07-16  Andy Wingo  <wingo@pobox.com>
27133
27134         * gst/gsterror.c (_gst_core_errors_init): Use the magic word
27135         (#305291).
27136
27137 2005-07-16  Wim Taymans  <wim@fluendo.com>
27138
27139         * check/gst/gstbin.c: (GST_START_TEST):
27140         Make elements silent as the deep_notify refs the
27141         parent, which might make the test fail.
27142
27143         * gst/gstghostpad.c: (gst_ghost_pad_do_activate_push):
27144         Don't hold the lock for too long.
27145
27146 2005-07-16  Tim-Philipp Müller  <tim at centricular dot net>
27147
27148         * gst/base/gstbasesrc.c: (gst_base_src_default_negotiate):
27149           Don't unref the caps we passed to gst_caps_make_writable() after
27150           passing them. gst_caps_make_writable() will do that for us.
27151
27152 2005-07-15  Andy Wingo  <wingo@pobox.com>
27153
27154         * gst/gstcaps.h (gst_caps_is_simple): Removed deprecated macro
27155         (#157311).
27156
27157         * gst/elements/gstidentity.c (marshal_VOID__MINIOBJECT): Write our
27158         own marshalling function for the handoff signal. Properly type the
27159         buffer as a buffer. Fixes some warnings. Should do a more general
27160         solution.
27161         (gst_identity_class_init): Plug into the right marshaller.
27162
27163 2005-07-15  Wim Taymans  <wim@fluendo.com>
27164
27165         * docs/design/part-TODO.txt:
27166         * docs/design/part-clocks.txt:
27167         * docs/design/part-element-sink.txt:
27168         * docs/design/part-events.txt:
27169         * docs/design/part-gstpipeline.txt:
27170         Updated docs, mostly DISCONT related.
27171
27172 2005-07-15  Tim-Philipp Müller  <tim at centricular dot net>
27173
27174         * docs/pwg/building-pads.xml:
27175           s/GST_PAD_LINK_REFUSED/FALSE/ in gst_my_filter_setcaps()
27176
27177 2005-07-15  Andy Wingo  <wingo@pobox.com>
27178
27179         * tools/gst-typefind.c: Update, add copyright block.
27180
27181         * gst/base/gstbasesrc.c (gst_base_src_default_negotiate):
27182         Normalize and truncate caps before fixation.
27183
27184         * gst/gstcaps.h:
27185         * gst/gstcaps.c (gst_caps_truncate): New function, destructively
27186         discards all but the first structure from its argument.
27187
27188 2005-07-15  Wim Taymans  <wim@fluendo.com>
27189
27190         * gst/base/gstbasetransform.c: (gst_base_transform_init),
27191         (gst_base_transform_transform_caps), (gst_base_transform_getcaps),
27192         (gst_base_transform_configure_caps), (gst_base_transform_setcaps),
27193         (gst_base_transform_get_size), (gst_base_transform_buffer_alloc),
27194         (gst_base_transform_handle_buffer), (gst_base_transform_getrange),
27195         (gst_base_transform_chain), (gst_base_transform_change_state),
27196         (gst_base_transform_set_passthrough),
27197         (gst_base_transform_is_passthrough):
27198         * gst/base/gstbasetransform.h:
27199         Make passthrough work using the bufferpools.
27200         Changed API a bit, subclasses have to write into a buffer
27201         provided by the base class.
27202         More debug info in nego functions.
27203         
27204         * gst/elements/gstidentity.c: (gst_identity_init),
27205         (gst_identity_transform):
27206         Port to new base class.
27207
27208 2005-07-15  Wim Taymans  <wim@fluendo.com>
27209
27210         * gst/gstmessage.c: (gst_message_new_state_changed):
27211         * tools/gst-launch.c: (event_loop), (main):
27212         Totally dump messages in -launch with the -m option.
27213         Fix message name for State messages,
27214
27215 2005-07-14  Wim Taymans  <wim@fluendo.com>
27216
27217         * gst/base/gstbasesrc.c: (gst_base_src_loop):
27218         Post error messages on errors.
27219
27220 2005-07-14  Wim Taymans  <wim@fluendo.com>
27221
27222         * gst/gstcaps.c: (gst_caps_do_simplify):
27223         Remove debug info.
27224
27225         * gst/gsterror.h:
27226         Define error for stream stopped.
27227
27228         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
27229         (gst_proxy_pad_do_chain), (gst_proxy_pad_do_getrange):
27230         Do proper return values.
27231
27232         * gst/gstpad.c: (gst_pad_get_caps_unlocked), (gst_pad_accept_caps),
27233         (gst_pad_set_caps), (gst_pad_chain), (gst_pad_push),
27234         (gst_pad_get_range):
27235         Better return values.
27236
27237         * gst/gstpad.h:
27238         Reorganise return values, add macro to check for fatal errors.
27239
27240         * gst/gstqueue.c: (gst_queue_chain):
27241         Return proper GstFlowReturn values,
27242
27243 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
27244
27245         * docs/gst/gstreamer-sections.txt:
27246         * docs/gst/gstreamer.types:
27247         * docs/gst/tmpl/gst.sgml:
27248         * docs/gst/tmpl/gstbasesink.sgml:
27249         * docs/gst/tmpl/gstbasesrc.sgml:
27250         * docs/gst/tmpl/gstbasetransform.sgml:
27251         * docs/gst/tmpl/gstbin.sgml:
27252         * docs/gst/tmpl/gstbuffer.sgml:
27253         * docs/gst/tmpl/gstcaps.sgml:
27254         * docs/gst/tmpl/gstclock.sgml:
27255         * docs/gst/tmpl/gstcompat.sgml:
27256         * docs/gst/tmpl/gstconfig.sgml:
27257         * docs/gst/tmpl/gstelement.sgml:
27258         * docs/gst/tmpl/gstelementdetails.sgml:
27259         * docs/gst/tmpl/gstelementfactory.sgml:
27260         * docs/gst/tmpl/gstenumtypes.sgml:
27261         * docs/gst/tmpl/gsterror.sgml:
27262         * docs/gst/tmpl/gstevent.sgml:
27263         * docs/gst/tmpl/gstfakesink.sgml:
27264         * docs/gst/tmpl/gstfakesrc.sgml:
27265         * docs/gst/tmpl/gstfilesink.sgml:
27266         * docs/gst/tmpl/gstfilesrc.sgml:
27267         * docs/gst/tmpl/gstfilter.sgml:
27268         * docs/gst/tmpl/gstformat.sgml:
27269         * docs/gst/tmpl/gstghostpad.sgml:
27270         * docs/gst/tmpl/gstimplementsinterface.sgml:
27271         * docs/gst/tmpl/gstindex.sgml:
27272         * docs/gst/tmpl/gstindexfactory.sgml:
27273         * docs/gst/tmpl/gstinfo.sgml:
27274         * docs/gst/tmpl/gstiterator.sgml:
27275         * docs/gst/tmpl/gstmacros.sgml:
27276         * docs/gst/tmpl/gstmemchunk.sgml:
27277         * docs/gst/tmpl/gstminiobject.sgml:
27278         * docs/gst/tmpl/gstobject.sgml:
27279         * docs/gst/tmpl/gstpad.sgml:
27280         * docs/gst/tmpl/gstpadtemplate.sgml:
27281         * docs/gst/tmpl/gstparse.sgml:
27282         * docs/gst/tmpl/gstpipeline.sgml:
27283         * docs/gst/tmpl/gstplugin.sgml:
27284         * docs/gst/tmpl/gstpluginfeature.sgml:
27285         * docs/gst/tmpl/gstquery.sgml:
27286         * docs/gst/tmpl/gstqueue.sgml:
27287         * docs/gst/tmpl/gstregistry.sgml:
27288         * docs/gst/tmpl/gstregistrypool.sgml:
27289         * docs/gst/tmpl/gstscheduler.sgml:
27290         * docs/gst/tmpl/gstschedulerfactory.sgml:
27291         * docs/gst/tmpl/gststructure.sgml:
27292         * docs/gst/tmpl/gstsystemclock.sgml:
27293         * docs/gst/tmpl/gsttaglist.sgml:
27294         * docs/gst/tmpl/gsttagsetter.sgml:
27295         * docs/gst/tmpl/gsttrace.sgml:
27296         * docs/gst/tmpl/gsttrashstack.sgml:
27297         * docs/gst/tmpl/gsttypefind.sgml:
27298         * docs/gst/tmpl/gsttypefindfactory.sgml:
27299         * docs/gst/tmpl/gsttypes.sgml:
27300         * docs/gst/tmpl/gsturihandler.sgml:
27301         * docs/gst/tmpl/gsturitype.sgml:
27302         * docs/gst/tmpl/gstutils.sgml:
27303         * docs/gst/tmpl/gstvalue.sgml:
27304         * docs/gst/tmpl/gstversion.sgml:
27305         * docs/gst/tmpl/gstxml.sgml:
27306         * docs/libs/tmpl/gstcontrol.sgml:
27307         * docs/libs/tmpl/gstdataprotocol.sgml:
27308         * docs/libs/tmpl/gstdparam.sgml:
27309         * docs/libs/tmpl/gstdplinint.sgml:
27310         * docs/libs/tmpl/gstdpman.sgml:
27311         * docs/libs/tmpl/gstdpsmooth.sgml:
27312         * docs/libs/tmpl/gstgetbits.sgml:
27313         * docs/libs/tmpl/gstunitconvert.sgml:
27314         * gst/base/gstpushsrc.c: (gst_push_src_get_type),
27315         (gst_push_src_base_init), (gst_push_src_class_init),
27316         (gst_push_src_init), (gst_push_src_create):
27317         * gst/base/gstpushsrc.h:
27318         * gst/elements/gstelements.c:
27319         * gst/elements/gstfakesink.c: (gst_fake_sink_state_error_get_type),
27320         (gst_fake_sink_base_init), (gst_fake_sink_class_init),
27321         (gst_fake_sink_init), (gst_fake_sink_set_property),
27322         (gst_fake_sink_get_property), (gst_fake_sink_get_times),
27323         (gst_fake_sink_event), (gst_fake_sink_preroll),
27324         (gst_fake_sink_render), (gst_fake_sink_change_state):
27325         * gst/elements/gstfakesink.h:
27326         * gst/elements/gstfakesrc.c: (gst_fake_src_data_get_type),
27327         (gst_fake_src_sizetype_get_type), (gst_fake_src_filltype_get_type),
27328         (gst_fake_src_base_init), (gst_fake_src_class_init),
27329         (gst_fake_src_init), (gst_fake_src_event_handler),
27330         (gst_fake_src_alloc_parent), (gst_fake_src_set_property),
27331         (gst_fake_src_get_property), (gst_fake_src_prepare_buffer),
27332         (gst_fake_src_alloc_buffer), (gst_fake_src_get_size),
27333         (gst_fake_src_create_buffer), (gst_fake_src_create),
27334         (gst_fake_src_start), (gst_fake_src_stop):
27335         * gst/elements/gstfakesrc.h:
27336         * gst/elements/gstfilesink.c: (_do_init),
27337         (gst_file_sink_base_init), (gst_file_sink_class_init),
27338         (gst_file_sink_init), (gst_file_sink_dispose),
27339         (gst_file_sink_set_location), (gst_file_sink_set_property),
27340         (gst_file_sink_get_property), (gst_file_sink_open_file),
27341         (gst_file_sink_close_file), (gst_file_sink_query),
27342         (gst_file_sink_event), (gst_file_sink_render),
27343         (gst_file_sink_change_state), (gst_file_sink_uri_get_type),
27344         (gst_file_sink_uri_get_protocols), (gst_file_sink_uri_get_uri),
27345         (gst_file_sink_uri_set_uri), (gst_file_sink_uri_handler_init):
27346         * gst/elements/gstfilesink.h:
27347         * gst/elements/gstfilesrc.c: (_do_init), (gst_file_src_base_init),
27348         (gst_file_src_class_init), (gst_file_src_init),
27349         (gst_file_src_finalize), (gst_file_src_set_location),
27350         (gst_file_src_set_property), (gst_file_src_get_property),
27351         (gst_file_src_map_region), (gst_file_src_map_small_region),
27352         (gst_file_src_create_mmap), (gst_file_src_create_read),
27353         (gst_file_src_create), (gst_file_src_is_seekable),
27354         (gst_file_src_get_size), (gst_file_src_start), (gst_file_src_stop),
27355         (gst_file_src_uri_get_type), (gst_file_src_uri_get_protocols),
27356         (gst_file_src_uri_get_uri), (gst_file_src_uri_set_uri),
27357         (gst_file_src_uri_handler_init):
27358         * gst/elements/gstfilesrc.h:
27359           more autistic cleanliness in functions/names/defines
27360
27361 2005-07-13  Andy Wingo  <wingo@pobox.com>
27362
27363         * gst/base/gstbasesrc.c (gst_base_src_start): Post an error if the
27364         source couldn't negotiate.
27365
27366         * gst/parse/grammar.y: Revert 1.54->1.55, so we now do filtered
27367         connections again.
27368
27369         * gst/gstutils.h:
27370         * gst/gstutils.c (gst_element_link_pads_filtered): New old
27371         function. I am channeling Hades. Put your boots on suckers!!!
27372
27373 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
27374
27375         * testsuite/caps/Makefile.am:
27376         * testsuite/caps/value_compare.c:
27377         * testsuite/caps/value_intersect.c:
27378         * check/gst/gstvalue.c: (GST_START_TEST), (gst_value_suite):
27379           move two testsuite apps over to the check dir
27380
27381 2005-07-12  Wim Taymans  <wim@fluendo.com>
27382
27383         * gst/base/gstbasetransform.c: (gst_base_transform_setcaps):
27384         Added more debug info in the negotiate process.
27385
27386         * gst/gstmessage.h:
27387         Prepare for segment playback.
27388
27389         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps):
27390         Better debugging.
27391
27392         * gst/gstutils.c:
27393         Some more docs.
27394
27395         * tools/gst-launch.c: (main):
27396         NULL pipeline on errors.
27397
27398 2005-07-12  Andy Wingo  <wingo@pobox.com>
27399
27400         * gst/gstbuffer.c (_gst_buffer_copy): Copy the buffer whether or
27401         not it comes from a malloc region. Make sure our copy gets freed.
27402
27403 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
27404
27405         * check/gst/gstelement.c: (GST_START_TEST), (gst_element_suite):
27406         * check/gst/gstmessage.c: (GST_START_TEST):
27407         * check/gst/gststructure.c: (GST_START_TEST),
27408         (gst_structure_suite), (main):
27409           more testing
27410         * gst/gstelement.c: (gst_element_message_full):
27411           clean up GError and debug string now that they get copied
27412         * gst/gstmessage.c: (gst_message_new_error),
27413         (gst_message_new_warning), (gst_message_parse_error),
27414         (gst_message_parse_warning):
27415           use GST_TYPE_G_ERROR for structure_new, and take copies of
27416           arguments, so that we don't mess up refcounting
27417
27418 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
27419
27420         * check/Makefile.am:
27421           add per-test valgrind targets
27422         * check/gst-libs/gdp.c: (GST_START_TEST),
27423         (gst_data_protocol_suite), (main):
27424           clean up
27425
27426 2005-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
27427
27428         * check/Makefile.am:
27429           instate more valgrindable tests
27430         * check/elements/gstfakesrc.c: (chain_func), (event_func),
27431         (GST_START_TEST), (fakesrc_suite):
27432         * check/gst/gstpad.c: (GST_START_TEST):
27433         * check/gst/gststructure.c: (GST_START_TEST):
27434           fix test leaks
27435         * docs/gst/tmpl/gstminiobject.sgml:
27436         * gst/gstpad.c: (gst_pad_finalize):
27437           fix the static mutex leak
27438
27439 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
27440
27441         * check/Makefile.am:
27442           add two more tests for valgrinding
27443         * check/gst/gstvalue.c: (GST_START_TEST):
27444           test refcount of deserialized buffer, found a leak
27445         * docs/gst/gstreamer-docs.sgml:
27446         * docs/gst/gstreamer-sections.txt:
27447         * docs/gst/gstreamer.types:
27448         * docs/gst/tmpl/gstminiobject.sgml:
27449           add miniobject to docs
27450         * gst/gstminiobject.c:
27451           add some docs
27452         * gst/gstvalue.c: (gst_value_deserialize_buffer),
27453         (gst_string_unwrap):
27454           fix a hard-to-find invalid write for one of the tests
27455           fix a leak for deserialized buffers
27456
27457 2005-07-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27458
27459         * docs/pwg/advanced-events.xml:
27460         * docs/pwg/advanced-request.xml:
27461         * docs/pwg/advanced-scheduling.xml:
27462         * docs/pwg/appendix-porting.xml:
27463         * docs/pwg/building-boiler.xml:
27464         * docs/pwg/intro-preface.xml:
27465         * docs/pwg/other-ntoone.xml:
27466           Rewrite scheduling-chapter for scheduling model in 0.9. Add lots
27467           of example code and explanation for pad activation, loop() and
27468           getrange() functions and a bit more. Remove old comments pointing
27469           to loop-functions.
27470         * examples/pwg/Makefile.am:
27471           Add loop/getrange examples.
27472
27473 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
27474
27475         * configure.ac:
27476           check for valgrind binary + some fixes
27477         * check/gst.supp:
27478           valgrind suppressions for the tests
27479         * check/Makefile.am:
27480           add a valgrind: target that valgrinds the unit tests
27481         * check/gst/gst.c: (GST_START_TEST), (gst_suite):
27482         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST):
27483         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
27484         * check/gst/gstghostpad.c:
27485           added some cleanup
27486         * check/gst/gstdata.c:
27487           removed
27488         * check/gst/gstminiobject.c: (GST_START_TEST), (thread_ref),
27489         (thread_unref), (gst_mini_object_suite), (main):
27490           added
27491         * gst/gst.c: (gst_deinit):
27492         * gst/gst.h:
27493           add a method to clean up.
27494         * gst/gstsystemclock.c: (gst_system_clock_dispose),
27495         (gst_system_clock_obtain):
27496           allow for disposing the system clock.
27497         * tools/gst-launch.c: (main):
27498           deinit
27499
27500 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
27501
27502         * docs/gst/tmpl/gstbasesrc.sgml:
27503         * docs/gst/tmpl/gstfakesrc.sgml:
27504         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
27505         (gst_base_src_init), (gst_base_src_set_property),
27506         (gst_base_src_get_property), (gst_base_src_get_range),
27507         (gst_base_src_start):
27508         * gst/base/gstbasesrc.h:
27509           add num-buffers property
27510         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
27511         (gst_fakesrc_init), (gst_fakesrc_set_property),
27512         (gst_fakesrc_get_property), (gst_fakesrc_create),
27513         (gst_fakesrc_start):
27514           remove num-buffers property
27515
27516 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27517
27518         * docs/gst/gstreamer-sections.txt:
27519         * docs/gst/tmpl/gstbasesink.sgml:
27520         * docs/gst/tmpl/gstbasesrc.sgml:
27521         * gst/base/gstbasesink.c: (gst_base_sink_pad_getcaps),
27522         (gst_base_sink_pad_setcaps), (gst_base_sink_pad_buffer_alloc),
27523         (gst_base_sink_finalize), (gst_base_sink_set_clock),
27524         (gst_base_sink_set_property), (gst_base_sink_get_property),
27525         (gst_base_sink_handle_object), (gst_base_sink_event),
27526         (gst_base_sink_do_sync), (gst_base_sink_handle_event),
27527         (gst_base_sink_handle_buffer), (gst_base_sink_chain),
27528         (gst_base_sink_loop), (gst_base_sink_deactivate),
27529         (gst_base_sink_activate_push), (gst_base_sink_activate_pull),
27530         (gst_base_sink_change_state):
27531         * gst/base/gstbasesink.h:
27532         * gst/base/gstbasesrc.h:
27533         * gst/elements/gstfakesink.c: (gst_fakesink_get_times):
27534         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
27535         (gst_filesink_init):
27536           more macro splitting
27537
27538 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27539
27540         * gst/gstelement.c: (gst_element_get_bus):
27541           add debug
27542         * tools/gst-launch.c: (check_intr), (event_loop):
27543           fix bus leaks
27544
27545 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27546
27547         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked):
27548           fix a caps leak
27549
27550 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
27551
27552         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
27553         (gst_base_src_finalize):
27554           add finalize method and clean up properly
27555         * gst/gstpipeline.c: (gst_pipeline_dispose):
27556           add debug
27557
27558 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27559
27560         * check/gst/gstbin.c: (pop_messages), (GST_START_TEST),
27561         (gst_bin_suite):
27562           add more things to check
27563         * gst/gstbin.c: (gst_bin_change_state), (bin_bus_handler):
27564         * gst/gstelement.c:
27565           more debug
27566
27567 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27568
27569         * check/elements/gstfakesrc.c: (chain_func), (event_func),
27570         (GST_START_TEST), (fakesrc_suite):
27571         * check/gst-libs/gdp.c: (GST_START_TEST):
27572         * check/gst/gst.c: (GST_START_TEST):
27573         * check/gst/gstbin.c: (GST_START_TEST), (gst_bin_suite):
27574         * check/gst/gstbuffer.c: (GST_START_TEST), (gst_test_suite):
27575         * check/gst/gstbus.c: (GST_START_TEST):
27576         * check/gst/gstcaps.c: (GST_START_TEST):
27577         * check/gst/gstdata.c: (GST_START_TEST):
27578         * check/gst/gstelement.c: (GST_START_TEST):
27579         * check/gst/gstghostpad.c: (GST_START_TEST):
27580         * check/gst/gstiterator.c: (GST_START_TEST):
27581         * check/gst/gstmessage.c: (GST_START_TEST):
27582         * check/gst/gstobject.c: (GST_START_TEST):
27583         * check/gst/gstpad.c: (GST_START_TEST):
27584         * check/gst/gststructure.c: (GST_START_TEST):
27585         * check/gst/gstsystemclock.c: (GST_START_TEST),
27586         (gst_systemclock_suite):
27587         * check/gst/gsttag.c: (GST_START_TEST), (gst_tag_suite):
27588         * check/gst/gstvalue.c: (GST_START_TEST):
27589         * check/pipelines/cleanup.c: (GST_START_TEST):
27590         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
27591         * check/states/sinks.c: (GST_START_TEST):
27592         * check/gstcheck.c: (gst_check_init):
27593         * check/gstcheck.h:
27594           add debugging category
27595           use GST_START_TEST now, so we add a debug line
27596
27597 2005-07-09  Thomas Vander Stichele  <thomas at apestaart dot org>
27598
27599         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite):
27600           add test for state change message on a bin
27601         * check/gst/gstelement.c: (START_TEST), (gst_element_suite):
27602           add another test
27603         * gst/gstbin.c: (gst_bin_init):
27604         * gst/gstbus.c: (gst_bus_init), (gst_bus_post):
27605         * gst/gstelement.c: (gst_element_post_message),
27606         (gst_element_set_state):
27607         * gst/gstelementfactory.c: (gst_element_factory_create):
27608         * gst/gstmessage.c: (gst_message_new):
27609         * gst/gstscheduler.c:
27610           various debugging additions and cleanups
27611
27612 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27613
27614         * check/Makefile.am:
27615         * check/gst/gstelement.c: (START_TEST), (gst_element_suite),
27616         (main):
27617           adding tests for elements
27618         * gst/gstelement.c: (gst_element_dispose):
27619
27620 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27621
27622         * gst/registries/gstlibxmlregistry.c: (load_feature):
27623           plug more leaks.  A simple gst_init() now is leakfree, yay.
27624
27625 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27626
27627         * gst/registries/gstlibxmlregistry.c: (read_string), (load_paths),
27628         (gst_xml_registry_load):
27629           plug another memleak
27630
27631 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27632
27633         * configure.ac:
27634           use GST_SET_ERROR_CFLAGS
27635         * docs/faq/cvs.xml:
27636           change to ERROR_CFLAGS
27637
27638 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
27639
27640         * configure.ac:
27641           make GST_ERROR_CFLAGS overridable and re-enable Werror
27642         * docs/faq/cvs.xml:
27643           add a note about error CFLAGS
27644         * docs/gst/tmpl/gstfakesrc.sgml:
27645         * gst/elements/gstfakesrc.c:
27646           comment out some unused code
27647         * gst/gst.c: (split_and_iterate):
27648         * gst/registries/gstlibxmlregistry.c: (load_pad_template),
27649         (load_feature):
27650           plug some memleaks
27651
27652 2005-07-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27653
27654         * common/Makefile.am:
27655         * common/gtk-doc.mak:
27656         * docs/gst/Makefile.am:
27657           factor out gtk-doc.mak
27658
27659 2005-07-07  Wim Taymans  <wim@fluendo.com>
27660
27661         * gst/schedulers/threadscheduler.c: (gst_thread_scheduler_func),
27662         (gst_thread_scheduler_dispose):
27663         Unlock the STREAM_LOCK completely.
27664
27665 2005-07-07  Thomas Vander Stichele  <thomas at apestaart dot org>
27666
27667         * check/Makefile.am:
27668         * check/elements/.cvsignore:
27669         * check/elements/gstfakesrc.c: (chain_func), (event_func),
27670         (START_TEST), (fakesrc_suite), (main):
27671         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
27672         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
27673         (gst_fakesrc_create), (gst_fakesrc_start):
27674         * gst/elements/gstfakesrc.h:
27675           adding a first element test
27676
27677 2005-07-07  Andy Wingo  <wingo@pobox.com>
27678
27679         * gst/gstbus.c (gst_bus_have_pending): Remove intensely irritating
27680         debug message.
27681
27682 2005-07-07  Wim Taymans  <wim@fluendo.com>
27683
27684         * gst/gstquery.c:
27685         * gst/gstquery.h:
27686         Remove old types
27687
27688 2005-07-07  Wim Taymans  <wim@fluendo.com>
27689
27690         * gst/base/gstbasesrc.c: (gst_base_src_get_range),
27691         (gst_base_src_default_negotiate), (gst_base_src_negotiate):
27692         Allow subclasses to implement their own negotiation.
27693
27694 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
27695
27696         * docs/design/part-gstbin.txt:
27697         * docs/design/part-gstpipeline.txt:
27698           Update design notes to reflect the movement of
27699           responsibility for bus handling from GstPipeline to
27700           GstBin
27701
27702 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
27703
27704         * configure.ac:
27705           Remove unnecessary queue2/3/4 examples.
27706
27707 2005-07-07  Jan Schmidt  <thaytan@mad.scientist.com>
27708
27709         * examples/Makefile.am:
27710         * examples/helloworld/helloworld.c: (event_loop), (main):
27711         * examples/queue/queue.c: (event_loop), (main):
27712         * examples/queue2/queue2.c: (main):
27713           Update a couple of the examples to work again.
27714
27715         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
27716         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_event):
27717          Spelling corrections and extra debug.
27718         
27719         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_init), (is_eos),
27720         (gst_bin_add_func), (bin_element_is_sink), (gst_bin_get_state),
27721         (gst_bin_change_state), (gst_bin_dispose), (bin_bus_handler):
27722         * gst/gstbin.h:
27723         * gst/gstpipeline.c: (gst_pipeline_init), (gst_pipeline_dispose),
27724         (gst_pipeline_change_state):
27725         * gst/gstpipeline.h:
27726           Move the bus handler for children to the GstBin, and create a
27727           separate bus for receiving messages from children to the one the
27728           bus sends 'upwards' on.
27729
27730 2005-07-06  Wim Taymans  <wim@fluendo.com>
27731
27732         * gst/base/README:
27733         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
27734         (gst_base_sink_handle_object), (gst_base_sink_loop),
27735         (gst_base_sink_change_state):
27736         * gst/base/gstbasesink.h:
27737         * gst/base/gstbasesrc.c: (gst_base_src_class_init),
27738         (gst_base_src_init), (gst_base_src_setcaps),
27739         (gst_base_src_getcaps), (gst_base_src_loop),
27740         (gst_base_src_default_negotiate), (gst_base_src_negotiate),
27741         (gst_base_src_start), (gst_base_src_change_state):
27742         * gst/base/gstbasesrc.h:
27743         Make basesrc negotiate.
27744         Handle the case where preroll fails in basesink.
27745         Update README.
27746
27747 2005-07-06  Wim Taymans  <wim@fluendo.com>
27748
27749         * gst/gstpad.c: (gst_pad_fixate_caps), (gst_pad_accept_caps):
27750         Implement the fixate function.
27751         Clean up acceptcaps.
27752
27753 2005-07-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27754
27755         * docs/pwg/building-filterfactory.xml:
27756         * docs/pwg/pwg.xml:
27757           Remove never-written filter-factory chapter; I'll add the various
27758           base classes to part 4 ("other element types") later on.
27759
27760 2005-07-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27761
27762         * docs/pwg/advanced-negotiation.xml:
27763         * docs/pwg/building-boiler.xml:
27764         * docs/pwg/building-pads.xml:
27765         * docs/pwg/pwg.xml:
27766         * examples/pwg/Makefile.am:
27767           Add a chapter on caps negotiation, simplify the original code
27768           samples a bit w.r.t. caps negotiation, add link to the advanced
27769           section. Add a bunch of examples showing different use cases of
27770           different types of caps negotiation. Upstream renegotiation isn't
27771           fully documented yet since nobody knows how that works.
27772
27773 2005-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
27774
27775         * check/gst/gstpad.c:
27776         * check/gstcheck.c:
27777         * gst/gstpad.c: (gst_pad_get_internal_links_default):
27778           if pad has no parent, return NULL as list of internal links
27779
27780 2005-07-05  Andy Wingo  <wingo@pobox.com>
27781
27782         * gst/elements/gstfilesrc.c:
27783         * gst/elements/gstfakesrc.c: 
27784         * gst/base/gstpushsrc.c:
27785         * gst/base/gstbasesrc.h: 
27786         * gst/base/gstbasesrc.c: s/BASESRC/BASE_SRC/g.
27787         
27788 2005-07-05  Stefan Kost  <ensonic@users.sf.net>
27789
27790         * Makefile.am:
27791           better report generation target (lcov needs a patch)
27792
27793 2005-07-05  Andy Wingo  <wingo@pobox.com>
27794
27795         * gst/elements, testsuite: Null if we got it...
27796
27797 2005-07-05  Wim Taymans  <wim@fluendo.com>
27798
27799         * configure.ac:
27800         * libs/gst/dataprotocol/Makefile.am:
27801         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_validate_packet):
27802         * libs/gst/dataprotocol/dataprotocol.h:
27803         * pkgconfig/Makefile.am:
27804         * pkgconfig/gstreamer-dataprotocol-uninstalled.pc.in:
27805         * pkgconfig/gstreamer-dataprotocol.pc.in:
27806         Ported dataprotol to 0.9. 
27807         Added pkgconfig files.
27808
27809 2005-07-05  Andy Wingo  <wingo@pobox.com>
27810
27811         * gst/base/gstbasetransform.c (gst_base_transform_setcaps):
27812         Default to returning TRUE for the case when tranform_caps returns
27813         a fixed caps, like for identity or volume.
27814
27815         * check/gst/gstbus.c (pound_bus_with_messages): 
27816         * check/gst/gstmessage.c (START_TEST): 
27817         * check/pipelines/simple_launch_lines.c (got_handoff): Application
27818         message API change.
27819
27820         * gst/base/gstbasetransform.c (gst_base_transform_setcaps): More
27821         logic weaks here: always run transform_caps, trying passthrough
27822         operation only if the original caps intersects with the transform.
27823
27824         * gst/gstpad.c (gst_pad_link_check_compatible_unlocked): Debug
27825         source and sink caps.
27826
27827         * gst/base/gstbasetransform.c (gst_base_transform_getcaps):
27828         Intersect the peer caps with the pad template before going into
27829         transform_caps.
27830         (gst_base_transform_transform_caps): More debugging.
27831
27832         * gst/gstmessage.h (gst_message_new_application): Take a GstObject
27833         src argument.
27834
27835 2005-07-04  Edward Hervey  <edward@fluendo.com>
27836
27837         * gst/gstutils.c:
27838         * gst/gstutils.h:
27839         (gst_pad_add_*_probe): now returns the signal id for better wrapping
27840         in bindings.
27841
27842 2005-07-04  Andy Wingo  <wingo@pobox.com>
27843
27844         * check/gst/gstpad.c: Only set explicit caps on pads.
27845
27846 2005-07-01  Andy Wingo  <wingo@pobox.com>
27847
27848         * tests/network-clock.scm: Commentary update.
27849
27850         * gst/elements/gstidentity.c (PROP_DUPLICATE): Gone daddy gone.
27851         Didn't really make sense, not implementable with basetransform,
27852         etc.
27853         (gst_identity_transform): Unref inbuf via make_writable. Feeble
27854         attempt at implementing the sync property, needs an unlock method.
27855
27856         * gst/base/gstbasetransform.c (gst_base_transform_transform_caps):
27857         New func, by default returns the same caps (the identity
27858         transformation).
27859         (gst_base_transform_getcaps): Uses transform_caps to return
27860         something sensible.
27861         (gst_base_transform_setcaps): Complicated logic to get caps on
27862         both pads, even if they are different, and to call set_caps once
27863         for every time both pads get their caps set.
27864         (gst_base_transform_handle_buffer): Give the ref to the transform
27865         function. Allows in-place modification of the buffer.
27866
27867         * gst/base/gstbasetransform.h (transform_caps): New class method.
27868         Given caps on one side, what can I do on the other.
27869         (set_caps): Take two caps, one for each side of the element.
27870
27871         * gst/gstpad.h:
27872         * gst/gstpad.c (gst_pad_fixate_caps): Change prototype to modify
27873         caps in place. This is safe because we can check the mutability of
27874         the caps, and a good idea because fixate functions are just called
27875         as a matter of last resort. (Not actually implemented.)
27876         (gst_pad_set_caps): If the caps we're setting is actually the same
27877         as the existing pad caps, just update the pointer without calling
27878         setcaps. Assert that caps is either NULL or fixed, as per the
27879         docs.
27880
27881         * gst/gstghostpad.c: Update for fixate changes.
27882
27883 2005-07-02  Andy Wingo  <wingo@pobox.com>
27884
27885         * gst/gstcaps.c:
27886         * gst/gstcaps.h (gst_static_caps_get): Not const return, having
27887         two refcounts makes it immutable, which is enough. Doc more.
27888
27889 2005-07-02  Jan Schmidt  <thaytan@mad.scientist.com>
27890
27891         * gst/gstpad.c: (gst_pad_emit_have_data_signal):
27892           Put the mini_object into GValue as a mini_object,
27893           not a gpointer, since that's how we declared
27894           the signal.
27895
27896 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27897
27898         * examples/pwg/Makefile.am:
27899           Fix buildbot again.
27900
27901 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27902
27903         * docs/pwg/building-testapp.xml:
27904           Add extra check.
27905         * examples/pwg/Makefile.am:
27906           Fix buildbot.
27907
27908 2005-07-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27909
27910         * configure.ac:
27911         * examples/Makefile.am:
27912         * examples/pwg/Makefile.am:
27913         * examples/pwg/extract.pl:
27914           Enable building the PWG examples.
27915         * docs/pwg/advanced-interfaces.xml:
27916           Add URI interface stub.
27917         * docs/pwg/advanced-types.xml:
27918         * docs/pwg/other-autoplugger.xml:
27919         * docs/pwg/appendix-porting.xml:
27920         * docs/pwg/pwg.xml:
27921           Add porting guide (mostly stubs), remove autoplugging (see ADM).
27922         * docs/pwg/building-boiler.xml:
27923         * docs/pwg/building-chainfn.xml:
27924         * docs/pwg/building-pads.xml:
27925         * docs/pwg/building-props.xml:
27926         * docs/pwg/building-state.xml:
27927         * docs/pwg/building-testapp.xml:
27928           Update the building-*.xml parts for 0.9 changes. All examples
27929           code blocks compile in examples/pwg/*.
27930
27931 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27932
27933         * docs/manual/advanced-autoplugging.xml:
27934         * docs/manual/appendix-checklist.xml:
27935         * docs/manual/appendix-integration.xml:
27936         * docs/manual/highlevel-components.xml:
27937           Fix playbin/decodebin examples, update docs a bit, mention bus
27938           instead of signals in various places, mention kmplayer and
27939           kaffeine since they have a working GStreamer backend in the KDE
27940           section.
27941
27942 2005-06-30  Wim Taymans  <wim@fluendo.com>
27943
27944         * CHANGES-0.9:
27945         * docs/design/draft-ghostpads.txt:
27946         * docs/design/draft-push-pull.txt:
27947         * docs/design/draft-query.txt:
27948         * docs/design/part-TODO.txt:
27949         * docs/design/part-query.txt:
27950         Added CHANGES-0.9 doc, updated status of other docs.
27951         
27952         * gst/gstquery.h:
27953         Remove "hmm" macro
27954
27955 2005-06-30  Wim Taymans  <wim@fluendo.com>
27956
27957         * gst/base/gstbasesink.c: (gst_base_sink_preroll_queue_empty),
27958         (gst_base_sink_preroll_queue_flush), (gst_base_sink_handle_object),
27959         (gst_base_sink_change_state):
27960         * gst/base/gstbasesink.h:
27961         Some tweaks, only EOS and a buffer complete a preroll.
27962
27963 2005-06-30  Andy Wingo  <wingo@pobox.com>
27964
27965         * gst/gstghostpad.c (gst_ghost_pad_do_activate_push): Proxy
27966         activate_push down to the internal pad as well.
27967
27968 2005-06-30  Torsten Schoenfeld  <kaffeetisch@gmx.de>
27969
27970         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27971
27972         * gst/gsttaginterface.c:
27973           Some documentation fixes (#307394 and #307397).
27974
27975 2005-06-30  Antoine Tremblay  <hexa00@gmail.com>
27976
27977         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27978
27979         * gst/gstvalue.c: (gst_value_intersect_list):
27980           Fix memleak (#309125).
27981
27982 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
27983
27984         * docs/manual/advanced-dataaccess.xml:
27985           Fix fakesrc example to compile; doesn't work, bug somewhere...?
27986         * docs/manual/basics-pads.xml:
27987           Add reference for filtered caps to above chapter.
27988
27989 2005-06-30  Wim Taymans  <wim@fluendo.com>
27990
27991         * gst/gstbin.c: (clear_queue), (remove_all_from_queue),
27992         (gst_bin_change_state):
27993         Probes are gone.
27994         Lame attempt at making the state change function a bit
27995         more readable.
27996
27997 2005-06-30  Wim Taymans  <wim@fluendo.com>
27998
27999         * docs/design/part-clocks.txt:
28000         * docs/design/part-element-sink.txt:
28001         * docs/design/part-events.txt:
28002         * docs/design/part-preroll.txt:
28003         * docs/design/part-states.txt:
28004         Some more tweeks and additions to the docs.
28005
28006 2005-06-30  Wim Taymans  <wim@fluendo.com>
28007
28008         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
28009         (default_have_data), (gst_pad_class_init), (gst_pad_init),
28010         (gst_pad_emit_have_data_signal), (gst_pad_chain), (gst_pad_push),
28011         (gst_pad_check_pull_range), (gst_pad_get_range),
28012         (gst_pad_pull_range), (gst_pad_push_event), (gst_pad_send_event):
28013         * gst/gstpad.h:
28014         * gst/gstutils.c: (gst_atomic_int_set), (gst_pad_add_data_probe),
28015         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
28016         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
28017         (gst_pad_remove_buffer_probe):
28018         Removed atomic operations, use existing LOCK.
28019         Move exception handling out of main code path.
28020
28021 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28022
28023         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
28024         (silly_return_true_function), (gst_pad_class_init),
28025         (gst_pad_emit_have_data_signal), (gst_pad_chain), (gst_pad_push),
28026         (gst_pad_get_range), (gst_pad_pull_range), (gst_pad_push_event),
28027         (gst_pad_send_event):
28028           Fix accumulator, add default value by using _emitv() instead
28029           of _emit() for signal emission.
28030
28031 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28032
28033         * docs/manual/advanced-dataaccess.xml:
28034         * examples/manual/Makefile.am:
28035           Add probe example.
28036         * gst/gstpad.c: (_gst_do_pass_data_accumulator):
28037           Make work (??).
28038
28039 2005-06-29  Tim-Philipp Müller  <tim at centricular dot net>
28040
28041         * gst/elements/gstfilesink.c: (gst_filesink_render):
28042           Simplify code so that we don't have to handle short
28043           writes and return GST_FLOW_ERROR if an error occured.
28044
28045 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28046
28047         * docs/gst/gstreamer-docs.sgml:
28048           Remove probes more.
28049
28050 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28051
28052         * docs/gst/gstreamer-sections.txt:
28053         * docs/gst/tmpl/gstpad.sgml:
28054         * docs/gst/tmpl/gstprobe.sgml:
28055         * gst/Makefile.am:
28056         * gst/gstpad.c: (_gst_do_pass_data_accumulator),
28057         (gst_pad_class_init), (gst_pad_init), (gst_pad_chain),
28058         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
28059         (gst_pad_push_event), (gst_pad_send_event):
28060         * gst/gstpad.h:
28061         * gst/gstutils.c: (gst_pad_add_data_probe),
28062         (gst_pad_add_event_probe), (gst_pad_add_buffer_probe),
28063         (gst_pad_remove_data_probe), (gst_pad_remove_event_probe),
28064         (gst_pad_remove_buffer_probe):
28065         * gst/gstutils.h:
28066           Remove old probes, add new g-signal-based probes and some utility
28067           functions.
28068
28069 2005-06-29  Edward Hervey  <edward@fluendo.com>
28070
28071         * gst/gstelementfactory.c:
28072         * gst/gstutils.h:
28073         * gst/gstutils.c:
28074         Moved gst_element_factory_can_[sink|src]_caps() to gstutils and added
28075         the definition to the header file.
28076
28077 2005-06-29  Andy Wingo  <wingo@pobox.com>
28078
28079         * docs/gst/Makefile.am (scan-build.stamp): Totally only check
28080         plugins from the source directory.
28081
28082 2005-06-29  Wim Taymans  <wim@fluendo.com>
28083
28084         * docs/gst/tmpl/gstbuffer.sgml:
28085         * docs/gst/tmpl/gstclock.sgml:
28086         Some fixings for blantently wrong text.
28087
28088 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
28089
28090         * check/Makefile.am:
28091         * gst/gst.c: (add_path_func), (init_pre):
28092         * gst/gstregistry.c: (gst_registry_add_path):
28093           add A GST_PLUGIN_PATH_ONLY env var; if it is set, it will
28094           only scan the GST_PLUGIN_PATH locations, and not add
28095           system locations
28096
28097 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
28098
28099         * docs/gst/gstreamer-sections.txt:
28100         * docs/gst/tmpl/gstbasesrc.sgml:
28101         * gst/gstelement.c:
28102         * gst/gstelement.h:
28103         * gst/gstevent.c:
28104         * gst/gstutils.c:
28105           doc fixes
28106
28107 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28108
28109         * docs/manual/advanced-autoplugging.xml:
28110           Fix autoplugging example.
28111
28112 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28113
28114         * docs/manual/advanced-autoplugging.xml:
28115         * docs/manual/mime-world.fig:
28116           Try to get autoplugging working, fix type detection. Fix text
28117           in hello-world image.
28118
28119 2005-06-29  Wim Taymans  <wim@fluendo.com>
28120
28121         * gst/base/gstbasesink.c: (gst_base_sink_handle_object),
28122         (gst_base_sink_change_state):
28123         Small debug line.
28124
28125         * gst/gstclock.h:
28126         map SIGNAL and BROADCAST to the right function.
28127
28128         * gst/gstobject.h:
28129         Remove redundant braces.
28130
28131         * gst/gstpad.c: (gst_pad_set_caps):
28132         Don't call setcaps function when reseting caps to NULL.
28133
28134         * gst/gstsystemclock.c: (gst_system_clock_dispose),
28135         (gst_system_clock_async_thread), (gst_system_clock_id_wait_async),
28136         (gst_system_clock_id_unschedule):
28137         Use BROADCAST as this is what we do.
28138
28139 2005-06-29  Wim Taymans  <wim@fluendo.com>
28140
28141         * gst/base/gstbasesink.c: (gst_base_sink_handle_object):
28142         We are actually prerolling before commiting the state
28143         change. 
28144
28145 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
28146
28147         * docs/manual/advanced-clocks.xml:
28148         * docs/manual/advanced-interfaces.xml:
28149         * docs/manual/advanced-metadata.xml:
28150         * docs/manual/advanced-position.xml:
28151         * docs/manual/advanced-schedulers.xml:
28152         * docs/manual/advanced-threads.xml:
28153         * docs/manual/appendix-porting.xml:
28154         * docs/manual/basics-bins.xml:
28155         * docs/manual/basics-bus.xml:
28156         * docs/manual/basics-elements.xml:
28157         * docs/manual/basics-helloworld.xml:
28158         * docs/manual/basics-pads.xml:
28159         * docs/manual/highlevel-components.xml:
28160         * docs/manual/manual.xml:
28161         * docs/manual/thread.fig:
28162           Update (until threads/scheduling) Application Development Manual;
28163           remove GstThread, add GstBus, add simple porting checklist, add
28164           documentation for tag writing, clocks, make all examples until this
28165           part compile and run.
28166         * examples/manual/Makefile.am:
28167           Update from changes to Application Development Manual; add bus
28168           example, remove thread example.
28169
28170 2005-06-28  Wim Taymans  <wim@fluendo.com>
28171
28172         * gst/gstbus.c: (gst_bus_post), (gst_bus_have_pending),
28173         (gst_bus_set_flushing), (gst_bus_pop), (gst_bus_peek),
28174         (gst_bus_source_dispatch):
28175         Add debugging messages.
28176         Make internal methods static.
28177         Handle the case where the bus is flushed in the handler.
28178         
28179         * gst/gstelement.c: (gst_element_get_bus):
28180         Fix refcount in _get_bus();
28181
28182         * gst/gstpipeline.c: (gst_pipeline_change_state),
28183         (gst_pipeline_get_clock_func):
28184         Clock refcounting fixes.
28185         Handle the case where preroll timed out more gracefully.
28186         
28187         * gst/gstsystemclock.c: (gst_system_clock_dispose):
28188         Clean up the internal thread in dispose. This is needed
28189         for subclasses that actually get disposed.
28190         
28191         * gst/schedulers/threadscheduler.c:
28192         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
28193         (gst_thread_scheduler_dispose):
28194         Free thread pool in dispose.
28195
28196 2005-06-28  Andy Wingo  <wingo@pobox.com>
28197
28198         * tests/network-clock-utils.scm (debug, print-event): New utils.
28199
28200         * tests/network-clock.scm (*debug*, *with-graph*): New parameters.
28201         (*packet-loss*): Unified loss probability.
28202         (network-time): Report out-of-band events.
28203
28204         * tests/plot-data: Add support for out-of-band events. Hack it
28205         into this script instead of passing it down the pipe; should fix
28206         this later.
28207
28208 2005-06-28  Wim Taymans  <wim@fluendo.com>
28209
28210         * docs/gst/gstreamer.types:
28211         * docs/gst/tmpl/gstbasesrc.sgml:
28212         * docs/gst/tmpl/gstpad.sgml:
28213         Docs fixes.
28214
28215 2005-06-28  Wim Taymans  <wim@fluendo.com>
28216
28217         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
28218         (gst_proxy_pad_do_checkgetrange), (gst_proxy_pad_do_acceptcaps),
28219         (gst_proxy_pad_do_fixatecaps):
28220         Correctly proxy the check_pull_range function.
28221
28222 2005-06-28  Andy Wingo  <wingo@pobox.com>
28223
28224         * tests/network-clock.scm: Removed need for slib.
28225         
28226 2005-06-28  Wim Taymans  <wim@fluendo.com>
28227
28228         * gst/base/gstbasesink.c: (gst_basesink_set_pad_functions),
28229         (gst_basesink_preroll_queue_flush):
28230         * gst/base/gstbasesrc.c: (gst_basesrc_set_dataflow_funcs):
28231         * gst/elements/gsttee.c: (gst_tee_update_pad_functions):
28232         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
28233         (gst_proxy_pad_do_acceptcaps), (gst_proxy_pad_do_fixatecaps),
28234         (gst_proxy_pad_set_property):
28235         * gst/gstpad.c:
28236         * gst/gstpad.h:
28237         * gst/gstqueue.c: (gst_queue_init):
28238         The deprecated pad loop function is removed now.
28239
28240 2005-06-28  Andy Wingo  <wingo@pobox.com>
28241
28242         * tests/network-clock.scm (*timeout*, *send-loss*, *recv-loss*):
28243         New parameters, simulate network packet loss.
28244
28245         * tests/network-clock-utils.scm: Initialize the RNG.
28246
28247 2005-06-28  Wim Taymans  <wim@fluendo.com>
28248
28249         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_flush),
28250         (gst_basesink_event), (gst_basesink_deactivate):
28251         Flushing the preroll queue always needs to unlock the waiters.
28252
28253 2005-06-28  Edward Hervey  <edward@fluendo.com>
28254
28255         * gst/gstpipeline.c: (gst_pipeline_send_event): 
28256         Wheen a seek was successful on a pipeline, set the stream_time to the
28257         seek offset in order to have a synchronized stream_time.
28258
28259 2005-06-28  Wim Taymans  <wim@fluendo.com>
28260
28261         * gst/gstghostpad.c: (gst_proxy_pad_do_bufferalloc),
28262         (gst_proxy_pad_do_getrange), (gst_proxy_pad_do_checkgetrange),
28263         (gst_proxy_pad_do_getcaps), (gst_proxy_pad_do_acceptcaps),
28264         (gst_proxy_pad_do_fixatecaps):
28265         Call wrapper function instead of just calling the function
28266         pointers. This takes care of any locking and whatmore.
28267
28268 2005-06-28  Wim Taymans  <wim@fluendo.com>
28269
28270         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push),
28271         (gst_pad_pull_range):
28272         * gst/gstpad.h:
28273         CONNECTED -> LINKED.
28274
28275 2005-06-28  Andy Wingo  <wingo@pobox.com>
28276
28277         * *.c: Don't cast to GST_OBJECT when reffing or unreffing. Large
28278         source-munging commit!!!
28279
28280         * gst/gstobject.c (gst_object_unref, gst_object_ref) 
28281         (gst_object_sink): Take gpointer arguments, not GstObject --
28282         avoids casts. Like GLib.
28283
28284         * gst/gstghostpad.c (gst_proxy_pad_do_activate): Don't proxy
28285         activate.
28286
28287 2005-06-27  Andy Wingo  <wingo@pobox.com>
28288
28289         * gst/base/gsttypefindhelper.c (gst_type_find_helper): Unref any
28290         remaining buffer.
28291
28292         * gst/gsttrace.c (gst_alloc_trace_list_sorted): New helper,
28293         returns a sorted copy of the trace list.
28294         (gst_alloc_trace_print_live): New API, only prints traces with
28295         live objects. Sort the list.
28296         (gst_alloc_trace_print_all): Sort the list.
28297         (gst_alloc_trace_print): Align columns.
28298
28299         * gst/elements/gstttypefindelement.c:
28300         * gst/elements/gsttee.c:
28301         * gst/base/gstbasesrc.c:
28302         * gst/base/gstbasesink.c:
28303         * gst/base/gstbasetransform.c:
28304         * gst/gstqueue.c: Adapt for pad activation changes.
28305
28306         * gst/gstpipeline.c (gst_pipeline_init): Unref after parenting
28307         sched.
28308         (gst_pipeline_dispose): Drop ref on sched.
28309
28310         * gst/gstpad.c (gst_pad_init): Set the default activate func.
28311         (gst_pad_activate_default): Push mode by default.
28312         (pre_activate_switch, post_activate_switch): New stubs, things to
28313         do before and after switching activation modes on pads.
28314         (gst_pad_set_active): Take a boolean and not a mode, dispatch to
28315         the pad's activate function to choose which mode to activate.
28316         Shortcut on deactivation and call the right function directly.
28317         (gst_pad_activate_pull): New API, (de)activates a pad in pull
28318         mode.
28319         (gst_pad_activate_push): New API, same for push mode.
28320         (gst_pad_set_activate_function) 
28321         (gst_pad_set_activatepull_function) 
28322         (gst_pad_set_activatepush_function): Setters for new API.
28323
28324         * gst/gstminiobject.c (gst_mini_object_new, gst_mini_object_free):
28325         Trace all miniobjects.
28326         (gst_mini_object_make_writable): Unref the arg if we copy, like
28327         gst_caps_make_writable.
28328
28329         * gst/gstmessage.c (_gst_message_initialize): No trace init.
28330
28331         * gst/gstghostpad.c (gst_proxy_pad_do_activate) 
28332         (gst_proxy_pad_do_activatepull, gst_proxy_pad_do_activatepush):
28333         Adapt for new pad API.
28334
28335         * gst/gstevent.c (_gst_event_initialize): Don't initialize trace.
28336
28337         * gst/gstelement.h:
28338         * gst/gstelement.c (gst_element_iterate_src_pads) 
28339         (gst_element_iterate_sink_pads): New API functions.
28340         
28341         * gst/gstelement.c (iterator_fold_with_resync): New utility,
28342         should fold into gstiterator.c in some form.
28343         (gst_element_pads_activate): Simplified via use of fold and
28344         delegation of decisions to gstpad->activate.
28345
28346         * gst/gstbus.c (gst_bus_source_finalize): Set the bus to NULL,
28347         help in debugging.
28348
28349         * gst/gstbuffer.c (_gst_buffer_initialize): Ref the buffer type
28350         class once in init, like gstmessage. Didn't run into this issue
28351         but it seems correct. Don't initialize a trace, gstminiobject does
28352         that.
28353
28354         * check/pipelines/simple_launch_lines.c (test_stop_from_app): New
28355         test, runs fakesrc ! fakesink, stopping on ::handoff via a message
28356         to the bus.
28357         (assert_live_count): New util function, uses alloc traces to check
28358         cleanup.
28359
28360         * check/gst/gstghostpad.c (test_ghost_pads): More refcount checks.
28361         To be modified when unlink drops the internal pad.
28362
28363 2005-06-27  Wim Taymans  <wim@fluendo.com>
28364
28365         * gst/gstbin.c: (gst_bin_get_state), (gst_bin_iterate_state_order),
28366         (gst_bin_change_state):
28367         Cleanup the get_state() function a little, make sure it
28368         iterates the same set of elements.
28369         Added stub iterate_state_order().
28370
28371 2005-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
28372
28373         * docs/gst/gstreamer-docs.sgml:
28374         * docs/gst/gstreamer-sections.txt:
28375         * docs/gst/gstreamer.types:
28376         * docs/gst/tmpl/gstbasesink.sgml:
28377         * docs/gst/tmpl/gstbasesrc.sgml:
28378         * docs/gst/tmpl/gstbasetransform.sgml:
28379         * docs/gst/tmpl/gstelement.sgml:
28380         * docs/gst/tmpl/gstiterator.sgml:
28381         * gst/base/gstbasesrc.c:
28382         * gst/base/gstbasesrc.h:
28383         * gst/base/gstbasetransform.h:
28384         * gst/gstelement.c:
28385         * gst/gstiterator.h:
28386           adding basetransform and iterator docs
28387
28388 2005-06-27  Andy Wingo  <wingo@pobox.com>
28389
28390         * docs/design/part-activation.txt: Notes on how activation should
28391         work -- not quite implemented yet.
28392
28393 2005-06-25  Wim Taymans  <wim@fluendo.com>
28394
28395         * gst/gstghostpad.c: (gst_proxy_pad_do_chain):
28396         At least get the chain function correct, needs more
28397         fixing.
28398
28399 2005-06-25  Wim Taymans  <wim@fluendo.com>
28400
28401         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
28402         (gst_basesink_handle_object), (gst_basesink_event),
28403         (gst_basesink_do_sync), (gst_basesink_handle_event),
28404         (gst_basesink_change_state):
28405         * gst/gsttask.h:
28406         Right, two problems here: ghostpads don't take locks and
28407         glib _rec_mutex_lock_full() with depth==0 still locks.
28408         Catch illegal locking and g_warn them.
28409
28410 2005-06-25  Wim Taymans  <wim@fluendo.com>
28411
28412         * check/states/sinks.c: (START_TEST), (gst_object_suite):
28413         Have to check for completion now...
28414
28415 2005-06-25  Wim Taymans  <wim@fluendo.com>
28416
28417         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
28418         (gst_basesink_handle_object), (gst_basesink_event),
28419         (gst_basesink_do_sync), (gst_basesink_handle_event),
28420         (gst_basesink_change_state):
28421         * gst/gstpad.h:
28422         Unlock STREAM_LOCK whatever the recursion was.
28423
28424 2005-06-25  Wim Taymans  <wim@fluendo.com>
28425
28426         * gst/base/gstbasesink.c: (gst_basesink_set_property),
28427         (gst_basesink_preroll_queue_empty),
28428         (gst_basesink_preroll_queue_flush), (gst_basesink_handle_object),
28429         (gst_basesink_event), (gst_basesink_do_sync),
28430         (gst_basesink_handle_event), (gst_basesink_handle_buffer),
28431         (gst_basesink_chain), (gst_basesink_loop), (gst_basesink_activate),
28432         (gst_basesink_change_state):
28433         Reworked the base sink, handle event and buffer serialisation
28434         correctly and removed possible deadlock.
28435         Handle EOS correctly.
28436
28437 2005-06-25  Wim Taymans  <wim@fluendo.com>
28438
28439         * gst/gstpipeline.c: (is_eos), (pipeline_bus_handler),
28440         (gst_pipeline_change_state):
28441         * tools/gst-launch.c: (check_intr), (event_loop), (main):
28442         Allow elements to post EOS in the state change function.
28443         Fix up -launch, make it exit the poll loop when the
28444         pipeline actually changed state.
28445         Fix up warning parsing in -launch.
28446
28447 2005-06-25  Wim Taymans  <wim@fluendo.com>
28448
28449         * gst/elements/gsttee.c: (gst_tee_chain), (gst_tee_loop),
28450         (gst_tee_sink_activate):
28451         Core takes STREAM_LOCK for us now.
28452
28453 2005-06-25  Wim Taymans  <wim@fluendo.com>
28454
28455         * gst/gstelement.c: (gst_element_get_state_func),
28456         (gst_element_set_state):
28457         * gst/gstelement.h:
28458         * gst/gstmessage.c: (gst_message_parse_error),
28459         (gst_message_parse_warning):
28460         Keep track of current target state while performing a state
28461         change so that subclasses can do something interesting.
28462         Fix parsing of warning/error messages when GError is NULL.
28463
28464 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
28465
28466         * docs/gst/Makefile.am:
28467         * docs/gst/gstreamer-docs.sgml:
28468         * docs/gst/gstreamer-sections.txt:
28469         * docs/gst/gstreamer.types:
28470         * docs/gst/tmpl/gstbasesink.sgml:
28471         * docs/gst/tmpl/gstbasesrc.sgml:
28472         * docs/gst/tmpl/gstbin.sgml:
28473         * docs/gst/tmpl/gstcompat.sgml:
28474         * docs/gst/tmpl/gstfakesink.sgml:
28475         * docs/gst/tmpl/gstfakesrc.sgml:
28476         * docs/gst/tmpl/gstfilesink.sgml:
28477         * docs/gst/tmpl/gstfilesrc.sgml:
28478         * docs/gst/tmpl/gstindex.sgml:
28479         * docs/manual/appendix-quotes.xml:
28480         * gst/base/gstbasesrc.h:
28481         * gst/elements/gstfakesrc.h:
28482         * gst/gstmessage.h:
28483           start pulling in base classes and elements in our docs
28484
28485 2005-06-24  Stefan Kost  <ensonic@users.sf.net>
28486
28487         * docs/gst/Makefile.am:
28488         * docs/libs/Makefile.am:
28489           fixed make distcheck with gtk-doc 1.3
28490
28491 2005-06-23  Wim Taymans  <wim@fluendo.com>
28492
28493         * gst/gstelement.c: (gst_element_get_state_func),
28494         (gst_element_set_state), (gst_element_change_state):
28495         When the state did not change, also report NO_PREROLL
28496         when it matters.
28497
28498 2005-06-23  Wim Taymans  <wim@fluendo.com>
28499
28500         * gst/gstpad.c: (gst_pad_event_default):
28501         * gst/gstqueue.c: (gst_queue_loop):
28502         No unsafe task pausing please.
28503
28504 2005-06-23  Wim Taymans  <wim@fluendo.com>
28505
28506         * gst/schedulers/threadscheduler.c:
28507         (gst_thread_scheduler_task_start),
28508         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_func):
28509         Ref the task before pushing it on the threadpool. This
28510         makes sure that we have a ref when the threadfunction is
28511         actually called.
28512
28513 2005-06-23  Andy Wingo  <wingo@pobox.com>
28514
28515         * gst/base/gstbasesrc.c (gst_basesrc_get_range): Check if the
28516         offset is greater than the file's size.
28517
28518         * gst/gstobject.h (GST_CLASS_LOCK, GST_CLASS_TRYLOCK) 
28519         (GST_CLASS_UNLOCK, GST_CLASS_GET_LOCK, GstObjectClass)
28520         * gst/gstobject.c (gst_object_class_init): Make the class lock
28521         recursive. Wim won't let me drop deep_notify. Decodebin works
28522         again, whoopdy doo.
28523
28524         * gst/gstghostpad.c (on_int_notify): Catches notify::caps on the
28525         internal pad, and hacks accordingly. Doesn't do it on the target
28526         pad because we change its caps. Probably catches all cases of
28527         interest tho.
28528         (gst_ghost_pad_set_property): Connect to notify::caps as
28529         appropritate.
28530
28531         * tests/network-clock.scm (plot-simulation): Pipe data to the
28532         elite python skript.
28533
28534         * tests/network-clock-utils.scm (define-parameter): New macro,
28535         defines a parameter that can be set via the command line.
28536         (set-parameter!, parse-parameter-arguments): Command line args
28537         parser.
28538
28539         * tests/plot-data: Simple matplotlib-based plotter, takes input on
28540         stdin.
28541
28542 2005-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
28543
28544         * gst/elements/gsttypefindelement.c:
28545         (gst_type_find_element_handle_event):
28546           Don't restart typefinding on a discont.
28547         * gst/gstelement.c: (gst_element_set_state):
28548           Debug spelling fix.
28549         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_send_event):
28550           Allow changing mode of an active pad.
28551           Debug output fixes.
28552         * gst/registries/gstlibxmlregistry.c: (load_feature):
28553           Don't cast a static pad template to a normal pad template.
28554
28555 2005-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
28556
28557         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
28558         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
28559           remove gst_strtoll completely, since it didn't actually do
28560           anything more than what g_ascii_strtoull already does.
28561           check for range errors when deserializing
28562           do a cast for the unsigned cases; but further fixing needs
28563           a decision on what the interpretation of "(int)" and
28564           deserialization should be for values that fall outside the
28565           type's boundaries (ie, refuse, or interpret as casting)
28566
28567 2005-06-23  Wim Taymans  <wim@fluendo.com>
28568
28569         * check/Makefile.am:
28570         * check/states/sinks.c: (START_TEST), (gst_object_suite), (main):
28571         * docs/design/part-live-source.txt:
28572         * docs/design/part-states.txt:
28573         * gst/base/gstbasesrc.c: (gst_basesrc_init),
28574         (gst_basesrc_set_live), (gst_basesrc_is_live),
28575         (gst_basesrc_get_range), (gst_basesrc_activate),
28576         (gst_basesrc_change_state):
28577         * gst/base/gstbasesrc.h:
28578         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
28579         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
28580         * gst/gstbin.c: (gst_bin_get_state), (gst_bin_change_state):
28581         * gst/gstelement.c: (gst_element_get_state_func),
28582         (gst_element_set_state):
28583         * gst/gstelement.h:
28584         * gst/gsttypes.h:
28585         * tools/gst-launch.c: (event_loop), (main):
28586         Added support for live sources and other elements that
28587         cannot do preroll.
28588         Updated design docs, added live-source design doc.
28589         Implemented live source functionality in basesrc
28590         Fix error condition in _bin_get_state()
28591         Implement live source handling in -launch.
28592         Added check for live sources.
28593         Fixed case in GstBin where elements were changed state
28594         multiple times.
28595
28596
28597 2005-06-23  Andy Wingo  <wingo@pobox.com>
28598
28599         * check/gst/gstpad.c (test_get_allowed_caps, test_refcount): Fix
28600         borken refcounting.
28601
28602         * gst/gstpad.c (gst_pad_set_caps): Remove needless refs,
28603         gst_caps_replace takes care of this for us.
28604
28605         * gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full
28606         gst_pad_set_caps on the target, not just its setcaps() function.
28607
28608         * tests/network-clock.scm: 
28609         * tests/network-clock-utils.scm: A network clock simulator.
28610         Something of an algorithmic testbed before doing something in C.
28611
28612 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
28613
28614         * check/Makefile.am:
28615         * check/gst/capslist.h:
28616           copy over from 0.8, and add two with bitmasks specified with
28617           (int) 0xFF...
28618         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
28619           add test to parse everything from capslist.h
28620         * check/gst/gststructure.c: (START_TEST), (gst_value_suite),
28621         (main):
28622           add test for structure deserialization
28623         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
28624           add tests for deserialization of strings to int types
28625         * gst/gststructure.c: (gst_structure_nth_field_name):
28626         * gst/gststructure.h:
28627           add a way to get the name of a field referenced by index
28628         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
28629           instead of checking if the resulting long long lies between
28630           min and max, we check if the long long would fit into
28631           a number of bytes for the final type.
28632           This fixes cases where a string represents 2^32 - 1, which
28633           when cast to int would be the (valid) -1, but is bigger than
28634           G_MAXINT
28635
28636 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
28637
28638         * gst/parse/grammar.y:
28639           add a log line for type deserialization
28640
28641 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
28642
28643         * check/gst/gstvalue.c: (START_TEST):
28644         * gst/gstvalue.c: (gst_value_deserialize):
28645           return long long, not int, so gint64 deserialization actually
28646           works.  Is there any flag that makes the compiler check this ?
28647           Fixes #308559
28648
28649 2005-06-22  Wim Taymans  <wim@fluendo.com>
28650
28651         * gst/gstbuffer.h:
28652         Added convenience macros for setting buffers in GValue.
28653
28654 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
28655
28656         * check/gst/.cvsignore:
28657         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
28658           add a test deserializing int64, and comment part out because
28659           it fails, yay !
28660
28661 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
28662
28663         * check/Makefile.am:
28664         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite), (main):
28665         * testsuite/Makefile.am:
28666         * testsuite/caps/Makefile.am:
28667         * testsuite/caps/value_serialize.c:
28668         * testsuite/test_gst_init.c:
28669           move a value_serialize test over
28670
28671 2005-06-20  Wim Taymans  <wim@fluendo.com>
28672
28673         * gst/gstpad.c:
28674         Small doc updates.
28675         
28676         * gst/gstvalue.c: (gst_value_compare_buffer),
28677         (gst_value_serialize_buffer), (gst_value_deserialize_buffer),
28678         (gst_value_compare_flags), (gst_value_serialize_flags),
28679         (gst_value_deserialize_flags), (_gst_value_initialize):
28680         Fix serialisation of buffers, they are not boxed types anymore
28681
28682 2005-06-20  Wim Taymans  <wim@fluendo.com>
28683
28684         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
28685         Testcase to show error in buffer-on-caps serialisation.
28686
28687 2005-06-20  Andy Wingo  <wingo@pobox.com>
28688
28689         * docs/random/wingo/porting-plugins-to-0.9: A pitiful document I
28690         will be adding to later.
28691
28692         * gst/gstsystemclock.c (gst_system_clock_init): Unlock the clock
28693         if its socks fill with rocks.
28694         (gst_system_clock_obtain): Set the name on object construction.
28695         Avoid double-checked locking.
28696
28697 2005-06-20  Tim-Philipp Müller  <tim at centricular dot net>
28698
28699         * gst/gsturi.c: (gst_element_make_from_uri):
28700           Fix potential endless loop.
28701
28702 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
28703
28704         * check/Makefile.am:
28705           add gsttag
28706         * check/gst/gsttag.c: (check_tags), (START_TEST), (gst_tag_suite),
28707         (main):
28708           move over from testsuite dir and clean up
28709         * configure.ac:
28710         * gst/gsttag.c:
28711         * testsuite/Makefile.am:
28712         * testsuite/tags/.cvsignore:
28713         * testsuite/tags/Makefile.am:
28714         * testsuite/tags/merge.c:
28715           remove testsuite/tags
28716
28717 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
28718
28719         * docs/gst/gstreamer-sections.txt:
28720         * docs/gst/tmpl/gstenumtypes.sgml:
28721         * win32/gstenumtypes.c:
28722           clean up documentation build a little
28723
28724 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
28725
28726         * check/gstcheck.h:
28727           add macros for checking refcounts on objects and caps
28728         * check/gst/gstpad.c: (START_TEST), (gst_pad_suite):
28729           add some more unit tests
28730         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
28731         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_allowed_caps):
28732           fix leaked refcounts (I hope :)) so unittest works
28733         * gst/gstpad.h:
28734           whitespace removal
28735
28736 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
28737
28738         * configure.ac: back to HEAD
28739
28740 === release 0.9.1 ===
28741
28742 2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
28743
28744         * NEWS:
28745         * RELEASE:
28746           updated
28747
28748 2005-06-17  Andy Wingo  <wingo@pobox.com>
28749
28750         * gst/base/gstbasesink.c (gst_basesink_chain): Remove bogus
28751         assert; it's always possible that the pad gets deactivated in
28752         between the checks in gstpad.c and the implementation. Rely on
28753         finish_preroll() to return a FLUSHING or similar instead of on the
28754         assert.
28755         
28756         * gst/base/gstbasesink.c (gst_basesink_event): Only wait for the
28757         clock and post an EOS message if we come out of finish_preroll in
28758         the playing state.
28759
28760 2005-06-16  David Schleef  <ds@schleef.org>
28761
28762         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
28763         (gst_capsfilter_set_property): Allow NULL as possible value
28764         for filter_caps property, indicating GST_CAPS_ANY.
28765
28766 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28767
28768         * gst/elements/gstfakesrc.c: (gst_fakesrc_create):
28769           fix debug output
28770         * gst/schedulers/Makefile.am:
28771           use libgst prefix
28772         * gstreamer.spec.in:
28773           fix spec for it
28774
28775 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
28776
28777         * gstreamer.spec.in:
28778           clean up
28779
28780 2005-06-08  Andy Wingo  <wingo@pobox.com>
28781
28782         * gst/gstutils.c: RPAD fixes all around.
28783         (gst_element_link_pads): Refcounting fixes.
28784
28785         * tools/gst-inspect.c:
28786         * tools/gst-xmlinspect.c:
28787         * parse/grammar.y:
28788         * gst/base/gsttypefindhelper.c:
28789         * gst/base/gstbasesink.c:
28790         * gst/gstqueue.c: RPAD fixes.
28791
28792         * gst/gstghostpad.h:
28793         * gst/gstghostpad.c: New ghost pad implementation as full proxy
28794         pads. The tricky thing is they provide both source and sink
28795         interfaces, since they proxy the internal pad for the external
28796         pad, and vice versa. Implement with lower-level ProxyPad objects,
28797         with the interior proxy pad as a child of the exterior ghost pad.
28798         Should write a doc on this.
28799         
28800         * gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
28801         (gst_pad_set_name, gst_pad_set_parent): Macros removed, use
28802         gst_object API.
28803         
28804         * gst/gstpad.c: Big changes. No more stub base GstPad, now all
28805         pads are real pads. No ghost pads in this file. Not documenting
28806         the myriad s/RPAD/PAD/ and REALIZE fixes.
28807         (gst_pad_class_init): Add properties for "direction" and
28808         "template". Both are construct-only, so they can't change during
28809         the life of the pad. Fixes properly deriving from GstPad.
28810         (gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
28811         derived objects, just set properties when creating the objects via
28812         g_object_new.
28813         (gst_pad_get_parent): Implement as a function, return NULL if the
28814         parent is not an element.
28815         (gst_pad_get_real_parent, gst_pad_add_ghost_pad)
28816         (gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
28817         
28818         * gst/gstobject.c (gst_object_class_init): Make name a construct
28819         property. Don't set it in the object init.
28820
28821         * gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
28822         with UNKNOWN direction.
28823         (gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
28824         with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
28825         (gst_element_remove_pad): Remove ghost-pad special cases.
28826         (gst_element_pads_activate): Remove rpad cruft.
28827
28828         * gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
28829         catch the pad's-parent-not-an-element case.
28830
28831         * gst/gst.h: Include gstghostpad.h.
28832
28833         * gst/gst.c (init_post): No more real, ghost pads.
28834
28835         * gst/Makefile.am: Add gstghostpad.[ch].
28836
28837         * check/Makefile.am:
28838         * check/gst/gstbin.c:
28839         * check/gst/gstghostpad.c (test_ghost_pads): Check that linking
28840         into a bin creates ghost pads, and that the refcounts are right.
28841         Partly moved from gstbin.c.
28842
28843 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28844
28845         * check/gst-libs/.cvsignore:
28846         * check/gst/.cvsignore:
28847         * check/pipelines/.cvsignore:
28848           ignore more
28849         * check/pipelines/cleanup.c: (setup_pipeline), (run_pipeline),
28850         (START_TEST), (cleanup_suite), (main):
28851           add some tests related to cleanup after running pipelines
28852
28853 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28854
28855         * check/gst/gstbuffer.c: (START_TEST), (gst_test_suite), (main):
28856           add a testsuite for GstBuffer
28857
28858 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
28859
28860         * gst/gstminiobject.h:
28861           add defines for accessing the refcount
28862
28863 2005-06-03  Stefan Kost  <ensonic@users.sf.net>
28864
28865         * Makefile.am: added support for html unit test coverage reports
28866
28867 2005-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
28868
28869         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
28870           Free existing caps if the capsfilter changes. Add a FIXME about
28871           setting those caps on the pads.
28872
28873         * gst/gstutils.c: (gst_element_get_compatible_pad), (ghost_up):
28874           Before adding a ghost pad to a parent bin, check that there isn't
28875           already one for the element on the bin. Prevents infinite recursion
28876           when using decodebin in parse pipelines. Andy says he'll rewrite the
28877           way this works anyway, so ignore the hack.
28878
28879 2005-06-02  Andy Wingo  <wingo@pobox.com>
28880
28881         * gst/elements/gsttypefindelement.c (do_pull_typefind): Query the
28882         file size, pass it on to the type find helper.
28883
28884         * gst/base/gstbasesrc.c (gst_basesrc_do_seek): Set the
28885         segment_start and segment_end properly according to the seek
28886         method. Segment_end is still a bit flaky because offset can be
28887         negative for CUR and END cases, but it takes -1 as an "unset"
28888         value.
28889
28890 2005-06-02  Wim Taymans  <wim@fluendo.com>
28891
28892         * gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
28893         (gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
28894         (gst_basesink_activate):
28895         * gst/base/gstbasesink.h:
28896         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
28897         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
28898         (gst_pad_query), (gst_pad_start_task):
28899         * gst/gstpad.h:
28900         * gst/gstqueue.c: (gst_queue_bufferalloc),
28901         (gst_queue_handle_sink_event), (gst_queue_chain):
28902         Bufferalloc: return GstFlowReturn to more accuratly report
28903         why allocation failed.
28904
28905 2005-06-02  Wim Taymans  <wim@fluendo.com>
28906
28907         * gst/gstpipeline.c: (gst_pipeline_send_event):
28908         Take snapshot of state without blocking.
28909
28910 2005-06-02  Wim Taymans  <wim@fluendo.com>
28911
28912         * docs/design/part-TODO.txt:
28913         * docs/design/part-caps.txt:
28914         * docs/design/part-clocks.txt:
28915         * docs/design/part-negotiation.txt:
28916         * docs/design/part-preroll.txt:
28917         Small doc updates 
28918
28919 2005-05-30  Wim Taymans  <wim@fluendo.com>
28920
28921         * gst/elements/gstidentity.c: (gst_identity_event),
28922         (gst_identity_transform), (gst_identity_get_property):
28923         Protect last_message property as it is accessed from
28924         multiple threads.
28925
28926 2005-05-30  Wim Taymans  <wim@fluendo.com>
28927
28928         * gst/gstelement.c: (gst_element_init),
28929         (gst_element_pads_activate), (gst_element_change_state):
28930         Slicker pad activation code.
28931
28932 2005-05-30  Wim Taymans  <wim@fluendo.com>
28933
28934         * gst/Makefile.am:
28935         * gst/gstelement.h:
28936         * gst/gstelementfactory.h:
28937         * gst/gsttypes.h:
28938         Move elementfactory methods to separate .h file.
28939
28940 2005-05-30  Wim Taymans  <wim@fluendo.com>
28941
28942         * docs/design/part-overview.txt:
28943         * gst/gstsystemclock.h:
28944         Small typo fixes, doc updates.
28945
28946 2005-05-30  Wim Taymans  <wim@fluendo.com>
28947
28948         * gst/gst.c: (gst_init_get_popt_table), (init_post),
28949         (init_popt_callback):
28950         Remove cpu-opt flag.
28951
28952 2005-05-30  Wim Taymans  <wim@fluendo.com>
28953
28954         * gst/gstbuffer.c: (gst_subbuffer_finalize),
28955         (gst_buffer_create_sub), (gst_buffer_is_span_fast):
28956         * gst/gstbuffer.h:
28957         Avoid typechecking in places where not needed.
28958         Added accessor for malloc_data.
28959
28960 2005-05-30  Wim Taymans  <wim@fluendo.com>
28961
28962         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_set_active),
28963         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_accept_caps),
28964         (gst_pad_configure_sink), (gst_pad_configure_src),
28965         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_send_event),
28966         (gst_pad_start_task):
28967         Propagate errors from _set_caps() in configure_src/sink
28968         functions instead of returning TRUE.
28969         FLUSH events can travel up and downstream
28970
28971
28972 2005-05-30  Wim Taymans  <wim@fluendo.com>
28973
28974         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
28975         (gst_basesink_activate):
28976         Handle EOS in preroll.
28977
28978 2005-05-30  Wim Taymans  <wim@fluendo.com>
28979
28980         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
28981         (gst_queue_loop), (gst_queue_handle_src_event):
28982         Remove old pieces of code
28983         Flushing the queue in an upstream event is a very bad idea.
28984
28985 2005-05-26  Andy Wingo  <wingo@pobox.com>
28986
28987         * gst/gstminiobject.c (gst_value_mini_object_collect): Use
28988         gst_value_set_mini_object so as to add a ref on the object (which
28989         will be removed when the value is unset).
28990
28991         * gst/elements/gstfakesink.c (gst_fakesink_class_init): Fix signal
28992         arg type in ::handoff.
28993
28994         * gst/gstelement.c (gst_element_change_state): Also deactivate
28995         pads in READY->NULL, just in case the element didn't make it to
28996         PAUSED. Wingo tested, Wim approved.
28997
28998 2005-05-26  Wim Taymans  <wim@fluendo.com>
28999
29000         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
29001         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
29002         (gst_pad_query), (gst_pad_send_event), (gst_pad_start_task):
29003         A flushing pad cannot be used to alloc_buffer from.
29004
29005 2005-05-26  Wim Taymans  <wim@fluendo.com>
29006
29007         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
29008         (gst_bus_pop), (gst_bus_source_prepare), (gst_bus_source_check),
29009         (gst_bus_source_dispatch), (gst_bus_source_finalize),
29010         (gst_bus_create_watch), (gst_bus_add_watch_full):
29011         * gst/gstbus.h:
29012         Implement a real GSource and use g_main_context_wakeup() to
29013         signal new messages instead of the socketpair.
29014
29015 2005-05-25  Wim Taymans  <wim@fluendo.com>
29016
29017         * gst/gstbin.c: (bin_element_is_sink), (has_ancestor),
29018         (bin_element_is_semi_sink), (append_child), (gst_bin_change_state):
29019         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
29020         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
29021         (gst_pad_send_event), (gst_pad_start_task):
29022         * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush),
29023         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
29024         (gst_queue_sink_activate), (gst_queue_src_activate),
29025         (gst_queue_change_state):
29026         * gst/gstqueue.h:
29027         Fix state changes for non sinks. We now change sinks, then elements
29028         with unconnected srcpads, then the rest.
29029         More efficient queue unlocking in flush and state changes.
29030         Set the pad activate mode even if it does not have an activate
29031         function.
29032
29033 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29034
29035         * gst/base/gstbasesrc.c: (gst_basesrc_activate):
29036           Don't go in pull mode for non-seekable sources.
29037         * gst/elements/gsttypefindelement.h:
29038         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
29039         (gst_type_find_element_dispose), (gst_type_find_handle_src_query),
29040         (free_entry), (stop_typefinding),
29041         (gst_type_find_element_handle_event), (find_peek),
29042         (gst_type_find_element_chain), (do_pull_typefind),
29043         (gst_type_find_element_change_state):
29044           Allow typefinding (w/o seeking) in push-mode, simplified version
29045           of what was in 0.8.
29046         * gst/gstutils.c: (gst_buffer_join):
29047         * gst/gstutils.h:
29048           gst_buffer_join() from 0.8.
29049
29050 2005-05-25  Wim Taymans  <wim@fluendo.com>
29051
29052         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
29053         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
29054         (gst_pad_send_event), (gst_pad_start_task):
29055         Disable attempt at mode switching until it is figured out.
29056
29057 2005-05-25  Wim Taymans  <wim@fluendo.com>
29058
29059         * gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
29060         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
29061         (gst_basesink_finish_preroll), (gst_basesink_chain),
29062         (gst_basesink_loop), (gst_basesink_activate),
29063         (gst_basesink_change_state):
29064         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
29065         (gst_basesrc_get_range), (gst_basesrc_loop),
29066         (gst_basesrc_activate):
29067         * gst/elements/gsttee.c: (gst_tee_sink_activate):
29068         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
29069         (gst_real_pad_init), (gst_real_pad_set_property),
29070         (gst_real_pad_get_property), (gst_pad_set_active),
29071         (gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
29072         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
29073         (gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
29074         (gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
29075         (gst_pad_event_default_dispatch), (gst_pad_event_default),
29076         (gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
29077         (gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
29078         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
29079         (gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
29080         (gst_pad_stop_task):
29081         * gst/gstpad.h:
29082         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
29083         (gst_queue_loop), (gst_queue_src_activate):
29084         * gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
29085         (gst_task_get_state):
29086         * gst/gsttask.h:
29087         * gst/schedulers/threadscheduler.c:
29088         (gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
29089         Implement gst_pad_pause/start/stop_task(), take STREAM lock
29090         in task function.
29091         Remove ACTIVE pad flag, use FLUSHING everywhere
29092         Added _pad_chain(), _pad_get_range() to call chain/getrange 
29093         functions.
29094         Add locks around IS_FLUSHING when reading.
29095         Take STREAM lock in chain(), get_range() functions so plugins
29096         don't need to take it anymore.
29097         
29098
29099
29100 2005-05-25  Wim Taymans  <wim@fluendo.com>
29101
29102         * tools/gst-launch.c: (event_loop):
29103         Unref message after using its contents instead of
29104         before.
29105
29106 2005-05-24  Wim Taymans  <wim@fluendo.com>
29107
29108         * docs/design/draft-ghostpads.txt:
29109         * docs/design/draft-push-pull.txt:
29110         * docs/design/draft-query.txt:
29111         * docs/design/part-overview.txt:
29112         Docs updates, added general overview doc.
29113
29114 2005-05-21  David Schleef  <ds@schleef.org>
29115
29116         * docs/gst/tmpl/old/GstBin.sgml:
29117         * docs/gst/tmpl/old/GstBuffer.sgml:
29118         * docs/gst/tmpl/old/GstCaps.sgml:
29119         * docs/gst/tmpl/old/GstClock.sgml:
29120         * docs/gst/tmpl/old/GstCompat.sgml:
29121         * docs/gst/tmpl/old/GstData.sgml:
29122         * docs/gst/tmpl/old/GstElement.sgml:
29123         * docs/gst/tmpl/old/GstEvent.sgml:
29124         * docs/gst/tmpl/old/GstIndex.sgml:
29125         * docs/gst/tmpl/old/GstStructure.sgml:
29126         * docs/gst/tmpl/old/GstTag.sgml:
29127         * docs/gst/tmpl/old/cothreads.sgml:
29128         * docs/gst/tmpl/old/cothreads_compat.sgml:
29129         * docs/gst/tmpl/old/gettext.sgml:
29130         * docs/gst/tmpl/old/gobject2gtk.sgml:
29131         * docs/gst/tmpl/old/grammar.tab.sgml:
29132         * docs/gst/tmpl/old/gst-i18n-app.sgml:
29133         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
29134         * docs/gst/tmpl/old/gst_private.sgml:
29135         * docs/gst/tmpl/old/gstaggregator.sgml:
29136         * docs/gst/tmpl/old/gstarch.sgml:
29137         * docs/gst/tmpl/old/gstatomic_impl.sgml:
29138         * docs/gst/tmpl/old/gstbufferstore.sgml:
29139         * docs/gst/tmpl/old/gstdata_private.sgml:
29140         * docs/gst/tmpl/old/gstdisksink.sgml:
29141         * docs/gst/tmpl/old/gstdisksrc.sgml:
29142         * docs/gst/tmpl/old/gstelementfactory.sgml:
29143         * docs/gst/tmpl/old/gstextratypes.sgml:
29144         * docs/gst/tmpl/old/gstfakesink.sgml:
29145         * docs/gst/tmpl/old/gstfakesrc.sgml:
29146         * docs/gst/tmpl/old/gstfdsink.sgml:
29147         * docs/gst/tmpl/old/gstfdsrc.sgml:
29148         * docs/gst/tmpl/old/gstfilesink.sgml:
29149         * docs/gst/tmpl/old/gstfilesrc.sgml:
29150         * docs/gst/tmpl/old/gsthttpsrc.sgml:
29151         * docs/gst/tmpl/old/gstidentity.sgml:
29152         * docs/gst/tmpl/old/gstindexfactory.sgml:
29153         * docs/gst/tmpl/old/gstmarshal.sgml:
29154         * docs/gst/tmpl/old/gstmd5sink.sgml:
29155         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
29156         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
29157         * docs/gst/tmpl/old/gstpadtemplate.sgml:
29158         * docs/gst/tmpl/old/gstpipefilter.sgml:
29159         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
29160         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
29161         * docs/gst/tmpl/old/gstshaper.sgml:
29162         * docs/gst/tmpl/old/gstspider.sgml:
29163         * docs/gst/tmpl/old/gstspideridentity.sgml:
29164         * docs/gst/tmpl/old/gststatistics.sgml:
29165         * docs/gst/tmpl/old/gsttee.sgml:
29166         * docs/gst/tmpl/old/gsttimecache.sgml:
29167         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
29168         * docs/gst/tmpl/old/gstxmlregistry.sgml:
29169         * docs/gst/tmpl/old/gthread-cothreads.sgml:
29170         * docs/gst/tmpl/old/types.sgml:
29171           I didn't intend to add these or check them in.
29172
29173 2005-05-19  David Schleef  <ds@schleef.org>
29174
29175         * configure.ac: Use -no-common everywhere.  In a sane world, it
29176           would be the default in libtool, because without it, you can't
29177           build DLLs on Windows.
29178         * docs/gst/gstreamer-docs.sgml: Remove GstCpu, GstData, GstThread
29179         * docs/gst/gstreamer-sections.txt:
29180         * docs/gst/tmpl/gstcpu.sgml:
29181         * docs/gst/tmpl/gstdata.sgml:
29182         * docs/gst/tmpl/gstthread.sgml:
29183
29184 2005-05-19  David Schleef  <ds@schleef.org>
29185
29186         * gst/gstminiobject.c: (gst_value_set_mini_object),
29187         (gst_value_take_mini_object), (gst_value_get_mini_object):
29188         * gst/gstminiobject.h: Add GValue set/get functions.
29189
29190 2005-05-19  Wim Taymans  <wim@fluendo.com>
29191
29192         * gst/gstbuffer.c: (gst_buffer_init), (gst_subbuffer_get_type),
29193         (gst_subbuffer_class_init), (gst_subbuffer_finalize),
29194         (gst_subbuffer_init), (gst_buffer_is_span_fast):
29195         * gst/gstbuffer.h:
29196         * gst/gstbus.c: (gst_bus_post):
29197         * gst/gstelement.c: (gst_element_get_random_pad):
29198         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize):
29199         Make subbufer unref the parent in finalize.
29200         some more debugging info.
29201
29202
29203 2005-05-19  Wim Taymans  <wim@fluendo.com>
29204
29205         * gst/base/gstbasesink.c: (gst_basesink_class_init),
29206         (gst_basesink_init), (gst_basesink_finalize),
29207         (gst_basesink_activate), (gst_basesink_change_state):
29208         Don't free preroll queue too early.
29209
29210 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29211
29212         * gst/Makefile.am:
29213         * gst/ROADMAP:
29214           Hi, I'm outdated. Please shoot me.
29215
29216 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29217
29218         * gst/gstpipeline.c: (gst_pipeline_send_event):
29219           Do not access variables after they have been deleted.
29220
29221 2005-05-19  Wim Taymans  <wim@fluendo.com>
29222
29223         * tools/gst-inspect.c: (print_plugin_features):
29224         A plugin feature does unfortunatly not use the
29225         object name yet...
29226
29227 2005-05-18  Wim Taymans  <wim@fluendo.com>
29228
29229         * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):
29230         Port _span() functions to new subbuffers.
29231
29232 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29233
29234         * gst/gstbin.c: (gst_bin_add_func):
29235           Fix clock settery in bins when adding kids after the clock has
29236           been selected.
29237
29238 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29239
29240         * gst/elements/gstidentity.c: (gst_identity_class_init):
29241           Workaround until signals support GstMiniObject.
29242
29243 2005-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
29244
29245         * gst/gstbuffer.c:
29246         Oops, fix a typo GST_TYPE_BUFFER -> GST_TYPE_SUBBUFFER.
29247
29248 2005-05-18  Wim Taymans  <wim@fluendo.com>
29249
29250         * gst/base/Makefile.am:
29251         * gst/base/gstadapter.c: (gst_adapter_base_init),
29252         (gst_adapter_class_init), (gst_adapter_init),
29253         (gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
29254         (gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
29255         (gst_adapter_flush), (gst_adapter_available),
29256         (gst_adapter_available_fast):
29257         * gst/base/gstadapter.h:
29258         Ported and added adapter to the base classes.
29259
29260 2005-05-17  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29261
29262         * gst/gst.c:
29263         * gst/gstmessage.c:
29264           Make sure the class is reffed/unreffed once before threads can be
29265           used.  Fixes #304551.
29266
29267 2005-05-17  Wim Taymans  <wim@fluendo.com>
29268
29269         * gst/base/gstbasesink.c: (gst_basesink_finish_preroll),
29270         (gst_basesink_chain_unlocked), (gst_basesink_activate):
29271         * gst/gstminiobject.c: (gst_mini_object_get_type),
29272         (gst_mini_object_free):
29273         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query),
29274         (gst_pad_push), (gst_pad_push_event):
29275         * gst/gstqueue.c: (gst_queue_change_state):
29276         Don't queue buffers in basesink when we are flushing.
29277         Unref buffer when flushing in basesink.
29278         Flush queue when going to READY
29279         Unref buffer when _push() returns an error.
29280         Don't free MiniObject instance when refcount is incremented
29281         in _finalize() so that we can recover objects.
29282
29283 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
29284
29285         * docs/manual/advanced-schedulers.xml:
29286         * docs/manual/appendix-checklist.xml:
29287         * docs/pwg/advanced-clock.xml:
29288         * docs/pwg/advanced-interfaces.xml:
29289         * docs/pwg/advanced-request.xml:
29290         * docs/pwg/advanced-types.xml:
29291         * docs/pwg/intro-preface.xml:
29292         * examples/plugins/example.c: (gst_example_get_type),
29293         (gst_example_class_init), (gst_example_chain),
29294         (gst_example_set_property), (gst_example_get_property),
29295         (gst_example_change_state), (plugin_init):
29296         * examples/plugins/example.h:
29297           small doc fixes
29298
29299 2005-05-17  Wim Taymans  <wim@fluendo.com>
29300
29301         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps),
29302         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_push):
29303         * gst/gstqueue.c: (gst_queue_change_state):
29304         Clear queue when going to READY.
29305         Remove IN_SETCAPS flag too.
29306
29307 2005-05-17  Tim-Philipp Müller  <tim at centricular dot net>
29308
29309         * gst/base/gstbasesrc.c: (gst_basesrc_change_state):
29310           Remove implicit cast from gboolean to GstElementStateReturn;
29311           make sure we still return failure in paused => ready case if
29312           the parent class fails to change state and our own stop 
29313           vfunc succeeds.
29314
29315 2005-05-17  Wim Taymans  <wim@fluendo.com>
29316
29317         * tools/gst-launch.c: (event_loop):
29318         Message was unreffed too soon.
29319
29320 2005-05-16  Andy Wingo  <wingo@pobox.com>
29321
29322         * gst/gstbin.c (sink_iterator_filter): Err... um...
29323
29324         * check/gst/gstbin.c (test_ghost_pads): New test for the
29325         ghosting-if-elements-not-in-same-bin behavior.
29326
29327 2005-05-16  David Schleef  <ds@schleef.org>
29328
29329         * gst/gstminiobject.c: Use g_atomic_int_get() instead of
29330         accessing refcount directly.
29331
29332 2005-05-15  David Schleef  <ds@schleef.org>
29333
29334         * check/Makefile.am: remove GstData checks
29335         * check/gst-libs/gdp.c: (START_TEST): fix for API changes
29336         * gst/Makefile.am: add miniobject, remove data
29337         * gst/gst.h: add miniobject, remove data
29338         * gst/gstdata.c: remove
29339         * gst/gstdata.h: remove
29340         * gst/gstdata_private.h: remove
29341         * gst/gsttypes.h: remove GstEvent and GstMessage
29342         * gst/gstelement.c: (gst_element_post_message): fix for API changes
29343         * gst/gstmarshal.list: change BOXED -> OBJECT
29344
29345         Implement GstMiniObject.
29346         * gst/gstminiobject.c:
29347         * gst/gstminiobject.h:
29348
29349         Modify to be subclasses of GstMiniObject.
29350         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
29351         (gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
29352         (gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
29353         (gst_subbuffer_get_type), (gst_subbuffer_init),
29354         (gst_buffer_create_sub), (gst_buffer_is_span_fast),
29355         (gst_buffer_span):
29356         * gst/gstbuffer.h:
29357         * gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
29358         (gst_event_class_init), (gst_event_init), (gst_event_finalize),
29359         (_gst_event_copy), (gst_event_new):
29360         * gst/gstevent.h:
29361         * gst/gstmessage.c: (_gst_message_initialize),
29362         (gst_message_get_type), (gst_message_class_init),
29363         (gst_message_init), (gst_message_finalize), (_gst_message_copy),
29364         (gst_message_new), (gst_message_new_error),
29365         (gst_message_new_warning), (gst_message_new_tag),
29366         (gst_message_new_state_changed), (gst_message_new_application):
29367         * gst/gstmessage.h:
29368         * gst/gstprobe.c: (gst_probe_perform),
29369         (gst_probe_dispatcher_dispatch):
29370         * gst/gstprobe.h:
29371         * gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
29372         (gst_query_class_init), (gst_query_finalize), (gst_query_init),
29373         (_gst_query_copy), (gst_query_new):
29374
29375         Update elements for GstData -> GstMiniObject changes
29376         * gst/gstquery.h:
29377         * gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
29378         (gst_queue_chain), (gst_queue_loop):
29379         * gst/elements/gstbufferstore.c:
29380         (gst_buffer_store_add_buffer_func),
29381         (gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
29382         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
29383         (gst_fakesink_render):
29384         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
29385         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
29386         (gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
29387         (gst_mmap_buffer_finalize), (gst_filesrc_map_region),
29388         (gst_filesrc_create_read):
29389         * gst/elements/gstidentity.c: (gst_identity_class_init):
29390         * gst/elements/gsttypefindelement.c:
29391         (gst_type_find_element_src_event), (free_entry_buffers),
29392         (gst_type_find_element_handle_event):
29393         * libs/gst/dataprotocol/dataprotocol.c:
29394         (gst_dp_header_from_buffer):
29395         * libs/gst/dataprotocol/dataprotocol.h:
29396         * libs/gst/dataprotocol/dp-private.h:
29397
29398 2005-05-15  David Schleef  <ds@schleef.org>
29399
29400         * gst/elements/gstelements.c: Don't include headers that were
29401         just removed.
29402
29403 2005-05-15  David Schleef  <ds@schleef.org>
29404
29405         * gst/elements/Makefile.am: Remove some elements that don't
29406         need to be in the core (or even exist at all).
29407         * gst/elements/gstaggregator.c:
29408         * gst/elements/gstaggregator.h:
29409         * gst/elements/gstmd5sink.c:
29410         * gst/elements/gstmd5sink.h:
29411         * gst/elements/gstmultifilesrc.c:
29412         * gst/elements/gstmultifilesrc.h:
29413         * gst/elements/gstpipefilter.c:
29414         * gst/elements/gstpipefilter.h:
29415         * gst/elements/gstshaper.c:
29416         * gst/elements/gstshaper.h:
29417         * gst/elements/gststatistics.c:
29418         * gst/elements/gststatistics.h:
29419         * po/POTFILES.in: Remove above files.
29420
29421 2005-05-14  Andy Wingo  <wingo@pobox.com>
29422
29423         * gst/gstbin.c (gst_bin_iterate_sinks): Use sink_iterator_filter
29424         so as to get the refs right.
29425         (sink_iterator_filter): New function, wraps bin_element_is_sink,
29426         unreffing objects that don't pass the filter.
29427
29428         * gst/gstpipeline.c (gst_pipeline_init): Drop ref on bus after
29429         gst_element_set_bus.
29430         (gst_pipeline_dispose): Set the bus on the pipeline to NULL. In
29431         normal cases, this will destroy the bus.
29432
29433         * gst/gstutils.c (prepare_link_maybe_ghosting): Drop ref on root
29434         object.
29435
29436         * gst/gstbin.c (gst_bin_change_state): Fix state changes if a bin
29437         has no sinks.
29438
29439 2005-05-13  Andy Wingo  <wingo@pobox.com>
29440
29441         * gst/gstutils.c (gst_element_link_pads): Instead of calling
29442         gst_pad_link, call pad_link_maybe_ghosting,
29443         (pad_link_maybe_ghosting): Links pads, making sure that the
29444         elements being linked are in the same bin.
29445         (find_common_root, object_has_ancestor, ghost_up, remove_pad):
29446         Helpers for pad_link_maybe_ghosting.
29447
29448 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
29449
29450         * configure.ac:
29451           Require GLib >= 2.4.0 (for the g_atomic_* funcs)
29452
29453 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
29454
29455         * docs/design/part-element-source.txt:
29456           Mention GstPushSrc
29457
29458 2005-05-12  Wim Taymans  <wim@fluendo.com>
29459
29460         * gst/base/gstbasesink.c: (gst_basesink_init),
29461         (gst_basesink_activate):
29462         * gst/base/gstbasesrc.c: (gst_basesrc_unlock),
29463         (gst_basesrc_is_seekable):
29464         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
29465         (bin_element_is_sink), (gst_bin_change_state):
29466         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
29467         * gst/gstelement.h:
29468         Identify sinks by their flag to avoid overly complicated
29469         checks (fow now).
29470         Do state changes even for elements not reachable from the
29471         sinks.
29472         BaseSink is a sink now :)
29473         Some more debugging info in the basesrc.
29474
29475
29476 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29477
29478         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_query):
29479           Implement _query on a bin, similar to _send_event.
29480
29481 2005-05-12  Tim-Philipp Müller  <tim at centricular dot net>
29482
29483         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek):
29484           Discont event offset format should be GST_FORMAT_BYTES,
29485           not GST_FORMAT_TIME.
29486
29487 2005-05-12  Wim Taymans  <wim@fluendo.com>
29488
29489         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_get_state):
29490         Same fix as Ronald's but without the signal. 
29491
29492 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29493
29494         * gst/gstutils.c: (gst_element_query_position):
29495           No, an element is not a pad.
29496
29497 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29498
29499         * gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
29500         (gst_bin_get_state):
29501           If a child is removed from a bin while we remove the child from
29502           the bin and while we're retrieving its state, signal this to the
29503           get_state function so we abort the wait (instead of waiting for
29504           a timeout) and can immediately re-iterate over all other elements.
29505
29506 2005-05-12  Wim Taymans  <wim@fluendo.com>
29507
29508         * gst/base/Makefile.am:
29509         * gst/base/gstbasesrc.c: (gst_basesrc_is_seekable),
29510         (gst_basesrc_start):
29511         * gst/base/gstbasesrc.h:
29512         * gst/base/gstpushsrc.c: (gst_pushsrc_get_type),
29513         (gst_pushsrc_base_init), (gst_pushsrc_class_init),
29514         (gst_pushsrc_init), (gst_pushsrc_create):
29515         * gst/base/gstpushsrc.h:
29516         Added is_seekable to BaseSrc
29517         Added simple PushSrc.
29518
29519 2005-05-11  Wim Taymans  <wim@fluendo.com>
29520
29521         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
29522         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
29523         (gst_element_link_pads), (gst_element_query_position),
29524         (gst_element_query_convert), (intersect_caps_func),
29525         (gst_pad_query_position), (gst_pad_query_convert):
29526         Fix refcounting in utils function.
29527         No point in trying to activate a pad when it's added, it could
29528         be added from the state change function and then we deadlock, the
29529         element has to decide what to do.
29530
29531 2005-05-10  Andy Wingo  <wingo@pobox.com>
29532
29533         * gst/elements/gstfakesink.c (gst_fakesink_render): Er, emit with
29534         *all* the arguments.
29535
29536         * gst/base/gstbasetransform.c (gst_base_transform_event): Grab the
29537         stream lock if it's a FLUSH_DONE; normal flushes don't get the
29538         lock (according to the docs -- if this is wrong change the docs).
29539
29540         * gst/gstpipeline.c (gst_pipeline_change_state): Set the bus to
29541         flush messages in the NULL state.
29542
29543         * gst/gstbus.c (gst_bus_post): If a bus is flushing, unref the
29544         message immediately and return.
29545         (gst_bus_set_flushing): New function. If a bus is flushing, it
29546         flushes out any queued messages and immediately unrefs new
29547         messages. This is so when an element goes to NULL, all of the
29548         unhandled messages coming from it can be freed, and their
29549         references to the element dropped. In other words: message source
29550         ref considered harmful :P
29551
29552         * gst/gstbin.c (gst_bin_change_state): Unref peer element when
29553         we're finished with it.
29554
29555         * gst/gstmessage.c (gst_message_new_state_changed): 
29556
29557 2005-05-10  Wim Taymans  <wim@fluendo.com>
29558
29559         * gst/gstvalue.c: (gst_value_compare_flags),
29560         (gst_value_serialize_flags), (gst_value_deserialize_flags),
29561         (_gst_value_initialize):
29562         Added flags serialize/deserialize/compare code.
29563
29564 2005-05-09  Andy Wingo  <wingo@pobox.com>
29565
29566         * gst/base/gstbasetransform.c (gst_base_transform_proxy_getcaps):
29567         Intersect the peer's caps with our caps.
29568
29569 2005-05-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29570
29571         * gst/base/gsttypefindhelper.c: (helper_find_peek):
29572         * gst/elements/gsttypefindelement.c: (find_peek):
29573           Handle negative offsets better. Fixes decodebin.
29574
29575 2005-05-09  Wim Taymans  <wim@fluendo.com>
29576
29577         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps),
29578         (gst_base_transform_event):
29579         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query):
29580         Implement accept_caps.
29581         Fix silly lock/unlock mismatch in base class.
29582
29583 2005-05-09  Wim Taymans  <wim@fluendo.com>
29584
29585         * docs/design/draft-push-pull.txt:
29586         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_query):
29587         * gst/elements/gstfilesink.c: (gst_filesink_init),
29588         (gst_filesink_query):
29589         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
29590         (gst_type_find_handle_src_query), (find_element_get_length):
29591         * gst/gstelement.c: (gst_element_seek), (gst_element_query):
29592         * gst/gstelement.h:
29593         * gst/gstmessage.c:
29594         * gst/gstmessage.h:
29595         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_get_query_types),
29596         (gst_real_pad_get_caps_unlocked),
29597         (gst_pad_get_internal_links_default), (gst_pad_get_internal_links),
29598         (gst_pad_event_default_dispatch), (gst_pad_event_default),
29599         (gst_pad_dispatcher), (gst_pad_query), (gst_pad_query_default),
29600         (gst_real_pad_dispose), (gst_real_pad_finalize),
29601         (gst_pad_load_and_link), (gst_pad_save_thyself),
29602         (gst_ghost_pad_save_thyself), (handle_pad_block), (gst_pad_push),
29603         (gst_pad_check_pull_range), (gst_pad_pull_range),
29604         (gst_pad_template_get_type), (gst_pad_template_class_init),
29605         (gst_pad_template_init), (gst_pad_template_dispose),
29606         (name_is_valid), (gst_static_pad_template_get),
29607         (gst_pad_template_new), (gst_static_pad_template_get_caps),
29608         (gst_pad_template_get_caps), (gst_pad_set_element_private),
29609         (gst_pad_get_element_private), (gst_pad_start_task),
29610         (gst_pad_pause_task), (gst_pad_stop_task),
29611         (gst_ghost_pad_get_type), (gst_ghost_pad_class_init),
29612         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
29613         (gst_ghost_pad_set_property), (gst_ghost_pad_get_property),
29614         (gst_ghost_pad_new):
29615         * gst/gstpad.h:
29616         * gst/gstquery.c: (_gst_query_initialize), (gst_query_new),
29617         (gst_query_new_position), (gst_query_set_position),
29618         (gst_query_parse_position), (gst_query_new_convert),
29619         (gst_query_set_convert), (gst_query_parse_convert):
29620         * gst/gstquery.h:
29621         * gst/gstqueryutils.c:
29622         * gst/gstqueryutils.h:
29623         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
29624         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
29625         (gst_queue_handle_src_query):
29626         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
29627         (gst_element_query_position), (gst_element_query_convert),
29628         (intersect_caps_func), (gst_pad_query_position),
29629         (gst_pad_query_convert):
29630         * gst/gstutils.h:
29631         * tools/gst-inspect.c: (print_pad_info):
29632         * tools/gst-xmlinspect.c: (print_element_info):
29633         Remove old query functions. Ported old code.
29634         Added position/convert helper functions to gstutils.
29635         Reordered gstpad.c code, grouping relevant things.
29636         Remove gst_message_new(), always need to speficy a specific
29637         message.
29638
29639
29640 2005-05-09  Andy Wingo  <wingo@pobox.com>
29641
29642         * gst/gstiterator.h: Add some includes.
29643
29644         * gst/gstqueryutils.h: Include more headers.
29645
29646         * gst/gstpad.h:
29647         * gst/gstpad.c (gst_pad_query_position): New routine, replaces
29648         some uses of gst_pad_query.
29649
29650         * gst/gstqueryutils.c: Build fixes. Make parse functions ignore
29651         NULL out parameters.
29652         (gst_query_new_position): New proc, allocates a new position
29653         query.
29654
29655         * gst/Makefile.am (libgstreamer_@GST_MAJORMINOR@_la_SOURCES): Add
29656         gstqueryutils.c to the build.
29657
29658         * gst/gststructure.c (gst_structure_set_valist): Implement with
29659         the generic G_VALUE_COLLECT.
29660         
29661 2005-05-08  Edward Hervey  <bilboed@bilboed.com>
29662
29663         * gst/Makefile.am: (gst_headers):
29664         Added gstqueryutils.h to the list of headers to install, that was
29665         a 'nachty' move wingo :)
29666
29667 2005-05-06  Andy Wingo  <wingo@pobox.com>
29668
29669         * gst/gstquery.h
29670         * gst/gstquery.c (_gst_query_initialize): Extend GstQuery from
29671         GstData, init a memchunk.
29672         (standard_definitions): Add a few query types, deprecate a few.
29673         (gst_query_get_type): New proc.
29674         (_gst_query_copy, _gst_query_free, gst_query_new): GstData
29675         implementation.
29676         (gst_query_new_application, gst_query_get_structure): New public
29677         procs.
29678
29679         * docs/design/draft-query.txt: Removed LINKS from the query types,
29680         because all the rest can be dispatched to other pads -- seemed
29681         ugly to have a query that couldn't be dispatched. internal_links
29682         is fine as a pad method.
29683
29684         * gst/gstpad.h: Add query2 as a pad method, add the new functions
29685         in gstpad.c, but maintain binary compatibility for the moment.
29686         Will fix before 0.9 is out.
29687
29688         * gst/gstqueryutils.c: 
29689         * gst/gstqueryutils.h: New files, implement 3 methods for each
29690         query type: parse_query, parse_response, and set. Probably need an
29691         allocator as well.
29692
29693         * gst/gst.h: Add gstquery.h and gstqueryutils.h to the list.
29694
29695         * gst/elements/gstfilesink.c (gst_filesink_query2):
29696         * gst/base/gstbasesrc.c (gst_basesrc_query2): Replace old query,
29697         query_types, and formats methods.
29698
29699         * gst/gstpad.c (gst_pad_query2, gst_pad_query2_default)
29700         (gst_pad_set_query2_function): New functions.
29701         (gst_real_pad_init): Set query2_default as the default query2
29702         function. Basically just dispatches to internally linked pads.
29703
29704         Needs review!
29705         
29706         * gst/gstdata_private.h (_GST_DATA_INIT): Set data->refcount to 1
29707         without using the atomic operations. Only one thread can possibly
29708         be accessing the data at this point. Changed so as to avoid
29709         gst_atomic operations.
29710
29711 2005-05-06  Wim Taymans  <wim@fluendo.com>
29712
29713         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push):
29714         Also set caps if we use the fallback buffer alloc.
29715
29716 2005-05-06  Tim-Philipp Müller  <tim at centricular dot net>
29717
29718         * docs/gst/Makefile.am:
29719         * docs/gst/gstreamer-docs.sgml:
29720         * docs/gst/gstreamer-sections.txt:
29721         * docs/gst/tmpl/gstatomic.sgml:
29722         * docs/gst/tmpl/gstmemchunk.sgml:
29723         * testsuite/elements/struct_i386.h:
29724         * win32/GStreamer.vcproj:
29725         * win32/Makefile:
29726           Purge GstAtomic stuff from docs and win32 makefiles as well
29727
29728 2005-05-06  Wim Taymans  <wim@fluendo.com>
29729
29730         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
29731         * gst/elements/gstcapsfilter.c: (gst_capsfilter_getcaps):
29732         * gst/gstpad.c: (gst_pad_peer_get_caps):
29733         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
29734         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
29735         (gst_queue_src_activate), (gst_queue_change_state):
29736         * gst/gstqueue.h:
29737         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
29738         (intersect_caps_func):
29739         Fix gst_pad_peer_get_caps(), make it return NULL if no peer.
29740         Always take QUEUE_LOCK after STREAM_LOCK or we might deadlock.
29741         Some fixes for the peer_get_caps() change.
29742
29743 2005-05-06  Wim Taymans  <wim@fluendo.com>
29744
29745         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
29746         (gst_basesink_handle_buffer), (gst_basesink_chain_unlocked),
29747         (gst_basesink_activate):
29748         Actually do something with error codes returned from the push
29749         functions.
29750
29751 2005-05-06  Wim Taymans  <wim@fluendo.com>
29752
29753         * docs/design/part-element-sink.txt:
29754         * docs/design/part-element-source.txt:
29755         * gst/base/gstbasesink.c: (gst_basesink_class_init),
29756         (gst_basesink_event), (gst_basesink_activate):
29757         * gst/base/gstbasesink.h:
29758         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_unlock),
29759         (gst_basesrc_activate):
29760         * gst/base/gstbasesrc.h:
29761         * gst/gstelement.c: (gst_element_pads_activate):
29762         Some more documentation.
29763         Fixed scheduling decision in _pads_activate().
29764
29765 2005-05-05  Andy Wingo  <wingo@pobox.com>
29766
29767         * check/pipelines/simple_launch_lines.c (test_2_elements): "Fix"
29768         the test suite.
29769
29770 2005-05-05  Wim Taymans  <wim@fluendo.com>
29771
29772         * gst/base/Makefile.am:
29773         * gst/base/gstbasesink.h:
29774         * gst/base/gstbasesrc.c: (gst_basesrc_init),
29775         (gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
29776         * gst/base/gstcollectpads.c: (gst_collectpads_get_type),
29777         (gst_collectpads_class_init), (gst_collectpads_init),
29778         (gst_collectpads_finalize), (gst_collectpads_new),
29779         (gst_collectpads_set_function), (gst_collectpads_add_pad),
29780         (find_pad), (gst_collectpads_remove_pad),
29781         (gst_collectpads_is_active), (gst_collectpads_collect),
29782         (gst_collectpads_collect_range), (gst_collectpads_start),
29783         (gst_collectpads_stop), (gst_collectpads_peek),
29784         (gst_collectpads_pop), (gst_collectpads_available),
29785         (gst_collectpads_read), (gst_collectpads_flush),
29786         (gst_collectpads_chain):
29787         * gst/base/gstcollectpads.h:
29788         * gst/elements/Makefile.am:
29789         * gst/elements/gstelements.c:
29790         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
29791         (gst_fakesink_get_times), (gst_fakesink_event),
29792         (gst_fakesink_preroll), (gst_fakesink_render):
29793         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
29794         (gst_filesink_init), (gst_filesink_set_location),
29795         (gst_filesink_open_file), (gst_filesink_close_file),
29796         (gst_filesink_pad_query), (gst_filesink_event),
29797         (gst_filesink_render), (gst_filesink_change_state):
29798         * gst/elements/gstfilesink.h:
29799         Added object to help in making collect pad based elements.
29800         Ported filesink.
29801         Make event function in sink baseclass return gboolean.
29802
29803 2005-05-05  Wim Taymans  <wim@fluendo.com>
29804
29805         * gst/gstbin.c: (gst_bin_send_event), (compare_name),
29806         (gst_bin_get_by_name):
29807         * gst/gstbuffer.h:
29808         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
29809         (gst_clock_finalize):
29810         * gst/gstdata.c: (gst_data_replace):
29811         * gst/gstdata.h:
29812         * gst/gstelement.c: (gst_element_request_pad),
29813         (gst_element_pads_activate):
29814         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
29815         (gst_object_unref):
29816         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
29817         (gst_pad_set_checkgetrange_function),
29818         (gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
29819         (gst_pad_check_pull_range), (gst_pad_pull_range),
29820         (gst_static_pad_template_get_caps), (gst_pad_start_task),
29821         (gst_pad_pause_task), (gst_pad_stop_task):
29822         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
29823         (gst_element_request_pad), (gst_pad_proxy_getcaps):
29824         Fix name lookup in GstBin.
29825         Added _data_replace() function and _buffer_replace()
29826         Use finalize method to clean up clock.
29827         Fix refcounting on request pads.
29828         Fix pad schedule mode error.
29829         Some more object refcounting debug info,
29830
29831
29832 2005-05-04  Andy Wingo <wingo@pobox.com>
29833
29834         * check/Makefile.am:
29835         * docs/gst/tmpl/gstatomic.sgml:
29836         * docs/gst/tmpl/gstplugin.sgml:
29837         * gst/base/gstbasesink.c: (gst_basesink_activate):
29838         * gst/base/gstbasesrc.c: (gst_basesrc_class_init),
29839         (gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
29840         (gst_basesrc_query), (gst_basesrc_set_property),
29841         (gst_basesrc_get_property), (gst_basesrc_check_get_range),
29842         (gst_basesrc_activate):
29843         * gst/base/gstbasesrc.h:
29844         * gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
29845         (gst_base_transform_src_activate):
29846         * gst/elements/gstelements.c:
29847         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
29848         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
29849         * gst/elements/gsttee.c: (gst_tee_sink_activate):
29850         * gst/elements/gsttypefindelement.c: (find_element_get_length),
29851         (gst_type_find_element_checkgetrange),
29852         (gst_type_find_element_activate):
29853         * gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
29854         * gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
29855         (gst_caps_load_thyself):
29856         * gst/gstelement.c: (gst_element_pads_activate),
29857         (gst_element_save_thyself), (gst_element_restore_thyself):
29858         * gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
29859         (gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
29860         * gst/gstpad.h:
29861         * gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
29862         (gst_xml_parse_file), (gst_xml_parse_memory),
29863         (gst_xml_get_element), (gst_xml_make_element):
29864         * gst/indexers/gstfileindex.c: (gst_file_index_load),
29865         (_file_index_id_save_xml), (gst_file_index_commit):
29866         * gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
29867         (read_enum), (load_pad_template), (load_feature), (load_plugin),
29868         (load_paths):
29869         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
29870         (gst_dp_packet_from_event), (gst_dp_caps_from_packet):
29871         * tools/gst-complete.c: (main):
29872         * tools/gst-compprep.c: (main):
29873         * tools/gst-inspect.c: (print_element_properties_info):
29874         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
29875         * tools/gst-xmlinspect.c: (print_element_properties):
29876         GCC 4 fixen.
29877         
29878 2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
29879
29880         * gst/gstplugin.c: (gst_plugin_check_module),
29881         (gst_plugin_check_file), (gst_plugin_load_file):
29882             apply patch from #172526 to make register work on MacOSX
29883
29884 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29885
29886         * docs/gst/tmpl/gstconfig.sgml:
29887         * gst/gstconfig.h.in:
29888           move documentation for some symbols.  Add doc for GST_PTR_FORMAT
29889         * testsuite/debug/printf_extension.c: (main):
29890           Do not use GST_PTR_FORMAT on pointers to types with
29891           sizeof < sizeof(gpointer).  Fixes test on 64-bit
29892         * testsuite/elements/property.h:
29893           use correct printf format
29894
29895 2005-05-02  Wim Taymans  <wim@fluendo.com>
29896
29897         * docs/design/draft-push-pull.txt:
29898         * docs/design/draft-query.txt:
29899         * gst/base/gstbasesrc.c: (gst_basesrc_get_range_unlocked),
29900         (gst_basesrc_start):
29901         Added draft for new query API.
29902         Added draft for better selecting scheduling methods.
29903         Make basesrc ignore length if the subclass does not support
29904         it.
29905
29906 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29907
29908         * gst/Makefile.am:
29909           possible fixes for automake-1.5 - _LIBADD is reserved
29910
29911 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
29912
29913         * docs/faq/Makefile.am:
29914         * docs/manual/Makefile.am:
29915         * docs/manuals.mak:
29916         * docs/pwg/Makefile.am:
29917         * gst/Makefile.am:
29918           possible fixes for automake-1.5
29919
29920 2005-04-28  Wim Taymans  <wim@fluendo.com>
29921
29922         * gst/base/gstbasesink.c: (gst_basesink_base_init),
29923         (gst_basesink_pad_getcaps), (gst_basesink_init),
29924         (gst_basesink_do_sync):
29925         * gst/gstclock.c: (gst_clock_entry_new):
29926         * gst/gstevent.c: (gst_event_discont_get_value):
29927         * gst/gstpipeline.c: (pipeline_bus_handler),
29928         (gst_pipeline_change_state):
29929         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
29930         Better debugging of clocking info.
29931         Allow NULL values when getting discont values.
29932
29933 2005-04-27  Wim Taymans  <wim@fluendo.com>
29934
29935         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
29936         * check/gst/gstpad.c: (gst_pad_suite):
29937         Increase timeout for checks.
29938
29939 2005-04-27  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
29940
29941         * check/Makefile.am:
29942           fix the broken rule for cleanup.  Apparently this rule is
29943           only needed on FC2, so maybe this warrants further autotool
29944           inspection.
29945
29946 2005-04-26  Wim Taymans  <wim@fluendo.com>
29947
29948         * gst/gsttrashstack.h:
29949         Ooohh. a nasty one! After having a failed pop() from the stack,
29950         it's possible that the stack is empty. In that case, don't
29951         follow the NULL pointer.
29952
29953 2005-04-25  Wim Taymans  <wim@fluendo.com>
29954
29955         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
29956         (gst_pad_set_checkgetrange_function),
29957         (gst_pad_link_check_compatible_unlocked), (gst_pad_link_prepare),
29958         (gst_pad_check_pull_range), (gst_pad_pull_range),
29959         (gst_static_pad_template_get_caps), (gst_pad_start_task),
29960         (gst_pad_pause_task), (gst_pad_stop_task):
29961         * gst/gstplugin.c: (gst_plugin_load):
29962         * gst/gstplugin.h:
29963         Remove gst_library_load as it does more harm than good with
29964         the new g_module flags.
29965         Revert bogus caps template check in pad linking, pad caps
29966         are important when linking not the template, which is more
29967         general than the current caps.
29968
29969 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
29970
29971         * gst/autoplug/.cvsignore:
29972         * gst/autoplug/Makefile.am:
29973         * gst/autoplug/gstsearchfuncs.c:
29974         * gst/autoplug/gstsearchfuncs.h:
29975         * gst/autoplug/gstspider.c:
29976         * gst/autoplug/gstspider.h:
29977         * gst/autoplug/gstspideridentity.c:
29978         * gst/autoplug/gstspideridentity.h:
29979         * gst/autoplug/spidertest.c:
29980           Die, spider, die.
29981
29982 2005-04-25  Wim Taymans  <wim@fluendo.com>
29983
29984         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
29985         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
29986         (gst_pad_pull_range), (gst_static_pad_template_get_caps),
29987         (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
29988         * gst/gstpad.h:
29989         Added stubs for unimplemented functions. 
29990
29991 2005-04-24  David Schleef  <ds@schleef.org>
29992
29993         * gst/gstpad.h: Disable some unimplemented functions.  Wim,
29994         please fix.
29995
29996 2005-04-24  David Schleef  <ds@schleef.org>
29997
29998         Convert everything from GstAtomicInt to g_atomic_int_*, and
29999         remove gstatomic.
30000         * gst/Makefile.am:
30001         * gst/gstatomic.c:
30002         * gst/gstatomic.h:
30003         * gst/gstatomic_impl.h:
30004         * gst/gstbuffer.c:
30005         * gst/gstcaps.c:
30006         * gst/gstcaps.h:
30007         * gst/gstclock.c:
30008         * gst/gstclock.h:
30009         * gst/gstdata.c:
30010         * gst/gstdata.h:
30011         * gst/gstdata_private.h:
30012         * gst/gstevent.c:
30013         * gst/gstinfo.c:
30014         * gst/gstinfo.h:
30015         * gst/gstmessage.c:
30016         * gst/gstobject.c:
30017         * gst/gstobject.h:
30018         * gst/gststructure.c:
30019         * gst/gststructure.h:
30020         * gst/gstutils.c: Add gst_atomic_int_set() compaitibility function.
30021         * gst/gstutils.h:
30022
30023 2005-04-24  David Schleef  <ds@schleef.org>
30024
30025         * check/gst/gstpad.c: (START_TEST): Oh yeah, it's always nice to
30026         make the regressions tests work.  Remove some code that is no
30027         longer true.
30028         * gst/gstpad.c: (gst_pad_link_check_templates_compatible_unlocked):
30029         Disable warning for pads without templates.
30030
30031 2005-04-24  David Schleef  <ds@schleef.org>
30032
30033         * gst/gstpad.c: Remove handling of filtered caps.  Fix/merge
30034         functions that handle filtered links.
30035         * gst/gstpad.h: Remove 'appfilter' field and prototypes of
30036         removed functions.
30037         * gst/gstutils.c: Fix/remove utility functions that handle
30038         filtered caps.
30039         * gst/gstutils.h:
30040         * gst/gstvalue.c: Add serialization/deserialization of caps
30041         * gst/parse/grammar.y: Ignore filtered caps when linking.  This
30042         requires fixing so that the filter caps notation creates
30043         a capsfilter element and sets the filter_caps property.  I
30044         think everyone probably wants to keep the shorthand notation.
30045         * docs/gst/tmpl/gstelement.sgml: updates for API changes.
30046         * docs/gst/tmpl/gstpad.sgml:
30047
30048         * gst/elements/gstelements.c: Register capsfilter element.
30049         * gst/Makefile.am: fix spacing
30050         * docs/random/ds/0.9-suggested-changes: random
30051
30052 2005-04-23  David Schleef  <ds@schleef.org>
30053
30054         * gst/elements/Makefile.am:
30055         * gst/elements/gstcapsfilter.c: New element that acts like an
30056         identity, but filters caps.  Will eventually replace filtered
30057         caps in pad linking.
30058         * gst/gstutils.c: (gst_element_create_all_pads): New function
30059         to create all the ALWAYS pads that are registered with an
30060         element class.  This functionality should eventually be
30061         merged in with GstElement initialization.
30062         * gst/gstutils.h:
30063         * testsuite/trigger/README: part of trigger test code that should
30064         have been checked in a long time ago.
30065
30066 2005-04-23  David Schleef  <ds@schleef.org>
30067
30068         * gst/Makefile.am: Remove as-libtool stuff.  It's likely not
30069         needed with new versions of libtool (nobody will confirm this),
30070         and hard to carry around.
30071         * gst/autoplug/Makefile.am:
30072         * gst/base/Makefile.am:
30073         * gst/elements/Makefile.am:
30074         * gst/indexers/Makefile.am:
30075         * gst/schedulers/Makefile.am:
30076         * libs/gst/bytestream/Makefile.am:
30077         * libs/gst/control/Makefile.am:
30078         * libs/gst/dataprotocol/Makefile.am:
30079         * libs/gst/getbits/Makefile.am:
30080
30081 2005-04-21  Wim Taymans  <wim@fluendo.com>
30082
30083         * docs/design/draft-push-pull.txt:
30084         * docs/design/part-MT-refcounting.txt:
30085         * docs/design/part-TODO.txt:
30086         * docs/design/part-caps.txt:
30087         * docs/design/part-events.txt:
30088         * docs/design/part-gstbus.txt:
30089         * docs/design/part-gstpipeline.txt:
30090         * docs/design/part-messages.txt:
30091         * docs/design/part-push-pull.txt:
30092         * docs/design/part-query.txt:
30093         Some more docs.
30094
30095 2005-04-21  Wim Taymans  <wim@fluendo.com>
30096
30097         * gst/gstmessage.c: (_gst_message_copy), (_gst_message_free),
30098         (gst_message_new), (gst_message_new_error),
30099         (gst_message_new_warning), (gst_message_new_tag),
30100         (gst_message_new_state_changed), (gst_message_new_application),
30101         (gst_message_get_structure):
30102         * gst/gstmessage.h:
30103         * gst/gststructure.c: (gst_structure_set_parent_refcount),
30104         (gst_structure_copy_conditional):
30105         Use parent refcount in GstMessage to ensure GstStructure
30106         consistency.
30107         Cleaned up headers a bit.
30108         
30109
30110 2005-04-20  Wim Taymans  <wim@fluendo.com>
30111
30112         * gst/base/gstbasesink.c: (gst_basesink_base_init),
30113         (gst_basesink_pad_getcaps), (gst_basesink_init),
30114         (gst_basesink_chain_unlocked):
30115         * gst/base/gsttypefindhelper.c: (helper_find_suggest),
30116         (gst_type_find_helper):
30117         * gst/elements/gsttypefindelement.c:
30118         (gst_type_find_element_have_type), (gst_type_find_element_init),
30119         (stop_typefinding), (gst_type_find_element_handle_event),
30120         (find_suggest), (gst_type_find_element_chain),
30121         (gst_type_find_element_checkgetrange),
30122         (gst_type_find_element_getrange), (do_typefind),
30123         (gst_type_find_element_activate):
30124         * gst/gstbuffer.c: (_gst_buffer_sub_free),
30125         (gst_buffer_default_free), (gst_buffer_default_copy),
30126         (gst_buffer_set_caps):
30127         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
30128         (gst_caps_replace):
30129         * gst/gstmessage.c: (gst_message_new),
30130         (gst_message_new_state_changed):
30131         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
30132         (gst_pad_set_checkgetrange_function),
30133         (gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
30134         (gst_pad_set_caps), (gst_pad_check_pull_range),
30135         (gst_pad_pull_range), (gst_static_pad_template_get_caps):
30136         * gst/gstpad.h:
30137         * gst/gsttypefind.c: (gst_type_find_register):
30138         Make gst_caps_replace() work like other _replace() functions.
30139         Use _caps_replace() where possible.
30140         Make sure _message_new() initialises its field.
30141         Add gst_static_pad_template_get_caps()
30142
30143
30144 2005-04-18  Andy Wingo  <wingo@pobox.com>
30145
30146         * gst/gstelement.c (gst_element_pads_activate): Check pull_range
30147         on the peer, not the pad. I think that was a typo. Pass an extra
30148         arg to see if random access is possible. Activate the pads as
30149         PULL_RANGE if possible.
30150
30151         * gst/elements/gstfakesrc.c: s/ARG_/PROP_/.
30152
30153         * gst/base/gstbasesrc.c (gst_basesrc_set_property) 
30154         (gst_basesrc_get_property): BLOCKSIZE is a ULONG. Rename ARG_...
30155         to PROP_....
30156
30157 2005-04-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30158
30159         * docs/faq/using.xml:
30160           Add note on gstreamer-properties (#154996).
30161
30162 2005-04-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30163
30164         * docs/random/bbb/optional-properties:
30165           Some analysis on optional properties.
30166
30167 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30168
30169         * docs/gst/tmpl/gstelementfactory.sgml:
30170         * gst/gstelement.h:
30171         * gst/gstelementfactory.c: (gst_element_factory_init),
30172         (gst_element_factory_cleanup), (gst_element_register),
30173         (__gst_element_factory_add_static_pad_template),
30174         (gst_element_factory_get_static_pad_templates),
30175         (gst_element_factory_can_src_caps),
30176         (gst_element_factory_can_sink_caps):
30177         * gst/registries/Makefile.am:
30178         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
30179         (gst_xml_registry_class_init), (gst_xml_registry_init),
30180         (gst_xml_registry_new), (gst_xml_registry_set_property),
30181         (gst_xml_registry_get_property), (get_time), (make_dir),
30182         (gst_xml_registry_get_perms_func),
30183         (plugin_times_older_than_recurse), (plugin_times_older_than),
30184         (gst_xml_registry_open_func), (gst_xml_registry_load_func),
30185         (gst_xml_registry_save_func), (gst_xml_registry_close_func),
30186         (add_to_char_array), (read_string), (read_uint), (read_enum),
30187         (load_pad_template), (load_feature), (load_plugin), (load_paths),
30188         (gst_xml_registry_load), (gst_xml_registry_load_plugin),
30189         (gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
30190         (gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
30191         (gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
30192         (gst_xml_registry_rebuild):
30193         * gst/registries/gstlibxmlregistry.h:
30194         * tools/gst-compprep.c: (main):
30195         * tools/gst-inspect.c: (print_pad_templates_info):
30196         * tools/gst-xmlinspect.c: (print_element_info):
30197           Use libxml2 for registry parsing, use staticpadtemplates in
30198           elementfactories. Makes gst_init() +/- 10x faster.
30199
30200 2005-04-12  Wim Taymans  <wim@fluendo.com>
30201
30202         * gst/base/Makefile.am:
30203         * gst/base/gstbasesink.c: (gst_basesink_base_init),
30204         (gst_basesink_pad_getcaps), (gst_basesink_init),
30205         (gst_basesink_event), (gst_basesink_change_state):
30206         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
30207         (gst_basesrc_init), (gst_basesrc_query),
30208         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
30209         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
30210         (gst_basesrc_check_get_range), (gst_basesrc_loop),
30211         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
30212         (gst_basesrc_stop), (gst_basesrc_activate),
30213         (gst_basesrc_change_state):
30214         * gst/base/gsttypefindhelper.c: (helper_find_peek),
30215         (helper_find_suggest), (gst_type_find_helper):
30216         * gst/base/gsttypefindhelper.h:
30217         * gst/elements/Makefile.am:
30218         * gst/elements/gstelements.c:
30219         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
30220         (gst_fakesink_get_times), (gst_fakesink_event),
30221         (gst_fakesink_preroll), (gst_fakesink_render):
30222         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
30223         (gst_fakesrc_init), (gst_fakesrc_event_handler),
30224         (gst_fakesrc_get_property), (gst_fakesrc_create),
30225         (gst_fakesrc_start), (gst_fakesrc_stop):
30226         * gst/elements/gstfakesrc.h:
30227         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init),
30228         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
30229         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
30230         (gst_filesrc_create_read), (gst_filesrc_create),
30231         (gst_filesrc_is_seekable), (gst_filesrc_get_size),
30232         (gst_filesrc_start):
30233         * gst/elements/gsttypefindelement.c:
30234         (gst_type_find_element_have_type), (gst_type_find_element_init),
30235         (start_typefinding), (stop_typefinding), (push_buffer_store),
30236         (gst_type_find_element_handle_event),
30237         (gst_type_find_element_chain),
30238         (gst_type_find_element_checkgetrange),
30239         (gst_type_find_element_getrange), (do_typefind),
30240         (gst_type_find_element_activate),
30241         (gst_type_find_element_change_state):
30242         * gst/elements/gsttypefindelement.h:
30243         * gst/gstpipeline.c: (pipeline_bus_handler):
30244         Added typefind helper.
30245         Small preroll fix in the base sink.
30246         Disable typefind code in basesrc.
30247         Crude port of typefindelement.
30248         Fakesrc cleanups.
30249
30250
30251 2005-04-11  Wim Taymans  <wim@fluendo.com>
30252
30253         * check/gst/gstbus.c: (gstbus_suite):
30254         * check/gst/gstdata.c: (thread_ref), (gst_data_suite):
30255         * check/gstcheck.h:
30256           Fix up the timeout so that the test does not fail.
30257
30258 2005-04-06  Wim Taymans  <wim@fluendo.com>
30259
30260         * gst/base/README:
30261         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
30262         (gst_basesrc_init), (gst_basesrc_get_formats), (gst_basesrc_query),
30263         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
30264         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
30265         (gst_basesrc_check_get_range), (gst_basesrc_loop),
30266         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
30267         (gst_basesrc_stop), (gst_basesrc_activate),
30268         (gst_basesrc_change_state), (basesrc_find_peek),
30269         (basesrc_find_suggest), (gst_basesrc_type_find):
30270         * gst/base/gstbasesrc.h:
30271         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
30272         (gst_filesrc_class_init), (gst_filesrc_init),
30273         (gst_filesrc_finalize), (gst_filesrc_set_location),
30274         (gst_filesrc_set_property), (gst_filesrc_get_property),
30275         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
30276         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
30277         (gst_filesrc_create_read), (gst_filesrc_create),
30278         (gst_filesrc_get_size), (gst_filesrc_start), (gst_filesrc_stop):
30279         * gst/elements/gstfilesrc.h:
30280         * gst/gstelement.c: (gst_element_get_state_func),
30281         (gst_element_lost_state), (gst_element_pads_activate):
30282         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
30283         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
30284         (gst_pad_pull_range):
30285         * gst/gstpad.h:
30286         More work on the generic source base class, implement seeking,
30287         query.
30288         Make filesrc extend the base source class.
30289         Added gst_pad_set_checkgetrange_function to GstPad.
30290
30291 2005-04-06  Andy Wingo  <wingo@pobox.com>
30292
30293         * pkgconfig/gstreamer-base.pc.in:
30294         * pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
30295
30296         * pkgconfig/Makefile.am:
30297         * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
30298
30299 2005-04-04  Wim Taymans  <wim@fluendo.com>
30300
30301         * gst/base/Makefile.am:
30302         * gst/base/README:
30303         * gst/base/gstbasesink.c: (gst_basesink_base_init),
30304         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
30305         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
30306         (gst_basesink_do_sync), (gst_basesink_chain_unlocked):
30307         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
30308         (gst_basesrc_base_init), (gst_basesrc_class_init),
30309         (gst_basesrc_init), (gst_basesrc_get_formats),
30310         (gst_basesrc_get_query_types), (gst_basesrc_query),
30311         (gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
30312         (gst_basesrc_set_property), (gst_basesrc_get_property),
30313         (gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
30314         (gst_basesrc_loop), (gst_basesrc_activate),
30315         (gst_basesrc_change_state):
30316         * gst/base/gstbasesrc.h:
30317         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
30318         (gst_fakesrc_class_init), (gst_fakesrc_init),
30319         (gst_fakesrc_event_handler), (gst_fakesrc_set_property),
30320         (gst_fakesrc_get_property), (gst_fakesrc_create):
30321         * gst/elements/gstfakesrc.h:
30322         * gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
30323         (gst_filesrc_open_file), (gst_filesrc_loop),
30324         (gst_filesrc_activate), (filesrc_find_peek),
30325         (gst_filesrc_type_find):
30326         Made base source class, make fakesrc extend it.
30327         Add comments to basesink class.
30328         Some filesrc cleanup.
30329
30330 2005-03-31  David Schleef  <ds@schleef.org>
30331
30332         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
30333         Switch to using G_MODULE_BIND_LOCAL, which means plugins are now
30334         expected to link against libgstreamer.
30335         * gst/base/Makefile.am: link against libgstreamer
30336         * gst/elements/Makefile.am: same
30337
30338 2005-03-31  Andy Wingo  <wingo@pobox.com>
30339
30340         * tests/instantiate/Makefile.am:
30341         * tests/instantiate/caps.c: Add test to test speed of caps copy
30342         and free.
30343
30344         * tests/memchunk/gmemchunktest.c (main): Use alloc only on the
30345         GMemChunk to be fair.
30346
30347         * gst/gsttrashstack.h: Remove warning about using the fallback
30348         trash stack implementation, it's still faster than malloc.
30349
30350 2005-03-30  Andy Wingo  <wingo@pobox.com>
30351
30352         * tests/complexity.c: Add a copyright.
30353
30354 2005-03-31  Wim Taymans  <wim@fluendo.com>
30355
30356         * gst/base/gstbasetransform.c: (gst_base_transform_base_init),
30357         (gst_base_transform_class_init), (gst_base_transform_init),
30358         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
30359         (gst_base_transform_get_property),
30360         (gst_base_transform_sink_activate),
30361         (gst_base_transform_src_activate),
30362         (gst_base_transform_change_state):
30363         * gst/base/gstbasetransform.h:
30364         * gst/elements/gstidentity.c: (gst_identity_class_init),
30365         (gst_identity_event), (gst_identity_check_perfect),
30366         (gst_identity_transform), (gst_identity_start),
30367         (gst_identity_stop):
30368         Added start/stop methods to transform base class so subclasses 
30369         don't need to deal with state changes even.
30370
30371 2005-03-31  Wim Taymans  <wim@fluendo.com>
30372
30373         * gst/gstevent.c: (gst_event_new_discontinuous_valist),
30374         (gst_event_new_discontinuous), (gst_event_discont_get_value):
30375         * gst/gstevent.h:
30376         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
30377         (gst_pad_pull_range):
30378         Added rate to the discont event to prepare for variable speed
30379         and reverse playback.
30380
30381 2005-03-29  David Schleef  <ds@schleef.org>
30382
30383         * configure.ac:
30384         * testsuite/trigger/Makefile.am:
30385         * testsuite/trigger/trigger.c: A little example program to show
30386         how trigger-based elements can work.
30387
30388 2005-03-29  Wim Taymans  <wim@fluendo.com>
30389
30390         * gst/base/Makefile.am:
30391         * gst/base/README:
30392         * gst/base/gstbasesink.c: (gst_basesink_get_type),
30393         (gst_basesink_base_init), (gst_basesink_class_init),
30394         (gst_basesink_pad_getcaps), (gst_basesink_init),
30395         (gst_basesink_activate), (gst_basesink_change_state):
30396         * gst/base/gstbasesink.h:
30397         * gst/base/gstbasetransform.c: (gst_base_transform_get_type),
30398         (gst_base_transform_base_init), (gst_base_transform_finalize),
30399         (gst_base_transform_class_init), (gst_base_transform_init),
30400         (gst_base_transform_proxy_getcaps), (gst_base_transform_setcaps),
30401         (gst_base_transform_event), (gst_base_transform_getrange),
30402         (gst_base_transform_chain), (gst_base_transform_handle_buffer),
30403         (gst_base_transform_set_property),
30404         (gst_base_transform_get_property),
30405         (gst_base_transform_sink_activate),
30406         (gst_base_transform_src_activate),
30407         (gst_base_transform_change_state):
30408         * gst/base/gstbasetransform.h:
30409         * gst/elements/gstidentity.c: (gst_identity_finalize),
30410         (gst_identity_class_init), (gst_identity_init),
30411         (gst_identity_event), (gst_identity_check_perfect),
30412         (gst_identity_transform), (gst_identity_set_property),
30413         (gst_identity_get_property), (gst_identity_change_state):
30414         * gst/elements/gstidentity.h:
30415         * gst/gstelement.c: (gst_element_get_state_func),
30416         (gst_element_lost_state), (gst_element_pads_activate):
30417         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
30418         (gst_pad_check_pull_range), (gst_pad_pull_range):
30419         * gst/gstpad.h:
30420         Simplify pad activation.
30421         Added function to check if pull_range can be performed.
30422         Error out when pulling inactive or flushing pads.
30423         Removed const from refcounted types as it does not make sense.
30424         Simplify pad templates in basesink
30425         Added base class for simple 1-to-1 transforms.
30426         Make identity subclass the base transform.
30427
30428 2005-03-29  Andy Wingo  <wingo@pobox.com>
30429
30430         * docs/libs/gstreamer-libs-overrides.txt: 
30431         * docs/gst/gstreamer-overrides.txt: Add these files to CVS. Now I
30432         really don't understand what's going on, but like whatever. I want
30433         green buildbot!
30434
30435         * docs/gst/Makefile.am:
30436         * docs/libs/Makefile.am: Dist the overrides files.
30437
30438         * check/Makefile.am (clean-local): Remove .libs directories.
30439
30440         * gst/elements/Makefile.am (EXTRA_DIST): Add all the attic
30441         elements to EXTRA_DIST, so po/ files are happy.
30442
30443         * po/POTFILES.in: Er, remove it here.
30444
30445         * po/POTFILES: Remove gstspider.c.
30446
30447         * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
30448
30449         * docs/libs/gstreamer-libs-docs.sgml: 
30450         * docs/libs/gstreamer-libs-sections.txt: Remove the section on
30451         bytestream.
30452
30453         * tests/complexity.c (main): Set the length of the preroll queue
30454         on the sinks to prevent a lockup.
30455
30456         * libs/gst/dataprotocol/Makefile.am: 
30457         * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
30458         the same as the one in check/gst-libs/gdp.c.
30459
30460         * po/, docs/gst/: Commit automatic changes to docs and po files.
30461
30462         * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to
30463         the versioned libgstbase.
30464
30465         * check/Makefile.am: Depend on an unversioned gst-register, seems
30466         to make autoconf happier.
30467
30468         * gst/base/Makefile.am: Make libgstbase a versioned lib.
30469
30470 2005-03-28  Wim Taymans  <wim@fluendo.com>
30471
30472         * configure.ac:
30473         * docs/design/part-gstelement.txt:
30474         * docs/design/part-negotiation.txt:
30475         * docs/design/part-preroll.txt:
30476         * docs/design/part-scheduling.txt:
30477         * docs/design/part-states.txt:
30478         * gst/Makefile.am:
30479         * gst/base/Makefile.am:
30480         * gst/base/README:
30481         * gst/base/gstbasesink.c: (gst_basesink_get_template),
30482         (gst_basesink_base_init), (gst_basesink_class_init),
30483         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
30484         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
30485         (gst_basesink_set_pad_functions),
30486         (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock),
30487         (gst_basesink_set_property), (gst_basesink_get_property),
30488         (gst_base_sink_get_template), (gst_base_sink_get_caps),
30489         (gst_base_sink_set_caps), (gst_base_sink_buffer_alloc),
30490         (gst_basesink_preroll_queue_push),
30491         (gst_basesink_preroll_queue_empty),
30492         (gst_basesink_preroll_queue_flush), (gst_basesink_finish_preroll),
30493         (gst_basesink_event), (gst_basesink_get_times),
30494         (gst_basesink_do_sync), (gst_basesink_handle_buffer),
30495         (gst_basesink_chain_unlocked), (gst_basesink_chain),
30496         (gst_basesink_loop), (gst_basesink_activate),
30497         (gst_basesink_change_state):
30498         * gst/base/gstbasesink.h:
30499         * gst/elements/Makefile.am:
30500         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
30501         (gst_fakesink_class_init), (gst_fakesink_init),
30502         (gst_fakesink_set_property), (gst_fakesink_get_property),
30503         (gst_fakesink_get_times), (gst_fakesink_event),
30504         (gst_fakesink_preroll), (gst_fakesink_render),
30505         (gst_fakesink_change_state):
30506         * gst/elements/gstfakesink.h:
30507         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
30508         (gst_bin_get_state), (gst_bin_change_state), (gst_bin_send_event):
30509         * gst/gstelement.c: (gst_element_add_pad),
30510         (gst_element_get_state_func), (gst_element_abort_state),
30511         (gst_element_commit_state), (gst_element_lost_state),
30512         (gst_element_set_state), (gst_element_pads_activate):
30513         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_event_default):
30514         * gst/gstpipeline.c: (gst_pipeline_send_event),
30515         (gst_pipeline_change_state):
30516         Added state change code.
30517         Added/updated docs.
30518         Added sink base class, make fakesink extend the base class.
30519         Small cleanups in GstPipeline.
30520
30521 2005-03-26  David Schleef  <ds@schleef.org>
30522
30523         * gst/Makefile.am: remove gstcpu.[ch].  The gst_cpu functionality
30524         is broken and should be implemented in a different library.
30525         * gst/gst.c: (init_post): don't call _gst_cpu_initialize()
30526         * gst/gst.h: remove gstcpu.h
30527         * gst/gstcpu.c: remove
30528         * gst/gstcpu.h: remove
30529         * gst/Makefile.am.future: Remove this file.  It's ancient.
30530
30531 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30532
30533         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
30534         (gst_bin_send_event):
30535           Add default event/set_manager handlers. The set_manager handler
30536           takes care that the manager is distributed over kids that were
30537           already in the bin before the manager was set. The event handler
30538           is a utility virtual function that sends the event over all sinks,
30539           so that gst_element_send_event (bin, event); has the expected
30540           behaviour.
30541         * gst/gstpad.c: (gst_pad_event_default):
30542           Re-install default event handling for discontinuities, so that
30543           seeking works without requiring hacks in applications or extra
30544           code in sinks.
30545         * gst/gstpipeline.c: (gst_pipeline_class_init),
30546         (gst_pipeline_send_event):
30547           Half hack, half utility: set a pipeline to PAUSED for seek events,
30548           since that is the only way we can guarantee a/v sync. Means that
30549           you can do gst_element_seek (pipeline, method, pos); on a pipeline
30550           and it "just works".
30551
30552 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
30553
30554         * gst/gstpipeline.c: (gst_pipeline_use_clock):
30555           Lock/unlock mismatch.
30556
30557 2005-03-25  Thomas Vander Stichele  <thomas at apestaart dot org>
30558
30559         * docs/faq/gst-uninstalled:
30560           add gst-plugins-base
30561         * docs/gst/Makefile.am:
30562           don't error out until docs are fixed
30563         * docs/gst/gstreamer.types:
30564           remove thread
30565
30566 2005-03-22  Wim Taymans  <wim@fluendo.com>
30567
30568         * check/Makefile.am:
30569         * check/gst/gstmessage.c: (START_TEST), (gst_data_suite), (main):
30570         * gst/gststructure.c: (gst_structure_set_valist),
30571         (gst_structure_copy_conditional):
30572         Activated more tests.
30573         Added message test.
30574         Added G_TYPE_POINTER to GstStructure.
30575         
30576
30577 2005-03-22  Wim Taymans  <wim@fluendo.com>
30578
30579         * docs/design/part-TODO.txt:
30580         * docs/design/part-events.txt:
30581         * docs/design/part-gstbin.txt:
30582         * docs/design/part-gstbus.txt:
30583         * docs/design/part-gstpipeline.txt:
30584         * docs/design/part-messages.txt:
30585         * gst/gstbus.c:
30586         * gst/gstmessage.c:
30587         Docs updates
30588
30589 2005-03-21  Wim Taymans  <wim@fluendo.com>
30590
30591         * gst/gstbus.c: (gst_bus_post):
30592         Fix copy-and-paste error.
30593
30594 2005-03-21  Wim Taymans  <wim@fluendo.com>
30595
30596         * check/Makefile.am:
30597         * gst/Makefile.am:
30598         * gst/elements/Makefile.am:
30599         * gst/elements/gstelements.c:
30600         * gst/elements/gstfakesink.c: (gst_fakesink_init),
30601         (gst_fakesink_event), (gst_fakesink_chain):
30602         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
30603         (gst_fakesrc_init), (gst_fakesrc_get_event_mask),
30604         (gst_fakesrc_event_handler), (gst_fakesrc_set_pad_functions),
30605         (gst_fakesrc_set_all_pad_functions), (gst_fakesrc_request_new_pad),
30606         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
30607         (gst_fakesrc_get_range_unlocked), (gst_fakesrc_get_range),
30608         (gst_fakesrc_loop), (gst_fakesrc_activate),
30609         (gst_fakesrc_change_state):
30610         * gst/elements/gstfakesrc.h:
30611         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
30612         (gst_filesrc_get_read), (gst_filesrc_getrange), (gst_filesrc_get),
30613         (gst_filesrc_open_file), (gst_filesrc_loop),
30614         (gst_filesrc_activate), (gst_filesrc_change_state),
30615         (filesrc_find_peek), (filesrc_find_suggest),
30616         (gst_filesrc_type_find):
30617         * gst/elements/gstidentity.c: (gst_identity_finalize),
30618         (gst_identity_class_init), (gst_identity_init),
30619         (gst_identity_proxy_getcaps), (identity_queue_push),
30620         (identity_queue_pop), (identity_queue_flush), (gst_identity_event),
30621         (gst_identity_getrange), (gst_identity_chain),
30622         (gst_identity_sink_loop), (gst_identity_src_loop),
30623         (gst_identity_handle_buffer), (gst_identity_set_dataflow_funcs),
30624         (gst_identity_set_property), (gst_identity_get_property),
30625         (gst_identity_change_state):
30626         * gst/elements/gstidentity.h:
30627         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
30628         (gst_tee_update_pad_functions), (gst_tee_request_new_pad),
30629         (gst_tee_set_property), (gst_tee_get_property), (gst_tee_do_push),
30630         (gst_tee_handle_buffer), (gst_tee_chain), (gst_tee_loop),
30631         (gst_tee_sink_activate):
30632         * gst/elements/gsttee.h:
30633         * gst/gst.c: (gst_register_core_elements), (init_post):
30634         * gst/gst.h:
30635         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_bus),
30636         (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_add),
30637         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_get_state),
30638         (gst_bin_change_state):
30639         * gst/gstbin.h:
30640         * gst/gstbus.c: (gst_bus_get_type), (gst_bus_class_init),
30641         (gst_bus_init), (gst_bus_dispose), (gst_bus_set_property),
30642         (gst_bus_get_property), (gst_bus_new), (gst_bus_post),
30643         (gst_bus_have_pending), (gst_bus_pop), (gst_bus_peek),
30644         (gst_bus_set_sync_handler), (gst_bus_create_watch),
30645         (bus_watch_callback), (bus_watch_destroy),
30646         (gst_bus_add_watch_full), (gst_bus_add_watch), (poll_handler),
30647         (poll_timeout), (gst_bus_poll):
30648         * gst/gstbus.h:
30649         * gst/gstcaps.h:
30650         * gst/gstdata.h:
30651         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
30652         (gst_element_post_message), (gst_element_message_full),
30653         (gst_element_get_state_func), (gst_element_get_state),
30654         (gst_element_abort_state), (gst_element_commit_state),
30655         (gst_element_lost_state), (gst_element_set_state),
30656         (gst_element_pads_activate), (gst_element_change_state),
30657         (gst_element_dispose), (gst_element_set_manager_func),
30658         (gst_element_set_bus_func), (gst_element_set_scheduler_func),
30659         (gst_element_set_manager), (gst_element_get_manager),
30660         (gst_element_set_bus), (gst_element_get_bus),
30661         (gst_element_set_scheduler), (gst_element_get_scheduler):
30662         * gst/gstelement.h:
30663         * gst/gstevent.c: (gst_event_new_segment_seek),
30664         (gst_event_new_flush):
30665         * gst/gstevent.h:
30666         * gst/gstmessage.c: (_gst_message_initialize), (_gst_message_copy),
30667         (_gst_message_free), (gst_message_get_type), (gst_message_new),
30668         (gst_message_new_eos), (gst_message_new_error),
30669         (gst_message_new_warning), (gst_message_new_tag),
30670         (gst_message_new_state_changed), (gst_message_new_application),
30671         (gst_message_get_structure), (gst_message_parse_tag),
30672         (gst_message_parse_state_changed), (gst_message_parse_error),
30673         (gst_message_parse_warning):
30674         * gst/gstmessage.h:
30675         * gst/gstpad.c: (gst_real_pad_class_init), (gst_real_pad_init),
30676         (gst_real_pad_set_property), (gst_pad_set_active),
30677         (gst_pad_is_active), (gst_pad_set_blocked_async),
30678         (gst_pad_set_blocked), (gst_pad_is_blocked),
30679         (gst_pad_set_activate_function), (gst_pad_set_loop_function),
30680         (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function),
30681         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
30682         (gst_pad_unlink), (gst_pad_link_prepare_filtered),
30683         (gst_pad_link_filtered), (gst_pad_relink_filtered),
30684         (gst_real_pad_get_caps_unlocked), (gst_pad_get_caps),
30685         (gst_pad_peer_get_caps), (gst_pad_fixate_caps),
30686         (gst_pad_accept_caps), (gst_pad_peer_accept_caps),
30687         (gst_pad_set_caps), (gst_pad_configure_sink),
30688         (gst_pad_configure_src), (gst_pad_get_negotiated_caps),
30689         (gst_pad_get_filter_caps), (gst_pad_alloc_buffer),
30690         (gst_real_pad_dispose), (gst_real_pad_finalize),
30691         (handle_pad_block), (gst_pad_push), (gst_pad_pull_range),
30692         (gst_pad_event_default_dispatch), (gst_pad_event_default),
30693         (gst_pad_push_event), (gst_pad_send_event), (gst_pad_get_formats):
30694         * gst/gstpad.h:
30695         * gst/gstpipeline.c: (gst_pipeline_init), (is_eos),
30696         (pipeline_bus_handler), (gst_pipeline_change_state),
30697         (gst_pipeline_get_scheduler), (gst_pipeline_get_bus):
30698         * gst/gstpipeline.h:
30699         * gst/gstprobe.h:
30700         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
30701         (gst_queue_finalize), (gst_queue_getcaps), (gst_queue_link_sink),
30702         (gst_queue_link_src), (gst_queue_bufferalloc),
30703         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
30704         (gst_queue_is_empty), (gst_queue_is_filled), (gst_queue_chain),
30705         (gst_queue_loop), (gst_queue_handle_src_event),
30706         (gst_queue_handle_src_query), (gst_queue_src_activate),
30707         (gst_queue_change_state):
30708         * gst/gstqueue.h:
30709         * gst/gstscheduler.c: (gst_scheduler_init),
30710         (gst_scheduler_dispose), (gst_scheduler_create_task),
30711         (gst_scheduler_factory_create):
30712         * gst/gstscheduler.h:
30713         * gst/gststructure.c: (gst_structure_get_type),
30714         (gst_structure_copy_conditional):
30715         * gst/gststructure.h:
30716         * gst/gsttaginterface.h:
30717         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
30718         (gst_task_init), (gst_task_dispose), (gst_task_create),
30719         (gst_task_get_state), (gst_task_start), (gst_task_stop),
30720         (gst_task_pause):
30721         * gst/gsttask.h:
30722         * gst/gstthread.c:
30723         * gst/gstthread.h:
30724         * gst/gsttypes.h:
30725         * gst/schedulers/Makefile.am:
30726         * gst/schedulers/cothreads_compat.h:
30727         * gst/schedulers/entryscheduler.c:
30728         * gst/schedulers/faircothreads.c:
30729         * gst/schedulers/faircothreads.h:
30730         * gst/schedulers/fairscheduler.c:
30731         * gst/schedulers/gstbasicscheduler.c:
30732         * gst/schedulers/gstoptimalscheduler.c:
30733         * gst/schedulers/gthread-cothreads.h:
30734         * gst/schedulers/threadscheduler.c:
30735         (gst_thread_scheduler_task_get_type),
30736         (gst_thread_scheduler_task_class_init),
30737         (gst_thread_scheduler_task_init),
30738         (gst_thread_scheduler_task_start),
30739         (gst_thread_scheduler_task_stop),
30740         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_get_type),
30741         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
30742         (gst_thread_scheduler_init), (gst_thread_scheduler_create_task),
30743         (gst_thread_scheduler_setup), (gst_thread_scheduler_reset),
30744         (plugin_init):
30745         * libs/gst/Makefile.am:
30746         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf):
30747         * libs/gst/bytestream/filepad.c: (gst_file_pad_init),
30748         (gst_file_pad_parent_set):
30749         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
30750         (gst_dp_event_from_packet):
30751         * tests/complexity.c: (main):
30752         * tests/mass_elements.c: (main):
30753         * testsuite/states/locked.c: (message_received), (main):
30754         * testsuite/states/parent.c: (main):
30755         * tools/gst-inspect.c: (print_element_flag_info),
30756         (print_implementation_info), (print_pad_info):
30757         * tools/gst-launch.c: (check_intr), (play_handler), (event_loop),
30758         (main):
30759         * tools/gst-md5sum.c: (event_loop), (main):
30760         * tools/gst-typefind.c: (main):
30761         * tools/gst-xmlinspect.c: (print_element_info):
30762         Next big merge.
30763         Added GstBus for mainloop integration.
30764         Added GstMessage for sending notifications on the bus.
30765         Added GstTask as an abstraction for pipeline entry points.
30766         Removed GstThread.
30767         Removed Schedulers.
30768         Simplified GstQueue for multithreaded core.
30769         Made _link threadsafe, removed old capsnego.
30770         Added STREAM_LOCK and PREROLL_LOCK in GstPad.
30771         Added pad blocking functions.
30772         Reworked scheduling functions in GstPad to prepare for
30773         scheduling updates soon.
30774         Moved events out of data stream.
30775         Simplified GstEvent types.
30776         Added return values to push/pull.
30777         Removed clocking from GstElement.
30778         Added prototypes for state change function for next merge.
30779         Removed iterate from bins and state change management.
30780         Fixed some elements, disabled others for now.
30781         Fixed -inspect and -launch.
30782         Added check for GstBus.
30783
30784 2005-03-10  Wim Taymans  <wim@fluendo.com>
30785
30786         * docs/design/part-MT-refcounting.txt:
30787         * docs/design/part-clocks.txt:
30788         * docs/design/part-gstelement.txt:
30789         * docs/design/part-gstobject.txt:
30790         * docs/design/part-standards.txt:
30791         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
30792         (gst_bin_remove_func), (gst_bin_remove):
30793         * gst/gstbin.h:
30794         * gst/gstbuffer.c:
30795         * gst/gstcaps.h:
30796         * testsuite/clock/clock1.c: (main):
30797         * testsuite/clock/clock2.c: (gst_clock_debug), (element_wait),
30798         (main):
30799         * testsuite/dlopen/loadgst.c: (do_test):
30800         * testsuite/refcounting/bin.c: (add_remove_test1),
30801         (add_remove_test2), (main):
30802         * testsuite/refcounting/element.c: (main):
30803         * testsuite/refcounting/element_pad.c: (main):
30804         * testsuite/refcounting/pad.c: (main):
30805         * tools/gst-launch.c: (sigint_handler_sighandler):
30806         * tools/gst-typefind.c: (main):
30807         Doc updates.
30808         Added doc about clock.
30809         removed gst_bin_iterate_recurse_up(), marked methods
30810         for removal.
30811         Fix more testsuites.
30812
30813 2005-03-09  Wim Taymans  <wim@fluendo.com>
30814
30815         * gst/gstpad.c: (gst_pad_get_direction),
30816         (_gst_pad_default_fixate_foreach), (gst_pad_collectv),
30817         (gst_pad_collect_valist):
30818         * testsuite/bins/interface.c: (main):
30819         * testsuite/caps/audioscale.c: (test_caps):
30820         * testsuite/caps/caps.c: (test1), (test2), (test3):
30821         * testsuite/caps/deserialize.c: (main):
30822         * testsuite/caps/enumcaps.c: (main):
30823         * testsuite/caps/filtercaps.c: (main):
30824         * testsuite/caps/intersect2.c: (main):
30825         * testsuite/caps/random.c: (main):
30826         * testsuite/caps/renegotiate.c: (my_fixate), (main):
30827         * testsuite/caps/sets.c: (check_caps):
30828         * testsuite/caps/simplify.c: (check_caps), (main):
30829         * testsuite/caps/subtract.c: (check_caps):
30830         Fix _pad_get_direction wrt ghostpads.
30831         Fix caps testsuite.
30832
30833 2005-03-09  Wim Taymans  <wim@fluendo.com>
30834
30835         * check/Makefile.am:
30836         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite), (main):
30837         * check/gst/gstsystemclock.c: (START_TEST), (gst_clock_debug),
30838         (ok_callback), (error_callback), (gst_systemclock_suite), (main):
30839         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func),
30840         (gst_bin_set_clock_func), (gst_bin_get_clock_func),
30841         (gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
30842         (gst_bin_remove), (gst_bin_iterate_recurse_up),
30843         (bin_element_is_sink), (gst_bin_iterate_sinks),
30844         (gst_bin_iterate_all_by_interface):
30845         * gst/gstbin.h:
30846         * gst/gstelement.c: (gst_element_init), (gst_element_error_full),
30847         (gst_element_change_state), (gst_element_dispose),
30848         (gst_element_finalize), (gst_element_set_loop_function):
30849         * gst/gstelement.h:
30850         * gst/gstiterator.c: (find_custom_fold_func):
30851         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
30852         (gst_pad_collectv), (gst_pad_collect_valist),
30853         (gst_pad_template_new):
30854         * gst/gstpipeline.c: (gst_pipeline_class_init),
30855         (gst_pipeline_dispose), (gst_pipeline_set_property),
30856         (gst_pipeline_get_property), (gst_pipeline_get_clock_func),
30857         (gst_pipeline_get_clock), (gst_pipeline_use_clock),
30858         (gst_pipeline_set_clock), (gst_pipeline_auto_clock):
30859         * gst/gstutils.h:
30860         * gst/schedulers/entryscheduler.c:
30861         * gst/schedulers/gstbasicscheduler.c:
30862         (gst_basic_scheduler_cothreaded_chain),
30863         (gst_basic_scheduler_chain_add_element):
30864         * testsuite/bins/interface.c: (main):
30865         Added GstBin test.
30866         Added GstSystemClock test.
30867         Implemented clock distribution code in GstBin.
30868         Implemented iterate sinks method for future use.
30869         Rearranged gstelement.h
30870         Fix GstIterator comparison bug.
30871         Moved some code to GstPipeline, mostly clocking related.
30872
30873 2005-03-09  Wim Taymans  <wim@fluendo.com>
30874
30875         * configure.ac:
30876         * gst/gst_private.h:
30877         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
30878         (gst_bin_remove_func), (gst_bin_remove),
30879         (gst_bin_get_by_name_recurse_up):
30880         * gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
30881         (gst_clock_id_compare_func), (gst_clock_id_wait),
30882         (gst_clock_id_wait_async), (gst_clock_init),
30883         (gst_clock_adjust_unlocked), (gst_clock_get_time):
30884         * gst/gstelement.h:
30885         * gst/gstinfo.c: (_gst_debug_init):
30886         * gst/gstobject.h:
30887         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
30888         (gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
30889         * gst/gstpad.h:
30890         Bump version number, we're now 0.9.0
30891         Add future debugging category.
30892         Fix NULL _unref() in _get_by_name_recurse_up
30893         Rearrange gstpad.h.
30894         Update some docs.
30895
30896 2005-03-08  Wim Taymans  <wim@fluendo.com>
30897
30898         * gst/elements/gstaggregator.c: (gst_aggregator_class_init):
30899         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
30900         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
30901         * gst/elements/gstfdsink.c: (gst_fdsink_class_init):
30902         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init):
30903         * gst/elements/gstfilesink.c: (gst_filesink_class_init):
30904         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init):
30905         * gst/elements/gstidentity.c: (gst_identity_class_init):
30906         * gst/elements/gstmd5sink.c: (gst_md5sink_class_init):
30907         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
30908         * gst/elements/gstshaper.c: (gst_shaper_class_init):
30909         * gst/elements/gststatistics.c: (gst_statistics_class_init):
30910         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_getcaps),
30911         (gst_tee_link):
30912         * gst/gstelement.c: (gst_element_class_init),
30913         (gst_element_base_class_init), (gst_element_init),
30914         (gst_element_get_random_pad), (gst_element_wait_state_change),
30915         (gst_element_change_state), (gst_element_dispose),
30916         (gst_element_finalize), (gst_element_set_loop_function):
30917         * gst/gstelement.h:
30918         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_link_src):
30919         * gst/gstthread.c: (gst_thread_class_init),
30920         (gst_thread_release_children_locks), (gst_thread_change_state):
30921         * gst/schedulers/gstbasicscheduler.c:
30922         (gst_basic_scheduler_loopfunc_wrapper),
30923         (gst_basic_scheduler_chain_wrapper),
30924         (gst_basic_scheduler_src_wrapper),
30925         (gst_basic_scheduler_remove_element):
30926         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
30927         Remove threadsafe properties. Fix elements because GObject
30928         complains when installing a property before declaring a
30929         set/get_property handler.
30930         Rearrange gstelement.h file, use STATE macros for state locks.
30931         Free mutexes in the finalize method instead of dispose.
30932
30933 2005-03-08  Wim Taymans  <wim@fluendo.com>
30934
30935         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
30936         * gst/gstthread.c: (gst_thread_release_children_locks):
30937         Added parentage check.
30938         Fix build og GstThread again.
30939
30940 2005-03-08  Wim Taymans  <wim@fluendo.com>
30941
30942         * docs/design/part-MT-refcounting.txt:
30943         * docs/design/part-conventions.txt:
30944         * docs/design/part-gstobject.txt:
30945         * docs/design/part-relations.txt:
30946         * docs/design/part-standards.txt:
30947         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
30948         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
30949         (gst_bin_get_by_name), (gst_bin_get_by_interface),
30950         (gst_bin_iterate_all_by_interface):
30951         * gst/gstbuffer.h:
30952         * gst/gstclock.h:
30953         * gst/gstelement.c: (gst_element_class_init),
30954         (gst_element_change_state), (gst_element_set_loop_function):
30955         * gst/gstelement.h:
30956         * gst/gstiterator.c:
30957         * gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
30958         (gst_object_unref), (gst_object_sink), (gst_object_dispose),
30959         (gst_object_dispatch_properties_changed), (gst_object_set_name),
30960         (gst_object_set_parent), (gst_object_unparent),
30961         (gst_object_check_uniqueness):
30962         * gst/gstobject.h:
30963         Docs updates, clean up some headers.
30964
30965 2005-03-07  Wim Taymans  <wim@fluendo.com>
30966
30967         * check/.cvsignore:
30968         * check/Makefile.am:
30969         * check/gst-libs/.cvsignore:
30970         * check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
30971         * check/gst/.cvsignore:
30972         * check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
30973         (START_TEST), (gstbus_suite), (main):
30974         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
30975         * check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
30976         (gst_data_suite), (main):
30977         * check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
30978         (add_fold_func), (gstiterator_suite), (main):
30979         * check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
30980         (thread_name_object), (thread_name_object_default),
30981         (gst_object_name_compare), (gst_object_suite), (main):
30982         * check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
30983         (gst_pad_suite), (main):
30984         * check/gstcheck.c: (gst_check_log_message_func),
30985         (gst_check_log_critical_func), (gst_check_init):
30986         * check/gstcheck.h:
30987         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
30988         (run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
30989         Added checks.
30990
30991 2005-03-07  Wim Taymans  <wim@fluendo.com>
30992
30993         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
30994         (gst_list_iterator_next), (gst_list_iterator_resync),
30995         (gst_list_iterator_free), (gst_iterator_new_list),
30996         (gst_iterator_pop), (gst_iterator_next), (gst_iterator_resync),
30997         (gst_iterator_free), (gst_iterator_push), (filter_next),
30998         (filter_resync), (filter_uninit), (filter_free),
30999         (gst_iterator_filter), (gst_iterator_fold), (foreach_fold_func),
31000         (gst_iterator_foreach), (find_custom_fold_func),
31001         (gst_iterator_find_custom):
31002         * gst/gstiterator.h:
31003         Added missing files.
31004
31005 2005-03-07  Wim Taymans  <wim@fluendo.com>
31006
31007         * Makefile.am:
31008         * configure.ac:
31009         * docs/design/part-MT-refcounting.txt:
31010         * docs/design/part-conventions.txt:
31011         * docs/design/part-gstobject.txt:
31012         * docs/design/part-relations.txt:
31013         * examples/mixer/mixer.c: (main):
31014         * examples/thread/thread.c: (eos), (main):
31015         * gst/Makefile.am:
31016         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
31017         * gst/autoplug/gstspider.c: (gst_spider_identity_plug),
31018         (gst_spider_plug_from_srcpad):
31019         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps),
31020         (gst_spider_identity_change_state),
31021         (gst_spider_identity_sink_loop_type_finding):
31022         * gst/elements/gstfakesrc.c: (gst_fakesrc_loop):
31023         * gst/elements/gstidentity.c: (gst_identity_init):
31024         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_getcaps),
31025         (gst_tee_link), (gst_tee_request_new_pad), (gst_tee_chain):
31026         * gst/elements/gsttypefindelement.c: (free_entry):
31027         * gst/gst.c:
31028         * gst/gst.h:
31029         * gst/gstbin.c: (gst_bin_init), (gst_bin_get_clock_func),
31030         (gst_bin_set_clock_func), (gst_bin_auto_clock),
31031         (gst_bin_set_index), (gst_bin_set_element_sched),
31032         (gst_bin_unset_element_sched), (gst_bin_add_func), (gst_bin_add),
31033         (gst_bin_remove_func), (gst_bin_remove), (iterate_child),
31034         (gst_bin_iterate_elements), (iterate_child_recurse),
31035         (gst_bin_iterate_recurse), (gst_bin_dispose), (compare_name),
31036         (gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
31037         (compare_interface), (gst_bin_get_by_interface),
31038         (gst_bin_iterate_all_by_interface), (gst_bin_iterate_func):
31039         * gst/gstbin.h:
31040         * gst/gstbuffer.c: (gst_buffer_get_type), (_gst_buffer_sub_free),
31041         (gst_buffer_default_free), (gst_buffer_default_copy),
31042         (gst_buffer_new), (gst_buffer_get_caps), (gst_buffer_set_caps),
31043         (gst_buffer_create_sub):
31044         * gst/gstbuffer.h:
31045         * gst/gstcaps.c: (gst_caps_get_type), (gst_caps_new_empty),
31046         (_gst_caps_free), (gst_caps_make_writable), (gst_caps_ref),
31047         (gst_caps_unref), (gst_static_caps_get),
31048         (gst_caps_remove_and_get_structure), (gst_caps_append),
31049         (gst_caps_append_structure), (gst_caps_remove_structure),
31050         (gst_caps_copy_nth), (gst_caps_set_simple),
31051         (gst_caps_set_simple_valist), (gst_caps_is_fixed_foreach),
31052         (gst_structure_is_equal_foreach), (gst_caps_is_subset),
31053         (gst_caps_structure_intersect_field), (gst_caps_intersect),
31054         (gst_caps_structure_subtract_field), (gst_caps_subtract),
31055         (gst_caps_normalize_foreach), (gst_caps_compare_structures),
31056         (gst_caps_structure_figure_out_union),
31057         (gst_caps_switch_structures), (gst_caps_do_simplify),
31058         (gst_caps_replace), (gst_caps_from_string),
31059         (gst_caps_copy_conditional):
31060         * gst/gstcaps.h:
31061         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_ref),
31062         (_gst_clock_id_free), (gst_clock_id_unref),
31063         (gst_clock_id_compare_func), (gst_clock_id_wait),
31064         (gst_clock_id_wait_async), (gst_clock_class_init),
31065         (gst_clock_init), (gst_clock_dispose), (gst_clock_adjust_unlocked),
31066         (gst_clock_get_time), (gst_clock_set_time_adjust),
31067         (gst_clock_set_property), (gst_clock_get_property):
31068         * gst/gstclock.h:
31069         * gst/gstcompat.h:
31070         * gst/gstcpu.c: (_gst_cpu_initialize_i386), (gst_cpu_get_flags):
31071         * gst/gstdata.c: (gst_data_is_writable), (gst_data_copy_on_write):
31072         * gst/gstdata.h:
31073         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
31074         (gst_element_requires_clock), (gst_element_provides_clock),
31075         (gst_element_set_clock), (gst_element_clock_wait),
31076         (gst_element_wait), (gst_element_set_time_delay),
31077         (gst_element_is_indexable), (gst_element_add_pad),
31078         (gst_element_add_ghost_pad), (gst_element_remove_pad),
31079         (pad_compare_name), (gst_element_get_static_pad),
31080         (gst_element_request_pad), (gst_element_get_request_pad),
31081         (gst_element_get_pad), (iterate_pad), (gst_element_iterate_pads),
31082         (gst_element_class_get_pad_template_list),
31083         (gst_element_class_get_pad_template), (gst_element_error_func),
31084         (gst_element_get_random_pad), (gst_element_get_event_masks),
31085         (gst_element_send_event), (gst_element_seek),
31086         (gst_element_get_query_types), (gst_element_query),
31087         (gst_element_get_formats), (gst_element_convert),
31088         (gst_element_is_locked_state), (gst_element_set_locked_state),
31089         (gst_element_sync_state_with_parent), (gst_element_change_state),
31090         (gst_element_finalize), (gst_element_yield),
31091         (gst_element_interrupt), (gst_element_set_scheduler),
31092         (gst_element_get_scheduler), (gst_element_set_loop_function):
31093         * gst/gstelement.h:
31094         * gst/gstevent.h:
31095         * gst/gstformat.c: (_gst_format_initialize), (gst_format_register),
31096         (gst_format_get_by_nick), (gst_format_get_details),
31097         (gst_format_iterate_definitions):
31098         * gst/gstformat.h:
31099         * gst/gstindex.c: (gst_index_gtype_resolver):
31100         * gst/gstinfo.c:
31101         * gst/gstinfo.h:
31102         * gst/gstmemchunk.c: (gst_mem_chunk_alloc), (gst_mem_chunk_alloc0),
31103         (gst_mem_chunk_free):
31104         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
31105         (gst_object_ref), (gst_object_unref), (gst_object_sink),
31106         (gst_object_replace), (gst_object_dispose), (gst_object_finalize),
31107         (gst_object_dispatch_properties_changed),
31108         (gst_object_set_name_default), (gst_object_set_name),
31109         (gst_object_get_name), (gst_object_set_name_prefix),
31110         (gst_object_get_name_prefix), (gst_object_set_parent),
31111         (gst_object_get_parent), (gst_object_unparent),
31112         (gst_object_check_uniqueness), (gst_object_save_thyself),
31113         (gst_object_restore_thyself), (gst_object_real_restore_thyself),
31114         (gst_object_set_property), (gst_object_get_property),
31115         (gst_object_get_path_string):
31116         * gst/gstobject.h:
31117         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
31118         (gst_real_pad_init), (gst_real_pad_get_property),
31119         (gst_pad_custom_new), (gst_pad_get_direction),
31120         (gst_pad_set_active), (gst_pad_is_active),
31121         (gst_pad_set_event_function), (gst_pad_is_linked),
31122         (gst_pad_link_free), (gst_pad_link_intersect),
31123         (gst_pad_link_fixate), (gst_pad_set_caps),
31124         (gst_pad_try_set_caps_nonfixed), (gst_pad_set_pad_template),
31125         (gst_pad_get_real_parent), (gst_pad_add_ghost_pad),
31126         (gst_pad_remove_ghost_pad), (_gst_pad_default_fixate_foreach),
31127         (gst_pad_link_unnegotiate), (gst_pad_proxy_fixate),
31128         (gst_pad_get_caps), (gst_pad_peer_get_caps),
31129         (gst_pad_get_pad_template_caps), (gst_pad_get_peer),
31130         (gst_pad_realize), (gst_pad_get_allowed_caps),
31131         (gst_real_pad_dispose), (gst_real_pad_finalize),
31132         (gst_pad_collectv), (gst_pad_collect_valist),
31133         (gst_pad_template_dispose), (gst_pad_template_new),
31134         (gst_pad_get_internal_links):
31135         * gst/gstpad.h:
31136         * gst/gstpipeline.c: (gst_pipeline_dispose),
31137         (gst_pipeline_change_state):
31138         * gst/gstpipeline.h:
31139         * gst/gstplugin.c:
31140         * gst/gstpluginfeature.c: (gst_plugin_feature_get_name),
31141         (gst_plugin_feature_set_rank), (gst_plugin_feature_get_rank):
31142         * gst/gstpluginfeature.h:
31143         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
31144         * gst/gstquery.c: (_gst_query_type_initialize),
31145         (gst_query_type_register), (gst_query_type_get_by_nick),
31146         (gst_query_type_get_details), (gst_query_type_iterate_definitions):
31147         * gst/gstquery.h:
31148         * gst/gstqueue.c: (gst_queue_link_sink), (gst_queue_link_src):
31149         * gst/gstscheduler.c: (gst_scheduler_add_element),
31150         (gst_scheduler_factory_create):
31151         * gst/gststructure.c: (gst_structure_set_parent_refcount),
31152         (gst_structure_free), (gst_structure_set_name),
31153         (gst_structure_id_set_value), (gst_structure_set_value),
31154         (gst_structure_set_valist), (gst_structure_remove_field),
31155         (gst_structure_remove_fields),
31156         (gst_structure_remove_fields_valist),
31157         (gst_structure_remove_all_fields), (gst_structure_foreach),
31158         (gst_structure_map_in_place),
31159         (gst_caps_structure_fixate_field_nearest_int),
31160         (gst_caps_structure_fixate_field_nearest_double):
31161         * gst/gststructure.h:
31162         * gst/gstsystemclock.c: (gst_system_clock_class_init),
31163         (gst_system_clock_init), (gst_system_clock_dispose),
31164         (gst_system_clock_async_thread),
31165         (gst_system_clock_id_wait_unlocked), (gst_system_clock_id_wait),
31166         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
31167         * gst/gstsystemclock.h:
31168         * gst/gsttag.c: (gst_tag_list_add_value_internal),
31169         (gst_tag_list_copy_foreach), (structure_foreach_wrapper):
31170         * gst/gsttaginterface.c:
31171         * gst/gstthread.c: (gst_thread_dispose),
31172         (gst_thread_release_children_locks), (gst_thread_change_state),
31173         (gst_thread_main_loop):
31174         * gst/gsttrashstack.h:
31175         * gst/gsttypefind.c: (gst_type_find_factory_dispose):
31176         * gst/gsttypes.h:
31177         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
31178         (gst_element_request_pad), (gst_element_get_pad_from_template),
31179         (gst_element_request_compatible_pad),
31180         (gst_element_get_compatible_pad_filtered),
31181         (gst_element_get_compatible_pad), (gst_element_state_get_name),
31182         (gst_element_link_pads_filtered), (gst_element_link_filtered),
31183         (gst_element_link_many), (gst_element_link),
31184         (gst_element_link_pads), (gst_element_unlink_pads),
31185         (gst_element_unlink_many), (gst_element_unlink),
31186         (gst_pad_can_link_filtered), (gst_pad_can_link),
31187         (gst_pad_use_fixed_caps), (gst_pad_get_fixed_caps_func),
31188         (gst_object_default_error), (gst_bin_add_many),
31189         (gst_bin_remove_many), (gst_element_populate_std_props),
31190         (gst_element_class_install_std_props), (gst_buffer_merge),
31191         (gst_buffer_stamp), (intersect_caps_func), (gst_pad_proxy_getcaps),
31192         (link_fold_func), (gst_pad_proxy_setcaps):
31193         * gst/gstutils.h:
31194         * gst/gstvalue.c: (gst_value_deserialize_string):
31195         * gst/parse/grammar.y:
31196         * gst/schedulers/gstbasicscheduler.c:
31197         (gst_basic_scheduler_cothreaded_chain),
31198         (gst_basic_scheduler_chain_recursive_add),
31199         (gst_basic_scheduler_pad_link):
31200         * gst/schedulers/gstoptimalscheduler.c:
31201         (get_group_schedule_function),
31202         (gst_opt_scheduler_state_transition),
31203         (gst_opt_scheduler_add_element), (element_get_reachables_func):
31204         * libs/gst/bytestream/bytestream.c:
31205         * libs/gst/dataprotocol/dataprotocol.c:
31206         (gst_dp_header_from_buffer):
31207         * po/nb.po:
31208         * po/ru.po:
31209         * tests/threadstate/threadstate2.c: (eos):
31210         * tools/gst-compprep.c: (main):
31211         * tools/gst-inspect.c: (print_field), (print_element_flag_info),
31212         (print_pad_info), (print_children_info):
31213         * tools/gst-launch.c: (idle_func), (main):
31214         * tools/gst-md5sum.c: (idle_func), (main):
31215         * tools/gst-xmlinspect.c: (print_element_info):
31216         First THREADED backport attempt, focusing on adding locks and
31217         making sure the API is threadsafe. Needs more work. More docs
31218         follow this week.
31219
31220 2005-02-24  Andy Wingo  <wingo@pobox.com>
31221
31222         * tests/bench-complexity.scm:
31223         * tests/complexity.gnuplot: New files, good for running complexity
31224         benchmarks.
31225
31226         * tests/Makefile.am:
31227         * tests/complexity.c: New test, sets up N elements, at each level
31228         teeing into M streams per element. Eeeenteresting.
31229
31230         * tests/mass_elements.gnuplot: gnuplot file for the mass_elements
31231         benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after
31232         running bench-mass_elements.scm.
31233
31234         * tests/bench-mass_elements.scm: New script, runs mass_elements
31235         for various numbers of identities, outputting the results to a
31236         file. Requires guile 1.6. Just for testing.
31237
31238 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
31239
31240         * gst/schedulers/fairscheduler.c:
31241           compile with debug disabled
31242
31243 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
31244
31245         * configure.ac:
31246           hunting season on 0.9 is now OPEN