gst/gstpad.c: Small doc updates.
[platform/upstream/gstreamer.git] / ChangeLog
1 2005-06-20  Wim Taymans  <wim@fluendo.com>
2
3         * gst/gstpad.c:
4         Small doc updates.
5         
6         * gst/gstvalue.c: (gst_value_compare_buffer),
7         (gst_value_serialize_buffer), (gst_value_deserialize_buffer),
8         (gst_value_compare_flags), (gst_value_serialize_flags),
9         (gst_value_deserialize_flags), (_gst_value_initialize):
10         Fix serialisation of buffers, they are not boxed types anymore
11
12 2005-06-20  Wim Taymans  <wim@fluendo.com>
13
14         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
15         Testcase to show error in buffer-on-caps serialisation.
16
17 2005-06-20  Andy Wingo  <wingo@pobox.com>
18
19         * docs/random/wingo/porting-plugins-to-0.9: A pitiful document I
20         will be adding to later.
21
22         * gst/gstsystemclock.c (gst_system_clock_init): Unlock the clock
23         if its socks fill with rocks.
24         (gst_system_clock_obtain): Set the name on object construction.
25         Avoid double-checked locking.
26
27 2005-06-20  Tim-Philipp Müller  <tim at centricular dot net>
28
29         * gst/gsturi.c: (gst_element_make_from_uri):
30           Fix potential endless loop.
31
32 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
33
34         * check/Makefile.am:
35           add gsttag
36         * check/gst/gsttag.c: (check_tags), (START_TEST), (gst_tag_suite),
37         (main):
38           move over from testsuite dir and clean up
39         * configure.ac:
40         * gst/gsttag.c:
41         * testsuite/Makefile.am:
42         * testsuite/tags/.cvsignore:
43         * testsuite/tags/Makefile.am:
44         * testsuite/tags/merge.c:
45           remove testsuite/tags
46
47 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
48
49         * docs/gst/gstreamer-sections.txt:
50         * docs/gst/tmpl/gstenumtypes.sgml:
51         * win32/gstenumtypes.c:
52           clean up documentation build a little
53
54 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
55
56         * check/gstcheck.h:
57           add macros for checking refcounts on objects and caps
58         * check/gst/gstpad.c: (START_TEST), (gst_pad_suite):
59           add some more unit tests
60         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
61         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_allowed_caps):
62           fix leaked refcounts (I hope :)) so unittest works
63         * gst/gstpad.h:
64           whitespace removal
65
66 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
67
68         * configure.ac: back to HEAD
69
70 === release 0.9.1 ===
71
72 2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
73
74         * NEWS:
75         * RELEASE:
76           updated
77
78 2005-06-17  Andy Wingo  <wingo@pobox.com>
79
80         * gst/base/gstbasesink.c (gst_basesink_chain): Remove bogus
81         assert; it's always possible that the pad gets deactivated in
82         between the checks in gstpad.c and the implementation. Rely on
83         finish_preroll() to return a FLUSHING or similar instead of on the
84         assert.
85         
86         * gst/base/gstbasesink.c (gst_basesink_event): Only wait for the
87         clock and post an EOS message if we come out of finish_preroll in
88         the playing state.
89
90 2005-06-16  David Schleef  <ds@schleef.org>
91
92         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
93         (gst_capsfilter_set_property): Allow NULL as possible value
94         for filter_caps property, indicating GST_CAPS_ANY.
95
96 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
97
98         * gst/elements/gstfakesrc.c: (gst_fakesrc_create):
99           fix debug output
100         * gst/schedulers/Makefile.am:
101           use libgst prefix
102         * gstreamer.spec.in:
103           fix spec for it
104
105 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
106
107         * gstreamer.spec.in:
108           clean up
109
110 2005-06-08  Andy Wingo  <wingo@pobox.com>
111
112         * gst/gstutils.c: RPAD fixes all around.
113         (gst_element_link_pads): Refcounting fixes.
114
115         * tools/gst-inspect.c:
116         * tools/gst-xmlinspect.c:
117         * parse/grammar.y:
118         * gst/base/gsttypefindhelper.c:
119         * gst/base/gstbasesink.c:
120         * gst/gstqueue.c: RPAD fixes.
121
122         * gst/gstghostpad.h:
123         * gst/gstghostpad.c: New ghost pad implementation as full proxy
124         pads. The tricky thing is they provide both source and sink
125         interfaces, since they proxy the internal pad for the external
126         pad, and vice versa. Implement with lower-level ProxyPad objects,
127         with the interior proxy pad as a child of the exterior ghost pad.
128         Should write a doc on this.
129         
130         * gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
131         (gst_pad_set_name, gst_pad_set_parent): Macros removed, use
132         gst_object API.
133         
134         * gst/gstpad.c: Big changes. No more stub base GstPad, now all
135         pads are real pads. No ghost pads in this file. Not documenting
136         the myriad s/RPAD/PAD/ and REALIZE fixes.
137         (gst_pad_class_init): Add properties for "direction" and
138         "template". Both are construct-only, so they can't change during
139         the life of the pad. Fixes properly deriving from GstPad.
140         (gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
141         derived objects, just set properties when creating the objects via
142         g_object_new.
143         (gst_pad_get_parent): Implement as a function, return NULL if the
144         parent is not an element.
145         (gst_pad_get_real_parent, gst_pad_add_ghost_pad)
146         (gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
147         
148         * gst/gstobject.c (gst_object_class_init): Make name a construct
149         property. Don't set it in the object init.
150
151         * gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
152         with UNKNOWN direction.
153         (gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
154         with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
155         (gst_element_remove_pad): Remove ghost-pad special cases.
156         (gst_element_pads_activate): Remove rpad cruft.
157
158         * gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
159         catch the pad's-parent-not-an-element case.
160
161         * gst/gst.h: Include gstghostpad.h.
162
163         * gst/gst.c (init_post): No more real, ghost pads.
164
165         * gst/Makefile.am: Add gstghostpad.[ch].
166
167         * check/Makefile.am:
168         * check/gst/gstbin.c:
169         * check/gst/gstghostpad.c (test_ghost_pads): Check that linking
170         into a bin creates ghost pads, and that the refcounts are right.
171         Partly moved from gstbin.c.
172
173 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
174
175         * check/gst-libs/.cvsignore:
176         * check/gst/.cvsignore:
177         * check/pipelines/.cvsignore:
178           ignore more
179         * check/pipelines/cleanup.c: (setup_pipeline), (run_pipeline),
180         (START_TEST), (cleanup_suite), (main):
181           add some tests related to cleanup after running pipelines
182
183 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
184
185         * check/gst/gstbuffer.c: (START_TEST), (gst_test_suite), (main):
186           add a testsuite for GstBuffer
187
188 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
189
190         * gst/gstminiobject.h:
191           add defines for accessing the refcount
192
193 2005-06-03  Stefan Kost  <ensonic@users.sf.net>
194
195         * Makefile.am: added support for html unit test coverage reports
196
197 2005-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
198
199         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
200           Free existing caps if the capsfilter changes. Add a FIXME about
201           setting those caps on the pads.
202
203         * gst/gstutils.c: (gst_element_get_compatible_pad), (ghost_up):
204           Before adding a ghost pad to a parent bin, check that there isn't
205           already one for the element on the bin. Prevents infinite recursion
206           when using decodebin in parse pipelines. Andy says he'll rewrite the
207           way this works anyway, so ignore the hack.
208
209 2005-06-02  Andy Wingo  <wingo@pobox.com>
210
211         * gst/elements/gsttypefindelement.c (do_pull_typefind): Query the
212         file size, pass it on to the type find helper.
213
214         * gst/base/gstbasesrc.c (gst_basesrc_do_seek): Set the
215         segment_start and segment_end properly according to the seek
216         method. Segment_end is still a bit flaky because offset can be
217         negative for CUR and END cases, but it takes -1 as an "unset"
218         value.
219
220 2005-06-02  Wim Taymans  <wim@fluendo.com>
221
222         * gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
223         (gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
224         (gst_basesink_activate):
225         * gst/base/gstbasesink.h:
226         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
227         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
228         (gst_pad_query), (gst_pad_start_task):
229         * gst/gstpad.h:
230         * gst/gstqueue.c: (gst_queue_bufferalloc),
231         (gst_queue_handle_sink_event), (gst_queue_chain):
232         Bufferalloc: return GstFlowReturn to more accuratly report
233         why allocation failed.
234
235 2005-06-02  Wim Taymans  <wim@fluendo.com>
236
237         * gst/gstpipeline.c: (gst_pipeline_send_event):
238         Take snapshot of state without blocking.
239
240 2005-06-02  Wim Taymans  <wim@fluendo.com>
241
242         * docs/design/part-TODO.txt:
243         * docs/design/part-caps.txt:
244         * docs/design/part-clocks.txt:
245         * docs/design/part-negotiation.txt:
246         * docs/design/part-preroll.txt:
247         Small doc updates 
248
249 2005-05-30  Wim Taymans  <wim@fluendo.com>
250
251         * gst/elements/gstidentity.c: (gst_identity_event),
252         (gst_identity_transform), (gst_identity_get_property):
253         Protect last_message property as it is accessed from
254         multiple threads.
255
256 2005-05-30  Wim Taymans  <wim@fluendo.com>
257
258         * gst/gstelement.c: (gst_element_init),
259         (gst_element_pads_activate), (gst_element_change_state):
260         Slicker pad activation code.
261
262 2005-05-30  Wim Taymans  <wim@fluendo.com>
263
264         * gst/Makefile.am:
265         * gst/gstelement.h:
266         * gst/gstelementfactory.h:
267         * gst/gsttypes.h:
268         Move elementfactory methods to separate .h file.
269
270 2005-05-30  Wim Taymans  <wim@fluendo.com>
271
272         * docs/design/part-overview.txt:
273         * gst/gstsystemclock.h:
274         Small typo fixes, doc updates.
275
276 2005-05-30  Wim Taymans  <wim@fluendo.com>
277
278         * gst/gst.c: (gst_init_get_popt_table), (init_post),
279         (init_popt_callback):
280         Remove cpu-opt flag.
281
282 2005-05-30  Wim Taymans  <wim@fluendo.com>
283
284         * gst/gstbuffer.c: (gst_subbuffer_finalize),
285         (gst_buffer_create_sub), (gst_buffer_is_span_fast):
286         * gst/gstbuffer.h:
287         Avoid typechecking in places where not needed.
288         Added accessor for malloc_data.
289
290 2005-05-30  Wim Taymans  <wim@fluendo.com>
291
292         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_set_active),
293         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_accept_caps),
294         (gst_pad_configure_sink), (gst_pad_configure_src),
295         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_send_event),
296         (gst_pad_start_task):
297         Propagate errors from _set_caps() in configure_src/sink
298         functions instead of returning TRUE.
299         FLUSH events can travel up and downstream
300
301
302 2005-05-30  Wim Taymans  <wim@fluendo.com>
303
304         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
305         (gst_basesink_activate):
306         Handle EOS in preroll.
307
308 2005-05-30  Wim Taymans  <wim@fluendo.com>
309
310         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
311         (gst_queue_loop), (gst_queue_handle_src_event):
312         Remove old pieces of code
313         Flushing the queue in an upstream event is a very bad idea.
314
315 2005-05-26  Andy Wingo  <wingo@pobox.com>
316
317         * gst/gstminiobject.c (gst_value_mini_object_collect): Use
318         gst_value_set_mini_object so as to add a ref on the object (which
319         will be removed when the value is unset).
320
321         * gst/elements/gstfakesink.c (gst_fakesink_class_init): Fix signal
322         arg type in ::handoff.
323
324         * gst/gstelement.c (gst_element_change_state): Also deactivate
325         pads in READY->NULL, just in case the element didn't make it to
326         PAUSED. Wingo tested, Wim approved.
327
328 2005-05-26  Wim Taymans  <wim@fluendo.com>
329
330         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
331         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
332         (gst_pad_query), (gst_pad_send_event), (gst_pad_start_task):
333         A flushing pad cannot be used to alloc_buffer from.
334
335 2005-05-26  Wim Taymans  <wim@fluendo.com>
336
337         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
338         (gst_bus_pop), (gst_bus_source_prepare), (gst_bus_source_check),
339         (gst_bus_source_dispatch), (gst_bus_source_finalize),
340         (gst_bus_create_watch), (gst_bus_add_watch_full):
341         * gst/gstbus.h:
342         Implement a real GSource and use g_main_context_wakeup() to
343         signal new messages instead of the socketpair.
344
345 2005-05-25  Wim Taymans  <wim@fluendo.com>
346
347         * gst/gstbin.c: (bin_element_is_sink), (has_ancestor),
348         (bin_element_is_semi_sink), (append_child), (gst_bin_change_state):
349         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
350         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
351         (gst_pad_send_event), (gst_pad_start_task):
352         * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush),
353         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
354         (gst_queue_sink_activate), (gst_queue_src_activate),
355         (gst_queue_change_state):
356         * gst/gstqueue.h:
357         Fix state changes for non sinks. We now change sinks, then elements
358         with unconnected srcpads, then the rest.
359         More efficient queue unlocking in flush and state changes.
360         Set the pad activate mode even if it does not have an activate
361         function.
362
363 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
364
365         * gst/base/gstbasesrc.c: (gst_basesrc_activate):
366           Don't go in pull mode for non-seekable sources.
367         * gst/elements/gsttypefindelement.h:
368         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
369         (gst_type_find_element_dispose), (gst_type_find_handle_src_query),
370         (free_entry), (stop_typefinding),
371         (gst_type_find_element_handle_event), (find_peek),
372         (gst_type_find_element_chain), (do_pull_typefind),
373         (gst_type_find_element_change_state):
374           Allow typefinding (w/o seeking) in push-mode, simplified version
375           of what was in 0.8.
376         * gst/gstutils.c: (gst_buffer_join):
377         * gst/gstutils.h:
378           gst_buffer_join() from 0.8.
379
380 2005-05-25  Wim Taymans  <wim@fluendo.com>
381
382         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
383         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
384         (gst_pad_send_event), (gst_pad_start_task):
385         Disable attempt at mode switching until it is figured out.
386
387 2005-05-25  Wim Taymans  <wim@fluendo.com>
388
389         * gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
390         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
391         (gst_basesink_finish_preroll), (gst_basesink_chain),
392         (gst_basesink_loop), (gst_basesink_activate),
393         (gst_basesink_change_state):
394         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
395         (gst_basesrc_get_range), (gst_basesrc_loop),
396         (gst_basesrc_activate):
397         * gst/elements/gsttee.c: (gst_tee_sink_activate):
398         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
399         (gst_real_pad_init), (gst_real_pad_set_property),
400         (gst_real_pad_get_property), (gst_pad_set_active),
401         (gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
402         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
403         (gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
404         (gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
405         (gst_pad_event_default_dispatch), (gst_pad_event_default),
406         (gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
407         (gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
408         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
409         (gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
410         (gst_pad_stop_task):
411         * gst/gstpad.h:
412         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
413         (gst_queue_loop), (gst_queue_src_activate):
414         * gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
415         (gst_task_get_state):
416         * gst/gsttask.h:
417         * gst/schedulers/threadscheduler.c:
418         (gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
419         Implement gst_pad_pause/start/stop_task(), take STREAM lock
420         in task function.
421         Remove ACTIVE pad flag, use FLUSHING everywhere
422         Added _pad_chain(), _pad_get_range() to call chain/getrange 
423         functions.
424         Add locks around IS_FLUSHING when reading.
425         Take STREAM lock in chain(), get_range() functions so plugins
426         don't need to take it anymore.
427         
428
429
430 2005-05-25  Wim Taymans  <wim@fluendo.com>
431
432         * tools/gst-launch.c: (event_loop):
433         Unref message after using its contents instead of
434         before.
435
436 2005-05-24  Wim Taymans  <wim@fluendo.com>
437
438         * docs/design/draft-ghostpads.txt:
439         * docs/design/draft-push-pull.txt:
440         * docs/design/draft-query.txt:
441         * docs/design/part-overview.txt:
442         Docs updates, added general overview doc.
443
444 2005-05-21  David Schleef  <ds@schleef.org>
445
446         * docs/gst/tmpl/old/GstBin.sgml:
447         * docs/gst/tmpl/old/GstBuffer.sgml:
448         * docs/gst/tmpl/old/GstCaps.sgml:
449         * docs/gst/tmpl/old/GstClock.sgml:
450         * docs/gst/tmpl/old/GstCompat.sgml:
451         * docs/gst/tmpl/old/GstData.sgml:
452         * docs/gst/tmpl/old/GstElement.sgml:
453         * docs/gst/tmpl/old/GstEvent.sgml:
454         * docs/gst/tmpl/old/GstIndex.sgml:
455         * docs/gst/tmpl/old/GstStructure.sgml:
456         * docs/gst/tmpl/old/GstTag.sgml:
457         * docs/gst/tmpl/old/cothreads.sgml:
458         * docs/gst/tmpl/old/cothreads_compat.sgml:
459         * docs/gst/tmpl/old/gettext.sgml:
460         * docs/gst/tmpl/old/gobject2gtk.sgml:
461         * docs/gst/tmpl/old/grammar.tab.sgml:
462         * docs/gst/tmpl/old/gst-i18n-app.sgml:
463         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
464         * docs/gst/tmpl/old/gst_private.sgml:
465         * docs/gst/tmpl/old/gstaggregator.sgml:
466         * docs/gst/tmpl/old/gstarch.sgml:
467         * docs/gst/tmpl/old/gstatomic_impl.sgml:
468         * docs/gst/tmpl/old/gstbufferstore.sgml:
469         * docs/gst/tmpl/old/gstdata_private.sgml:
470         * docs/gst/tmpl/old/gstdisksink.sgml:
471         * docs/gst/tmpl/old/gstdisksrc.sgml:
472         * docs/gst/tmpl/old/gstelementfactory.sgml:
473         * docs/gst/tmpl/old/gstextratypes.sgml:
474         * docs/gst/tmpl/old/gstfakesink.sgml:
475         * docs/gst/tmpl/old/gstfakesrc.sgml:
476         * docs/gst/tmpl/old/gstfdsink.sgml:
477         * docs/gst/tmpl/old/gstfdsrc.sgml:
478         * docs/gst/tmpl/old/gstfilesink.sgml:
479         * docs/gst/tmpl/old/gstfilesrc.sgml:
480         * docs/gst/tmpl/old/gsthttpsrc.sgml:
481         * docs/gst/tmpl/old/gstidentity.sgml:
482         * docs/gst/tmpl/old/gstindexfactory.sgml:
483         * docs/gst/tmpl/old/gstmarshal.sgml:
484         * docs/gst/tmpl/old/gstmd5sink.sgml:
485         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
486         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
487         * docs/gst/tmpl/old/gstpadtemplate.sgml:
488         * docs/gst/tmpl/old/gstpipefilter.sgml:
489         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
490         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
491         * docs/gst/tmpl/old/gstshaper.sgml:
492         * docs/gst/tmpl/old/gstspider.sgml:
493         * docs/gst/tmpl/old/gstspideridentity.sgml:
494         * docs/gst/tmpl/old/gststatistics.sgml:
495         * docs/gst/tmpl/old/gsttee.sgml:
496         * docs/gst/tmpl/old/gsttimecache.sgml:
497         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
498         * docs/gst/tmpl/old/gstxmlregistry.sgml:
499         * docs/gst/tmpl/old/gthread-cothreads.sgml:
500         * docs/gst/tmpl/old/types.sgml:
501           I didn't intend to add these or check them in.
502
503 2005-05-19  David Schleef  <ds@schleef.org>
504
505         * configure.ac: Use -no-common everywhere.  In a sane world, it
506           would be the default in libtool, because without it, you can't
507           build DLLs on Windows.
508         * docs/gst/gstreamer-docs.sgml: Remove GstCpu, GstData, GstThread
509         * docs/gst/gstreamer-sections.txt:
510         * docs/gst/tmpl/gstcpu.sgml:
511         * docs/gst/tmpl/gstdata.sgml:
512         * docs/gst/tmpl/gstthread.sgml:
513
514 2005-05-19  David Schleef  <ds@schleef.org>
515
516         * gst/gstminiobject.c: (gst_value_set_mini_object),
517         (gst_value_take_mini_object), (gst_value_get_mini_object):
518         * gst/gstminiobject.h: Add GValue set/get functions.
519
520 2005-05-19  Wim Taymans  <wim@fluendo.com>
521
522         * gst/gstbuffer.c: (gst_buffer_init), (gst_subbuffer_get_type),
523         (gst_subbuffer_class_init), (gst_subbuffer_finalize),
524         (gst_subbuffer_init), (gst_buffer_is_span_fast):
525         * gst/gstbuffer.h:
526         * gst/gstbus.c: (gst_bus_post):
527         * gst/gstelement.c: (gst_element_get_random_pad):
528         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize):
529         Make subbufer unref the parent in finalize.
530         some more debugging info.
531
532
533 2005-05-19  Wim Taymans  <wim@fluendo.com>
534
535         * gst/base/gstbasesink.c: (gst_basesink_class_init),
536         (gst_basesink_init), (gst_basesink_finalize),
537         (gst_basesink_activate), (gst_basesink_change_state):
538         Don't free preroll queue too early.
539
540 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
541
542         * gst/Makefile.am:
543         * gst/ROADMAP:
544           Hi, I'm outdated. Please shoot me.
545
546 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
547
548         * gst/gstpipeline.c: (gst_pipeline_send_event):
549           Do not access variables after they have been deleted.
550
551 2005-05-19  Wim Taymans  <wim@fluendo.com>
552
553         * tools/gst-inspect.c: (print_plugin_features):
554         A plugin feature does unfortunatly not use the
555         object name yet...
556
557 2005-05-18  Wim Taymans  <wim@fluendo.com>
558
559         * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):
560         Port _span() functions to new subbuffers.
561
562 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
563
564         * gst/gstbin.c: (gst_bin_add_func):
565           Fix clock settery in bins when adding kids after the clock has
566           been selected.
567
568 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
569
570         * gst/elements/gstidentity.c: (gst_identity_class_init):
571           Workaround until signals support GstMiniObject.
572
573 2005-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
574
575         * gst/gstbuffer.c:
576         Oops, fix a typo GST_TYPE_BUFFER -> GST_TYPE_SUBBUFFER.
577
578 2005-05-18  Wim Taymans  <wim@fluendo.com>
579
580         * gst/base/Makefile.am:
581         * gst/base/gstadapter.c: (gst_adapter_base_init),
582         (gst_adapter_class_init), (gst_adapter_init),
583         (gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
584         (gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
585         (gst_adapter_flush), (gst_adapter_available),
586         (gst_adapter_available_fast):
587         * gst/base/gstadapter.h:
588         Ported and added adapter to the base classes.
589
590 2005-05-17  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
591
592         * gst/gst.c:
593         * gst/gstmessage.c:
594           Make sure the class is reffed/unreffed once before threads can be
595           used.  Fixes #304551.
596
597 2005-05-17  Wim Taymans  <wim@fluendo.com>
598
599         * gst/base/gstbasesink.c: (gst_basesink_finish_preroll),
600         (gst_basesink_chain_unlocked), (gst_basesink_activate):
601         * gst/gstminiobject.c: (gst_mini_object_get_type),
602         (gst_mini_object_free):
603         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query),
604         (gst_pad_push), (gst_pad_push_event):
605         * gst/gstqueue.c: (gst_queue_change_state):
606         Don't queue buffers in basesink when we are flushing.
607         Unref buffer when flushing in basesink.
608         Flush queue when going to READY
609         Unref buffer when _push() returns an error.
610         Don't free MiniObject instance when refcount is incremented
611         in _finalize() so that we can recover objects.
612
613 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
614
615         * docs/manual/advanced-schedulers.xml:
616         * docs/manual/appendix-checklist.xml:
617         * docs/pwg/advanced-clock.xml:
618         * docs/pwg/advanced-interfaces.xml:
619         * docs/pwg/advanced-request.xml:
620         * docs/pwg/advanced-types.xml:
621         * docs/pwg/intro-preface.xml:
622         * examples/plugins/example.c: (gst_example_get_type),
623         (gst_example_class_init), (gst_example_chain),
624         (gst_example_set_property), (gst_example_get_property),
625         (gst_example_change_state), (plugin_init):
626         * examples/plugins/example.h:
627           small doc fixes
628
629 2005-05-17  Wim Taymans  <wim@fluendo.com>
630
631         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps),
632         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_push):
633         * gst/gstqueue.c: (gst_queue_change_state):
634         Clear queue when going to READY.
635         Remove IN_SETCAPS flag too.
636
637 2005-05-17  Tim-Philipp Müller  <tim at centricular dot net>
638
639         * gst/base/gstbasesrc.c: (gst_basesrc_change_state):
640           Remove implicit cast from gboolean to GstElementStateReturn;
641           make sure we still return failure in paused => ready case if
642           the parent class fails to change state and our own stop 
643           vfunc succeeds.
644
645 2005-05-17  Wim Taymans  <wim@fluendo.com>
646
647         * tools/gst-launch.c: (event_loop):
648         Message was unreffed too soon.
649
650 2005-05-16  Andy Wingo  <wingo@pobox.com>
651
652         * gst/gstbin.c (sink_iterator_filter): Err... um...
653
654         * check/gst/gstbin.c (test_ghost_pads): New test for the
655         ghosting-if-elements-not-in-same-bin behavior.
656
657 2005-05-16  David Schleef  <ds@schleef.org>
658
659         * gst/gstminiobject.c: Use g_atomic_int_get() instead of
660         accessing refcount directly.
661
662 2005-05-15  David Schleef  <ds@schleef.org>
663
664         * check/Makefile.am: remove GstData checks
665         * check/gst-libs/gdp.c: (START_TEST): fix for API changes
666         * gst/Makefile.am: add miniobject, remove data
667         * gst/gst.h: add miniobject, remove data
668         * gst/gstdata.c: remove
669         * gst/gstdata.h: remove
670         * gst/gstdata_private.h: remove
671         * gst/gsttypes.h: remove GstEvent and GstMessage
672         * gst/gstelement.c: (gst_element_post_message): fix for API changes
673         * gst/gstmarshal.list: change BOXED -> OBJECT
674
675         Implement GstMiniObject.
676         * gst/gstminiobject.c:
677         * gst/gstminiobject.h:
678
679         Modify to be subclasses of GstMiniObject.
680         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
681         (gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
682         (gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
683         (gst_subbuffer_get_type), (gst_subbuffer_init),
684         (gst_buffer_create_sub), (gst_buffer_is_span_fast),
685         (gst_buffer_span):
686         * gst/gstbuffer.h:
687         * gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
688         (gst_event_class_init), (gst_event_init), (gst_event_finalize),
689         (_gst_event_copy), (gst_event_new):
690         * gst/gstevent.h:
691         * gst/gstmessage.c: (_gst_message_initialize),
692         (gst_message_get_type), (gst_message_class_init),
693         (gst_message_init), (gst_message_finalize), (_gst_message_copy),
694         (gst_message_new), (gst_message_new_error),
695         (gst_message_new_warning), (gst_message_new_tag),
696         (gst_message_new_state_changed), (gst_message_new_application):
697         * gst/gstmessage.h:
698         * gst/gstprobe.c: (gst_probe_perform),
699         (gst_probe_dispatcher_dispatch):
700         * gst/gstprobe.h:
701         * gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
702         (gst_query_class_init), (gst_query_finalize), (gst_query_init),
703         (_gst_query_copy), (gst_query_new):
704
705         Update elements for GstData -> GstMiniObject changes
706         * gst/gstquery.h:
707         * gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
708         (gst_queue_chain), (gst_queue_loop):
709         * gst/elements/gstbufferstore.c:
710         (gst_buffer_store_add_buffer_func),
711         (gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
712         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
713         (gst_fakesink_render):
714         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
715         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
716         (gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
717         (gst_mmap_buffer_finalize), (gst_filesrc_map_region),
718         (gst_filesrc_create_read):
719         * gst/elements/gstidentity.c: (gst_identity_class_init):
720         * gst/elements/gsttypefindelement.c:
721         (gst_type_find_element_src_event), (free_entry_buffers),
722         (gst_type_find_element_handle_event):
723         * libs/gst/dataprotocol/dataprotocol.c:
724         (gst_dp_header_from_buffer):
725         * libs/gst/dataprotocol/dataprotocol.h:
726         * libs/gst/dataprotocol/dp-private.h:
727
728 2005-05-15  David Schleef  <ds@schleef.org>
729
730         * gst/elements/gstelements.c: Don't include headers that were
731         just removed.
732
733 2005-05-15  David Schleef  <ds@schleef.org>
734
735         * gst/elements/Makefile.am: Remove some elements that don't
736         need to be in the core (or even exist at all).
737         * gst/elements/gstaggregator.c:
738         * gst/elements/gstaggregator.h:
739         * gst/elements/gstmd5sink.c:
740         * gst/elements/gstmd5sink.h:
741         * gst/elements/gstmultifilesrc.c:
742         * gst/elements/gstmultifilesrc.h:
743         * gst/elements/gstpipefilter.c:
744         * gst/elements/gstpipefilter.h:
745         * gst/elements/gstshaper.c:
746         * gst/elements/gstshaper.h:
747         * gst/elements/gststatistics.c:
748         * gst/elements/gststatistics.h:
749         * po/POTFILES.in: Remove above files.
750
751 2005-05-14  Andy Wingo  <wingo@pobox.com>
752
753         * gst/gstbin.c (gst_bin_iterate_sinks): Use sink_iterator_filter
754         so as to get the refs right.
755         (sink_iterator_filter): New function, wraps bin_element_is_sink,
756         unreffing objects that don't pass the filter.
757
758         * gst/gstpipeline.c (gst_pipeline_init): Drop ref on bus after
759         gst_element_set_bus.
760         (gst_pipeline_dispose): Set the bus on the pipeline to NULL. In
761         normal cases, this will destroy the bus.
762
763         * gst/gstutils.c (prepare_link_maybe_ghosting): Drop ref on root
764         object.
765
766         * gst/gstbin.c (gst_bin_change_state): Fix state changes if a bin
767         has no sinks.
768
769 2005-05-13  Andy Wingo  <wingo@pobox.com>
770
771         * gst/gstutils.c (gst_element_link_pads): Instead of calling
772         gst_pad_link, call pad_link_maybe_ghosting,
773         (pad_link_maybe_ghosting): Links pads, making sure that the
774         elements being linked are in the same bin.
775         (find_common_root, object_has_ancestor, ghost_up, remove_pad):
776         Helpers for pad_link_maybe_ghosting.
777
778 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
779
780         * configure.ac:
781           Require GLib >= 2.4.0 (for the g_atomic_* funcs)
782
783 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
784
785         * docs/design/part-element-source.txt:
786           Mention GstPushSrc
787
788 2005-05-12  Wim Taymans  <wim@fluendo.com>
789
790         * gst/base/gstbasesink.c: (gst_basesink_init),
791         (gst_basesink_activate):
792         * gst/base/gstbasesrc.c: (gst_basesrc_unlock),
793         (gst_basesrc_is_seekable):
794         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
795         (bin_element_is_sink), (gst_bin_change_state):
796         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
797         * gst/gstelement.h:
798         Identify sinks by their flag to avoid overly complicated
799         checks (fow now).
800         Do state changes even for elements not reachable from the
801         sinks.
802         BaseSink is a sink now :)
803         Some more debugging info in the basesrc.
804
805
806 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
807
808         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_query):
809           Implement _query on a bin, similar to _send_event.
810
811 2005-05-12  Tim-Philipp Müller  <tim at centricular dot net>
812
813         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek):
814           Discont event offset format should be GST_FORMAT_BYTES,
815           not GST_FORMAT_TIME.
816
817 2005-05-12  Wim Taymans  <wim@fluendo.com>
818
819         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_get_state):
820         Same fix as Ronald's but without the signal. 
821
822 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
823
824         * gst/gstutils.c: (gst_element_query_position):
825           No, an element is not a pad.
826
827 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
828
829         * gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
830         (gst_bin_get_state):
831           If a child is removed from a bin while we remove the child from
832           the bin and while we're retrieving its state, signal this to the
833           get_state function so we abort the wait (instead of waiting for
834           a timeout) and can immediately re-iterate over all other elements.
835
836 2005-05-12  Wim Taymans  <wim@fluendo.com>
837
838         * gst/base/Makefile.am:
839         * gst/base/gstbasesrc.c: (gst_basesrc_is_seekable),
840         (gst_basesrc_start):
841         * gst/base/gstbasesrc.h:
842         * gst/base/gstpushsrc.c: (gst_pushsrc_get_type),
843         (gst_pushsrc_base_init), (gst_pushsrc_class_init),
844         (gst_pushsrc_init), (gst_pushsrc_create):
845         * gst/base/gstpushsrc.h:
846         Added is_seekable to BaseSrc
847         Added simple PushSrc.
848
849 2005-05-11  Wim Taymans  <wim@fluendo.com>
850
851         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
852         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
853         (gst_element_link_pads), (gst_element_query_position),
854         (gst_element_query_convert), (intersect_caps_func),
855         (gst_pad_query_position), (gst_pad_query_convert):
856         Fix refcounting in utils function.
857         No point in trying to activate a pad when it's added, it could
858         be added from the state change function and then we deadlock, the
859         element has to decide what to do.
860
861 2005-05-10  Andy Wingo  <wingo@pobox.com>
862
863         * gst/elements/gstfakesink.c (gst_fakesink_render): Er, emit with
864         *all* the arguments.
865
866         * gst/base/gstbasetransform.c (gst_base_transform_event): Grab the
867         stream lock if it's a FLUSH_DONE; normal flushes don't get the
868         lock (according to the docs -- if this is wrong change the docs).
869
870         * gst/gstpipeline.c (gst_pipeline_change_state): Set the bus to
871         flush messages in the NULL state.
872
873         * gst/gstbus.c (gst_bus_post): If a bus is flushing, unref the
874         message immediately and return.
875         (gst_bus_set_flushing): New function. If a bus is flushing, it
876         flushes out any queued messages and immediately unrefs new
877         messages. This is so when an element goes to NULL, all of the
878         unhandled messages coming from it can be freed, and their
879         references to the element dropped. In other words: message source
880         ref considered harmful :P
881
882         * gst/gstbin.c (gst_bin_change_state): Unref peer element when
883         we're finished with it.
884
885         * gst/gstmessage.c (gst_message_new_state_changed): 
886
887 2005-05-10  Wim Taymans  <wim@fluendo.com>
888
889         * gst/gstvalue.c: (gst_value_compare_flags),
890         (gst_value_serialize_flags), (gst_value_deserialize_flags),
891         (_gst_value_initialize):
892         Added flags serialize/deserialize/compare code.
893
894 2005-05-09  Andy Wingo  <wingo@pobox.com>
895
896         * gst/base/gstbasetransform.c (gst_base_transform_proxy_getcaps):
897         Intersect the peer's caps with our caps.
898
899 2005-05-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
900
901         * gst/base/gsttypefindhelper.c: (helper_find_peek):
902         * gst/elements/gsttypefindelement.c: (find_peek):
903           Handle negative offsets better. Fixes decodebin.
904
905 2005-05-09  Wim Taymans  <wim@fluendo.com>
906
907         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps),
908         (gst_base_transform_event):
909         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query):
910         Implement accept_caps.
911         Fix silly lock/unlock mismatch in base class.
912
913 2005-05-09  Wim Taymans  <wim@fluendo.com>
914
915         * docs/design/draft-push-pull.txt:
916         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_query):
917         * gst/elements/gstfilesink.c: (gst_filesink_init),
918         (gst_filesink_query):
919         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
920         (gst_type_find_handle_src_query), (find_element_get_length):
921         * gst/gstelement.c: (gst_element_seek), (gst_element_query):
922         * gst/gstelement.h:
923         * gst/gstmessage.c:
924         * gst/gstmessage.h:
925         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_get_query_types),
926         (gst_real_pad_get_caps_unlocked),
927         (gst_pad_get_internal_links_default), (gst_pad_get_internal_links),
928         (gst_pad_event_default_dispatch), (gst_pad_event_default),
929         (gst_pad_dispatcher), (gst_pad_query), (gst_pad_query_default),
930         (gst_real_pad_dispose), (gst_real_pad_finalize),
931         (gst_pad_load_and_link), (gst_pad_save_thyself),
932         (gst_ghost_pad_save_thyself), (handle_pad_block), (gst_pad_push),
933         (gst_pad_check_pull_range), (gst_pad_pull_range),
934         (gst_pad_template_get_type), (gst_pad_template_class_init),
935         (gst_pad_template_init), (gst_pad_template_dispose),
936         (name_is_valid), (gst_static_pad_template_get),
937         (gst_pad_template_new), (gst_static_pad_template_get_caps),
938         (gst_pad_template_get_caps), (gst_pad_set_element_private),
939         (gst_pad_get_element_private), (gst_pad_start_task),
940         (gst_pad_pause_task), (gst_pad_stop_task),
941         (gst_ghost_pad_get_type), (gst_ghost_pad_class_init),
942         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
943         (gst_ghost_pad_set_property), (gst_ghost_pad_get_property),
944         (gst_ghost_pad_new):
945         * gst/gstpad.h:
946         * gst/gstquery.c: (_gst_query_initialize), (gst_query_new),
947         (gst_query_new_position), (gst_query_set_position),
948         (gst_query_parse_position), (gst_query_new_convert),
949         (gst_query_set_convert), (gst_query_parse_convert):
950         * gst/gstquery.h:
951         * gst/gstqueryutils.c:
952         * gst/gstqueryutils.h:
953         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
954         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
955         (gst_queue_handle_src_query):
956         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
957         (gst_element_query_position), (gst_element_query_convert),
958         (intersect_caps_func), (gst_pad_query_position),
959         (gst_pad_query_convert):
960         * gst/gstutils.h:
961         * tools/gst-inspect.c: (print_pad_info):
962         * tools/gst-xmlinspect.c: (print_element_info):
963         Remove old query functions. Ported old code.
964         Added position/convert helper functions to gstutils.
965         Reordered gstpad.c code, grouping relevant things.
966         Remove gst_message_new(), always need to speficy a specific
967         message.
968
969
970 2005-05-09  Andy Wingo  <wingo@pobox.com>
971
972         * gst/gstiterator.h: Add some includes.
973
974         * gst/gstqueryutils.h: Include more headers.
975
976         * gst/gstpad.h:
977         * gst/gstpad.c (gst_pad_query_position): New routine, replaces
978         some uses of gst_pad_query.
979
980         * gst/gstqueryutils.c: Build fixes. Make parse functions ignore
981         NULL out parameters.
982         (gst_query_new_position): New proc, allocates a new position
983         query.
984
985         * gst/Makefile.am (libgstreamer_@GST_MAJORMINOR@_la_SOURCES): Add
986         gstqueryutils.c to the build.
987
988         * gst/gststructure.c (gst_structure_set_valist): Implement with
989         the generic G_VALUE_COLLECT.
990         
991 2005-05-08  Edward Hervey  <bilboed@bilboed.com>
992
993         * gst/Makefile.am: (gst_headers):
994         Added gstqueryutils.h to the list of headers to install, that was
995         a 'nachty' move wingo :)
996
997 2005-05-06  Andy Wingo  <wingo@pobox.com>
998
999         * gst/gstquery.h
1000         * gst/gstquery.c (_gst_query_initialize): Extend GstQuery from
1001         GstData, init a memchunk.
1002         (standard_definitions): Add a few query types, deprecate a few.
1003         (gst_query_get_type): New proc.
1004         (_gst_query_copy, _gst_query_free, gst_query_new): GstData
1005         implementation.
1006         (gst_query_new_application, gst_query_get_structure): New public
1007         procs.
1008
1009         * docs/design/draft-query.txt: Removed LINKS from the query types,
1010         because all the rest can be dispatched to other pads -- seemed
1011         ugly to have a query that couldn't be dispatched. internal_links
1012         is fine as a pad method.
1013
1014         * gst/gstpad.h: Add query2 as a pad method, add the new functions
1015         in gstpad.c, but maintain binary compatibility for the moment.
1016         Will fix before 0.9 is out.
1017
1018         * gst/gstqueryutils.c: 
1019         * gst/gstqueryutils.h: New files, implement 3 methods for each
1020         query type: parse_query, parse_response, and set. Probably need an
1021         allocator as well.
1022
1023         * gst/gst.h: Add gstquery.h and gstqueryutils.h to the list.
1024
1025         * gst/elements/gstfilesink.c (gst_filesink_query2):
1026         * gst/base/gstbasesrc.c (gst_basesrc_query2): Replace old query,
1027         query_types, and formats methods.
1028
1029         * gst/gstpad.c (gst_pad_query2, gst_pad_query2_default)
1030         (gst_pad_set_query2_function): New functions.
1031         (gst_real_pad_init): Set query2_default as the default query2
1032         function. Basically just dispatches to internally linked pads.
1033
1034         Needs review!
1035         
1036         * gst/gstdata_private.h (_GST_DATA_INIT): Set data->refcount to 1
1037         without using the atomic operations. Only one thread can possibly
1038         be accessing the data at this point. Changed so as to avoid
1039         gst_atomic operations.
1040
1041 2005-05-06  Wim Taymans  <wim@fluendo.com>
1042
1043         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push):
1044         Also set caps if we use the fallback buffer alloc.
1045
1046 2005-05-06  Tim-Philipp Müller  <tim at centricular dot net>
1047
1048         * docs/gst/Makefile.am:
1049         * docs/gst/gstreamer-docs.sgml:
1050         * docs/gst/gstreamer-sections.txt:
1051         * docs/gst/tmpl/gstatomic.sgml:
1052         * docs/gst/tmpl/gstmemchunk.sgml:
1053         * testsuite/elements/struct_i386.h:
1054         * win32/GStreamer.vcproj:
1055         * win32/Makefile:
1056           Purge GstAtomic stuff from docs and win32 makefiles as well
1057
1058 2005-05-06  Wim Taymans  <wim@fluendo.com>
1059
1060         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
1061         * gst/elements/gstcapsfilter.c: (gst_capsfilter_getcaps):
1062         * gst/gstpad.c: (gst_pad_peer_get_caps):
1063         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
1064         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
1065         (gst_queue_src_activate), (gst_queue_change_state):
1066         * gst/gstqueue.h:
1067         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1068         (intersect_caps_func):
1069         Fix gst_pad_peer_get_caps(), make it return NULL if no peer.
1070         Always take QUEUE_LOCK after STREAM_LOCK or we might deadlock.
1071         Some fixes for the peer_get_caps() change.
1072
1073 2005-05-06  Wim Taymans  <wim@fluendo.com>
1074
1075         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
1076         (gst_basesink_handle_buffer), (gst_basesink_chain_unlocked),
1077         (gst_basesink_activate):
1078         Actually do something with error codes returned from the push
1079         functions.
1080
1081 2005-05-06  Wim Taymans  <wim@fluendo.com>
1082
1083         * docs/design/part-element-sink.txt:
1084         * docs/design/part-element-source.txt:
1085         * gst/base/gstbasesink.c: (gst_basesink_class_init),
1086         (gst_basesink_event), (gst_basesink_activate):
1087         * gst/base/gstbasesink.h:
1088         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_unlock),
1089         (gst_basesrc_activate):
1090         * gst/base/gstbasesrc.h:
1091         * gst/gstelement.c: (gst_element_pads_activate):
1092         Some more documentation.
1093         Fixed scheduling decision in _pads_activate().
1094
1095 2005-05-05  Andy Wingo  <wingo@pobox.com>
1096
1097         * check/pipelines/simple_launch_lines.c (test_2_elements): "Fix"
1098         the test suite.
1099
1100 2005-05-05  Wim Taymans  <wim@fluendo.com>
1101
1102         * gst/base/Makefile.am:
1103         * gst/base/gstbasesink.h:
1104         * gst/base/gstbasesrc.c: (gst_basesrc_init),
1105         (gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
1106         * gst/base/gstcollectpads.c: (gst_collectpads_get_type),
1107         (gst_collectpads_class_init), (gst_collectpads_init),
1108         (gst_collectpads_finalize), (gst_collectpads_new),
1109         (gst_collectpads_set_function), (gst_collectpads_add_pad),
1110         (find_pad), (gst_collectpads_remove_pad),
1111         (gst_collectpads_is_active), (gst_collectpads_collect),
1112         (gst_collectpads_collect_range), (gst_collectpads_start),
1113         (gst_collectpads_stop), (gst_collectpads_peek),
1114         (gst_collectpads_pop), (gst_collectpads_available),
1115         (gst_collectpads_read), (gst_collectpads_flush),
1116         (gst_collectpads_chain):
1117         * gst/base/gstcollectpads.h:
1118         * gst/elements/Makefile.am:
1119         * gst/elements/gstelements.c:
1120         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1121         (gst_fakesink_get_times), (gst_fakesink_event),
1122         (gst_fakesink_preroll), (gst_fakesink_render):
1123         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
1124         (gst_filesink_init), (gst_filesink_set_location),
1125         (gst_filesink_open_file), (gst_filesink_close_file),
1126         (gst_filesink_pad_query), (gst_filesink_event),
1127         (gst_filesink_render), (gst_filesink_change_state):
1128         * gst/elements/gstfilesink.h:
1129         Added object to help in making collect pad based elements.
1130         Ported filesink.
1131         Make event function in sink baseclass return gboolean.
1132
1133 2005-05-05  Wim Taymans  <wim@fluendo.com>
1134
1135         * gst/gstbin.c: (gst_bin_send_event), (compare_name),
1136         (gst_bin_get_by_name):
1137         * gst/gstbuffer.h:
1138         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
1139         (gst_clock_finalize):
1140         * gst/gstdata.c: (gst_data_replace):
1141         * gst/gstdata.h:
1142         * gst/gstelement.c: (gst_element_request_pad),
1143         (gst_element_pads_activate):
1144         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
1145         (gst_object_unref):
1146         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1147         (gst_pad_set_checkgetrange_function),
1148         (gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
1149         (gst_pad_check_pull_range), (gst_pad_pull_range),
1150         (gst_static_pad_template_get_caps), (gst_pad_start_task),
1151         (gst_pad_pause_task), (gst_pad_stop_task):
1152         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1153         (gst_element_request_pad), (gst_pad_proxy_getcaps):
1154         Fix name lookup in GstBin.
1155         Added _data_replace() function and _buffer_replace()
1156         Use finalize method to clean up clock.
1157         Fix refcounting on request pads.
1158         Fix pad schedule mode error.
1159         Some more object refcounting debug info,
1160
1161
1162 2005-05-04  Andy Wingo <wingo@pobox.com>
1163
1164         * check/Makefile.am:
1165         * docs/gst/tmpl/gstatomic.sgml:
1166         * docs/gst/tmpl/gstplugin.sgml:
1167         * gst/base/gstbasesink.c: (gst_basesink_activate):
1168         * gst/base/gstbasesrc.c: (gst_basesrc_class_init),
1169         (gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
1170         (gst_basesrc_query), (gst_basesrc_set_property),
1171         (gst_basesrc_get_property), (gst_basesrc_check_get_range),
1172         (gst_basesrc_activate):
1173         * gst/base/gstbasesrc.h:
1174         * gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
1175         (gst_base_transform_src_activate):
1176         * gst/elements/gstelements.c:
1177         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1178         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
1179         * gst/elements/gsttee.c: (gst_tee_sink_activate):
1180         * gst/elements/gsttypefindelement.c: (find_element_get_length),
1181         (gst_type_find_element_checkgetrange),
1182         (gst_type_find_element_activate):
1183         * gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
1184         * gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
1185         (gst_caps_load_thyself):
1186         * gst/gstelement.c: (gst_element_pads_activate),
1187         (gst_element_save_thyself), (gst_element_restore_thyself):
1188         * gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
1189         (gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
1190         * gst/gstpad.h:
1191         * gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
1192         (gst_xml_parse_file), (gst_xml_parse_memory),
1193         (gst_xml_get_element), (gst_xml_make_element):
1194         * gst/indexers/gstfileindex.c: (gst_file_index_load),
1195         (_file_index_id_save_xml), (gst_file_index_commit):
1196         * gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
1197         (read_enum), (load_pad_template), (load_feature), (load_plugin),
1198         (load_paths):
1199         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
1200         (gst_dp_packet_from_event), (gst_dp_caps_from_packet):
1201         * tools/gst-complete.c: (main):
1202         * tools/gst-compprep.c: (main):
1203         * tools/gst-inspect.c: (print_element_properties_info):
1204         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
1205         * tools/gst-xmlinspect.c: (print_element_properties):
1206         GCC 4 fixen.
1207         
1208 2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
1209
1210         * gst/gstplugin.c: (gst_plugin_check_module),
1211         (gst_plugin_check_file), (gst_plugin_load_file):
1212             apply patch from #172526 to make register work on MacOSX
1213
1214 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1215
1216         * docs/gst/tmpl/gstconfig.sgml:
1217         * gst/gstconfig.h.in:
1218           move documentation for some symbols.  Add doc for GST_PTR_FORMAT
1219         * testsuite/debug/printf_extension.c: (main):
1220           Do not use GST_PTR_FORMAT on pointers to types with
1221           sizeof < sizeof(gpointer).  Fixes test on 64-bit
1222         * testsuite/elements/property.h:
1223           use correct printf format
1224
1225 2005-05-02  Wim Taymans  <wim@fluendo.com>
1226
1227         * docs/design/draft-push-pull.txt:
1228         * docs/design/draft-query.txt:
1229         * gst/base/gstbasesrc.c: (gst_basesrc_get_range_unlocked),
1230         (gst_basesrc_start):
1231         Added draft for new query API.
1232         Added draft for better selecting scheduling methods.
1233         Make basesrc ignore length if the subclass does not support
1234         it.
1235
1236 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1237
1238         * gst/Makefile.am:
1239           possible fixes for automake-1.5 - _LIBADD is reserved
1240
1241 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1242
1243         * docs/faq/Makefile.am:
1244         * docs/manual/Makefile.am:
1245         * docs/manuals.mak:
1246         * docs/pwg/Makefile.am:
1247         * gst/Makefile.am:
1248           possible fixes for automake-1.5
1249
1250 2005-04-28  Wim Taymans  <wim@fluendo.com>
1251
1252         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1253         (gst_basesink_pad_getcaps), (gst_basesink_init),
1254         (gst_basesink_do_sync):
1255         * gst/gstclock.c: (gst_clock_entry_new):
1256         * gst/gstevent.c: (gst_event_discont_get_value):
1257         * gst/gstpipeline.c: (pipeline_bus_handler),
1258         (gst_pipeline_change_state):
1259         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
1260         Better debugging of clocking info.
1261         Allow NULL values when getting discont values.
1262
1263 2005-04-27  Wim Taymans  <wim@fluendo.com>
1264
1265         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
1266         * check/gst/gstpad.c: (gst_pad_suite):
1267         Increase timeout for checks.
1268
1269 2005-04-27  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1270
1271         * check/Makefile.am:
1272           fix the broken rule for cleanup.  Apparently this rule is
1273           only needed on FC2, so maybe this warrants further autotool
1274           inspection.
1275
1276 2005-04-26  Wim Taymans  <wim@fluendo.com>
1277
1278         * gst/gsttrashstack.h:
1279         Ooohh. a nasty one! After having a failed pop() from the stack,
1280         it's possible that the stack is empty. In that case, don't
1281         follow the NULL pointer.
1282
1283 2005-04-25  Wim Taymans  <wim@fluendo.com>
1284
1285         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1286         (gst_pad_set_checkgetrange_function),
1287         (gst_pad_link_check_compatible_unlocked), (gst_pad_link_prepare),
1288         (gst_pad_check_pull_range), (gst_pad_pull_range),
1289         (gst_static_pad_template_get_caps), (gst_pad_start_task),
1290         (gst_pad_pause_task), (gst_pad_stop_task):
1291         * gst/gstplugin.c: (gst_plugin_load):
1292         * gst/gstplugin.h:
1293         Remove gst_library_load as it does more harm than good with
1294         the new g_module flags.
1295         Revert bogus caps template check in pad linking, pad caps
1296         are important when linking not the template, which is more
1297         general than the current caps.
1298
1299 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1300
1301         * gst/autoplug/.cvsignore:
1302         * gst/autoplug/Makefile.am:
1303         * gst/autoplug/gstsearchfuncs.c:
1304         * gst/autoplug/gstsearchfuncs.h:
1305         * gst/autoplug/gstspider.c:
1306         * gst/autoplug/gstspider.h:
1307         * gst/autoplug/gstspideridentity.c:
1308         * gst/autoplug/gstspideridentity.h:
1309         * gst/autoplug/spidertest.c:
1310           Die, spider, die.
1311
1312 2005-04-25  Wim Taymans  <wim@fluendo.com>
1313
1314         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1315         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1316         (gst_pad_pull_range), (gst_static_pad_template_get_caps),
1317         (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
1318         * gst/gstpad.h:
1319         Added stubs for unimplemented functions. 
1320
1321 2005-04-24  David Schleef  <ds@schleef.org>
1322
1323         * gst/gstpad.h: Disable some unimplemented functions.  Wim,
1324         please fix.
1325
1326 2005-04-24  David Schleef  <ds@schleef.org>
1327
1328         Convert everything from GstAtomicInt to g_atomic_int_*, and
1329         remove gstatomic.
1330         * gst/Makefile.am:
1331         * gst/gstatomic.c:
1332         * gst/gstatomic.h:
1333         * gst/gstatomic_impl.h:
1334         * gst/gstbuffer.c:
1335         * gst/gstcaps.c:
1336         * gst/gstcaps.h:
1337         * gst/gstclock.c:
1338         * gst/gstclock.h:
1339         * gst/gstdata.c:
1340         * gst/gstdata.h:
1341         * gst/gstdata_private.h:
1342         * gst/gstevent.c:
1343         * gst/gstinfo.c:
1344         * gst/gstinfo.h:
1345         * gst/gstmessage.c:
1346         * gst/gstobject.c:
1347         * gst/gstobject.h:
1348         * gst/gststructure.c:
1349         * gst/gststructure.h:
1350         * gst/gstutils.c: Add gst_atomic_int_set() compaitibility function.
1351         * gst/gstutils.h:
1352
1353 2005-04-24  David Schleef  <ds@schleef.org>
1354
1355         * check/gst/gstpad.c: (START_TEST): Oh yeah, it's always nice to
1356         make the regressions tests work.  Remove some code that is no
1357         longer true.
1358         * gst/gstpad.c: (gst_pad_link_check_templates_compatible_unlocked):
1359         Disable warning for pads without templates.
1360
1361 2005-04-24  David Schleef  <ds@schleef.org>
1362
1363         * gst/gstpad.c: Remove handling of filtered caps.  Fix/merge
1364         functions that handle filtered links.
1365         * gst/gstpad.h: Remove 'appfilter' field and prototypes of
1366         removed functions.
1367         * gst/gstutils.c: Fix/remove utility functions that handle
1368         filtered caps.
1369         * gst/gstutils.h:
1370         * gst/gstvalue.c: Add serialization/deserialization of caps
1371         * gst/parse/grammar.y: Ignore filtered caps when linking.  This
1372         requires fixing so that the filter caps notation creates
1373         a capsfilter element and sets the filter_caps property.  I
1374         think everyone probably wants to keep the shorthand notation.
1375         * docs/gst/tmpl/gstelement.sgml: updates for API changes.
1376         * docs/gst/tmpl/gstpad.sgml:
1377
1378         * gst/elements/gstelements.c: Register capsfilter element.
1379         * gst/Makefile.am: fix spacing
1380         * docs/random/ds/0.9-suggested-changes: random
1381
1382 2005-04-23  David Schleef  <ds@schleef.org>
1383
1384         * gst/elements/Makefile.am:
1385         * gst/elements/gstcapsfilter.c: New element that acts like an
1386         identity, but filters caps.  Will eventually replace filtered
1387         caps in pad linking.
1388         * gst/gstutils.c: (gst_element_create_all_pads): New function
1389         to create all the ALWAYS pads that are registered with an
1390         element class.  This functionality should eventually be
1391         merged in with GstElement initialization.
1392         * gst/gstutils.h:
1393         * testsuite/trigger/README: part of trigger test code that should
1394         have been checked in a long time ago.
1395
1396 2005-04-23  David Schleef  <ds@schleef.org>
1397
1398         * gst/Makefile.am: Remove as-libtool stuff.  It's likely not
1399         needed with new versions of libtool (nobody will confirm this),
1400         and hard to carry around.
1401         * gst/autoplug/Makefile.am:
1402         * gst/base/Makefile.am:
1403         * gst/elements/Makefile.am:
1404         * gst/indexers/Makefile.am:
1405         * gst/schedulers/Makefile.am:
1406         * libs/gst/bytestream/Makefile.am:
1407         * libs/gst/control/Makefile.am:
1408         * libs/gst/dataprotocol/Makefile.am:
1409         * libs/gst/getbits/Makefile.am:
1410
1411 2005-04-21  Wim Taymans  <wim@fluendo.com>
1412
1413         * docs/design/draft-push-pull.txt:
1414         * docs/design/part-MT-refcounting.txt:
1415         * docs/design/part-TODO.txt:
1416         * docs/design/part-caps.txt:
1417         * docs/design/part-events.txt:
1418         * docs/design/part-gstbus.txt:
1419         * docs/design/part-gstpipeline.txt:
1420         * docs/design/part-messages.txt:
1421         * docs/design/part-push-pull.txt:
1422         * docs/design/part-query.txt:
1423         Some more docs.
1424
1425 2005-04-21  Wim Taymans  <wim@fluendo.com>
1426
1427         * gst/gstmessage.c: (_gst_message_copy), (_gst_message_free),
1428         (gst_message_new), (gst_message_new_error),
1429         (gst_message_new_warning), (gst_message_new_tag),
1430         (gst_message_new_state_changed), (gst_message_new_application),
1431         (gst_message_get_structure):
1432         * gst/gstmessage.h:
1433         * gst/gststructure.c: (gst_structure_set_parent_refcount),
1434         (gst_structure_copy_conditional):
1435         Use parent refcount in GstMessage to ensure GstStructure
1436         consistency.
1437         Cleaned up headers a bit.
1438         
1439
1440 2005-04-20  Wim Taymans  <wim@fluendo.com>
1441
1442         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1443         (gst_basesink_pad_getcaps), (gst_basesink_init),
1444         (gst_basesink_chain_unlocked):
1445         * gst/base/gsttypefindhelper.c: (helper_find_suggest),
1446         (gst_type_find_helper):
1447         * gst/elements/gsttypefindelement.c:
1448         (gst_type_find_element_have_type), (gst_type_find_element_init),
1449         (stop_typefinding), (gst_type_find_element_handle_event),
1450         (find_suggest), (gst_type_find_element_chain),
1451         (gst_type_find_element_checkgetrange),
1452         (gst_type_find_element_getrange), (do_typefind),
1453         (gst_type_find_element_activate):
1454         * gst/gstbuffer.c: (_gst_buffer_sub_free),
1455         (gst_buffer_default_free), (gst_buffer_default_copy),
1456         (gst_buffer_set_caps):
1457         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
1458         (gst_caps_replace):
1459         * gst/gstmessage.c: (gst_message_new),
1460         (gst_message_new_state_changed):
1461         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1462         (gst_pad_set_checkgetrange_function),
1463         (gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
1464         (gst_pad_set_caps), (gst_pad_check_pull_range),
1465         (gst_pad_pull_range), (gst_static_pad_template_get_caps):
1466         * gst/gstpad.h:
1467         * gst/gsttypefind.c: (gst_type_find_register):
1468         Make gst_caps_replace() work like other _replace() functions.
1469         Use _caps_replace() where possible.
1470         Make sure _message_new() initialises its field.
1471         Add gst_static_pad_template_get_caps()
1472
1473
1474 2005-04-18  Andy Wingo  <wingo@pobox.com>
1475
1476         * gst/gstelement.c (gst_element_pads_activate): Check pull_range
1477         on the peer, not the pad. I think that was a typo. Pass an extra
1478         arg to see if random access is possible. Activate the pads as
1479         PULL_RANGE if possible.
1480
1481         * gst/elements/gstfakesrc.c: s/ARG_/PROP_/.
1482
1483         * gst/base/gstbasesrc.c (gst_basesrc_set_property) 
1484         (gst_basesrc_get_property): BLOCKSIZE is a ULONG. Rename ARG_...
1485         to PROP_....
1486
1487 2005-04-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1488
1489         * docs/faq/using.xml:
1490           Add note on gstreamer-properties (#154996).
1491
1492 2005-04-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1493
1494         * docs/random/bbb/optional-properties:
1495           Some analysis on optional properties.
1496
1497 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1498
1499         * docs/gst/tmpl/gstelementfactory.sgml:
1500         * gst/gstelement.h:
1501         * gst/gstelementfactory.c: (gst_element_factory_init),
1502         (gst_element_factory_cleanup), (gst_element_register),
1503         (__gst_element_factory_add_static_pad_template),
1504         (gst_element_factory_get_static_pad_templates),
1505         (gst_element_factory_can_src_caps),
1506         (gst_element_factory_can_sink_caps):
1507         * gst/registries/Makefile.am:
1508         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
1509         (gst_xml_registry_class_init), (gst_xml_registry_init),
1510         (gst_xml_registry_new), (gst_xml_registry_set_property),
1511         (gst_xml_registry_get_property), (get_time), (make_dir),
1512         (gst_xml_registry_get_perms_func),
1513         (plugin_times_older_than_recurse), (plugin_times_older_than),
1514         (gst_xml_registry_open_func), (gst_xml_registry_load_func),
1515         (gst_xml_registry_save_func), (gst_xml_registry_close_func),
1516         (add_to_char_array), (read_string), (read_uint), (read_enum),
1517         (load_pad_template), (load_feature), (load_plugin), (load_paths),
1518         (gst_xml_registry_load), (gst_xml_registry_load_plugin),
1519         (gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
1520         (gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
1521         (gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
1522         (gst_xml_registry_rebuild):
1523         * gst/registries/gstlibxmlregistry.h:
1524         * tools/gst-compprep.c: (main):
1525         * tools/gst-inspect.c: (print_pad_templates_info):
1526         * tools/gst-xmlinspect.c: (print_element_info):
1527           Use libxml2 for registry parsing, use staticpadtemplates in
1528           elementfactories. Makes gst_init() +/- 10x faster.
1529
1530 2005-04-12  Wim Taymans  <wim@fluendo.com>
1531
1532         * gst/base/Makefile.am:
1533         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1534         (gst_basesink_pad_getcaps), (gst_basesink_init),
1535         (gst_basesink_event), (gst_basesink_change_state):
1536         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1537         (gst_basesrc_init), (gst_basesrc_query),
1538         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1539         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1540         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1541         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1542         (gst_basesrc_stop), (gst_basesrc_activate),
1543         (gst_basesrc_change_state):
1544         * gst/base/gsttypefindhelper.c: (helper_find_peek),
1545         (helper_find_suggest), (gst_type_find_helper):
1546         * gst/base/gsttypefindhelper.h:
1547         * gst/elements/Makefile.am:
1548         * gst/elements/gstelements.c:
1549         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1550         (gst_fakesink_get_times), (gst_fakesink_event),
1551         (gst_fakesink_preroll), (gst_fakesink_render):
1552         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1553         (gst_fakesrc_init), (gst_fakesrc_event_handler),
1554         (gst_fakesrc_get_property), (gst_fakesrc_create),
1555         (gst_fakesrc_start), (gst_fakesrc_stop):
1556         * gst/elements/gstfakesrc.h:
1557         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init),
1558         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1559         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1560         (gst_filesrc_create_read), (gst_filesrc_create),
1561         (gst_filesrc_is_seekable), (gst_filesrc_get_size),
1562         (gst_filesrc_start):
1563         * gst/elements/gsttypefindelement.c:
1564         (gst_type_find_element_have_type), (gst_type_find_element_init),
1565         (start_typefinding), (stop_typefinding), (push_buffer_store),
1566         (gst_type_find_element_handle_event),
1567         (gst_type_find_element_chain),
1568         (gst_type_find_element_checkgetrange),
1569         (gst_type_find_element_getrange), (do_typefind),
1570         (gst_type_find_element_activate),
1571         (gst_type_find_element_change_state):
1572         * gst/elements/gsttypefindelement.h:
1573         * gst/gstpipeline.c: (pipeline_bus_handler):
1574         Added typefind helper.
1575         Small preroll fix in the base sink.
1576         Disable typefind code in basesrc.
1577         Crude port of typefindelement.
1578         Fakesrc cleanups.
1579
1580
1581 2005-04-11  Wim Taymans  <wim@fluendo.com>
1582
1583         * check/gst/gstbus.c: (gstbus_suite):
1584         * check/gst/gstdata.c: (thread_ref), (gst_data_suite):
1585         * check/gstcheck.h:
1586           Fix up the timeout so that the test does not fail.
1587
1588 2005-04-06  Wim Taymans  <wim@fluendo.com>
1589
1590         * gst/base/README:
1591         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1592         (gst_basesrc_init), (gst_basesrc_get_formats), (gst_basesrc_query),
1593         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1594         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1595         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1596         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1597         (gst_basesrc_stop), (gst_basesrc_activate),
1598         (gst_basesrc_change_state), (basesrc_find_peek),
1599         (basesrc_find_suggest), (gst_basesrc_type_find):
1600         * gst/base/gstbasesrc.h:
1601         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
1602         (gst_filesrc_class_init), (gst_filesrc_init),
1603         (gst_filesrc_finalize), (gst_filesrc_set_location),
1604         (gst_filesrc_set_property), (gst_filesrc_get_property),
1605         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1606         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1607         (gst_filesrc_create_read), (gst_filesrc_create),
1608         (gst_filesrc_get_size), (gst_filesrc_start), (gst_filesrc_stop):
1609         * gst/elements/gstfilesrc.h:
1610         * gst/gstelement.c: (gst_element_get_state_func),
1611         (gst_element_lost_state), (gst_element_pads_activate):
1612         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1613         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1614         (gst_pad_pull_range):
1615         * gst/gstpad.h:
1616         More work on the generic source base class, implement seeking,
1617         query.
1618         Make filesrc extend the base source class.
1619         Added gst_pad_set_checkgetrange_function to GstPad.
1620
1621 2005-04-06  Andy Wingo  <wingo@pobox.com>
1622
1623         * pkgconfig/gstreamer-base.pc.in:
1624         * pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
1625
1626         * pkgconfig/Makefile.am:
1627         * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
1628
1629 2005-04-04  Wim Taymans  <wim@fluendo.com>
1630
1631         * gst/base/Makefile.am:
1632         * gst/base/README:
1633         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1634         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1635         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1636         (gst_basesink_do_sync), (gst_basesink_chain_unlocked):
1637         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1638         (gst_basesrc_base_init), (gst_basesrc_class_init),
1639         (gst_basesrc_init), (gst_basesrc_get_formats),
1640         (gst_basesrc_get_query_types), (gst_basesrc_query),
1641         (gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
1642         (gst_basesrc_set_property), (gst_basesrc_get_property),
1643         (gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
1644         (gst_basesrc_loop), (gst_basesrc_activate),
1645         (gst_basesrc_change_state):
1646         * gst/base/gstbasesrc.h:
1647         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
1648         (gst_fakesrc_class_init), (gst_fakesrc_init),
1649         (gst_fakesrc_event_handler), (gst_fakesrc_set_property),
1650         (gst_fakesrc_get_property), (gst_fakesrc_create):
1651         * gst/elements/gstfakesrc.h:
1652         * gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
1653         (gst_filesrc_open_file), (gst_filesrc_loop),
1654         (gst_filesrc_activate), (filesrc_find_peek),
1655         (gst_filesrc_type_find):
1656         Made base source class, make fakesrc extend it.
1657         Add comments to basesink class.
1658         Some filesrc cleanup.
1659
1660 2005-03-31  David Schleef  <ds@schleef.org>
1661
1662         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
1663         Switch to using G_MODULE_BIND_LOCAL, which means plugins are now
1664         expected to link against libgstreamer.
1665         * gst/base/Makefile.am: link against libgstreamer
1666         * gst/elements/Makefile.am: same
1667
1668 2005-03-31  Andy Wingo  <wingo@pobox.com>
1669
1670         * tests/instantiate/Makefile.am:
1671         * tests/instantiate/caps.c: Add test to test speed of caps copy
1672         and free.
1673
1674         * tests/memchunk/gmemchunktest.c (main): Use alloc only on the
1675         GMemChunk to be fair.
1676
1677         * gst/gsttrashstack.h: Remove warning about using the fallback
1678         trash stack implementation, it's still faster than malloc.
1679
1680 2005-03-30  Andy Wingo  <wingo@pobox.com>
1681
1682         * tests/complexity.c: Add a copyright.
1683
1684 2005-03-31  Wim Taymans  <wim@fluendo.com>
1685
1686         * gst/base/gstbasetransform.c: (gst_base_transform_base_init),
1687         (gst_base_transform_class_init), (gst_base_transform_init),
1688         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
1689         (gst_base_transform_get_property),
1690         (gst_base_transform_sink_activate),
1691         (gst_base_transform_src_activate),
1692         (gst_base_transform_change_state):
1693         * gst/base/gstbasetransform.h:
1694         * gst/elements/gstidentity.c: (gst_identity_class_init),
1695         (gst_identity_event), (gst_identity_check_perfect),
1696         (gst_identity_transform), (gst_identity_start),
1697         (gst_identity_stop):
1698         Added start/stop methods to transform base class so subclasses 
1699         don't need to deal with state changes even.
1700
1701 2005-03-31  Wim Taymans  <wim@fluendo.com>
1702
1703         * gst/gstevent.c: (gst_event_new_discontinuous_valist),
1704         (gst_event_new_discontinuous), (gst_event_discont_get_value):
1705         * gst/gstevent.h:
1706         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1707         (gst_pad_pull_range):
1708         Added rate to the discont event to prepare for variable speed
1709         and reverse playback.
1710
1711 2005-03-29  David Schleef  <ds@schleef.org>
1712
1713         * configure.ac:
1714         * testsuite/trigger/Makefile.am:
1715         * testsuite/trigger/trigger.c: A little example program to show
1716         how trigger-based elements can work.
1717
1718 2005-03-29  Wim Taymans  <wim@fluendo.com>
1719
1720         * gst/base/Makefile.am:
1721         * gst/base/README:
1722         * gst/base/gstbasesink.c: (gst_basesink_get_type),
1723         (gst_basesink_base_init), (gst_basesink_class_init),
1724         (gst_basesink_pad_getcaps), (gst_basesink_init),
1725         (gst_basesink_activate), (gst_basesink_change_state):
1726         * gst/base/gstbasesink.h:
1727         * gst/base/gstbasetransform.c: (gst_base_transform_get_type),
1728         (gst_base_transform_base_init), (gst_base_transform_finalize),
1729         (gst_base_transform_class_init), (gst_base_transform_init),
1730         (gst_base_transform_proxy_getcaps), (gst_base_transform_setcaps),
1731         (gst_base_transform_event), (gst_base_transform_getrange),
1732         (gst_base_transform_chain), (gst_base_transform_handle_buffer),
1733         (gst_base_transform_set_property),
1734         (gst_base_transform_get_property),
1735         (gst_base_transform_sink_activate),
1736         (gst_base_transform_src_activate),
1737         (gst_base_transform_change_state):
1738         * gst/base/gstbasetransform.h:
1739         * gst/elements/gstidentity.c: (gst_identity_finalize),
1740         (gst_identity_class_init), (gst_identity_init),
1741         (gst_identity_event), (gst_identity_check_perfect),
1742         (gst_identity_transform), (gst_identity_set_property),
1743         (gst_identity_get_property), (gst_identity_change_state):
1744         * gst/elements/gstidentity.h:
1745         * gst/gstelement.c: (gst_element_get_state_func),
1746         (gst_element_lost_state), (gst_element_pads_activate):
1747         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1748         (gst_pad_check_pull_range), (gst_pad_pull_range):
1749         * gst/gstpad.h:
1750         Simplify pad activation.
1751         Added function to check if pull_range can be performed.
1752         Error out when pulling inactive or flushing pads.
1753         Removed const from refcounted types as it does not make sense.
1754         Simplify pad templates in basesink
1755         Added base class for simple 1-to-1 transforms.
1756         Make identity subclass the base transform.
1757
1758 2005-03-29  Andy Wingo  <wingo@pobox.com>
1759
1760         * docs/libs/gstreamer-libs-overrides.txt: 
1761         * docs/gst/gstreamer-overrides.txt: Add these files to CVS. Now I
1762         really don't understand what's going on, but like whatever. I want
1763         green buildbot!
1764
1765         * docs/gst/Makefile.am:
1766         * docs/libs/Makefile.am: Dist the overrides files.
1767
1768         * check/Makefile.am (clean-local): Remove .libs directories.
1769
1770         * gst/elements/Makefile.am (EXTRA_DIST): Add all the attic
1771         elements to EXTRA_DIST, so po/ files are happy.
1772
1773         * po/POTFILES.in: Er, remove it here.
1774
1775         * po/POTFILES: Remove gstspider.c.
1776
1777         * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
1778
1779         * docs/libs/gstreamer-libs-docs.sgml: 
1780         * docs/libs/gstreamer-libs-sections.txt: Remove the section on
1781         bytestream.
1782
1783         * tests/complexity.c (main): Set the length of the preroll queue
1784         on the sinks to prevent a lockup.
1785
1786         * libs/gst/dataprotocol/Makefile.am: 
1787         * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
1788         the same as the one in check/gst-libs/gdp.c.
1789
1790         * po/, docs/gst/: Commit automatic changes to docs and po files.
1791
1792         * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to
1793         the versioned libgstbase.
1794
1795         * check/Makefile.am: Depend on an unversioned gst-register, seems
1796         to make autoconf happier.
1797
1798         * gst/base/Makefile.am: Make libgstbase a versioned lib.
1799
1800 2005-03-28  Wim Taymans  <wim@fluendo.com>
1801
1802         * configure.ac:
1803         * docs/design/part-gstelement.txt:
1804         * docs/design/part-negotiation.txt:
1805         * docs/design/part-preroll.txt:
1806         * docs/design/part-scheduling.txt:
1807         * docs/design/part-states.txt:
1808         * gst/Makefile.am:
1809         * gst/base/Makefile.am:
1810         * gst/base/README:
1811         * gst/base/gstbasesink.c: (gst_basesink_get_template),
1812         (gst_basesink_base_init), (gst_basesink_class_init),
1813         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1814         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1815         (gst_basesink_set_pad_functions),
1816         (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock),
1817         (gst_basesink_set_property), (gst_basesink_get_property),
1818         (gst_base_sink_get_template), (gst_base_sink_get_caps),
1819         (gst_base_sink_set_caps), (gst_base_sink_buffer_alloc),
1820         (gst_basesink_preroll_queue_push),
1821         (gst_basesink_preroll_queue_empty),
1822         (gst_basesink_preroll_queue_flush), (gst_basesink_finish_preroll),
1823         (gst_basesink_event), (gst_basesink_get_times),
1824         (gst_basesink_do_sync), (gst_basesink_handle_buffer),
1825         (gst_basesink_chain_unlocked), (gst_basesink_chain),
1826         (gst_basesink_loop), (gst_basesink_activate),
1827         (gst_basesink_change_state):
1828         * gst/base/gstbasesink.h:
1829         * gst/elements/Makefile.am:
1830         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
1831         (gst_fakesink_class_init), (gst_fakesink_init),
1832         (gst_fakesink_set_property), (gst_fakesink_get_property),
1833         (gst_fakesink_get_times), (gst_fakesink_event),
1834         (gst_fakesink_preroll), (gst_fakesink_render),
1835         (gst_fakesink_change_state):
1836         * gst/elements/gstfakesink.h:
1837         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
1838         (gst_bin_get_state), (gst_bin_change_state), (gst_bin_send_event):
1839         * gst/gstelement.c: (gst_element_add_pad),
1840         (gst_element_get_state_func), (gst_element_abort_state),
1841         (gst_element_commit_state), (gst_element_lost_state),
1842         (gst_element_set_state), (gst_element_pads_activate):
1843         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_event_default):
1844         * gst/gstpipeline.c: (gst_pipeline_send_event),
1845         (gst_pipeline_change_state):
1846         Added state change code.
1847         Added/updated docs.
1848         Added sink base class, make fakesink extend the base class.
1849         Small cleanups in GstPipeline.
1850
1851 2005-03-26  David Schleef  <ds@schleef.org>
1852
1853         * gst/Makefile.am: remove gstcpu.[ch].  The gst_cpu functionality
1854         is broken and should be implemented in a different library.
1855         * gst/gst.c: (init_post): don't call _gst_cpu_initialize()
1856         * gst/gst.h: remove gstcpu.h
1857         * gst/gstcpu.c: remove
1858         * gst/gstcpu.h: remove
1859         * gst/Makefile.am.future: Remove this file.  It's ancient.
1860
1861 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1862
1863         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
1864         (gst_bin_send_event):
1865           Add default event/set_manager handlers. The set_manager handler
1866           takes care that the manager is distributed over kids that were
1867           already in the bin before the manager was set. The event handler
1868           is a utility virtual function that sends the event over all sinks,
1869           so that gst_element_send_event (bin, event); has the expected
1870           behaviour.
1871         * gst/gstpad.c: (gst_pad_event_default):
1872           Re-install default event handling for discontinuities, so that
1873           seeking works without requiring hacks in applications or extra
1874           code in sinks.
1875         * gst/gstpipeline.c: (gst_pipeline_class_init),
1876         (gst_pipeline_send_event):
1877           Half hack, half utility: set a pipeline to PAUSED for seek events,
1878           since that is the only way we can guarantee a/v sync. Means that
1879           you can do gst_element_seek (pipeline, method, pos); on a pipeline
1880           and it "just works".
1881
1882 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1883
1884         * gst/gstpipeline.c: (gst_pipeline_use_clock):
1885           Lock/unlock mismatch.
1886
1887 2005-03-25  Thomas Vander Stichele  <thomas at apestaart dot org>
1888
1889         * docs/faq/gst-uninstalled:
1890           add gst-plugins-base
1891         * docs/gst/Makefile.am:
1892           don't error out until docs are fixed
1893         * docs/gst/gstreamer.types:
1894           remove thread
1895
1896 2005-03-22  Wim Taymans  <wim@fluendo.com>
1897
1898         * check/Makefile.am:
1899         * check/gst/gstmessage.c: (START_TEST), (gst_data_suite), (main):
1900         * gst/gststructure.c: (gst_structure_set_valist),
1901         (gst_structure_copy_conditional):
1902         Activated more tests.
1903         Added message test.
1904         Added G_TYPE_POINTER to GstStructure.
1905         
1906
1907 2005-03-22  Wim Taymans  <wim@fluendo.com>
1908
1909         * docs/design/part-TODO.txt:
1910         * docs/design/part-events.txt:
1911         * docs/design/part-gstbin.txt:
1912         * docs/design/part-gstbus.txt:
1913         * docs/design/part-gstpipeline.txt:
1914         * docs/design/part-messages.txt:
1915         * gst/gstbus.c:
1916         * gst/gstmessage.c:
1917         Docs updates
1918
1919 2005-03-21  Wim Taymans  <wim@fluendo.com>
1920
1921         * gst/gstbus.c: (gst_bus_post):
1922         Fix copy-and-paste error.
1923
1924 2005-03-21  Wim Taymans  <wim@fluendo.com>
1925
1926         * check/Makefile.am:
1927         * gst/Makefile.am:
1928         * gst/elements/Makefile.am:
1929         * gst/elements/gstelements.c:
1930         * gst/elements/gstfakesink.c: (gst_fakesink_init),
1931         (gst_fakesink_event), (gst_fakesink_chain):
1932         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1933         (gst_fakesrc_init), (gst_fakesrc_get_event_mask),
1934         (gst_fakesrc_event_handler), (gst_fakesrc_set_pad_functions),
1935         (gst_fakesrc_set_all_pad_functions), (gst_fakesrc_request_new_pad),
1936         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
1937         (gst_fakesrc_get_range_unlocked), (gst_fakesrc_get_range),
1938         (gst_fakesrc_loop), (gst_fakesrc_activate),
1939         (gst_fakesrc_change_state):
1940         * gst/elements/gstfakesrc.h:
1941         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
1942         (gst_filesrc_get_read), (gst_filesrc_getrange), (gst_filesrc_get),
1943         (gst_filesrc_open_file), (gst_filesrc_loop),
1944         (gst_filesrc_activate), (gst_filesrc_change_state),
1945         (filesrc_find_peek), (filesrc_find_suggest),
1946         (gst_filesrc_type_find):
1947         * gst/elements/gstidentity.c: (gst_identity_finalize),
1948         (gst_identity_class_init), (gst_identity_init),
1949         (gst_identity_proxy_getcaps), (identity_queue_push),
1950         (identity_queue_pop), (identity_queue_flush), (gst_identity_event),
1951         (gst_identity_getrange), (gst_identity_chain),
1952         (gst_identity_sink_loop), (gst_identity_src_loop),
1953         (gst_identity_handle_buffer), (gst_identity_set_dataflow_funcs),
1954         (gst_identity_set_property), (gst_identity_get_property),
1955         (gst_identity_change_state):
1956         * gst/elements/gstidentity.h:
1957         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
1958         (gst_tee_update_pad_functions), (gst_tee_request_new_pad),
1959         (gst_tee_set_property), (gst_tee_get_property), (gst_tee_do_push),
1960         (gst_tee_handle_buffer), (gst_tee_chain), (gst_tee_loop),
1961         (gst_tee_sink_activate):
1962         * gst/elements/gsttee.h:
1963         * gst/gst.c: (gst_register_core_elements), (init_post):
1964         * gst/gst.h:
1965         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_bus),
1966         (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_add),
1967         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_get_state),
1968         (gst_bin_change_state):
1969         * gst/gstbin.h:
1970         * gst/gstbus.c: (gst_bus_get_type), (gst_bus_class_init),
1971         (gst_bus_init), (gst_bus_dispose), (gst_bus_set_property),
1972         (gst_bus_get_property), (gst_bus_new), (gst_bus_post),
1973         (gst_bus_have_pending), (gst_bus_pop), (gst_bus_peek),
1974         (gst_bus_set_sync_handler), (gst_bus_create_watch),
1975         (bus_watch_callback), (bus_watch_destroy),
1976         (gst_bus_add_watch_full), (gst_bus_add_watch), (poll_handler),
1977         (poll_timeout), (gst_bus_poll):
1978         * gst/gstbus.h:
1979         * gst/gstcaps.h:
1980         * gst/gstdata.h:
1981         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
1982         (gst_element_post_message), (gst_element_message_full),
1983         (gst_element_get_state_func), (gst_element_get_state),
1984         (gst_element_abort_state), (gst_element_commit_state),
1985         (gst_element_lost_state), (gst_element_set_state),
1986         (gst_element_pads_activate), (gst_element_change_state),
1987         (gst_element_dispose), (gst_element_set_manager_func),
1988         (gst_element_set_bus_func), (gst_element_set_scheduler_func),
1989         (gst_element_set_manager), (gst_element_get_manager),
1990         (gst_element_set_bus), (gst_element_get_bus),
1991         (gst_element_set_scheduler), (gst_element_get_scheduler):
1992         * gst/gstelement.h:
1993         * gst/gstevent.c: (gst_event_new_segment_seek),
1994         (gst_event_new_flush):
1995         * gst/gstevent.h:
1996         * gst/gstmessage.c: (_gst_message_initialize), (_gst_message_copy),
1997         (_gst_message_free), (gst_message_get_type), (gst_message_new),
1998         (gst_message_new_eos), (gst_message_new_error),
1999         (gst_message_new_warning), (gst_message_new_tag),
2000         (gst_message_new_state_changed), (gst_message_new_application),
2001         (gst_message_get_structure), (gst_message_parse_tag),
2002         (gst_message_parse_state_changed), (gst_message_parse_error),
2003         (gst_message_parse_warning):
2004         * gst/gstmessage.h:
2005         * gst/gstpad.c: (gst_real_pad_class_init), (gst_real_pad_init),
2006         (gst_real_pad_set_property), (gst_pad_set_active),
2007         (gst_pad_is_active), (gst_pad_set_blocked_async),
2008         (gst_pad_set_blocked), (gst_pad_is_blocked),
2009         (gst_pad_set_activate_function), (gst_pad_set_loop_function),
2010         (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function),
2011         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
2012         (gst_pad_unlink), (gst_pad_link_prepare_filtered),
2013         (gst_pad_link_filtered), (gst_pad_relink_filtered),
2014         (gst_real_pad_get_caps_unlocked), (gst_pad_get_caps),
2015         (gst_pad_peer_get_caps), (gst_pad_fixate_caps),
2016         (gst_pad_accept_caps), (gst_pad_peer_accept_caps),
2017         (gst_pad_set_caps), (gst_pad_configure_sink),
2018         (gst_pad_configure_src), (gst_pad_get_negotiated_caps),
2019         (gst_pad_get_filter_caps), (gst_pad_alloc_buffer),
2020         (gst_real_pad_dispose), (gst_real_pad_finalize),
2021         (handle_pad_block), (gst_pad_push), (gst_pad_pull_range),
2022         (gst_pad_event_default_dispatch), (gst_pad_event_default),
2023         (gst_pad_push_event), (gst_pad_send_event), (gst_pad_get_formats):
2024         * gst/gstpad.h:
2025         * gst/gstpipeline.c: (gst_pipeline_init), (is_eos),
2026         (pipeline_bus_handler), (gst_pipeline_change_state),
2027         (gst_pipeline_get_scheduler), (gst_pipeline_get_bus):
2028         * gst/gstpipeline.h:
2029         * gst/gstprobe.h:
2030         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
2031         (gst_queue_finalize), (gst_queue_getcaps), (gst_queue_link_sink),
2032         (gst_queue_link_src), (gst_queue_bufferalloc),
2033         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
2034         (gst_queue_is_empty), (gst_queue_is_filled), (gst_queue_chain),
2035         (gst_queue_loop), (gst_queue_handle_src_event),
2036         (gst_queue_handle_src_query), (gst_queue_src_activate),
2037         (gst_queue_change_state):
2038         * gst/gstqueue.h:
2039         * gst/gstscheduler.c: (gst_scheduler_init),
2040         (gst_scheduler_dispose), (gst_scheduler_create_task),
2041         (gst_scheduler_factory_create):
2042         * gst/gstscheduler.h:
2043         * gst/gststructure.c: (gst_structure_get_type),
2044         (gst_structure_copy_conditional):
2045         * gst/gststructure.h:
2046         * gst/gsttaginterface.h:
2047         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
2048         (gst_task_init), (gst_task_dispose), (gst_task_create),
2049         (gst_task_get_state), (gst_task_start), (gst_task_stop),
2050         (gst_task_pause):
2051         * gst/gsttask.h:
2052         * gst/gstthread.c:
2053         * gst/gstthread.h:
2054         * gst/gsttypes.h:
2055         * gst/schedulers/Makefile.am:
2056         * gst/schedulers/cothreads_compat.h:
2057         * gst/schedulers/entryscheduler.c:
2058         * gst/schedulers/faircothreads.c:
2059         * gst/schedulers/faircothreads.h:
2060         * gst/schedulers/fairscheduler.c:
2061         * gst/schedulers/gstbasicscheduler.c:
2062         * gst/schedulers/gstoptimalscheduler.c:
2063         * gst/schedulers/gthread-cothreads.h:
2064         * gst/schedulers/threadscheduler.c:
2065         (gst_thread_scheduler_task_get_type),
2066         (gst_thread_scheduler_task_class_init),
2067         (gst_thread_scheduler_task_init),
2068         (gst_thread_scheduler_task_start),
2069         (gst_thread_scheduler_task_stop),
2070         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_get_type),
2071         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
2072         (gst_thread_scheduler_init), (gst_thread_scheduler_create_task),
2073         (gst_thread_scheduler_setup), (gst_thread_scheduler_reset),
2074         (plugin_init):
2075         * libs/gst/Makefile.am:
2076         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf):
2077         * libs/gst/bytestream/filepad.c: (gst_file_pad_init),
2078         (gst_file_pad_parent_set):
2079         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
2080         (gst_dp_event_from_packet):
2081         * tests/complexity.c: (main):
2082         * tests/mass_elements.c: (main):
2083         * testsuite/states/locked.c: (message_received), (main):
2084         * testsuite/states/parent.c: (main):
2085         * tools/gst-inspect.c: (print_element_flag_info),
2086         (print_implementation_info), (print_pad_info):
2087         * tools/gst-launch.c: (check_intr), (play_handler), (event_loop),
2088         (main):
2089         * tools/gst-md5sum.c: (event_loop), (main):
2090         * tools/gst-typefind.c: (main):
2091         * tools/gst-xmlinspect.c: (print_element_info):
2092         Next big merge.
2093         Added GstBus for mainloop integration.
2094         Added GstMessage for sending notifications on the bus.
2095         Added GstTask as an abstraction for pipeline entry points.
2096         Removed GstThread.
2097         Removed Schedulers.
2098         Simplified GstQueue for multithreaded core.
2099         Made _link threadsafe, removed old capsnego.
2100         Added STREAM_LOCK and PREROLL_LOCK in GstPad.
2101         Added pad blocking functions.
2102         Reworked scheduling functions in GstPad to prepare for
2103         scheduling updates soon.
2104         Moved events out of data stream.
2105         Simplified GstEvent types.
2106         Added return values to push/pull.
2107         Removed clocking from GstElement.
2108         Added prototypes for state change function for next merge.
2109         Removed iterate from bins and state change management.
2110         Fixed some elements, disabled others for now.
2111         Fixed -inspect and -launch.
2112         Added check for GstBus.
2113
2114 2005-03-10  Wim Taymans  <wim@fluendo.com>
2115
2116         * docs/design/part-MT-refcounting.txt:
2117         * docs/design/part-clocks.txt:
2118         * docs/design/part-gstelement.txt:
2119         * docs/design/part-gstobject.txt:
2120         * docs/design/part-standards.txt:
2121         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2122         (gst_bin_remove_func), (gst_bin_remove):
2123         * gst/gstbin.h:
2124         * gst/gstbuffer.c:
2125         * gst/gstcaps.h:
2126         * testsuite/clock/clock1.c: (main):
2127         * testsuite/clock/clock2.c: (gst_clock_debug), (element_wait),
2128         (main):
2129         * testsuite/dlopen/loadgst.c: (do_test):
2130         * testsuite/refcounting/bin.c: (add_remove_test1),
2131         (add_remove_test2), (main):
2132         * testsuite/refcounting/element.c: (main):
2133         * testsuite/refcounting/element_pad.c: (main):
2134         * testsuite/refcounting/pad.c: (main):
2135         * tools/gst-launch.c: (sigint_handler_sighandler):
2136         * tools/gst-typefind.c: (main):
2137         Doc updates.
2138         Added doc about clock.
2139         removed gst_bin_iterate_recurse_up(), marked methods
2140         for removal.
2141         Fix more testsuites.
2142
2143 2005-03-09  Wim Taymans  <wim@fluendo.com>
2144
2145         * gst/gstpad.c: (gst_pad_get_direction),
2146         (_gst_pad_default_fixate_foreach), (gst_pad_collectv),
2147         (gst_pad_collect_valist):
2148         * testsuite/bins/interface.c: (main):
2149         * testsuite/caps/audioscale.c: (test_caps):
2150         * testsuite/caps/caps.c: (test1), (test2), (test3):
2151         * testsuite/caps/deserialize.c: (main):
2152         * testsuite/caps/enumcaps.c: (main):
2153         * testsuite/caps/filtercaps.c: (main):
2154         * testsuite/caps/intersect2.c: (main):
2155         * testsuite/caps/random.c: (main):
2156         * testsuite/caps/renegotiate.c: (my_fixate), (main):
2157         * testsuite/caps/sets.c: (check_caps):
2158         * testsuite/caps/simplify.c: (check_caps), (main):
2159         * testsuite/caps/subtract.c: (check_caps):
2160         Fix _pad_get_direction wrt ghostpads.
2161         Fix caps testsuite.
2162
2163 2005-03-09  Wim Taymans  <wim@fluendo.com>
2164
2165         * check/Makefile.am:
2166         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite), (main):
2167         * check/gst/gstsystemclock.c: (START_TEST), (gst_clock_debug),
2168         (ok_callback), (error_callback), (gst_systemclock_suite), (main):
2169         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func),
2170         (gst_bin_set_clock_func), (gst_bin_get_clock_func),
2171         (gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
2172         (gst_bin_remove), (gst_bin_iterate_recurse_up),
2173         (bin_element_is_sink), (gst_bin_iterate_sinks),
2174         (gst_bin_iterate_all_by_interface):
2175         * gst/gstbin.h:
2176         * gst/gstelement.c: (gst_element_init), (gst_element_error_full),
2177         (gst_element_change_state), (gst_element_dispose),
2178         (gst_element_finalize), (gst_element_set_loop_function):
2179         * gst/gstelement.h:
2180         * gst/gstiterator.c: (find_custom_fold_func):
2181         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2182         (gst_pad_collectv), (gst_pad_collect_valist),
2183         (gst_pad_template_new):
2184         * gst/gstpipeline.c: (gst_pipeline_class_init),
2185         (gst_pipeline_dispose), (gst_pipeline_set_property),
2186         (gst_pipeline_get_property), (gst_pipeline_get_clock_func),
2187         (gst_pipeline_get_clock), (gst_pipeline_use_clock),
2188         (gst_pipeline_set_clock), (gst_pipeline_auto_clock):
2189         * gst/gstutils.h:
2190         * gst/schedulers/entryscheduler.c:
2191         * gst/schedulers/gstbasicscheduler.c:
2192         (gst_basic_scheduler_cothreaded_chain),
2193         (gst_basic_scheduler_chain_add_element):
2194         * testsuite/bins/interface.c: (main):
2195         Added GstBin test.
2196         Added GstSystemClock test.
2197         Implemented clock distribution code in GstBin.
2198         Implemented iterate sinks method for future use.
2199         Rearranged gstelement.h
2200         Fix GstIterator comparison bug.
2201         Moved some code to GstPipeline, mostly clocking related.
2202
2203 2005-03-09  Wim Taymans  <wim@fluendo.com>
2204
2205         * configure.ac:
2206         * gst/gst_private.h:
2207         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2208         (gst_bin_remove_func), (gst_bin_remove),
2209         (gst_bin_get_by_name_recurse_up):
2210         * gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
2211         (gst_clock_id_compare_func), (gst_clock_id_wait),
2212         (gst_clock_id_wait_async), (gst_clock_init),
2213         (gst_clock_adjust_unlocked), (gst_clock_get_time):
2214         * gst/gstelement.h:
2215         * gst/gstinfo.c: (_gst_debug_init):
2216         * gst/gstobject.h:
2217         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2218         (gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
2219         * gst/gstpad.h:
2220         Bump version number, we're now 0.9.0
2221         Add future debugging category.
2222         Fix NULL _unref() in _get_by_name_recurse_up
2223         Rearrange gstpad.h.
2224         Update some docs.
2225
2226 2005-03-08  Wim Taymans  <wim@fluendo.com>
2227
2228         * gst/elements/gstaggregator.c: (gst_aggregator_class_init):
2229         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
2230         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
2231         * gst/elements/gstfdsink.c: (gst_fdsink_class_init):
2232         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init):
2233         * gst/elements/gstfilesink.c: (gst_filesink_class_init):
2234         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init):
2235         * gst/elements/gstidentity.c: (gst_identity_class_init):
2236         * gst/elements/gstmd5sink.c: (gst_md5sink_class_init):
2237         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
2238         * gst/elements/gstshaper.c: (gst_shaper_class_init):
2239         * gst/elements/gststatistics.c: (gst_statistics_class_init):
2240         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_getcaps),
2241         (gst_tee_link):
2242         * gst/gstelement.c: (gst_element_class_init),
2243         (gst_element_base_class_init), (gst_element_init),
2244         (gst_element_get_random_pad), (gst_element_wait_state_change),
2245         (gst_element_change_state), (gst_element_dispose),
2246         (gst_element_finalize), (gst_element_set_loop_function):
2247         * gst/gstelement.h:
2248         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_link_src):
2249         * gst/gstthread.c: (gst_thread_class_init),
2250         (gst_thread_release_children_locks), (gst_thread_change_state):
2251         * gst/schedulers/gstbasicscheduler.c:
2252         (gst_basic_scheduler_loopfunc_wrapper),
2253         (gst_basic_scheduler_chain_wrapper),
2254         (gst_basic_scheduler_src_wrapper),
2255         (gst_basic_scheduler_remove_element):
2256         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
2257         Remove threadsafe properties. Fix elements because GObject
2258         complains when installing a property before declaring a
2259         set/get_property handler.
2260         Rearrange gstelement.h file, use STATE macros for state locks.
2261         Free mutexes in the finalize method instead of dispose.
2262
2263 2005-03-08  Wim Taymans  <wim@fluendo.com>
2264
2265         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
2266         * gst/gstthread.c: (gst_thread_release_children_locks):
2267         Added parentage check.
2268         Fix build og GstThread again.
2269
2270 2005-03-08  Wim Taymans  <wim@fluendo.com>
2271
2272         * docs/design/part-MT-refcounting.txt:
2273         * docs/design/part-conventions.txt:
2274         * docs/design/part-gstobject.txt:
2275         * docs/design/part-relations.txt:
2276         * docs/design/part-standards.txt:
2277         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2278         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
2279         (gst_bin_get_by_name), (gst_bin_get_by_interface),
2280         (gst_bin_iterate_all_by_interface):
2281         * gst/gstbuffer.h:
2282         * gst/gstclock.h:
2283         * gst/gstelement.c: (gst_element_class_init),
2284         (gst_element_change_state), (gst_element_set_loop_function):
2285         * gst/gstelement.h:
2286         * gst/gstiterator.c:
2287         * gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
2288         (gst_object_unref), (gst_object_sink), (gst_object_dispose),
2289         (gst_object_dispatch_properties_changed), (gst_object_set_name),
2290         (gst_object_set_parent), (gst_object_unparent),
2291         (gst_object_check_uniqueness):
2292         * gst/gstobject.h:
2293         Docs updates, clean up some headers.
2294
2295 2005-03-07  Wim Taymans  <wim@fluendo.com>
2296
2297         * check/.cvsignore:
2298         * check/Makefile.am:
2299         * check/gst-libs/.cvsignore:
2300         * check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
2301         * check/gst/.cvsignore:
2302         * check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
2303         (START_TEST), (gstbus_suite), (main):
2304         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
2305         * check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
2306         (gst_data_suite), (main):
2307         * check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
2308         (add_fold_func), (gstiterator_suite), (main):
2309         * check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
2310         (thread_name_object), (thread_name_object_default),
2311         (gst_object_name_compare), (gst_object_suite), (main):
2312         * check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
2313         (gst_pad_suite), (main):
2314         * check/gstcheck.c: (gst_check_log_message_func),
2315         (gst_check_log_critical_func), (gst_check_init):
2316         * check/gstcheck.h:
2317         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
2318         (run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
2319         Added checks.
2320
2321 2005-03-07  Wim Taymans  <wim@fluendo.com>
2322
2323         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
2324         (gst_list_iterator_next), (gst_list_iterator_resync),
2325         (gst_list_iterator_free), (gst_iterator_new_list),
2326         (gst_iterator_pop), (gst_iterator_next), (gst_iterator_resync),
2327         (gst_iterator_free), (gst_iterator_push), (filter_next),
2328         (filter_resync), (filter_uninit), (filter_free),
2329         (gst_iterator_filter), (gst_iterator_fold), (foreach_fold_func),
2330         (gst_iterator_foreach), (find_custom_fold_func),
2331         (gst_iterator_find_custom):
2332         * gst/gstiterator.h:
2333         Added missing files.
2334
2335 2005-03-07  Wim Taymans  <wim@fluendo.com>
2336
2337         * Makefile.am:
2338         * configure.ac:
2339         * docs/design/part-MT-refcounting.txt:
2340         * docs/design/part-conventions.txt:
2341         * docs/design/part-gstobject.txt:
2342         * docs/design/part-relations.txt:
2343         * examples/mixer/mixer.c: (main):
2344         * examples/thread/thread.c: (eos), (main):
2345         * gst/Makefile.am:
2346         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
2347         * gst/autoplug/gstspider.c: (gst_spider_identity_plug),
2348         (gst_spider_plug_from_srcpad):
2349         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps),
2350         (gst_spider_identity_change_state),
2351         (gst_spider_identity_sink_loop_type_finding):
2352         * gst/elements/gstfakesrc.c: (gst_fakesrc_loop):
2353         * gst/elements/gstidentity.c: (gst_identity_init):
2354         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_getcaps),
2355         (gst_tee_link), (gst_tee_request_new_pad), (gst_tee_chain):
2356         * gst/elements/gsttypefindelement.c: (free_entry):
2357         * gst/gst.c:
2358         * gst/gst.h:
2359         * gst/gstbin.c: (gst_bin_init), (gst_bin_get_clock_func),
2360         (gst_bin_set_clock_func), (gst_bin_auto_clock),
2361         (gst_bin_set_index), (gst_bin_set_element_sched),
2362         (gst_bin_unset_element_sched), (gst_bin_add_func), (gst_bin_add),
2363         (gst_bin_remove_func), (gst_bin_remove), (iterate_child),
2364         (gst_bin_iterate_elements), (iterate_child_recurse),
2365         (gst_bin_iterate_recurse), (gst_bin_dispose), (compare_name),
2366         (gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
2367         (compare_interface), (gst_bin_get_by_interface),
2368         (gst_bin_iterate_all_by_interface), (gst_bin_iterate_func):
2369         * gst/gstbin.h:
2370         * gst/gstbuffer.c: (gst_buffer_get_type), (_gst_buffer_sub_free),
2371         (gst_buffer_default_free), (gst_buffer_default_copy),
2372         (gst_buffer_new), (gst_buffer_get_caps), (gst_buffer_set_caps),
2373         (gst_buffer_create_sub):
2374         * gst/gstbuffer.h:
2375         * gst/gstcaps.c: (gst_caps_get_type), (gst_caps_new_empty),
2376         (_gst_caps_free), (gst_caps_make_writable), (gst_caps_ref),
2377         (gst_caps_unref), (gst_static_caps_get),
2378         (gst_caps_remove_and_get_structure), (gst_caps_append),
2379         (gst_caps_append_structure), (gst_caps_remove_structure),
2380         (gst_caps_copy_nth), (gst_caps_set_simple),
2381         (gst_caps_set_simple_valist), (gst_caps_is_fixed_foreach),
2382         (gst_structure_is_equal_foreach), (gst_caps_is_subset),
2383         (gst_caps_structure_intersect_field), (gst_caps_intersect),
2384         (gst_caps_structure_subtract_field), (gst_caps_subtract),
2385         (gst_caps_normalize_foreach), (gst_caps_compare_structures),
2386         (gst_caps_structure_figure_out_union),
2387         (gst_caps_switch_structures), (gst_caps_do_simplify),
2388         (gst_caps_replace), (gst_caps_from_string),
2389         (gst_caps_copy_conditional):
2390         * gst/gstcaps.h:
2391         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_ref),
2392         (_gst_clock_id_free), (gst_clock_id_unref),
2393         (gst_clock_id_compare_func), (gst_clock_id_wait),
2394         (gst_clock_id_wait_async), (gst_clock_class_init),
2395         (gst_clock_init), (gst_clock_dispose), (gst_clock_adjust_unlocked),
2396         (gst_clock_get_time), (gst_clock_set_time_adjust),
2397         (gst_clock_set_property), (gst_clock_get_property):
2398         * gst/gstclock.h:
2399         * gst/gstcompat.h:
2400         * gst/gstcpu.c: (_gst_cpu_initialize_i386), (gst_cpu_get_flags):
2401         * gst/gstdata.c: (gst_data_is_writable), (gst_data_copy_on_write):
2402         * gst/gstdata.h:
2403         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
2404         (gst_element_requires_clock), (gst_element_provides_clock),
2405         (gst_element_set_clock), (gst_element_clock_wait),
2406         (gst_element_wait), (gst_element_set_time_delay),
2407         (gst_element_is_indexable), (gst_element_add_pad),
2408         (gst_element_add_ghost_pad), (gst_element_remove_pad),
2409         (pad_compare_name), (gst_element_get_static_pad),
2410         (gst_element_request_pad), (gst_element_get_request_pad),
2411         (gst_element_get_pad), (iterate_pad), (gst_element_iterate_pads),
2412         (gst_element_class_get_pad_template_list),
2413         (gst_element_class_get_pad_template), (gst_element_error_func),
2414         (gst_element_get_random_pad), (gst_element_get_event_masks),
2415         (gst_element_send_event), (gst_element_seek),
2416         (gst_element_get_query_types), (gst_element_query),
2417         (gst_element_get_formats), (gst_element_convert),
2418         (gst_element_is_locked_state), (gst_element_set_locked_state),
2419         (gst_element_sync_state_with_parent), (gst_element_change_state),
2420         (gst_element_finalize), (gst_element_yield),
2421         (gst_element_interrupt), (gst_element_set_scheduler),
2422         (gst_element_get_scheduler), (gst_element_set_loop_function):
2423         * gst/gstelement.h:
2424         * gst/gstevent.h:
2425         * gst/gstformat.c: (_gst_format_initialize), (gst_format_register),
2426         (gst_format_get_by_nick), (gst_format_get_details),
2427         (gst_format_iterate_definitions):
2428         * gst/gstformat.h:
2429         * gst/gstindex.c: (gst_index_gtype_resolver):
2430         * gst/gstinfo.c:
2431         * gst/gstinfo.h:
2432         * gst/gstmemchunk.c: (gst_mem_chunk_alloc), (gst_mem_chunk_alloc0),
2433         (gst_mem_chunk_free):
2434         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
2435         (gst_object_ref), (gst_object_unref), (gst_object_sink),
2436         (gst_object_replace), (gst_object_dispose), (gst_object_finalize),
2437         (gst_object_dispatch_properties_changed),
2438         (gst_object_set_name_default), (gst_object_set_name),
2439         (gst_object_get_name), (gst_object_set_name_prefix),
2440         (gst_object_get_name_prefix), (gst_object_set_parent),
2441         (gst_object_get_parent), (gst_object_unparent),
2442         (gst_object_check_uniqueness), (gst_object_save_thyself),
2443         (gst_object_restore_thyself), (gst_object_real_restore_thyself),
2444         (gst_object_set_property), (gst_object_get_property),
2445         (gst_object_get_path_string):
2446         * gst/gstobject.h:
2447         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
2448         (gst_real_pad_init), (gst_real_pad_get_property),
2449         (gst_pad_custom_new), (gst_pad_get_direction),
2450         (gst_pad_set_active), (gst_pad_is_active),
2451         (gst_pad_set_event_function), (gst_pad_is_linked),
2452         (gst_pad_link_free), (gst_pad_link_intersect),
2453         (gst_pad_link_fixate), (gst_pad_set_caps),
2454         (gst_pad_try_set_caps_nonfixed), (gst_pad_set_pad_template),
2455         (gst_pad_get_real_parent), (gst_pad_add_ghost_pad),
2456         (gst_pad_remove_ghost_pad), (_gst_pad_default_fixate_foreach),
2457         (gst_pad_link_unnegotiate), (gst_pad_proxy_fixate),
2458         (gst_pad_get_caps), (gst_pad_peer_get_caps),
2459         (gst_pad_get_pad_template_caps), (gst_pad_get_peer),
2460         (gst_pad_realize), (gst_pad_get_allowed_caps),
2461         (gst_real_pad_dispose), (gst_real_pad_finalize),
2462         (gst_pad_collectv), (gst_pad_collect_valist),
2463         (gst_pad_template_dispose), (gst_pad_template_new),
2464         (gst_pad_get_internal_links):
2465         * gst/gstpad.h:
2466         * gst/gstpipeline.c: (gst_pipeline_dispose),
2467         (gst_pipeline_change_state):
2468         * gst/gstpipeline.h:
2469         * gst/gstplugin.c:
2470         * gst/gstpluginfeature.c: (gst_plugin_feature_get_name),
2471         (gst_plugin_feature_set_rank), (gst_plugin_feature_get_rank):
2472         * gst/gstpluginfeature.h:
2473         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
2474         * gst/gstquery.c: (_gst_query_type_initialize),
2475         (gst_query_type_register), (gst_query_type_get_by_nick),
2476         (gst_query_type_get_details), (gst_query_type_iterate_definitions):
2477         * gst/gstquery.h:
2478         * gst/gstqueue.c: (gst_queue_link_sink), (gst_queue_link_src):
2479         * gst/gstscheduler.c: (gst_scheduler_add_element),
2480         (gst_scheduler_factory_create):
2481         * gst/gststructure.c: (gst_structure_set_parent_refcount),
2482         (gst_structure_free), (gst_structure_set_name),
2483         (gst_structure_id_set_value), (gst_structure_set_value),
2484         (gst_structure_set_valist), (gst_structure_remove_field),
2485         (gst_structure_remove_fields),
2486         (gst_structure_remove_fields_valist),
2487         (gst_structure_remove_all_fields), (gst_structure_foreach),
2488         (gst_structure_map_in_place),
2489         (gst_caps_structure_fixate_field_nearest_int),
2490         (gst_caps_structure_fixate_field_nearest_double):
2491         * gst/gststructure.h:
2492         * gst/gstsystemclock.c: (gst_system_clock_class_init),
2493         (gst_system_clock_init), (gst_system_clock_dispose),
2494         (gst_system_clock_async_thread),
2495         (gst_system_clock_id_wait_unlocked), (gst_system_clock_id_wait),
2496         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
2497         * gst/gstsystemclock.h:
2498         * gst/gsttag.c: (gst_tag_list_add_value_internal),
2499         (gst_tag_list_copy_foreach), (structure_foreach_wrapper):
2500         * gst/gsttaginterface.c:
2501         * gst/gstthread.c: (gst_thread_dispose),
2502         (gst_thread_release_children_locks), (gst_thread_change_state),
2503         (gst_thread_main_loop):
2504         * gst/gsttrashstack.h:
2505         * gst/gsttypefind.c: (gst_type_find_factory_dispose):
2506         * gst/gsttypes.h:
2507         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
2508         (gst_element_request_pad), (gst_element_get_pad_from_template),
2509         (gst_element_request_compatible_pad),
2510         (gst_element_get_compatible_pad_filtered),
2511         (gst_element_get_compatible_pad), (gst_element_state_get_name),
2512         (gst_element_link_pads_filtered), (gst_element_link_filtered),
2513         (gst_element_link_many), (gst_element_link),
2514         (gst_element_link_pads), (gst_element_unlink_pads),
2515         (gst_element_unlink_many), (gst_element_unlink),
2516         (gst_pad_can_link_filtered), (gst_pad_can_link),
2517         (gst_pad_use_fixed_caps), (gst_pad_get_fixed_caps_func),
2518         (gst_object_default_error), (gst_bin_add_many),
2519         (gst_bin_remove_many), (gst_element_populate_std_props),
2520         (gst_element_class_install_std_props), (gst_buffer_merge),
2521         (gst_buffer_stamp), (intersect_caps_func), (gst_pad_proxy_getcaps),
2522         (link_fold_func), (gst_pad_proxy_setcaps):
2523         * gst/gstutils.h:
2524         * gst/gstvalue.c: (gst_value_deserialize_string):
2525         * gst/parse/grammar.y:
2526         * gst/schedulers/gstbasicscheduler.c:
2527         (gst_basic_scheduler_cothreaded_chain),
2528         (gst_basic_scheduler_chain_recursive_add),
2529         (gst_basic_scheduler_pad_link):
2530         * gst/schedulers/gstoptimalscheduler.c:
2531         (get_group_schedule_function),
2532         (gst_opt_scheduler_state_transition),
2533         (gst_opt_scheduler_add_element), (element_get_reachables_func):
2534         * libs/gst/bytestream/bytestream.c:
2535         * libs/gst/dataprotocol/dataprotocol.c:
2536         (gst_dp_header_from_buffer):
2537         * po/nb.po:
2538         * po/ru.po:
2539         * tests/threadstate/threadstate2.c: (eos):
2540         * tools/gst-compprep.c: (main):
2541         * tools/gst-inspect.c: (print_field), (print_element_flag_info),
2542         (print_pad_info), (print_children_info):
2543         * tools/gst-launch.c: (idle_func), (main):
2544         * tools/gst-md5sum.c: (idle_func), (main):
2545         * tools/gst-xmlinspect.c: (print_element_info):
2546         First THREADED backport attempt, focusing on adding locks and
2547         making sure the API is threadsafe. Needs more work. More docs
2548         follow this week.
2549
2550 2005-02-24  Andy Wingo  <wingo@pobox.com>
2551
2552         * tests/bench-complexity.scm:
2553         * tests/complexity.gnuplot: New files, good for running complexity
2554         benchmarks.
2555
2556         * tests/Makefile.am:
2557         * tests/complexity.c: New test, sets up N elements, at each level
2558         teeing into M streams per element. Eeeenteresting.
2559
2560         * tests/mass_elements.gnuplot: gnuplot file for the mass_elements
2561         benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after
2562         running bench-mass_elements.scm.
2563
2564         * tests/bench-mass_elements.scm: New script, runs mass_elements
2565         for various numbers of identities, outputting the results to a
2566         file. Requires guile 1.6. Just for testing.
2567
2568 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2569
2570         * gst/schedulers/fairscheduler.c:
2571           compile with debug disabled
2572
2573 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2574
2575         * configure.ac:
2576           hunting season on 0.9 is now OPEN
2577
2578 2005-02-22  Stefan Kost  <ensonic@users.sf.net>
2579
2580         * docs/libs/tmpl/gstcontrol.sgml:
2581         * docs/libs/tmpl/gstdparam.sgml:
2582         * docs/libs/tmpl/gstdplinint.sgml:
2583         * docs/libs/tmpl/gstdpman.sgml:
2584         * docs/libs/tmpl/gstdpsmooth.sgml:
2585         * docs/libs/tmpl/gstunitconvert.sgml:
2586           more docs for the state of dparams
2587
2588 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2589
2590         * gst/gstelementfactory.c: (gst_element_factory_create):
2591         * gst/gstobject.c: (gst_object_init),
2592         (gst_object_set_name_default), (gst_object_set_name):
2593           name objects by default, not in gst_element_factory_create. Allows
2594           using elements created with g_object_new. (fixes #167283)
2595
2596 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2597
2598         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_log_default):
2599           make the time that debugging functions print relative to when
2600           gst_init was called
2601
2602 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
2603
2604         * gst/gsttaginterface.c:
2605           Fix inline docs: tag setter vararg functions are NULL-terminated,
2606           GST_TAG_INVALID doesn't exist any more.
2607
2608 2005-02-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2609
2610         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_dump_byte_array):
2611         Allocate the 1 byte more memory that was forgotten!!!!!
2612         fixes memory corruption on 64bit platforms
2613
2614 2005-02-15  Stefan Kost  <ensonic@users.sf.net>
2615
2616         * docs/pwg/building-pads.xml:
2617         * docs/pwg/intro-basics.xml:
2618           fixed a few typos, relabeled introductionary list of types
2619         * docs/random/ensonic/dparams.txt:
2620           more notes abut dparam changes
2621         * libs/gst/control/dparam.c: (gst_dparam_attach):
2622         * libs/gst/control/dparammanager.c:
2623         * libs/gst/control/dparammanager.h:
2624           - many comments and notes on dparam implementation
2625           - new dparams are were not initialized to the default value
2626             from param spec
2627
2628 2005-02-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2629
2630         submitted by: Peter Astakhov
2631
2632         * po/LINGUAS:
2633         * po/ru.po:
2634           adding Russian translation
2635
2636 2005-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2637
2638         * configure.ac:
2639         * docs/gst/Makefile.am:
2640         * docs/libs/Makefile.am:
2641           make sure popt is added to gtk-doc flags.  Fixes #147782.
2642
2643 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
2644
2645         * docs/faq/using.xml:
2646           Fix typo in FAQ (artssink => artsdsink)
2647
2648 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2649
2650         * tools/gst-launch.1.in:
2651           Fix typo (#166699).
2652
2653 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
2654
2655         * docs/faq/using.xml:
2656           Add -v argument to fakesrc/fakesink gst-launch line,
2657           so that the promised output will actually show up.
2658
2659 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2660
2661         * gst/gstthread.c: (gst_thread_change_state):
2662           Implement state-change error handling (#166073).
2663
2664 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2665
2666         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2667           Release interrupt after handling (#166250).
2668
2669 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2670
2671         * configure.ac:
2672           back to HEAD
2673
2674 === release 0.8.9 ===
2675
2676 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2677
2678         * NEWS:
2679         * RELEASE:
2680         * configure.ac:
2681           releasing 0.8.9, "Like Eating Glass"
2682
2683 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2684
2685         submitted by: Clytie Siddall
2686
2687         * po/vi.po: Added Vietnamese translation
2688
2689 2005-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
2690
2691         patch by: Tim Philipp-Müller
2692
2693         * configure.ac:
2694         * gst/gstpad.c:
2695           unref data when probe function returns FALSE.  Fixes #166362
2696
2697 2005-02-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2698
2699         * gst/gst.c: (gst_init_get_popt_table):
2700           Fix typo (#166269).
2701
2702 2005-02-04  Andy Wingo  <wingo@pobox.com>
2703
2704         * gst/gstelement.c (gst_element_get_compatible_pad_template): Fix
2705         the debugging on whether the caps are compatible.
2706
2707 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2708
2709         * docs/manual/basics-elements.xml:
2710           Fix two typos.
2711
2712 2005-02-02  Wim Taymans  <wim@fluendo.com>
2713
2714         * gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),
2715         (schedule_chain), (get_invalid_call), (chain_invalid_call),
2716         (loop_group_schedule_function), (gst_opt_scheduler_iterate):
2717         Remove some FIXMEs after analysing and commenting why they
2718         are not issues.
2719
2720 2005-02-02  Wim Taymans  <wim@fluendo.com>
2721
2722         * gst/schedulers/gstoptimalscheduler.c:
2723         (gst_opt_scheduler_class_init), (gst_opt_scheduler_init),
2724         (gst_opt_scheduler_finalize), (remove_decoupled), (schedule_chain),
2725         (get_invalid_call), (chain_invalid_call),
2726         (get_group_schedule_function), (loop_group_schedule_function),
2727         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
2728         (gst_opt_scheduler_state_transition),
2729         (gst_opt_scheduler_add_element),
2730         (gst_opt_scheduler_remove_element), (gst_opt_scheduler_interrupt),
2731         (gst_opt_scheduler_error), (gst_opt_scheduler_pad_link),
2732         (gst_opt_scheduler_pad_unlink), (gst_opt_scheduler_iterate),
2733         (gst_opt_scheduler_show):
2734         Added lock to protect scheduler data structures.
2735
2736 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2737
2738         * testsuite/threads/threadi.c: (cb_data):
2739           Fix buglet in test.
2740
2741 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2742
2743         * testsuite/threads/Makefile.am:
2744         * testsuite/threads/threadi.c: (cb_data), (cb_play), (main):
2745           On Wim's request, split the test in three separately-compiled
2746           tests that each test a very specific bug. Two of them still fail,
2747           will create bugs for those. threadi.c indicates why they fail.
2748
2749 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2750
2751         * gst/schedulers/gstoptimalscheduler.c:
2752         (get_group_schedule_function):
2753           Try to work with the threading mess that queue_link is.
2754
2755 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2756
2757         * gst/gstbin.c: (gst_bin_remove_func):
2758           Explicitely make an element release locks in a group when being
2759           remove from a bin.
2760         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2761           If there's no scheduler, always return immediately (similar to
2762           gst_element_interrupt).
2763
2764 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2765
2766         * gst/gstbin.c: (gst_bin_child_state_change_func):
2767           Remove a piece of code that could never be reached.
2768         * docs/gst/gstreamer-sections.txt:
2769         * gst/gstpad.c: (gst_pad_push), (gst_pad_pull),
2770         (gst_pad_call_get_function):
2771         * gst/gstpad.h:
2772         * testsuite/pad/Makefile.am:
2773           Fix #150546, enable tests.
2774
2775 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2776
2777         * docs/pwg/advanced-types.xml:
2778           Fix description for buffer-frames=0.
2779         * docs/gst/tmpl/gstbin.sgml:
2780         * gst/gstbin.c: (gst_bin_child_state_change_func),
2781         (gst_bin_change_state), (gst_bin_change_state_norecurse):
2782         * gst/gstbin.h:
2783         * testsuite/threads/Makefile.am:
2784         * testsuite/threads/threadi.c: (cb_timeout), (cb_quit), (cb_eos),
2785         (cb_state), (cb_play), (main):
2786           Fix non-recursive state changes to *really* change the state
2787           of the object, and not just call parent_class->state_change.
2788           Fix a lot of lockups caused by this. Fixes #132775. Add test
2789           for the problem. Also enable test to show #142588 (fixed).
2790         * gst/gstthread.c: (gst_thread_change_state),
2791         (gst_thread_child_state_change):
2792           Don't exit the thread if we go to NULL and are inside thread
2793           context. Instead, return control to the main thread context
2794           and exit from there.
2795         * gst/gstelement.c: (gst_element_disable_threadsafe_properties):
2796           Don't unset virtual functions, since those may still be used.
2797           That's not necessarily correct, but suffices for now.
2798         * configure.ac:
2799         * testsuite/Makefile.am:
2800         * testsuite/pad/Makefile.am:
2801         * testsuite/pad/chainnopull.c: (gst_test_sink_class_init),
2802         (gst_test_sink_base_init), (gst_test_sink_chain),
2803         (gst_test_sink_init), (main):
2804         * testsuite/pad/getnopush.c: (gst_test_src_class_init),
2805         (gst_test_src_base_init), (gst_test_src_get), (gst_test_src_init),
2806         (main):
2807         * testsuite/pad/link.c: (gst_test_element_class_init),
2808         (gst_test_element_base_init), (gst_test_src_get),
2809         (gst_test_src_loop), (gst_test_src_init), (gst_test_filter_chain),
2810         (gst_test_filter_loop), (gst_test_filter_init),
2811         (gst_test_sink_chain), (gst_test_sink_loop), (gst_test_sink_init),
2812         (cb_error), (main):
2813           Add tests to show #150546. Pass, but should fail (currently
2814           disabled from the testsuite).
2815         * gst/gstscheduler.c: (gst_scheduler_dispose):
2816           Dereference child schedulers on dispose (#94464).
2817         * testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
2818           Fix typo.
2819         * testsuite/threads/thread.c: (main):
2820           Add more debug.
2821
2822 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2823
2824         * gst/gstpad.c: (gst_pad_push):
2825           Oops, revert previous commit, broke testsuite...
2826
2827 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2828
2829         * gst/gstpad.c: (gst_pad_push):
2830           Add check that the pad on which the push is performed is not a
2831           get-based pad (#150546).
2832
2833 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2834
2835         * gst/elements/gsttypefindelement.c:
2836         (gst_type_find_element_handle_event):
2837           Fix buffer pushing if stream EOSes during typefinding.
2838
2839 2005-01-28  Edward Hervey  <bilboed@bilboed.com>
2840
2841         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2842
2843         * gst/gstvalue.c: (gst_string_wrap):
2844           Allow NULL-strings as argument (#165365).
2845
2846 2005-01-27  Stephane Wirtel  <stephane.wirtel@belgacom.net>
2847
2848         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2849
2850         * gst/schedulers/faircothreads.c:
2851         (gst_fair_scheduler_cothread_queue_show):
2852           Fix build without debug enabled.
2853
2854 2005-01-26  Stefan Kost  <ensonic@users.sf.net>
2855
2856         * docs/gst/gstreamer-sections.txt:
2857         * docs/libs/gstreamer-libs-docs.sgml:
2858         * docs/libs/gstreamer-libs-sections.txt:
2859         * docs/libs/tmpl/gstcontrol.sgml:
2860         * docs/libs/tmpl/gstdparam.sgml:
2861         * docs/libs/tmpl/gstdplinint.sgml:
2862         * docs/libs/tmpl/gstdpman.sgml:
2863         * docs/libs/tmpl/gstdpsmooth.sgml:
2864         * docs/libs/tmpl/gstputbits.sgml:
2865         * docs/libs/tmpl/gstunitconvert.sgml:
2866         * libs/gst/control/dparam.c:
2867         * libs/gst/control/dparam.h:
2868         * libs/gst/control/dparammanager.c:
2869         (gst_dpman_add_required_dparam_callback),
2870         (gst_dpman_add_required_dparam_direct),
2871         (gst_dpman_add_required_dparam_array),
2872         (gst_dpman_remove_required_dparam), (gst_dpman_attach_dparam),
2873         (gst_dpman_get_dparam), (gst_dpman_get_dparam_type),
2874         (gst_dpman_get_manager)
2875           restructured DParam docs
2876
2877 2005-01-25  Tim-Philipp Müller  <tim at centricular dot net>
2878
2879         * gst-element-check.m4:
2880           Only check for gst-inspect if we haven't already
2881           found it in previous element check runs
2882
2883 2005-01-25  Stefan Kost  <ensonic@users.sf.net>
2884
2885         * docs/gst/Makefile.am:
2886         * docs/libs/Makefile.am:
2887           fixed install rules to treat style.css as optional
2888
2889 2005-01-24  Stefan Kost  <ensonic@users.sf.net>
2890
2891         * docs/gst/Makefile.am:
2892         * docs/libs/Makefile.am:
2893           install style.css along with docs
2894         * docs/gst/tmpl/gstbin.sgml:
2895         * docs/gst/tmpl/gstclock.sgml:
2896         * docs/gst/tmpl/gstdata.sgml:
2897         * docs/gst/tmpl/gstelement.sgml:
2898         * gst/gstbin.h:
2899         * gst/gstelement.c: (gst_element_class_init):
2900         * gst/gstelement.h:
2901           fixing incomplete docs
2902
2903 2005-01-24  Tim-Philipp Müller  <tim at centricular dot net>
2904
2905         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
2906           Don't unref seek event twice when fflush() fails
2907           
2908 2005-01-22  David Schleef  <ds@schleef.org>
2909
2910         * configure.ac: Add --disable-valgrind. (partial fix for #164890)
2911
2912 2005-01-21  Stefan Kost  <ensonic@users.sf.net>
2913
2914         * docs/gst/Makefile.am:
2915         * docs/libs/Makefile.am:
2916           added params for deprecation guards
2917         * gst/gst.c:
2918         * gst/gst.h:
2919         * gst/gsterror.c: (_gst_resource_errors_init),
2920         (_gst_stream_errors_init):
2921         * gst/gsterror.h:
2922           documented some more enums
2923
2924 2005-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
2925         * gst/autoplug/gstspideridentity.c:
2926         Cosmetic fix - spider_find_peek should be static
2927         * gst/parse/parse.l:
2928         Applying fix for #164261
2929
2930 2005-01-18  Stefan Kost  <ensonic@users.sf.net>
2931
2932         * docs/gst/gstreamer-sections.txt:
2933         * docs/gst/tmpl/gstplugin.sgml:
2934         * docs/libs/gstreamer-libs-sections.txt:
2935         * docs/libs/tmpl/gstcontrol.sgml:
2936         * gst/gstbuffer.h:
2937         * gst/gsttag.h:
2938         * gst/gstvalue.c:
2939           added docs for the TAG defines
2940
2941 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2942
2943         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
2944           Only unref entry if there is an entry.
2945
2946 2005-01-17  Wim Taymans  <wim@fluendo.com>
2947
2948         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
2949         (remove_from_group), (schedule_group), (normalize_group),
2950         (gst_opt_scheduler_iterate):
2951         Also ref/unref decoupled elements before iterating the
2952         group since they are not added to the list of elements.
2953
2954 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2955
2956         * docs/manual/highlevel-components.xml:
2957           Add subtitle/streamselection as new features to playbin.
2958
2959 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2960
2961         * docs/manual/manual.xml:
2962           Re-enable dataaccess docs (oops).
2963
2964 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2965
2966         * docs/pwg/advanced-types.xml:
2967         * docs/random/mimetypes:
2968           Add documentation on libsndfile types (#163309), by Steve Baker
2969           <steve@stevebaker.org>.
2970         * gst/gstelement.c: (gst_element_release_request_pad):
2971           If an element has no explicit function, just remove the pad.
2972
2973 2005-01-17  Luca Ognibene  <luogni@tin.it>
2974
2975         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2976
2977         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
2978           Fix memleak (#163801).
2979
2980 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2981
2982         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link):
2983           I think this is actually more correct...
2984
2985 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2986
2987         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
2988           Another workaround for memory access while destroyed in callback.
2989           Please, someone with refcount knowledge, have a look at this.
2990
2991 2005-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
2992
2993         * docs/faq/faq.xml:
2994         * docs/faq/legal.xml:
2995           move the legal Q&A here
2996
2997 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2998
2999         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link),
3000         (gst_tee_request_new_pad):
3001           Fix negotiation.
3002
3003 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3004
3005         * docs/random/omega/caps2:
3006         * testsuite/caps/caps_strings:
3007           replace framerate aproximations by their real value
3008           (24000/1001, 30000/1001, 60000/1001)
3009           Partially fixes bug #164049
3010
3011 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3012
3013         * docs/gst/Makefile.am:
3014           don't fail on the stupid GstPoptOption
3015
3016 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3017
3018         * gst/gstpad.h:
3019         * gst/gstprobe.c:
3020           allow probes to work on ghost pads by realizing the pad
3021           probe debugging
3022
3023 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3024
3025         * docs/gst/gstreamer-sections.txt:
3026         * docs/gst/tmpl/gstpad.sgml:
3027         * gst/gstpad.c: (gst_pad_set_active_recursive):
3028         * gst/gstpad.h:
3029           Add gst_pad_set_active_recursive().
3030
3031 2005-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
3032
3033         * docs/random/release:
3034           updates
3035         * gst/gst_private.h:
3036         * gst/gstinfo.c:
3037         * gst/gstobject.c:
3038           move deep_notify logging to a new category
3039         * gst/gstprobe.c:
3040         * gst/gstprobe.h:
3041           add stuff so bindings can wrap probes
3042
3043 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3044
3045         * gst/gstplugin.c: (gst_plugin_load):
3046           Fix plugin loading if plugin/lib was already loaded. Fixes
3047           #163383
3048
3049 2005-01-09  Sebastien Cote  <sc5@hermes.usherb.ca>
3050
3051         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3052
3053         * gst/gstpluginfeature.c: (gst_plugin_feature_ensure_loaded):
3054           Protect plugin loading by a mutex so it's threadsafe. Fixes
3055           #163234.
3056
3057 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3058
3059         * gst/gstevent.c: (_gst_event_copy):
3060           Reference source object when copying events, since it'll be
3061           dereferenced on event dereferencing as well.
3062
3063 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3064
3065         * docs/gst/gstreamer-sections.txt:
3066         * docs/gst/tmpl/gstevent.sgml:
3067         * gst/gstevent.c: (gst_event_new_filler_stamped),
3068         (gst_event_filler_get_duration):
3069         * gst/gstevent.h:
3070           Add two new functions for filler events (which are used to
3071           synchronize streams if one of them is not having any data
3072           for a while) without interrupting the actual data-stream.
3073           Basically a no-op.
3074         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3075         (gst_queue_link_sink), (gst_queue_link_src),
3076         (gst_queue_change_state):
3077           Allow for renegotiation while filled. Required for stream
3078           switching while playing.
3079
3080 2005-01-08  Benjamin Otte  <otte@gnome.org>
3081
3082         * gst/gstelement.c: (gst_element_link_many):
3083           fix up g_return_if_fail's
3084         * po/LINGUAS:
3085         * po/de.po:
3086           add German translation, that was somehow not included
3087
3088 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3089
3090         * docs/random/mimetypes:
3091           add 2 more 4CC code for DV (HDTV and SDTV-LongPlay profiles)
3092           do not add them to riff-lib as they are not common
3093
3094 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3095
3096         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
3097           Check for existence of probe after performing the probe before
3098           re-accessing it to prevent segfaults caused by removal of the
3099           probe in the callback.
3100
3101 2005-01-05  David Schleef  <ds@schleef.org>
3102
3103         * testsuite/registry/Makefile.am:
3104         * testsuite/registry/gst-print-formats.c:
3105         (print_pad_templates_info), (print_element_list),
3106         (print_typefind_list), (list_sort_func), (get_typefind_mime_list),
3107         (g_list_uniqify), (get_pad_templates_info),
3108         (get_element_mime_list), (print_mime_list), (main): A little
3109         program that looks through the registry to find elements of
3110         a given type.  Not particularly interesting as a test, except
3111         that there's no other test covering the same area.
3112
3113 2005-01-05  David Schleef  <ds@schleef.org>
3114
3115         * tools/gst-launch.c: (idle_func), (fault_handler_sighandler),
3116         (fault_handler_sigaction), (fault_spin),
3117         (sigint_handler_sighandler), (play_handler), (main): Fix deadlocks
3118         in signal.h-type signal handlers by not calling forbidden functions,
3119         including gst_element_set_state().
3120
3121 2005-01-05  David Schleef  <ds@schleef.org>
3122
3123         * gst/gstvalue.h: Mark _gst_reserved[] as private
3124
3125 2005-01-05  David Schleef  <ds@schleef.org>
3126
3127         * gst/gstvalue.c: Fix doc build problem.
3128
3129 2005-01-05  David Schleef  <ds@schleef.org>
3130
3131         * gst/gstvalue.c: Add some documentation
3132
3133 2005-01-05  Stefan Kost  <ensonic@users.sf.net>
3134
3135         * docs/README:
3136           another shell oneliner for empty return value docs
3137         * gst/gstcaps.c:
3138         * gst/gstvalue.c:
3139         * libs/gst/control/dparam.c:
3140           more doc fixes (parameters and return values)
3141
3142 2005-01-05  Vincent Torri  <torri@iecn.u-nancy.fr>
3143
3144         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3145
3146         * gst/gstregistry.h:
3147         * gst/registries/gstxmlregistry.c:
3148           Fix macro's for Mingw (fixes #162276).
3149
3150 2005-01-04  Stefan Kost  <ensonic@users.sf.net>
3151
3152         * docs/README:
3153           quick shell oneliner to find undocumented members
3154         * docs/gst/tmpl/gstplugin.sgml:
3155         * docs/gst/tmpl/gstscheduler.sgml:
3156         * docs/gst/tmpl/gstthread.sgml:
3157           more enumtypes cleanup
3158         * gst/gsterror.h:
3159           activated documentation comments, now someone needs to document
3160           the enums :(
3161
3162 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3163
3164         * docs/manual/manual.xml:
3165           Add dataaccess part (doh!).
3166
3167 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3168
3169         * docs/manual/advanced-autoplugging.xml:
3170           Fix typo (intiate -> initiate).
3171
3172 2005-01-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3173
3174         * docs/random/bbb/streamselection:
3175           Add some notes on how to handle multi-subtitle/-audio streams.
3176
3177 2004-12-30  Stefan Kost  <ensonic@users.sf.net>
3178
3179         * docs/gst/gstreamer-docs.sgml:
3180         * docs/gst/gstreamer-sections.txt:
3181         * docs/gst/tmpl/gstenumtypes.sgml:
3182         * docs/gst/tmpl/gsterror.sgml:
3183         * docs/gst/tmpl/gstevent.sgml:
3184         * docs/gst/tmpl/gstpad.sgml:
3185         * docs/gst/tmpl/gstpadtemplate.sgml:
3186         * docs/gst/tmpl/gstthread.sgml:
3187           removed gstenumtypes section from docs and put all the enums into
3188           their sections
3189
3190 2004-12-27  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3191
3192         * gst/gstplugin.c:
3193           document gst_library_load a bit more (riff special case + return
3194           value if already loaded)
3195         * testsuite/bytestream/filepadsink.c:
3196           plugin name is 'gstbytestream', not 'bytestream'
3197
3198 2004-12-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3199
3200         * docs/random/bbb/subtitles:
3201           Add some first mind rumblings on proper subtitle support.
3202
3203 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3204
3205         * po/ca.po:
3206         * po/sv.po:
3207           updated translations
3208
3209 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3210
3211         * docs/manual/advanced-dataaccess.xml:
3212           Add section on how to use fakesrc/fakesink/identity in your
3213           application, plus section on how to embed plugins. Also mention
3214           probes.
3215         * docs/manual/appendix-checklist.xml:
3216         * docs/manual/appendix-debugging.xml:
3217         * docs/manual/appendix-gnome.xml:
3218         * docs/manual/appendix-integration.xml:
3219           Debug -> checklist, GNOME -> integration, add sections on Linux,
3220           KDE integration and add other things useful for application
3221           development.
3222         * docs/manual/manual.xml:
3223           Remove some fixmes, update some file pointers.
3224         * docs/pwg/appendix-checklist.xml:
3225           Fix typo.
3226         * docs/pwg/building-boiler.xml:
3227           Remove ugly header and add commented fixme.
3228         * docs/pwg/pwg.xml:
3229           Add fixme.
3230         * examples/manual/Makefile.am:
3231           Add example for added docs.
3232
3233 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3234
3235         * configure.ac:
3236           back to HEAD
3237
3238 === release 0.8.8 ===
3239
3240 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3241
3242         * NEWS:
3243         * RELEASE:
3244         * configure.ac:
3245           Releasing 0.8.8, "I'll Take Care Of You"
3246
3247 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3248
3249         * configure.ac:
3250           second prerelease
3251
3252 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3253
3254         patch by: Wim Taymans
3255
3256         * gst/gstbin.c:
3257           Fix for #159852 - make iterate emission threadsafe
3258
3259 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3260
3261         * docs/faq/cvs.xml:
3262           notes about new fdo account request
3263
3264 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
3265
3266         * docs/gst/gstreamer-docs.sgml:
3267         * docs/gst/tmpl/gstenumtypes.sgml:
3268         * docs/gst/tmpl/gstplugin.sgml:
3269         * docs/libs/gstreamer-libs-docs.sgml:
3270           Added missing short docs. Added ids for navigation.
3271
3272 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3273
3274         * docs/manual/advanced-autoplugging.xml:
3275         * docs/manual/advanced-schedulers.xml:
3276         * docs/manual/advanced-threads.xml:
3277           Rewrites. Remove cothreads, go a bit into opt specifically,
3278           document threads and their gotchas, and do some technical stuff
3279           on autoplugging plus add some working examples. Fixes #157395.
3280         * examples/manual/Makefile.am:
3281           Add typefind/autoplugger example (one that actually works).
3282           Remove queue example since it's a duplicate of the thread one.
3283
3284 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3285
3286         * gst/gstvalue.c: (gst_value_deserialize_string):
3287           use deprecated g_value_set_string_take_ownership to keep compatible
3288           with glib 2.2
3289
3290 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3291
3292         * gst/gstvalue.c: (gst_value_deserialize_string):
3293           revert last patch, only dom a g_utf8_validate now before accepting
3294           the string - caps parsing strips " from strings so we can't rely on
3295           them
3296         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3297           disable a test that tested the above and comment it
3298
3299 2004-12-16  Steve Lhomme <steve.lhomme@free.fr>
3300
3301         Patch reviewed by David Schleef  <ds@schleef.org>
3302
3303         * win32/gstenumtypes.c: Update from gst/gstenumtypes.c (See
3304         bug #153882)
3305         * win32/gstenumtypes.h: same
3306
3307 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3308
3309         * gst/gstpad.c: (gst_pad_query):
3310           Do query on realized pad, similar to how convert/send_event handle
3311           this. Also makes sense, since this pad belongs to the function to
3312           which this query will be sent. Fixes #158163.
3313
3314 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
3315
3316         * docs/manual/appendix-programs.xml: fix pipeline to actually work
3317
3318 2004-12-16  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3319
3320         * docs/faq/general.xml: fix pipeline to actually work
3321
3322 2004-12-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3323
3324         * gst/gstvalue.c: (gst_value_deserialize_string):
3325           check that a simple string that gets deserialized does not contain
3326           invalid characters
3327         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3328           remove a test that tested a wring behaviour
3329
3330 2004-12-16  Matt Kraai  <kraai@alumni.cmu.edu>
3331
3332         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3333
3334         * docs/manual/intro-motivation.xml:
3335           Fix typos.
3336
3337 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
3338
3339         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3340
3341         * docs/gst/tmpl/gstprobe.sgml:
3342           Fix documentation of probe callback - it is supposed to return
3343           FALSE, not TRUE, to remove data from the stream (#159087).
3344
3345 2004-12-16  Daniel Gazard  <dany42@free.fr>
3346
3347         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3348
3349         * gst/gstelementfactory.c: (gst_element_factory_create):
3350           Fix compile failure if compiling without libxml2 support (#149936).
3351
3352 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3353
3354         * docs/manual/advanced-autoplugging.xml:
3355         * docs/manual/highlevel-components.xml:
3356           Move spider from autoplugging to components. Autoplugging is for
3357           internals, not for solutions. ;-).
3358
3359 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3360
3361         * docs/random/ds/0.9-suggested-changes:
3362           Make note on device/location/uri property names.
3363
3364 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3365
3366         * docs/manual/advanced-autoplugging.xml:
3367         * docs/manual/advanced-clocks.xml:
3368         * docs/manual/advanced-interfaces.xml:
3369         * docs/manual/advanced-metadata.xml:
3370         * docs/manual/advanced-position.xml:
3371         * docs/manual/advanced-schedulers.xml:
3372         * docs/manual/advanced-threads.xml:
3373         * docs/manual/appendix-gnome.xml:
3374         * docs/manual/appendix-programs.xml:
3375         * docs/manual/appendix-quotes.xml:
3376         * docs/manual/autoplugging.xml:
3377         * docs/manual/basics-bins.xml:
3378         * docs/manual/basics-data.xml:
3379         * docs/manual/basics-elements.xml:
3380         * docs/manual/basics-helloworld.xml:
3381         * docs/manual/basics-init.xml:
3382         * docs/manual/basics-pads.xml:
3383         * docs/manual/basics-plugins.xml:
3384         * docs/manual/bins-api.xml:
3385         * docs/manual/bins.xml:
3386         * docs/manual/buffers-api.xml:
3387         * docs/manual/buffers.xml:
3388         * docs/manual/clocks.xml:
3389         * docs/manual/components.xml:
3390         * docs/manual/cothreads.xml:
3391         * docs/manual/debugging.xml:
3392         * docs/manual/dparams-app.xml:
3393         * docs/manual/dynamic.xml:
3394         * docs/manual/elements-api.xml:
3395         * docs/manual/elements.xml:
3396         * docs/manual/factories.xml:
3397         * docs/manual/gnome.xml:
3398         * docs/manual/goals.xml:
3399         * docs/manual/helloworld.xml:
3400         * docs/manual/helloworld2.xml:
3401         * docs/manual/highlevel-components.xml:
3402         * docs/manual/highlevel-xml.xml:
3403         * docs/manual/init-api.xml:
3404         * docs/manual/intro-basics.xml:
3405         * docs/manual/intro-motivation.xml:
3406         * docs/manual/intro-preface.xml:
3407         * docs/manual/intro.xml:
3408         * docs/manual/links-api.xml:
3409         * docs/manual/links.xml:
3410         * docs/manual/manual.xml:
3411         * docs/manual/motivation.xml:
3412         * docs/manual/pads-api.xml:
3413         * docs/manual/pads.xml:
3414         * docs/manual/plugins-api.xml:
3415         * docs/manual/plugins.xml:
3416         * docs/manual/programs.xml:
3417         * docs/manual/queues.xml:
3418         * docs/manual/quotes.xml:
3419         * docs/manual/schedulers.xml:
3420         * docs/manual/states-api.xml:
3421         * docs/manual/states.xml:
3422         * docs/manual/threads.xml:
3423         * docs/manual/typedetection.xml:
3424         * docs/manual/win32.xml:
3425         * docs/manual/xml.xml:
3426           Try 2. This time, include a short preface as a "general
3427           introduction", also add code blocks around all code samples
3428           so they get compiled. We still need a way to tell readers
3429           the filename of the code sample. In some cases, don't show
3430           all code in the documentation, but do include it in the generated
3431           code. This allows for focussing on specific bits in the docs,
3432           while still having a full test application available.
3433         * examples/manual/Makefile.am:
3434           Fix up examples for new ADM. Add several of the new examples that
3435           were either added or were missing from the build system.
3436         * examples/manual/extract.pl:
3437           Allow nameless blocks.
3438
3439 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3440
3441         * docs/manual/elements-api.xml:
3442         * docs/manual/helloworld.xml:
3443         * examples/manual/extract.pl:
3444           fix last example.  Add example of adding code blocks that are not
3445           shown in docbook output.
3446
3447 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3448
3449         * docs/manual/dynamic.xml:
3450         * docs/manual/elements-api.xml:
3451         * docs/manual/gnome.xml:
3452         * docs/manual/helloworld2.xml:
3453         * docs/manual/init-api.xml:
3454         * docs/manual/queues.xml:
3455         * docs/manual/threads.xml:
3456         * docs/manual/xml.xml:
3457         * examples/manual/extract.pl:
3458           Make it possible to extract example code from separate blocks.
3459           Should make Ronald happy.
3460
3461 2004-12-15  Wim Taymans  <wim@fluendo.com>
3462
3463         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3464         (remove_from_group), (group_elements_set_visited),
3465         (normalize_group), (gst_opt_scheduler_iterate):
3466         Fix bug where a flag was not updated on a decoupled entry point 
3467         because we were just checking the group element list and decoupled
3468         elements are not in that list..
3469
3470 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3471
3472         * docs/manual/advanced-autoplugging.xml:
3473         * docs/manual/advanced-clocks.xml:
3474         * docs/manual/advanced-dparams.xml:
3475         * docs/manual/advanced-interfaces.xml:
3476         * docs/manual/advanced-metadata.xml:
3477         * docs/manual/advanced-position.xml:
3478         * docs/manual/advanced-schedulers.xml:
3479         * docs/manual/advanced-threads.xml:
3480         * docs/manual/appendix-debugging.xml:
3481         * docs/manual/appendix-gnome.xml:
3482         * docs/manual/appendix-programs.xml:
3483         * docs/manual/appendix-quotes.xml:
3484         * docs/manual/appendix-win32.xml:
3485         * docs/manual/autoplugging.xml:
3486         * docs/manual/basics-bins.xml:
3487         * docs/manual/basics-data.xml:
3488         * docs/manual/basics-elements.xml:
3489         * docs/manual/basics-helloworld.xml:
3490         * docs/manual/basics-init.xml:
3491         * docs/manual/basics-pads.xml:
3492         * docs/manual/basics-plugins.xml:
3493         * docs/manual/bins-api.xml:
3494         * docs/manual/bins.xml:
3495         * docs/manual/buffers-api.xml:
3496         * docs/manual/buffers.xml:
3497         * docs/manual/clocks.xml:
3498         * docs/manual/components.xml:
3499         * docs/manual/cothreads.xml:
3500         * docs/manual/debugging.xml:
3501         * docs/manual/dparams-app.xml:
3502         * docs/manual/dynamic.xml:
3503         * docs/manual/elements-api.xml:
3504         * docs/manual/elements.xml:
3505         * docs/manual/factories.xml:
3506         * docs/manual/gnome.xml:
3507         * docs/manual/goals.xml:
3508         * docs/manual/helloworld.xml:
3509         * docs/manual/helloworld2.xml:
3510         * docs/manual/highlevel-components.xml:
3511         * docs/manual/highlevel-xml.xml:
3512         * docs/manual/init-api.xml:
3513         * docs/manual/intro-motivation.xml:
3514         * docs/manual/intro-preface.xml:
3515         * docs/manual/intro.xml:
3516         * docs/manual/links-api.xml:
3517         * docs/manual/links.xml:
3518         * docs/manual/manual.xml:
3519         * docs/manual/motivation.xml:
3520         * docs/manual/pads-api.xml:
3521         * docs/manual/pads.xml:
3522         * docs/manual/plugins-api.xml:
3523         * docs/manual/plugins.xml:
3524         * docs/manual/programs.xml:
3525         * docs/manual/queues.xml:
3526         * docs/manual/quotes.xml:
3527         * docs/manual/schedulers.xml:
3528         * docs/manual/states-api.xml:
3529         * docs/manual/states.xml:
3530         * docs/manual/threads.xml:
3531         * docs/manual/typedetection.xml:
3532         * docs/manual/win32.xml:
3533         * docs/manual/xml.xml:
3534           First try at rewriting the ADM. Needs lotsamore work, but some
3535           parts might already be somewhat useful.
3536         * docs/pwg/advanced-interfaces.xml:
3537           Remove properties interface, it never actually existed (except for
3538           on my HD...).
3539
3540 2004-12-13  David Schleef  <ds@schleef.org>
3541
3542         * gst/gstpad.c: (gst_pad_set_explicit_caps): Allow caps to
3543         be NULL (bug #160220).
3544
3545 2004-12-13  David Schleef  <ds@schleef.org>
3546
3547         * configure.ac: remove all mmx stuff, because it's not used.
3548         * docs/random/ds/0.9-suggested-changes: additional notes
3549         * include/Makefile.am: we don't use these anymore
3550         * include/mmx.h: remove
3551         * include/sse.h: remove
3552
3553 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3554
3555         * docs/random/mimetypes:
3556           Add FOURCC code for h264 codec (VSSH)
3557           Add alternate FOURCC codes for h263 related codecs
3558
3559 2004-12-10  Stefan Kost  <ensonic@users.sf.net>
3560
3561         * docs/manual/programs.xml:
3562           Added more gst-launch examples.
3563
3564 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3565
3566         * gst/gstqueue.c: (gst_queue_handle_src_query):
3567           Check for availability again.
3568
3569 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3570
3571         * gst/gstcaps.c: (gst_caps_compare_structures):
3572           Simple caps go first. This has the nice side-effect of fixing an
3573           obscure warning.
3574
3575 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3576
3577         * gst/gstversion.h.in:
3578           Protect header.
3579
3580 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3581
3582         * gst/schedulers/gstoptimalscheduler.c:
3583         (gst_opt_scheduler_schedule_run_queue), (schedule_chain),
3584         (gst_opt_scheduler_get_wrapper):
3585           When we're recursing into a chain run, only run the directly
3586           related group, not all queued ones. This will fix a possible
3587           deadlock in chains with more than two groups.
3588
3589 2004-12-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3590
3591         * autogen.sh:
3592           remove patch if autopoint fails
3593
3594 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3595
3596         * docs/gst/gstreamer-sections.txt:
3597           Document Thomas' addition, fix build, make Luis the sheriff happy.
3598
3599 2004-12-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3600
3601         * gst/gstplugin.c:
3602         * gst/gstplugin.h:
3603           add accessor for version field
3604
3605 2004-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
3606
3607         submitted by: Luca Ferretti <elle.uca@infinito.it>
3608
3609         * po/LINGUAS:
3610         * po/it.po:
3611           New tranlation added: Italian
3612
3613 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3614
3615         * gst/gstpad.c: (gst_pad_is_negotiated),
3616         (gst_pad_get_negotiated_caps):
3617           GST_RPAD_* will only operate on a RealPad (it casts the pointer,
3618           it doesn't actually check the contents), so be sure to hand it
3619           a RealPad else we'll crash.
3620
3621 2004-12-03  Wim Taymans  <wim@fluendo.com>
3622
3623         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3624         (gst_queue_link), (gst_queue_handle_src_query):
3625         Reverted to 1.110 until this makes the testsuite and various
3626         apps work.
3627
3628 2004-12-01  Christian Fredrik Kalager Schaller <christian@fluendo.com>
3629
3630         * docs/upload.mak: fix included CVS conflict strings
3631
3632 2004-12-01  William Jon McCann  <mccann@jhu.edu>
3633
3634         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3635
3636         * gst/gstelement.c: (gst_element_error_full):
3637           Use g_error_new_literal because error text may have
3638           percentage signs in it. Fixes #160019.
3639
3640 2004-12-01  Benjamin Otte  <otte@gnome.org>
3641
3642         * gst/elements/gstbufferstore.c:
3643         (gst_buffer_store_add_buffer_func):
3644           don't try to make subbuffers bigger than they can be. (fixes
3645           #159970)
3646
3647 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3648
3649         * docs/gst/gstreamer-sections.txt:
3650         * docs/gst/tmpl/gstvalue.sgml:
3651           Add new function to docs to fix build.
3652
3653 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3654
3655         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
3656         * gst/gstpad.c: (_gst_pad_default_fixate_value),
3657         (_gst_pad_default_fixate_foreach):
3658         * gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
3659         * gst/gstvalue.h:
3660           Deprecate _type_is_fixed, use _value_is_fixed instead, since
3661           in some cases (arrays), the fixedness depends on the content.
3662         * gst/gstqueue.c: (gst_queue_handle_src_query):
3663           Check for availability before doing something.
3664
3665 2004-11-29  Wim Taymans  <wim@fluendo.com>
3666
3667         * testsuite/threads/Makefile.am:
3668         * testsuite/threads/signals.c: (gst_test_get_type),
3669         (gst_test_class_init), (gst_test_init), (gst_test_dispose),
3670         (gst_test_set_property), (gst_test_get_property),
3671         (gst_test_do_signal1), (signal2_handler), (gst_test_do_signal2),
3672         (gst_test_do_prop), (run_thread), (main):
3673         Added a bunch of testcases that show threadsafety bugs in glib.
3674
3675 2004-11-29  Stefan Kost  <ensonic@users.sf.net>
3676
3677         * docs/manual/programs.xml:
3678           Added a first batch of gst-launch examples, as provided by Ronald
3679           and others from the devel-mlist
3680
3681 2004-11-28  Benjamin Otte  <otte@gnome.org>
3682
3683         * gst/gstelement.c: (gst_element_negotiate_pads):
3684           simplify
3685         * gst/gstvalue.c: (gst_string_wrap), (gst_string_unwrap),
3686         (gst_value_serialize_string), (gst_value_deserialize_string):
3687           add unwrapping of previously wrapped strings. Fix bug in wrapping
3688           while at it.
3689         * testsuite/caps/value_serialize.c: (test1),
3690         (test_string_serialization), (test_string_deserialization), (main):
3691           add tests for string (de)serialization
3692
3693 2004-11-26  Wim Taymans  <wim@fluendo.com>
3694
3695         * testsuite/threads/159566.c: (object_deep_notify), (main):
3696         * testsuite/threads/Makefile.am:
3697         Added testsuite to show bug #159566
3698
3699 2004-11-25  Wim Taymans  <wim@fluendo.com>
3700
3701         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_change_state),
3702         (gst_thread_child_state_change), (gst_thread_main_loop):
3703         Ref the thread object in the GThread mainloop. Break out of the
3704         thread mainloop if it holds the last ref. This properly exits
3705         the threads when disposing the thread from its own context. It
3706         also avoids possible deadlocks in the dispose function.
3707
3708 2004-11-24  Martin Soto  <martinsoto@users.sourceforge.net>
3709
3710         * gst/gstqueue.c (gst_queue_link_sink): Grab the lock only when
3711         it is necessary to wait.
3712
3713 2004-11-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3714
3715         * docs/pwg/building-boiler.xml:
3716           Make description somewhat clearer.
3717
3718 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3719
3720         * docs/upload.mak:
3721           Apparently docs changed location on FDO's server.
3722
3723 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3724
3725         * docs/pwg/appendix-checklist.xml:
3726           Add some random notes on things to check when writing an element.
3727           This list can be extended as people see fit.
3728
3729 2004-11-23  Martin Soto  <martinsoto@users.sourceforge.net>
3730
3731         * gst/gstqueue.c (gst_queue_init, gst_queue_link_sink)
3732         (gst_queue_link_src): Allow for renegotiating the caps of the sink
3733         pad. The queue will now wait until it is empty and forward the new
3734         caps to the source.
3735         * gst/gstbin.c (gst_bin_set_element_sched)
3736         (gst_bin_unset_element_sched): Make sure that all elements and
3737         links are registered and unregistered with the scheduler exactly
3738         once. This elaborates on a fix by Benjamin Otte, but
3739         guarantees that decoupled elements are also registered.
3740
3741 2004-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3742
3743         * docs/manual/quotes.xml:
3744           add a quote
3745         * configure.ac:
3746         * gst/gst.c:
3747         * gst/gstinfo.c:
3748           add LIBDIR and move init message higher up so it's at the start
3749
3750 2004-11-08  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3751
3752         * gst/schedulers/Makefile.am: fix disted build fair by including .h file
3753         * gstreamer.spec.in: add fair
3754
3755 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3756
3757         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3758         * gst/elements/gstidentity.c: (gst_identity_class_init):
3759           Use G_SIGNAL_TYPE_STATIC_SCOPE, patch by Christophe Fergeau
3760           <teuf@gnome.org> (#157263).
3761         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
3762         (gst_type_find_handle_src_query):
3763           Subtract size of internally stored data from position queries.
3764
3765 2004-11-07  Martin Soto  <martinsoto@users.sourceforge.net>
3766
3767         * gst/schedulers/fairscheduler.c:
3768         * gst/schedulers/faircothreads.c:
3769         * gst/schedulers/faircothreads.h:
3770         New cothread based scheduler: Fair scheduler.
3771         * gst/schedulers/gthread-cothreads.h: 
3772         Add the standard #if around the whole file.
3773         Defining symbol GTHREAD_COTHREADS_NO_DEFINITIONS will now prevent
3774         compilation of the functions defined in this file. This is
3775         necessary to be able to use this file as a normal header.
3776         * gst/schedulers/Makefile.am: Add compiling support for fair
3777         scheduler.
3778         * docs/gst/Makefile.am (IGNORE_HFILES): Exclude internal fair
3779         scheduler cothreads layer from documentation generation.
3780
3781 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3782
3783         * gst/autoplug/gstspideridentity.c:
3784         (gst_spider_identity_sink_loop_type_finding):
3785           Don't crash if that function is not implemented.
3786
3787 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3788
3789         * docs/pwg/advanced-types.xml:
3790           Another typo.
3791
3792 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3793
3794         * docs/pwg/intro-preface.xml:
3795           Hm, ok, so the brackets weren't really useful...
3796         * docs/pwg/other-ntoone.xml:
3797           Fix embarassing typo.
3798
3799 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3800
3801         * docs/pwg/intro-preface.xml:
3802           Rewrite preface.
3803
3804 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3805
3806         * docs/pwg/advanced-scheduling.xml:
3807         * docs/pwg/advanced-tagging.xml:
3808         * docs/pwg/advanced-types.xml:
3809         * docs/pwg/building-boiler.xml:
3810         * docs/pwg/building-chainfn.xml:
3811         * docs/pwg/building-signals.xml:
3812         * docs/pwg/building-state.xml:
3813         * docs/pwg/building-testapp.xml:
3814         * docs/pwg/intro-basics.xml:
3815         * docs/pwg/other-manager.xml:
3816         * docs/pwg/other-source.xml:
3817           Typo fixes.
3818         * docs/pwg/other-manager.xml:
3819           Add some first content. No example code yet.
3820         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
3821           Remove double newlines.
3822
3823 2004-11-04  Wim Taymans  <wim@fluendo.com>
3824
3825         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3826         (remove_from_group), (normalize_group), (group_migrate_connected),
3827         (gst_opt_scheduler_iterate):
3828         * testsuite/schedulers/.cvsignore:
3829         * testsuite/schedulers/Makefile.am:
3830         * testsuite/schedulers/queue_link.c: (main):
3831         Added testcase for scheduler segfault.
3832         Fix scheduler segfault when removing a decoupled
3833         entry point as the last element from a group.
3834
3835 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3836
3837         * gst/gstmarshal.list: add missing marshaller, fixes build
3838
3839 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3840
3841         * docs/random/signal: added notes about using BOXED for GstBuffer
3842         signal marshallers, not POINTER
3843
3844 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3845
3846         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3847         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init): more
3848         POINTER=>BOXED changes to marshal GstBuffers
3849
3850 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3851
3852         * gst/elements/gstidentity.c: (gst_identity_class_init): GstBuffer is 
3853         a boxed type, marshal the signal with VOID__BOXED, not VOID__POINTER
3854
3855 2004-11-03  Stefan Kost  <ensonic@users.sf.net>
3856
3857         * docs/gst/gstreamer-sections.txt:
3858         * docs/gst/tmpl/gstcaps.sgml:
3859         * docs/gst/tmpl/gsterror.sgml:
3860         * docs/gst/tmpl/gstinfo.sgml:
3861         * docs/gst/tmpl/gstmacros.sgml:
3862         * docs/gst/tmpl/gstutils.sgml:
3863         * docs/random/ensonic/interfaces.txt:
3864         * gst/gstinfo.h:
3865           added some more docs, removed two obsolete defines
3866
3867 2004-11-02  Kjartan Maraas <as at gnome.org>
3868
3869         reviewed by: Wim Taymans, Ronald Bultje.
3870
3871         * gst/cothreads.c: (cothread_create):
3872         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
3873         (gst_bin_child_state_change_func):
3874         * gst/gstbuffer.c: (gst_buffer_span):
3875         * gst/gstelement.c: (gst_element_get_index),
3876         (gst_element_get_event_masks), (gst_element_get_query_types),
3877         (gst_element_get_formats):
3878         * gst/gsterror.c: (_gst_core_errors_init),
3879         (_gst_library_errors_init), (_gst_resource_errors_init),
3880         (_gst_stream_errors_init):
3881         * gst/gstobject.c: (gst_object_default_deep_notify):
3882         * gst/gstpad.c: (gst_pad_get_event_masks),
3883         (gst_pad_get_internal_links_default):
3884         * gst/gstplugin.c: (gst_plugin_register_func),
3885         (gst_plugin_get_module):
3886         * gst/gststructure.c: (gst_structure_get_string),
3887         (gst_structure_get_abbrs), (gst_structure_from_abbr),
3888         (gst_structure_to_abbr):
3889         * gst/gstutils.c: (gst_print_element_args):
3890         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3891         (setup_group_scheduler), (gst_opt_scheduler_iterate):
3892         Aplied part of patch #157127: Cleanup of issues reported by 
3893         sparse.
3894         Also do not try to use cothreads when there is no cothread
3895         context yet.
3896
3897 2004-11-02  Sebastien Cote <sc5 at hermes.usherb.ca>
3898
3899         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3900         (gst_opt_scheduler_iterate):
3901         Applied patch #154061. Running a pipeline in which an element 
3902         calls GST_ELEMENT_ERROR in the chain function, the opt 
3903         scheduler doesn't unref the chain so it never gets freed.
3904
3905 2004-11-02  Wim Taymans  <wim@fluendo.com>
3906
3907         * gst/gststructure.c: (gst_structure_get_abbrs),
3908         (gst_structure_from_abbr), (gst_structure_to_abbr):
3909         Remove that ugly if-then thing in the code that converts
3910         between strings and types.
3911
3912 2004-11-02  Wim Taymans  <wim@fluendo.com>
3913
3914         * gst/gstscheduler.c: (gst_scheduler_add_element),
3915         (gst_scheduler_remove_element), (gst_scheduler_state_transition):
3916         Aplied clock distribution patch, this should fix bug
3917         #148787.
3918
3919 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3920
3921         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
3922
3923         * po/LINGUAS:
3924         * po/nb.po:
3925           Added Norwegian Bokmaal translation
3926
3927 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3928
3929         * tools/gst-inspect.c: (print_signal_info):
3930           print signal arguments as pointers if they are
3931
3932 2004-10-22  Stefan Kost  <ensonic@users.sf.net>
3933
3934         * docs/pwg/building-boiler.xml:
3935           exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
3936
3937 2004-10-19  Wim Taymans  <wim at fluendo dot com>
3938
3939         * gst/parse/parse.l:
3940         * testsuite/parse/parse1.c: (main):
3941         Since parse can do 'element name=a:b' make 'a:b.' work as
3942         well. 
3943         Added testcase to verify fix.
3944
3945 2004-10-19  Wim Taymans  <wim at fluendo dot com>
3946
3947         * tools/gst-inspect.c: (print_pad_info), (print_plugin_features):
3948         Use the realpad when printing the direction.
3949         Add extra \n when printing extensions of typefind factories.
3950
3951 2004-10-13  David Schleef  <ds@schleef.org>
3952
3953         * examples/manual/Makefile.am: $< isn't portable in Makefile
3954         rules.
3955
3956 2004-10-13  Stefan Kost  <ensonic@users.sf.net>
3957
3958         * docs/gst/tmpl/gstobject.sgml:
3959         * docs/gst/tmpl/gstplugin.sgml:
3960         * docs/gst/tmpl/gstpluginfeature.sgml:
3961         * docs/gst/tmpl/gstregistry.sgml:
3962         * docs/gst/tmpl/gstversion.sgml:
3963         * gst/gstbin.c:
3964           more api documentation
3965         * gst/gstplugin.c: (gst_plugin_register_func),
3966         (gst_plugin_check_file), (gst_plugin_load_file):
3967           better error signaling and logging
3968
3969 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3970
3971         * gst/gstqueue.c: (gst_queue_init), (gst_queue_handle_src_query):
3972           Subtract current queue contents from position queries.
3973
3974 2004-10-11  Johan Dahlin  <johan@gnome.org>
3975
3976         * gst/gsturi.c (gst_uri_get_location): unescape string
3977         (gst_uri_construct): escape string.
3978
3979 2004-10-11  Benjamin Otte  <otte@gnome.org>
3980
3981         * gst/gstpad.c: (gst_pad_renegotiate), (gst_pad_try_set_caps),
3982         (gst_pad_try_set_caps_nonfixed):
3983           allow renegotiation of unconnected pads (as inside spider). Simply
3984           return OK if unconnected - mimic try_set_caps there.
3985
3986 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3987
3988         * gst/gstbin.c: (gst_bin_sync_children_state):
3989           Add missing break.
3990
3991 2004-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
3992
3993         * gst/elements/gstfakesrc.c: (gst_fakesrc_get):
3994         Set element to EOS before sending EOS event
3995
3996 2004-10-08  Wim Taymans  <wim at fluendo dot com>
3997
3998         * gst/elements/gsttypefindelement.c:
3999         (gst_type_find_element_handle_event):
4000         Handle EOS events when doing the transition from
4001         typefind to data passing. This should fix the
4002         infinite loops in short files.
4003
4004 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4005
4006         * gst/gstthread.c: (gst_thread_change_state),
4007         (gst_thread_child_state_change):
4008         Make sure no iteration happens while performing
4009         the state change as it could mess up the internal
4010         consistency of the thread state.
4011
4012 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4013
4014         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_sync),
4015         (gst_thread_change_state), (gst_thread_child_state_change):
4016         Do not try to grab the iterate lock in the state change method
4017         when we are in the same thread as the iterate or else we
4018         could deadlock. Some other cleanups.
4019
4020 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4021
4022         * configure.ac:
4023           bump nano to cvs
4024
4025 === release 0.8.7 ===
4026
4027 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4028
4029         * configure.ac:
4030         * NEWS:
4031         * RELEASE:
4032         * configure.ac:
4033           releasing 0.8.7, "A Cruise"
4034
4035 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
4036
4037         * docs/random/mimetypes:
4038         Add an entry for Sony ATRAC3 audio format with mime-type
4039         used by rmdemux et riff-read
4040
4041 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4042
4043         * gst/elements/gsttypefindelement.c: (stop_typefinding):
4044         Push the buffer store instead of clearing it in case that
4045         the stream is not seekable.
4046
4047 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4048
4049         * gst/gstthread.c: (gst_thread_init), (gst_thread_change_state),
4050         (gst_thread_main_loop):
4051         Lock the iteration and the state change so that automatic
4052         negotiation and fixation does not happen at the same time
4053         as the in stream negotiation.
4054
4055 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4056
4057         * configure.ac:
4058           bump nano to cvs
4059
4060 === release 0.8.6 ===
4061
4062 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4063
4064         * configure.ac:
4065         * NEWS:
4066         * RELEASE:
4067         * configure.ac:
4068           releasing 0.8.6, "Narc"
4069
4070 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4071
4072         * configure.ac:
4073           prerel bump
4074
4075 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4076
4077         patch by: Steve Lhomme
4078
4079         * gst/elements/gstfakesrc.c:
4080         * gst/elements/gstidentity.c:
4081         * gst/gstthread.c:
4082           Fix for #153881
4083
4084 2004-10-01  Wim Taymans  <wim at fluendo dot com>
4085
4086         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
4087         Fix threadsafety of the crc checking function.
4088
4089 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4090
4091         patch by: Ronald Bultje
4092
4093         * gst/elements/gsttypefindelement.c: (stop_typefinding),
4094         (gst_type_find_element_handle_event),
4095         (gst_type_find_element_chain):
4096         * gst/elements/gsttypefindelement.h:
4097          #153657.
4098          Filter out discont event from seekable sources when typefind
4099          asks them to seek.  Fixes typefind with demuxers for
4100          avi, asf and matroska.
4101
4102 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4103
4104         * docs/gst/gstreamer-sections.txt:
4105         * gst/gstcaps.c:
4106         * gst/gstcaps.h:
4107         * gst/gstpad.c:
4108           Revert preferred caps: (#147789)
4109
4110 2004-09-19  Steve Lhomme  <steve.lhomme@free.fr>
4111
4112         * win32/dirent.c:
4113           fix a memory leak
4114
4115 2004-09-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4116
4117         * configure.ac:
4118           bump for prerelease
4119
4120 2004-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4121
4122         * docs/Makefile.am:
4123         * docs/manual/elements-api.xml:
4124           restructure so that common stuff is shown first
4125         * docs/manual/init-api.xml:
4126           convert to examples
4127         * docs/manual/manual.xml:
4128         * docs/manuals.mak:
4129         * docs/url.entities:
4130           link to API on the website, possibly override later in build
4131         * examples/manual/.cvsignore:
4132           ignore more
4133         * examples/manual/Makefile.am:
4134           add more examples
4135         * examples/manual/extract.pl:
4136           error out on failure
4137
4138 2004-09-08  Thomas Vander Stichele  <thomas at apestaart dot org>
4139
4140         * docs/gst/tmpl/gstthread.sgml:
4141         * docs/manual/init-api.xml:
4142         * examples/manual/Makefile.am:
4143           convert two code bits to examples
4144
4145 2004-09-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
4146
4147         * gst/gstelement.c: (gst_element_change_state):
4148           Well, actually, I was about to remove this insane assert when
4149           I noticed Wim already did that. A warning is nice so we can
4150           fix actual ugs (using --g-fatal-warnings and backtraces), so
4151           I added that instead.
4152
4153 2004-09-06  Wim Taymans  <wim@fluendo.com>
4154
4155         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
4156         (gst_element_threadsafe_properties_post_run),
4157         (gst_element_set_state), (gst_element_change_state):
4158         Added extra refcounting around various places. 
4159
4160 2004-09-06  Wim Taymans  <wim@fluendo.com>
4161
4162         * gst/gstpad.c: (gst_pad_link_call_link_functions):
4163         Fix debug info.
4164
4165 2004-09-06  Wim Taymans  <wim@fluendo.com>
4166
4167         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
4168         (remove_from_group):
4169         Some more debug info.
4170
4171 2004-09-03  Wim Taymans  <wim@fluendo.com>
4172
4173         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
4174         (gst_fakesrc_init), (gst_fakesrc_set_clock),
4175         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
4176         (gst_fakesrc_get), (gst_fakesrc_change_state):
4177         * gst/elements/gstfakesrc.h:
4178         * gst/elements/gstidentity.c: (gst_identity_class_init),
4179         (gst_identity_init), (gst_identity_chain),
4180         (gst_identity_set_property), (gst_identity_get_property),
4181         (gst_identity_change_state):
4182         * gst/elements/gstidentity.h:
4183         Added datarate properties to limit the datarate.
4184
4185 2004-08-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4186
4187         * gst/autoplug/gstspider.c: (plugin_init):
4188           don't set a rank. We don't want to autoplug by inserting spiders.
4189
4190 2004-08-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4191
4192         * gst/autoplug/gstspider.c: (gst_spider_class_init),
4193         (gst_spider_identity_plug):
4194           add a template for spider's sink
4195         * gst/gst.c: (gst_register_core_elements):
4196           queue's rank should be NULL, we don't want spider to add it.
4197
4198 2004-08-18  David Schleef  <ds@schleef.org>
4199
4200         * docs/gst/Makefile.am: Remove --ignore-fail-on-non-empty (#150331)
4201         * docs/libs/Makefile.am: same
4202         * docs/gst/tmpl/gstxml.sgml: Remove GstXMLNs
4203         * docs/random/ds/0.9-planning: random additions
4204         * docs/random/ds/0.9-suggested-changes: same
4205         * gst/gstxml.h: remove vestigal GstXMLNs definition
4206
4207         Preferred caps: (#147789)
4208         * docs/gst/gstreamer-sections.txt: Add symbols
4209         * docs/gst/tmpl/gstcaps.sgml: Add symbols
4210         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
4211         (gst_caps_append), (gst_caps_copy_1), (gst_caps_intersect),
4212         (gst_caps_union), (gst_caps_save_thyself), (gst_caps_load_thyself),
4213         (gst_caps_get_preferred), (gst_caps_set_preferred),
4214         (gst_caps_get_structure_by_id), (gst_caps_prefer_foreach),
4215         (gst_caps_use_preferred): Handle caps preferences
4216         * gst/gstcaps.h: Add caps preferences
4217         * gst/gstpad.c: (gst_pad_link_get_preferred),
4218         (gst_pad_link_fixate), (gst_pad_link_call_link_functions),
4219         (gst_pad_renegotiate), (gst_pad_guess_preferred),
4220         (gst_pad_get_caps), (gst_pad_push):  Use caps preferences for
4221         negotiation.
4222
4223 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4224
4225         * gst/autoplug/gstspideridentity.c:
4226         (gst_spider_identity_request_new_pad):
4227         * gst/elements/gstaggregator.c: (gst_aggregator_base_init),
4228         (gst_aggregator_init):
4229         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
4230         (gst_fakesink_init):
4231         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
4232         (gst_fakesrc_init):
4233         * gst/elements/gstfdsink.c: (gst_fdsink_base_init),
4234         (gst_fdsink_init):
4235         * gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
4236         * gst/elements/gstfilesink.c: (gst_filesink_base_init),
4237         (gst_filesink_init):
4238         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
4239         (gst_filesrc_init):
4240         * gst/elements/gstidentity.c: (gst_identity_base_init),
4241         (gst_identity_init):
4242         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
4243         (gst_multifilesrc_init):
4244         * gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
4245         (gst_pipefilter_init):
4246         * gst/elements/gststatistics.c: (gst_statistics_base_init),
4247         (gst_statistics_init):
4248         * gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
4249         * gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
4250           s/gst_pad_new/&_from_template/
4251           register pad templates in the base_init function
4252           add static pad template definitions
4253
4254 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4255
4256         * testsuite/bytestream/gstbstest.c: (gst_bstest_init):
4257         * testsuite/dynparams/dparamstest.c: (gst_dptest_init):
4258         * testsuite/refcounting/pad.c: (main):
4259         * testsuite/refcounting/thread.c: (create_thread_ghostpads):
4260           s/gst_pad_new/&_from_template/
4261           prepare deprecation of gst_pad_new
4262
4263 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4264
4265         patch by: Luca Ognibene <skaboy81@virgilio.it>
4266
4267         * gst/gstcaps.c:
4268         * gst/gstelement.c:
4269         * gst/gstpad.c:
4270         * gst/gstxml.c:
4271           fix memleaks.  Fixes #150001
4272
4273 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4274
4275         * docs/random/ds/0.9-suggested-changes:
4276           add notes - mostly about pad templates
4277
4278 2004-08-16  Steve Lhomme  <steve.lhomme@free.fr>
4279
4280         * win32/GStreamer.vcproj:
4281           temporary locale files are .gmo not .mo
4282
4283 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4284
4285         * configure.ac: bump nano to cvs
4286
4287 === release 0.8.5 ===
4288
4289 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4290
4291         * configure.ac:
4292           releasing 0.8.5, "Stuttgart"
4293         * NEWS:
4294         * RELEASE:
4295         * configure.ac:
4296         * docs/random/release:
4297           updates for release
4298
4299 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4300
4301         patch by: Wim Taymans (wim@fluendo.com)
4302
4303         * gst/gstbuffer.c:
4304         * gst/gstindex.h:
4305         * libs/gst/dataprotocol/dataprotocol.c:
4306           copy KEY_UNIT and DELTA_UNIT flags correctly.  Fixes #150242
4307
4308 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4309
4310         * Makefile.am:
4311         * win32/MANIFEST:
4312           add win32 dir to the build.  Fixes #149981.
4313
4314 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4315
4316         * configure.ac:
4317           bump libtool versioning
4318         * gst/gststructure.c:
4319           mark function as static
4320         * po/af.po:
4321         * po/az.po:
4322         * po/ca.po:
4323         * po/cs.po:
4324         * po/en_GB.po:
4325         * po/fr.po:
4326         * po/nl.po:
4327         * po/sq.po:
4328         * po/sr.po:
4329         * po/sv.po:
4330         * po/tr.po:
4331         * po/uk.po:
4332           translations update
4333         * win32/README.txt:
4334           trademark protection
4335
4336 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4337
4338         * configure.ac:
4339           fix GST_ORIGIN
4340           set GST_PACKAGE to source, and distinguish between release and other
4341         * tools/gst-inspect.c:
4342           print out plugin an element factory is part of so we see this info
4343
4344 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4345
4346         * docs/gst/gstreamer-sections.txt:
4347         * docs/gst/tmpl/gstbuffer.sgml:
4348         * docs/gst/tmpl/gstschedulerfactory.sgml:
4349           reorder docs a little, make GstBuffer's more sensible.
4350         * gst/gstbuffer.h:
4351           API: added GST_BUFFER_FLAG_DELTA_UNIT
4352         * gst/gstscheduler.c:
4353           comment API addition
4354
4355 2004-08-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4356
4357         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
4358           work with non-regular files that can be mmapped (like /dev/zero)
4359         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
4360           get rid of typefinds that require a seek when we can't seek instead
4361           of trying them over and over again
4362         * tools/gst-launch.c: (idle_func), (error_cb), (main):
4363           return non-zero failure value when the pipeline was interrupted or
4364           an error occurred
4365
4366 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4367
4368         * win32/config.h:
4369         * win32/GStreamer.vcproj:
4370           compile and install the locales
4371
4372 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4373
4374         * gst/gstvalue.c:
4375           fix a possible memory leak under Windows
4376
4377 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4378
4379         * win32/GStreamer.vcproj:
4380           fix a memory leak that occured under Windows
4381         * win32/gstreamer.def:
4382           add gst_scheduler_register
4383
4384 2004-08-11  Benjamin Otte  <otte@gnome.org>
4385
4386         * docs/gst/gstreamer-sections.txt:
4387         * gst/gstscheduler.c: (gst_scheduler_register):
4388         * gst/gstscheduler.h:
4389           API:
4390           add gst_scheduler_register shortcut similar to gst_element_register
4391         * gst/schedulers/entryscheduler.c: (plugin_init):
4392         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
4393         * gst/schedulers/gstoptimalscheduler.c: (plugin_init):
4394           use it
4395
4396 2004-08-10  Steve Lhomme  <steve.lhomme@free.fr>
4397
4398         * gst/gstvalue.h:
4399           fix a memory leak that occured under Windows
4400
4401 2004-08-10  Colin Walters  <walters@redhat.com>
4402
4403         * gst/registries/gstxmlregistry.c (gst_xml_registry_open_func):
4404         Don't use O_EXCL to open temporary registry.  It will prevent
4405         registry creation if a temporary one already exists, which
4406         is unnecessary.
4407
4408 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4409
4410         * docs/gst/gstreamer-sections.txt:
4411         * docs/gst/tmpl/gstvalue.sgml:
4412           remove some valuable stuff from the documentation due to the use of GST_EXPORT
4413
4414 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4415
4416         * win32/gstbytestream.vcproj:
4417         * win32/gstelements.vcproj:
4418         * win32/gstgetbits.vcproj:
4419         * win32/gst-inspect.vcproj:
4420         * win32/gst-launch.vcproj:
4421         * win32/gstoptimalscheduler.vcproj:
4422         * win32/GStreamer.vcproj:
4423         * win32/gst-register.vcproj:
4424         * win32/gstspider.vcproj:
4425           update the include and lib dirs to fit standard libraries as
4426           described in the Win32 manual
4427
4428 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4429
4430         * win32/config.h:
4431         * win32/gstversion.h:
4432           enable NLS again, push the version number for the coming 0.8.5 release
4433
4434 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4435
4436         * gst/gstvalue.h:
4437           export gst_type_XXX for windows DLLs
4438
4439 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4440
4441         * docs/faq/gst-uninstalled:
4442           fix PKG_CONFIG_PATH and PYTHONPATH
4443         * gst/schedulers/Makefile.am:
4444           cleanup
4445         * libs/gst/bytestream/bytestream.c:
4446           remove newline
4447         * po/LINGUAS:
4448         * po/sq.po:
4449           adding Albanian translation (Laurent Dhima)
4450         * po/cs.po:
4451           updated
4452
4453 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4454
4455         * po/ca.po:
4456         * po/sv.po:
4457           updated translations
4458
4459 2004-08-04  Benjamin Otte  <otte@gnome.org>
4460
4461         * tests/mass_elements.c: (main):
4462           allow specifying src and sink element explicitly, so I can test
4463           videotestsrc instead of fakesrc
4464
4465 2004-08-04  Benjamin Otte  <otte@gnome.org>
4466
4467         * gst/gststructure.c: (gst_structure_id_empty_new_with_size),
4468         (gst_structure_id_empty_new), (gst_structure_empty_new),
4469         (gst_structure_copy):
4470           add gst_structure_id_empty_new_with_size to allow preallocating
4471           value array sizes. Use this in gst_structure_copy to get rid of
4472           reallocs.
4473           don't do quark=>string=>quark when copying structures
4474
4475 2004-08-03  Steve Lhomme  <steve.lhomme@free.fr>
4476
4477         * docs/manual/win32.xml:
4478         * win32/README.txt:
4479           update documentation with the clean version of dependencies
4480
4481 2004-08-03  Benjamin Otte  <otte@gnome.org>
4482
4483         * gst/schedulers/entryscheduler.c:
4484         (gst_entry_scheduler_remove_element):
4485           fix for GST_DISABLE_DEBUG
4486         * tools/gst-launch.c: (print_tag):
4487           fixes for G_DISABLE_ASSERT
4488
4489 2004-08-03  Benjamin Otte  <otte@gnome.org>
4490
4491         * gst/gst.c: (gst_register_core_elements):
4492           fix for G_DISABLE_ASSERT
4493         * gst/gstinfo.c: (__gst_in_valgrind):
4494           add for GST_DISABLE_DEBUG
4495
4496 2004-08-03  Benjamin Otte  <otte@gnome.org>
4497
4498         * gst/parse/parse.l:
4499           fix for G_DISABLE_ASSERT
4500
4501 2004-08-03  Wim Taymans  <wim@fluendo.com>
4502
4503         * gst/gstbin.c: (gst_bin_get_type),
4504         (gst_bin_child_state_change_func):
4505         * gst/gstthread.c: (gst_thread_change_state):
4506         Backported some debug logging from a reverted patch
4507         Don't try to destroy the thread twice. Added some more
4508         debugging in GstThread. Unlock and signal even if we
4509         are in the thread context.
4510
4511 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
4512
4513         * po/uk.po:
4514           updated translation
4515
4516 2004-07-30  David Schleef  <ds@schleef.org>
4517
4518         * gst/gstatomic_impl.h: Enable atomic code for x86_64
4519
4520 2004-07-29  David Schleef  <ds@schleef.org>
4521
4522         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test):
4523         Use GST_READ_GUINTxx_BE(), since it accesses unaligned memory.
4524
4525 2004-07-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4526
4527         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
4528         (gst_bin_add_func), (gst_bin_remove_func),
4529         (gst_bin_child_state_change), (gst_bin_child_state_change_func),
4530         (set_kid_state_func), (gst_bin_change_state), (gst_bin_set_state),
4531         (gst_bin_change_state_norecurse), (gst_bin_dispose),
4532         (gst_bin_sync_children_state):
4533         * gst/gstbin.h:
4534         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_release),
4535         (gst_thread_change_state):
4536         * testsuite/states/Makefile.am:
4537           revert state change patches as agreed so we can rework them
4538           gradually
4539
4540 2004-07-29  Benjamin Otte  <otte@gnome.org>
4541
4542         * libs/gst/control/Makefile.am:
4543           link to libgstreamer (fixes Debian bug 262019, see
4544           http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=262019 )
4545
4546 2004-07-29  Wim Taymans  <wim@fluendo.com>
4547
4548         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4549         (check_from_fraction_convert), (transform_test), (main):
4550         Make the test less pedantic about float roundoff errors.
4551
4552 2004-07-29  Benjamin Otte  <otte@gnome.org>
4553
4554         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file),
4555         (gst_filesrc_srcpad_event):
4556           make seek events to before start/after end of file not fail, but
4557           seek to start/end instead
4558         * testsuite/caps/fraction-convert.c: (check_from_double_convert):
4559           add more output
4560
4561 2004-07-29  Benjamin Otte  <otte@gnome.org>
4562
4563         * gst/gstpad.c: (gst_pad_set_explicit_caps):
4564           check that caps are fixed
4565         * gst/gstpad.c: (gst_pad_template_new):
4566           don't try to simplify caps, costs too much time on gst_init
4567         * gst/gstplugin.c: (gst_plugin_add_feature):
4568           G_ERROR if features are added twice
4569         * gst/gsttypefind.c: (gst_type_find_register):
4570         * gst/gstelementfactory.c: (gst_element_register):
4571           don't add features twice
4572         * docs/random/ds/0.9-suggested-changes:
4573           add note about possible gst_init optimization
4574
4575 2004-07-28  David Schleef  <ds@schleef.org>
4576
4577         * testsuite/elements/Makefile.am:
4578         * testsuite/elements/struct_i386.h:
4579         * testsuite/elements/struct_size.c: (main):  A little test
4580         to keep distcheck from working if someone changes a structure
4581         size accidentally.
4582
4583 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4584
4585         * docs/libs/Makefile.am:
4586         * docs/libs/gstreamer-libs-docs.sgml:
4587         * docs/libs/gstreamer-libs-sections.txt:
4588         * docs/libs/tmpl/gstbytestream.sgml:
4589         * docs/libs/tmpl/gstcontrol.sgml:
4590         * docs/libs/tmpl/gstdataprotocol.sgml:
4591         * docs/libs/tmpl/gstgetbits.sgml:
4592         * libs/gst/bytestream/Makefile.am:
4593         * libs/gst/bytestream/bytestream.c:
4594         * libs/gst/bytestream/bytestream.h:
4595         * libs/gst/control/Makefile.am:
4596         * libs/gst/dataprotocol/Makefile.am:
4597         * libs/gst/getbits/Makefile.am:
4598         * libs/gst/getbits/getbits.h:
4599           various doc and style fixes, adding bytestream to libs docs.
4600
4601 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4602
4603         * docs/gst/gstreamer-docs.sgml:
4604         * docs/libs/Makefile.am:
4605         * docs/libs/gstreamer-libs-docs.sgml:
4606         * docs/libs/gstreamer-libs-sections.txt:
4607         * libs/gst/control/dparam.c:
4608           more doc fixes.  gst-libs docs now build the same way as gst.
4609
4610 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4611
4612         * configure.ac:
4613         * testsuite/Makefile.am:
4614         * testsuite/bins/Makefile.am:
4615         * testsuite/caps/Makefile.am:
4616         * testsuite/cleanup/Makefile.am:
4617         * testsuite/clock/Makefile.am:
4618         * testsuite/debug/Makefile.am:
4619         * testsuite/dlopen/Makefile.am:
4620         * testsuite/dynparams/Makefile.am:
4621         * testsuite/elements/.cvsignore:
4622         * testsuite/elements/Makefile.am:
4623         * testsuite/enumcaps/Makefile.am:
4624         * testsuite/enumcaps/enumcaps.c:
4625         * testsuite/ghostpads/Makefile.am:
4626         * testsuite/indexers/Makefile.am:
4627         * testsuite/negotiation/Makefile.am:
4628         * testsuite/parse/Makefile.am:
4629         * testsuite/plugin/Makefile.am:
4630         * testsuite/refcounting/Makefile.am:
4631         * testsuite/schedulers/.cvsignore:
4632         * testsuite/states/Makefile.am:
4633         * testsuite/tags/Makefile.am:
4634         * testsuite/threads/Makefile.am:
4635           fold enumcaps into caps dir
4636           clean up Makefile.am's for testsuite
4637
4638 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4639
4640         * docs/gst/Makefile.am:
4641         * docs/libs/Makefile.am:
4642           clean up docs build.  Fixes needless rebuilding of template files.
4643
4644 2004-07-28  Wim Taymans  <wim@fluendo.com>
4645
4646         * gst/gstbin.c: (set_kid_state_func), (gst_bin_set_state):
4647         * gst/gstthread.c: (gst_thread_release), (gst_thread_set_state):
4648         Make sure that a bin state change tries to keep the children
4649         in sync. 
4650         Added debug logging to the thread.
4651
4652 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4653
4654         * win32/GStreamer.vcproj:
4655         * win32/gstreamer.def:
4656           more exports for the plugins
4657
4658 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4659
4660         * win32/gstgetbits.vcproj:
4661         * win32/gstgetbits.def:
4662         * win32/msvc71.sln:
4663           add support for the getbits plugin
4664
4665 2004-07-27  Wim Taymans  <wim@fluendo.com>
4666
4667         * gst/gstvalue.c: (gst_value_transform_double_fraction),
4668         (gst_value_transform_fraction_double), (_gst_value_initialize):
4669         * testsuite/caps/Makefile.am:
4670         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4671         (check_from_fraction_convert), (transform_test), (main):
4672         Added transform functions between double and fraction.
4673         Added testcase to verify transforms
4674
4675 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4676
4677         * win32/GStreamer.vcproj:
4678           rename GStreamer-0.8.lib to libgstreamer.lib
4679
4680 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4681
4682         * win32/gstelements.vcproj:
4683         * win32/gstoptimalscheduler.vcproj:
4684           fixes for the Release build
4685
4686 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4687
4688         * win32/config.h:
4689           update the version number
4690
4691 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4692
4693         * win32/GStreamer.vcproj:
4694           add gstinterface to the build
4695
4696 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4697
4698         * win32/gstreamer.def:
4699           add many definitions needed by plugins,
4700           GST_CAT_DEFAULT only available in the Debug build ?
4701
4702 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4703
4704         * gst/gstelement.c: (gst_element_set_eos_recursive):
4705           various whitespace fixes.
4706           doc fix, fixes #148497
4707
4708 2004-07-25  Benjamin Otte  <otte@gnome.org>
4709
4710         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
4711           don't delay links on the sink elements, it causes unnegotiated
4712           links.
4713         * gst/elements/gsttypefindelement.c:
4714         (gst_type_find_element_base_init):
4715           add our padtemplates, we indeed do have some.
4716         * gst/elements/gsttypefindelement.c:
4717         (gst_type_find_element_handle_event),
4718         (gst_type_find_element_chain):
4719           don't push data when typefinding failed.
4720         * gst/gstpad.c: (gst_pad_link_fixate):
4721           check that no fixate function returns empty caps.
4722         * gst/gstpad.c: (gst_pad_push):
4723           check that the link is negotiated before data gets pushed.
4724         * tools/gst-register.c: (main):
4725           don't assert (fixes #148283)
4726
4727 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4728
4729         * docs/gst/gstreamer-sections.txt:
4730         * docs/gst/tmpl/gstconfig.sgml:
4731           add GST_PLUGIN_EXPORT definition
4732
4733 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4734
4735         * gst/gstplugin.h:
4736         * gst/gstconfig.h.in:
4737         * win32/gstconfig.h:
4738         * win32/gstelements.def:
4739         * win32/gstelements.vcproj:
4740         * win32/gstoptimalscheduler.def:
4741         * win32/gstoptimalscheduler.vcproj:
4742         * win32/gstspider.def:
4743         * win32/gstspider.vcproj:
4744           remove unused .def files and export symbols using GST_PLUGIN_DEFINE
4745
4746 2004-07-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4747
4748         * docs/gst/gstreamer-sections.txt:
4749           remove GST_CAT_DEFAULT because the type has changed
4750
4751 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4752
4753         * win32/gstbytestream.vcproj:
4754         * win32/gstelements.vcproj:
4755         * win32/gst-inspect.vcproj:
4756         * win32/gst-launch.vcproj:
4757         * win32/gstoptimalscheduler.vcproj:
4758         * win32/GStreamer.vcproj:
4759         * win32/gst-register.vcproj:
4760         * win32/gstspider.vcproj:
4761         * win32/msvc71.sln:
4762           Copy the files where needed after building, The testsuite will be
4763           built separately
4764
4765 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4766
4767         * win32/config.h:
4768         * win32/README.txt:
4769         * docs/manual/win32.xml:
4770         Fixed the plugin and GStreamer location
4771
4772 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4773
4774         * win32/gstreamer.def:
4775         More exports for the plugins
4776
4777 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4778
4779         * gst/gstinfo.h:
4780         Marc was right, we need to export literally GST_CAT_DEFAULT
4781
4782 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4783
4784         * win32/config.h:
4785         NLS crashes in gettext, disabled until this is solved
4786
4787 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4788
4789         * win32/gst-inspect.vcproj:
4790         * win32/gst-launch.vcproj:
4791         Should use NLS when available
4792
4793 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4794
4795         * gst/registries/gstxmlregistry.c:
4796         removing the file doesn't seem to be a good idea on Linux
4797
4798 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4799
4800         * gst/registries/gstxmlregistry.c:
4801         Remove the registry before renaming the tempfile (needed for Windows)
4802
4803 2004-07-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4804
4805         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init),
4806         (gst_multifilesrc_init), (gst_multifilesrc_set_property),
4807         (gst_multifilesrc_get_property), (gst_multifilesrc_get):
4808         * gst/elements/gstmultifilesrc.h:
4809         Added newmedia property so it generates newmedia events between each
4810         file when property is set, as well as fixed eos handling
4811
4812 2004-07-22  David Schleef  <ds@schleef.org>
4813
4814         * gst/gststructure.c: (gst_structure_id_empty_new),
4815         (gst_structure_empty_new):  Set type field correctly.
4816         * gst/gststructure.h: Check type field correctly.
4817         * testsuite/caps/Makefile.am:
4818         * testsuite/caps/structure.c: (test1), (main): Add a very small
4819         test for structures.
4820
4821 2004-07-22  David Schleef  <ds@schleef.org>
4822
4823         * docs/random/ds/0.9-suggested-changes: more comments
4824         * tools/gst-launch.c: (idle_func): Fix hard-to-translate string.
4825
4826 2004-07-22  Benjamin Otte  <otte@gnome.org>
4827
4828         * gst/gstelementfactory.c: (gst_element_register):
4829           set the factory in the class struct, so gst_element_get_factory
4830           actually works
4831         * gst/parse/grammar.y:
4832           set element to playing when it gets unlocked as we can't rely on the
4833           bin state - all elements in the bin state might still be locked in
4834           NULL)
4835
4836 2004-07-22  Benjamin Otte  <otte@gnome.org>
4837
4838         * gst/gstelement.c: (gst_element_set_state_func):
4839           make this a static function
4840
4841 2004-07-22  Wim Taymans  <wim@fluendo.com>
4842
4843         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
4844         (gst_opt_scheduler_pad_link):
4845         fix 147894-2 and the group_link problem.
4846
4847 2004-07-22  Wim Taymans  <wim@fluendo.com>
4848
4849         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
4850         (handoff_identity), (main):
4851         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
4852         (handoff_identity), (main):
4853         * testsuite/schedulers/Makefile.am:
4854         * testsuite/schedulers/group_link.c: (main):
4855         Show bug in scheduler when linking chain and loop based element 
4856         where the chain based element was not yet in a group.
4857
4858 2004-07-21  Benjamin Otte  <otte@gnome.org>
4859
4860         * gst/.cvsignore:
4861         * gst/autoplug/.cvsignore:
4862         * gst/elements/.cvsignore:
4863         * gst/indexers/.cvsignore:
4864         * libs/gst/bytestream/.cvsignore:
4865         * libs/gst/control/.cvsignore:
4866         * libs/gst/getbits/.cvsignore:
4867         * testsuite/states/.cvsignore:
4868         * testsuite/threads/.cvsignore:
4869           keep this up to date, since I seem to be the only one who cares
4870           about not missing files on commits (editor's note: no you don't,
4871           but feel free to change them at the time you add stuff instead
4872           of later on)
4873
4874 2004-07-21  Benjamin Otte  <otte@gnome.org>
4875
4876         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
4877         (gst_bin_fix_state), (gst_bin_add_func), (gst_bin_remove_func),
4878         (gst_bin_child_state_change_func), (set_kid_state_func),
4879         (gst_bin_set_state), (gst_bin_change_state_norecurse):
4880           make state changes work correctly and reentrant (so removing
4881           elements from bins during state changes of bins doesn't cause
4882           segfaults or even wrong states)
4883           add debugging category and debugging output to print children states
4884         * gst/gstbin.c: (gst_bin_dispose): 
4885           add some assertion checks
4886         * gst/gstbin.h:
4887         * gst/gstbin.c: (gst_bin_sync_children_state):
4888           deprecate this function - it just does gst_bin_set_state (bin,
4889           GST_STATE (bin)) 
4890         * testsuite/threads/queue.c: (main):
4891           don't use gst_bin_sync_children_state anymore
4892         * testsuite/states/Makefile.am:
4893         * testsuite/states/bin.c:
4894           test that the state changes of bins work as expected
4895         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_set_state):
4896           some adjustments to change states correctly, too
4897         * gst/gstthread.c: (gst_thread_change_state):
4898           don't enable/disable "threadsafe" properties, they're unused and
4899           cause random segfaults
4900         * testsuite/threads/Makefile.am:
4901           the queue check randomly passes now, ignore it
4902
4903 2004-07-21  Benjamin Otte  <otte@gnome.org>
4904
4905         * gst/gstpad.c:
4906           check if data is NULL before outputting debug info. (fixes #145100)
4907
4908 2004-07-21  Benjamin Otte  <otte@gnome.org>
4909
4910         * gst/schedulers/entryscheduler.c:
4911         (gst_entry_scheduler_loop_wrapper),
4912         (gst_entry_scheduler_chain_wrapper),
4913         (gst_entry_scheduler_get_wrapper):
4914           reset the state when the cothread starts, so we don't get assertion
4915           failures on restarting of cothreads
4916
4917 2004-07-20  Benjamin Otte  <otte@gnome.org>
4918
4919         * gst/gstelement.c: (gst_element_link_pads_filtered):
4920           use correct sinkpad, if only sinkpad is specified, but not srcpad
4921           (fixes #147889)
4922         * gst/gstelement.c: (gst_element_set_state_func),
4923         (gst_element_change_state): ref/unref the element, signal handlers
4924         could get rid of the element otherwise
4925
4926 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
4927
4928         * docs/random/ds/0.9-suggested-changes:
4929           Make note about renaming fixed-list to array.
4930         * gst/gstvalue.c: (gst_value_intersect_fixed_list),
4931         (_gst_value_initialize):
4932           Add array intersections.
4933         * testsuite/caps/intersect2.c: (main):
4934           Add test for array intersections.
4935
4936 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4937
4938         * configure.ac: back to cvs
4939
4940 === release 0.8.4 ===
4941
4942 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4943
4944         * configure.ac:
4945           releasing 0.8.4, "Paella"
4946           bump libtool versioning
4947
4948 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4949
4950         * po/LINGUAS:
4951         * po/ca.po:
4952           adding Catalan translation (Jordi Mallach)
4953
4954 2004-07-20  Wim Taymans  <wim@fluendo.com>
4955
4956         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
4957         (handoff_identity), (main):
4958         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
4959         (handoff_identity), (main):
4960         * testsuite/schedulers/Makefile.am:
4961         Added failing testcase for variant of #147894
4962
4963 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4964
4965         patch by: David Moore
4966
4967         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
4968         (schedule_group), (gst_opt_scheduler_schedule_run_queue),
4969         (group_migrate_connected):
4970         * testsuite/schedulers/Makefile.am:
4971           fix for #142813 (Deadlock in optimal scheduler)
4972
4973 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4974
4975         patch by: Wim Taymans
4976
4977         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
4978         (gst_opt_scheduler_schedule_run_queue),
4979         (gst_opt_scheduler_get_wrapper), (get_group),
4980         (group_migrate_connected):
4981         * testsuite/schedulers/Makefile.am:
4982           fix for #147819 (Add some checks in the opt scheduler)
4983
4984 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4985
4986         patch by: Benjamin Otte
4987
4988         * gst/gstelementfactory.c: (__gst_element_details_set):
4989           fix for #147929: running gst-register in non-utf8 locale can cause
4990           invalid registry
4991
4992 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4993
4994         patch by: Wim Taymans
4995
4996         * gst/schedulers/gstoptimalscheduler.c: (group_num_elements),
4997         (group_has_element), (element_get_reachables_func),
4998         (group_migrate_connected):
4999           fix for #147894 (opt scheduler decoupled elements mismanagement)
5000         * testsuite/schedulers/Makefile.am:
5001           testsuite app now passes
5002
5003 2004-07-19  Wim Taymans  <wim@fluendo.com>
5004
5005         * testsuite/schedulers/147819.c: (handoff_identity1),
5006         (handoff_identity2), (main):
5007         * testsuite/schedulers/Makefile.am:
5008         Added testcase for bug 147819
5009
5010 2004-07-19  Wim Taymans  <wim@fluendo.com>
5011
5012         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
5013         (handoff_identity), (main):
5014         * testsuite/schedulers/Makefile.am:
5015         Added testcase for bug 147894
5016
5017 2004-07-16  Wim Taymans  <wim@fluendo.com>
5018
5019         * testsuite/schedulers/142183-2.c: (handoff_identity), (main):
5020         * testsuite/schedulers/142183.c: (handoff_identity), (main):
5021         * testsuite/schedulers/Makefile.am:
5022         Added testsuite for bug 142183 in its two incarnations. Refcount
5023         is not increased for scheduled elements and threadsafe properties
5024         mutexes are not properly unlocked.
5025
5026 2004-07-16  Wim Taymans  <wim@fluendo.com>
5027
5028         * gst/schedulers/gstoptimalscheduler.c: (gst_opt_scheduler_init),
5029         (create_chain), (destroy_chain), (create_group), (destroy_group),
5030         (add_to_group), (merge_groups), (group_elements), (group_inc_link),
5031         (group_dec_link), (gst_opt_scheduler_pad_link),
5032         (group_inc_links_for_element), (group_migrate_connected):
5033         Call group_inc_link with the proper src->sink ordering -- 
5034         break this, and we break sort_chain. patch from wingo for bug
5035         147713.
5036         Partially revert patch 1.89. When adding a loop based element to 
5037         the scheduler, the links to other groups are automatically followed
5038         and incremented. This should not happen because the bin will call
5039         pad_link explicitly for those connection, resulting in them counted 
5040         twice. Results in assertion failure on pipeline cleanup.
5041
5042 2004-07-16  Wim Taymans  <wim@fluendo.com>
5043
5044         * testsuite/schedulers/143777-2.c: (main):
5045         * testsuite/schedulers/147713.c: (handoff_src), (handoff_sink),
5046         (main):
5047         * testsuite/schedulers/Makefile.am:
5048         Added cleanup code to testcase 143777-2.
5049         Added testcase to show bug 147713, does not really show the
5050         deadlock as I can't figure out how to trigger it, but it does
5051         demonstrate bad ordering in the scheduler.
5052
5053 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5054
5055         * gst/gstvalue.c: (gst_value_deserialize_fraction):
5056           change strndup to g_strndup.  Fixes #147707
5057
5058 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5059
5060         * po/af.po:
5061         * po/az.po:
5062         * po/cs.po:
5063         * po/en_GB.po:
5064         * po/fr.po:
5065         * po/nl.po:
5066         * po/sr.po:
5067         * po/sv.po:
5068         * po/tr.po:
5069         * po/uk.po:
5070           updated translations
5071
5072 2004-07-16  Benjamin Otte  <otte@gnome.org>
5073
5074         * gst/gstvalue.c: (gst_greatest_common_divisor):
5075           use ints and return ints, fractions only use ints, too, so this
5076           avoids accidently casting multiplications to unsigned
5077         (gst_value_lcopy_fraction): it's ints, not uint32
5078         (gst_value_set_fraction): disallow minint, multiplying and negation
5079           are broken with it
5080         (gst_value_fraction_multiply): fix to make large numbers work and get
5081         rid of the assumption that the multiplication of two ints fits an
5082         int64 - dunno if that's true for all systems
5083         * testsuite/caps/Makefile.am:
5084         * testsuite/caps/fraction-multiply-and-zero.c:
5085         (check_multiplication), (check_equal), (zero_test), (main):
5086           add tests for all the stuff above
5087         * testsuite/caps/value_compare.c: (test1):
5088           fix comment
5089         * tests/.cvsignore:
5090         * testsuite/caps/.cvsignore:
5091         * testsuite/debug/.cvsignore:
5092         * testsuite/dlopen/.cvsignore:
5093         * testsuite/states/.cvsignore:
5094           get up to date
5095
5096 2004-07-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5097
5098         * docs/manual/bins-api.xml:
5099         * docs/manual/factories.xml:
5100         * docs/manual/helloworld.xml:
5101         * docs/manual/links-api.xml: 
5102           fixes for out of date info, incorrect info and grammar
5103
5104 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5105
5106         * docs/manual/pads.xml:
5107         * docs/manual/pads-api.xml: grammar fix
5108
5109 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5110
5111         * docs/manual/pads-api.xml: typo + grammar fix
5112
5113 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5114
5115         * docs/gst/gstreamer-sections.txt:
5116           add new symbols
5117         * docs/gst/tmpl/gstelement.sgml:
5118         * docs/gst/tmpl/gstpad.sgml:
5119         * docs/gst/tmpl/gsttypes.sgml:
5120         * docs/gst/tmpl/gstvalue.sgml:
5121           update docs
5122         * gst/gststructure.c: (gst_structure_set_valist),
5123         (gst_structure_from_abbr), (gst_structure_to_abbr):
5124         * gst/gstvalue.c: (gst_value_compare_double), (gst_type_is_fixed),
5125         (gst_greatest_common_divisor), (gst_value_init_fraction),
5126         (gst_value_copy_fraction), (gst_value_collect_fraction),
5127         (gst_value_lcopy_fraction), (gst_value_set_fraction),
5128         (gst_value_get_fraction_numerator),
5129         (gst_value_get_fraction_denominator),
5130         (gst_value_fraction_multiply), (gst_value_serialize_fraction),
5131         (gst_value_deserialize_fraction),
5132         (gst_value_transform_fraction_string),
5133         (gst_value_transform_string_fraction),
5134         (gst_value_compare_fraction), (_gst_value_initialize):
5135         * gst/gstvalue.h:
5136           adding GstFraction GValue type, get/set, and multiply
5137         * testsuite/caps/Makefile.am:
5138         * testsuite/caps/fraction.c: (test), (main):
5139         * testsuite/caps/string-conversions.c: (main):
5140         * testsuite/caps/value_compare.c: (test1), (main):
5141           add regression tests for GstFraction
5142
5143 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5144         
5145         * docs/manual/init-api.xml: Grammar fix
5146
5147 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5148
5149         * docs/manual/states.xml: Fix inconsistent information
5150
5151 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5152
5153         * gst/gstelement.c: (gst_element_set_state):
5154         * gst/gstpad.c: (gst_pad_try_set_caps):
5155         * gst/gststructure.c:
5156         * gst/gstthread.c: (gst_thread_child_state_change):
5157         * gst/gstvalue.c: (gst_value_compare_double):
5158         * gst/gstvalue.h:
5159         * testsuite/parse/parse1.c: (main):
5160           debugging additions and style cleanups
5161
5162 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5163
5164         * docs/manual/states.xml: Grammar fix
5165
5166 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5167
5168         * docs/manual/pads.xml: Grammar fix
5169
5170 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5171
5172         * docs/manual/elements.xml: Fixed image reference
5173
5174 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5175
5176         * docs/manual/goals.xml: Grammar fix
5177
5178 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5179
5180         * docs/manual/motivation.xml:
5181         Bonobo is no longer "emerging" and added sentence regarding tcp plugins
5182
5183 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5184
5185         * docs/manual/motivation.xml: Fix spelling
5186
5187 2004-07-15  Benjamin Otte  <otte@gnome.org>
5188
5189         * gst/gstelement.h: 
5190           Don't GST_ERROR_OBJECT empty strings - Solaris doesn't like NULL
5191           strings.
5192         * gst/gstelement.c (gst_element_class_init):
5193           GError's are boxed, not objects
5194         * gst/gstmarshal.list:
5195           update list for the fixed error signal
5196
5197 2004-07-14  Andy Wingo  <wingo@pobox.com>
5198
5199         * gst/gsttag.c: Add a tag merge func for pointers. The header was
5200         there all along, but the function wasn't. (guile-gstreamer's build
5201         system uses the address of the function -- I wasn't actually
5202         trying to use this.)
5203
5204 2004-07-14  Andy Wingo  <wingo@pobox.com>
5205
5206         * gst/gstpad.c (gst_pad_try_set_caps): Naive link functions (such
5207         as gst_pad_proxy_pad_link) just link to every other pad when they
5208         are called. In the case where the graph has cycles, this will mean
5209         that a call to try_set_caps will recurse. Allow this recursion
5210         and return OK, while we wait for the first try_set_caps to give a
5211         proper return value.
5212         (gst_pad_link_call_link_functions): Since this function is the
5213         only one to set the NEGOTIATING flag on a pad, if the flag is set
5214         it means that the link functions have indirectly recursed. If this
5215         happens, error out to avoid infinite recursion and an eventual
5216         SEGV.
5217         (gst_real_pad_class_init): Remove a crufty GtkObject comment.
5218         (gst_pad_proxy_getcaps): Intersect the result with the template
5219         caps to ensure that the return value is valid.
5220
5221 2004-07-14  Andy Wingo  <wingo@pobox.com>
5222
5223         * gst/gstdata.c (gst_data_is_writable): s/>=/>/. If there is only
5224         one refcount, the calling function is the owner of the buffer.
5225
5226 2004-07-14  Wim Taymans  <wim@fluendo.com>
5227
5228         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5229         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5230         Fix stupid warning when an element is to be migrated but
5231         is already migrated.
5232
5233 2004-07-14  Wim Taymans  <wim@fluendo.com>
5234
5235         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5236         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5237         Make sure that a single non-loop-based element does not 
5238         end up in a group. This fixes the testsuite again.
5239
5240 2004-07-14  Wim Taymans  <wim@fluendo.com>
5241
5242         * gst/schedulers/gstoptimalscheduler.c: (create_group),
5243         (add_to_group), (merge_groups), (schedule_group),
5244         (gst_opt_scheduler_get_wrapper), (group_elements),
5245         (group_dec_link), (gst_opt_scheduler_pad_link),
5246         (group_migrate_connected), (gst_opt_scheduler_pad_unlink),
5247         (gst_opt_scheduler_iterate):
5248         move isolated groups to a new chain.
5249         Emit a warning instead of segfaulting in some error cases.
5250         Fix a bug where the link count between groups was not calculated 
5251         correctly. Fixes #144510.
5252
5253 2004-07-13  Steve Lhomme  <steve.lhomme@free.fr>
5254         * gst/elements/gstfilesrc.c:
5255           Binary files support under Windows now OK
5256       
5257 2004-07-13  Benjamin Otte  <otte@gnome.org>
5258
5259           compatibility fixes for Solaris 8/gcc 2.95
5260         * configure.ac:
5261           include libintl libs in LDFLAGS
5262         * gstvalue.c (gst_value_deserialize_buffer):
5263           cast isxdigit stuff to int to silence compiler warning
5264
5265 2004-07-12  Benjamin Otte  <otte@gnome.org>
5266
5267         * gst/gsttypes.h:
5268           get rid of GST_O_READONLY, GST_FILE_MODE_READ and
5269           GST_FILE_MODE_WRITE, I don't want them in the exported headers. It
5270           just causes support madness
5271         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
5272           make it work without this
5273         * gst/indexers/gstfileindex.c: (_file_index_id_save_entries),
5274         (gst_file_index_commit):
5275           glib IO channels don't want binary mode
5276         * testsuite/bytestream/filepadsink.c: (main):
5277         * testsuite/bytestream/test1.c: (read_param_file):
5278           use "rb" instead of GST_FILE_MODE_READ, it works on POSIX systems
5279
5280 2004-07-12  Benjamin Otte  <otte@gnome.org>
5281
5282         * gst/gstelement.c: (gst_element_class_init),
5283         (gst_element_set_state), (gst_element_set_state_func):
5284           virutalize gst_element_set_state, use set_state member in class
5285           struct that was already added in 0.7 for this.
5286         * gst/gstbin.c: (gst_bin_foreach), (set_kid_state_func), 
5287         (gst_bin_change_state):
5288           make gst_bin_foreach works similar to other foreach functions, plug
5289           memleaks in it. Make functions using it work with the new approach.
5290           Document gst_bin_foreach, so it can be exported if we want to
5291         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_state):
5292           use virtualized set_state to make set_state on bins set the state of
5293           all its children.
5294
5295 2004-07-12  Benjamin Otte  <otte@gnome.org>
5296
5297         * configure.ac:
5298           require valgrind >= 2.1 (fixes Gentoo bug 53967, see
5299           http://bugs.gentoo.org/show_bug.cgi?id=53967)
5300         * gst/gstpad.c: (gst_pad_alloc_buffer):
5301           allow buffer_alloc functions to return NULL and allocate a normal
5302           buffer in that case
5303
5304 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5305         * gst/elements/gstfilesink.c:
5306         * gst/elements/gstfilesrc.c:
5307         * gst/indexers/gstfileindex.c:
5308         * gst/gsttypes.h:
5309         * testsuite/bytestream/filepadsink.c:
5310         * testsuite/bytestream/test1.c:
5311           Handle binary files under Windows
5312
5313 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5314         * docs/manual/win32.xml:
5315         * win32/config.h:
5316         * win32/gst-register.vcproj:
5317         * win32/gstreamer.def:
5318           Update to another gettext public build
5319
5320 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5321         * gst/gstplugin.c:
5322           Fix an impossible C syntax
5323         * win32/config.h:
5324           Disable i18n under Windows for the moment
5325         * win32/gst-register.vcproj:
5326           Use this configuration
5327
5328 2004-07-12  Jan Schmidt  <thaytan@mad.scientis.com>
5329         * docs/manual/quotes.xml:
5330           Keep the quotes file alive
5331         * docs/random/ds/0.9-suggested-changes:
5332           Add the suggestion of including a 'rowstride' as part of video
5333           format caps
5334
5335 2004-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5336
5337         * gst/gstelement.c: (gst_element_set_state),
5338         (gst_element_change_state):
5339           d'oh.  Set PENDING state correctly before forcing bin to change.
5340         * gst/gststructure.c: (gst_structure_value_get_generic_type),
5341         (gst_structure_parse_fixed_list):
5342         * gst/schedulers/gstoptimalscheduler.c:
5343         (gst_opt_scheduler_state_transition):
5344         * testsuite/states/parent.c: (main):
5345           remove comment now that it's fixed.
5346
5347 2004-07-11  Benjamin Otte  <otte@gnome.org>
5348
5349         * gst/gstclock.h:
5350           GST_SECOND shouldn't cause a conversion to unsigned.
5351         * testsuite/clock/.cvsignore:
5352         * testsuite/clock/Makefile.am:
5353         * testsuite/clock/signedness.c: (main):
5354           make sure it never will again
5355
5356 2004-07-11  Andy Wingo  <wingo@pobox.com>
5357
5358         * gst/gstbin.c (gst_bin_add_func): If we're adding an element
5359         whose state is higher than the bin state, raise the bin state to
5360         ensure that bin state := highest child state.
5361         
5362 2004-07-11  Andy Wingo  <wingo@pobox.com>
5363
5364         * gst/gstbin.c (gst_bin_foreach): New static function. Calls a
5365         procedure on the children of a bin. Assumes that the procedure can
5366         change the set of children.
5367         (set_kid_state_func): New static function.
5368         (gst_bin_change_state): Use gst_bin_foreach to call
5369         set_kid_state_func. Fixes a bug: if a child had a state-change
5370         handler that removes it from the bin, there would be a segfault.
5371         Hopefully it should also work in the case where the state-change
5372         handler on one child adds or removes other children. In any case,
5373         fixes should go to gst_bin_foreach.
5374
5375 2004-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5376
5377         * gst/gstelement.c: (gst_element_set_state):
5378           compatibility fix for latest plugins release.  Change loop back
5379           to while {}
5380
5381 2004-07-09  Wim Taymans  <wim@fluendo.com>
5382
5383         * gst/gstbin.c: (gst_bin_remove), (gst_bin_dispose):
5384         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_catch),
5385         (gst_thread_main_loop):
5386         Since remove is virtual in GstBin we must not assume the 
5387         elements GList to have anothing useful.
5388         Add some more logging to GstThread and be a bit more paranoid
5389         when resetting the scheduler.
5390         Set the state of the bin to NULL before removing the children.
5391
5392 2004-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5393
5394         * testsuite/threads/Makefile.am:
5395         * testsuite/threads/threadg.c:
5396           added test to check if problem when removing all elements from a
5397           GstThread before setting GstThread state to NULL
5398
5399 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5400
5401         * docs/gst/tmpl/gstelement.sgml:
5402         * docs/gst/tmpl/gsttypes.sgml:
5403         * gst/gstbin.c: (gst_bin_change_state):
5404         * gst/gstelement.c: (gst_element_set_state),
5405         (gst_element_change_state):
5406           rework so that for bins we try to set the state on all children
5407           as well even if the bin is in the correct state already.
5408           change while to do so at least one iteration is done.
5409           For regular elements, we fall back to the previous behaviour for
5410           now since we first need a new plugins release.
5411         * testsuite/states/parent.c: (main):
5412           test for this case
5413           Fixes #123774
5414
5415 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5416
5417         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_finalize),
5418         (gst_queue_chain), (gst_queue_get), (gst_queue_handle_src_event),
5419         (gst_queue_release_locks), (gst_queue_change_state),
5420         (gst_queue_set_property):
5421           add proper lock debugging.  Change dispose to finalize, since
5422           we're freeing mutexes and other stuff which should happen only once.
5423
5424 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5425
5426         * docs/gst/tmpl/gstelement.sgml:
5427         * docs/gst/tmpl/gstplugin.sgml:
5428         * docs/gst/tmpl/gsttypes.sgml:
5429         * docs/pwg/building-state.xml:
5430         * gst/elements/gstfakesrc.c: (gst_fakesrc_change_state):
5431         * gst/gstelement.c: (gst_element_change_state):
5432         * gst/gstthread.c: (gst_thread_change_state):
5433           catch wrong state changes in element base class.
5434
5435 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5436
5437         * gst/gstinfo.h:
5438           clean up layout a little.
5439
5440 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5441
5442         * configure.ac:
5443         * testsuite/Makefile.am:
5444         * testsuite/states/Makefile.am:
5445         * testsuite/states/parent.c: (main):
5446           re-enable states testsuite dir.  Add test for state changes and
5447           parent behaviour
5448
5449 2004-07-09  Wim Taymans  <wim@fluendo.com>
5450
5451         * gst/schedulers/gstoptimalscheduler.c:
5452         (gst_opt_scheduler_pad_link), (group_elements_set_visited),
5453         (element_get_reachables_func), (element_get_reachables),
5454         (debug_element), (rechain_group), (group_migrate_connected),
5455         (gst_opt_scheduler_pad_unlink):
5456         Do not try to migrate decoupled elements to a new group since
5457         they are not added to groups.
5458
5459 2004-07-08  Benjamin Otte  <otte@gnome.org>
5460
5461         * gst/gstelement.c: (gst_element_error_func):
5462           make reentrant (= allow removing elements in error handler)
5463
5464 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5465
5466         * gst/gstpad.c: (gst_pad_event_default_dispatch),
5467         (gst_pad_send_event), (gst_pad_call_chain_function):
5468           events sent to elements below PAUSED cannot be handled, so
5469           don't try to
5470
5471 2004-07-08  Wim Taymans  <wim@fluendo.com>
5472
5473         * gst/schedulers/gstoptimalscheduler.c:
5474         (chain_recursively_migrate_group), (create_group),
5475         (schedule_group), (gst_opt_scheduler_pad_link),
5476         (group_elements_set_visited), (element_get_reachables_func),
5477         (element_get_reachables), (group_can_reach_group), (debug_element),
5478         (rechain_group), (group_migrate_connected),
5479         (gst_opt_scheduler_pad_unlink):
5480         * testsuite/schedulers/Makefile.am:
5481         Implemented group splitting and rechaining.
5482         Fixes 143777 and 143777-2 in the testsuite.
5483
5484 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5485
5486         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5487           extra debugging
5488         * gst/gstevent.h:
5489         * gst/gstinfo.c: (gst_debug_log_default):
5490           print time nicely.  add thread pointer until someone figures out
5491           a completely portable way of getting at thread id's.
5492         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_try),
5493         (_invent_event), (gst_pad_pull), (gst_pad_event_default_dispatch),
5494         (gst_pad_call_chain_function):
5495           extra debugging
5496         * gst/schedulers/gstoptimalscheduler.c:
5497         (get_group_schedule_function), (loop_group_schedule_function),
5498         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
5499         (pad_clear_queued), (gst_opt_scheduler_iterate):
5500           rename BUFPEN and friends to DATAPEN since that's what they are.
5501
5502 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5503
5504         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5505         * gst/gstbuffer.h:
5506         * gst/gstpad.c:
5507           cleanups and debugging
5508
5509 2004-07-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
5510
5511         * configure.ac:
5512         * gst/gstvalue.c: (gst_value_compare_enum),
5513         (gst_value_serialize_enum), (gst_value_deserialize_enum),
5514         (gst_value_can_compare), (gst_value_compare):
5515         * testsuite/Makefile.am:
5516         * testsuite/enumcaps/Makefile.am:
5517         * testsuite/enumcaps/enumcaps.c:
5518           Fix enum serialization, deserialization, comparison in caps, add
5519           a test to ensure that this continues working in the future.
5520
5521 2004-07-06  David Schleef  <ds@schleef.org>
5522
5523         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5524         Fix memleak.
5525
5526 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5527
5528         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
5529         * gst/gstplugin.h:
5530         * gst/registries/gstxmlregistry.c:
5531         (plugin_times_older_than_recurse), (plugin_times_older_than),
5532         (gst_xml_registry_parse_padtemplate):
5533           only rebuild registry when actual plugins have a newer time than
5534           the registry.  Fixes #145520
5535
5536 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5537
5538         * docs/manual/manual.xml:
5539         * docs/manual/win32.xml:
5540           add chapter on win32 building.  fixes #142422
5541
5542 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5543
5544         patch by: Sebastien Cote <sc5 at hermes.usherb.ca>
5545
5546         * gst/autoplug/gstspider.c: (gst_spider_init),
5547         (gst_spider_dispose):
5548           fix spider memleaks.  fixes #137863
5549
5550 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5551
5552         patch by: Joe Marcus Clarke <marcus at freebsd dot org>
5553
5554         * gst/schedulers/gstoptimalscheduler.c:
5555         (gst_opt_scheduler_pad_unlink):
5556           fix SIGBUS error, fixes #145338
5557
5558 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5559
5560         * gst/gstobject.c: (gst_object_replace):
5561         * gst/gstscheduler.c: (gst_scheduler_get_clock):
5562         * gst/gstsystemclock.c: (gst_system_clock_obtain):
5563           clean up clock lifecycle.  Fixes #109831
5564
5565 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5566
5567         * po/LINGUAS:
5568         * po/cs.po:
5569           added Czech translation (Miloslav Trmac)
5570
5571 2004-07-04  David Schleef  <ds@schleef.org>
5572
5573         * tools/Makefile.am:
5574         * tools/gst-xmlinspect.1.in:  Add man page. (bug #140219)
5575
5576 2004-07-04  David Schleef  <ds@schleef.org>
5577
5578         * common/m4/gst-doc.m4: Check for docbook2html 0.6.10 (bug #139909)
5579
5580 2004-07-04  Thomas Vander Stichele  <thomas at apestaart dot org>
5581
5582         * gst/gstbin.c: (gst_bin_restore_thyself):
5583           chain to parent restore so the bins get restored correctly
5584           in the editor
5585
5586 2004-07-03  David Schleef  <ds@schleef.org>
5587
5588         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5589         Actually do something in these functions, like before the big
5590         caps change.  (bug #145137)
5591
5592 2004-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5593
5594         * gst/gstelement.c: (gst_element_get_compatible_pad_template),
5595         (gst_element_get_compatible_pad_filtered):
5596         * gst/gstthread.c: (gst_thread_main_loop):
5597           more debugging
5598
5599 2004-07-02  David Schleef  <ds@schleef.org>
5600
5601         * gst/gstinfo.h: wrap #pragmas in #ifdefs for the correct compiler
5602         * gst/gstobject.h:
5603         * gst/gstparse.h:
5604         * gst/gsttrace.h:
5605         * gst/gstxml.h:
5606
5607 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5608
5609         * gst/gstpad.c: (gst_pad_check_schedulers),
5610         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5611         (gst_pad_link_prepare):
5612           revert until testsuite is fixed
5613
5614 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5615
5616         * testsuite/Makefile.am:
5617         * testsuite/caps/filtercaps.c: (main):
5618         * testsuite/clock/clock1.c: (main):
5619         * testsuite/dynparams/dparamstest.c: (gst_dptest_chain), (main):
5620           fix some more tests
5621
5622 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5623
5624         * testsuite/cleanup/cleanup1.c: (create_pipeline):
5625         * testsuite/cleanup/cleanup2.c: (create_pipeline):
5626         * testsuite/cleanup/cleanup4.c: (main):
5627           fix testsuite
5628
5629 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5630
5631         * libs/gst/control/control.c:
5632         * libs/gst/control/dparam.c:
5633         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_get_type):
5634         * libs/gst/control/dparammanager.c:
5635         * libs/gst/control/dparammanager.h:
5636         * testsuite/dynparams/Makefile.am:
5637         * testsuite/dynparams/dparamstest.c: (gst_dptest_base_init),
5638         (gst_dptest_change_state), (gst_dptest_chain), (main):
5639           fix testcase for dparams
5640           add debugging category
5641
5642 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5643
5644         * testsuite/Rules:
5645           change path
5646
5647 2004-07-02  Benjamin Otte  <otte@gnome.org>
5648
5649         * tests/.cvsignore:
5650         * tests/Makefile.am:
5651         * tests/mass_elements.c: (gst_get_current_time), (main):
5652           add simple benchmark to test various speeds of fakesrc ! identity !
5653           identity ! ... ! fakesink.
5654           Usage: mass_elements [num_identities] [num_buffers]
5655           If not specified they default to 1000.
5656
5657 2004-07-02  Benjamin Otte  <otte@gnome.org>
5658
5659         * gst/gstpad.c: (gst_pad_check_schedulers),
5660         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5661         (gst_pad_link_prepare):
5662           check that pads that get linked belong to the same manager. The old
5663           code allowed linking elements before putting them into bins, so it
5664           worked to link them and then put them in different threads, which
5665           lead to weird behaviour.
5666           Since this effectively disallows linking elements before putting
5667           them in a bin, some applications might not work after this and error
5668           out. If these applications are too critical, we might need to revert
5669           that patch. Please test this before the next release...
5670
5671 2004-06-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5672
5673         * gst/gstpad.c: (gst_pad_get_caps):
5674           throw an error if the getcaps function does not return a subset of
5675           the template caps.
5676         * libs/gst/bytestream/filepad.c: (gst_file_pad_chain):
5677           make disconts without position info an error in debugging
5678         * tests/spidey_bench.c: (handoff), (main):
5679           don't count first try when averaging
5680
5681 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5682
5683         * gst/gstplugin.c: (gst_plugin_load_file):
5684           figure out problem with dynamic test
5685
5686 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5687
5688         * docs/gst/Makefile.am:
5689           fix docs build
5690
5691 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5692
5693         * po/POTFILES.in:
5694         * po/af.po:
5695         * po/az.po:
5696         * po/en_GB.po:
5697         * po/fr.po:
5698         * po/nl.po:
5699         * po/sr.po:
5700         * po/sv.po:
5701         * po/tr.po:
5702         * po/uk.po:
5703         * tools/gst-register.c: (plugin_added_func), (main):
5704           i18n-ize -register, fix plural
5705
5706 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5707
5708         * gst/elements/gstidentity.c: (gst_identity_class_init),
5709         (gst_identity_init), (gst_identity_chain),
5710         (gst_identity_set_property), (gst_identity_get_property):
5711         * gst/elements/gstidentity.h:
5712           check for perfect stream
5713
5714 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5715
5716         * gst/elements/gstidentity.c: (gst_identity_chain):
5717           print offset_end
5718
5719 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5720
5721         * docs/gst/Makefile.am:
5722         * docs/gst/gstreamer-docs.sgml:
5723           doc fixes
5724
5725 2004-06-24  David Schleef  <ds@schleef.org>
5726
5727         * autogen.sh:  Remove call to env, since the buildbot isn't
5728         broken anymore.
5729
5730 2004-06-24  Wim Taymans  <wim@fluendo.com>
5731
5732         * gst/elements/Makefile.am:
5733         * gst/elements/gstelements.c:
5734         * gst/elements/gstmultifdsink.c: (gst_multifdsink_base_init),
5735         (gst_multifdsink_class_init), (gst_multifdsink_init),
5736         (gst_multifdsink_add), (gst_multifdsink_remove),
5737         (gst_multifdsink_clear), (gst_multifdsink_chain),
5738         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
5739         * gst/elements/gstmultifdsink.h:
5740         Added an element that writes to multiple filedescriptors at once.
5741
5742 2004-06-24  Benjamin Otte  <otte@gnome.org>
5743
5744         * gst/parse/grammar.y:
5745           don't try to link elements before they have been added to bins
5746
5747 2004-06-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5748
5749         * libs/gst/bytestream/filepad.c: (gst_file_pad_available),
5750         (gst_file_pad_get_length):
5751         * libs/gst/bytestream/filepad.h:
5752           add 2 new functions
5753
5754 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5755
5756         * docs/gst/gstreamer-sections.txt:
5757         remove from docs, the define that Benjamin removed from gstelement.h
5758
5759 2004-06-22  Benjamin Otte  <otte@gnome.org>
5760
5761         * gst/gstelement.h:
5762           remove define that referenced a nonexisting GstElement struct member
5763
5764 2004-06-20  Benjamin Otte  <otte@gnome.org>
5765
5766         * gst/gstdata.c: (gst_data_is_writable):
5767           whoops, return values were wrong, so writable data was marked as
5768           non-writable and vice versa. (fixes #143953, spotted by Francis
5769           Labonte)
5770           Shows how rarely we need to copy data ;)
5771
5772 2004-06-20  Benjamin Otte  <otte@gnome.org>
5773
5774         * testsuite/schedulers/.cvsignore:
5775         * testsuite/schedulers/Makefile.am:
5776         * testsuite/schedulers/143777-2.c: (main):
5777           add test for opt breakage in bug #143777
5778
5779 2004-06-20  Benjamin Otte  <otte@gnome.org>
5780
5781         * gst/gstpad.c: (gst_pad_call_chain_function):
5782           check for if we were unlinked while inside the chainfunction (fixes
5783           entrygthread having issues with #143777)
5784         * testsuite/schedulers/143777.c: (main):
5785         * testsuite/schedulers/Makefile.am:
5786           add a test for that fix
5787
5788 2004-06-20  Benjamin Otte  <otte@gnome.org>
5789
5790         * gst/gstvalue.c: (gst_value_set_int_range):
5791           test that start is smaller then end
5792         * libs/gst/bytestream/Makefile.am:
5793         * libs/gst/bytestream/filepad.c: 
5794         * libs/gst/bytestream/filepad.h:
5795           add GstFilePad - a pad that behaves like a FILE*
5796         * testsuite/bytestream/.cvsignore:
5797         * testsuite/bytestream/Makefile.am:
5798         * testsuite/bytestream/filepadsink.c: 
5799           test for the GstFilePad
5800
5801 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
5802
5803         * gst/elements/gstidentity.c: (gst_identity_class_init),
5804         (gst_identity_init), (gst_identity_set_clock),
5805         (gst_identity_chain), (gst_identity_set_property),
5806         (gst_identity_get_property):
5807         * gst/elements/gstidentity.h:
5808         * gst/gstclock.c: (gst_clock_id_wait):
5809           add a "sync" property to sync to the clock
5810
5811 2004-06-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5812
5813         * gst/gstelementfactory.c: (gst_element_factory_create):
5814           make the freakin "elementfactory bla has no type" message more
5815           useful. So we actually can do something when someone shows up
5816           complaining about it.
5817
5818 2004-06-15  Johan Dahlin  <johan@gnome.org>
5819
5820         * tools/gst-inspect.c (main): Fallback to plugin if no element is
5821         found. This matches the old behavior better. Thanks to Thomas for
5822         pointing out.
5823
5824 2004-06-14  David Schleef  <ds@schleef.org>
5825
5826         * gst/gstcpu.c: (gst_cpuid_i386): Fix problem when using
5827         -fomit-frame-pointer.  Appears to generate correct code in
5828         other cases as well.
5829
5830 2004-06-14  Johan Dahlin  <johan@gnome.org>
5831
5832         * tools/gst-inspect.c (main): Add two new command line options: -a
5833         to print all elements and -n to print the name on each line. Also
5834         fix some error reporting.
5835         (main): Simplify, remove -n and always print names if -a is specified
5836
5837 2004-06-13  Steve Lhomme  <steve.lhomme@free.fr>
5838
5839         * win32/gstconfig.h:
5840         * win32/GSTreamer.vcproj:
5841         * win32/Makefile:
5842         * gst/gstconfig.h.in:
5843         * gst/gst.h:
5844         * gst/gstbin.h:
5845         * gst/gstelement.h:
5846         * gst/gstevent.h:
5847         * gst/gstobject.h:
5848         * gst/gstpad.h:
5849         * docs/gst/gstreamer-sections.txt:
5850         * docs/gst/tmpl/gstconfig.sgml:
5851           rename GSTREAMER_EXPORT(S) to GST_EXPORT(S)
5852
5853 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
5854         * docs/gst/gstreamer-sections.txt:
5855         * docs/gst/tmpl/gstconfig.sgml:
5856         Add the GSTREAMER_EXPORT macro to the docs
5857
5858 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
5859
5860         * tools/gst-compprep.c: (handle_xmlerror), (main):
5861         Add a check for the version that introduced SetStructuredError to fix
5862         the build on FC1
5863
5864 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5865
5866         * win32/msvc71.sln:
5867         * win32/testsuite/:
5868           prepare to compile the testsuite with MSVC
5869
5870 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5871
5872         * docs/manual/win32.xml:
5873           attempt to transform the Win32 README into an XML doc
5874
5875 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5876
5877         * gst/gst.c:
5878         * gst/gstbin.*:
5879         * gst/config.h.in:
5880         * gst/gstelement.*:
5881         * gst/gstevent.h:
5882         * gst/gstobject.*:
5883         * gst/gstpad.h:
5884         * tools/gst-register.c:
5885         * win32/gstreamer.def:
5886           extern symbols are now exported for the Windows DLL
5887
5888 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5889
5890         * gst/gstinfo.h:
5891           fix a problem to enable/disable DEBUG under MSVC
5892
5893 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5894
5895         * win32/:
5896           enable more debug code in DEBUG build
5897
5898 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5899
5900         * win32/config.h:
5901         * gst/gst-i18n-app.h:
5902           enable NLS under Windows
5903
5904 2004-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
5905         * tools/gst-compprep.c: (handle_xmlerror), (main):
5906           Make an error that baffled me a bit clearer
5907
5908 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5909
5910         * gst/gstqueue.c:
5911           don't use g_queue_get_length () because it's 2.4, use ->length
5912
5913 2004-06-11  Steve Lhomme  <steve.lhomme@free.fr>
5914
5915         reviewed by Benjamin Otte  <in7y118@public.uni-hamburg.de>
5916
5917         * tools/gst-inspect.c: (print_signal_info):
5918           don't free random data twice. (fixes #144185)
5919
5920 2004-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5921
5922         * gst/gstqueue.c:
5923         * gst/gstqueue.h:
5924           fix removing from the wrong queue on event timeout
5925           fix disposing of the event queue by casting correctly
5926           add mutexes for handling the event queue
5927           someone was sleeping when fixing queue last time around :)
5928
5929 2004-06-10  Johan Dahlin  <johan@gnome.org>
5930
5931         * gst/gst.c (gst_init_check_with_popt_table): Do not fail on
5932         errors, like gtk. It makes it more useful in bindings.  Fixes #141692.
5933
5934 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
5935
5936         * docs/random/gdp:
5937         * libs/gst/dataprotocol/dataprotocol-test.c: (buffer_test):
5938         * libs/gst/dataprotocol/dataprotocol.c:
5939         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
5940         (gst_dp_buffer_from_header):
5941         * libs/gst/dataprotocol/dataprotocol.h:
5942         * libs/gst/dataprotocol/dp-private.h:
5943           rev version to 0.1, add buffer flags and copy them
5944
5945 2004-06-09  Johan Dahlin  <johan@gnome.org>
5946
5947         * gst/gstbuffer.c (gst_buffer_default_copy): Don't forget to merge
5948         the flags from the buffer we're copying.
5949
5950 2004-06-09  Wim Taymans  <wim@fluendo.com>
5951
5952         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
5953         * gst/elements/gstidentity.c: (gst_identity_init),
5954         (gst_identity_chain):
5955         Print more buffer info in fakesink.
5956         Make identity output similar to fakesink.
5957
5958 2004-06-07  Daniel Gazard  <dany42@free.fr>
5959
5960         reviewed by Benjamin Otte  <otte@gnome.org>
5961
5962         * configure.ac:
5963           fix cross compiling not working. (fixes #143741)
5964
5965 2004-06-07  Benjamin Otte  <otte@gnome.org>
5966
5967         * gst/gstelement.c: (gst_element_set_time_delay):
5968           add failure check
5969         * gst/gstinfo.h:
5970           put brackets around macro arguments of GST_TIME_ARGS, add note to
5971           move it to correct header in 0.9
5972
5973 2004-06-07  Benjamin Otte  <otte@gnome.org>
5974
5975         * gst/indexers/gstfileindex.c: (gst_file_index_get_writer_id),
5976         (gst_file_index_load), (_file_index_id_save_entries),
5977         (gst_file_index_commit), (gst_file_index_add_association),
5978         (gst_file_index_add_entry), (gst_file_index_get_assoc_entry),
5979         (gst_file_index_plugin_init):
5980           make debugging use a default category
5981
5982 2004-06-06  David Moore  <dcm@acm.org>
5983
5984         reviewed by Benjamin Otte  <otte@gnome.org>
5985
5986         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
5987         (gst_fdsrc_change_state):
5988           reset offset counter when going READY => PAUSED. (fixes #142903)
5989
5990 2004-06-06  ed@catmur.co.uk
5991
5992         reviewed by Benjamin Otte  <otte@gnome.org>
5993
5994         * gst/registries/gstxmlregistry.c:
5995         (gst_xml_registry_rebuild_recurse):
5996           don't rely on g_dir_open to figure out if a file is a directory, use
5997           explicit G_TEST_IS_DIR. Reiserfs4 allows opening files as
5998           directories. (fixes #142850)
5999
6000 2004-06-06  Benjamin Otte  <otte@gnome.org>
6001
6002         * gst/gstqueue.c: (gst_queue_dispose), (gst_queue_change_state):
6003           fix memory leaks (fixes #142795). Initial patch by Sebastien Cote
6004         * libs/gst/bytestream/adapter.c:
6005         * libs/gst/bytestream/adapter.h:
6006           fix copyright in header and typo in debugging category name
6007
6008 2004-06-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6009
6010         * configure.ac:
6011           bump nano to cvs
6012
6013 === release 0.8.3 ===
6014
6015 2004-06-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6016
6017         * configure.ac:
6018           update libtool versioning
6019           do a new release
6020         * docs/gst/tmpl/gstelement.sgml:
6021         * docs/gst/tmpl/gsttypes.sgml:
6022         * gst/gstinfo.c: (_gst_debug_init):
6023           put back GST_CAT_DATAFLOW to fix API breakage
6024
6025 2004-06-04  David Schleef  <ds@schleef.org>
6026
6027         * autogen.sh: Add a temporary 'env' to test buildbot problems.
6028
6029 2004-06-04  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6030
6031         * configure.ac:
6032           bump nano to cvs
6033
6034 === release 0.8.2 ===
6035
6036 2004-06-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6037
6038         * gst/gst.c: (parse_debug_list), (gst_init_check_with_popt_table):
6039           check GST_DEBUG environment variable which is parsed the same way
6040           as --gst-debug=
6041
6042 2004-05-28  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6043
6044         * gst/elements    : gstaggregator.c gstfakesink.c gstfakesrc.c
6045                             gstmd5sink.c gstshaper.c gsttee.c
6046                             gsttypefindelement.c
6047         * gst/schedulers  : gstbasicscheduler.c gstoptimalscheduler.c
6048
6049           - removing trailing commas at end of enums
6050             it is correct C99 code but C90 compilers would complain
6051             (AIX, Forte, ...)
6052             ('should' fix #143290, at least partially)
6053
6054 2004-05-27  Wim Taymans  <wim@fluendo.com>
6055
6056         * gst/schedulers/gstoptimalscheduler.c: (remove_from_chain),
6057         (chain_group_set_enabled), (create_group), (add_to_group),
6058         (merge_groups), (setup_group_scheduler), (group_elements),
6059         (gst_opt_scheduler_iterate), (gst_opt_scheduler_show):
6060         Don't try to follow the pad connections with other groups
6061         when a loop based element is added to the scheduler because
6062         the bin will inform the scheduler about the pad links a little
6063         later.
6064
6065 2004-05-27  Wim Taymans  <wim@fluendo.com>
6066
6067         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6068         (remove_from_chain), (chain_group_set_enabled),
6069         (setup_group_scheduler), (group_element_set_enabled),
6070         (gst_opt_scheduler_state_transition), (gst_opt_scheduler_iterate),
6071         (gst_opt_scheduler_show):
6072         Elements without a group can do a state change as well, just wait
6073         with the setup of the scheduling function when it is added to a
6074         chain.
6075
6076 2004-05-27  Wim Taymans  <wim@fluendo.com>
6077
6078         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6079         (remove_from_chain), (chain_group_set_enabled), (add_to_group),
6080         (merge_groups), (setup_group_scheduler),
6081         (group_inc_links_for_element), (gst_opt_scheduler_iterate),
6082         (gst_opt_scheduler_show):
6083         Fixes to maintain internal consistency of the scheduler data
6084         structures. 
6085          - adding an enabled group to a chain should increment the
6086            number of enabled elements in that chain.
6087          - removing an enabled group from a chain could disable the
6088            chain.
6089          - removing a disabled group from a chain could enable the
6090            chain.
6091          - add g_assert when internal inconsistency is detected.
6092          - adding an element to a group could increase the number of
6093            links this group has with other groups.
6094          - merging two groups also merges the chains.
6095          - also show group links in the _show method.
6096            
6097
6098 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6099
6100         * gst/gstcaps.c: (gst_caps_structure_simplify):
6101           don't print error messages when there is no error
6102         * gst/gstvalue.c: (gst_value_compare_int_range):
6103           compare the second value, too
6104         * testsuite/caps/Makefile.am:
6105         * testsuite/caps/random.c: (assert_on_error), (main):
6106           add tests to make sure the two things above are checked for
6107
6108 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6109
6110         * configure.ac:
6111         * libs/gst/dataprotocol/Makefile.am:
6112         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps):
6113         * libs/gst/dataprotocol/dataprotocol.h:
6114           wrap header in GST_ENABLE_NEW.  make code use it
6115
6116 2004-05-23  Johan Dahlin  <johan@gnome.org>
6117
6118         * tools/gst-inspect.c (main): Cleanup most parts of it, don't be
6119         so verbose and print GstElement signal names all the time.
6120
6121 2004-05-22  David Schleef  <ds@schleef.org>
6122
6123         * gst/registries/gstxmlregistry.c:
6124         (gst_xml_registry_parse_padtemplate): Fix warning on OS X.
6125         (bug #142957)
6126
6127 2004-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6128
6129         * configure.ac:
6130           scrub cflags for glib2 so gcc doesn't complain when glib is in
6131           /usr/local
6132
6133 2004-05-21  Johan Dahlin  <johan@gnome.org>
6134
6135         * gst/gstcpu.c (gst_cpuid_i386): Protect some gcc asm stuff with
6136         __GNUC__, patch from Brian Cameron, fixes bug #142804
6137
6138 2004-05-20  David Schleef  <ds@schleef.org>
6139
6140         * gst/gstindex.c: (gst_index_compare_func): Fix overflows in
6141         comparison code.  (bug #142819)
6142
6143 2004-05-20  Wim Taymans  <wim@fluendo.com>
6144
6145         * gst/gstbuffer.c: (gst_buffer_default_copy):
6146         * gst/gstbuffer.h:
6147         Added Comment to a flag.
6148         copy relevant flags in _buffer_copy.
6149
6150 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6151
6152         reviewed by: Wim Taymans <wim at fluendo dot com>
6153
6154         * gst/gstbuffer.h:
6155           add GST_BUFFER_IN_CAPS buffer flag
6156         * gst/gststructure.c: (gst_structure_value_get_generic_type),
6157         (gst_structure_parse_any_list), (gst_structure_parse_list),
6158         (gst_structure_parse_fixed_list), (gst_structure_parse_value):
6159         * gst/gstvalue.c: (gst_value_serialize_any_list),
6160         (gst_value_transform_any_list_string),
6161         (gst_value_list_prepend_value), (gst_value_list_append_value),
6162         (gst_value_list_get_size), (gst_value_list_get_value),
6163         (gst_value_transform_list_string),
6164         (gst_value_transform_fixed_list_string),
6165         (gst_value_serialize_list), (gst_value_serialize_fixed_list),
6166         (gst_value_deserialize_fixed_list), (gst_type_is_fixed),
6167         (_gst_value_initialize):
6168         * gst/gstvalue.h:
6169           add a GST_TYPE_FIXED_LIST which is fixed by definition and uses
6170           < , > as a format.
6171         * testsuite/caps/string-conversions.c: (main):
6172           add regression tests for < >
6173
6174 2004-05-20  Johan Dahlin  <johan@gnome.org>
6175
6176         * docs/gst/Makefile.am (all-local): Re-add
6177
6178 2004-05-20  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6179
6180         * docs/gst/Makefile.am:
6181         * docs/gst/gstreamer-docs.sgml:
6182         * docs/libs/Makefile.am:
6183         * docs/libs/gstreamer-libs-docs.sgml:
6184           fix distcheck issues
6185
6186 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6187
6188         * libs/gst/dataprotocol/Makefile.am:
6189           add to autotest
6190
6191 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6192
6193         * libs/gst/dataprotocol/Makefile.am:
6194         * libs/gst/dataprotocol/dataprotocol.c:
6195         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6196         (gst_dp_packet_from_event), (gst_dp_event_from_packet):
6197         * libs/gst/dataprotocol/dp-private.h:
6198           use GST macros to read/write fixed length ints
6199           add some more asserts
6200
6201 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6202
6203         * docs/libs/gstreamer-libs-docs.sgml:
6204         * docs/libs/gstreamer-libs-sections.txt:
6205           remove idct and putbits
6206         * configure.ac:
6207         * docs/libs/tmpl/gstdataprotocol.sgml:
6208         * libs/gst/Makefile.am:
6209         * libs/gst/dataprotocol/Makefile.am:
6210         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test),
6211         (buffer_test), (caps_test), (event_test), (main):
6212         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
6213         (gst_dp_dump_byte_array), (gst_dp_init),
6214         (gst_dp_header_payload_length), (gst_dp_header_payload_type),
6215         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6216         (gst_dp_packet_from_event), (gst_dp_buffer_from_header),
6217         (gst_dp_caps_from_packet), (gst_dp_event_from_packet),
6218         (gst_dp_validate_header), (gst_dp_validate_payload),
6219         (gst_dp_validate_packet), (plugin_init):
6220         * libs/gst/dataprotocol/dataprotocol.h:
6221         * libs/gst/dataprotocol/dp-private.h:
6222           add dataprotocol
6223
6224 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6225
6226         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
6227           fix int variable deserialization and add a helper so we can actually
6228           debug this.
6229
6230 2004-05-18  David Schleef  <ds@schleef.org>
6231
6232         * testsuite/debug/commandline.c: (main): Call ./commandline, not
6233           argv[0].  Calling yourself is probably not the best way to
6234           construct a test like this, btw.
6235
6236 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6237
6238         * gst/gstbin.c: (gst_bin_iterate_func), (gst_bin_iterate):
6239           don't claim to be more intelligent than a scheduler when the
6240           scheduler claims the pipeline is stopped
6241         * gst/schedulers/entryscheduler.c: (safe_cothread_switch),
6242         (safe_cothread_destroy),
6243         (gst_entry_scheduler_remove_all_cothreads),
6244         (gst_entry_scheduler_reset), (_remove_cothread),
6245         (gst_entry_scheduler_state_transition):
6246           hold off cothread destruction if we're not in main cothread
6247         * configure.ac:
6248         * testsuite/Makefile.am:
6249           add new test dir
6250         * testsuite/schedulers/.cvsignore:
6251         * testsuite/schedulers/Makefile.am:
6252           add tests
6253         * testsuite/schedulers/relink.c: (cb_handoff), (main):
6254           check relinking and adding/removing elements from a running pipeline
6255         * testsuite/schedulers/unlink.c: (cb_handoff), (main):
6256           check unlinking in a running pipeline
6257         * testsuite/schedulers/unref.c: (cb_handoff), (main):
6258           check unreffing a running pipeline
6259         * testsuite/schedulers/useless_iteration.c: (main):
6260           check iterating a pipeline that contains running threads works
6261
6262 2004-05-18  David Schleef  <ds@schleef.org>
6263
6264         * docs/gst/Makefile.am: Add all-local target for when HAVE_GTK_DOC
6265           is false.
6266
6267 2004-05-18  Wim Taymans  <wim@fluendo.com>
6268
6269         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6270         (setup_group_scheduler), (gst_opt_scheduler_pad_link):
6271         Fixed an error introduced with patch for 1.63. When setting
6272         a get based element as the entry point in a group, make sure
6273         to mark the group as GET based.
6274
6275 2004-05-18  Wim Taymans  <wim@fluendo.com>
6276
6277         * gst/schedulers/gstoptimalscheduler.c: (create_group),
6278         (setup_group_scheduler), (loop_group_schedule_function),
6279         (gst_opt_scheduler_pad_link):
6280         Added some more debug info and fixed a bug where the group
6281         type was set to LOOP but it was in fact unknown.
6282
6283 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6284
6285         * gst/schedulers/entryscheduler.c: (gst_entry_scheduler_reset):
6286           make resetting scheduler work twice in a row
6287
6288 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6289
6290         * gst/gstvalue.c: (gst_strtoll), (CREATE_SERIALIZATION),
6291         (CREATE_USERIALIZATION), (_gst_value_initialize),
6292         (gst_value_compare_float), (gst_value_serialize_float),
6293         (gst_value_deserialize_float), (gst_value_compare_enum),
6294         (gst_value_serialize_enum), (gst_value_deserialize_enum):
6295           add serialization and comparison functions for long, int64, enum and
6296           float values
6297         * gst/gstvalue.c: (gst_value_serialize), (gst_value_deserialize):
6298           use best serialization function in type hierarchy instead of only a
6299           matching one. This is required for enums to work.
6300         * gst/parse/grammar.y:
6301           use gst_caps_deserialize
6302         * testsuite/parse/Makefile.am:
6303           parse1 now works
6304         * testsuite/parse/parse1.c: (main):
6305           remove aggregator check, aggregator is broken, this test works now
6306           but fails because of bug #138012
6307         * testsuite/parse/parse2.c: (main):
6308           s/xvideosink/xvimagesink - this test looks a lot like we should
6309           disable it
6310
6311 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6312
6313         * gst/gstelement.c: (gst_element_class_init):
6314           whoops, store the signal id correctly
6315         * gst/schedulers/gstbasicscheduler.c:
6316         (gst_basic_scheduler_chain_wrapper):
6317           detect infinfinfinfinfinf^Cinite loops in chain wrapper when the
6318           chain function isn't linked
6319
6320 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
6321         * configure.ac:
6322         Add $GST_PKG_CFLAGS back into GST_INT_CFLAGS so I have large file
6323         support until we decide where the flags should be used
6324         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_query):
6325         Use GST_FORMAT_BYTES when GST_FORMAT_DEFAULT is passed
6326         * gst/gstpad.c: (gst_pad_link_call_link_functions):
6327         Output refused caps in the debug info
6328
6329 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6330
6331         * gst/elements/gstidentity.c: (gst_identity_chain):
6332           add duration debug
6333         * gst/gstinfo.c: (gst_debug_log_default):
6334           add timestamp
6335
6336 2004-05-13  Benjamin Otte  <otte@gnome.org>
6337
6338         * gst/gstpipeline.c: (gst_pipeline_dispose),
6339         (gst_pipeline_change_state):
6340           call gst_scheduler_reset on dispose (fixes #141416)
6341
6342 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6343
6344         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6345           compute mapsize correctly
6346         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6347           use correct datatypes when calling a varargs function
6348         * gst/elements/gsttypefindelement.c: (stop_typefinding):
6349           push a DISCONT event as first thing
6350         * gst/gst_private.h:
6351         * gst/gstinfo.c: (_gst_debug_init):
6352           remove GST_DATAFLOW debugging category
6353         * gst/gstbin.c: (gst_bin_iterate):
6354           use GST_SCHEDULING category
6355         * gst/gstpad.c: (gst_pad_get_type), (_invent_event),
6356         (gst_pad_push), (gst_pad_pull), (gst_pad_call_chain_function),
6357         (gst_pad_call_get_function):
6358           add GST_DATAFLOW to easily track flow of buffers or events.
6359         * gst/gstqueue.c: (gst_queue_get_type),
6360         (gst_queue_handle_pending_events), (gst_queue_chain),
6361         (gst_queue_get), (gst_queue_handle_src_event):
6362           use own static debugging category GST_DATAFLOW for dataflow,
6363           use DEBUG category for showing which path events go, use LOG
6364           category for buffers.
6365
6366 2004-05-10  David Schleef  <ds@schleef.org>
6367
6368         * docs/gst/gstreamer-sections.txt: Add gst_element_no_more_pads.
6369
6370 2004-05-10  David Schleef  <ds@schleef.org>
6371
6372         * docs/gst/Makefile.am: Dear gtk-doc, please print out the unused
6373         symbols, because otherwise we don't know what they are.  Thanks,
6374         the GStreamer team.
6375         * gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
6376
6377 2004-05-10  David Schleef  <ds@schleef.org>
6378
6379         (from Steve Lhomme)
6380         * win32/Makefile: When using make clean the MS Visual Studio makefiles
6381         are deleted.  Fix.
6382         * win32/Makefile.inspect:
6383         * win32/Makefile.launch:
6384         * win32/Makefile.register:
6385
6386 2004-05-10  David Schleef  <ds@schleef.org>
6387
6388         * gst/gstinfo.h: Add missing inline function.
6389         * gst/gsttrace.c: add include
6390         * gst/parse/grammar.y: remove unused code
6391         * gst/registries/gstxmlregistry.c: (make_dir): make mkdir call
6392         more portable.
6393         * tools/gst-register.c: wrap unistd.h
6394         
6395         More additions/fixes from Steve for the MSVC build.
6396         * win32/GStreamer.vcproj:
6397         * win32/Makefile:
6398         * win32/Makefile.inspect:
6399         * win32/Makefile.launch:
6400         * win32/Makefile.register:
6401         * win32/README.txt:
6402         * win32/gst-inspect.vcproj:
6403         * win32/gst-launch.vcproj:
6404         * win32/gst-register.vcproj:
6405         * win32/gstbytestream.def:
6406         * win32/gstbytestream.vcproj:
6407         * win32/gstconfig.h:
6408         * win32/gstelements.def:
6409         * win32/gstelements.vcproj:
6410         * win32/gstenumtypes.c:
6411         * win32/gstenumtypes.h:
6412         * win32/gstoptimalscheduler.def:
6413         * win32/gstoptimalscheduler.vcproj:
6414         * win32/gstreamer.def:
6415         * win32/gstspider.def:
6416         * win32/gstspider.vcproj:
6417         * win32/gstversion.h:
6418         * win32/msvc71.sln:
6419
6420 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6421
6422         * gst/gstelement.c: (gst_element_class_init),
6423         (gst_element_no_more_pads):
6424         * gst/gstelement.h:
6425           add gst_element_no_more_pads and the "no-more-pads" signal
6426
6427 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6428
6429         * gst/gstregistry.c: (gst_registry_add_plugin):
6430           refuse to add plugins when a plugin with same name is already
6431           registered. Fixes a bunch of "How to remove plugins?" issues.
6432           May lead to other problems though, let's test
6433
6434 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6435
6436         * testsuite/caps/caps_strings : audio/ac3 => audio/x-ac3
6437         * docs/manual/pads-api.xml : audio/wav => audio/x-wav
6438         * docs/random/uraeus/gstreamer_and_midi.txt : audio/wav => audio/x-wav
6439
6440 2004-05-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6441
6442         * tests/Makefile.am: fix am16 issue
6443
6444 2004-05-09  Benjamin Otte  <otte@gnome.org>
6445
6446         * libs/gst/bytestream/Makefile.am:
6447           we should indeed add .c files to makefiles or they won't be built
6448           (d'oh)
6449
6450 2004-05-08  Benjamin Otte  <otte@gnome.org>
6451
6452         * gst/gstpad.c: (gst_pad_proxy_fixate):
6453           really reduce the set of caps
6454
6455 2004-05-08  Benjamin Otte  <otte@gnome.org>
6456
6457         * tests/Makefile.am:
6458         * tests/spidey_bench.c: (handoff), (main):
6459           add benchmark to test how long spider needs to create a pipeline
6460
6461 2004-05-08  Benjamin Otte  <otte@gnome.org>
6462
6463         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_unnegotiate):
6464           mark links as unengaged when unnegotiating instead of deactivating.
6465           This way pads aren't marked as unengaged when going PLAYING=>PAUSED
6466
6467 2004-05-08  Benjamin Otte  <otte@gnome.org>
6468
6469         * docs/manual/helloworld.xml:
6470           s/audiosink/osssink (patch by Patrick Guimond)
6471
6472 2004-05-07  David Schleef  <ds@schleef.org>
6473
6474         * configure.ac: Make sure GST_INT_CFLAGS is not clobbered,
6475         since it contains important stuff.
6476
6477 2004-05-07  David Schleef  <ds@schleef.org>
6478
6479         * testsuite/caps/caps.c: (test3), (main): A check for appending
6480         ANY caps.
6481
6482 2004-05-07  David Schleef  <ds@schleef.org>
6483
6484         * common/m4/as-compiler-flag.m4: Properly quote arguments,
6485         which may contain commas.  Fixes detection of -Wa,-mregnames
6486
6487 2004-05-06  David Schleef  <ds@schleef.org>
6488
6489         Changes to handle compilers that don't have variadic macro
6490         support.  In particular, glib headers define some inlines
6491         that need G_LOG_DOMAIN defined.  Additional fixes for MSVC
6492         builds.
6493         * gst/Makefile.am:
6494         * gst/cothreads.c:
6495         * gst/elements/gstfdsink.c:
6496         * gst/elements/gstfdsrc.c:
6497         * gst/elements/gstfilesink.c:
6498         * gst/elements/gstfilesrc.c:
6499         * gst/gst_private.h:
6500         * gst/gstatomic.c:
6501         * gst/gstcaps.c: (gst_caps_append):
6502         * gst/gstcpu.c: (gst_cpuid_i386):
6503         * gst/gstelement.c:
6504         * gst/gsterror.c:
6505         * gst/gstfilter.c:
6506         * gst/gstinfo.h:
6507         * gst/gstprobe.c:
6508         * gst/gstquery.c:
6509         * gst/gstregistry.c:
6510         * gst/gststructure.c:
6511         * gst/gsttaginterface.c:
6512         * gst/gsttrace.c: (gst_trace_new):
6513         * gst/gsttrashstack.c:
6514         * gst/gsturi.c:
6515         * gst/gstvalue.c:
6516         * gst/parse/grammar.y:
6517         * gst/parse/parse.l:
6518         * tools/gst-inspect.c: (main):
6519         * tools/gst-launch.c: (main):
6520         * tools/gst-xmlinspect.c: (PUT_STRING):
6521
6522 2004-05-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6523
6524         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
6525         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
6526         * gst/elements/gstfilesrc.h:
6527           send NEW_MEDIA events correctly
6528         * gst/elements/gsttypefindelement.c: (start_typefinding),
6529         (gst_type_find_element_handle_event):
6530           restart typefinding when we get a NEW_MEDIA event
6531         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_change_state),
6532         (gst_bin_dispose):
6533           don't die when someone removes elements in callbacks
6534         * gst/gstelement.c: (gst_element_change_state):
6535           improve debugging
6536         * gst/gstpad.c: (gst_pad_pull), (gst_pad_call_chain_function):
6537           we need a NEW_MEDIA event to engage a link
6538         * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
6539           don't g_print debugging stuff
6540         * testsuite/caps/simplify.c: (check_caps):
6541
6542 2004-05-04  Benjamin Otte  <otte@gnome.org>
6543
6544         * gst/parse/grammar.y:
6545           use GST_ERROR instead of g_warning, and always throw a GST_ERROR 
6546
6547 2004-05-04  Benjamin Otte  <otte@gnome.org>
6548
6549         * testsuite/caps/renegotiate.c: (main):
6550           improve output in error case
6551
6552 2004-05-04  Benjamin Otte  <otte@gnome.org>
6553
6554         * gst/parse/grammar.y:
6555           fix assert to not trigger when there's no error argument
6556         * gst/parse/parse.l:
6557           fix definition of caps to allow more than two structures
6558         * testsuite/caps/Makefile.am:
6559         * testsuite/caps/renegotiate.c: (main):
6560           it's sinesrc and works in that case
6561
6562 2004-05-04  Wim Taymans  <wim@fluendo.com>
6563
6564         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6565         (group_dec_link), (gst_opt_scheduler_pad_unlink):
6566         when removing an element from a group, we always need to
6567         decrement the link count that this group had with other 
6568         groups through the element.
6569         added an extra assert to catch inconsistencies when decrementing
6570         the link count.
6571
6572 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6573
6574         * configure.ac:
6575         * docs/gst/Makefile.am:
6576         * docs/gst/gstreamer-sections.txt:
6577         * docs/gst/tmpl/gstcompat.sgml:
6578         * examples/appreader/Makefile.am:
6579         * examples/cutter/Makefile.am:
6580         * examples/events/Makefile.am:
6581         * examples/helloworld/Makefile.am:
6582         * examples/helloworld2/Makefile.am:
6583         * examples/launch/Makefile.am:
6584         * examples/manual/Makefile.am:
6585         * examples/mixer/Makefile.am:
6586         * examples/pingpong/Makefile.am:
6587         * examples/plugins/Makefile.am:
6588         * examples/queue/Makefile.am:
6589         * examples/queue2/Makefile.am:
6590         * examples/queue3/Makefile.am:
6591         * examples/queue4/Makefile.am:
6592         * examples/retag/Makefile.am:
6593         * examples/thread/Makefile.am:
6594         * examples/typefind/Makefile.am:
6595         * examples/xml/Makefile.am:
6596         * gst/Makefile.am:
6597         * gst/autoplug/Makefile.am:
6598         * gst/elements/Makefile.am:
6599         * gst/gstcompat.h:
6600         * gst/indexers/Makefile.am:
6601         * gst/parse/Makefile.am:
6602         * gst/registries/Makefile.am:
6603         * gst/schedulers/Makefile.am:
6604         * libs/gst/bytestream/Makefile.am:
6605         * libs/gst/control/Makefile.am:
6606         * libs/gst/getbits/Makefile.am:
6607         * po/af.po:
6608         * po/az.po:
6609         * po/en_GB.po:
6610         * po/fr.po:
6611         * po/nl.po:
6612         * po/sr.po:
6613         * po/sv.po:
6614         * po/tr.po:
6615         * po/uk.po:
6616         * tests/Makefile.am:
6617         * tests/bufspeed/Makefile.am:
6618         * tests/instantiate/Makefile.am:
6619         * tests/memchunk/Makefile.am:
6620         * tests/muxing/Makefile.am:
6621         * tests/negotiation/Makefile.am:
6622         * tests/probes/Makefile.am:
6623         * tests/sched/Makefile.am:
6624         * tests/seeking/Makefile.am:
6625         * tests/threadstate/Makefile.am:
6626         * testsuite/caps/Makefile.am:
6627         * testsuite/cleanup/Makefile.am:
6628         * testsuite/dlopen/Makefile.am:
6629         * testsuite/dynparams/Makefile.am:
6630         * testsuite/plugin/Makefile.am:
6631         * testsuite/states/Makefile.am:
6632         * tools/Makefile.am:
6633           reorganize compile/link flags to be consistent
6634           put gst_info in gstcompat.h and actually use GST_DISABLE_DEPRECATED
6635
6636 2004-05-04  David Schleef  <ds@schleef.org>
6637
6638         The "once more, with feeling" check-in.
6639         * testsuite/caps/Makefile.am: dist caps_strings
6640         * testsuite/caps/renegotiate.c: (main): This test triggers a
6641           segfault in the core.  Marking as failing.
6642
6643 2004-05-03  David Schleef  <ds@schleef.org>
6644
6645         * testsuite/caps/deserialize.c: (main): Fix problems noticed
6646           by the build bots.
6647         * testsuite/caps/renegotiate.c: (main): Same.
6648
6649 2004-05-03  David Schleef  <ds@schleef.org>
6650
6651         * testsuite/caps/renegotiate.c: (my_fixate), (main): Another test.
6652
6653 2004-05-03  David Schleef  <ds@schleef.org>
6654
6655         * testsuite/caps/deserialize.c: (main): Use the srcdir environment
6656           variable to find our source file.
6657
6658 2004-05-03  David Schleef  <ds@schleef.org>
6659
6660         * configure.ac:  Link plugins with libgstreamer and dependent
6661           libraries
6662         * testsuite/caps/Makefile.am:
6663         * testsuite/caps/caps_strings:
6664         * testsuite/caps/deserialize.c: (main): Add a little test to slog
6665           through a file of caps strings and test each one
6666
6667 2004-05-04  Benjamin Otte  <otte@gnome.org>
6668
6669         * libs/gst/bytestream/Makefile.am:
6670         * libs/gst/bytestream/adapter.c: 
6671         * libs/gst/bytestream/adapter.h:
6672           add GstAdapter, similar to bytestream, but doesn't require ugly event
6673           handling or uglier loopbased elements
6674
6675 2004-05-03  David Schleef  <ds@schleef.org>
6676
6677         * testsuite/caps/Makefile.am: Fix spelling of Ηρατοσθενες
6678         * testsuite/caps/erathostenes.c:
6679         * testsuite/caps/eratosthenes.c: (eratosthenes), (main):
6680
6681 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6682
6683         * docs/pwg/pwg.xml:
6684           remove hardcoded stylesheet path (duh)
6685         * docs/random/release:
6686         * docs/gst/gstreamer-sections.txt:
6687         * gst/Makefile.am:
6688         * gst/gst.h:
6689         * gst/gst_private.h:
6690         * gst/gstcaps.c:
6691         * gst/gstevent.c:
6692         * gst/gstformat.c:
6693         * gst/gstinfo.c:
6694         * gst/gstinfo.h:
6695         * gst/gstinterface.c:
6696         * gst/gstmemchunk.c:
6697         * gst/gstprobe.c:
6698         * gst/gstquery.c:
6699         * gst/gstregistry.c:
6700         * gst/gstregistrypool.c:
6701         * gst/gststructure.c:
6702         * gst/gsttaginterface.c:
6703         * gst/gstthread.c:
6704         * gst/gsttrace.c:
6705         * gst/gsttypefind.c: (gst_type_find_factory_get_type):
6706         * gst/gsturi.c:
6707         * gst/gstvalue.c:
6708           deprecate gst_info; remove gstlog.h
6709    
6710
6711 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6712
6713         * Makefile.am:
6714         * po/en_GB.po:
6715         * po/sv.po:
6716         * po/uk.po:
6717           updated translations
6718
6719 2004-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6720
6721         * gst/gstbin.c: (gst_bin_dispose):
6722           better debugging
6723
6724 2004-05-03  Johan Dahlin  <johan@gnome.org>
6725
6726         * gst/schedulers/gstoptimalscheduler.c
6727         (gst_opt_scheduler_pad_unlink): Check if element is non-NULL and
6728         really is a GstElement. Avoids critical when running gst-launch -v
6729         and a oggdemux/decoding pipeline.
6730
6731 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6732
6733         * docs/gst/tmpl/gstpipeline.sgml :
6734         * docs/manual/elements-api.xml :
6735                 doc fix by Patrick Guimond (Protector) from devel ML
6736                 reviewed by ronald
6737
6738 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6739
6740         * docs/gst/Makefile.am :
6741         * docs/libs/Makefile.am :
6742                 apply a patch from Arwed v. Merkatz so that gtk-doc
6743                 generated docs install (same for .devhelp file)
6744                 (fixes part 1 of #138836)
6745
6746 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6747
6748         * docs/faq/dependencies.xml: typo
6749         * docs/faq/getting.xml :
6750             - fix download URL for new gstreamer site
6751             - hide sf.net download page as latest version aren't there
6752             - fix apt URLs
6753             - fill "get via CVS" paragraph (link to dev page on the site)
6754         * docs/faq/general.xml:
6755             hide status tables as they no more exists
6756             change case on plugins license file to reflect reality
6757         * docs/faq/troubleshooting.xml:
6758             remove the wiki question/answer as there is no more wiki
6759
6760 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
6761
6762         * gst/gsterror.h:
6763           include the headers needed for declarations used in this header
6764
6765 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6766
6767         * docs/random/uraeus/gstreamer_and_midi.txt :
6768           add .kar (midi + karaoke/lyrics 'track') doc to midi doc.
6769           (fixes #132288)
6770
6771 2004-04-30  Sebastien Cote  <sc5@hermes.usherb.ca>
6772
6773         reviewed by Benjamin Otte  <otte@gnome.org>
6774
6775         * gst/schedulers/gthread-cothreads.h:
6776           free allocated data for main cothread, too when destroying context
6777           (fixes #141417)
6778
6779 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6780
6781         * docs/manual/goals.xml : remove duplicated paragraph at end 
6782         of doc page (fixes #141448)
6783
6784 2004-04-29  David Schleef  <ds@schleef.org>
6785
6786         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
6787         Patch from Sebastien Cote to fix leakage of events. (bug #141414)
6788
6789 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6790
6791         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
6792           fix property
6793         * gst/gstcaps.c:
6794           fix doc string
6795         * po/POTFILES.in:
6796           rename typefind source file
6797
6798 2004-04-28  David Schleef  <ds@schleef.org>
6799
6800         Several new files from Steve Lhomme's MSVC patch (bug #141317):
6801         * win32/GStreamer.vcproj:
6802         * win32/Makefile:
6803         * win32/config.h:
6804         * win32/dirent.c: (_topendir), (_treaddir), (_tclosedir),
6805         (_trewinddir), (_ttelldir), (_tseekdir):
6806         * win32/dirent.h:
6807         * win32/gst-inspect.vcproj:
6808         * win32/gst-launch.vcproj:
6809         * win32/gst-register.vcproj:
6810         * win32/gstbytestream.vcproj:
6811         * win32/gstelements.vcproj:
6812         * win32/gstoptimalscheduler.vcproj:
6813         * win32/gstspider.vcproj:
6814         * win32/gtchar.h:
6815         * win32/mman.c: (mmap), (mprotect), (msync), (munmap):
6816         * win32/mman.h:
6817         * win32/mman.inl:
6818         * win32/msvc71.sln:
6819
6820 2004-04-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6821
6822         * gst/gst.c: (init_post):
6823         * gst/gstinfo.c:
6824           remove useless _gst_progname stuff
6825         * tools/gst-inspect.c: (print_field), (print_caps):
6826           improve caps output
6827
6828 2004-04-28  David Schleef  <ds@schleef.org>
6829
6830         Disable parsing of a lot of files that aren't part of the
6831         exported API.  Move corresponding template files to old/,
6832         waiting for removal when they don't contain anything
6833         interesting.
6834         * docs/gst/Makefile.am:
6835         * docs/gst/gstreamer-sections.txt:
6836         * docs/gst/tmpl/cothreads.sgml:
6837         * docs/gst/tmpl/cothreads_compat.sgml:
6838         * docs/gst/tmpl/gettext.sgml:
6839         * docs/gst/tmpl/gobject2gtk.sgml:
6840         * docs/gst/tmpl/grammar.tab.sgml:
6841         * docs/gst/tmpl/gst-i18n-app.sgml:
6842         * docs/gst/tmpl/gst-i18n-lib.sgml:
6843         * docs/gst/tmpl/gst_private.sgml:
6844         * docs/gst/tmpl/gstaggregator.sgml:
6845         * docs/gst/tmpl/gstarch.sgml:
6846         * docs/gst/tmpl/gstatomic_impl.sgml:
6847         * docs/gst/tmpl/gstbufferstore.sgml:
6848         * docs/gst/tmpl/gstdata_private.sgml:
6849         * docs/gst/tmpl/gstdisksink.sgml:
6850         * docs/gst/tmpl/gstdisksrc.sgml:
6851         * docs/gst/tmpl/gstelementfactory.sgml:
6852         * docs/gst/tmpl/gstextratypes.sgml:
6853         * docs/gst/tmpl/gstfakesink.sgml:
6854         * docs/gst/tmpl/gstfakesrc.sgml:
6855         * docs/gst/tmpl/gstfdsink.sgml:
6856         * docs/gst/tmpl/gstfdsrc.sgml:
6857         * docs/gst/tmpl/gstfilesink.sgml:
6858         * docs/gst/tmpl/gstfilesrc.sgml:
6859         * docs/gst/tmpl/gsthttpsrc.sgml:
6860         * docs/gst/tmpl/gstidentity.sgml:
6861         * docs/gst/tmpl/gstindexfactory.sgml:
6862         * docs/gst/tmpl/gstmarshal.sgml:
6863         * docs/gst/tmpl/gstmd5sink.sgml:
6864         * docs/gst/tmpl/gstmultidisksrc.sgml:
6865         * docs/gst/tmpl/gstmultifilesrc.sgml:
6866         * docs/gst/tmpl/gstpadtemplate.sgml:
6867         * docs/gst/tmpl/gstpipefilter.sgml:
6868         * docs/gst/tmpl/gstschedulerfactory.sgml:
6869         * docs/gst/tmpl/gstsearchfuncs.sgml:
6870         * docs/gst/tmpl/gstshaper.sgml:
6871         * docs/gst/tmpl/gstspider.sgml:
6872         * docs/gst/tmpl/gstspideridentity.sgml:
6873         * docs/gst/tmpl/gststatistics.sgml:
6874         * docs/gst/tmpl/gsttee.sgml:
6875         * docs/gst/tmpl/gsttimecache.sgml:
6876         * docs/gst/tmpl/gsttypefind.sgml:
6877         * docs/gst/tmpl/gsttypefindfactory.sgml:
6878         * docs/gst/tmpl/gstxmlregistry.sgml:
6879         * docs/gst/tmpl/gthread-cothreads.sgml:
6880         * docs/gst/tmpl/old/cothreads.sgml:
6881         * docs/gst/tmpl/old/cothreads_compat.sgml:
6882         * docs/gst/tmpl/old/gettext.sgml:
6883         * docs/gst/tmpl/old/gobject2gtk.sgml:
6884         * docs/gst/tmpl/old/grammar.tab.sgml:
6885         * docs/gst/tmpl/old/gst-i18n-app.sgml:
6886         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
6887         * docs/gst/tmpl/old/gst_private.sgml:
6888         * docs/gst/tmpl/old/gstaggregator.sgml:
6889         * docs/gst/tmpl/old/gstarch.sgml:
6890         * docs/gst/tmpl/old/gstatomic_impl.sgml:
6891         * docs/gst/tmpl/old/gstbufferstore.sgml:
6892         * docs/gst/tmpl/old/gstdata_private.sgml:
6893         * docs/gst/tmpl/old/gstdisksink.sgml:
6894         * docs/gst/tmpl/old/gstdisksrc.sgml:
6895         * docs/gst/tmpl/old/gstelementfactory.sgml:
6896         * docs/gst/tmpl/old/gstextratypes.sgml:
6897         * docs/gst/tmpl/old/gstfakesink.sgml:
6898         * docs/gst/tmpl/old/gstfakesrc.sgml:
6899         * docs/gst/tmpl/old/gstfdsink.sgml:
6900         * docs/gst/tmpl/old/gstfdsrc.sgml:
6901         * docs/gst/tmpl/old/gstfilesink.sgml:
6902         * docs/gst/tmpl/old/gstfilesrc.sgml:
6903         * docs/gst/tmpl/old/gsthttpsrc.sgml:
6904         * docs/gst/tmpl/old/gstidentity.sgml:
6905         * docs/gst/tmpl/old/gstindexfactory.sgml:
6906         * docs/gst/tmpl/old/gstmarshal.sgml:
6907         * docs/gst/tmpl/old/gstmd5sink.sgml:
6908         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
6909         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
6910         * docs/gst/tmpl/old/gstpadtemplate.sgml:
6911         * docs/gst/tmpl/old/gstpipefilter.sgml:
6912         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
6913         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
6914         * docs/gst/tmpl/old/gstshaper.sgml:
6915         * docs/gst/tmpl/old/gstspider.sgml:
6916         * docs/gst/tmpl/old/gstspideridentity.sgml:
6917         * docs/gst/tmpl/old/gststatistics.sgml:
6918         * docs/gst/tmpl/old/gsttee.sgml:
6919         * docs/gst/tmpl/old/gsttimecache.sgml:
6920         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
6921         * docs/gst/tmpl/old/gstxmlregistry.sgml:
6922         * docs/gst/tmpl/old/gthread-cothreads.sgml:
6923         * docs/gst/tmpl/old/types.sgml:
6924         * docs/gst/tmpl/types.sgml:
6925
6926         Rename gsttypefind.[ch] back to gsttypefindelement.[ch], since
6927         gtkdoc-scan doesn't like files with the same name in different
6928         directories.
6929         * gst/elements/Makefile.am:
6930         * gst/elements/gstelements.c:
6931         * gst/elements/gsttypefind.c: 
6932         * gst/elements/gsttypefind.h:
6933         * gst/elements/gsttypefindelement.c:
6934         * gst/elements/gsttypefindelement.h:
6935
6936 2004-04-28  David Schleef  <ds@schleef.org>
6937
6938         A bunch of portability fixes, derived from Steve Lhomme's MSVC
6939         patch (bug #141317):
6940         * gst/gst-i18n-lib.h: Allow disabling gettext.
6941         * gst/gstatomic_impl.h: disable warning when it's dumb.
6942         * gst/gstclock.c: fix include
6943         * gst/gstcompat.h: fix variadic macro
6944         * gst/gstinfo.c: fix include
6945         * gst/gstmacros.h: add defines for inlines on MSVC
6946         * gst/gstplugin.c: fix includes
6947         * gst/gstregistry.c: fix includes
6948         * gst/gstregistry.h: use S_IREAD, etc., if S_IRUSR isn't defined
6949         * gst/gstsystemclock.c: fix include
6950         * gst/gsttrace.c: (gst_trace_new), (gst_trace_text_flush): use
6951         S_IREAD if S_IRUSR isn't defined.  fix use of non-portable functions
6952         * gst/registries/gstxmlregistry.c:
6953         (gst_xml_registry_parse_element_factory): fix use of non-portable
6954         functions
6955         * libs/gst/control/dparam.h: Remove trailing comma in enum definition
6956         * libs/gst/control/dparammanager.h: same
6957
6958 2004-04-28  David Schleef  <ds@schleef.org>
6959
6960         Move a bunch of unused files to old/ with names that are
6961         not case-insensitive-unique.  These files still contain some
6962         useful information that needs to be merged into gstbin.sgml,
6963         etc., so they shouldn't be deleted yet.
6964         * docs/gst/tmpl/GstBin.sgml:
6965         * docs/gst/tmpl/GstBuffer.sgml:
6966         * docs/gst/tmpl/GstCaps.sgml:
6967         * docs/gst/tmpl/GstClock.sgml:
6968         * docs/gst/tmpl/GstCompat.sgml:
6969         * docs/gst/tmpl/GstData.sgml:
6970         * docs/gst/tmpl/GstElement.sgml:
6971         * docs/gst/tmpl/GstEvent.sgml:
6972         * docs/gst/tmpl/GstIndex.sgml:
6973         * docs/gst/tmpl/GstStructure.sgml:
6974         * docs/gst/tmpl/GstTag.sgml:
6975         * docs/gst/tmpl/old/GstBin.sgml:
6976         * docs/gst/tmpl/old/GstBuffer.sgml:
6977         * docs/gst/tmpl/old/GstCaps.sgml:
6978         * docs/gst/tmpl/old/GstClock.sgml:
6979         * docs/gst/tmpl/old/GstCompat.sgml:
6980         * docs/gst/tmpl/old/GstData.sgml:
6981         * docs/gst/tmpl/old/GstElement.sgml:
6982         * docs/gst/tmpl/old/GstEvent.sgml:
6983         * docs/gst/tmpl/old/GstIndex.sgml:
6984         * docs/gst/tmpl/old/GstStructure.sgml:
6985         * docs/gst/tmpl/old/GstTag.sgml:
6986
6987 2004-04-28  David Schleef  <ds@schleef.org>
6988
6989         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
6990         (gst_caps_append), (gst_caps_append_structure),
6991         (gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
6992         (gst_caps_set_simple), (gst_caps_set_simple_valist),
6993         (gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
6994         (gst_caps_is_fixed), (gst_caps_is_always_compatible),
6995         (gst_caps_intersect), (gst_caps_normalize),
6996         (gst_caps_transform_to_string):  Patch from Tim-Philipp Müller
6997         to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
6998         * gst/gstcaps.h: use GST_IS_CAPS().
6999
7000 2004-04-26  David Schleef  <ds@schleef.org>
7001
7002         * gst/gstcpu.c: (gst_cpuid_i386): Don't clobber ebx in inline
7003         assembly.  gcc doesn't handle it correctly. (bug #141083)
7004         * gst/gsttrashstack.h: same
7005
7006 2004-04-25  Benjamin Otte  <otte@gnome.org>
7007
7008         * gst/gstelement.c: (gst_element_change_state):
7009           fix assertion to do an int comparison
7010
7011 2004-04-25  Benjamin Otte  <otte@gnome.org>
7012
7013         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
7014           better debugging output on error
7015
7016 2004-04-25  Benjamin Otte  <otte@gnome.org>
7017
7018         * gst/gstcaps.c: (gst_caps_subtract):
7019           fix memleak
7020
7021 2004-04-23  Benjamin Otte  <otte@gnome.org>
7022
7023         * gst/gstvalue.c: (gst_value_compare_buffer),
7024         (_gst_value_initialize):
7025           add comparison function for buffers
7026
7027 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7028
7029         * docs/pwg/pwg.xml:
7030           Just found out that this so-called "ima-wav" format is really
7031           just "dvi adpcm" (according to the MS WAV documentation). So
7032           renaming it. We didn't use it yet anyway.
7033
7034 2004-04-23  Benjamin Otte  <otte@gnome.org>
7035
7036         * gst/gstcaps.c: (gst_caps_is_always_compatible):
7037           call gst_caps_is_subset
7038
7039 2004-04-23  Benjamin Otte  <otte@gnome.org>
7040
7041         * gst/gstcaps.c: (gst_caps_subtract), (gst_caps_is_equal), 
7042         (gst_caps_is_subset):
7043           add documentation
7044
7045 2004-04-23  Benjamin Otte  <otte@gnome.org>
7046           
7047         * gst/gstcaps.c: (gst_caps_structure_subtract_field),
7048         (gst_caps_structure_subtract), (gst_caps_subtract),
7049         (gst_caps_structure_figure_out_union),
7050         (gst_caps_structure_simplify), (gst_caps_do_simplify):
7051           fix simplifying and subtracting not working correctly with optional
7052           properties
7053           solve assorted problems that make it now simplify ebven more
7054         * docs/gst/tmpl/gstcaps.sgml:
7055         * gst/gstcaps.h:
7056           make gst_caps_do_simplify return a bool to indicate if it simplified
7057         * testsuite/caps/simplify.c: (main):
7058           add more checks. The tests is quite a bit useless right now because
7059           the core is heavily simplifying itself.
7060         * testsuite/caps/caps.h:
7061           fix caps to contain all optional properties
7062
7063 2004-04-22  Benjamin Otte  <otte@gnome.org>
7064
7065         * docs/gst/tmpl/gstcaps.sgml:
7066         * docs/gst/tmpl/gstfilesrc.sgml:
7067         * docs/gst/tmpl/gststructure.sgml:
7068         * docs/gst/tmpl/gstvalue.sgml:
7069           update for recent API changes
7070         * gst/gstcaps.c: (gst_caps_do_simplify):
7071           fix to stop trying with a freed structure
7072         * gst/gstpad.c: (gst_pad_link_fixate):
7073           simplify caps
7074         * gst/gstpad.c: (gst_pad_template_get_caps_by_name):
7075           remove C++ comment
7076         * gst/gstpad.h:
7077           deprecate gst_pad_template_get_caps_by_name, it doesn't work anyway
7078         * gst/gststructure.c: (gst_structure_value_get_generic_type),
7079         (gst_structure_to_string):
7080           keep the correct type when using lists of ranges
7081         * gst/gstvalue.c: (gst_value_list_prepend_value),
7082         (gst_value_list_append_value):
7083           copy the value before adding to the list (d'oh)
7084         * gst/gstvalue.c: (gst_value_subtract_int_range_int),
7085         (gst_value_subtract_int_range_int_range):
7086           handle overflows correctly
7087         * gst/gstvalue.c: (gst_value_subtract_from_list):
7088           fix memleak
7089         * testsuite/caps/caps.h:
7090           add a caps that caused segfaults
7091
7092 2004-04-22  Benjamin Otte  <otte@gnome.org>
7093
7094         * testsuite/refcounting/pad.c: (main):
7095           fix test
7096
7097 2004-04-22  Benjamin Otte  <otte@gnome.org>
7098
7099         * gst/gstcaps.c: (gst_caps_subtract):
7100           allow subtracting ANY and EMPTY from ANY caps
7101
7102 2004-04-22  Benjamin Otte  <otte@gnome.org>
7103
7104         * gst/gstcaps.c: (gst_caps_append), (gst_caps_intersect),
7105         (gst_caps_union):
7106           only simplify in functions that create new caps. Simplifying in
7107           gst_caps_append breaks tests.
7108
7109 2004-04-22  Benjamin Otte  <otte@gnome.org>
7110
7111         * gst/gstcaps.c: (gst_caps_structure_simplify):
7112           unset GValue after use
7113         * gst/gstcaps.c: (gst_caps_append), 
7114         * gst/gstpad.c: (gst_pad_link_fixate), (gst_pad_template_new):
7115           use gst_caps_simplify (reduces registry size by 30%)
7116         * gst/gstpad.c: (gst_pad_template_new):
7117           don't allow NULL caps
7118
7119 2004-04-22  Benjamin Otte  <otte@gnome.org>
7120
7121         * docs/gst/gstreamer-sections.txt:
7122           add gst_caps_do_simplify
7123         * gst/gstcaps.c:
7124           add documentation for gst_caps_do_simplify
7125         * gst/gstvalue.h:
7126           fix typo in gst_value_register_subtract_func declaration for gst-doc
7127
7128 2004-04-22  Benjamin Otte  <otte@gnome.org>
7129
7130         * gst/gstcaps.c: (gst_caps_from_string_inplace):
7131           fix bug when converting from empty string.
7132         * gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
7133         (gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
7134           use gst_caps_new_empty to allocate a new caps. Only that function
7135           allocates memory for caps now.
7136         * gst/gstcaps.c: (gst_caps_remove_and_get_structure),
7137         (gst_caps_remove_structure):
7138           add ability to remove one structure (but not to header yet)
7139         * gst/gstcaps.c: (gst_caps_compare_structures),
7140         (gst_caps_simplify), (gst_caps_structure_figure_out_union),
7141         (gst_caps_structure_simplify), (gst_caps_do_simplify),
7142         * gst/gstcaps.h:
7143           add gst_caps_do_simplify that tries to simplify a caps in place.
7144           Deprecate old gst_caps_simplify function.
7145         * testsuite/caps/caps.h:
7146           add caps.h containing a common set of caps to test against.
7147         * testsuite/caps/sets.c: (check_caps), (main):
7148           use it.
7149         * testsuite/caps/.cvsignore:
7150         * testsuite/caps/Makefile.am:
7151         * testsuite/caps/simplify.c: (check_caps), (main):
7152           add test to check correctness and efficency of caps simplification.
7153
7154 2004-04-22  Sebastien Cote <sc5@hermes.usherb.ca>
7155
7156         reviewed by Benjamin Otte  <otte@gnome.org>
7157
7158         * gst/gstparse.c: (_gst_parse_escape):
7159           Free the GString used in _gst_parse_escape()
7160
7161 2004-04-21  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7162
7163         * gst/gstpad.c: (gst_pad_link_negotiate):
7164           refuse to link if the link is not possible
7165         * configure.ac:
7166         * testsuite/Makefile.am:
7167         * testsuite/negotiation/.cvsignore:
7168         * testsuite/negotiation/Makefile.am:
7169         * testsuite/negotiation/pad_link.c: (main):
7170           add test that checks the above behaviour
7171
7172 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7173
7174         * docs/gst/gstreamer-sections.txt:
7175           add newly added API
7176
7177 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7178
7179         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
7180         (gst_filesrc_get_mmap), (gst_filesrc_get_read), (gst_filesrc_get),
7181         (gst_filesrc_open_file), (gst_filesrc_close_file),
7182         (gst_filesrc_srcpad_query), (gst_filesrc_srcpad_event):
7183         * gst/elements/gstfilesrc.h:
7184           add support for non-regular files (#140734)
7185
7186 2004-04-21  Benjamin Otte  <otte@gnome.org>
7187
7188         * gst/gstpad.c: (gst_pad_link_fixate):
7189           add sophisticated error checking code to see if fixation functions
7190           did their fixation right
7191
7192 2004-04-21  Benjamin Otte  <otte@gnome.org>
7193
7194         * gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
7195           check for ANY caps before appending/unioning
7196         * gst/gstcaps.c: (gst_caps_is_subset),
7197         (gst_caps_is_equal), (gst_caps_structure_subtract_field),
7198         (gst_caps_structure_subtract), (gst_caps_subtract):
7199         * gst/gstcaps.h:
7200           add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
7201           the API. deprecate gst_caps_is_equal_fixed
7202         * gst/gstpad.c: (gst_pad_try_set_caps):
7203         * gst/gstqueue.c: (gst_queue_link):
7204           s/gst_caps_is_equal_fixed/gst_caps_is_equal/
7205         * gst/gststructure.c: (gst_structure_get_name_id):
7206         * gst/gststructure.h:
7207           add function gst_structure_get_name_id
7208         * gst/gstvalue.c: (gst_value_subtract_int_int_range),
7209         (gst_value_create_new_range), (gst_value_subtract_int_range_int),
7210         (gst_value_subtract_int_range_int_range),
7211         (gst_value_subtract_double_double_range),
7212         (gst_value_subtract_double_range_double),
7213         (gst_value_subtract_double_range_double_range),
7214         (gst_value_subtract_from_list), (gst_value_subtract_list),
7215         (gst_value_can_intersect), (gst_value_subtract),
7216         (gst_value_can_subtract), (gst_value_register_subtract_func),
7217         (_gst_value_initialize):
7218         * gst/gstvalue.h:
7219           add support for subtracting values from each other. Note that
7220           subtracting means subtracting as in set theory. Required for caps
7221           stuff above.
7222         * testsuite/caps/.cvsignore:
7223         * testsuite/caps/Makefile.am:
7224         * testsuite/caps/erathostenes.c: (erathostenes), (main):
7225         * testsuite/caps/sets.c: (check_caps), (main):
7226         * testsuite/caps/subtract.c: (check_caps), (main):
7227           add tests for subtraction and equality code.
7228
7229 2004-04-20  David Schleef  <ds@schleef.org>
7230
7231         * gst/autoplug/Makefile.am:  Fix some little buglets in last checkin.
7232         * gst/indexers/Makefile.am:
7233         * gst/schedulers/Makefile.am:
7234         * libs/gst/bytestream/Makefile.am:
7235         * libs/gst/control/Makefile.am:
7236         * libs/gst/getbits/Makefile.am:
7237
7238 2004-04-20  David Schleef  <ds@schleef.org>
7239
7240         * common/as-libtool.mak: Fine-tune DLL building.
7241         * configure.ac: Link plugins against libgstreamer.  Define plugindir
7242         (like gst-plugins)
7243         * examples/plugins/Makefile.am: remove plugindir
7244         * gst/autoplug/Makefile.am: DLL building fixes
7245         * gst/elements/Makefile.am: DLL building fixes.  Disable pipefilter on
7246         Windows.
7247         * gst/elements/gstelements.c: Conditionally disable pipefilter.
7248         * gst/indexers/Makefile.am: DLL building fixes
7249         * gst/schedulers/Makefile.am: DLL building fixes.
7250         * libs/gst/bytestream/Makefile.am: DLL building fixes.
7251         * libs/gst/control/Makefile.am: same
7252         * libs/gst/getbits/Makefile.am: same
7253         * testsuite/Makefile.am: New dlopen directory
7254         * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works
7255         when dlopened.
7256         * testsuite/dlopen/dlopen_gst.c: (main): same
7257         * testsuite/dlopen/loadgst.c: (do_test): same
7258
7259 2004-04-20  David Schleef  <ds@schleef.org>
7260
7261         * gst/parse/grammar.y:  Apply patch from Sebastien Cote
7262         <sc5@hermes.usherb.ca> to fix a memleak. (bug #140594)
7263
7264 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7265
7266         * gst/gstelement.c: (gst_element_wait),
7267         (gst_element_set_time_delay), (gst_element_change_state):
7268           Use GST_TIME_*
7269
7270 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7271
7272         * gst/autoplug/gstspider.c: (gst_spider_link_sometimes),
7273         (gst_spider_identity_plug):
7274           improve debugging messages
7275         * gst/gstbin.c: (gst_bin_remove_func):
7276           make sure the state_change function is only called with simple state
7277           transitions
7278
7279 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7280
7281         * gst/elements/gstfakesink.c: (gst_fakesink_state_error_get_type),
7282         (gst_fakesink_set_property), (gst_fakesink_chain):
7283         * gst/elements/gstfakesrc.c: (gst_fakesrc_set_property):
7284         * gst/elements/gstfdsrc.c: (gst_fdsrc_set_property):
7285         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property):
7286         * gst/elements/gstidentity.c: (gst_identity_chain),
7287         (gst_identity_set_property):
7288         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_set_property):
7289         * gst/elements/gstpipefilter.c: (gst_pipefilter_set_property):
7290           add warnings to _set_property for unknown arguments
7291           use GST_TIME_FORMAT/GST_TIME_ARGS for timestamp printing
7292
7293 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7294
7295         * Makefile.am:
7296         * docs/manuals.mak:
7297           add .po file download snippet
7298           fix a bug in the doc makefile
7299
7300 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7301
7302         * Makefile.am:
7303         * po/LINGUAS:
7304         * po/en_GB.po:
7305           Added en_GB translation (Gareth Owen)
7306
7307 2004-04-20  Johan Dahlin  <johan@gnome.org>
7308
7309         * gst/gstpad.c (_invent_event): Clean up
7310
7311 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7312
7313         * testsuite/caps/filtercaps.c: (main):
7314           fix test to test things correctly (caps are complicated)
7315
7316 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7317
7318         * testsuite/caps/Makefile.am:
7319         * testsuite/caps/filtercaps.c: (main):
7320           add test (that doesn't work right now, but should)
7321
7322 2004-04-19  David Schleef  <ds@schleef.org>
7323
7324         * configure.ac: Add test for allowing unaligned access.  Add define
7325         to put in gstconfig.h.
7326         * docs/gst/gstreamer-sections.txt: New symbols
7327         * docs/gst/tmpl/gstcompat.sgml: Check in changes made by gtkdoc
7328         * docs/gst/tmpl/gstfilesrc.sgml:
7329         * docs/gst/tmpl/gstparse.sgml:
7330         * docs/gst/tmpl/gsttypes.sgml:
7331         * docs/gst/tmpl/gstutils.sgml:
7332         * docs/gst/tmpl/gstvalue.sgml:
7333         * gst/gstconfig.h.in: Add GST_HAVE_UNALIGNED_ACCESS
7334         * gst/gstutils.h: Add macros for unaligned memory access.  Useful
7335         on most !i386/!powerpc architectures.  From Daniel Gazard
7336         <daniel.gazard@free.fr>.  (bug #140156)
7337         * po/af.po: Check in changes made by gettext.
7338         * po/az.po:
7339         * po/fr.po:
7340         * po/nl.po:
7341         * po/sr.po:
7342         * po/sv.po:
7343
7344 2004-04-20  Benjamin Otte  <otte@gnome.org>
7345
7346         * gst/schedulers/entryscheduler.c: 
7347         (gst_entry_scheduler_yield):
7348           refuse to yield when decoupled elements insist on doing that.
7349           At least it's better than crashing
7350
7351 2004-04-19  David Schleef  <ds@schleef.org>
7352
7353         * docs/libs/Makefile.am: Change sinclude to include
7354         * docs/gst/Makefile.am: same
7355         * pkgconfig/Makefile.am:  Remove GNU-ism from makefile target
7356
7357 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
7358
7359         * po/LINGUAS:
7360         * po/uk.po:
7361           Added Ukrainian translation (Maxim V. Dziumanenko)
7362
7363 2004-04-19  Johan Dahlin  <johan@gnome.org>
7364
7365         * gst/parse/grammar.y (__gst_parse_chain_free): Don't do null
7366         checking here, do it before calling the function.
7367         Clean up, use for loops instead of while loops while iterating
7368         over lists.
7369
7370         * gst/autoplug/gstspider.c (gst_spider_request_new_pad): Fix typo
7371         in debug message.
7372         (gst_spider_create_and_plug): Improve debug message.
7373         General: Replace while loops which iterates over GLists with for
7374         loops. Which are much cleaner, improves readability, especially
7375         for gst_spider_identity_plug
7376
7377         * gst/gstpad.c (_invent_event): Fix parameters to warning macros,
7378         fixes bug 140477
7379
7380 2004-04-18  Thomas Vander Stichele  <thomas at apestaart dot org>
7381
7382         * po/LINGUAS:
7383         * po/tr.po:
7384           Added Turkish translation (Baris Cicek)
7385
7386 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7387
7388         * docs/faq/troubleshooting.xml:
7389           Mention gst-register in the FAQ (fixes 139045).
7390
7391 2004-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7392
7393         * docs/gst/gstreamer-sections.txt:
7394
7395 2004-04-17  Benjamin Otte  <otte@gnome.org>
7396
7397         * gst/gstelement.c: (gst_element_dispose):
7398           simplify
7399         * gst/gstpad.c: (gst_pad_call_chain_function):
7400           don't create loads of events due to bad macro usage
7401
7402 2004-04-16  David Schleef  <ds@schleef.org>
7403
7404         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
7405         * gst/gstpad.c: (_gst_pad_default_fixate_foreach):
7406         * gst/gstvalue.c: (gst_value_serialize_buffer),
7407         (gst_value_deserialize_buffer), (gst_type_is_fixed),
7408         (_gst_value_initialize): Create a new function gst_type_is_fixed()
7409         to indicate types that are fixed wrt caps or not.  Switching to
7410         this function fixes (bug #140298).
7411         * gst/gstvalue.h:
7412
7413 2004-04-16  David Schleef  <ds@schleef.org>
7414
7415         * common/m4/gst-arch.m4:  Implmenent a whitelist and blacklist
7416         for GST_UNALIGNED_ACESS, since we essentially know which archs
7417         are ok.
7418
7419 2004-04-17  Benjamin Otte  <otte@gnome.org>
7420
7421         * docs/gst/Makefile.am:
7422           ignore gst/parse directory when building docs (fixes #140205)
7423
7424 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
7425
7426         * testsuite/refcounting/mem.c: (vmsize):
7427           do error checking
7428
7429 2004-04-16  Johan Dahlin  <johan@gnome.org>
7430
7431         * docs/gst/gstreamer-sections.txt: Add gst_pad_call_chain_function
7432         and gst_pad_call_get_function.
7433
7434 2004-04-15  David Schleef  <ds@schleef.org>
7435
7436         * common/m4/gst-arch.m4: Add GST_UNALIGNED_ACCESS() macro that
7437         checks if we can access unaligned memory.
7438         * configure.ac: Use it.
7439
7440 2004-04-16  Benjamin Otte  <otte@gnome.org>
7441
7442         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get),
7443         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
7444         * gst/elements/gstfilesrc.h:
7445           s/seek_happened/need_discont/ and require discont before sending any
7446           data
7447
7448 2004-04-15  David Schleef  <ds@schleef.org>
7449
7450         * gst/gstvalue.c: (gst_value_serialize_buffer),
7451         (gst_value_deserialize_buffer), (_gst_value_initialize):
7452         Register these types as fundamental types. (bug #140015)
7453
7454 2004-04-16  Benjamin Otte  <otte@gnome.org>
7455
7456         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_new),
7457         (gst_pad_link_free), (gst_pad_link_try), (_invent_event),
7458         (gst_pad_pull):
7459           implement enforcing discont events before buffers are passed. This
7460           allows state changes of only some elements and later correctly going
7461           on where they left off (or in short: you can now set audio sinks to
7462           NULL to release the device when the pipeline is paused)
7463         * gst/gstpad.c: (gst_pad_call_chain_function),
7464         (gst_pad_call_get_function):
7465         * gst/gstpad.h:
7466           add gst_pad_call_chain_function and gst_pad_call_get_function for
7467           scheduler interaction. They are required because of the changes
7468           above.
7469         * gst/schedulers/entryscheduler.c: (get_buffer),
7470         (gst_entry_scheduler_chain_wrapper),
7471         (gst_entry_scheduler_get_wrapper),
7472         (gst_entry_scheduler_state_transition),
7473         (gst_entry_scheduler_pad_link):
7474         * gst/schedulers/gstbasicscheduler.c:
7475         (gst_basic_scheduler_chain_wrapper),
7476         (gst_basic_scheduler_src_wrapper),
7477         (gst_basic_scheduler_chainhandler_proxy),
7478         (gst_basic_scheduler_gethandler_proxy),
7479         (gst_basic_scheduler_cothreaded_chain),
7480         (gst_basic_scheduler_chain_elements):
7481         * gst/schedulers/gstoptimalscheduler.c:
7482         (get_group_schedule_function), (pad_clear_queued),
7483         (gst_opt_scheduler_pad_link):
7484           use the new functions instead of calling get/chain-functions
7485           directly.
7486
7487 2004-04-15  David Schleef  <ds@schleef.org>
7488
7489         * docs/gst/gstreamer-sections.txt: Remove deprecated symbols.
7490         * docs/gst/tmpl/gstinfo.sgml: same
7491         * docs/gst/tmpl/gstutils.sgml: Remove a bunch of bogus crap that
7492         gtk-doc put here.
7493         * gst/gstutils.h: Remove the \ that was confusing gtk-doc.
7494         * examples/queue/queue.c: (main):  We iterate pipelines, not
7495         bins.  (bug #139996)
7496
7497 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7498
7499         * docs/pwg/advanced-types.xml:
7500           Add MS RLE support. Also document Qt RLE although I have no sample
7501           files for that yet. And document an extra property for ADPCM.
7502
7503 2004-04-15  David Schleef  <ds@schleef.org>
7504
7505         * gst/gstplugin.c: (_gst_plugin_fault_handler_restore),
7506         (_gst_plugin_fault_handler_setup):  Disable more stuff on
7507         Windows.
7508
7509 2004-04-15  David Schleef  <ds@schleef.org>
7510
7511         * gst/gstinfo.c: (_gst_debug_init): Change some internal
7512         symbol names to not conflict with new gstinfo.h symbols.
7513         * gst/gstinfo.h: Add inline functions for all those crazy
7514         compilers that don't know how to handle variadic macros (MSVC).
7515
7516 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7517
7518         * configure.ac: bump nano to 1
7519
7520 === release 0.8.1 ===
7521
7522 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7523
7524         * NEWS:
7525         * RELEASE:
7526         * configure.ac:
7527           releasing 0.8.1, "Snow Brigade"
7528
7529 2004-04-14  David Schleef  <ds@schleef.org>
7530
7531         * testsuite/Makefile.am: define tests_ignore
7532         * testsuite/Rules: Added new tests_ignore, which get compiled,
7533         but not run (generally because they're inconsistent or have
7534         heisenbugs).  Now we can ensure all the .c files compile in
7535         testsuite/.
7536         * testsuite/bins/Makefile.am: define tests_ignore
7537         * testsuite/bytestream/Makefile.am:
7538         * testsuite/caps/Makefile.am:
7539         * testsuite/clock/Makefile.am:
7540         * testsuite/debug/Makefile.am:
7541         * testsuite/debug/global.c: (gst_debug_log_one),
7542         (gst_debug_log_two): Fix compilation problem.
7543         * testsuite/dynparams/Makefile.am:
7544         * testsuite/elements/Makefile.am:
7545         * testsuite/ghostpads/Makefile.am:
7546         * testsuite/indexers/Makefile.am:
7547         * testsuite/parse/Makefile.am:
7548         * testsuite/plugin/Makefile.am:
7549         * testsuite/refcounting/Makefile.am:
7550         * testsuite/refcounting/element_pad.c: (main): Don't return leak
7551         results, because it's not calculated correctly.
7552         * testsuite/refcounting/pad.c: (main): same
7553         * testsuite/states/Makefile.am:
7554         * testsuite/tags/Makefile.am:
7555         * testsuite/threads/Makefile.am:
7556
7557 2004-04-14  David Schleef  <ds@schleef.org>
7558
7559         * gst/gstcpu.c: (gst_cpuid_i386): Add workaround for gcc-3.2
7560         generating bad code around the cpu detection asm code.
7561
7562 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7563
7564         * tools/gst-inspect.c: (print_element_info):
7565           print numeric version of rank as well, since we added some - 1
7566           rank values to elements
7567
7568 2004-04-13  David Schleef  <ds@schleef.org>
7569
7570         * configure.ac:  Disable various code when compiling for MinGW.
7571         * gst/elements/Makefile.am:
7572         * gst/elements/gstelements.c:
7573         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
7574         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get):
7575         * gst/registries/gstxmlregistry.c: (make_dir):
7576
7577 2004-04-13  David Schleef  <ds@schleef.org>
7578
7579         * gst/Makefile.am:
7580         * gst/gstcpu.c: (gst_cpuid_i386): Convert asm source into inline
7581         assembly.
7582         * gst/gstcpuid_i386.s: remove
7583
7584 2004-04-13  David Schleef  <ds@schleef.org>
7585
7586         * docs/gst/tmpl/gstaggregator.sgml: Random checkin because gtk-doc
7587         seems to think it needs to be done.
7588         * docs/gst/tmpl/gstfakesink.sgml:
7589         * docs/gst/tmpl/gstfakesrc.sgml:
7590         * docs/gst/tmpl/gstfdsink.sgml:
7591         * docs/gst/tmpl/gstfdsrc.sgml:
7592         * docs/gst/tmpl/gstfilesink.sgml:
7593         * docs/gst/tmpl/gstfilesrc.sgml:
7594         * docs/gst/tmpl/gstidentity.sgml:
7595         * docs/gst/tmpl/gstmd5sink.sgml:
7596         * docs/gst/tmpl/gstmultifilesrc.sgml:
7597         * docs/gst/tmpl/gstpipefilter.sgml:
7598         * docs/gst/tmpl/gstshaper.sgml:
7599         * docs/gst/tmpl/gstspider.sgml:
7600         * docs/gst/tmpl/gstspideridentity.sgml:
7601         * docs/gst/tmpl/gststatistics.sgml:
7602         * docs/gst/tmpl/gsttee.sgml:
7603         * docs/gst/tmpl/gsttypefind.sgml:
7604         * docs/gst/tmpl/gstutils.sgml:
7605
7606 2004-04-13  David Schleef  <ds@schleef.org>
7607
7608         * configure.ac: Changes to remove POSIXisms (mmap in this case)
7609         and to build DLLs on Windows.
7610         * gst/Makefile.am:
7611         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
7612         (gst_filesrc_open_file):
7613         * gst/schedulers/Makefile.am:
7614
7615 2004-04-13  David Schleef  <ds@schleef.org>
7616
7617         * gst/gstcaps.c: (gst_caps_structure_fixate_field_nearest_int),
7618         (gst_caps_structure_fixate_field_nearest_double):  Fix bug in
7619         fixating lists.
7620
7621 2004-04-12  David Schleef  <ds@schleef.org>
7622
7623         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
7624         (gst_buffer_free_chunk): Added gst_buffer_get_type() and changed
7625         to using it.
7626         * gst/gstbuffer.h: Changed GST_BUFFER_TYPE to gst_buffer_get_type()
7627         * gst/gstcaps.c: (gst_caps_is_fixed_foreach): Buffer is a fixed type
7628         * gst/gstpad.c: (_gst_pad_default_fixate_foreach): same
7629         * gst/gststructure.c: (gst_structure_set_valist),
7630         (gst_structure_from_abbr), (gst_structure_to_abbr): Add vararg
7631         support for buffers.
7632         * gst/gsttag.c: (gst_tag_register): Constify a prototype that was
7633         intended to be const.
7634         * gst/gsttag.h: same
7635         * gst/gstvalue.c: (gst_value_serialize_buffer),
7636         (gst_value_deserialize_buffer), (_gst_value_initialize):  Add code
7637         to (de)serialize buffers.
7638         * testsuite/caps/Makefile.am:  Add a bit of buffer testing
7639         * testsuite/caps/string-conversions.c: (main):
7640         * testsuite/caps/value_serialize.c: add new test
7641
7642 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7643
7644         * docs/pwg/advanced-types.xml:
7645           Document MS video 1 (video/x-msvideocodec) mimetype/format.
7646
7647 2004-04-11  Benjamin Otte  <otte@gnome.org>
7648
7649         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
7650           rename categories to basic_*
7651         * gst/schedulers/gstbasicscheduler.c: 
7652         (gst_basic_scheduler_chain_wrapper),
7653         (gst_basic_scheduler_chainhandler_proxy),
7654         (gst_basic_scheduler_gethandler_proxy),
7655         (gst_basic_scheduler_eventhandler_proxy):
7656           debugging category fixes - put common stuff in log category
7657         * gst/schedulers/gstbasicscheduler.c: 
7658         (gst_basic_scheduler_chain_elements):
7659           dirty fix: call gst_basic_scheduler_cothreaded_chain when already
7660           active and linking two active chains
7661
7662 2004-04-10  Benjamin Otte  <otte@gnome.org>
7663
7664         * docs/pwg/intro-preface.xml:
7665           fix dead links and remove reference to Wiki
7666
7667 2004-04-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7668
7669         * gst/schedulers/gstbasicscheduler.c:
7670           make sure we can switch back to the main function if we're still in
7671           the main function (supposed to fix #139617)
7672         * gst/schedulers/gthread-cothreads.h:
7673           don't throw an error when switching to the same cothread
7674
7675 2004-04-09  Benjamin Otte  <otte@gnome.org>
7676
7677         * gst/gstbin.c: (gst_bin_get_type):
7678         * gst/gstclock.c: (gst_clock_get_type):
7679         * gst/gstindex.c: (gst_index_get_type):
7680         * gst/gstobject.c: (gst_object_get_type),
7681         (gst_signal_object_get_type):
7682         * gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
7683         (gst_pad_template_get_type), (gst_ghost_pad_get_type):
7684         * gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
7685         * gst/gstqueue.c: (gst_queue_get_type):
7686         * gst/gstregistry.c: (gst_registry_get_type):
7687         * gst/gstsystemclock.c: (gst_system_clock_get_type):
7688         * gst/gstthread.c: (gst_thread_get_type):
7689           don't use memchunks for these objects, use malloc instead
7690
7691 2004-04-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7692
7693         * docs/gst/.cvsignore:
7694         * docs/gst/Makefile.am:
7695         * docs/gst/gstreamer-sections.txt:
7696         * docs/gst/tmpl/gstaggregator.sgml:
7697         * docs/gst/tmpl/gstbuffer.sgml:
7698         * docs/gst/tmpl/gstclock.sgml:
7699         * docs/gst/tmpl/gstelement.sgml:
7700         * docs/gst/tmpl/gstfakesink.sgml:
7701         * docs/gst/tmpl/gstfakesrc.sgml:
7702         * docs/gst/tmpl/gstfdsink.sgml:
7703         * docs/gst/tmpl/gstfdsrc.sgml:
7704         * docs/gst/tmpl/gstfilesink.sgml:
7705         * docs/gst/tmpl/gstfilesrc.sgml:
7706         * docs/gst/tmpl/gstidentity.sgml:
7707         * docs/gst/tmpl/gstindex.sgml:
7708         * docs/gst/tmpl/gstinfo.sgml:
7709         * docs/gst/tmpl/gstmd5sink.sgml:
7710         * docs/gst/tmpl/gstmultifilesrc.sgml:
7711         * docs/gst/tmpl/gstpad.sgml:
7712         * docs/gst/tmpl/gstpipefilter.sgml:
7713         * docs/gst/tmpl/gstpipeline.sgml:
7714         * docs/gst/tmpl/gstpluginfeature.sgml:
7715         * docs/gst/tmpl/gstqueue.sgml:
7716         * docs/gst/tmpl/gstregistry.sgml:
7717         * docs/gst/tmpl/gstscheduler.sgml:
7718         * docs/gst/tmpl/gstshaper.sgml:
7719         * docs/gst/tmpl/gstspider.sgml:
7720         * docs/gst/tmpl/gstspideridentity.sgml:
7721         * docs/gst/tmpl/gststatistics.sgml:
7722         * docs/gst/tmpl/gstsystemclock.sgml:
7723         * docs/gst/tmpl/gsttee.sgml:
7724         * docs/gst/tmpl/gstthread.sgml:
7725         * docs/gst/tmpl/gsttypefind.sgml:
7726         * docs/gst/tmpl/gstutils.sgml:
7727           further doc build fixes
7728
7729 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7730
7731         * docs/gst/Makefile.am:
7732           make docs exit on scanning problems
7733           fix nonsrcdir build issues
7734         * docs/gst/gstreamer-sections.txt:
7735           adding stuff from -unused
7736         * gst/gstqueue.h:
7737           create GstQueueSize
7738         * gst/schedulers/cothreads_compat.h:
7739           fix cothread warnings
7740
7741 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7742
7743         * docs/gst/gstreamer-sections.txt:
7744           remove defines deprecated by Benjamin
7745
7746 2004-04-07  Benjamin Otte  <otte@gnome.org>
7747
7748         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
7749           when the buffer is complete, don't check if other buffers are needed
7750         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_event):
7751           check that the offset is >0 so we don't try to read before the
7752           beginning of the file
7753         * gst/gstpad.c: (gst_pad_set_pad_template):
7754           sink the template, so we don't end up with 130k pad templates
7755
7756 2004-04-06  Benjamin Otte  <otte@gnome.org>
7757
7758         * gst/autoplug/gstspider.c: (gst_spider_link_add):
7759           don't ref the element, adding already reffed it. And we didn't unref
7760           it later anyway... (huge memleak when you used many spider elements)
7761         * gst/gstelement.c: (gst_element_base_class_finalize):
7762         * gst/gstelementfactory.c: (gst_element_factory_cleanup),
7763         (gst_element_register):
7764         * gst/gsturi.c: (gst_element_make_from_uri):
7765           use gst_object_(un)ref instead of g_object(un)ref
7766
7767 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7768
7769         * gst/gstbuffer.h:
7770           remove macro that wouldn't work anymore because struct member has
7771           been removed.
7772         * gst/schedulers/entryscheduler.c: (schedule_forward):
7773           fix segfault for unconnected pads
7774         
7775 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7776
7777         reviewed by David Schleef <ds@schleef.org>
7778
7779         * gst/gstinfo.h:
7780           *_FORMAT modifiers should require putting a % in front of them for
7781           consistency reasons.
7782
7783 2004-04-05  Colin Walters  <walters@redhat.com>
7784
7785         * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious
7786         space.
7787
7788 2004-04-05  Benjamin Otte  <otte@gnome.org>
7789
7790         * configure.ac:
7791         * gst/Makefile.am:
7792         * gst/gst_private.h:
7793         * gst/gstinfo.c: (__gst_in_valgrind), (_gst_debug_init):
7794           add support for detecting if GStreamer runs inside valgrind.
7795           requires valgrind (d'oh) and --enable-debug for correct cdetection.
7796           print a big message in valgrind that GStreamer has detected it's
7797           running inside and might now use different code.
7798         * gst/gstmemchunk.c: (populate), (free_area),
7799         (gst_mem_chunk_destroy), (gst_mem_chunk_alloc),
7800         (gst_mem_chunk_free):
7801           flag memchunks for valgrind, so it can detect leaking of chunks.
7802           This allows detecting leaks of GstBuffer and GstEvent correctly
7803           inside valgrind.
7804
7805 2004-04-05  David Schleef  <ds@schleef.org>
7806
7807         * gst/gsttrace.h:  Fix #ifdef nesting (bug #139109) Patch from
7808           jensgr@gmx.net (Jens Granseuer)
7809
7810 2004-04-05  David Schleef  <ds@schleef.org>
7811
7812         * gst/gstbuffer.c: (_gst_buffer_sub_free),
7813         (gst_buffer_default_free), (gst_buffer_default_copy),
7814         (gst_buffer_alloc_chunk), (gst_buffer_free_chunk),
7815         (gst_buffer_new), (gst_buffer_create_sub):  Allocate GstBuffer
7816         structures in one place.
7817
7818 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7819
7820         * gst/gstinfo.h: adding Ronald's timestamp debugging defines
7821           (GST_TIME_FORMAT, GST_TIME_ARGS)
7822
7823 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7824
7825         * testsuite/elements/Makefile.am:
7826           disable test until it stops breaking make distcheck
7827
7828 2004-04-05  Johan Dahlin  <johan@gnome.org>
7829
7830         * po/sv.po: Updated translation
7831
7832 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7833
7834         * gst/gstplugin.c: (gst_plugin_load_file):
7835           fix segfault for when original plugin was loaded statically
7836
7837 2004-04-05  Benjamin Otte  <otte@gnome.org>
7838
7839         * testsuite/debug/category.c: (main):
7840         * testsuite/debug/commandline.c: (main):
7841         * testsuite/debug/output.c: (main):
7842           fix tests to work again with debugging enabled
7843
7844 2004-04-05  Benjamin Otte  <otte@gnome.org>
7845
7846         * gst/schedulers/gstbasicscheduler.c:
7847         (gst_basic_scheduler_pad_link):
7848           fix to work with recent scheduling changes
7849
7850 2004-04-05  Benjamin Otte  <otte@gnome.org>
7851
7852         * gst/schedulers/entryscheduler.c: (some functions, dunno which,
7853         prepareChangeLog doesn't work when cvs indents):
7854           don't throw an error when no element can be scheduled, there's too
7855           many weird reasons why it doesn't work. Return STOPPED instead.
7856           decoupled elemts' schedulability doesn't depend on bufpens.
7857
7858 2004-04-04  Benjamin Otte  <otte@gnome.org>
7859
7860         * gst/schedulers/gstbasicscheduler.c:
7861         (gst_basic_scheduler_pad_select):
7862           fix uninitialized variable warnings
7863
7864 2004-04-04  Benjamin Otte  <otte@gnome.org>
7865
7866         * gst/gstpad.c: (gst_pad_collect_valist):
7867           fix uninitialized variable warning
7868         * gst/schedulers/entryscheduler.c: (schedule_forward):
7869           fix shadowed variable
7870
7871 2004-04-04  Benjamin Otte  <otte@gnome.org>
7872
7873         * gst/gstpad.c: (gst_pad_collect_array), (gst_pad_collectv),
7874         (gst_pad_collect), (gst_pad_collect_valist), (gst_pad_selectv),
7875         (gst_pad_select):
7876         * gst/gstpad.h:
7877         * gst/gstscheduler.c: (gst_scheduler_pad_select),
7878         (gst_scheduler_lock_element), (gst_scheduler_unlock_element):
7879         * gst/gstscheduler.h:
7880           implement gst_pad_collect as replacement for gst_pad_select.
7881           deprecate gst_pad_select and gst_scheduler_(un)lock_element
7882           add new flag GST_SCHEDULER_FLAG_NEW_API for API that implements the
7883           new pad_select, lock and unlock calls.
7884         * gst/cothreads.c: (cothread_destroy), (cothread_switch):
7885         * gst/cothreads.h:
7886         * gst/schedulers/cothreads_compat.h:
7887         * gst/schedulers/gthread-cothreads.h:
7888           remove unused cothread_lock and cothread_unlock calls
7889         * gst/schedulers/entryscheduler.c:
7890         (gst_entry_scheduler_class_init), (gst_entry_scheduler_init),
7891         (_can_schedule_loop), (gst_entry_scheduler_get_handler),
7892         (gst_entry_scheduler_pad_select):
7893           update to new API
7894         * gst/schedulers/gstbasicscheduler.c:
7895         (gst_basic_scheduler_class_init), (gst_basic_scheduler_init),
7896         (gst_basic_scheduler_pad_select):
7897           remove useless lock and unlock calls, update pad_select to new API
7898           (untested)
7899         * gst/schedulers/gstoptimalscheduler.c:
7900         (gst_opt_scheduler_class_init):
7901           remove useless select, lock and unlock function calls
7902         * gst/elements/gstaggregator.c: (gst_aggregator_loop):
7903           use gst_pad_collect instead of gst_pad_select
7904
7905 2004-04-04  Benjamin Otte  <otte@gnome.org>
7906
7907         * gst/schedulers/entryscheduler.c: (_can_schedule_get),
7908         (can_schedule_pad), (can_schedule), (schedule), (schedule_forward),
7909         (schedule_next_element), (print_entry):
7910           add can_schedule_pad to handle element states.
7911           add schedule_forward to select the correct entry to schedule next
7912
7913 2004-04-03  Benjamin Otte  <otte@gnome.org>
7914
7915         * gst/schedulers/entryscheduler.c: 
7916           remove unused variable, fix error inside Rb, fix compile warning in
7917           unreachable code
7918
7919 2004-04-03  Benjamin Otte  <otte@gnome.org>
7920
7921         * gst/schedulers/entryscheduler.c:
7922           completely revamp the inner workings, so it's a lot easier to
7923           understand and extend
7924
7925 2004-04-03  Andy Wingo  <wingo@pobox.com>
7926
7927         * gst/schedulers/gstoptimalscheduler.c (GstOptSchedulerGroupLink):
7928         Rename ->group1 and ->group2 to ->src and ->sink, respectively.
7929         This allows better introspection of pipeline topology.
7930         (add_to_chain): Don't do trickery to put loop elements first;
7931         rather, queue a chain sort by marking the chain as dirty.
7932         (remove_from_chain): Mark the chain dirty.
7933         (sort_chain): New function. Sorts the group list so that terminal
7934         sinks are first. This means elements on the sink side will be
7935         preferentially sscheduled before elements on the src side of the
7936         pipeline.
7937         (chain_recursively_migrate_group): Use OTHER_GROUP_LINK.
7938         (schedule_chain): If the chain is marked DIRTY, call sort_chain.
7939         (gst_opt_scheduler_pad_link, gst_opt_scheduler_pad_unlink)
7940         (group_inc_link): Change argument and variable names to match the
7941         new link structure member names (src and sink).
7942         (group_dec_link): Add some description
7943
7944 2004-04-03  Benjamin Otte  <otte@gnome.org>
7945
7946         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
7947         * gst/gstinfo.h:
7948         * testsuite/debug/category.c: (main):
7949         * testsuite/debug/commandline.c: (main):
7950         * testsuite/debug/output.c: (main):
7951         * testsuite/debug/printf_extension.c: (main):
7952           fix to successfully build and test with --disable-gst-debug
7953           configure switch (fixes #138705)
7954
7955 2004-04-03  Benjamin Otte  <otte@gnome.org>
7956
7957         * docs/pwg/building-boiler.xml:
7958           add cvs login line and s/anonymous/anoncvs/
7959
7960 2004-04-03  Tim-Phillip Müller  <t.i.m@zen.co.uk>
7961
7962         reviewed by Benjamin Otte  <otte@gnome.org>
7963
7964         * gst/gststructure.c: (gst_structure_free):
7965           memleak fix: free fields array (partial fix for #134839)
7966
7967 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7968
7969         * docs/random/ds/0.9-suggested-changes:
7970           Add a note to change handoff use in fakesrc to be usable in
7971           a more generic way (fakesrc should be renamed to appsrc or so).
7972         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
7973           Change signal type to scope, so we can fill the buffer in the
7974           handoff handler (that's the whole use of this signal...).
7975
7976 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7977
7978         * docs/pwg/other-ntoone.xml:
7979           Document muxers and n-to-1 elements.
7980
7981 2004-04-01  Martin Soto  <martinsoto@users.sourceforge.net>
7982
7983         * gst/registries/gstxmlregistry.c
7984         (gst_xml_registry_rebuild_recurse): Fix the algorithm to
7985         determine if a file is a G_MODULE. The old one discards paths
7986         containing "so" somewhere in the middle. My home directory is
7987         called "soto". Go figure...
7988
7989 2004-03-31  David Schleef  <ds@schleef.org>
7990
7991         * gst/gstbuffer.c: (gst_buffer_join):  Add function gst_buffer_join()
7992         to eventually deprecate gst_buffer_merge().  (bug: #136408)
7993         * gst/gstbuffer.h:
7994
7995 2004-03-31  David Schleef  <ds@schleef.org>
7996
7997         * gst/gstvalue.c: (gst_value_union_int_int_range),
7998         (gst_value_union_int_range_int_range), (gst_value_can_union),
7999         (gst_value_union), (_gst_value_initialize):  Add some union
8000         implementations.  We didn't have any previously.
8001         * testsuite/caps/Makefile.am:
8002         * testsuite/caps/audioscale.c: (gst_audioscale_expand_value),
8003         (gst_audioscale_getcaps), (test_caps), (main): A little test
8004         that is the same as the caps manipulation in audioscale.
8005
8006 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8007
8008         * docs/faq/general.xml:
8009           add entry about "does gst support format X?"
8010
8011 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8012
8013         * gst/gstthread.c:
8014           fix docs
8015         * gst/gstutils.h:
8016           fix GST_BOILERPLATE_FULL to not throw casting errors on C++
8017
8018 2004-03-30  Benjamin Otte  <otte@gnome.org>
8019
8020         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
8021           set the offset of the buffer to the requested offset
8022         * gst/elements/gsttypefind.c: (stop_typefinding):
8023           revert patch 1.18 (which I unfortunately don't know the reason for).
8024           This is needed to allow downstream elements to seek. Otherwise
8025           typefind might overwrite a previous seek by downstream elements.
8026           This lead to errors with id3tag and typefind on some mp3s.
8027         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8028         (gst_entry_scheduler_iterate):
8029           be more verbose when debugging
8030
8031 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8032
8033         * gst/gstcaps.c: (gst_caps_from_string_inplace):
8034           make sure we don't get NULL strings
8035
8036 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8037
8038         * gst/gstcaps.c:
8039         * gst/gstelement.c:
8040         * gst/gstelementfactory.c: (gst_element_factory_get_type):
8041         * gst/gstindex.c: (gst_index_resolver_get_type),
8042         (gst_index_get_type), (gst_index_factory_get_type):
8043         * gst/gstinfo.c:
8044         * gst/gstpad.c:
8045         * gst/gstplugin.c:
8046         * gst/gsturi.c: (gst_uri_handler_get_type):
8047         * gst/gstvalue.c:
8048           first batch of documentation fixes
8049
8050 2004-03-29  David Schleef  <ds@schleef.org>
8051
8052         * docs/gst/Makefile.am:  Disable a bunch of headers from being scanned
8053         * docs/gst/gstreamer-docs.sgml:  More hacking
8054         * docs/gst/gstreamer-sections.txt:
8055         * docs/gst/tmpl/cothreads_compat.sgml:
8056         * docs/gst/tmpl/gstcaps.sgml:
8057         * docs/gst/tmpl/gstclock.sgml:
8058         * docs/gst/tmpl/gstelement.sgml:
8059         * docs/gst/tmpl/gstevent.sgml:
8060         * docs/gst/tmpl/gstpad.sgml:
8061         * docs/gst/tmpl/gstutils.sgml:
8062         * docs/gst/tmpl/gstxml.sgml:
8063         * docs/gst/tmpl/gthread-cothreads.sgml:
8064         * docs/random/ds/0.9-suggested-changes:
8065         * gst/elements/gstfakesink.h: doc fixes
8066         * gst/elements/gstfakesrc.h: doc fixes
8067         * gst/gstcaps.c: doc fixes
8068         * gst/gstcaps.h: doc fixes
8069         * gst/gstelement.c: doc fixes
8070         * gst/gstelement.h: doc fixes
8071         * gst/gstindex.c: doc fixes
8072         * gst/gstinfo.c: doc fixes
8073         * gst/gstpad.c: doc fixes
8074         * gst/gstpad.h: doc fixes
8075         * gst/gstplugin.c: doc fixes
8076         * gst/gsttypefind.h: doc fixes
8077         * gst/gsturi.c: doc fixes
8078         * gst/gstvalue.c: doc fixes
8079
8080 2004-03-29  Colin Walters  <walters@redhat.com>
8081
8082         * gst/registries/gstxmlregistry.c (get_time)
8083         (plugin_times_older_than_recurse):
8084         Use the result of stat to determine whether a path is a file,
8085         so we don't attempt to opendir() files.
8086
8087 2004-03-29  Benjamin Otte  <otte@gnome.org>
8088
8089         * gst/gstpad.c: (gst_pad_set_explicit_caps):
8090           print caps in debugging output when setting caps failed
8091         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8092         (schedule_next_element), (get_buffer), (run_chainhandler),
8093         (element_may_start), (gst_entry_scheduler_chain_handler),
8094         (gst_entry_scheduler_get_handler),
8095         (gst_entry_scheduler_state_transition),
8096         (gst_entry_scheduler_pad_link):
8097           make this scheduler a testcase for mandatory
8098           discont-before-first-buffer which is needed if we want to allow apps
8099           to release the sound device.
8100           add SCHED_ASSERT macro to print scheduler state before an assertion
8101           triggers.
8102
8103 2004-03-29  Benjamin Otte  <otte@gnome.org>
8104
8105         * COPYING:
8106           replace by LGPL (former COPYING.LIB). The core is completely
8107           licensed LGPL.
8108         * COPYING.LIB:
8109           remove
8110
8111 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8112
8113         * po/af.po:
8114         * po/sv.po:
8115           updated Afrikaans and Swedish
8116
8117 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8118
8119         * po/LINGUAS:
8120         * po/az.po:
8121           adding Azerbaijani (Mətin Əmirov)
8122
8123 2004-03-28  Martin Soto  <martinsoto@users.sourceforge.net>
8124
8125         * gst/gstelement.h: 
8126         * gst/gstelement.c (gst_element_set_time_delay): New function for
8127         setting element time taking into account a hardware buffering
8128         delay.
8129         (gst_element_set_time): Now just an invocation of
8130         gst_element_set_time_delay.
8131         * gst/gstclock.h: 
8132         * gst/gstclock.c (gst_clock_get_event_time_delay): New function
8133         allowing to set event times in the future.
8134         (gst_clock_get_event_time): Now just an invocation of
8135         gst_clock_get_event_time_delay.
8136
8137 2004-03-28  Benjamin Otte  <otte@gnome.org>
8138
8139         * gst/gstbin.c: (gst_bin_set_element_sched),
8140         (gst_bin_unset_element_sched):
8141           don't add decoupled elements to schedulers - otherwise it's
8142           impossible to control if a link to a decoupled element was already
8143           removed from a scheduler or not.
8144         * gst/schedulers/cothreads_compat.h:
8145         * gst/schedulers/gthread-cothreads.h:
8146           add COTHREADS_TYPE macro. Make do_cothread_set_func a macro so there
8147           is no "unused" warning.
8148         * gst/schedulers/Makefile.am:
8149         * gst/schedulers/entryscheduler.c:
8150           add new scheduler, based on ideas from talking to David and Martin.
8151           It's supposed to be small and correct. Currently it's also slow (but
8152           it's not noticable)
8153         * examples/retag/retag.c: (main):
8154         * testsuite/bytestream/test1.c: (main):
8155           fix missing NULLs at end of variadic functions
8156         * testsuite/elements/.cvsignore:
8157           update
8158
8159 2004-03-28  Jan Schmidt  <thaytan@mad.scientist.com>
8160
8161         * gst/gstevent.h:
8162         Added GST_EVENT_ANY for GstEvents that pass a GstStructure
8163
8164 2004-03-25  David Schleef  <ds@schleef.org>
8165
8166         * docs/gst/gstreamer-sections.txt:  More doc hacking.
8167         * docs/gst/tmpl/gstaggregator.sgml:
8168         * docs/gst/tmpl/gstautoplugfactory.sgml:
8169         * docs/gst/tmpl/gstbin.sgml:
8170         * docs/gst/tmpl/gstbuffer.sgml:
8171         * docs/gst/tmpl/gstbufferstore.sgml:
8172         * docs/gst/tmpl/gstfakesink.sgml:
8173         * docs/gst/tmpl/gstfakesrc.sgml:
8174         * docs/gst/tmpl/gstmd5sink.sgml:
8175         * docs/gst/tmpl/gstreamer-unused.sgml:
8176         * docs/gst/tmpl/gstsearchfuncs.sgml:
8177         * docs/gst/tmpl/gstshaper.sgml:
8178         * docs/gst/tmpl/gstspider.sgml:
8179         * docs/gst/tmpl/gsttee.sgml:
8180         * docs/gst/tmpl/gstutils.sgml:
8181         * docs/gst/tmpl/gstvalue.sgml:
8182         * docs/gst/tmpl/gstxml.sgml:
8183         * gst/Makefile.am:  Remove gstthreaddummy.c.  It never worked,
8184         and we don't support it.
8185         * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
8186         (gst_use_threads), (gst_has_threads): same
8187         * gst/gstthreaddummy.c: same
8188         * gst/autoplug/gstspider.c: Make gst_spider_details static.
8189         * gst/autoplug/gstspider.h: same
8190         * gst/elements/gstaggregator.h: Remove bogus function from header
8191         * gst/elements/gstfakesink.h: same
8192         * gst/elements/gstfakesrc.h: same
8193         * gst/elements/gstmd5sink.h: same
8194         * gst/elements/gstshaper.h: same
8195         * gst/elements/gsttee.h: same
8196         * gst/gstbin.c: doc fixes
8197         * gst/gstbin.h: Remove unused definition.
8198         * gst/gstbuffer.c: doc fixes
8199         * gst/gstcaps.c: (gst_caps_is_always_compatible): doc fixes
8200         * gst/gstfilter.c: doc fixes
8201         * gst/gsttag.c: doc fixes
8202         * gst/gstvalue.c: doc fixes
8203
8204 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8205
8206         * docs/pwg/advanced-types.xml:
8207           Document typefinding.
8208         * docs/pwg/other-oneton.xml:
8209           Document one-to-n elements, demuxers and parsers.
8210
8211 2004-03-25  Tim-Philipp Müller <t.i.m@zen.co.uk>
8212
8213         reviewed by: David Schleef  <ds@schleef.org>
8214
8215         * configure.ac: Check bison version (bug #127838)
8216
8217 2004-03-25  David Schleef  <ds@schleef.org>
8218
8219         * docs/gst/gstreamer-docs.sgml: More fine tuning.
8220         * docs/gst/gstreamer-sections.txt:
8221         * docs/gst/tmpl/gstautoplug.sgml:
8222         * docs/gst/tmpl/gststaticautoplug.sgml:
8223         * docs/gst/tmpl/gststaticautoplugrender.sgml:
8224         * docs/gst/tmpl/gstutils.sgml:
8225         * docs/gst/tmpl/gstxml.sgml:
8226
8227 2004-03-24  David Schleef  <ds@schleef.org>
8228
8229         * docs/gst/gstreamer-docs.sgml:  I got tired of the reference
8230         manual being such complete crap, that I decided to do major
8231         hacking of it.  This checkin replaces any fine tuning that
8232         may have been done previously, with the benefit of actually
8233         being complete for much of the API that was changed since
8234         0.6.  Further fine tuning will occur shortly.  (bug #134721)
8235         * docs/gst/gstreamer-sections.txt:
8236         * docs/gst/tmpl/GstBin.sgml:
8237         * docs/gst/tmpl/GstBuffer.sgml:
8238         * docs/gst/tmpl/GstCaps.sgml:
8239         * docs/gst/tmpl/GstClock.sgml:
8240         * docs/gst/tmpl/GstCompat.sgml:
8241         * docs/gst/tmpl/GstData.sgml:
8242         * docs/gst/tmpl/GstElement.sgml:
8243         * docs/gst/tmpl/GstEvent.sgml:
8244         * docs/gst/tmpl/GstIndex.sgml:
8245         * docs/gst/tmpl/GstStructure.sgml:
8246         * docs/gst/tmpl/GstTag.sgml:
8247         * docs/gst/tmpl/cothreads.sgml:
8248         * docs/gst/tmpl/cothreads_compat.sgml:
8249         * docs/gst/tmpl/gettext.sgml:
8250         * docs/gst/tmpl/grammar.tab.sgml:
8251         * docs/gst/tmpl/gst-i18n-app.sgml:
8252         * docs/gst/tmpl/gst-i18n-lib.sgml:
8253         * docs/gst/tmpl/gst.sgml:
8254         * docs/gst/tmpl/gst_private.sgml:
8255         * docs/gst/tmpl/gstaggregator.sgml:
8256         * docs/gst/tmpl/gstarch.sgml:
8257         * docs/gst/tmpl/gstatomic.sgml:
8258         * docs/gst/tmpl/gstatomic_impl.sgml:
8259         * docs/gst/tmpl/gstbin.sgml:
8260         * docs/gst/tmpl/gstbuffer.sgml:
8261         * docs/gst/tmpl/gstbufferstore.sgml:
8262         * docs/gst/tmpl/gstcaps.sgml:
8263         * docs/gst/tmpl/gstclock.sgml:
8264         * docs/gst/tmpl/gstcompat.sgml:
8265         * docs/gst/tmpl/gstconfig.sgml:
8266         * docs/gst/tmpl/gstcpu.sgml:
8267         * docs/gst/tmpl/gstdata.sgml:
8268         * docs/gst/tmpl/gstdata_private.sgml:
8269         * docs/gst/tmpl/gstelement.sgml:
8270         * docs/gst/tmpl/gstenumtypes.sgml:
8271         * docs/gst/tmpl/gsterror.sgml:
8272         * docs/gst/tmpl/gstevent.sgml:
8273         * docs/gst/tmpl/gstfakesink.sgml:
8274         * docs/gst/tmpl/gstfakesrc.sgml:
8275         * docs/gst/tmpl/gstfilesink.sgml:
8276         * docs/gst/tmpl/gstfilter.sgml:
8277         * docs/gst/tmpl/gstindex.sgml:
8278         * docs/gst/tmpl/gstinfo.sgml:
8279         * docs/gst/tmpl/gstinterface.sgml:
8280         * docs/gst/tmpl/gstlog.sgml:
8281         * docs/gst/tmpl/gstmacros.sgml:
8282         * docs/gst/tmpl/gstmarshal.sgml:
8283         * docs/gst/tmpl/gstmd5sink.sgml:
8284         * docs/gst/tmpl/gstmultifilesrc.sgml:
8285         * docs/gst/tmpl/gstobject.sgml:
8286         * docs/gst/tmpl/gstpad.sgml:
8287         * docs/gst/tmpl/gstparse.sgml:
8288         * docs/gst/tmpl/gstpipeline.sgml:
8289         * docs/gst/tmpl/gstplugin.sgml:
8290         * docs/gst/tmpl/gstpluginfeature.sgml:
8291         * docs/gst/tmpl/gstqueue.sgml:
8292         * docs/gst/tmpl/gstreamer-unused.sgml:
8293         * docs/gst/tmpl/gstregistry.sgml:
8294         * docs/gst/tmpl/gstregistrypool.sgml:
8295         * docs/gst/tmpl/gstscheduler.sgml:
8296         * docs/gst/tmpl/gstsearchfuncs.sgml:
8297         * docs/gst/tmpl/gstshaper.sgml:
8298         * docs/gst/tmpl/gstspider.sgml:
8299         * docs/gst/tmpl/gstspideridentity.sgml:
8300         * docs/gst/tmpl/gststructure.sgml:
8301         * docs/gst/tmpl/gstsystemclock.sgml:
8302         * docs/gst/tmpl/gsttag.sgml:
8303         * docs/gst/tmpl/gsttaginterface.sgml:
8304         * docs/gst/tmpl/gsttee.sgml:
8305         * docs/gst/tmpl/gstthread.sgml:
8306         * docs/gst/tmpl/gsttrace.sgml:
8307         * docs/gst/tmpl/gsttrashstack.sgml:
8308         * docs/gst/tmpl/gsttypefind.sgml:
8309         * docs/gst/tmpl/gsttypes.sgml:
8310         * docs/gst/tmpl/gsturi.sgml:
8311         * docs/gst/tmpl/gsturitype.sgml:
8312         * docs/gst/tmpl/gstutils.sgml:
8313         * docs/gst/tmpl/gstvalue.sgml:
8314         * docs/gst/tmpl/gstversion.sgml:
8315         * docs/gst/tmpl/gstxml.sgml:
8316         * docs/gst/tmpl/gstxmlregistry.sgml:
8317         * docs/gst/tmpl/gthread-cothreads.sgml:
8318         * docs/gst/tmpl/types.sgml:
8319
8320 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8321
8322         * docs/pwg/other-sink.xml:
8323         * docs/pwg/other-source.xml:
8324           Documentation on how to write source and sink elements. Other
8325           stuff in chapter 4 (1-to-n/demuxer, n-to-1/muxer, n-to-n,
8326           manager, autoplugger) are all still pending.
8327
8328 2004-03-25  Benjamin Otte  <otte@gnome.org>
8329
8330         * testsuite/elements/Makefile.am:
8331         * testsuite/elements/gst-compprep-check:
8332           add check to make sure gst-compprep works
8333         * testsuite/elements/gst-inspect-check.in:
8334           improve initialization output
8335         * testsuite/Makefile.am:
8336         * testsuite/gst-inspect-check:
8337           remove old file
8338
8339 2004-03-24  David Schleef  <ds@schleef.org>
8340
8341         * testsuite/elements/Makefile.am:
8342         * testsuite/elements/gst-inspect-check.in: Add gst-inspect-check
8343         to the testsuite.
8344
8345 2004-03-24  Benjamin Otte  <otte@gnome.org>
8346
8347         * libs/gst/control/dparam.c: (gst_dparam_attach),
8348         (gst_dparam_detach):
8349         * libs/gst/control/dparammanager.c: (gst_dpman_init):
8350           fix lvalue casts for real
8351
8352 2004-03-24  Benjamin Otte  <otte@gnome.org>
8353
8354         * gst/schedulers/gstbasicscheduler.c:
8355         (gst_basic_scheduler_src_wrapper):
8356         * gst/schedulers/gstoptimalscheduler.c:
8357         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
8358         (pad_clear_queued), (gst_opt_scheduler_add_element),
8359         (gst_opt_scheduler_remove_element):
8360           fix GStreamer to not have issues with lvalue casts anymore (fixes
8361           #136841)
8362
8363 2004-03-24  Benjamin Otte  <otte@gnome.org>
8364
8365         * gst/gstelement.c:
8366           add documentation about a gobject quirk where the object hasn't the
8367           correct class pointer set on initialization
8368         * gst/schedulers/gstbasicscheduler.c:
8369         (gst_basic_scheduler_src_wrapper):
8370           make sure to not run into an infinite loop
8371
8372 2004-03-22  Benjamin Otte  <otte@gnome.org>
8373
8374         * gst/gstutils.c: (gst_util_dump_mem):
8375         * gst/gstutils.h:
8376           first argument of gst_util_dump_mem should be const
8377
8378 2004-03-22  Johan Dahlin  <johan@gnome.org>
8379
8380         * gst/gstvalue.h: Clean up a little bit.
8381
8382 2004-03-21  Tim-Philipp Müller <t.i.m@zen.co.uk>
8383
8384         reviewed by Benjamin Otte  <otte@gnome.org>
8385
8386         * gst/autoplug/gstspider.c: (gst_spider_dispose):
8387         * gst/elements/gstaggregator.c: (gst_aggregator_finalize),
8388         (gst_aggregator_class_init), (gst_aggregator_init):
8389         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
8390         (gst_filesrc_dispose), (gst_filesrc_set_location):
8391         * gst/elements/gstidentity.c: (gst_identity_finalize),
8392         (gst_identity_class_init), (gst_identity_chain):
8393         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
8394         * gst/elements/gststatistics.c: (gst_statistics_finalize),
8395         (gst_statistics_class_init):
8396         * gst/elements/gsttee.c: (gst_tee_finalize), (gst_tee_class_init),
8397         (gst_tee_get_property):
8398           clean up used memory in this elements correctly on teardown (closes
8399           #137279)
8400
8401 2004-03-20  Colin Walters  <walters@redhat.com>
8402
8403         * gst/registries/gstxmlregistry.c:
8404         (gst_xml_registry_open_func, gst_xml_registry_close_func): Make
8405         registry saving atomic.
8406
8407 2004-03-20  Colin Walters  <walters@redhat.com>
8408
8409         * gst/registries/gstxmlregistry.c (gst_xml_registry_get_perms_func):
8410         Just use
8411         access() instead of actually creating and deleting files.
8412
8413 2004-03-18  David Schleef  <ds@schleef.org>
8414
8415         * configure.ac:  Remove HAVE_ATOMIC_H test, since it's unused.
8416         (bug #137625)
8417
8418 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8419
8420         * po/sv.po: updated translation (Christian Rose)
8421
8422 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8423
8424         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
8425         (gst_filesink_get_query_types), (_do_init),
8426         (gst_filesink_handle_event), (gst_filesink_uri_get_protocols):
8427           return FALSE silently
8428         * po/af.po: updated translation (Petri Jooste)
8429
8430 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8431
8432         * Makefile.am:
8433         * configure.ac:
8434           dist common properly
8435         * po/af.po:
8436         * po/fr.po:
8437         * po/nl.po:
8438         * po/sr.po:
8439         * po/sv.po:
8440           refreshing translations
8441
8442 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8443
8444         * po/LINGUAS:
8445         * po/sv.po:
8446         * po/af.po:
8447           adding Swedish (Christian Rose) and Afrikaans (Petri Jooste)
8448
8449 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8450
8451         * Makefile.am: use common/release.mak
8452
8453 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8454
8455         * docs/faq/gst-uninstalled:
8456           adding gst-monkeysaudio to the list of possible plugin dirs
8457
8458 2004-03-16  David Schleef  <ds@schleef.org>
8459
8460         * gst/gst.c: (gst_get_popt_options), (gst_init_get_popt_table),
8461         (gst_init_check_with_popt_table):  Fix some gettext strings to
8462         make them easier to translate.  Required making the strings
8463         non-const.
8464
8465 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8466
8467         * configure.ac: bump nano to 1
8468
8469 === release 0.8.0 ===
8470
8471 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8472
8473         * configure.ac: release 0.8.0, "Executive Slacks"
8474
8475 2004-03-16  Johan Dahlin  <johan@gnome.org>
8476
8477         * gst/schedulers/gstoptimalscheduler.c
8478         (gst_opt_scheduler_pad_unlink): Remove double ;,
8479         spotted by Scott Wheeler
8480
8481 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8482
8483         * configure.ac: bump libtool version
8484
8485 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8486
8487         * gst/gstcaps.h:
8488         * gst/gststructure.h:
8489           add reserved padding
8490
8491 2004-03-15  Benjamin Otte  <otte@gnome.org>
8492
8493         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
8494           set the first parameter for select call correctly.
8495           (fixes #137230)
8496
8497 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8498
8499         * *.c,*.h: don't mix tabs and spaces
8500
8501 2004-03-15  Johan Dahlin  <johan@gnome.org>
8502
8503         * gst/schedulers/gstoptimalscheduler.c
8504         (gst_opt_scheduler_pad_unlink): Fix bug that causes totem to
8505         crash on MPEG playback. My boolean arithmetic is a bit rusty.
8506
8507         * tools/Makefile.am (EXTRA_DIST): Add gst-indent
8508         
8509 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8510
8511         * testsuite/Rules:
8512           fix gst-register rules
8513
8514 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8515
8516         * testsuite/Rules:
8517           use versioned gst-register
8518
8519 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8520
8521         * docs/libs/gstreamer-libs-sections.txt:
8522           remove </SUBSECTION>
8523         * gst/gstplugin.c:
8524         * gst/gstregistry.c: (gst_registry_add_plugin):
8525         * gst/registries/gstxmlregistry.c: (gst_xml_registry_get_type),
8526         (gst_xml_registry_open_func), (gst_xml_registry_close_func):
8527           add debugging and fix some comment blocks
8528
8529 2004-03-15  Johan Dahlin  <johan@gnome.org>
8530
8531         * *.h: Revert indent changes.
8532         
8533 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8534
8535         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load_plugin):
8536           g_error_free the g_error
8537         * tools/gst-feedback-m.m:
8538           check for other versions of gstreamer
8539         * tools/gst-indent:
8540           use sh, not bash
8541
8542 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8543
8544         * tools/gst-register.c: do not spill paths when registries are not
8545           writable, until we fix the "user running gst-register" case.
8546
8547 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8548
8549         * *.c, *.h: commit of gst-indent run on core
8550
8551 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8552
8553         * tools/gst-indent:
8554         * tools/Makefile.am:
8555           add our indentation style as a script
8556
8557 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8558
8559         * po/sr.po:
8560         * po/LINGUAS:
8561           added Serbian translation
8562
8563 2004-03-13  Benjamin Otte  <otte@gnome.org>
8564
8565         * gst/gstelement.c:
8566           add documentation note about gst_element_found_tags_for_pad not
8567           being usable in getfunctions. (see #137042)
8568
8569 2004-03-12  David Schleef  <ds@schleef.org>
8570
8571         * gst/gstcaps.h: jdahlin, what are you smoking?  We can't just
8572         change API right now!  Readd gst_caps_is_simple() macro.
8573         * gst/gstelement.c: (gst_element_base_class_finalize): Fix
8574         uninitialized variable.  I'd bet this caused crashes.
8575         * gst/gstinfo.c: (gst_debug_print_object):  Fix 64-bit cleanliness.
8576
8577 2004-03-12  Johan Dahlin  <johan@gnome.org>
8578
8579         * gst/gstcaps.h (GST_CAPS_IS_SIMPLE): Capitalize macro
8580         * gst/gstcaps.h: Clean up
8581
8582         * gst/gst.c (init_post): call gst_caps_get_type() instead of
8583         _gst_caps_initalize()
8584
8585         * gst/gstcaps.c: Style fixes, stay closer to glib and friends
8586         (_gst_caps_initialize): Remove, in favor for gst_caps_get_type()
8587
8588         * gst/gststructure.c (gst_structure_get_type): Ditto
8589
8590         * gst/gststructure.h: Ditto
8591         
8592 2004-03-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8593
8594         * gst/gstqueue.c: (gst_queue_init):
8595           Reset default max. values in queues. Reason is simply to avoid
8596           braindead use. If you want wider values, use the properties. The
8597           default is supposed to always work. Wider values would make this
8598           beast a memory hog by default (250 full-PAL RGB32 video frames?
8599           That's 440 MB! No thank you).
8600
8601 2004-03-10  David Schleef  <ds@schleef.org>
8602
8603         * tools/gst-run.c: (main):  Fix crash when no relevant tools
8604         were found.  (bug #136793)
8605
8606 2004-03-10  Johan Dahlin  <johan@gnome.org>
8607
8608         * gst/schedulers/gstoptimalscheduler.c
8609         (gst_opt_scheduler_pad_unlink): Implement unlink for elements with
8610         links to elements within the same group, so we can finally remove
8611         that annoying warning. Refactor the code a little bit
8612         (group_dec_links_for_element): Split out
8613
8614 2004-03-09  David Schleef  <ds@schleef.org>
8615
8616         * docs/manual/dparams-app.xml:  Fix to handle double dparams.
8617         (bug #134863)
8618
8619 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8620
8621         * configure.ac: first bug fix due to major/minor bump
8622
8623 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8624
8625         * configure.ac: bump nano to 1
8626
8627 === release 0.7.6 ===
8628
8629 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8630
8631         * NEWS:
8632         * RELEASE:
8633         * configure.ac:
8634           releasing 0.7.6, "Almost"
8635         * po/fr.po:
8636         * po/nl.po:
8637         * tools/Makefile.am:
8638         * tools/gst-feedback-m.m:
8639           unversioned source
8640
8641 2004-03-09  Johan Dahlin  <johan@gnome.org>
8642
8643         Reviewed by: Thomas Vander Stichele
8644
8645         * gst/gstelement.c (gst_element_class_init): register second
8646         parameter as GST_TYPE_G_ERROR instead of G_TYPE_POINTER, so
8647         language bindings can (de)marshall correctly.
8648
8649         * gst/gsterror.h: Add GST_TYPE_G_ERROR and cleanup a little bit
8650
8651         * gst/gsterror.c (gst_g_error_get_type): New function
8652
8653         * gst/gstmarshal.list: Remove VOID:OBJECT,POINTER,STRING, replace
8654         with VOID:OBJECT,OBJECT,STRING 
8655
8656 2004-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
8657
8658         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
8659         Free a leaked g_timer on early returns.
8660
8661 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8662
8663         * docs/pwg/advanced-types.xml:
8664           Add cinepak description.
8665
8666 2004-03-07  David Schleef  <ds@schleef.org>
8667
8668         * docs/random/mimetypes:  Added cinepak description
8669
8670 2004-03-07  Andy Wingo  <wingo@pobox.com>
8671
8672         * gst/gstbin.c (gst_bin_remove): Debugging fixes.
8673
8674         * gst/schedulers/gstoptimalscheduler.c (destroy_group): Assert
8675         there are no links to other groups when a group is destroyed.
8676         (gst_opt_scheduler_pad_unlink): If the unlink means an element is
8677         removed from a group, make sure the link count to elements linked
8678         to other pads is appropriately decremented. This really fixes
8679         #135672.
8680
8681         The 1.60->1.61 patch has been reapplied in light of this fix.
8682
8683         * gst/gstelement.c (gst_element_dispose): Really protect against
8684         multiple invocations this time.
8685
8686 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8687
8688         * docs/gst/gstreamer-sections.txt:
8689         * docs/gst/tmpl/gsttag.sgml:
8690           remove some deprecated functions, document some existing ones
8691         * gst/gsttag.c: (gst_tag_get_flag):
8692         * gst/gsttag.h:
8693           add accessor function
8694
8695 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8696
8697         * docs/gst/gstreamer-sections.txt:
8698         * docs/gst/tmpl/gsttag.sgml:
8699         * docs/gst/tmpl/gstxml.sgml:
8700         * gst/gsttag.c: (gst_tag_get_flag):
8701         * gst/gsttag.h:
8702
8703 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
8704
8705         * gst/autoplug/gstspider.c: (gst_spider_identity_plug): fixed caps
8706         leak
8707
8708 2004-03-05  David Schleef  <ds@schleef.org>
8709
8710         * REQUIREMENTS: Add bison and flex.
8711         * configure.ac: Fix comment about bison.
8712         * docs/random/ds/0.9-suggested-changes: yer ma
8713         * tools/gst-inspect.c: (print_element_info):  Fix warning.
8714
8715 2004-03-05  Benjamin Otte  <otte@gnome.org>
8716
8717         * gst/gstelement.c: (gst_element_error_full):
8718           revert recent recursive state changing commit - messing with other
8719           elements' states is evil and should be done by apps only.
8720
8721 2004-03-05  Benjamin Otte  <otte@gnome.org>
8722
8723         * gst/gstelement.c: (gst_element_get_compatible_pad_template):
8724           check for empty intersection instead of NULL caps
8725         (gst_element_get_compatible_pad_filtered):
8726           remove old workaround that is only a bug nowadays
8727
8728 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8729
8730         * gst/gstelement.c: (gst_element_error_full):
8731           make elements try to recursively change state to PAUSED on all
8732           parents after an error to suppress ensuing warnings
8733         * gst/parse/grammar.y:
8734           make it check if it was able to sync the state, and throw an error
8735           if not, so stuff like
8736           oggdemux ! vorbisdec ! osssink gets caught
8737
8738 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8739
8740         * configure.ac: use ${libdir} for PLUGINS_DIR since on 64bit
8741           it contains lib64; use AS_AC_EXPAND to handle it properly
8742
8743 2004-03-05  David Schleef  <ds@schleef.org>
8744
8745         * gst/gstcpuid_i386.s:  Remove unused code
8746         * libs/gst/getbits/getbits.c: (gst_getbits_init),
8747         (gst_getbits_newbuf): Remove MMX code
8748         * libs/gst/getbits/getbits.h: Remove MMX code
8749
8750 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
8751
8752         * debian/.cvsignore:
8753         * debian/README.Debian:
8754         * debian/changelog:
8755         * debian/control:
8756         * debian/control.in:
8757         * debian/copyright:
8758         * debian/gstreamer-core-libs-dev.files:
8759         * debian/gstreamer-core-libs.files:
8760         * debian/gstreamer-core.files:
8761         * debian/gstreamer-core.postinst:
8762         * debian/gstreamer-core.postrm:
8763         * debian/gstreamer-doc.files:
8764         * debian/gstreamer-doc.links:
8765         * debian/gstreamer-doc.lintian:
8766         * debian/gstreamer-runtime.files:
8767         * debian/gstreamer-runtime.manpages:
8768         * debian/gstreamer-runtime.postinst:
8769         * debian/gstreamer-runtime.postrm:
8770         * debian/gstreamer-tools.files:
8771         * debian/gstreamer-tools.manpages:
8772         * debian/libgstreamer-dev.files:
8773         * debian/libgstreamer0.4.1.files:
8774         * debian/libgstreamerVERSION.files:
8775         * debian/rules:
8776         Debian package info not maintained here.
8777
8778 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
8779
8780         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
8781         * gst/gstbin.c: (gst_bin_class_init):
8782         * gst/gstelement.c: (gst_element_class_init):
8783         * gst/gstindex.c: (gst_index_class_init):
8784         * gst/gstobject.c: (gst_object_class_init),
8785         (gst_signal_object_class_init):
8786         * gst/gstpad.c: (gst_pad_template_class_init):
8787         * gst/gstregistry.c: (gst_registry_class_init):
8788         * gst/gsturi.c: (gst_uri_handler_base_init):
8789         * gst/gstxml.c: (gst_xml_class_init):
8790         * libs/gst/control/dparam.c: (gst_dparam_class_init):
8791         * libs/gst/control/dparammanager.c: (gst_dpman_class_init):
8792           make all signal names use dashes instead of underscore
8793
8794 2004-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
8795
8796         * configure.ac: AC_SUBST GLIB_ONLY CFLAGS and LIBS
8797
8798 2004-03-03  Benjamin Otte  <otte@gnome.org>
8799
8800         * gst/schedulers/gstoptimalscheduler.c:
8801           revert last commit by Andy Wingo. It causes segfaults on unreffing
8802           in Rhythmbox. (see bug #135672)
8803
8804 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8805
8806         * po/fr.po: fix typo
8807
8808 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8809
8810         * tools/gst-inspect.c: (main): 
8811         * tools/gst-launch.c: (main): add calls to bind_textdomain_codeset
8812
8813 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8814
8815         * configure.ac:
8816           get GLIB_ONLY and POPT flags for the nonversioned binaries
8817         * tools/Makefile.am:
8818           use them
8819
8820 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8821
8822         * gst/gst.c: (init_post):
8823           change so that GST_REGISTRY now is where the global registry gets
8824           saved, since that is where plugins now get attached to first, and
8825           spilled over to the user registry.  Note that in the case of using
8826           GST_REGISTRY env var, we don't want to affect any real registries
8827           beyond the one given by this var, and thus we don't set a user
8828           registry to spill to.  So make sure GST_REGISTRY is writable.
8829
8830 2004-03-01  David Schleef  <ds@schleef.org>
8831
8832         * AUTHORS:  Added some names.  Add yourself if you're missing.
8833
8834 2004-03-01  David Schleef  <ds@schleef.org>
8835
8836         * MAINTAINERS: Add
8837
8838 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
8839
8840         * configure.ac:
8841           remove whitespace
8842         * docs/gst/tmpl/gstbuffer.sgml:
8843         * docs/gst/tmpl/gstdata.sgml:
8844         * docs/gst/tmpl/gstreamer-unused.sgml:
8845         * docs/gst/tmpl/gstxml.sgml:
8846           doc update
8847         * docs/manuals.mak:
8848           add a FIXME
8849         * docs/pwg/intro-preface.xml:
8850         * docs/pwg/pwg.xml:
8851           remove GNOME
8852         * gst/gst.c: (init_post):
8853           try GST_PLUGIN_PATH paths for the _global_registry first
8854         * gst/gstelement.h:
8855           add the error message as well, otherwise (null) debug info doesn't
8856           make much sense
8857         * tools/gst-register.c: (main):
8858           spill paths to next registry if this registry is not writable
8859         * po/fr.po:
8860         * po/nl.po:
8861           translation updates
8862
8863 2004-03-01  Johan Dahlin  <johan@gnome.org>
8864
8865         * gst/gstbuffer.c (_gst_buffer_initialize): 
8866         * gst/gstdata.c (gst_data_get_type): 
8867         * gst/gstevent.c (_gst_event_initialize): Use gst_data_copy,
8868         instead of ref, since some applications that uses GBoxed
8869         routines depends on a function that actually returns a copy.
8870
8871 2004-02-27  Benjamin Otte  <otte@gnome.org>
8872
8873         * gst/gstbuffer.h:
8874           remove gst_buffer_free, use gst_data_unref
8875         * gst/gstdata.c: (gst_data_get_type):
8876           use refcounting in GstData GBoxed registration
8877         * gst/gstdata.h:
8878           remove gst_data_free, use gst_data_unref
8879
8880 2004-02-27  Johan Dahlin  <johan@gnome.org>
8881
8882         * gst/gstdata.c (gst_data_get_type): New function, register
8883         GstData as a GBoxed type.
8884
8885         * gst/gstdata.h (GST_TYPE_DATA): New macro
8886
8887 2004-02-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8888
8889         * Makefile.am:
8890         * gstreamer.spec.in:
8891           put back RELEASE
8892         * gst/Makefile.am:
8893           clean up non-disting of built files
8894         * testsuite/debug/commandline.c:
8895           test fix for option rename
8896
8897 2004-02-26  David Schleef  <ds@schleef.org>
8898
8899         * configure.ac:  We don't really need glib-2.3.  Also remove
8900         some unneeded checks for library functions.
8901         * gst/Makefile.am:  Instead, we need to not dist files created
8902         by glib-genmarshal.
8903
8904 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8905
8906         * configure.ac:
8907           bump glib required version to 2.3.0 for g_value_takes_boxed
8908
8909  2004-02-25  Christian Fredrik Kalager Schaller <uraeus@gnome.org>
8910
8911         * common/m4/gst-docs.m4
8912         change flavour text from enable to disable as enable is our default
8913         closes bug Bug 135304
8914
8915 === release 0.7.5 ===
8916  
8917  2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8918  
8919         * NEWS:
8920           instate NEWS file
8921         * Makefile.am:
8922         * gstreamer.spec.in:
8923         * RELEASE:
8924           put back release
8925         * configure.ac:
8926         * docs/random/release:
8927           more updates
8928
8929 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8930
8931         * gst/gsttag.c: (_gst_tag_initialize):
8932         * po/fr.po:
8933         * po/nl.po:
8934           remove hyphen from codec tags
8935
8936 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8937
8938         * gst/parse/Makefile.am:
8939           fix dependency so that a make from a clean build works the first
8940           time
8941
8942 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8943
8944         * docs/random/release:
8945           update release strategy
8946         * po/fr.po:
8947           auto-update po file
8948         * po/nl.po:
8949           update dutch translation
8950
8951 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
8952
8953         * docs/manual/debugging.xml:
8954         fix manual for new debugging system
8955
8956 2004-02-25  Andy Wingo  <wingo@pobox.com>
8957
8958         * gst/gstpad.c (gst_pad_link_prepare): Re-add
8959         gst_pad_link_prepare. Please email the list with specific reasons
8960         for reverting.
8961
8962 2004-02-24  Andy Wingo  <wingo@pobox.com>
8963
8964         * gst/gstelement.c (gst_element_dispose): Protect against multiple
8965         invocations.
8966
8967         * gst/schedulers/gstoptimalscheduler.c:
8968         I added a mess of prototypes at the top of the file by way of
8969         documentation. Some of the operations on chains and groups were
8970         re-organized.
8971
8972         (create_group): Added a type argument so if the group is enabled,
8973         the setup_group_scheduler knows what to do.
8974         (group_elements): Added a type argument here, too, to be passed on
8975         to create_group.
8976         (group_element_set_enabled): If an unlinked PLAYING element is
8977         added to a bin, we have to create a new group to hold the element,
8978         and this function will be called before the group is added to the
8979         chain. Thus we have a valid case for group->chain==NULL. Instead
8980         of calling chain_group_set_enabled, just set the flag on the group
8981         (the chain's status will be set when the group is added to it).
8982         (gst_opt_scheduler_state_transition, chain_group_set_enabled):
8983         Setup the group scheduler when the group is enabled, not
8984         specifically when an element goes PAUSED->PLAYING. This means
8985         PLAYING elements can be added, linked, and scheduled into a
8986         PLAYING pipeline, as was intended.
8987         (add_to_group): Don't ref the group twice. I don't know when this
8988         double-ref got in here. Removing it has the potential to cause
8989         segfaults if other parts of the scheduler are buggy. If you find
8990         that the scheduler is segfaulting for you, put in an extra ref
8991         here and see if that hacks over the underlying issue. Of course,
8992         then find out what code is unreffing a group it doesn't own...
8993         (create_group): Make the extra refcount floating, and remove it
8994         after adding the element. This means that...
8995         (unref_group): Destroy when the refcount reaches 0, not 1, like
8996         every other refcounted object in the known universe.
8997         (remove_from_group): When a group becomes empty, set it to be not
8998         active, and remove it from its chain. Don't unref it again,
8999         there's no floating reference any more.
9000         (destroy_group): We have to remove the group from the chain in
9001         remove_from_group (rather than here) to break refcounting cycles
9002         (the chain always has a ref on the group). So assert that
9003         group->chain==NULL.
9004         (ref_group_by_count): Removed, it was commented out anyway.
9005         (merge_chains): Use the remove_from_chain and add_to_chain
9006         primitives to do the reparenting, instead of rolling our own
9007         implementation.
9008         (add_to_chain): The first non-disabled group in the chain's group
9009         list will be the entry point for the chain. Because buffers can
9010         accumulate in loop elements' peer bufpens, we preferentially
9011         schedule loop groups before get groups to avoid unnecessary
9012         execution of get-based groups when the bufpens are already full.
9013         (gst_opt_scheduler_schedule_run_queue): Debug fixes.
9014         (get_group_schedule_function): Ditto.
9015         (loop_group_schedule_function): Ditto.
9016         (gst_opt_scheduler_loop_wrapper): Ditto.
9017         (gst_opt_scheduler_iterate): Ditto.
9018
9019         I understand the opt scheduler now, yippee!
9020
9021         * gst/gstpad.c: All throughout, added FIXMEs to look at for 0.9.
9022         (gst_pad_get_name, gst_pad_set_chain_function) 
9023         (gst_pad_set_get_function, gst_pad_set_event_function) 
9024         (gst_pad_set_event_mask_function, gst_pad_get_event_masks) 
9025         (gst_pad_get_event_masks_default, gst_pad_set_convert_function) 
9026         (gst_pad_set_query_function, gst_pad_get_query_types) 
9027         (gst_pad_get_query_types_default) 
9028         (gst_pad_set_internal_link_function) 
9029         (gst_pad_set_formats_function, gst_pad_set_link_function) 
9030         (gst_pad_set_fixate_function, gst_pad_set_getcaps_function) 
9031         (gst_pad_set_bufferalloc_function, gst_pad_unlink) 
9032         (gst_pad_renegotiate, gst_pad_set_parent, gst_pad_get_parent) 
9033         (gst_pad_add_ghost_pad, gst_pad_proxy_getcaps) 
9034         (gst_pad_proxy_pad_link, gst_pad_proxy_fixate) 
9035         (gst_pad_get_pad_template_caps, gst_pad_check_compatibility) 
9036         (gst_pad_get_peer, gst_pad_get_allowed_caps) 
9037         (gst_pad_alloc_buffer, gst_pad_push, gst_pad_pull) 
9038         (gst_pad_selectv, gst_pad_select, gst_pad_template_get_caps) 
9039         (gst_pad_event_default_dispatch, gst_pad_event_default) 
9040         (gst_pad_dispatcher, gst_pad_send_event, gst_pad_convert_default) 
9041         (gst_pad_convert, gst_pad_query_default, gst_pad_query) 
9042         (gst_pad_get_formats_default, gst_pad_get_formats): Better
9043         argument checks, and some doc fixes.
9044
9045         (gst_pad_custom_new_from_template): Um, does anyone
9046         use these functions? Actually make a custom pad instead of a
9047         normal one.
9048         (gst_pad_try_set_caps): Transpose some checks.
9049         (gst_pad_try_set_caps_nonfixed): Same, and use a macro to check if
9050         the pad is in negotiation.
9051         (gst_pad_try_relink_filtered): Use pad_link_prepare.
9052         
9053         * gst/gstelement.c: Remove prototypes also defined in gstclock.h.
9054
9055         * gst/gstelement.h: 
9056         * gst/gstclock.h: Un-deprecate the old clocking API, as discussed
9057         on the list.
9058
9059 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9060
9061         * gst/gstbin.c: (gst_bin_add):
9062           add error for not being able to add elements
9063
9064 2004-02-22  Julien MOUTTE <julien@moutte.net>
9065
9066         * gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
9067         audio-codec and video-codec.
9068
9069 2004-02-22  Benjamin Otte  <otte@gnome.org>
9070
9071         reported by: Padraig O'Briain <padraig.obriain@sun.com>
9072
9073         * autogen.sh:
9074           replace test -e with test -x for mkinstalldirs to be more portable.
9075           (fixes #134816)
9076
9077 2004-02-22  Benjamin Otte  <otte@gnome.org>
9078
9079         * gst/gstpad.c:
9080           revert last patch from Andy, it makes gst_pad_can_link_filtered much
9081           too noisy
9082         * gst/gsttag.c: (_gst_tag_initialize):
9083         * gst/gsttag.h:
9084           add GST_TAG_ALBUM_VOLUME_{COUNT,NUMBER}
9085         * libs/gst/control/dparam.c: (gst_dparam_attach):
9086         * libs/gst/control/dparammanager.c: (gst_dpman_attach_dparam):
9087           check that types for attached dparams match
9088
9089 2004-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9090
9091         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
9092         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
9093         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
9094           fix errors
9095
9096 2004-02-20  Andy Wingo  <wingo@pobox.com>
9097
9098         * gst/gstbin.c:
9099         * gst/gstbuffer.c:
9100         * gst/gstplugin.c:
9101         * gst/registries/gstxmlregistry.c: 
9102         * gst/schedulers/gstoptimalscheduler.c: Debugging tweaks.
9103
9104         * gst/gstelement.c (gst_element_set_scheduler): Debugging fixes.
9105         (gst_element_add_pad): DEBUG->INFO, some fixes.
9106         (gst_element_get_compatible_pad_template): Just see if the
9107         templates' caps intersect, not if one is a strict subset of the
9108         other. This conforms more to what gst_pad_link_intersect() does.
9109         (gst_element_class_add_pad_template): Don't memcpy the pad
9110         template, just ref it.
9111         (gst_element_get_compatible_pad_filtered): Clean up debug messages
9112
9113         * gst/gstpad.c (gst_pad_can_link_filtered): Debug a true result.
9114         (gst_pad_link_filtered): Debug changes.
9115         (gst_pad_link_prepare): New function, consolidated from
9116         can_link_filtered and link_filtered.
9117
9118         * gst/parse/grammar.y (gst_parse_perform_link): Made INFO output
9119         look more like that of the functions in gstelement.c
9120
9121         * gst/gstinfo.c (gst_debug_print_object): Put a space before the
9122         object, and return the empty string if object is NULL.
9123
9124         * gst/parse/parse.l: Remove trailing newlines when calling PRINT.
9125         * gst/parse/grammar.y (YYFPRINTF): Log bison debugging info via
9126         LOG, not DEBUG. We still get flex info on debug.
9127
9128         * gst/registries/gstxmlregistry.c (gst_xml_registry_load): Make
9129         debug string more verbose.
9130         (plugin_times_older_than): DEBUG->LOG.
9131
9132 2004-02-20  Julien MOUTTE <julien@moutte.net>
9133
9134         * gst/gsttag.h: Adding video-codec and audio-codec for demuxers which
9135         will emit found_tag for each stream they demux with the codec.
9136
9137 2004-02-20  Benjamin Otte  <otte@gnome.org>
9138
9139         * gst/gstevent.c: (_gst_event_copy), (_gst_event_free):
9140           copy navigation event correctly. Check freeing tag lists. 
9141         * gst/gstthread.c: (gst_thread_change_state):
9142           don't abort() on state changing mess - it might happen because of
9143           bugs.
9144         * gst/gstvalue.c: (gst_value_set_caps), (gst_value_get_caps):
9145           use boxed functions
9146         * gst/gstvalue.h:
9147           fix GST_VALUE_HOLDS_CAPS
9148
9149 2004-02-19  David Schleef  <ds@schleef.org>
9150
9151         * gst/gstinfo.h:  Copy G_STRFUNC implementation from glib-2.4
9152         and use it for GST_FUNCTION.  (bug #134750)
9153
9154 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9155
9156         * po/fr.po:
9157         * po/nl.po:
9158           updating translations
9159
9160 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9161
9162         * tools/gst-run.c: (get_candidates), (main): some fixes from jdahlin
9163
9164 2004-02-18  kost@imn.htwk-leipzig.de
9165
9166         reviewed by: David Schleef  <ds@schleef.org>
9167
9168         * docs/libs/gstreamer-libs-sections.txt:  Add missing sections
9169         for libgstcontrol.
9170
9171 2004-02-18  David Schleef  <ds@schleef.org>
9172
9173         * libs/gst/control/dparam.c: (gst_dparam_class_init):
9174         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9175         (gst_dpsmooth_new): Additional fixes to get double dparams working.
9176         * tools/gst-inspect.c: (print_element_info): Support dumping of
9177         double dparam information.
9178
9179 2004-02-17  David Schleef  <ds@schleef.org>
9180
9181         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
9182         Use G_TYPE_STRING in signal prototype instead of G_TYPE_POINTER.
9183         * gst/elements/gsttypefind.c: (gst_type_find_element_class_init):
9184         Use GST_TYPE_CAPS in signal prototype.
9185         * gst/gstcaps.c: (_gst_caps_initialize), (gst_caps_copy_conditional):
9186         Convert GST_TYPE_CAPS to boxed.
9187         * gst/gstelement.c: (gst_element_class_init):
9188         Use GST_TYPE_TAG_LIST in signal prototype.
9189         * gst/gstindex.c: (gst_index_class_init):
9190         * gst/gstindex.h:
9191         Add GST_TYPE_INDEX_ENTRY type.
9192         * gst/gstmarshal.list:
9193         Add necessary marshal types.
9194         * gst/gstpad.c: (gst_real_pad_class_init),
9195         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
9196         (gst_pad_recover_caps_error):
9197         Use GST_TYPE_CAPS in signal prototypes.  Fix some debugging strings.
9198         * gst/gststructure.c: (_gst_structure_initialize),
9199         (gst_structure_copy), (_gst_structure_copy_conditional):
9200         * gst/gststructure.h:
9201         Convert GST_TYPE_STRUCTURE to boxed.
9202         * gst/gsttag.c: (gst_tag_list_get_type):
9203         * gst/gsttag.h:
9204         Add GST_TYPE_TAG_LIST type.
9205
9206 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9207
9208         * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
9209         to what we agreed with david.
9210         * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
9211
9212 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9213
9214         * po/nl.po: update translation
9215
9216 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9217
9218         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
9219           throw an error if spider is trying to play a mime type there is
9220           no decoder for
9221         * po/POTFILES.in:
9222           add gst/autoplug/gstspider.c for translation
9223
9224 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9225
9226         * gst/gstpad.c: (gst_pad_try_set_caps): We are nice people. Return 
9227         silently when the pad is negotiating.
9228
9229 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9230
9231         * docs/faq/Makefile.am:
9232           add script to run gstreamer uninstalled 
9233         * docs/faq/faq.xml:
9234         * docs/faq/developing.xml:
9235         * docs/faq/gst-uninstalled:
9236           extract script to run gstreamer uninstalled
9237         * docs/manuals.mak:
9238           add EXTRA_SOURCES variable for Makefile.am's to set to
9239           use additional SOURCE files for the doc build
9240
9241 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9242
9243         * gst/gstatomic_impl.h: Fedora 2 test package patch for S390
9244
9245 2004-02-15  Julien MOUTTE  <julien@moutte.net>
9246
9247         * gst/gstbin.c: (gst_bin_change_state), (gst_bin_iterate): Fix a big
9248         bug that was breaking pipelines like sinesrc ! { queue ! osssink } when
9249         an error was thrown by osssink. Basically a state change failure for
9250         an element in a different scheduling group was considered as
9251         successful, which means that caps nego was going on and weird stuff
9252         happened. Like I wrote in the comment there, if someone wants to
9253         revert that please drop me a mail explaining why because I really see
9254         no point in keeping that broken behaviour there.
9255         * gst/gstqueue.c: (gst_queue_get): Add a safety check as the queue CAN
9256         be empty, we then return NULL which will trigger a nice error when 
9257         pulling from the pad.
9258
9259 2004-02-13  David Schleef  <ds@schleef.org>
9260
9261         * libs/gst/control/dparam.c: (gst_dparam_class_init),
9262         (gst_dparam_get_property), (gst_dparam_set_property),
9263         (gst_dparam_do_update_default):
9264         * libs/gst/control/dparam.h:
9265         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9266         (gst_dpsmooth_new), (gst_dpsmooth_set_property),
9267         (gst_dpsmooth_get_property), (gst_dpsmooth_value_changed_double),
9268         (gst_dpsmooth_do_update_double):
9269         * libs/gst/control/dparam_smooth.h:
9270         * libs/gst/control/dparammanager.c:
9271         (gst_dpman_inline_direct_update):
9272         Add support for double dparams.
9273
9274 2004-02-13  David Schleef  <ds@schleef.org>
9275
9276         * gst/elements/gstfdsrc.c: (gst_fdsrc_get): Use GST_TIME_TO_TIMEVAL()
9277         * gst/gstclock.h: Avoid using 64-bit % operator (slow!)
9278
9279 2004-02-13  Mattias Wadman  <mattias@sudac.org>
9280
9281         reviewed by: David Schleef  <ds@schleef.org>
9282
9283         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
9284         (gst_fdsrc_init), (gst_fdsrc_set_property),
9285         (gst_fdsrc_get_property), (gst_fdsrc_get):
9286         * gst/elements/gstfdsrc.h:  Adds timeout property to fdsrc,
9287         and sends an EOS event if file descriptor reading times out.
9288
9289 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9290
9291         * configure.ac:
9292           add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
9293
9294 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9295
9296         * configure.ac: pass required libxml version as argument
9297         (bug reported by Christophe Fergeau)
9298
9299 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9300   
9301         * docs/gst/gstreamer-docs.sgml:
9302         * docs/gst/tmpl/gstxml.sgml:
9303         * docs/libs/gstreamer-libs-docs.sgml:
9304           version API docs
9305
9306 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9307
9308         * gst/gstinfo.c:
9309         * gst/gstregistrypool.c: (gst_registry_pool_plugin_filter),
9310         (gst_registry_pool_feature_filter):
9311         * gst/gstthread.c: (gst_thread_class_init):
9312         * gst/gstvalue.c:
9313           add includes exposed by building without libxml
9314         * gst/indexers/Makefile.am:
9315           do not build fileindex when LOADSAVE disabled; we should have
9316           a better libxml check later since fileindex depends on xml, not
9317           LOADSAVE or REGISTRY
9318         * libs/gst/control/Makefile.am:
9319           link with m
9320         * tools/Makefile.am:
9321           fix wrong source code for gst-xmlinspect
9322
9323 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9324
9325         * configure.ac:
9326           fix gcov help output
9327           move calls to and use new GST_CHECK_DISABLE_SUBSYSTEM
9328         * docs/random/release:
9329           some updated releasing notes
9330         * gstreamer.spec.in:
9331           more updates
9332
9333 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9334
9335         * docs/faq/faq.xml:
9336         * docs/manual/manual.xml:
9337         * docs/pwg/pwg.xml:
9338         * docs/pwg/titlepage.xml:
9339           put version in documentation
9340
9341 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9342
9343         * tools/Makefile.am: fix man page installation
9344
9345 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9346
9347         * configure.ac:
9348           don't check for libxml when load/save and registry disabled (#105844)
9349         * gstreamer.spec.in:
9350           sync with fedora candidate spec
9351
9352 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9353
9354         * po/fr.po:
9355         * po/nl.po:
9356           replace multidisksrc with multifilesrc
9357
9358 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9359
9360         * po/POTFILES.in:
9361           update to multidisksrc => multifilesrc file renaming (#134145)
9362
9363 2004-02-11  David Schleef  <ds@schleef.org>
9364
9365         * docs/gst/tmpl/gstcaps.sgml:  Fix stuff that mentions GstProps
9366         * docs/gst/tmpl/gstpadtemplate.sgml: same
9367         * docs/gst/tmpl/gstreamer-unused.sgml: Remove GstProps
9368         * gst/gstobject.c: (gst_object_set_name_default): Do the memleak
9369         fixing dance.
9370         * gst/gstutils.c: Remove disabled code that uses GstProps.
9371         * gst/registries/gstxmlregistry.h: same
9372         * docs/random/ds/0.9-suggested-changes: random notes
9373
9374 2004-02-11  kost@imn.htwk-leipzig.de
9375
9376         reviewed by: David Schleef  <ds@schleef.org>
9377
9378         * gst/gstclock.c: (gst_clock_entry_new): fixes structure
9379         initialisation of clock (bug #134128)
9380
9381 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9382
9383         * configure.ac:
9384         * gst/elements/Makefile.am:
9385         * gst/elements/gstelements.c:
9386         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
9387         (gst_multifilesrc_class_init), (gst_multifilesrc_init),
9388         (gst_multifilesrc_set_property), (gst_multifilesrc_get_property),
9389         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
9390         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
9391         * gst/elements/gstmultifilesrc.h:
9392           rename multidisksrc to multifilesrc (part of #122200)
9393
9394 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9395
9396         * docs/manuals.mak:
9397           fix automake complaints
9398         * gst-element-check.m4:
9399           fix unquotedness
9400
9401 2004-02-11  David Schleef  <ds@schleef.org>
9402
9403         * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
9404         * gst/gstatomic_impl.h: Disable sparc implementation.
9405
9406 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9407
9408         * gst-element-check.m4:
9409           fix underquoted macros as reported by automake 1.8.x (#133800)
9410         * configure.ac:
9411           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
9412           by autopoint (fixes #132996)
9413
9414 2004-02-10  Andy Wingo  <wingo@pobox.com>
9415
9416         * gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
9417         way to do inheritance.
9418         (gst_pad_get_event_masks, gst_pad_get_event_masks_default) 
9419         (gst_pad_get_query_types, gst_pad_get_query_types_default):
9420         Routine docs.
9421         (gst_pad_set_link_function, gst_pad_set_fixate_function) 
9422         (gst_pad_set_getcaps_function): Doc from Dave's negotation random
9423         doc.
9424         (gst_pad_unlink, gst_pad_is_linked): Docs.
9425         (gst_pad_renegotiate): A brief description of capsnego.
9426         (gst_pad_try_set_caps): Document.
9427         (gst_pad_try_set_caps_nonfixed): Document.
9428         (gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
9429         (gst_pad_set_parent): Deprecated (although not out of the API).
9430         (gst_pad_get_parent): Deprecated, although many plugins use this.
9431         (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
9432         are private and will go away in 0.9.
9433         (gst_pad_perform_negotiate): Doc.
9434         (gst_pad_link_unnegotiate): I think this is meant to be static.
9435         (gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps) 
9436         (gst_pad_template_get_caps_by_name, gst_pad_check_compatibility) 
9437         (gst_pad_get_peer): Doc updates.
9438         (gst_pad_caps_change_notify): Doc.
9439         (gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get) 
9440         (gst_ghost_pad_new): Doc fixes.
9441
9442         * gst/gstobject.c (gst_object_get_parent, gst_object_unparent) 
9443         (gst_object_check_uniqueness): 
9444
9445         * gst/gstelement.c (gst_element_add_pad) 
9446         (gst_element_add_ghost_pad, gst_element_remove_pad) 
9447         (gst_element_remove_ghost_pad, gst_element_get_pad) 
9448         (gst_element_get_static_pad, gst_element_get_pad_list) 
9449         (gst_element_class_get_pad_template_list) 
9450         (gst_element_class_get_pad_template): Work on the docs.
9451         (gst_element_get_pad_template_list): Uses the class method.
9452         (gst_element_get_compatible_pad_template): Docs, and consolidate
9453         some test conditions. 
9454         (gst_element_get_pad_from_template): New static function.
9455         (gst_element_request_compatible_pad): Docs, and work with
9456         non-request compatible templates. 
9457         (gst_element_get_compatible_pad_filtered): Docs and remove
9458         redundant checks.
9459         (gst_element_get_compatible_pad, gst_element_link_pads_filtered) 
9460         (gst_element_link_filtered, gst_element_link_many) 
9461         (gst_element_link, gst_element_link_pads) 
9462         (gst_element_unlink_many): Docs.
9463
9464 2004-02-05  Andy Wingo  <wingo@pobox.com>
9465
9466         * gst/gstpad.c (_gst_real_pad_fixate_accumulator):
9467         s/pointer/boxed/.
9468
9469         * gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
9470
9471         * gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
9472         marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
9473         with the type=GST_TYPE_CAPS. This allows language bindings to know
9474         what kind of data they're dealing with.
9475
9476         * gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
9477         to NULL when g_value_init is called. GstCaps, which rolls its own
9478         type implementation, now does the same instead of allocating empty
9479         caps.
9480         (_gst_caps_initialize, _gst_caps_collect_value,
9481         _gst_caps_lcopy_value): Provide collect_value and lcopy_value type
9482         table methods. This allows G_VALUE_COLLECT to work.
9483
9484 2004-02-05  Andy Wingo  <wingo@pobox.com>
9485
9486         * configure.ac:
9487         * testsuite/Makefile.am (SUBDIRS): 
9488         * testsuite/ghostpads/Makefile.am: 
9489         * testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
9490
9491         * gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
9492         These two routines are the only ones that set
9493         GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
9494         pad template. They should be made static, depending on ABI needs.
9495         (gst_real_pad_dispose): Handle the case of ghost pads without a
9496         parent. Assert after dealing with ghost pads that the ghost pad
9497         list is empty.
9498         (gst_ghost_pad_class_init): New property added, ::real-pad. Can be
9499         set after creation.
9500         (gst_ghost_pad_dispose): Set ::real-pad to NULL.
9501         (gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
9502         functions. set_property will call add_ghost_pad/remove_ghost_pad
9503         as appropriate.
9504         (gst_ghost_pad_new): All the work is offloaded to g_object_new.
9505
9506         * gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
9507         (gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
9508         (gst_element_remove_pad): Handle ghost pads as well.
9509         (gst_element_remove_ghost_pad): Deprecated (could be removed,
9510         depending on API-stability needs).
9511
9512 2004-02-05  Andy Wingo  <wingo@pobox.com>
9513
9514         * gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
9515         of course they're const
9516
9517 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9518
9519         * tools/Makefile.am:
9520         * tools/gst-feedback:
9521         * tools/gst-feedback-0.7:
9522           make gst-feedback versioned too for consistency
9523
9524 2004-02-11  David Schleef  <ds@schleef.org>
9525
9526         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9527         (gst_pad_try_set_caps): Fix format strings for GST_PTR_FORMAT.
9528
9529 2004-02-10  Julien MOUTTE <julien@moutte.net>
9530
9531         * gst/gstevent.c: (_gst_event_free): Sometimes a tag event arrives but
9532         the structure does not contain a valid tag list. Adding a safety check
9533         to remove a noisy warning in that case.
9534
9535 2004-02-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9536
9537         * gst/gst.c: fix name to be in line with others
9538
9539 2004-02-09  Julien MOUTTE <julien@moutte.net>
9540
9541         * libs/gst/bytestream/bytestream.c: (gst_bytestream_peek): We should
9542         not shout that loud when len is 0. Just return 0 silently.
9543
9544 2004-02-09  Julien MOUTTE  <julien@moutte.net>
9545
9546         * gst/gstdata.c: (gst_data_ref): Adding a categorized debug on data_ref
9547         because data_unref has one and I prefer the debug to be symetric.
9548         * gst/gstqueue.c: (gst_queue_locked_flush): Fix a huge memleak. Buffers
9549         were refed when added to the queue and unrefed only once when the queue
9550         was flushed. Now the flush handler unref the buffers two times : first
9551         unref for the ref added when pushing in the queue's tail and second
9552         unref to destroy the flushed buffer.
9553
9554 2004-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9555
9556         * docs/pwg/building-boiler.xml: fix cvs checkout documentation
9557
9558 2004-02-06  David Schleef  <ds@schleef.org>
9559
9560         * docs/random/ds/0.9-suggested-changes: Random ramblings
9561         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap): Cast size_t
9562         to int before printing.
9563         * gst/parse/grammar.y: Fix gcc-2.95 style variadic macros.
9564         * gst/parse/parse.l: same.  See bug #129600
9565
9566 2004-02-06  David Schleef  <ds@schleef.org>
9567
9568         * gst/gstindex.c: (gst_index_add_format), (gst_index_add_id),
9569         (gst_index_add_entry), (gst_index_add_associationv),
9570         (gst_index_add_association): Add gst_index_add_associationv()
9571         and clean up gst_index_add_association(). #127133
9572
9573 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9574
9575         * autogen.sh: check out common with right tag if CVS/Tag exists
9576
9577 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9578
9579         * testsuite/ghostpads/ghostpads.c: (main):
9580           fix testsuite from segfaulting
9581
9582 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9583
9584         * Makefile.am: add release target
9585         * configure.ac: bump nano to 1
9586         * docs/random/release:
9587
9588 2004-02-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9589
9590         * gst/gstcaps.h:
9591         * gst/gstelement.c: (gst_element_base_class_init),
9592         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9593         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9594         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9595         (gst_real_pad_dispose):
9596         * gst/gststructure.c: (gst_structure_free),
9597         (gst_structure_from_string):
9598           put reverted patch back in
9599         * gst/gstelement.c: (gst_element_remove_pad):
9600           free explicit caps if they're set
9601         * gst/gstpad.c: (_gst_pad_default_fixate_func):
9602           copy the structure when fixating
9603
9604 2004-02-05  David Schleef  <ds@schleef.org>
9605
9606         * gst/gstmarshal.list:
9607         * gst/gstpad.c: (gst_real_pad_class_init),
9608         (_gst_real_pad_fixate_accumulator):
9609         Revert POINTER->BOXED change in signal marshaller.
9610
9611 === release 0.7.4 ===
9612                                                                                 
9613 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9614                                                                                 
9615         * NEWS: GStreamer 0.7.4 "Wooden Eels" released
9616         * configure.ac: changed for release
9617
9618 2004-02-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9619
9620         * gstreamer.spec.in:
9621           bump required version of gtk-doc
9622
9623 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9624
9625         * gst/gstcaps.h:
9626         * gst/gstelement.c: (gst_element_base_class_init),
9627         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9628         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9629         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9630         (gst_real_pad_dispose):
9631         * gst/gststructure.c: (gst_structure_free),
9632         (gst_structure_from_string):
9633           revert patch that breaks applications, reapply after release
9634           to get this fixed properly
9635
9636 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9637
9638         * gst/gsttag.c: (_gst_tag_initialize):
9639         * gst/gsttag.h:
9640           remove duplicated field GST_TAG_APPLICATION. It's GST_TAG_ENCODER
9641
9642 2004-02-04  David Schleef  <ds@schleef.org>
9643
9644         Fix some memleaks:
9645         * gst/autoplug/gstspider.c: (gst_spider_request_new_pad),
9646         (gst_spider_plug_from_srcpad):
9647         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
9648
9649 2004-02-04  David Schleef  <ds@schleef.org>
9650
9651         * gst/gstelement.c: (gst_element_clear_pad_caps): Make sure we have
9652         a GstRealPad before accessing its structure members.
9653
9654 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9655
9656         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_speed),
9657         (gst_clock_get_speed):
9658         * gst/gstclock.h:
9659           reset padding, remove unused fields
9660
9661 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9662
9663         * gst/autoplug/gstspideridentity.c:
9664         (gst_spider_identity_sink_loop_type_finding):
9665           use get_allowed_caps, not get_caps (fixes #132519)
9666         * gst/elements/gsttypefind.c: (stop_typefinding):
9667           use correct order when sending buffers and seeking
9668
9669 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9670
9671         * configure.ac:
9672         * gst/gstelement.h:
9673         * gst/gstpad.h:
9674         * gst/gstqueue.h:
9675           upgrade libtool CURRENT, reset padding
9676
9677 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9678
9679         * configure.ac:
9680           bump to prerelease
9681           put back AM_PROG_LIBTOOL to make libtoolize stop complaining
9682
9683 2004-02-04  David Schleef  <ds@schleef.org>
9684
9685         * docs/random/ds/0.9-suggested-changes: random notes
9686         * gst/elements/gstfakesrc.c: (gst_fakesrc_get_formats),
9687         (gst_fakesrc_get_query_types), (gst_fakesrc_get_event_mask):
9688         Replace GST_PAD_EVENT_MASK_FUNCTION() (et al.) with its
9689         expansion.
9690         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
9691         (gst_filesink_get_query_types): same
9692         * gst/elements/gstfilesrc.c: (gst_filesrc_get_event_mask),
9693         (gst_filesrc_get_query_types), (gst_filesrc_get_formats): same
9694         * gst/gstcaps.h: deprecate GST_DEBUG_CAPS(), and fix the macro
9695         to use new GST_PTR_FORMAT.
9696         * gst/gstelement.h: deprecate function factory macros
9697         GST_ELEMENT_QUERY_TYPE_FUNCTION(), GST_ELEMENT_EVENT_MASK_FUNCTION().
9698         These are our last variadic macros that can't be replaced with
9699         inlines.  Celebrate!  Also fix a typo in an #ifdef that was
9700         attempting to deprecate gst_element_clock_wait().
9701         * gst/gstevent.h: same
9702         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9703         (gst_pad_try_set_caps): replace GST_DEBUG_CAPS() with GST_DEBUG()
9704         * gst/gstpad.h: deprecate function factory macros similar to above.
9705
9706 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9707
9708         * configure.ac:
9709         * tools/Makefile.am:
9710         * tools/gst-run.c: (popt_callback), (hash_print_key),
9711         (find_highest_version), (unmangle_libtool), (get_dir_of_binary),
9712         (get_candidates), (main):
9713           add new source file to generate non-versioned wrapper binaries
9714           for our tools.
9715
9716 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9717
9718         * gst/gstevent.c: (_gst_event_free):
9719           actually break; inside the switch statement
9720         * gst/parse/grammar.y:
9721           fix memleak where GValues weren't unset
9722
9723 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9724
9725         * gst/gststructure.c: (gst_structure_from_string):
9726           fix huge memleak
9727         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
9728         (new_entry), (gst_type_find_element_chain):
9729         * gst/gstelement.c: (gst_element_base_class_init),
9730         (gst_element_class_set_details):
9731         * gst/gstpad.c: (gst_pad_can_link_filtered):
9732           fix smaller memleaks
9733         * gst/gstpad.c: (gst_real_pad_dispose):
9734           check that explicit caps are gone
9735         * gst/gststructure.c: (gst_structure_free):
9736           actually free the structure
9737         * gst/gstelement.c: (gst_element_clear_pad_caps):
9738           unset explicit caps
9739
9740 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9741
9742         * tools/Makefile.am:
9743           use AM_CFLAGS since all the CFLAGS are the same
9744           use AM_LDFAGS
9745
9746 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9747
9748         * docs/manual/gnome.xml:
9749           expand example a little
9750         * gst/gst.c: (gst_init_with_popt_table),
9751         (gst_init_check_with_popt_table), (init_pre), (init_popt_callback):
9752           make sure popt option displays are done with right textdomain
9753           use GstPoptOption type
9754         * gst/gst.h:
9755           create GstPoptOption type
9756
9757 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9758
9759         * gst/gsterror.c: (_gst_stream_errors_init):
9760         * gst/gsterror.h:
9761           adding error type for no codec
9762         * po/POTFILES.in:
9763           add gst-inspect
9764         * po/nl.po:
9765           update dutch translation
9766         * tools/gst-inspect.c: (print_element_list), (main):
9767           do proper internationalization
9768         * tools/gst-launch.c: (idle_func):
9769           remove commented out function call
9770
9771 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9772
9773         * docs/README:
9774           add some error fixing notes
9775         * docs/gst/gstreamer-sections.txt:
9776           remove double entries
9777         * docs/gst/tmpl/gstbin.sgml:
9778         * docs/gst/tmpl/gstclock.sgml:
9779           remove override
9780         * docs/gst/tmpl/gstelement.sgml:
9781         * docs/gst/tmpl/gstindex.sgml:
9782         * docs/gst/tmpl/gstobject.sgml:
9783         * docs/gst/tmpl/gstpadtemplate.sgml:
9784         * docs/gst/tmpl/gstreamer-unused.sgml:
9785         * docs/gst/tmpl/gsttag.sgml:
9786         * docs/gst/tmpl/gstthread.sgml:
9787         * docs/gst/tmpl/gstxml.sgml:
9788         * gst/gsttag.h:
9789           sync header prototypes with c decls
9790         * gst/gsttaginterface.c:
9791           fix doc headers
9792
9793 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9794
9795         * gst/parse/Makefile.am:
9796         * gst/gstobject.h:
9797           get rid of gstmarshal.h dependency. It's not needed.
9798         * gst/gst.h:
9799         * gst/elements/gstfakesink.c:
9800         * gst/elements/gstfakesrc.c:
9801         * gst/elements/gstidentity.c:
9802         * gst/gstbin.c:
9803         * gst/gstelement.c:
9804         * gst/gstindex.c:
9805         * gst/gstobject.c:
9806         * gst/gstpad.c:
9807         * gst/gstthread.c:
9808         * gst/gstxml.c:
9809         * libs/gst/control/dparam.c:
9810         * libs/gst/control/dparammanager.c:
9811           include gstmarshal.h.
9812         Fixes #132045
9813
9814 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9815
9816         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
9817         (gst_filesrc_dispose), (gst_filesrc_free_parent_mmap),
9818         (gst_filesrc_map_region), (gst_filesrc_get_mmap):
9819         * gst/elements/gstfilesrc.h:
9820           don't ref the filesrc when creating mmaped buffers. Don't keep a
9821           list of not-yet-destroyed buffers.
9822         * gst/gstbuffer.h:
9823           Deprecated BST_BUFFER_FREE_FUNC and GST_BUFFER_COPY_FUNC
9824
9825 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9826
9827         * gst/gst.c: (init_pre):
9828           remove textdomain
9829
9830 2004-02-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
9831
9832         * docs/pwg/advanced-events.xml:
9833         * docs/pwg/advanced-scheduling.xml:
9834         * docs/pwg/intro-basics.xml:
9835         * docs/pwg/other-manager.xml:
9836         * docs/pwg/other-nton.xml:
9837         * docs/pwg/other-ntoone.xml:
9838         * docs/pwg/other-oneton.xml:
9839         * docs/pwg/pwg.xml:
9840           All sort of documentation... Forgot what. Point is that I want this
9841           in before I leave. The 'other-*' will be the last section and will
9842           explain issues specific to these type of elements.
9843
9844 2004-02-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9845
9846         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
9847         (gst_filesrc_get_read):
9848           set all the values on buffers that we can
9849
9850 2004-02-02  David Schleef  <ds@schleef.org>
9851
9852         Change usage of isblah() to g_ascii_isblah() to be more locale
9853         independent.  (#133076)
9854         * gst/gsturi.c: (gst_uri_protocol_check_internal):
9855         * gst/gstutils.c:
9856         * gst/parse/parse.l:
9857
9858 2004-02-02  Jon Trowbridge  <trow@gnu.org>
9859
9860         reviewed by: David Schleef  <ds@schleef.org>
9861
9862         Fix memory leaks:
9863         * gst/gstcaps.c: (gst_caps_to_string):
9864         * gst/registries/gstxmlregistry.c:
9865         (gst_xml_registry_add_path_list_func),
9866         (gst_xml_registry_parse_padtemplate):
9867
9868 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9869
9870         * gst/gstelement.c: (gst_element_default_error):
9871           suffix error messages with period
9872
9873 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9874
9875         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
9876         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
9877         * gst/gsterror.c: (gst_error_get_message):
9878           Suffix with dots
9879         * po/fr.po:
9880         * po/nl.po:
9881           Update translation files
9882
9883 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9884
9885         * gst/autoplug/gstspideridentity.c:
9886         (gst_spider_identity_sink_loop_type_finding):
9887         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
9888         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
9889         (gst_filesink_close_file), (gst_filesink_handle_event),
9890         (gst_filesink_chain):
9891         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
9892         (gst_filesrc_get_read), (gst_filesrc_open_file):
9893         * gst/elements/gstidentity.c: (gst_identity_chain):
9894         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
9895         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
9896         (gst_pipefilter_chain), (gst_pipefilter_open_file):
9897         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
9898         * gst/gsterror.c: (_gst_core_errors_init),
9899         (_gst_library_errors_init), (_gst_resource_errors_init),
9900         (_gst_stream_errors_init), (gst_error_get_message):
9901         * gst/gstpad.c: (gst_pad_set_explicit_caps),
9902         (gst_pad_recover_caps_error), (gst_pad_pull):
9903         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
9904         * gst/schedulers/gstbasicscheduler.c:
9905         (gst_basic_scheduler_chainhandler_proxy),
9906         (gst_basic_scheduler_gethandler_proxy),
9907         (gst_basic_scheduler_cothreaded_chain):
9908           Suffix error messages with period.
9909           Use (NULL) instead of NULL
9910
9911 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9912
9913         * docs/gst/tmpl/gstelement.sgml:
9914         * docs/gst/tmpl/gstxml.sgml:
9915         * gst/gstelement.c: (gst_element_error_full):
9916           add element path to error
9917
9918 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9919
9920         * docs/random/mimetypes:
9921           update raw int/float info
9922         * gst/gsttag.c: (_gst_tag_initialize):
9923         * gst/gsttag.h:
9924           add GST_TAG_ENCODER
9925
9926 2004-01-30  David Schleef  <ds@schleef.org>
9927
9928         * gst/cothreads.c: Add another fallback if MAP_ANONYMOUS is
9929           missing (#132991)
9930
9931 2004-01-30  Laurent Vivier <Laurent.Vivier@bull.net>
9932
9933         reviewed by Benjamin Otte 
9934           parts of the patch submitted in bug #113913
9935
9936         * configure.ac:
9937           use AC_C_INLINE. Use = instead of == with test
9938         * examples/plugins/example.c:
9939         * gst/autoplug/gstspideridentity.c:
9940         * gst/elements/gstfdsrc.c:
9941         * gst/elements/gstfilesrc.c:
9942         * gst/elements/gstidentity.c:
9943         * gst/elements/gstmultidisksrc.c:
9944         * gst/elements/gststatistics.c:
9945         * gst/gstelement.c:
9946         * gst/gstobject.c:
9947         * gst/gstpad.c:
9948         * gst/gstpipeline.c:
9949         * gst/gstthread.c:
9950           don't end enums with a comma
9951         * gst/gstindex.c: (gst_index_compare_func):
9952           do explicit casting to gint
9953         * gst/gsttrace.c: (gst_trace_text_flush):
9954           #define strsize as a macro
9955
9956 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9957
9958         * docs/README:
9959         * docs/gst/gstreamer-docs.sgml:
9960         * docs/gst/gstreamer-sections.txt:
9961         * docs/gst/tmpl/gstelement.sgml:
9962         * docs/gst/tmpl/gsterror.sgml:
9963         * docs/gst/tmpl/gstinterface.sgml:
9964         * docs/gst/tmpl/gstreamer-unused.sgml:
9965         * docs/gst/tmpl/gststructure.sgml:
9966         * docs/gst/tmpl/gsttag.sgml:
9967         * docs/gst/tmpl/gsttaginterface.sgml:
9968         * docs/gst/tmpl/gstvalue.sgml:
9969         make sure all API ends up in the built docs
9970         * gst/gstinterface.c:
9971         * gst/gststructure.c: (gst_structure_id_set_value),
9972         (gst_structure_set_value), (gst_structure_id_get_value):
9973         * gst/gststructure.h:
9974         * gst/gstvalue.h:
9975         sync .h with .c declarations
9976
9977 2004-01-30  Julien Moutte  <julien@moutte.net>
9978
9979         * libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
9980         Ronald will fix riffread.
9981
9982 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
9983
9984         * docs/pwg/advanced-interfaces.xml:
9985           Added tuner interface docs.
9986
9987 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9988
9989         * docs/random/mimetypes:
9990           correct Theora information
9991         * gst/gstelement.h:
9992           make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
9993
9994 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
9995
9996         * gst/gstelement.c: (gst_element_error_full):
9997         * gst/gstelement.h:
9998           GST_ELEMENT_ERROR in enum -> _IN_ERROR
9999
10000 2004-01-29  Julien MOUTTE  <julien@moutte.net>
10001
10002         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
10003         (gst_filesrc_uri_handler_init): Fixing seeking by making FLUSH happen
10004         again and even before DISCONT.
10005         * gst/gstpad.c: (gst_pad_event_default): Remove a unused switch case.
10006         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf): Fix
10007         bytestream so that it's not stopping to fill the bytestream if events
10008         different than EOS or DISCONT are received. Instead it process them so
10009         that they go downstream.
10010
10011 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10012
10013         * docs/gst/tmpl/gstelement.sgml:
10014         * docs/gst/tmpl/gstreamer-unused.sgml:
10015         * docs/gst/tmpl/gstxml.sgml:
10016         * gst/autoplug/gstspideridentity.c:
10017         (gst_spider_identity_sink_loop_type_finding):
10018         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10019         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10020         (gst_filesink_close_file), (gst_filesink_handle_event),
10021         (gst_filesink_chain):
10022         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
10023         (gst_filesrc_get_read), (gst_filesrc_open_file):
10024         * gst/elements/gstidentity.c: (gst_identity_chain):
10025         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10026         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10027         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10028         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10029         * gst/gstelement.h:
10030         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10031         (gst_pad_recover_caps_error), (gst_pad_pull):
10032         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10033         * gst/schedulers/gstbasicscheduler.c:
10034         (gst_basic_scheduler_chainhandler_proxy),
10035         (gst_basic_scheduler_gethandler_proxy),
10036         (gst_basic_scheduler_cothreaded_chain):
10037           gst_element_error -> GST_ELEMENT_ERROR
10038
10039 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10040
10041         * docs/Makefile.am:
10042         * docs/gst/tmpl/gstelement.sgml:
10043         * docs/gst/tmpl/gstxml.sgml:
10044         * docs/manuals.mak:
10045         * docs/pwg/advanced-request.xml:
10046         * docs/pwg/advanced-scheduling.xml:
10047         * docs/pwg/advanced-tagging.xml:
10048           fix non-validating docbook using CDATA
10049           make sure make check-local gets run first to check if it validates
10050
10051 2004-01-29  Julien MOUTTE <julien@moutte.net>
10052
10053         * docs/pwg/advanced-events.xml: Adding documentation on advanced event
10054         handling (up and downstream).
10055         * docs/pwg/advanced-interfaces.xml: Make it coherent with the
10056         my_filter thing.
10057
10058 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10059
10060         * docs/pwg/advanced-tagging.xml:
10061           Add docs about tag writing.
10062
10063 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10064
10065         * docs/pwg/advanced-tagging.xml:
10066           Add a part about tag reading and application signalling... Tag
10067           writing still needs to be documented.
10068         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10069           We can set file locations in READY, too.
10070
10071 2004-01-29  Julien MOUTTE <julien@moutte.net>
10072
10073         * docs/random/ds/element-checklist: Adding some notes about src
10074         events.
10075
10076 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10077
10078         * docs/random/mimetypes:
10079           Update docs to point to correct elements for various mimetypes, and
10080           some more errors pointed out by Stéphane LOEUILLET (aka LeRoutier)
10081           <stephane.loeuillet@tiscali.fr>.
10082
10083 2004-01-28  David Schleef  <ds@schleef.org>
10084
10085         * docs/pwg/intro-basics.xml: rewrite bufferpool stuff.
10086
10087 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10088
10089         * docs/random/mimetypes:
10090           update docs for audio/x-raw-float. Add "buffer-frames=0 means
10091           undefined"
10092         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10093           make it only work in NULL.
10094         * gst/gstcaps.c:
10095           don't posion NULL caps
10096         * gst/gstelement.c: (gst_element_set_time):
10097           add debugging statement
10098         * gst/gstelement.c: (gst_element_emit_found_tag),
10099         (gst_element_found_tag_func), (gst_element_found_tags):
10100         * gst/gstelement.h:
10101           These functions take const taglists
10102         * gst/gstpad.c: (gst_pad_proxy_getcaps):
10103           fix memleak
10104         * gst/gstpad.c: (gst_pad_event_default):
10105           make more effort on handling discont and clocks, g_warn if everything
10106           fails
10107         * gst/gststructure.c: (gst_structure_remove_fields),
10108         (gst_structure_remove_fields_valist):
10109         * gst/gststructure.h:
10110           add gst_structure_remove_fields(_valist)
10111         * gst/gsttag.c:
10112           fix doc glitch
10113
10114 2004-01-28  David Schleef  <ds@schleef.org>
10115
10116         * docs/random/ds/element-checklist: Notes about gst_caps_to_string()
10117         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save_caps):
10118         Fix memory leakage of gst_caps_to_string().
10119
10120         Use GST_PTR_FORMAT instead of gst_caps_to_string():
10121         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_sp):
10122         * gst/autoplug/gstspideridentity.c: (spider_find_suggest),
10123         (gst_spider_identity_sink_loop_type_finding):
10124         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
10125         (find_suggest):
10126         * gst/gstpad.c: (gst_pad_try_relink_filtered),
10127         (gst_pad_set_explicit_caps):
10128         * gst/parse/grammar.y:
10129
10130 2004-01-28  David Schleef  <ds@schleef.org>
10131
10132         * configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
10133         GST_PRINTF_EXTENSION_FORMAT_DEFINE.
10134         * docs/random/ds/0.9-suggested-changes: Notes from Company.
10135         * gst/gstcaps.c: (gst_caps_to_string): Add comment.
10136         * gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
10137         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
10138         (gst_debug_log_default), (_gst_info_printf_extension),
10139         (_gst_info_printf_extension_arginfo):  Add printf extension.
10140         * gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
10141         * gst/gststructure.c: (gst_structure_to_string),
10142         (_gst_structure_parse_value): Use gst_value_deserialize() and
10143         remove old code.
10144         * gst/gstvalue.c: (gst_value_deserialize_fourcc),
10145         (gst_value_deserialize_boolean), (gst_strtoi),
10146         (gst_value_deserialize_int), (gst_value_deserialize_double),
10147         (gst_value_deserialize_string), (gst_value_deserialize): Implement
10148         a bunch of deserialize functions and gst_value_deserialize.
10149         * gst/gstvalue.h: er, _de_serialize, not unserialize
10150         * testsuite/caps/string-conversions.c: (main): We don't currently
10151         handle (float) in caps, so convert these to (double).
10152         * testsuite/debug/Makefile.am: Add new test for the printf extension
10153         * testsuite/debug/printf_extension.c: (main): same
10154
10155 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10156
10157         * docs/random/company/time:
10158           Add some docs about clocking and time
10159
10160 2004-01-28  Julien MOUTTE <julien@moutte.net>
10161
10162         * docs/pwg/advanced-interfaces.xml: Adding XOverlay documentation.
10163
10164 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10165
10166         * docs/pwg/advanced-clock.xml:
10167         * docs/pwg/advanced-dparams.xml:
10168         * docs/pwg/advanced-events.xml:
10169         * docs/pwg/advanced-interfaces.xml:
10170         * docs/pwg/advanced-midi.xml:
10171         * docs/pwg/advanced-request.xml:
10172         * docs/pwg/advanced-scheduling.xml:
10173         * docs/pwg/advanced-tagging.xml:
10174         * docs/pwg/advanced-types.xml:
10175         * docs/pwg/appendix-checklist.xml:
10176         * docs/pwg/building-boiler.xml:
10177         * docs/pwg/building-chainfn.xml:
10178         * docs/pwg/building-filterfactory.xml:
10179         * docs/pwg/building-pads.xml:
10180         * docs/pwg/building-props.xml:
10181         * docs/pwg/building-signals.xml:
10182         * docs/pwg/building-state.xml:
10183         * docs/pwg/building-testapp.xml:
10184         * docs/pwg/intro-basics.xml:
10185         * docs/pwg/intro-preface.xml:
10186         * docs/pwg/other-autoplugger.xml:
10187         * docs/pwg/other-sink.xml:
10188         * docs/pwg/other-source.xml:
10189         * docs/pwg/titlepage.xml:
10190           fix up id's
10191
10192 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10193
10194         * docs/95NonPath:
10195         * docs/HACKING:
10196         * docs/README:
10197         * docs/building-the-docs-on-debian:
10198           collect relevant bits of doc info
10199
10200 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10201
10202         * docs/pwg/advanced_tagging.xml:
10203           Half-assed commit so Thomas can re-arrange document IDs here to be
10204           consistent, too.
10205
10206 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10207
10208         * docs/manual/autoplugging.xml:
10209         * docs/manual/bins-api.xml:
10210         * docs/manual/bins.xml:
10211         * docs/manual/buffers-api.xml:
10212         * docs/manual/buffers.xml:
10213         * docs/manual/clocks.xml:
10214         * docs/manual/components.xml:
10215         * docs/manual/cothreads.xml:
10216         * docs/manual/debugging.xml:
10217         * docs/manual/dparams-app.xml:
10218         * docs/manual/dynamic.xml:
10219         * docs/manual/elements-api.xml:
10220         * docs/manual/elements.xml:
10221         * docs/manual/factories.xml:
10222         * docs/manual/gnome.xml:
10223         * docs/manual/goals.xml:
10224         * docs/manual/helloworld.xml:
10225         * docs/manual/helloworld2.xml:
10226         * docs/manual/init-api.xml:
10227         * docs/manual/intro.xml:
10228         * docs/manual/links-api.xml:
10229         * docs/manual/links.xml:
10230         * docs/manual/manual.xml:
10231         * docs/manual/motivation.xml:
10232         * docs/manual/pads-api.xml:
10233         * docs/manual/pads.xml:
10234         * docs/manual/plugins-api.xml:
10235         * docs/manual/plugins.xml:
10236         * docs/manual/programs.xml:
10237         * docs/manual/queues.xml:
10238         * docs/manual/quotes.xml:
10239         * docs/manual/schedulers.xml:
10240         * docs/manual/states-api.xml:
10241         * docs/manual/states.xml:
10242         * docs/manual/threads.xml:
10243         * docs/manual/typedetection.xml:
10244         * docs/manual/xml.xml:
10245           use chapter, part, section or misc as id starts for all bits
10246
10247 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10248
10249         * docs/gst/gstreamer-sections.txt:
10250           Fix up TITLE of the sections
10251
10252 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10253
10254         * docs/pwg/advanced_interfaces.xml:
10255           Add documentation on propertyprobing.
10256         * docs/pwg/advanced_events.xml:
10257         * docs/pwg/advanced_tagging.xml:
10258         * docs/pwg/building_boiler.xml:
10259         * docs/pwg/building_filterfactory.xml:
10260         * docs/pwg/pwg.xml:
10261           Move filterfactory and tagging into their own chapter, add a chapter
10262           on events. all these are empty placeholders that will be filled in
10263           some day.
10264
10265 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10266
10267         * docs/pwg/advanced_interfaces.xml:
10268           Docs for mixer interface. Also a check for website uploading.
10269
10270 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10271
10272         * docs/HACKING:
10273         * docs/Makefile.am:
10274         * docs/faq/Makefile.am:
10275         * docs/gst/Makefile.am:
10276         * docs/gst/tmpl/gstelement.sgml:
10277         * docs/gst/tmpl/gstplugin.sgml:
10278         * docs/gst/tmpl/gstreamer-unused.sgml:
10279         * docs/libs/Makefile.am:
10280         * docs/manual/Makefile.am:
10281         * docs/manuals.mak:
10282         * docs/pwg/Makefile.am:
10283         * docs/upload.mak:
10284           Separate out upload target and make it similar for
10285           both docbook and gtk-doc docs
10286
10287 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10288
10289         * docs/manuals.mak:
10290           Fix upload target to work with freedesktop
10291
10292 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10293
10294         * docs/pwg/advanced_types.xml:
10295           Add notes on creating your own types.
10296         * docs/pwg/building_boiler.xml:
10297         * docs/pwg/building_pads.xml:
10298         * docs/pwg/building_state.xml:
10299           Add some stuff about how to retrieve values from structures, how
10300           that relates to types and change layout slightly again to be almost
10301           perfect.
10302
10303 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10304
10305         * docs/pwg/advanced_dparams.xml:
10306         * docs/pwg/advanced_scheduling.xml:
10307           Change index layout slightly.
10308
10309 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10310
10311         * docs/pwg/advanced_clock.xml:
10312         * docs/pwg/advanced_interfaces.xml:
10313         * docs/pwg/advanced_midi.xml:
10314           General placeholders for now.
10315         * docs/pwg/advanced_request.xml:
10316           Explanation about sometimes and request pads.
10317         * docs/pwg/advanced_scheduling.xml:
10318           Concept of bytestream, loopfunctions and schedulers.
10319         * docs/pwg/building_boiler.xml:
10320           Add something about plugin-init.
10321
10322 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10323
10324         * docs/pwg/building_pads.xml:
10325           Fix broken docbook
10326
10327 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10328
10329         * docs/pwg/advanced_interfaces.xml:
10330         * docs/pwg/pwg.xml:
10331           Add as a placeholder for future filling-in.
10332         * docs/pwg/basics_autoplugging.xml:
10333         * docs/pwg/basics_buffers.xml:
10334         * docs/pwg/basics_elements.xml:
10335         * docs/pwg/basics_events.xml:
10336         * docs/pwg/basics_plugins.xml:
10337         * docs/pwg/basics_types.xml:
10338           Remove, because unused (this is all in intro_basics.xml).
10339         * docs/pwg/building_signals.xml:
10340           Short intro to signals + reference to GObject docs - we really
10341           shouldn't go into these sort of things to deply because we don't
10342           use them that extensively anyway.
10343         * docs/pwg/building_state.xml:
10344           Explanation of states. Benjamin, please check.
10345         * docs/pwg/building_testapp.xml:
10346           Put everything in one page - putting only a few lines of content
10347           per page doesn't really make sense.
10348
10349           Time to get into the advanced topics. ;).
10350
10351 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10352
10353         * docs/pwg/advanced_types.xml:
10354           Finish documenting the current state of mimetypes.
10355         * docs/pwg/building_boiler.xml:
10356         * docs/pwg/building_chainfn.xml:
10357         * docs/pwg/building_pads.xml:
10358         * docs/pwg/building_props.xml:
10359         * docs/pwg/building_testapp.xml:
10360           Start documenting the "how to build a simple audio filter" part
10361           of the PWG. Most stuff is ready by now. Stuff remaining: signals,
10362           states and (maybe?) a short introduction to capsnego in the chapter
10363           on pads (building_pads.xml). Capsnego should probably be explained
10364           fully in advanced_capsnego.xml or so.
10365
10366 2004-01-26  David Schleef  <ds@schleef.org>
10367
10368         * gst/gstpad.c: (gst_pad_try_set_caps_nonfixed):
10369         * gst/gstpad.h: Add new function to allow element to (somewhat)
10370         specify non-fixed caps on a pad.
10371         * gst/gstqueue.c: (gst_queue_chain): Remove noisy g_object_notify()
10372         that I added a few weeks ago.
10373
10374 2004-01-26  David Schleef  <ds@schleef.org>
10375
10376         * gst/gstpad.c: (gst_pad_try_set_caps): Revert last change
10377           making try_set_caps() work with non-fixed caps.
10378
10379 2004-01-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10380
10381         * docs/pwg/advanced_types.xml:
10382         * docs/pwg/intro_basics.xml:
10383         * docs/pwg/intro_preface.xml:
10384         * docs/pwg/pwg.xml:
10385         * docs/pwg/titlepage.xml:
10386           First try to resurrect the PWG. I'm halfway integrating the mimetypes
10387           in here (docs/random/mimetypes), and will from there on work on both
10388           updating outdated parts and adding missing parts.
10389           That doesn't mean I'll fix it completely, but I'll try at least. ;).
10390
10391 2004-01-26  Thomas Vander Stichele  <thomas at apestaart dot org>
10392
10393         * gst/gsterror.h: reinstate GST_LIBRARY_ERROR_ENCODE until
10394           policy is set
10395
10396 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10397
10398         * gst/gstelement.h:
10399           remove gst_element_factory_get_version. It doesn't exist anymore.
10400         * gst/gstplugin.c:
10401         * gst/gstplugin.h:
10402           remove gst_plugin_set_name and change gst_plugin_get_longname to
10403           gst_plugin_get_description to match code.
10404         * gst/gsterror.h:
10405           remove GST_LIBRARY_ERROR_ENCODE. It's GST_STREAM_ERROR_ENCODE.
10406         * gst/gstpad.c: (gst_pad_try_set_caps):
10407           make it work with nonfixed caps.
10408           Note that even in the nonfixed case the link function of the pad
10409           that tries to set caps isn't called.
10410
10411 2004-01-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10412
10413         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
10414           fix bug where buffer was not assembled correctly
10415         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init):
10416           silence by default
10417         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10418           only seek if there's no more buffers that could work without seeking
10419
10420 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10421
10422         * gst/gsttag.c: (_gst_tag_initialize):
10423         * gst/gsttag.h:
10424           Add application tag (for encoding/muxing app).
10425
10426 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10427
10428         * autogen.sh:
10429           make autopoint force, and libtoolize not copy
10430         * common/m4/as-docbook.m4:
10431           added docbook xml catalog setup check
10432         * common/m4/gst-doc.m4:
10433           use docbook check
10434
10435 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10436
10437         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
10438         * gst/gsttag.h:
10439           add GstTagFlag
10440
10441 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10442
10443         * docs/gst/gstreamer-sections.txt:
10444         * docs/gst/tmpl/gst.sgml:
10445         * docs/gst/tmpl/gstbuffer.sgml:
10446         * docs/gst/tmpl/gstclock.sgml:
10447         * docs/gst/tmpl/gstelement.sgml:
10448         * docs/gst/tmpl/gstreamer-unused.sgml:
10449         * docs/gst/tmpl/gstxml.sgml:
10450           sync latest API changes to docs
10451
10452 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10453
10454         * gst/gstpluginfeature.c:
10455           fix doc snippet
10456         * tools/gst-inspect.c: (print_element_list):
10457           fix output of typefind
10458           add GPL header
10459         * tools/gst-launch.c:
10460           add GPL header
10461
10462 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10463
10464         * gst/elements/Makefile.am:
10465         * gst/elements/gstelements.c:
10466         * gst/elements/gsttypefindelement.c:
10467         * gst/elements/gsttypefindelement.h:
10468         * po/POTFILES.in:
10469         * po/fr.po:
10470         * po/nl.po:
10471           renamed gsttypefindelement to gsttypefind, conserving CVS history
10472
10473 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10474
10475         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_list_add_valist):
10476         * gst/gsttag.h:
10477           add some tags used in ogg as well
10478           fix _ in replaygain tags
10479
10480 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10481
10482         * gst/gsterror.h:
10483           fix wrong GST_LIBRARY_ERROR_ENCODE addition
10484
10485 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10486
10487         * gst/gstelement.c: (gst_element_error_full):
10488         * gst/gstelement.h:
10489           change _extended to _full
10490
10491 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10492
10493         reviewed by: <delete if not using a buddy>
10494
10495         * docs/gst/tmpl/gst.sgml:
10496         * docs/gst/tmpl/gstbuffer.sgml:
10497         * docs/gst/tmpl/gstclock.sgml:
10498         * docs/gst/tmpl/gstelement.sgml:
10499         * docs/gst/tmpl/gstreamer-unused.sgml:
10500         * docs/gst/tmpl/gstxml.sgml:
10501         * gst/gstelement.c: (gst_element_error_full):
10502         * gst/gstelement.h:
10503
10504 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10505
10506         * gst/gstelement.h: fix _gst_element_error_printf prototype
10507
10508 2004-01-20  David Schleef  <ds@schleef.org>
10509
10510         * gst/gststructure.c: (gst_structure_to_string):
10511         Convert function to use gst_value_serialize().
10512         * gst/gstvalue.c: (gst_value_serialize_list),
10513         (gst_value_serialize_fourcc), (gst_value_serialize_int_range),
10514         (gst_value_serialize_double_range), (gst_value_serialize_boolean),
10515         (gst_value_serialize_int), (gst_value_serialize_double),
10516         (gst_string_wrap), (gst_value_serialize_string),
10517         (gst_value_serialize), (gst_value_deserialize):
10518         * gst/gstvalue.h:
10519         Add implementations for serialize.
10520
10521 2004-01-20  Julien MOUTTE  <julien@moutte.net>
10522
10523         * gst/gsterror.h: xvidenc.c needs GST_LIBRARY_ERROR_ENCODE. Dunno if
10524         we want to keep that one in the future or change xvidenc.c to use 
10525         another error.
10526
10527 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10528
10529         * gst/gstelement.c: (_gst_element_error_printf):
10530         * gst/gstelement.h:
10531           privatise function
10532
10533 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10534
10535         * docs/random/error:
10536           doc explaining error system
10537         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
10538           cleanup
10539
10540 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10541
10542         * gst/gst-i18n-app.h:
10543         * gst/gst-i18n-lib.h:
10544           remove inclusion of config.h
10545         * po/POTFILES.in:
10546         * po/nl.po:
10547           add gst/gstelement.c
10548
10549 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10550
10551         * po/nl.po: updated Dutch translation
10552
10553 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10554
10555         * gst/gsterror.c: (_gst_core_errors_init),
10556         (_gst_library_errors_init), (_gst_resource_errors_init),
10557         (_gst_stream_errors_init):
10558         remove ending punctuation dots
10559
10560 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10561
10562         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
10563         * gst/elements/gstfilesrc.c: (gst_filesrc_get_read):
10564         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10565         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10566         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10567         use GST_ERROR_SYSTEM
10568
10569 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10570
10571         * gst/gstelement.c: (gst_element_error_printf),
10572         (gst_element_error_extended):
10573         * gst/gstelement.h:
10574           add a helper printf function so we can have NULL values passed.
10575
10576 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10577
10578         * gst/gstelement.h:
10579           add G_STMT macros to gst_element_error, which isn't strictly
10580           necessary but people tell me to anyway.
10581
10582 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
10583
10584         * gst/Makefile.am:
10585         * gst/autoplug/gstspideridentity.c:
10586         (gst_spider_identity_sink_loop_type_finding):
10587         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10588         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10589         (gst_filesink_close_file), (gst_filesink_handle_event),
10590         (gst_filesink_chain):
10591         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property),
10592         (gst_filesrc_map_region), (gst_filesrc_get_read),
10593         (gst_filesrc_open_file):
10594         * gst/elements/gstidentity.c: (gst_identity_chain):
10595         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10596         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10597         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10598         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
10599         * gst/gst.h:
10600         * gst/gst_private.h:
10601         * gst/gstelement.c: (gst_element_class_init),
10602         (gst_element_default_error), (gst_element_error_func),
10603         (gst_element_error_extended):
10604         * gst/gstelement.h:
10605         * gst/gsterror.c: (_gst_core_errors_init),
10606         (_gst_library_errors_init), (_gst_resource_errors_init),
10607         (_gst_stream_errors_init), (gst_error_get_message):
10608         * gst/gsterror.h:
10609         * gst/gstinfo.c: (_gst_debug_init):
10610         * gst/gstmarshal.list:
10611         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10612         (gst_pad_recover_caps_error), (gst_pad_pull):
10613         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10614         * gst/schedulers/gstbasicscheduler.c:
10615         (gst_basic_scheduler_chainhandler_proxy),
10616         (gst_basic_scheduler_gethandler_proxy),
10617         (gst_basic_scheduler_cothreaded_chain):
10618         * po/POTFILES.in:
10619         * po/fr.po:
10620         * po/nl.po:
10621           change error signal
10622           add error categories
10623
10624 2004-01-18  Jeremy Simon  <jesimon@libertysurf.fr>
10625
10626         * gst/gsttag.c: (_gst_tag_initialize):
10627         * gst/gsttag.h:
10628         Add replaygain tag
10629
10630 2004-01-18  Colin Walters  <walters@verbum.org>
10631
10632         * examples/retag/retag.c: Call gst_init before processing
10633         program args.  Add g_assert to _link_many call.
10634
10635 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10636
10637         * gst/gstpad.c: (gst_pad_alloc_buffer):
10638           Return a newly allocated buffer when the pad has no peer.
10639
10640 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10641
10642         * gst/gstclock.c: (gst_clock_get_time):
10643           make it compile with gcc 2.95 again.
10644           Patch by Scott Wheeler
10645
10646 2004-01-15  David Schleef  <ds@schleef.org>
10647
10648         * gst/gstcaps.h:
10649         Added gst_caps_is_simple() macro.
10650         * testsuite/caps/caps.c: (test1):
10651         * testsuite/caps/intersect2.c: (main):
10652         * testsuite/caps/intersection.c: (main):
10653         Fixes to make 'make check' work again after removing
10654         gst_caps_is_chained().
10655
10656 2004-01-15  Leif Johnson <leif@ambient.2y.net>
10657
10658         * docs/random/uraeus/gstreamer_and_midi.txt: Rather large edits
10659         and additions to the MIDI document.
10660
10661 2004-01-15  David Schleef  <ds@schleef.org>
10662
10663         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered),
10664         (gst_element_link_pads_filtered): Use GST_PAD_ macros instead
10665         of GST_RPAD_, since we don't know if it's a real or ghost pad.
10666
10667 2004-01-15  David Schleef  <ds@schleef.org>
10668
10669         * gst/gstqueue.c:
10670         * gst/gstqueue.h:
10671         Fix the spelling of "treshold" and make min_threshold actually
10672         affect the queue.
10673
10674 2004-01-15  David Schleef  <ds@schleef.org>
10675
10676         * gst/gstcaps.c:
10677         Add lots of documentation.
10678         * gst/gstcaps.h:
10679         Deprecate a few functions.
10680         * gst/gstpad.c:
10681         Removed use of deprecated functions.
10682
10683 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10684
10685         * gst/gstpad.c: (gst_pad_is_linked):
10686         * gst/gstpad.h:
10687           implement gst_pad_is_linked
10688         * gst/gstelement.h:
10689           reserve space for initiate_state_change
10690
10691 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10692
10693         * gst/autoplug/gstspideridentity.c:
10694         (gst_spider_identity_sink_loop_type_finding):
10695           break infinite loop by just returning instead of looping
10696         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_set_property):
10697           set event time difference correctly. Set it to 1 second instead
10698           of 100ms to be more tolerant
10699         * gst/gstelement.c: (gst_element_set_time):
10700           add debugging output
10701
10702 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10703
10704         * gst/gstqueue.c: (gst_queue_getcaps), (gst_queue_link):
10705           query if buffers are inside the pool, ignore events
10706
10707 2004-01-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10708
10709         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
10710         (gst_clock_set_speed), (gst_clock_set_active),
10711         (gst_clock_is_active), (gst_clock_reset),
10712         (gst_clock_handle_discont):
10713         * gst/gstclock.h:
10714           deprecate old interface and disable functions that aren't in use
10715           anymore.
10716         * gst/gstelement.h:
10717         * gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
10718         (gst_element_set_time), (gst_element_adjust_time):
10719           add concept of "element time" and functions to get/set this time.
10720         * gst/gstelement.c: (gst_element_change_state):
10721           update element time correctly.
10722         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
10723           This is a debug message, not a g_critical.
10724         * gst/gstpad.c: (gst_pad_event_default):
10725           handle discontinuous events right with element time.
10726         * gst/gstscheduler.c: (gst_scheduler_state_transition):
10727           update to clocking fixes.
10728           set clocks on elements in READY=>PAUSED. The old behaviour caused
10729           a wrong element time on the first element that started playing.
10730         * gst/schedulers/gstbasicscheduler.c:
10731         (gst_basic_scheduler_class_init):
10732         * gst/schedulers/gstoptimalscheduler.c:
10733         (gst_opt_scheduler_class_init):
10734           remove code that just implements the default behaviour.
10735         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
10736           update to use new clocking functions
10737         * testsuite/clock/clock1.c: (gst_clock_debug), (main):
10738         * testsuite/clock/clock2.c: (gst_clock_debug), (main):
10739           update to test new element time.
10740         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
10741           use _get_allowed_caps instead of _get_caps. This catches filtered
10742           caps correctly.
10743         * testsuite/debug/commandline.c:
10744           update for new GST_DEBUG syntax.
10745         * testsuite/threads/Makefile.am:
10746           disable a test that only works sometimes.
10747
10748 2004-01-13  Julien MOUTTE <julien@moutte.net>
10749
10750         * po/LINGUAS: Adding fr.
10751         * po/fr.po: Adding french translation.
10752
10753 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10754
10755         * gst/parse/grammar.y:
10756         * po/POTFILES.in:
10757         * po/nl.po:
10758         * tools/gst-launch.c: (xmllaunch_parse_cmdline), (main):
10759           translate parsing error messages
10760
10761 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10762
10763         * po/POTFILES.in: adding gst-launch
10764         * po/nl.po: updated translation, all 99 strings translated
10765         * tools/gst-launch.c: (idle_func), (xmllaunch_parse_cmdline),
10766         (found_tag), (sigint_handler_sighandler), (play_handler), (main):
10767           fix strings for translation
10768
10769 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10770
10771         * gst/gst.c:
10772           - capitalize beginnings of popt options
10773           - fix strings for translation
10774           - change gst-debug format from =N1=V1:N2=V2 to =N1:V1,N2:V2
10775
10776 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10777
10778         * po/README: add some notes on how to update translations
10779
10780 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10781
10782         * ABOUT-NLS: removed, is autogenerated from autopoint
10783         * autogen.sh: add autopoint stuff
10784         * configure.ac: fix up gettext stuff
10785         * gst/Makefile.am: add i18n headers to noinst_HEADERS
10786         * gst/elements/gsttypefindelement.c: add header include
10787         * gst/gettext.h: add header, copy from system-installed header
10788         * gst/gst-i18n-app.h: to be included by each app having translations
10789         * gst/gst-i18n-lib.h: to be included by each lib having translations
10790         * gst/gst.c: (init_pre): fix up gettext calls
10791         * gst/gst_private.h: remove i18n stuff, moving to separate headers
10792         * po/LINGUAS: the new way to specify translations present
10793         * po/Makefile.in.in: removed from cvs, autogenerated from autopoint
10794         * po/Makevars: the variables filled in for GStreamer
10795         * po/POTFILES.in: added new files with translations
10796         * po/de.po: has new strings
10797         * po/nl.po: readded, has new strings
10798
10799 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10800
10801         * gst/gsttag.c: fix some strings marked for translation
10802
10803 2004-01-13  Iain <iain@prettypeople.org>
10804
10805         * gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
10806         group when we add an element to it, cos we unref it when we remove one
10807
10808 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10809
10810         * testsuite/debug/commandline.c: (debug_not_reached):
10811         * testsuite/debug/output.c: (check_message):
10812           fix testsuite
10813
10814 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10815
10816         * examples/cutter/.cvsignore:
10817         * examples/helloworld/.cvsignore:
10818         * examples/launch/.cvsignore:
10819         * examples/manual/.cvsignore:
10820         * examples/mixer/.cvsignore:
10821         * examples/pingpong/.cvsignore:
10822         * examples/plugins/.cvsignore:
10823         * examples/queue/.cvsignore:
10824         * examples/queue2/.cvsignore:
10825         * examples/queue3/.cvsignore:
10826         * examples/queue4/.cvsignore:
10827         * examples/retag/.cvsignore:
10828         * examples/thread/.cvsignore:
10829         * examples/typefind/.cvsignore:
10830         * examples/xml/.cvsignore:
10831         * gst/.cvsignore:
10832         * gst/autoplug/.cvsignore:
10833         * gst/elements/.cvsignore:
10834         * gst/indexers/.cvsignore:
10835         * gst/parse/.cvsignore:
10836         * gst/registries/.cvsignore:
10837         * gst/schedulers/.cvsignore:
10838         * libs/gst/bytestream/.cvsignore:
10839         * libs/gst/control/.cvsignore:
10840         * libs/gst/getbits/.cvsignore:
10841         * tests/.cvsignore:
10842         * tests/bufspeed/.cvsignore:
10843         * tests/instantiate/.cvsignore:
10844         * tests/memchunk/.cvsignore:
10845         * tests/muxing/.cvsignore:
10846         * tests/sched/.cvsignore:
10847         * tests/seeking/.cvsignore:
10848         * tests/threadstate/.cvsignore:
10849         * testsuite/.cvsignore:
10850         * testsuite/caps/.cvsignore:
10851         * testsuite/cleanup/.cvsignore:
10852         * testsuite/dynparams/.cvsignore:
10853         * testsuite/plugin/.cvsignore:
10854         * tools/.cvsignore:
10855           update - this is huge, because it includes *.bb, *.bbg and *.da files
10856           which are generated for gcov.
10857
10858 2004-01-11  David Schleef  <ds@schleef.org>
10859
10860         * gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
10861         a function to parse integers in ways that strto[u]l() does not.
10862
10863 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10864
10865         * tools/gst-inspect.c: (print_caps):
10866           improve output of caps a bit
10867
10868 2004-01-11  David Schleef  <ds@schleef.org>
10869
10870         * gst/gstbuffer.c: (gst_buffer_create_sub): Subbuffers should
10871         inherit correct flags (READONLY and DONTKEEP).
10872
10873 2004-01-11  David Schleef  <ds@schleef.org>
10874
10875         * gst/elements/gstfilesrc.c: (gst_filesrc_free_parent_mmap),
10876         (gst_filesrc_map_region):
10877         * gst/gstbuffer.c: (_gst_buffer_initialize),
10878         (_gst_buffer_sub_free), (gst_buffer_default_copy),
10879         (gst_buffer_new), (gst_buffer_create_sub),
10880         (gst_buffer_is_span_fast), (gst_buffer_span):
10881         * gst/gstbuffer.h:
10882         Change GstBuffer private structure element names. (all files)
10883         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
10884         (gst_queue_link):
10885         * gst/gstqueue.h:
10886         Implement getcaps/pad_link functions that handle the case where
10887         there are data in the queue.
10888
10889 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10890
10891         * gst/elements/gstbufferstore.c:
10892           initialize debugging structure correctly
10893         * gst/elements/gsttee.c: (gst_tee_set_property):
10894           g_object_notify when property was changed
10895         * gst/elements/gsttypefindelement.c:
10896         (gst_type_find_element_change_state):
10897           clear caps correctly
10898
10899 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10900
10901         * gst/gstqueue.c: (gst_queue_init):
10902           Use better defaults for when a queue should block. This
10903           gets rid of jerky playback for quite a few files.
10904           It takes more memory.
10905
10906 2004-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10907
10908         (gst_xml_registry_parse_padtemplate):
10909           make critical message slightly more useful
10910
10911 2004-01-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10912
10913         * gst/gstinfo.c: (gst_debug_log), (gst_debug_log_valist),
10914         (gst_debug_message_get), (gst_debug_log_default):
10915         * gst/gstinfo.h:
10916           Change gst_debug_log(_valist) to take a const format string.
10917           Change prototype of log function and functions using those to 
10918           take a GstDebugMessage instead of a string that requires using
10919           gst_debug_message_get.
10920
10921 2004-01-08  David Schleef  <ds@schleef.org>
10922
10923         * Makefile.am:
10924         * configure.ac:
10925         Add option --enable-gcov to build GStreamer with -fprofile-arcs
10926         and -ftest-coverage, which allows gcov to show information about
10927         testsuite coverage.
10928
10929 2004-01-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10930
10931         * gst/gstutils.h:
10932           Add GST_BOILERPLATE(_FULL), GST_PARENT_CALL and
10933           GST_PARENT_CALL_WITH_DEFAULT
10934         * gst/elements/gstaggregator.c: 
10935         * gst/elements/gstbufferstore.c: 
10936         * gst/elements/gstfakesink.c: 
10937         * gst/elements/gstfakesrc.c: 
10938         * gst/elements/gstfdsink.c: 
10939         * gst/elements/gstfdsrc.c: 
10940         * gst/elements/gstfilesink.c: 
10941         * gst/elements/gstfilesrc.c: 
10942         * gst/elements/gstidentity.c: 
10943         * gst/elements/gstmd5sink.c: 
10944         * gst/elements/gstmultidisksrc.c:
10945         * gst/elements/gstpipefilter.c: 
10946         * gst/elements/gstshaper.c:
10947         * gst/elements/gststatistics.c:
10948         * gst/elements/gsttee.c:
10949         * gst/elements/gsttypefindelement.c:
10950           use them.
10951
10952 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
10953
10954         * docs/gst/gstreamer-docs.sgml: remove props
10955         * docs/gst/gstreamer-sections.txt: remove props
10956         * docs/gst/tmpl/gst.sgml:
10957         * docs/gst/tmpl/gstbin.sgml:
10958         * docs/gst/tmpl/gstbuffer.sgml:
10959         * docs/gst/tmpl/gstcaps.sgml:
10960         * docs/gst/tmpl/gstclock.sgml:
10961         * docs/gst/tmpl/gstelement.sgml:
10962         * docs/gst/tmpl/gstindex.sgml:
10963         * docs/gst/tmpl/gstobject.sgml:
10964         * docs/gst/tmpl/gstpad.sgml:
10965         * docs/gst/tmpl/gstpadtemplate.sgml:
10966         * docs/gst/tmpl/gstreamer-unused.sgml:
10967         * docs/gst/tmpl/gstthread.sgml:
10968         * docs/gst/tmpl/gstxml.sgml:
10969           sync with code reorganization
10970
10971 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
10972
10973         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
10974         Make the 'Could not find compatible pad' message more informative.
10975
10976 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10977                                                                                 
10978         * gst/elements/gstfilesink.c: (gst_filesink_set_location):
10979           Fix for if we pass NULL as property to location.
10980         * gst/elements/gstpipefilter.c: (gst_pipefilter_init),
10981         (gst_pipefilter_handle_event), (gst_pipefilter_chain):
10982           Fix for instantiate-test (see below).
10983         * gst/gststructure.c: (_gst_structure_parse_value):
10984           Fix compile error on gcc-2.96.
10985         * configure.ac:
10986         * tests/Makefile.am:
10987         * tests/instantiate/Makefile.am:
10988         * tests/instantiate/create.c: (create_all_elements), (main):
10989           Add a test that instantiates all elements. This makes it easy to
10990           track dead code for old API/design (like setting event functions
10991           on sink pads and so on).
10992
10993 2004-01-06  Jan Schmidt  <thaytan@mad.scientist.com>
10994
10995         * gst/gstcaps.c: (gst_caps_append_structure):
10996           Move the poisoning to allow a NULL structure
10997         * gst/gstevent.c: (_gst_event_free):
10998           When freeing a navigation event, free the structure
10999           also
11000
11001 2004-01-04  David Schleef  <ds@schleef.org>
11002
11003         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11004         Remove usage of gst_pad_proxy_fixate.
11005         * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
11006         (gst_caps_split_one), (gst_caps_replace):
11007         Add poisoning code.
11008         * gst/gstmarshal.list:
11009         Add pointer__pointer for fixate signal
11010         * gst/gstpad.c: (gst_real_pad_class_init),
11011         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
11012         (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
11013         (gst_pad_set_explicit_caps), (gst_pad_template_new):
11014         Add poisoning code. Add fixate signal on RealPad. Change
11015         set_explicit_caps() to take const GstCaps, like try_set_caps().
11016         * gst/gstpad.h:
11017         * testsuite/caps/Makefile.am:
11018         * testsuite/caps/app_fixate.c: Add a test for the fixate signal
11019
11020 2004-01-03  David Schleef  <ds@schleef.org>
11021
11022         * gst/elements/gsttypefindelement.c:
11023         (gst_type_find_element_have_type), (gst_type_find_element_init):
11024         Use gst_pad_use_explicit_caps for src pad.
11025         * gst/gstpad.c: (gst_pad_try_set_caps):  Check that link exists
11026         before using it.
11027
11028 2004-01-03  David Schleef  <ds@schleef.org>
11029
11030         * gst/gstelement.c: (gst_element_link_pads_filtered),
11031         (gst_element_negotiate_pads): Fix to allow DELAYED to indicate
11032         that linking was successful.
11033         * gst/gstpad.c: (gst_pad_link_free),
11034         (gst_pad_link_call_link_functions), (gst_pad_link_negotiate),
11035         (gst_pad_link_try), (gst_pad_link_unnegotiate),
11036         (gst_pad_unnegotiate), (gst_pad_set_explicit_caps): Pass
11037         GstPadLinkReturn correctly between functions, and don't fail
11038         when DELAYED is used (DELAYED is very important).  Better
11039         cleanup on unlinking and unnegotiation.  Should fix some spider
11040         bugs.
11041
11042 2004-01-02  David Schleef  <ds@schleef.org>
11043
11044         * gst/gstelement.c: (gst_element_class_init),
11045         (gst_element_base_class_init): ->padtemplates should be cleared
11046         in base_init, since we need to have a fresh list for every
11047         class.  (Alternately, we chould copy the list and share the
11048         actual pad templates (not the list), but that would require
11049         changing every plugin to move pad template registration from
11050         base_init to class_init.)
11051
11052 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11053
11054         * gst/gstelement.c: (gst_element_class_add_pad_template):
11055           Refuse registering a pad template if another pad template
11056           with the same name already exists (#114715).
11057
11058 2004-01-02  David Schleef  <ds@schleef.org>
11059
11060         * gst/gstcaps.c: (_gst_structure_is_equal_foreach),
11061         (gst_caps_is_equal_fixed): Add new function.
11062         * gst/gstcaps.h: ditto.
11063         * gst/gstpad.c: (gst_real_pad_class_init),
11064         (gst_pad_link_call_link_functions), (gst_pad_try_set_caps),
11065         (gst_pad_set_explicit_caps), (gst_pad_get_caps):  In try_set_caps,
11066         check new caps against existing caps -- if they're the same, return
11067         OK without renegotiating.  caps-nego-failed signal fixed so that
11068         the marshaller isn't VOID__OBJECT.  Also changed to G_TYPE_POINTER
11069         to save an extra caps copy.  Don't complete negotiation if a pad
11070         link function returns DELAYED.
11071
11072 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11073
11074         * gst/gstpad.c: (gst_pad_try_relink_filtered):
11075           Fix wrong g_return_if_fail
11076
11077 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
11078
11079         * gst/gstbin.c: (gst_bin_class_init):
11080         Change the marshalling of element_added/element_removed
11081         to use gst_marshal_VOID__OBJECT, since gst_marshal_VOID__POINTER 
11082         complains that GST_TYPE_ELEMENT is not G_TYPE_POINTER
11083
11084 2004-01-01  David Schleef  <ds@schleef.org>
11085
11086         * gst/gstpad.c: (gst_pad_set_explicit_caps),
11087         (gst_pad_explicit_getcaps), (gst_pad_explicit_link),
11088         (gst_pad_use_explicit_caps):
11089         * gst/gstpad.h:
11090         Add new functions.  gst_pad_use_explicit_caps() sets up a pad
11091         to use an internal getcaps and link fuction so that negotiation
11092         always results in the explicitly set caps.
11093         gst_pad_set_explicit_caps() sets the explicit caps.  These functions
11094         are particularly useful for decoders.
11095
11096 2003-12-31  David Schleef  <ds@schleef.org>
11097
11098         * gst/elements/gstidentity.c: (gst_identity_class_init),
11099         (gst_identity_init), (gst_identity_chain),
11100         (gst_identity_set_property), (gst_identity_get_property):
11101         * gst/elements/gstidentity.h:
11102         * gst/gstqueue.c: (gst_queue_init):
11103           Negotiation fixes.
11104
11105 2003-12-31  David Schleef  <ds@schleef.org>
11106
11107         * gst/gstcaps.c: (gst_caps_intersect),
11108         (_gst_caps_normalize_foreach), (gst_caps_normalize):
11109           Implement gst_caps_normalize().
11110         * testsuite/caps/normalisation.c: (main):
11111           Add an additional test
11112
11113 2003-12-31  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11114
11115         * gst/gstqueue.c: (gst_queue_init):
11116           use gst_pad_proxy_getcaps()
11117
11118 2003-12-31  David Schleef  <ds@schleef.org>
11119
11120         * gst/elements/gstshaper.c: (gst_shaper_link):
11121         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11122         * gst/gstqueue.c: (gst_queue_link):
11123           Negotiation fixes.
11124
11125 2003-12-31  David Schleef  <ds@schleef.org>
11126
11127         * gst/gstpad.c: (gst_pad_proxy_pad_link), (gst_pad_proxy_fixate):
11128         * gst/gstpad.h: Add functions that are useful as default pad
11129         link and fixate functions for elements.
11130
11131 2003-12-30  David Schleef  <ds@schleef.org>
11132
11133         * gst/gstpad.c: (gst_pad_link_try):
11134           Fix segfault when attempting to return to old caps
11135
11136 2003-12-29  David Schleef  <ds@schleef.org>
11137
11138         * gst/gstcaps.c: (gst_caps_normalize), (simplify_foreach),
11139         (gst_caps_structure_simplify), (gst_caps_simplify):
11140         * gst/gstcaps.h:
11141           Add simplify function
11142         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
11143         (gst_pad_perform_negotiate), (gst_pad_is_negotiated):
11144         * gst/gstpad.h:
11145           Copy over srcnotify, sinknotify when calling old pad_link
11146           functions.  Add new is_negotiated() function.
11147         * gst/gststructure.c: (gst_structure_copy):
11148           Fix an incredibly stupid bug that should have been noticed
11149           weeks ago.  _copy() returned the argument, not the new copy.
11150
11151 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11152
11153         * gst/gstcaps.c: (gst_caps_append):
11154           add sanity checks
11155         * gst/gstcaps.h: (gst_caps_debug):
11156           remove, it doesn't exist anymore.
11157         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
11158         (gst_element_threadsafe_properties_post_run):
11159           make debugging messages not clutter up THREAD debug category
11160         (gst_element_negotiate_pads), (gst_element_clear_pad_caps),
11161         (gst_element_change_state):
11162           update to new caps API
11163         * gst/gstinterface.c: (gst_implements_interface_cast):
11164           don't put vital code in g_return_if_fail
11165         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps), 
11166         (gst_pad_link_filtered):
11167           add pst_pad_try_link and use it.
11168         (gst_pad_perform_negotiate), (gst_pad_renegotiate):
11169           implement correctly, deprecate first one.
11170         (gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
11171           add and implement.
11172         (gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
11173           implement.
11174         (gst_pad_get_negotiated_caps):
11175           add and implement. Make GST_PAD_CAPS call this function.
11176         (gst_pad_get_caps):
11177           remove unneeded check..
11178         (gst_pad_recover_caps_error):
11179           disable, always return FALSE.
11180         (gst_real_pad_dispose):
11181           don't free caps and appfilter anymore, they're unused.
11182         * gst/gstpad.h:
11183           Reflect changes mentioned above.
11184         * gst/gstsystemclock.c: (gst_system_clock_wait):
11185           Make 'clock is way behind' a debugging message.
11186         * gst/gstthread.c: (gst_thread_change_state):
11187           Fix debugging message
11188
11189 2003-12-25  Thomas Vander Stichele  <thomas at apestaart dot org>
11190
11191         * gst/gstinfo.h:
11192           fix GST_DEBUG_CATEGORY_INIT gtk-doc description
11193         * docs/gst/tmpl/gstreamer-unused.sgml:
11194           removed all traces of cvs conflicts
11195
11196 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11197
11198         * configure.ac:
11199         * gst/schedulers/cothreads_compat.h:
11200         * libs/Makefile.am:
11201           remove last instances of wingo cothread usage
11202
11203 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11204
11205         * gst/gstplugin.c:
11206         * gst/gstversion.h.in:
11207         * gst/parse/grammar.y:
11208           change comment block from /** to /* when not gtk-doc comments
11209
11210 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11211
11212         * gst/gst.c: whitespace and doc style fixes
11213
11214 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11215
11216         * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
11217
11218 2003-12-24  Colin Walters  <walters@verbum.org>
11219
11220         * gst/elements/gsttypefindelement.c:
11221           gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
11222           Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
11223           Don't double-free caps.
11224
11225 2003-12-23  David Schleef  <ds@schleef.org>
11226
11227         * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
11228           gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
11229           Many little fixes and additions of debug statements to
11230           get rhythmbox working.
11231
11232 2003-12-23  Colin Walters  <walters@verbum.org>
11233
11234         * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
11235         Use GST_PAD_LINK_SUCCESSFUL.
11236
11237 2003-12-23  David Schleef  <ds@schleef.org>
11238
11239         * gst/elements/gstaggregator.c:
11240         * gst/elements/gsttee.c:
11241           Use gst_pad_proxy_getcaps().
11242         * gst/gstpad.c:
11243         * gst/gstpad.h:
11244           Add gst_pad_proxy_getcaps(), which filter elements can use
11245           as a generic getcaps implementation.
11246           Fix gst_pad_get_allowed_caps().  It just wasn't doing what
11247           was advertised.
11248
11249 2003-12-23  David Schleef  <ds@schleef.org>
11250
11251         * gst/gstpad.c:
11252           Rearrange/rewrite much of the pad negotiation code, since it
11253           resembled pasta.  This actually changes the way some
11254           negotiation works, since the previous code was inconsistent
11255           depending on how it was invoked.  Add (internal) structure
11256           GstPadLink, which is used to hold some information (more in
11257           the future) about the link between two pads.  Fixes a number
11258           of bugs, including random lossage of filter caps when the
11259           initial negotiation is delayed.  A few functions are still
11260           unimplemented.
11261         * gst/gstpad.h:
11262           Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros.  Please use
11263           these when testing GstPadLinkReturn values instead of comparing
11264           directly.
11265
11266 2003-12-23  David Schleef  <ds@schleef.org>
11267
11268         * gst/gstvalue.c: 
11269         * gst/gstvalue.h:
11270           Rearrange lots of code.  Change registration of compare function
11271           into registration of compare/serialize/deserialize functions.
11272           Doesn't include implementation of gst_value_[de]serialize(),
11273           but that should be easy.
11274
11275 2003-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11276
11277         * docs/gst/gstreamer-sections.txt:
11278         * docs/gst/tmpl/gstprops.sgml: removed
11279         * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
11280           David removed props and caps code, so let's remove their docs as well.
11281           Removed all no longer existing symbols from gstreamer-sections.txt
11282           
11283 2003-12-22  Colin Walters  <walters@verbum.org>
11284
11285         * gst/gsttaginterface.c, gst/gsttaginterface.h,
11286           gst/gsttag.c, gst/gsttag.h:  Add interface to setting GValues
11287           of tags directly.
11288
11289 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11290
11291         * gst/elements/gstelements.c:
11292           Set ranks of elements to NONE, so the autoplugger doesn't use them.
11293         * gst/elements/gstshaper.c: (gst_shaper_getcaps):
11294           Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
11295           gst_caps (peer).
11296
11297 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11298
11299         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
11300         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
11301         (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
11302         (gst_spider_identity_sink_loop_type_finding):
11303         * gst/autoplug/gstspideridentity.h:
11304           Fix autoplugging in spider element, so it works with new caps.
11305           This was mainly caused by identifying empty caps incorrectly.
11306
11307 2003-12-22  David Schleef  <ds@schleef.org>
11308
11309         * gststructure.c, gstvalue.c, gstvalue.h: Add
11310           gst_value_init_and_copy() and use it, to avoid silly mistakes in
11311           using g_value_copy()
11312
11313 2003-12-21  David Schleef  <ds@schleef.org>
11314
11315         * many, many files: Merge CAPS branch.  This includes:
11316           - implemention of GstValue and several GstValue types
11317           - implemention of GstStructure
11318           - entire rewrite of GstCaps
11319           - removal of GstProps
11320           - many changes to GstPad to compensate for new caps paradigm
11321           - removal of GstBufferpool
11322         * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
11323         gstvalue.h, gst/gstcaps[2]*.[ch]:
11324           - rename gstcaps2.[ch] to gstcaps.[ch]
11325
11326 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11327
11328         * gst/gstqueue.c: (gst_queue_handle_pending_events),
11329         (gst_queue_chain), (gst_queue_handle_src_event):
11330           implement timeout for sending events. Workaround for if the
11331           pipeline on this queue is not passing any data.
11332
11333 2003-12-21  Ronald Bultje <rbultje@ronald.bitfreak.net>
11334                                                                                 
11335         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
11336         * moved CVS to freedesktop.org
11337