move over a value_serialize test
[platform/upstream/gstreamer.git] / ChangeLog
1 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
2
3         * check/Makefile.am:
4         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite), (main):
5         * testsuite/Makefile.am:
6         * testsuite/caps/Makefile.am:
7         * testsuite/caps/value_serialize.c:
8         * testsuite/test_gst_init.c:
9           move a value_serialize test over
10
11 2005-06-20  Wim Taymans  <wim@fluendo.com>
12
13         * gst/gstpad.c:
14         Small doc updates.
15         
16         * gst/gstvalue.c: (gst_value_compare_buffer),
17         (gst_value_serialize_buffer), (gst_value_deserialize_buffer),
18         (gst_value_compare_flags), (gst_value_serialize_flags),
19         (gst_value_deserialize_flags), (_gst_value_initialize):
20         Fix serialisation of buffers, they are not boxed types anymore
21
22 2005-06-20  Wim Taymans  <wim@fluendo.com>
23
24         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
25         Testcase to show error in buffer-on-caps serialisation.
26
27 2005-06-20  Andy Wingo  <wingo@pobox.com>
28
29         * docs/random/wingo/porting-plugins-to-0.9: A pitiful document I
30         will be adding to later.
31
32         * gst/gstsystemclock.c (gst_system_clock_init): Unlock the clock
33         if its socks fill with rocks.
34         (gst_system_clock_obtain): Set the name on object construction.
35         Avoid double-checked locking.
36
37 2005-06-20  Tim-Philipp Müller  <tim at centricular dot net>
38
39         * gst/gsturi.c: (gst_element_make_from_uri):
40           Fix potential endless loop.
41
42 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
43
44         * check/Makefile.am:
45           add gsttag
46         * check/gst/gsttag.c: (check_tags), (START_TEST), (gst_tag_suite),
47         (main):
48           move over from testsuite dir and clean up
49         * configure.ac:
50         * gst/gsttag.c:
51         * testsuite/Makefile.am:
52         * testsuite/tags/.cvsignore:
53         * testsuite/tags/Makefile.am:
54         * testsuite/tags/merge.c:
55           remove testsuite/tags
56
57 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
58
59         * docs/gst/gstreamer-sections.txt:
60         * docs/gst/tmpl/gstenumtypes.sgml:
61         * win32/gstenumtypes.c:
62           clean up documentation build a little
63
64 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
65
66         * check/gstcheck.h:
67           add macros for checking refcounts on objects and caps
68         * check/gst/gstpad.c: (START_TEST), (gst_pad_suite):
69           add some more unit tests
70         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
71         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_allowed_caps):
72           fix leaked refcounts (I hope :)) so unittest works
73         * gst/gstpad.h:
74           whitespace removal
75
76 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
77
78         * configure.ac: back to HEAD
79
80 === release 0.9.1 ===
81
82 2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
83
84         * NEWS:
85         * RELEASE:
86           updated
87
88 2005-06-17  Andy Wingo  <wingo@pobox.com>
89
90         * gst/base/gstbasesink.c (gst_basesink_chain): Remove bogus
91         assert; it's always possible that the pad gets deactivated in
92         between the checks in gstpad.c and the implementation. Rely on
93         finish_preroll() to return a FLUSHING or similar instead of on the
94         assert.
95         
96         * gst/base/gstbasesink.c (gst_basesink_event): Only wait for the
97         clock and post an EOS message if we come out of finish_preroll in
98         the playing state.
99
100 2005-06-16  David Schleef  <ds@schleef.org>
101
102         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
103         (gst_capsfilter_set_property): Allow NULL as possible value
104         for filter_caps property, indicating GST_CAPS_ANY.
105
106 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
107
108         * gst/elements/gstfakesrc.c: (gst_fakesrc_create):
109           fix debug output
110         * gst/schedulers/Makefile.am:
111           use libgst prefix
112         * gstreamer.spec.in:
113           fix spec for it
114
115 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
116
117         * gstreamer.spec.in:
118           clean up
119
120 2005-06-08  Andy Wingo  <wingo@pobox.com>
121
122         * gst/gstutils.c: RPAD fixes all around.
123         (gst_element_link_pads): Refcounting fixes.
124
125         * tools/gst-inspect.c:
126         * tools/gst-xmlinspect.c:
127         * parse/grammar.y:
128         * gst/base/gsttypefindhelper.c:
129         * gst/base/gstbasesink.c:
130         * gst/gstqueue.c: RPAD fixes.
131
132         * gst/gstghostpad.h:
133         * gst/gstghostpad.c: New ghost pad implementation as full proxy
134         pads. The tricky thing is they provide both source and sink
135         interfaces, since they proxy the internal pad for the external
136         pad, and vice versa. Implement with lower-level ProxyPad objects,
137         with the interior proxy pad as a child of the exterior ghost pad.
138         Should write a doc on this.
139         
140         * gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
141         (gst_pad_set_name, gst_pad_set_parent): Macros removed, use
142         gst_object API.
143         
144         * gst/gstpad.c: Big changes. No more stub base GstPad, now all
145         pads are real pads. No ghost pads in this file. Not documenting
146         the myriad s/RPAD/PAD/ and REALIZE fixes.
147         (gst_pad_class_init): Add properties for "direction" and
148         "template". Both are construct-only, so they can't change during
149         the life of the pad. Fixes properly deriving from GstPad.
150         (gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
151         derived objects, just set properties when creating the objects via
152         g_object_new.
153         (gst_pad_get_parent): Implement as a function, return NULL if the
154         parent is not an element.
155         (gst_pad_get_real_parent, gst_pad_add_ghost_pad)
156         (gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
157         
158         * gst/gstobject.c (gst_object_class_init): Make name a construct
159         property. Don't set it in the object init.
160
161         * gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
162         with UNKNOWN direction.
163         (gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
164         with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
165         (gst_element_remove_pad): Remove ghost-pad special cases.
166         (gst_element_pads_activate): Remove rpad cruft.
167
168         * gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
169         catch the pad's-parent-not-an-element case.
170
171         * gst/gst.h: Include gstghostpad.h.
172
173         * gst/gst.c (init_post): No more real, ghost pads.
174
175         * gst/Makefile.am: Add gstghostpad.[ch].
176
177         * check/Makefile.am:
178         * check/gst/gstbin.c:
179         * check/gst/gstghostpad.c (test_ghost_pads): Check that linking
180         into a bin creates ghost pads, and that the refcounts are right.
181         Partly moved from gstbin.c.
182
183 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
184
185         * check/gst-libs/.cvsignore:
186         * check/gst/.cvsignore:
187         * check/pipelines/.cvsignore:
188           ignore more
189         * check/pipelines/cleanup.c: (setup_pipeline), (run_pipeline),
190         (START_TEST), (cleanup_suite), (main):
191           add some tests related to cleanup after running pipelines
192
193 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
194
195         * check/gst/gstbuffer.c: (START_TEST), (gst_test_suite), (main):
196           add a testsuite for GstBuffer
197
198 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
199
200         * gst/gstminiobject.h:
201           add defines for accessing the refcount
202
203 2005-06-03  Stefan Kost  <ensonic@users.sf.net>
204
205         * Makefile.am: added support for html unit test coverage reports
206
207 2005-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
208
209         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
210           Free existing caps if the capsfilter changes. Add a FIXME about
211           setting those caps on the pads.
212
213         * gst/gstutils.c: (gst_element_get_compatible_pad), (ghost_up):
214           Before adding a ghost pad to a parent bin, check that there isn't
215           already one for the element on the bin. Prevents infinite recursion
216           when using decodebin in parse pipelines. Andy says he'll rewrite the
217           way this works anyway, so ignore the hack.
218
219 2005-06-02  Andy Wingo  <wingo@pobox.com>
220
221         * gst/elements/gsttypefindelement.c (do_pull_typefind): Query the
222         file size, pass it on to the type find helper.
223
224         * gst/base/gstbasesrc.c (gst_basesrc_do_seek): Set the
225         segment_start and segment_end properly according to the seek
226         method. Segment_end is still a bit flaky because offset can be
227         negative for CUR and END cases, but it takes -1 as an "unset"
228         value.
229
230 2005-06-02  Wim Taymans  <wim@fluendo.com>
231
232         * gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
233         (gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
234         (gst_basesink_activate):
235         * gst/base/gstbasesink.h:
236         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
237         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
238         (gst_pad_query), (gst_pad_start_task):
239         * gst/gstpad.h:
240         * gst/gstqueue.c: (gst_queue_bufferalloc),
241         (gst_queue_handle_sink_event), (gst_queue_chain):
242         Bufferalloc: return GstFlowReturn to more accuratly report
243         why allocation failed.
244
245 2005-06-02  Wim Taymans  <wim@fluendo.com>
246
247         * gst/gstpipeline.c: (gst_pipeline_send_event):
248         Take snapshot of state without blocking.
249
250 2005-06-02  Wim Taymans  <wim@fluendo.com>
251
252         * docs/design/part-TODO.txt:
253         * docs/design/part-caps.txt:
254         * docs/design/part-clocks.txt:
255         * docs/design/part-negotiation.txt:
256         * docs/design/part-preroll.txt:
257         Small doc updates 
258
259 2005-05-30  Wim Taymans  <wim@fluendo.com>
260
261         * gst/elements/gstidentity.c: (gst_identity_event),
262         (gst_identity_transform), (gst_identity_get_property):
263         Protect last_message property as it is accessed from
264         multiple threads.
265
266 2005-05-30  Wim Taymans  <wim@fluendo.com>
267
268         * gst/gstelement.c: (gst_element_init),
269         (gst_element_pads_activate), (gst_element_change_state):
270         Slicker pad activation code.
271
272 2005-05-30  Wim Taymans  <wim@fluendo.com>
273
274         * gst/Makefile.am:
275         * gst/gstelement.h:
276         * gst/gstelementfactory.h:
277         * gst/gsttypes.h:
278         Move elementfactory methods to separate .h file.
279
280 2005-05-30  Wim Taymans  <wim@fluendo.com>
281
282         * docs/design/part-overview.txt:
283         * gst/gstsystemclock.h:
284         Small typo fixes, doc updates.
285
286 2005-05-30  Wim Taymans  <wim@fluendo.com>
287
288         * gst/gst.c: (gst_init_get_popt_table), (init_post),
289         (init_popt_callback):
290         Remove cpu-opt flag.
291
292 2005-05-30  Wim Taymans  <wim@fluendo.com>
293
294         * gst/gstbuffer.c: (gst_subbuffer_finalize),
295         (gst_buffer_create_sub), (gst_buffer_is_span_fast):
296         * gst/gstbuffer.h:
297         Avoid typechecking in places where not needed.
298         Added accessor for malloc_data.
299
300 2005-05-30  Wim Taymans  <wim@fluendo.com>
301
302         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_set_active),
303         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_accept_caps),
304         (gst_pad_configure_sink), (gst_pad_configure_src),
305         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_send_event),
306         (gst_pad_start_task):
307         Propagate errors from _set_caps() in configure_src/sink
308         functions instead of returning TRUE.
309         FLUSH events can travel up and downstream
310
311
312 2005-05-30  Wim Taymans  <wim@fluendo.com>
313
314         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
315         (gst_basesink_activate):
316         Handle EOS in preroll.
317
318 2005-05-30  Wim Taymans  <wim@fluendo.com>
319
320         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
321         (gst_queue_loop), (gst_queue_handle_src_event):
322         Remove old pieces of code
323         Flushing the queue in an upstream event is a very bad idea.
324
325 2005-05-26  Andy Wingo  <wingo@pobox.com>
326
327         * gst/gstminiobject.c (gst_value_mini_object_collect): Use
328         gst_value_set_mini_object so as to add a ref on the object (which
329         will be removed when the value is unset).
330
331         * gst/elements/gstfakesink.c (gst_fakesink_class_init): Fix signal
332         arg type in ::handoff.
333
334         * gst/gstelement.c (gst_element_change_state): Also deactivate
335         pads in READY->NULL, just in case the element didn't make it to
336         PAUSED. Wingo tested, Wim approved.
337
338 2005-05-26  Wim Taymans  <wim@fluendo.com>
339
340         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
341         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
342         (gst_pad_query), (gst_pad_send_event), (gst_pad_start_task):
343         A flushing pad cannot be used to alloc_buffer from.
344
345 2005-05-26  Wim Taymans  <wim@fluendo.com>
346
347         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
348         (gst_bus_pop), (gst_bus_source_prepare), (gst_bus_source_check),
349         (gst_bus_source_dispatch), (gst_bus_source_finalize),
350         (gst_bus_create_watch), (gst_bus_add_watch_full):
351         * gst/gstbus.h:
352         Implement a real GSource and use g_main_context_wakeup() to
353         signal new messages instead of the socketpair.
354
355 2005-05-25  Wim Taymans  <wim@fluendo.com>
356
357         * gst/gstbin.c: (bin_element_is_sink), (has_ancestor),
358         (bin_element_is_semi_sink), (append_child), (gst_bin_change_state):
359         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
360         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
361         (gst_pad_send_event), (gst_pad_start_task):
362         * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush),
363         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
364         (gst_queue_sink_activate), (gst_queue_src_activate),
365         (gst_queue_change_state):
366         * gst/gstqueue.h:
367         Fix state changes for non sinks. We now change sinks, then elements
368         with unconnected srcpads, then the rest.
369         More efficient queue unlocking in flush and state changes.
370         Set the pad activate mode even if it does not have an activate
371         function.
372
373 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
374
375         * gst/base/gstbasesrc.c: (gst_basesrc_activate):
376           Don't go in pull mode for non-seekable sources.
377         * gst/elements/gsttypefindelement.h:
378         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
379         (gst_type_find_element_dispose), (gst_type_find_handle_src_query),
380         (free_entry), (stop_typefinding),
381         (gst_type_find_element_handle_event), (find_peek),
382         (gst_type_find_element_chain), (do_pull_typefind),
383         (gst_type_find_element_change_state):
384           Allow typefinding (w/o seeking) in push-mode, simplified version
385           of what was in 0.8.
386         * gst/gstutils.c: (gst_buffer_join):
387         * gst/gstutils.h:
388           gst_buffer_join() from 0.8.
389
390 2005-05-25  Wim Taymans  <wim@fluendo.com>
391
392         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
393         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
394         (gst_pad_send_event), (gst_pad_start_task):
395         Disable attempt at mode switching until it is figured out.
396
397 2005-05-25  Wim Taymans  <wim@fluendo.com>
398
399         * gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
400         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
401         (gst_basesink_finish_preroll), (gst_basesink_chain),
402         (gst_basesink_loop), (gst_basesink_activate),
403         (gst_basesink_change_state):
404         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
405         (gst_basesrc_get_range), (gst_basesrc_loop),
406         (gst_basesrc_activate):
407         * gst/elements/gsttee.c: (gst_tee_sink_activate):
408         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
409         (gst_real_pad_init), (gst_real_pad_set_property),
410         (gst_real_pad_get_property), (gst_pad_set_active),
411         (gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
412         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
413         (gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
414         (gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
415         (gst_pad_event_default_dispatch), (gst_pad_event_default),
416         (gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
417         (gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
418         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
419         (gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
420         (gst_pad_stop_task):
421         * gst/gstpad.h:
422         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
423         (gst_queue_loop), (gst_queue_src_activate):
424         * gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
425         (gst_task_get_state):
426         * gst/gsttask.h:
427         * gst/schedulers/threadscheduler.c:
428         (gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
429         Implement gst_pad_pause/start/stop_task(), take STREAM lock
430         in task function.
431         Remove ACTIVE pad flag, use FLUSHING everywhere
432         Added _pad_chain(), _pad_get_range() to call chain/getrange 
433         functions.
434         Add locks around IS_FLUSHING when reading.
435         Take STREAM lock in chain(), get_range() functions so plugins
436         don't need to take it anymore.
437         
438
439
440 2005-05-25  Wim Taymans  <wim@fluendo.com>
441
442         * tools/gst-launch.c: (event_loop):
443         Unref message after using its contents instead of
444         before.
445
446 2005-05-24  Wim Taymans  <wim@fluendo.com>
447
448         * docs/design/draft-ghostpads.txt:
449         * docs/design/draft-push-pull.txt:
450         * docs/design/draft-query.txt:
451         * docs/design/part-overview.txt:
452         Docs updates, added general overview doc.
453
454 2005-05-21  David Schleef  <ds@schleef.org>
455
456         * docs/gst/tmpl/old/GstBin.sgml:
457         * docs/gst/tmpl/old/GstBuffer.sgml:
458         * docs/gst/tmpl/old/GstCaps.sgml:
459         * docs/gst/tmpl/old/GstClock.sgml:
460         * docs/gst/tmpl/old/GstCompat.sgml:
461         * docs/gst/tmpl/old/GstData.sgml:
462         * docs/gst/tmpl/old/GstElement.sgml:
463         * docs/gst/tmpl/old/GstEvent.sgml:
464         * docs/gst/tmpl/old/GstIndex.sgml:
465         * docs/gst/tmpl/old/GstStructure.sgml:
466         * docs/gst/tmpl/old/GstTag.sgml:
467         * docs/gst/tmpl/old/cothreads.sgml:
468         * docs/gst/tmpl/old/cothreads_compat.sgml:
469         * docs/gst/tmpl/old/gettext.sgml:
470         * docs/gst/tmpl/old/gobject2gtk.sgml:
471         * docs/gst/tmpl/old/grammar.tab.sgml:
472         * docs/gst/tmpl/old/gst-i18n-app.sgml:
473         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
474         * docs/gst/tmpl/old/gst_private.sgml:
475         * docs/gst/tmpl/old/gstaggregator.sgml:
476         * docs/gst/tmpl/old/gstarch.sgml:
477         * docs/gst/tmpl/old/gstatomic_impl.sgml:
478         * docs/gst/tmpl/old/gstbufferstore.sgml:
479         * docs/gst/tmpl/old/gstdata_private.sgml:
480         * docs/gst/tmpl/old/gstdisksink.sgml:
481         * docs/gst/tmpl/old/gstdisksrc.sgml:
482         * docs/gst/tmpl/old/gstelementfactory.sgml:
483         * docs/gst/tmpl/old/gstextratypes.sgml:
484         * docs/gst/tmpl/old/gstfakesink.sgml:
485         * docs/gst/tmpl/old/gstfakesrc.sgml:
486         * docs/gst/tmpl/old/gstfdsink.sgml:
487         * docs/gst/tmpl/old/gstfdsrc.sgml:
488         * docs/gst/tmpl/old/gstfilesink.sgml:
489         * docs/gst/tmpl/old/gstfilesrc.sgml:
490         * docs/gst/tmpl/old/gsthttpsrc.sgml:
491         * docs/gst/tmpl/old/gstidentity.sgml:
492         * docs/gst/tmpl/old/gstindexfactory.sgml:
493         * docs/gst/tmpl/old/gstmarshal.sgml:
494         * docs/gst/tmpl/old/gstmd5sink.sgml:
495         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
496         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
497         * docs/gst/tmpl/old/gstpadtemplate.sgml:
498         * docs/gst/tmpl/old/gstpipefilter.sgml:
499         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
500         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
501         * docs/gst/tmpl/old/gstshaper.sgml:
502         * docs/gst/tmpl/old/gstspider.sgml:
503         * docs/gst/tmpl/old/gstspideridentity.sgml:
504         * docs/gst/tmpl/old/gststatistics.sgml:
505         * docs/gst/tmpl/old/gsttee.sgml:
506         * docs/gst/tmpl/old/gsttimecache.sgml:
507         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
508         * docs/gst/tmpl/old/gstxmlregistry.sgml:
509         * docs/gst/tmpl/old/gthread-cothreads.sgml:
510         * docs/gst/tmpl/old/types.sgml:
511           I didn't intend to add these or check them in.
512
513 2005-05-19  David Schleef  <ds@schleef.org>
514
515         * configure.ac: Use -no-common everywhere.  In a sane world, it
516           would be the default in libtool, because without it, you can't
517           build DLLs on Windows.
518         * docs/gst/gstreamer-docs.sgml: Remove GstCpu, GstData, GstThread
519         * docs/gst/gstreamer-sections.txt:
520         * docs/gst/tmpl/gstcpu.sgml:
521         * docs/gst/tmpl/gstdata.sgml:
522         * docs/gst/tmpl/gstthread.sgml:
523
524 2005-05-19  David Schleef  <ds@schleef.org>
525
526         * gst/gstminiobject.c: (gst_value_set_mini_object),
527         (gst_value_take_mini_object), (gst_value_get_mini_object):
528         * gst/gstminiobject.h: Add GValue set/get functions.
529
530 2005-05-19  Wim Taymans  <wim@fluendo.com>
531
532         * gst/gstbuffer.c: (gst_buffer_init), (gst_subbuffer_get_type),
533         (gst_subbuffer_class_init), (gst_subbuffer_finalize),
534         (gst_subbuffer_init), (gst_buffer_is_span_fast):
535         * gst/gstbuffer.h:
536         * gst/gstbus.c: (gst_bus_post):
537         * gst/gstelement.c: (gst_element_get_random_pad):
538         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize):
539         Make subbufer unref the parent in finalize.
540         some more debugging info.
541
542
543 2005-05-19  Wim Taymans  <wim@fluendo.com>
544
545         * gst/base/gstbasesink.c: (gst_basesink_class_init),
546         (gst_basesink_init), (gst_basesink_finalize),
547         (gst_basesink_activate), (gst_basesink_change_state):
548         Don't free preroll queue too early.
549
550 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
551
552         * gst/Makefile.am:
553         * gst/ROADMAP:
554           Hi, I'm outdated. Please shoot me.
555
556 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
557
558         * gst/gstpipeline.c: (gst_pipeline_send_event):
559           Do not access variables after they have been deleted.
560
561 2005-05-19  Wim Taymans  <wim@fluendo.com>
562
563         * tools/gst-inspect.c: (print_plugin_features):
564         A plugin feature does unfortunatly not use the
565         object name yet...
566
567 2005-05-18  Wim Taymans  <wim@fluendo.com>
568
569         * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):
570         Port _span() functions to new subbuffers.
571
572 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
573
574         * gst/gstbin.c: (gst_bin_add_func):
575           Fix clock settery in bins when adding kids after the clock has
576           been selected.
577
578 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
579
580         * gst/elements/gstidentity.c: (gst_identity_class_init):
581           Workaround until signals support GstMiniObject.
582
583 2005-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
584
585         * gst/gstbuffer.c:
586         Oops, fix a typo GST_TYPE_BUFFER -> GST_TYPE_SUBBUFFER.
587
588 2005-05-18  Wim Taymans  <wim@fluendo.com>
589
590         * gst/base/Makefile.am:
591         * gst/base/gstadapter.c: (gst_adapter_base_init),
592         (gst_adapter_class_init), (gst_adapter_init),
593         (gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
594         (gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
595         (gst_adapter_flush), (gst_adapter_available),
596         (gst_adapter_available_fast):
597         * gst/base/gstadapter.h:
598         Ported and added adapter to the base classes.
599
600 2005-05-17  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
601
602         * gst/gst.c:
603         * gst/gstmessage.c:
604           Make sure the class is reffed/unreffed once before threads can be
605           used.  Fixes #304551.
606
607 2005-05-17  Wim Taymans  <wim@fluendo.com>
608
609         * gst/base/gstbasesink.c: (gst_basesink_finish_preroll),
610         (gst_basesink_chain_unlocked), (gst_basesink_activate):
611         * gst/gstminiobject.c: (gst_mini_object_get_type),
612         (gst_mini_object_free):
613         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query),
614         (gst_pad_push), (gst_pad_push_event):
615         * gst/gstqueue.c: (gst_queue_change_state):
616         Don't queue buffers in basesink when we are flushing.
617         Unref buffer when flushing in basesink.
618         Flush queue when going to READY
619         Unref buffer when _push() returns an error.
620         Don't free MiniObject instance when refcount is incremented
621         in _finalize() so that we can recover objects.
622
623 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
624
625         * docs/manual/advanced-schedulers.xml:
626         * docs/manual/appendix-checklist.xml:
627         * docs/pwg/advanced-clock.xml:
628         * docs/pwg/advanced-interfaces.xml:
629         * docs/pwg/advanced-request.xml:
630         * docs/pwg/advanced-types.xml:
631         * docs/pwg/intro-preface.xml:
632         * examples/plugins/example.c: (gst_example_get_type),
633         (gst_example_class_init), (gst_example_chain),
634         (gst_example_set_property), (gst_example_get_property),
635         (gst_example_change_state), (plugin_init):
636         * examples/plugins/example.h:
637           small doc fixes
638
639 2005-05-17  Wim Taymans  <wim@fluendo.com>
640
641         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps),
642         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_push):
643         * gst/gstqueue.c: (gst_queue_change_state):
644         Clear queue when going to READY.
645         Remove IN_SETCAPS flag too.
646
647 2005-05-17  Tim-Philipp Müller  <tim at centricular dot net>
648
649         * gst/base/gstbasesrc.c: (gst_basesrc_change_state):
650           Remove implicit cast from gboolean to GstElementStateReturn;
651           make sure we still return failure in paused => ready case if
652           the parent class fails to change state and our own stop 
653           vfunc succeeds.
654
655 2005-05-17  Wim Taymans  <wim@fluendo.com>
656
657         * tools/gst-launch.c: (event_loop):
658         Message was unreffed too soon.
659
660 2005-05-16  Andy Wingo  <wingo@pobox.com>
661
662         * gst/gstbin.c (sink_iterator_filter): Err... um...
663
664         * check/gst/gstbin.c (test_ghost_pads): New test for the
665         ghosting-if-elements-not-in-same-bin behavior.
666
667 2005-05-16  David Schleef  <ds@schleef.org>
668
669         * gst/gstminiobject.c: Use g_atomic_int_get() instead of
670         accessing refcount directly.
671
672 2005-05-15  David Schleef  <ds@schleef.org>
673
674         * check/Makefile.am: remove GstData checks
675         * check/gst-libs/gdp.c: (START_TEST): fix for API changes
676         * gst/Makefile.am: add miniobject, remove data
677         * gst/gst.h: add miniobject, remove data
678         * gst/gstdata.c: remove
679         * gst/gstdata.h: remove
680         * gst/gstdata_private.h: remove
681         * gst/gsttypes.h: remove GstEvent and GstMessage
682         * gst/gstelement.c: (gst_element_post_message): fix for API changes
683         * gst/gstmarshal.list: change BOXED -> OBJECT
684
685         Implement GstMiniObject.
686         * gst/gstminiobject.c:
687         * gst/gstminiobject.h:
688
689         Modify to be subclasses of GstMiniObject.
690         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
691         (gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
692         (gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
693         (gst_subbuffer_get_type), (gst_subbuffer_init),
694         (gst_buffer_create_sub), (gst_buffer_is_span_fast),
695         (gst_buffer_span):
696         * gst/gstbuffer.h:
697         * gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
698         (gst_event_class_init), (gst_event_init), (gst_event_finalize),
699         (_gst_event_copy), (gst_event_new):
700         * gst/gstevent.h:
701         * gst/gstmessage.c: (_gst_message_initialize),
702         (gst_message_get_type), (gst_message_class_init),
703         (gst_message_init), (gst_message_finalize), (_gst_message_copy),
704         (gst_message_new), (gst_message_new_error),
705         (gst_message_new_warning), (gst_message_new_tag),
706         (gst_message_new_state_changed), (gst_message_new_application):
707         * gst/gstmessage.h:
708         * gst/gstprobe.c: (gst_probe_perform),
709         (gst_probe_dispatcher_dispatch):
710         * gst/gstprobe.h:
711         * gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
712         (gst_query_class_init), (gst_query_finalize), (gst_query_init),
713         (_gst_query_copy), (gst_query_new):
714
715         Update elements for GstData -> GstMiniObject changes
716         * gst/gstquery.h:
717         * gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
718         (gst_queue_chain), (gst_queue_loop):
719         * gst/elements/gstbufferstore.c:
720         (gst_buffer_store_add_buffer_func),
721         (gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
722         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
723         (gst_fakesink_render):
724         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
725         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
726         (gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
727         (gst_mmap_buffer_finalize), (gst_filesrc_map_region),
728         (gst_filesrc_create_read):
729         * gst/elements/gstidentity.c: (gst_identity_class_init):
730         * gst/elements/gsttypefindelement.c:
731         (gst_type_find_element_src_event), (free_entry_buffers),
732         (gst_type_find_element_handle_event):
733         * libs/gst/dataprotocol/dataprotocol.c:
734         (gst_dp_header_from_buffer):
735         * libs/gst/dataprotocol/dataprotocol.h:
736         * libs/gst/dataprotocol/dp-private.h:
737
738 2005-05-15  David Schleef  <ds@schleef.org>
739
740         * gst/elements/gstelements.c: Don't include headers that were
741         just removed.
742
743 2005-05-15  David Schleef  <ds@schleef.org>
744
745         * gst/elements/Makefile.am: Remove some elements that don't
746         need to be in the core (or even exist at all).
747         * gst/elements/gstaggregator.c:
748         * gst/elements/gstaggregator.h:
749         * gst/elements/gstmd5sink.c:
750         * gst/elements/gstmd5sink.h:
751         * gst/elements/gstmultifilesrc.c:
752         * gst/elements/gstmultifilesrc.h:
753         * gst/elements/gstpipefilter.c:
754         * gst/elements/gstpipefilter.h:
755         * gst/elements/gstshaper.c:
756         * gst/elements/gstshaper.h:
757         * gst/elements/gststatistics.c:
758         * gst/elements/gststatistics.h:
759         * po/POTFILES.in: Remove above files.
760
761 2005-05-14  Andy Wingo  <wingo@pobox.com>
762
763         * gst/gstbin.c (gst_bin_iterate_sinks): Use sink_iterator_filter
764         so as to get the refs right.
765         (sink_iterator_filter): New function, wraps bin_element_is_sink,
766         unreffing objects that don't pass the filter.
767
768         * gst/gstpipeline.c (gst_pipeline_init): Drop ref on bus after
769         gst_element_set_bus.
770         (gst_pipeline_dispose): Set the bus on the pipeline to NULL. In
771         normal cases, this will destroy the bus.
772
773         * gst/gstutils.c (prepare_link_maybe_ghosting): Drop ref on root
774         object.
775
776         * gst/gstbin.c (gst_bin_change_state): Fix state changes if a bin
777         has no sinks.
778
779 2005-05-13  Andy Wingo  <wingo@pobox.com>
780
781         * gst/gstutils.c (gst_element_link_pads): Instead of calling
782         gst_pad_link, call pad_link_maybe_ghosting,
783         (pad_link_maybe_ghosting): Links pads, making sure that the
784         elements being linked are in the same bin.
785         (find_common_root, object_has_ancestor, ghost_up, remove_pad):
786         Helpers for pad_link_maybe_ghosting.
787
788 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
789
790         * configure.ac:
791           Require GLib >= 2.4.0 (for the g_atomic_* funcs)
792
793 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
794
795         * docs/design/part-element-source.txt:
796           Mention GstPushSrc
797
798 2005-05-12  Wim Taymans  <wim@fluendo.com>
799
800         * gst/base/gstbasesink.c: (gst_basesink_init),
801         (gst_basesink_activate):
802         * gst/base/gstbasesrc.c: (gst_basesrc_unlock),
803         (gst_basesrc_is_seekable):
804         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
805         (bin_element_is_sink), (gst_bin_change_state):
806         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
807         * gst/gstelement.h:
808         Identify sinks by their flag to avoid overly complicated
809         checks (fow now).
810         Do state changes even for elements not reachable from the
811         sinks.
812         BaseSink is a sink now :)
813         Some more debugging info in the basesrc.
814
815
816 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
817
818         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_query):
819           Implement _query on a bin, similar to _send_event.
820
821 2005-05-12  Tim-Philipp Müller  <tim at centricular dot net>
822
823         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek):
824           Discont event offset format should be GST_FORMAT_BYTES,
825           not GST_FORMAT_TIME.
826
827 2005-05-12  Wim Taymans  <wim@fluendo.com>
828
829         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_get_state):
830         Same fix as Ronald's but without the signal. 
831
832 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
833
834         * gst/gstutils.c: (gst_element_query_position):
835           No, an element is not a pad.
836
837 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
838
839         * gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
840         (gst_bin_get_state):
841           If a child is removed from a bin while we remove the child from
842           the bin and while we're retrieving its state, signal this to the
843           get_state function so we abort the wait (instead of waiting for
844           a timeout) and can immediately re-iterate over all other elements.
845
846 2005-05-12  Wim Taymans  <wim@fluendo.com>
847
848         * gst/base/Makefile.am:
849         * gst/base/gstbasesrc.c: (gst_basesrc_is_seekable),
850         (gst_basesrc_start):
851         * gst/base/gstbasesrc.h:
852         * gst/base/gstpushsrc.c: (gst_pushsrc_get_type),
853         (gst_pushsrc_base_init), (gst_pushsrc_class_init),
854         (gst_pushsrc_init), (gst_pushsrc_create):
855         * gst/base/gstpushsrc.h:
856         Added is_seekable to BaseSrc
857         Added simple PushSrc.
858
859 2005-05-11  Wim Taymans  <wim@fluendo.com>
860
861         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
862         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
863         (gst_element_link_pads), (gst_element_query_position),
864         (gst_element_query_convert), (intersect_caps_func),
865         (gst_pad_query_position), (gst_pad_query_convert):
866         Fix refcounting in utils function.
867         No point in trying to activate a pad when it's added, it could
868         be added from the state change function and then we deadlock, the
869         element has to decide what to do.
870
871 2005-05-10  Andy Wingo  <wingo@pobox.com>
872
873         * gst/elements/gstfakesink.c (gst_fakesink_render): Er, emit with
874         *all* the arguments.
875
876         * gst/base/gstbasetransform.c (gst_base_transform_event): Grab the
877         stream lock if it's a FLUSH_DONE; normal flushes don't get the
878         lock (according to the docs -- if this is wrong change the docs).
879
880         * gst/gstpipeline.c (gst_pipeline_change_state): Set the bus to
881         flush messages in the NULL state.
882
883         * gst/gstbus.c (gst_bus_post): If a bus is flushing, unref the
884         message immediately and return.
885         (gst_bus_set_flushing): New function. If a bus is flushing, it
886         flushes out any queued messages and immediately unrefs new
887         messages. This is so when an element goes to NULL, all of the
888         unhandled messages coming from it can be freed, and their
889         references to the element dropped. In other words: message source
890         ref considered harmful :P
891
892         * gst/gstbin.c (gst_bin_change_state): Unref peer element when
893         we're finished with it.
894
895         * gst/gstmessage.c (gst_message_new_state_changed): 
896
897 2005-05-10  Wim Taymans  <wim@fluendo.com>
898
899         * gst/gstvalue.c: (gst_value_compare_flags),
900         (gst_value_serialize_flags), (gst_value_deserialize_flags),
901         (_gst_value_initialize):
902         Added flags serialize/deserialize/compare code.
903
904 2005-05-09  Andy Wingo  <wingo@pobox.com>
905
906         * gst/base/gstbasetransform.c (gst_base_transform_proxy_getcaps):
907         Intersect the peer's caps with our caps.
908
909 2005-05-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
910
911         * gst/base/gsttypefindhelper.c: (helper_find_peek):
912         * gst/elements/gsttypefindelement.c: (find_peek):
913           Handle negative offsets better. Fixes decodebin.
914
915 2005-05-09  Wim Taymans  <wim@fluendo.com>
916
917         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps),
918         (gst_base_transform_event):
919         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query):
920         Implement accept_caps.
921         Fix silly lock/unlock mismatch in base class.
922
923 2005-05-09  Wim Taymans  <wim@fluendo.com>
924
925         * docs/design/draft-push-pull.txt:
926         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_query):
927         * gst/elements/gstfilesink.c: (gst_filesink_init),
928         (gst_filesink_query):
929         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
930         (gst_type_find_handle_src_query), (find_element_get_length):
931         * gst/gstelement.c: (gst_element_seek), (gst_element_query):
932         * gst/gstelement.h:
933         * gst/gstmessage.c:
934         * gst/gstmessage.h:
935         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_get_query_types),
936         (gst_real_pad_get_caps_unlocked),
937         (gst_pad_get_internal_links_default), (gst_pad_get_internal_links),
938         (gst_pad_event_default_dispatch), (gst_pad_event_default),
939         (gst_pad_dispatcher), (gst_pad_query), (gst_pad_query_default),
940         (gst_real_pad_dispose), (gst_real_pad_finalize),
941         (gst_pad_load_and_link), (gst_pad_save_thyself),
942         (gst_ghost_pad_save_thyself), (handle_pad_block), (gst_pad_push),
943         (gst_pad_check_pull_range), (gst_pad_pull_range),
944         (gst_pad_template_get_type), (gst_pad_template_class_init),
945         (gst_pad_template_init), (gst_pad_template_dispose),
946         (name_is_valid), (gst_static_pad_template_get),
947         (gst_pad_template_new), (gst_static_pad_template_get_caps),
948         (gst_pad_template_get_caps), (gst_pad_set_element_private),
949         (gst_pad_get_element_private), (gst_pad_start_task),
950         (gst_pad_pause_task), (gst_pad_stop_task),
951         (gst_ghost_pad_get_type), (gst_ghost_pad_class_init),
952         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
953         (gst_ghost_pad_set_property), (gst_ghost_pad_get_property),
954         (gst_ghost_pad_new):
955         * gst/gstpad.h:
956         * gst/gstquery.c: (_gst_query_initialize), (gst_query_new),
957         (gst_query_new_position), (gst_query_set_position),
958         (gst_query_parse_position), (gst_query_new_convert),
959         (gst_query_set_convert), (gst_query_parse_convert):
960         * gst/gstquery.h:
961         * gst/gstqueryutils.c:
962         * gst/gstqueryutils.h:
963         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
964         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
965         (gst_queue_handle_src_query):
966         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
967         (gst_element_query_position), (gst_element_query_convert),
968         (intersect_caps_func), (gst_pad_query_position),
969         (gst_pad_query_convert):
970         * gst/gstutils.h:
971         * tools/gst-inspect.c: (print_pad_info):
972         * tools/gst-xmlinspect.c: (print_element_info):
973         Remove old query functions. Ported old code.
974         Added position/convert helper functions to gstutils.
975         Reordered gstpad.c code, grouping relevant things.
976         Remove gst_message_new(), always need to speficy a specific
977         message.
978
979
980 2005-05-09  Andy Wingo  <wingo@pobox.com>
981
982         * gst/gstiterator.h: Add some includes.
983
984         * gst/gstqueryutils.h: Include more headers.
985
986         * gst/gstpad.h:
987         * gst/gstpad.c (gst_pad_query_position): New routine, replaces
988         some uses of gst_pad_query.
989
990         * gst/gstqueryutils.c: Build fixes. Make parse functions ignore
991         NULL out parameters.
992         (gst_query_new_position): New proc, allocates a new position
993         query.
994
995         * gst/Makefile.am (libgstreamer_@GST_MAJORMINOR@_la_SOURCES): Add
996         gstqueryutils.c to the build.
997
998         * gst/gststructure.c (gst_structure_set_valist): Implement with
999         the generic G_VALUE_COLLECT.
1000         
1001 2005-05-08  Edward Hervey  <bilboed@bilboed.com>
1002
1003         * gst/Makefile.am: (gst_headers):
1004         Added gstqueryutils.h to the list of headers to install, that was
1005         a 'nachty' move wingo :)
1006
1007 2005-05-06  Andy Wingo  <wingo@pobox.com>
1008
1009         * gst/gstquery.h
1010         * gst/gstquery.c (_gst_query_initialize): Extend GstQuery from
1011         GstData, init a memchunk.
1012         (standard_definitions): Add a few query types, deprecate a few.
1013         (gst_query_get_type): New proc.
1014         (_gst_query_copy, _gst_query_free, gst_query_new): GstData
1015         implementation.
1016         (gst_query_new_application, gst_query_get_structure): New public
1017         procs.
1018
1019         * docs/design/draft-query.txt: Removed LINKS from the query types,
1020         because all the rest can be dispatched to other pads -- seemed
1021         ugly to have a query that couldn't be dispatched. internal_links
1022         is fine as a pad method.
1023
1024         * gst/gstpad.h: Add query2 as a pad method, add the new functions
1025         in gstpad.c, but maintain binary compatibility for the moment.
1026         Will fix before 0.9 is out.
1027
1028         * gst/gstqueryutils.c: 
1029         * gst/gstqueryutils.h: New files, implement 3 methods for each
1030         query type: parse_query, parse_response, and set. Probably need an
1031         allocator as well.
1032
1033         * gst/gst.h: Add gstquery.h and gstqueryutils.h to the list.
1034
1035         * gst/elements/gstfilesink.c (gst_filesink_query2):
1036         * gst/base/gstbasesrc.c (gst_basesrc_query2): Replace old query,
1037         query_types, and formats methods.
1038
1039         * gst/gstpad.c (gst_pad_query2, gst_pad_query2_default)
1040         (gst_pad_set_query2_function): New functions.
1041         (gst_real_pad_init): Set query2_default as the default query2
1042         function. Basically just dispatches to internally linked pads.
1043
1044         Needs review!
1045         
1046         * gst/gstdata_private.h (_GST_DATA_INIT): Set data->refcount to 1
1047         without using the atomic operations. Only one thread can possibly
1048         be accessing the data at this point. Changed so as to avoid
1049         gst_atomic operations.
1050
1051 2005-05-06  Wim Taymans  <wim@fluendo.com>
1052
1053         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push):
1054         Also set caps if we use the fallback buffer alloc.
1055
1056 2005-05-06  Tim-Philipp Müller  <tim at centricular dot net>
1057
1058         * docs/gst/Makefile.am:
1059         * docs/gst/gstreamer-docs.sgml:
1060         * docs/gst/gstreamer-sections.txt:
1061         * docs/gst/tmpl/gstatomic.sgml:
1062         * docs/gst/tmpl/gstmemchunk.sgml:
1063         * testsuite/elements/struct_i386.h:
1064         * win32/GStreamer.vcproj:
1065         * win32/Makefile:
1066           Purge GstAtomic stuff from docs and win32 makefiles as well
1067
1068 2005-05-06  Wim Taymans  <wim@fluendo.com>
1069
1070         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
1071         * gst/elements/gstcapsfilter.c: (gst_capsfilter_getcaps):
1072         * gst/gstpad.c: (gst_pad_peer_get_caps):
1073         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
1074         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
1075         (gst_queue_src_activate), (gst_queue_change_state):
1076         * gst/gstqueue.h:
1077         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1078         (intersect_caps_func):
1079         Fix gst_pad_peer_get_caps(), make it return NULL if no peer.
1080         Always take QUEUE_LOCK after STREAM_LOCK or we might deadlock.
1081         Some fixes for the peer_get_caps() change.
1082
1083 2005-05-06  Wim Taymans  <wim@fluendo.com>
1084
1085         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
1086         (gst_basesink_handle_buffer), (gst_basesink_chain_unlocked),
1087         (gst_basesink_activate):
1088         Actually do something with error codes returned from the push
1089         functions.
1090
1091 2005-05-06  Wim Taymans  <wim@fluendo.com>
1092
1093         * docs/design/part-element-sink.txt:
1094         * docs/design/part-element-source.txt:
1095         * gst/base/gstbasesink.c: (gst_basesink_class_init),
1096         (gst_basesink_event), (gst_basesink_activate):
1097         * gst/base/gstbasesink.h:
1098         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_unlock),
1099         (gst_basesrc_activate):
1100         * gst/base/gstbasesrc.h:
1101         * gst/gstelement.c: (gst_element_pads_activate):
1102         Some more documentation.
1103         Fixed scheduling decision in _pads_activate().
1104
1105 2005-05-05  Andy Wingo  <wingo@pobox.com>
1106
1107         * check/pipelines/simple_launch_lines.c (test_2_elements): "Fix"
1108         the test suite.
1109
1110 2005-05-05  Wim Taymans  <wim@fluendo.com>
1111
1112         * gst/base/Makefile.am:
1113         * gst/base/gstbasesink.h:
1114         * gst/base/gstbasesrc.c: (gst_basesrc_init),
1115         (gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
1116         * gst/base/gstcollectpads.c: (gst_collectpads_get_type),
1117         (gst_collectpads_class_init), (gst_collectpads_init),
1118         (gst_collectpads_finalize), (gst_collectpads_new),
1119         (gst_collectpads_set_function), (gst_collectpads_add_pad),
1120         (find_pad), (gst_collectpads_remove_pad),
1121         (gst_collectpads_is_active), (gst_collectpads_collect),
1122         (gst_collectpads_collect_range), (gst_collectpads_start),
1123         (gst_collectpads_stop), (gst_collectpads_peek),
1124         (gst_collectpads_pop), (gst_collectpads_available),
1125         (gst_collectpads_read), (gst_collectpads_flush),
1126         (gst_collectpads_chain):
1127         * gst/base/gstcollectpads.h:
1128         * gst/elements/Makefile.am:
1129         * gst/elements/gstelements.c:
1130         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1131         (gst_fakesink_get_times), (gst_fakesink_event),
1132         (gst_fakesink_preroll), (gst_fakesink_render):
1133         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
1134         (gst_filesink_init), (gst_filesink_set_location),
1135         (gst_filesink_open_file), (gst_filesink_close_file),
1136         (gst_filesink_pad_query), (gst_filesink_event),
1137         (gst_filesink_render), (gst_filesink_change_state):
1138         * gst/elements/gstfilesink.h:
1139         Added object to help in making collect pad based elements.
1140         Ported filesink.
1141         Make event function in sink baseclass return gboolean.
1142
1143 2005-05-05  Wim Taymans  <wim@fluendo.com>
1144
1145         * gst/gstbin.c: (gst_bin_send_event), (compare_name),
1146         (gst_bin_get_by_name):
1147         * gst/gstbuffer.h:
1148         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
1149         (gst_clock_finalize):
1150         * gst/gstdata.c: (gst_data_replace):
1151         * gst/gstdata.h:
1152         * gst/gstelement.c: (gst_element_request_pad),
1153         (gst_element_pads_activate):
1154         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
1155         (gst_object_unref):
1156         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1157         (gst_pad_set_checkgetrange_function),
1158         (gst_pad_link_check_compatible_unlocked), (gst_pad_set_caps),
1159         (gst_pad_check_pull_range), (gst_pad_pull_range),
1160         (gst_static_pad_template_get_caps), (gst_pad_start_task),
1161         (gst_pad_pause_task), (gst_pad_stop_task):
1162         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1163         (gst_element_request_pad), (gst_pad_proxy_getcaps):
1164         Fix name lookup in GstBin.
1165         Added _data_replace() function and _buffer_replace()
1166         Use finalize method to clean up clock.
1167         Fix refcounting on request pads.
1168         Fix pad schedule mode error.
1169         Some more object refcounting debug info,
1170
1171
1172 2005-05-04  Andy Wingo <wingo@pobox.com>
1173
1174         * check/Makefile.am:
1175         * docs/gst/tmpl/gstatomic.sgml:
1176         * docs/gst/tmpl/gstplugin.sgml:
1177         * gst/base/gstbasesink.c: (gst_basesink_activate):
1178         * gst/base/gstbasesrc.c: (gst_basesrc_class_init),
1179         (gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
1180         (gst_basesrc_query), (gst_basesrc_set_property),
1181         (gst_basesrc_get_property), (gst_basesrc_check_get_range),
1182         (gst_basesrc_activate):
1183         * gst/base/gstbasesrc.h:
1184         * gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
1185         (gst_base_transform_src_activate):
1186         * gst/elements/gstelements.c:
1187         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1188         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
1189         * gst/elements/gsttee.c: (gst_tee_sink_activate):
1190         * gst/elements/gsttypefindelement.c: (find_element_get_length),
1191         (gst_type_find_element_checkgetrange),
1192         (gst_type_find_element_activate):
1193         * gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
1194         * gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
1195         (gst_caps_load_thyself):
1196         * gst/gstelement.c: (gst_element_pads_activate),
1197         (gst_element_save_thyself), (gst_element_restore_thyself):
1198         * gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
1199         (gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
1200         * gst/gstpad.h:
1201         * gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
1202         (gst_xml_parse_file), (gst_xml_parse_memory),
1203         (gst_xml_get_element), (gst_xml_make_element):
1204         * gst/indexers/gstfileindex.c: (gst_file_index_load),
1205         (_file_index_id_save_xml), (gst_file_index_commit):
1206         * gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
1207         (read_enum), (load_pad_template), (load_feature), (load_plugin),
1208         (load_paths):
1209         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
1210         (gst_dp_packet_from_event), (gst_dp_caps_from_packet):
1211         * tools/gst-complete.c: (main):
1212         * tools/gst-compprep.c: (main):
1213         * tools/gst-inspect.c: (print_element_properties_info):
1214         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
1215         * tools/gst-xmlinspect.c: (print_element_properties):
1216         GCC 4 fixen.
1217         
1218 2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
1219
1220         * gst/gstplugin.c: (gst_plugin_check_module),
1221         (gst_plugin_check_file), (gst_plugin_load_file):
1222             apply patch from #172526 to make register work on MacOSX
1223
1224 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1225
1226         * docs/gst/tmpl/gstconfig.sgml:
1227         * gst/gstconfig.h.in:
1228           move documentation for some symbols.  Add doc for GST_PTR_FORMAT
1229         * testsuite/debug/printf_extension.c: (main):
1230           Do not use GST_PTR_FORMAT on pointers to types with
1231           sizeof < sizeof(gpointer).  Fixes test on 64-bit
1232         * testsuite/elements/property.h:
1233           use correct printf format
1234
1235 2005-05-02  Wim Taymans  <wim@fluendo.com>
1236
1237         * docs/design/draft-push-pull.txt:
1238         * docs/design/draft-query.txt:
1239         * gst/base/gstbasesrc.c: (gst_basesrc_get_range_unlocked),
1240         (gst_basesrc_start):
1241         Added draft for new query API.
1242         Added draft for better selecting scheduling methods.
1243         Make basesrc ignore length if the subclass does not support
1244         it.
1245
1246 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1247
1248         * gst/Makefile.am:
1249           possible fixes for automake-1.5 - _LIBADD is reserved
1250
1251 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1252
1253         * docs/faq/Makefile.am:
1254         * docs/manual/Makefile.am:
1255         * docs/manuals.mak:
1256         * docs/pwg/Makefile.am:
1257         * gst/Makefile.am:
1258           possible fixes for automake-1.5
1259
1260 2005-04-28  Wim Taymans  <wim@fluendo.com>
1261
1262         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1263         (gst_basesink_pad_getcaps), (gst_basesink_init),
1264         (gst_basesink_do_sync):
1265         * gst/gstclock.c: (gst_clock_entry_new):
1266         * gst/gstevent.c: (gst_event_discont_get_value):
1267         * gst/gstpipeline.c: (pipeline_bus_handler),
1268         (gst_pipeline_change_state):
1269         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
1270         Better debugging of clocking info.
1271         Allow NULL values when getting discont values.
1272
1273 2005-04-27  Wim Taymans  <wim@fluendo.com>
1274
1275         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
1276         * check/gst/gstpad.c: (gst_pad_suite):
1277         Increase timeout for checks.
1278
1279 2005-04-27  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1280
1281         * check/Makefile.am:
1282           fix the broken rule for cleanup.  Apparently this rule is
1283           only needed on FC2, so maybe this warrants further autotool
1284           inspection.
1285
1286 2005-04-26  Wim Taymans  <wim@fluendo.com>
1287
1288         * gst/gsttrashstack.h:
1289         Ooohh. a nasty one! After having a failed pop() from the stack,
1290         it's possible that the stack is empty. In that case, don't
1291         follow the NULL pointer.
1292
1293 2005-04-25  Wim Taymans  <wim@fluendo.com>
1294
1295         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1296         (gst_pad_set_checkgetrange_function),
1297         (gst_pad_link_check_compatible_unlocked), (gst_pad_link_prepare),
1298         (gst_pad_check_pull_range), (gst_pad_pull_range),
1299         (gst_static_pad_template_get_caps), (gst_pad_start_task),
1300         (gst_pad_pause_task), (gst_pad_stop_task):
1301         * gst/gstplugin.c: (gst_plugin_load):
1302         * gst/gstplugin.h:
1303         Remove gst_library_load as it does more harm than good with
1304         the new g_module flags.
1305         Revert bogus caps template check in pad linking, pad caps
1306         are important when linking not the template, which is more
1307         general than the current caps.
1308
1309 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1310
1311         * gst/autoplug/.cvsignore:
1312         * gst/autoplug/Makefile.am:
1313         * gst/autoplug/gstsearchfuncs.c:
1314         * gst/autoplug/gstsearchfuncs.h:
1315         * gst/autoplug/gstspider.c:
1316         * gst/autoplug/gstspider.h:
1317         * gst/autoplug/gstspideridentity.c:
1318         * gst/autoplug/gstspideridentity.h:
1319         * gst/autoplug/spidertest.c:
1320           Die, spider, die.
1321
1322 2005-04-25  Wim Taymans  <wim@fluendo.com>
1323
1324         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1325         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1326         (gst_pad_pull_range), (gst_static_pad_template_get_caps),
1327         (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
1328         * gst/gstpad.h:
1329         Added stubs for unimplemented functions. 
1330
1331 2005-04-24  David Schleef  <ds@schleef.org>
1332
1333         * gst/gstpad.h: Disable some unimplemented functions.  Wim,
1334         please fix.
1335
1336 2005-04-24  David Schleef  <ds@schleef.org>
1337
1338         Convert everything from GstAtomicInt to g_atomic_int_*, and
1339         remove gstatomic.
1340         * gst/Makefile.am:
1341         * gst/gstatomic.c:
1342         * gst/gstatomic.h:
1343         * gst/gstatomic_impl.h:
1344         * gst/gstbuffer.c:
1345         * gst/gstcaps.c:
1346         * gst/gstcaps.h:
1347         * gst/gstclock.c:
1348         * gst/gstclock.h:
1349         * gst/gstdata.c:
1350         * gst/gstdata.h:
1351         * gst/gstdata_private.h:
1352         * gst/gstevent.c:
1353         * gst/gstinfo.c:
1354         * gst/gstinfo.h:
1355         * gst/gstmessage.c:
1356         * gst/gstobject.c:
1357         * gst/gstobject.h:
1358         * gst/gststructure.c:
1359         * gst/gststructure.h:
1360         * gst/gstutils.c: Add gst_atomic_int_set() compaitibility function.
1361         * gst/gstutils.h:
1362
1363 2005-04-24  David Schleef  <ds@schleef.org>
1364
1365         * check/gst/gstpad.c: (START_TEST): Oh yeah, it's always nice to
1366         make the regressions tests work.  Remove some code that is no
1367         longer true.
1368         * gst/gstpad.c: (gst_pad_link_check_templates_compatible_unlocked):
1369         Disable warning for pads without templates.
1370
1371 2005-04-24  David Schleef  <ds@schleef.org>
1372
1373         * gst/gstpad.c: Remove handling of filtered caps.  Fix/merge
1374         functions that handle filtered links.
1375         * gst/gstpad.h: Remove 'appfilter' field and prototypes of
1376         removed functions.
1377         * gst/gstutils.c: Fix/remove utility functions that handle
1378         filtered caps.
1379         * gst/gstutils.h:
1380         * gst/gstvalue.c: Add serialization/deserialization of caps
1381         * gst/parse/grammar.y: Ignore filtered caps when linking.  This
1382         requires fixing so that the filter caps notation creates
1383         a capsfilter element and sets the filter_caps property.  I
1384         think everyone probably wants to keep the shorthand notation.
1385         * docs/gst/tmpl/gstelement.sgml: updates for API changes.
1386         * docs/gst/tmpl/gstpad.sgml:
1387
1388         * gst/elements/gstelements.c: Register capsfilter element.
1389         * gst/Makefile.am: fix spacing
1390         * docs/random/ds/0.9-suggested-changes: random
1391
1392 2005-04-23  David Schleef  <ds@schleef.org>
1393
1394         * gst/elements/Makefile.am:
1395         * gst/elements/gstcapsfilter.c: New element that acts like an
1396         identity, but filters caps.  Will eventually replace filtered
1397         caps in pad linking.
1398         * gst/gstutils.c: (gst_element_create_all_pads): New function
1399         to create all the ALWAYS pads that are registered with an
1400         element class.  This functionality should eventually be
1401         merged in with GstElement initialization.
1402         * gst/gstutils.h:
1403         * testsuite/trigger/README: part of trigger test code that should
1404         have been checked in a long time ago.
1405
1406 2005-04-23  David Schleef  <ds@schleef.org>
1407
1408         * gst/Makefile.am: Remove as-libtool stuff.  It's likely not
1409         needed with new versions of libtool (nobody will confirm this),
1410         and hard to carry around.
1411         * gst/autoplug/Makefile.am:
1412         * gst/base/Makefile.am:
1413         * gst/elements/Makefile.am:
1414         * gst/indexers/Makefile.am:
1415         * gst/schedulers/Makefile.am:
1416         * libs/gst/bytestream/Makefile.am:
1417         * libs/gst/control/Makefile.am:
1418         * libs/gst/dataprotocol/Makefile.am:
1419         * libs/gst/getbits/Makefile.am:
1420
1421 2005-04-21  Wim Taymans  <wim@fluendo.com>
1422
1423         * docs/design/draft-push-pull.txt:
1424         * docs/design/part-MT-refcounting.txt:
1425         * docs/design/part-TODO.txt:
1426         * docs/design/part-caps.txt:
1427         * docs/design/part-events.txt:
1428         * docs/design/part-gstbus.txt:
1429         * docs/design/part-gstpipeline.txt:
1430         * docs/design/part-messages.txt:
1431         * docs/design/part-push-pull.txt:
1432         * docs/design/part-query.txt:
1433         Some more docs.
1434
1435 2005-04-21  Wim Taymans  <wim@fluendo.com>
1436
1437         * gst/gstmessage.c: (_gst_message_copy), (_gst_message_free),
1438         (gst_message_new), (gst_message_new_error),
1439         (gst_message_new_warning), (gst_message_new_tag),
1440         (gst_message_new_state_changed), (gst_message_new_application),
1441         (gst_message_get_structure):
1442         * gst/gstmessage.h:
1443         * gst/gststructure.c: (gst_structure_set_parent_refcount),
1444         (gst_structure_copy_conditional):
1445         Use parent refcount in GstMessage to ensure GstStructure
1446         consistency.
1447         Cleaned up headers a bit.
1448         
1449
1450 2005-04-20  Wim Taymans  <wim@fluendo.com>
1451
1452         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1453         (gst_basesink_pad_getcaps), (gst_basesink_init),
1454         (gst_basesink_chain_unlocked):
1455         * gst/base/gsttypefindhelper.c: (helper_find_suggest),
1456         (gst_type_find_helper):
1457         * gst/elements/gsttypefindelement.c:
1458         (gst_type_find_element_have_type), (gst_type_find_element_init),
1459         (stop_typefinding), (gst_type_find_element_handle_event),
1460         (find_suggest), (gst_type_find_element_chain),
1461         (gst_type_find_element_checkgetrange),
1462         (gst_type_find_element_getrange), (do_typefind),
1463         (gst_type_find_element_activate):
1464         * gst/gstbuffer.c: (_gst_buffer_sub_free),
1465         (gst_buffer_default_free), (gst_buffer_default_copy),
1466         (gst_buffer_set_caps):
1467         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
1468         (gst_caps_replace):
1469         * gst/gstmessage.c: (gst_message_new),
1470         (gst_message_new_state_changed):
1471         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1472         (gst_pad_set_checkgetrange_function),
1473         (gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
1474         (gst_pad_set_caps), (gst_pad_check_pull_range),
1475         (gst_pad_pull_range), (gst_static_pad_template_get_caps):
1476         * gst/gstpad.h:
1477         * gst/gsttypefind.c: (gst_type_find_register):
1478         Make gst_caps_replace() work like other _replace() functions.
1479         Use _caps_replace() where possible.
1480         Make sure _message_new() initialises its field.
1481         Add gst_static_pad_template_get_caps()
1482
1483
1484 2005-04-18  Andy Wingo  <wingo@pobox.com>
1485
1486         * gst/gstelement.c (gst_element_pads_activate): Check pull_range
1487         on the peer, not the pad. I think that was a typo. Pass an extra
1488         arg to see if random access is possible. Activate the pads as
1489         PULL_RANGE if possible.
1490
1491         * gst/elements/gstfakesrc.c: s/ARG_/PROP_/.
1492
1493         * gst/base/gstbasesrc.c (gst_basesrc_set_property) 
1494         (gst_basesrc_get_property): BLOCKSIZE is a ULONG. Rename ARG_...
1495         to PROP_....
1496
1497 2005-04-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1498
1499         * docs/faq/using.xml:
1500           Add note on gstreamer-properties (#154996).
1501
1502 2005-04-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1503
1504         * docs/random/bbb/optional-properties:
1505           Some analysis on optional properties.
1506
1507 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1508
1509         * docs/gst/tmpl/gstelementfactory.sgml:
1510         * gst/gstelement.h:
1511         * gst/gstelementfactory.c: (gst_element_factory_init),
1512         (gst_element_factory_cleanup), (gst_element_register),
1513         (__gst_element_factory_add_static_pad_template),
1514         (gst_element_factory_get_static_pad_templates),
1515         (gst_element_factory_can_src_caps),
1516         (gst_element_factory_can_sink_caps):
1517         * gst/registries/Makefile.am:
1518         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
1519         (gst_xml_registry_class_init), (gst_xml_registry_init),
1520         (gst_xml_registry_new), (gst_xml_registry_set_property),
1521         (gst_xml_registry_get_property), (get_time), (make_dir),
1522         (gst_xml_registry_get_perms_func),
1523         (plugin_times_older_than_recurse), (plugin_times_older_than),
1524         (gst_xml_registry_open_func), (gst_xml_registry_load_func),
1525         (gst_xml_registry_save_func), (gst_xml_registry_close_func),
1526         (add_to_char_array), (read_string), (read_uint), (read_enum),
1527         (load_pad_template), (load_feature), (load_plugin), (load_paths),
1528         (gst_xml_registry_load), (gst_xml_registry_load_plugin),
1529         (gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
1530         (gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
1531         (gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
1532         (gst_xml_registry_rebuild):
1533         * gst/registries/gstlibxmlregistry.h:
1534         * tools/gst-compprep.c: (main):
1535         * tools/gst-inspect.c: (print_pad_templates_info):
1536         * tools/gst-xmlinspect.c: (print_element_info):
1537           Use libxml2 for registry parsing, use staticpadtemplates in
1538           elementfactories. Makes gst_init() +/- 10x faster.
1539
1540 2005-04-12  Wim Taymans  <wim@fluendo.com>
1541
1542         * gst/base/Makefile.am:
1543         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1544         (gst_basesink_pad_getcaps), (gst_basesink_init),
1545         (gst_basesink_event), (gst_basesink_change_state):
1546         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1547         (gst_basesrc_init), (gst_basesrc_query),
1548         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1549         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1550         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1551         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1552         (gst_basesrc_stop), (gst_basesrc_activate),
1553         (gst_basesrc_change_state):
1554         * gst/base/gsttypefindhelper.c: (helper_find_peek),
1555         (helper_find_suggest), (gst_type_find_helper):
1556         * gst/base/gsttypefindhelper.h:
1557         * gst/elements/Makefile.am:
1558         * gst/elements/gstelements.c:
1559         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1560         (gst_fakesink_get_times), (gst_fakesink_event),
1561         (gst_fakesink_preroll), (gst_fakesink_render):
1562         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1563         (gst_fakesrc_init), (gst_fakesrc_event_handler),
1564         (gst_fakesrc_get_property), (gst_fakesrc_create),
1565         (gst_fakesrc_start), (gst_fakesrc_stop):
1566         * gst/elements/gstfakesrc.h:
1567         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init),
1568         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1569         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1570         (gst_filesrc_create_read), (gst_filesrc_create),
1571         (gst_filesrc_is_seekable), (gst_filesrc_get_size),
1572         (gst_filesrc_start):
1573         * gst/elements/gsttypefindelement.c:
1574         (gst_type_find_element_have_type), (gst_type_find_element_init),
1575         (start_typefinding), (stop_typefinding), (push_buffer_store),
1576         (gst_type_find_element_handle_event),
1577         (gst_type_find_element_chain),
1578         (gst_type_find_element_checkgetrange),
1579         (gst_type_find_element_getrange), (do_typefind),
1580         (gst_type_find_element_activate),
1581         (gst_type_find_element_change_state):
1582         * gst/elements/gsttypefindelement.h:
1583         * gst/gstpipeline.c: (pipeline_bus_handler):
1584         Added typefind helper.
1585         Small preroll fix in the base sink.
1586         Disable typefind code in basesrc.
1587         Crude port of typefindelement.
1588         Fakesrc cleanups.
1589
1590
1591 2005-04-11  Wim Taymans  <wim@fluendo.com>
1592
1593         * check/gst/gstbus.c: (gstbus_suite):
1594         * check/gst/gstdata.c: (thread_ref), (gst_data_suite):
1595         * check/gstcheck.h:
1596           Fix up the timeout so that the test does not fail.
1597
1598 2005-04-06  Wim Taymans  <wim@fluendo.com>
1599
1600         * gst/base/README:
1601         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1602         (gst_basesrc_init), (gst_basesrc_get_formats), (gst_basesrc_query),
1603         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1604         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1605         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1606         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1607         (gst_basesrc_stop), (gst_basesrc_activate),
1608         (gst_basesrc_change_state), (basesrc_find_peek),
1609         (basesrc_find_suggest), (gst_basesrc_type_find):
1610         * gst/base/gstbasesrc.h:
1611         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
1612         (gst_filesrc_class_init), (gst_filesrc_init),
1613         (gst_filesrc_finalize), (gst_filesrc_set_location),
1614         (gst_filesrc_set_property), (gst_filesrc_get_property),
1615         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1616         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1617         (gst_filesrc_create_read), (gst_filesrc_create),
1618         (gst_filesrc_get_size), (gst_filesrc_start), (gst_filesrc_stop):
1619         * gst/elements/gstfilesrc.h:
1620         * gst/gstelement.c: (gst_element_get_state_func),
1621         (gst_element_lost_state), (gst_element_pads_activate):
1622         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1623         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1624         (gst_pad_pull_range):
1625         * gst/gstpad.h:
1626         More work on the generic source base class, implement seeking,
1627         query.
1628         Make filesrc extend the base source class.
1629         Added gst_pad_set_checkgetrange_function to GstPad.
1630
1631 2005-04-06  Andy Wingo  <wingo@pobox.com>
1632
1633         * pkgconfig/gstreamer-base.pc.in:
1634         * pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
1635
1636         * pkgconfig/Makefile.am:
1637         * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
1638
1639 2005-04-04  Wim Taymans  <wim@fluendo.com>
1640
1641         * gst/base/Makefile.am:
1642         * gst/base/README:
1643         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1644         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1645         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1646         (gst_basesink_do_sync), (gst_basesink_chain_unlocked):
1647         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1648         (gst_basesrc_base_init), (gst_basesrc_class_init),
1649         (gst_basesrc_init), (gst_basesrc_get_formats),
1650         (gst_basesrc_get_query_types), (gst_basesrc_query),
1651         (gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
1652         (gst_basesrc_set_property), (gst_basesrc_get_property),
1653         (gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
1654         (gst_basesrc_loop), (gst_basesrc_activate),
1655         (gst_basesrc_change_state):
1656         * gst/base/gstbasesrc.h:
1657         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
1658         (gst_fakesrc_class_init), (gst_fakesrc_init),
1659         (gst_fakesrc_event_handler), (gst_fakesrc_set_property),
1660         (gst_fakesrc_get_property), (gst_fakesrc_create):
1661         * gst/elements/gstfakesrc.h:
1662         * gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
1663         (gst_filesrc_open_file), (gst_filesrc_loop),
1664         (gst_filesrc_activate), (filesrc_find_peek),
1665         (gst_filesrc_type_find):
1666         Made base source class, make fakesrc extend it.
1667         Add comments to basesink class.
1668         Some filesrc cleanup.
1669
1670 2005-03-31  David Schleef  <ds@schleef.org>
1671
1672         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
1673         Switch to using G_MODULE_BIND_LOCAL, which means plugins are now
1674         expected to link against libgstreamer.
1675         * gst/base/Makefile.am: link against libgstreamer
1676         * gst/elements/Makefile.am: same
1677
1678 2005-03-31  Andy Wingo  <wingo@pobox.com>
1679
1680         * tests/instantiate/Makefile.am:
1681         * tests/instantiate/caps.c: Add test to test speed of caps copy
1682         and free.
1683
1684         * tests/memchunk/gmemchunktest.c (main): Use alloc only on the
1685         GMemChunk to be fair.
1686
1687         * gst/gsttrashstack.h: Remove warning about using the fallback
1688         trash stack implementation, it's still faster than malloc.
1689
1690 2005-03-30  Andy Wingo  <wingo@pobox.com>
1691
1692         * tests/complexity.c: Add a copyright.
1693
1694 2005-03-31  Wim Taymans  <wim@fluendo.com>
1695
1696         * gst/base/gstbasetransform.c: (gst_base_transform_base_init),
1697         (gst_base_transform_class_init), (gst_base_transform_init),
1698         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
1699         (gst_base_transform_get_property),
1700         (gst_base_transform_sink_activate),
1701         (gst_base_transform_src_activate),
1702         (gst_base_transform_change_state):
1703         * gst/base/gstbasetransform.h:
1704         * gst/elements/gstidentity.c: (gst_identity_class_init),
1705         (gst_identity_event), (gst_identity_check_perfect),
1706         (gst_identity_transform), (gst_identity_start),
1707         (gst_identity_stop):
1708         Added start/stop methods to transform base class so subclasses 
1709         don't need to deal with state changes even.
1710
1711 2005-03-31  Wim Taymans  <wim@fluendo.com>
1712
1713         * gst/gstevent.c: (gst_event_new_discontinuous_valist),
1714         (gst_event_new_discontinuous), (gst_event_discont_get_value):
1715         * gst/gstevent.h:
1716         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1717         (gst_pad_pull_range):
1718         Added rate to the discont event to prepare for variable speed
1719         and reverse playback.
1720
1721 2005-03-29  David Schleef  <ds@schleef.org>
1722
1723         * configure.ac:
1724         * testsuite/trigger/Makefile.am:
1725         * testsuite/trigger/trigger.c: A little example program to show
1726         how trigger-based elements can work.
1727
1728 2005-03-29  Wim Taymans  <wim@fluendo.com>
1729
1730         * gst/base/Makefile.am:
1731         * gst/base/README:
1732         * gst/base/gstbasesink.c: (gst_basesink_get_type),
1733         (gst_basesink_base_init), (gst_basesink_class_init),
1734         (gst_basesink_pad_getcaps), (gst_basesink_init),
1735         (gst_basesink_activate), (gst_basesink_change_state):
1736         * gst/base/gstbasesink.h:
1737         * gst/base/gstbasetransform.c: (gst_base_transform_get_type),
1738         (gst_base_transform_base_init), (gst_base_transform_finalize),
1739         (gst_base_transform_class_init), (gst_base_transform_init),
1740         (gst_base_transform_proxy_getcaps), (gst_base_transform_setcaps),
1741         (gst_base_transform_event), (gst_base_transform_getrange),
1742         (gst_base_transform_chain), (gst_base_transform_handle_buffer),
1743         (gst_base_transform_set_property),
1744         (gst_base_transform_get_property),
1745         (gst_base_transform_sink_activate),
1746         (gst_base_transform_src_activate),
1747         (gst_base_transform_change_state):
1748         * gst/base/gstbasetransform.h:
1749         * gst/elements/gstidentity.c: (gst_identity_finalize),
1750         (gst_identity_class_init), (gst_identity_init),
1751         (gst_identity_event), (gst_identity_check_perfect),
1752         (gst_identity_transform), (gst_identity_set_property),
1753         (gst_identity_get_property), (gst_identity_change_state):
1754         * gst/elements/gstidentity.h:
1755         * gst/gstelement.c: (gst_element_get_state_func),
1756         (gst_element_lost_state), (gst_element_pads_activate):
1757         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1758         (gst_pad_check_pull_range), (gst_pad_pull_range):
1759         * gst/gstpad.h:
1760         Simplify pad activation.
1761         Added function to check if pull_range can be performed.
1762         Error out when pulling inactive or flushing pads.
1763         Removed const from refcounted types as it does not make sense.
1764         Simplify pad templates in basesink
1765         Added base class for simple 1-to-1 transforms.
1766         Make identity subclass the base transform.
1767
1768 2005-03-29  Andy Wingo  <wingo@pobox.com>
1769
1770         * docs/libs/gstreamer-libs-overrides.txt: 
1771         * docs/gst/gstreamer-overrides.txt: Add these files to CVS. Now I
1772         really don't understand what's going on, but like whatever. I want
1773         green buildbot!
1774
1775         * docs/gst/Makefile.am:
1776         * docs/libs/Makefile.am: Dist the overrides files.
1777
1778         * check/Makefile.am (clean-local): Remove .libs directories.
1779
1780         * gst/elements/Makefile.am (EXTRA_DIST): Add all the attic
1781         elements to EXTRA_DIST, so po/ files are happy.
1782
1783         * po/POTFILES.in: Er, remove it here.
1784
1785         * po/POTFILES: Remove gstspider.c.
1786
1787         * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
1788
1789         * docs/libs/gstreamer-libs-docs.sgml: 
1790         * docs/libs/gstreamer-libs-sections.txt: Remove the section on
1791         bytestream.
1792
1793         * tests/complexity.c (main): Set the length of the preroll queue
1794         on the sinks to prevent a lockup.
1795
1796         * libs/gst/dataprotocol/Makefile.am: 
1797         * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
1798         the same as the one in check/gst-libs/gdp.c.
1799
1800         * po/, docs/gst/: Commit automatic changes to docs and po files.
1801
1802         * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to
1803         the versioned libgstbase.
1804
1805         * check/Makefile.am: Depend on an unversioned gst-register, seems
1806         to make autoconf happier.
1807
1808         * gst/base/Makefile.am: Make libgstbase a versioned lib.
1809
1810 2005-03-28  Wim Taymans  <wim@fluendo.com>
1811
1812         * configure.ac:
1813         * docs/design/part-gstelement.txt:
1814         * docs/design/part-negotiation.txt:
1815         * docs/design/part-preroll.txt:
1816         * docs/design/part-scheduling.txt:
1817         * docs/design/part-states.txt:
1818         * gst/Makefile.am:
1819         * gst/base/Makefile.am:
1820         * gst/base/README:
1821         * gst/base/gstbasesink.c: (gst_basesink_get_template),
1822         (gst_basesink_base_init), (gst_basesink_class_init),
1823         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1824         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1825         (gst_basesink_set_pad_functions),
1826         (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock),
1827         (gst_basesink_set_property), (gst_basesink_get_property),
1828         (gst_base_sink_get_template), (gst_base_sink_get_caps),
1829         (gst_base_sink_set_caps), (gst_base_sink_buffer_alloc),
1830         (gst_basesink_preroll_queue_push),
1831         (gst_basesink_preroll_queue_empty),
1832         (gst_basesink_preroll_queue_flush), (gst_basesink_finish_preroll),
1833         (gst_basesink_event), (gst_basesink_get_times),
1834         (gst_basesink_do_sync), (gst_basesink_handle_buffer),
1835         (gst_basesink_chain_unlocked), (gst_basesink_chain),
1836         (gst_basesink_loop), (gst_basesink_activate),
1837         (gst_basesink_change_state):
1838         * gst/base/gstbasesink.h:
1839         * gst/elements/Makefile.am:
1840         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
1841         (gst_fakesink_class_init), (gst_fakesink_init),
1842         (gst_fakesink_set_property), (gst_fakesink_get_property),
1843         (gst_fakesink_get_times), (gst_fakesink_event),
1844         (gst_fakesink_preroll), (gst_fakesink_render),
1845         (gst_fakesink_change_state):
1846         * gst/elements/gstfakesink.h:
1847         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
1848         (gst_bin_get_state), (gst_bin_change_state), (gst_bin_send_event):
1849         * gst/gstelement.c: (gst_element_add_pad),
1850         (gst_element_get_state_func), (gst_element_abort_state),
1851         (gst_element_commit_state), (gst_element_lost_state),
1852         (gst_element_set_state), (gst_element_pads_activate):
1853         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_event_default):
1854         * gst/gstpipeline.c: (gst_pipeline_send_event),
1855         (gst_pipeline_change_state):
1856         Added state change code.
1857         Added/updated docs.
1858         Added sink base class, make fakesink extend the base class.
1859         Small cleanups in GstPipeline.
1860
1861 2005-03-26  David Schleef  <ds@schleef.org>
1862
1863         * gst/Makefile.am: remove gstcpu.[ch].  The gst_cpu functionality
1864         is broken and should be implemented in a different library.
1865         * gst/gst.c: (init_post): don't call _gst_cpu_initialize()
1866         * gst/gst.h: remove gstcpu.h
1867         * gst/gstcpu.c: remove
1868         * gst/gstcpu.h: remove
1869         * gst/Makefile.am.future: Remove this file.  It's ancient.
1870
1871 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1872
1873         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
1874         (gst_bin_send_event):
1875           Add default event/set_manager handlers. The set_manager handler
1876           takes care that the manager is distributed over kids that were
1877           already in the bin before the manager was set. The event handler
1878           is a utility virtual function that sends the event over all sinks,
1879           so that gst_element_send_event (bin, event); has the expected
1880           behaviour.
1881         * gst/gstpad.c: (gst_pad_event_default):
1882           Re-install default event handling for discontinuities, so that
1883           seeking works without requiring hacks in applications or extra
1884           code in sinks.
1885         * gst/gstpipeline.c: (gst_pipeline_class_init),
1886         (gst_pipeline_send_event):
1887           Half hack, half utility: set a pipeline to PAUSED for seek events,
1888           since that is the only way we can guarantee a/v sync. Means that
1889           you can do gst_element_seek (pipeline, method, pos); on a pipeline
1890           and it "just works".
1891
1892 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1893
1894         * gst/gstpipeline.c: (gst_pipeline_use_clock):
1895           Lock/unlock mismatch.
1896
1897 2005-03-25  Thomas Vander Stichele  <thomas at apestaart dot org>
1898
1899         * docs/faq/gst-uninstalled:
1900           add gst-plugins-base
1901         * docs/gst/Makefile.am:
1902           don't error out until docs are fixed
1903         * docs/gst/gstreamer.types:
1904           remove thread
1905
1906 2005-03-22  Wim Taymans  <wim@fluendo.com>
1907
1908         * check/Makefile.am:
1909         * check/gst/gstmessage.c: (START_TEST), (gst_data_suite), (main):
1910         * gst/gststructure.c: (gst_structure_set_valist),
1911         (gst_structure_copy_conditional):
1912         Activated more tests.
1913         Added message test.
1914         Added G_TYPE_POINTER to GstStructure.
1915         
1916
1917 2005-03-22  Wim Taymans  <wim@fluendo.com>
1918
1919         * docs/design/part-TODO.txt:
1920         * docs/design/part-events.txt:
1921         * docs/design/part-gstbin.txt:
1922         * docs/design/part-gstbus.txt:
1923         * docs/design/part-gstpipeline.txt:
1924         * docs/design/part-messages.txt:
1925         * gst/gstbus.c:
1926         * gst/gstmessage.c:
1927         Docs updates
1928
1929 2005-03-21  Wim Taymans  <wim@fluendo.com>
1930
1931         * gst/gstbus.c: (gst_bus_post):
1932         Fix copy-and-paste error.
1933
1934 2005-03-21  Wim Taymans  <wim@fluendo.com>
1935
1936         * check/Makefile.am:
1937         * gst/Makefile.am:
1938         * gst/elements/Makefile.am:
1939         * gst/elements/gstelements.c:
1940         * gst/elements/gstfakesink.c: (gst_fakesink_init),
1941         (gst_fakesink_event), (gst_fakesink_chain):
1942         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1943         (gst_fakesrc_init), (gst_fakesrc_get_event_mask),
1944         (gst_fakesrc_event_handler), (gst_fakesrc_set_pad_functions),
1945         (gst_fakesrc_set_all_pad_functions), (gst_fakesrc_request_new_pad),
1946         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
1947         (gst_fakesrc_get_range_unlocked), (gst_fakesrc_get_range),
1948         (gst_fakesrc_loop), (gst_fakesrc_activate),
1949         (gst_fakesrc_change_state):
1950         * gst/elements/gstfakesrc.h:
1951         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
1952         (gst_filesrc_get_read), (gst_filesrc_getrange), (gst_filesrc_get),
1953         (gst_filesrc_open_file), (gst_filesrc_loop),
1954         (gst_filesrc_activate), (gst_filesrc_change_state),
1955         (filesrc_find_peek), (filesrc_find_suggest),
1956         (gst_filesrc_type_find):
1957         * gst/elements/gstidentity.c: (gst_identity_finalize),
1958         (gst_identity_class_init), (gst_identity_init),
1959         (gst_identity_proxy_getcaps), (identity_queue_push),
1960         (identity_queue_pop), (identity_queue_flush), (gst_identity_event),
1961         (gst_identity_getrange), (gst_identity_chain),
1962         (gst_identity_sink_loop), (gst_identity_src_loop),
1963         (gst_identity_handle_buffer), (gst_identity_set_dataflow_funcs),
1964         (gst_identity_set_property), (gst_identity_get_property),
1965         (gst_identity_change_state):
1966         * gst/elements/gstidentity.h:
1967         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
1968         (gst_tee_update_pad_functions), (gst_tee_request_new_pad),
1969         (gst_tee_set_property), (gst_tee_get_property), (gst_tee_do_push),
1970         (gst_tee_handle_buffer), (gst_tee_chain), (gst_tee_loop),
1971         (gst_tee_sink_activate):
1972         * gst/elements/gsttee.h:
1973         * gst/gst.c: (gst_register_core_elements), (init_post):
1974         * gst/gst.h:
1975         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_bus),
1976         (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_add),
1977         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_get_state),
1978         (gst_bin_change_state):
1979         * gst/gstbin.h:
1980         * gst/gstbus.c: (gst_bus_get_type), (gst_bus_class_init),
1981         (gst_bus_init), (gst_bus_dispose), (gst_bus_set_property),
1982         (gst_bus_get_property), (gst_bus_new), (gst_bus_post),
1983         (gst_bus_have_pending), (gst_bus_pop), (gst_bus_peek),
1984         (gst_bus_set_sync_handler), (gst_bus_create_watch),
1985         (bus_watch_callback), (bus_watch_destroy),
1986         (gst_bus_add_watch_full), (gst_bus_add_watch), (poll_handler),
1987         (poll_timeout), (gst_bus_poll):
1988         * gst/gstbus.h:
1989         * gst/gstcaps.h:
1990         * gst/gstdata.h:
1991         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
1992         (gst_element_post_message), (gst_element_message_full),
1993         (gst_element_get_state_func), (gst_element_get_state),
1994         (gst_element_abort_state), (gst_element_commit_state),
1995         (gst_element_lost_state), (gst_element_set_state),
1996         (gst_element_pads_activate), (gst_element_change_state),
1997         (gst_element_dispose), (gst_element_set_manager_func),
1998         (gst_element_set_bus_func), (gst_element_set_scheduler_func),
1999         (gst_element_set_manager), (gst_element_get_manager),
2000         (gst_element_set_bus), (gst_element_get_bus),
2001         (gst_element_set_scheduler), (gst_element_get_scheduler):
2002         * gst/gstelement.h:
2003         * gst/gstevent.c: (gst_event_new_segment_seek),
2004         (gst_event_new_flush):
2005         * gst/gstevent.h:
2006         * gst/gstmessage.c: (_gst_message_initialize), (_gst_message_copy),
2007         (_gst_message_free), (gst_message_get_type), (gst_message_new),
2008         (gst_message_new_eos), (gst_message_new_error),
2009         (gst_message_new_warning), (gst_message_new_tag),
2010         (gst_message_new_state_changed), (gst_message_new_application),
2011         (gst_message_get_structure), (gst_message_parse_tag),
2012         (gst_message_parse_state_changed), (gst_message_parse_error),
2013         (gst_message_parse_warning):
2014         * gst/gstmessage.h:
2015         * gst/gstpad.c: (gst_real_pad_class_init), (gst_real_pad_init),
2016         (gst_real_pad_set_property), (gst_pad_set_active),
2017         (gst_pad_is_active), (gst_pad_set_blocked_async),
2018         (gst_pad_set_blocked), (gst_pad_is_blocked),
2019         (gst_pad_set_activate_function), (gst_pad_set_loop_function),
2020         (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function),
2021         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
2022         (gst_pad_unlink), (gst_pad_link_prepare_filtered),
2023         (gst_pad_link_filtered), (gst_pad_relink_filtered),
2024         (gst_real_pad_get_caps_unlocked), (gst_pad_get_caps),
2025         (gst_pad_peer_get_caps), (gst_pad_fixate_caps),
2026         (gst_pad_accept_caps), (gst_pad_peer_accept_caps),
2027         (gst_pad_set_caps), (gst_pad_configure_sink),
2028         (gst_pad_configure_src), (gst_pad_get_negotiated_caps),
2029         (gst_pad_get_filter_caps), (gst_pad_alloc_buffer),
2030         (gst_real_pad_dispose), (gst_real_pad_finalize),
2031         (handle_pad_block), (gst_pad_push), (gst_pad_pull_range),
2032         (gst_pad_event_default_dispatch), (gst_pad_event_default),
2033         (gst_pad_push_event), (gst_pad_send_event), (gst_pad_get_formats):
2034         * gst/gstpad.h:
2035         * gst/gstpipeline.c: (gst_pipeline_init), (is_eos),
2036         (pipeline_bus_handler), (gst_pipeline_change_state),
2037         (gst_pipeline_get_scheduler), (gst_pipeline_get_bus):
2038         * gst/gstpipeline.h:
2039         * gst/gstprobe.h:
2040         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
2041         (gst_queue_finalize), (gst_queue_getcaps), (gst_queue_link_sink),
2042         (gst_queue_link_src), (gst_queue_bufferalloc),
2043         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
2044         (gst_queue_is_empty), (gst_queue_is_filled), (gst_queue_chain),
2045         (gst_queue_loop), (gst_queue_handle_src_event),
2046         (gst_queue_handle_src_query), (gst_queue_src_activate),
2047         (gst_queue_change_state):
2048         * gst/gstqueue.h:
2049         * gst/gstscheduler.c: (gst_scheduler_init),
2050         (gst_scheduler_dispose), (gst_scheduler_create_task),
2051         (gst_scheduler_factory_create):
2052         * gst/gstscheduler.h:
2053         * gst/gststructure.c: (gst_structure_get_type),
2054         (gst_structure_copy_conditional):
2055         * gst/gststructure.h:
2056         * gst/gsttaginterface.h:
2057         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
2058         (gst_task_init), (gst_task_dispose), (gst_task_create),
2059         (gst_task_get_state), (gst_task_start), (gst_task_stop),
2060         (gst_task_pause):
2061         * gst/gsttask.h:
2062         * gst/gstthread.c:
2063         * gst/gstthread.h:
2064         * gst/gsttypes.h:
2065         * gst/schedulers/Makefile.am:
2066         * gst/schedulers/cothreads_compat.h:
2067         * gst/schedulers/entryscheduler.c:
2068         * gst/schedulers/faircothreads.c:
2069         * gst/schedulers/faircothreads.h:
2070         * gst/schedulers/fairscheduler.c:
2071         * gst/schedulers/gstbasicscheduler.c:
2072         * gst/schedulers/gstoptimalscheduler.c:
2073         * gst/schedulers/gthread-cothreads.h:
2074         * gst/schedulers/threadscheduler.c:
2075         (gst_thread_scheduler_task_get_type),
2076         (gst_thread_scheduler_task_class_init),
2077         (gst_thread_scheduler_task_init),
2078         (gst_thread_scheduler_task_start),
2079         (gst_thread_scheduler_task_stop),
2080         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_get_type),
2081         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
2082         (gst_thread_scheduler_init), (gst_thread_scheduler_create_task),
2083         (gst_thread_scheduler_setup), (gst_thread_scheduler_reset),
2084         (plugin_init):
2085         * libs/gst/Makefile.am:
2086         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf):
2087         * libs/gst/bytestream/filepad.c: (gst_file_pad_init),
2088         (gst_file_pad_parent_set):
2089         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
2090         (gst_dp_event_from_packet):
2091         * tests/complexity.c: (main):
2092         * tests/mass_elements.c: (main):
2093         * testsuite/states/locked.c: (message_received), (main):
2094         * testsuite/states/parent.c: (main):
2095         * tools/gst-inspect.c: (print_element_flag_info),
2096         (print_implementation_info), (print_pad_info):
2097         * tools/gst-launch.c: (check_intr), (play_handler), (event_loop),
2098         (main):
2099         * tools/gst-md5sum.c: (event_loop), (main):
2100         * tools/gst-typefind.c: (main):
2101         * tools/gst-xmlinspect.c: (print_element_info):
2102         Next big merge.
2103         Added GstBus for mainloop integration.
2104         Added GstMessage for sending notifications on the bus.
2105         Added GstTask as an abstraction for pipeline entry points.
2106         Removed GstThread.
2107         Removed Schedulers.
2108         Simplified GstQueue for multithreaded core.
2109         Made _link threadsafe, removed old capsnego.
2110         Added STREAM_LOCK and PREROLL_LOCK in GstPad.
2111         Added pad blocking functions.
2112         Reworked scheduling functions in GstPad to prepare for
2113         scheduling updates soon.
2114         Moved events out of data stream.
2115         Simplified GstEvent types.
2116         Added return values to push/pull.
2117         Removed clocking from GstElement.
2118         Added prototypes for state change function for next merge.
2119         Removed iterate from bins and state change management.
2120         Fixed some elements, disabled others for now.
2121         Fixed -inspect and -launch.
2122         Added check for GstBus.
2123
2124 2005-03-10  Wim Taymans  <wim@fluendo.com>
2125
2126         * docs/design/part-MT-refcounting.txt:
2127         * docs/design/part-clocks.txt:
2128         * docs/design/part-gstelement.txt:
2129         * docs/design/part-gstobject.txt:
2130         * docs/design/part-standards.txt:
2131         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2132         (gst_bin_remove_func), (gst_bin_remove):
2133         * gst/gstbin.h:
2134         * gst/gstbuffer.c:
2135         * gst/gstcaps.h:
2136         * testsuite/clock/clock1.c: (main):
2137         * testsuite/clock/clock2.c: (gst_clock_debug), (element_wait),
2138         (main):
2139         * testsuite/dlopen/loadgst.c: (do_test):
2140         * testsuite/refcounting/bin.c: (add_remove_test1),
2141         (add_remove_test2), (main):
2142         * testsuite/refcounting/element.c: (main):
2143         * testsuite/refcounting/element_pad.c: (main):
2144         * testsuite/refcounting/pad.c: (main):
2145         * tools/gst-launch.c: (sigint_handler_sighandler):
2146         * tools/gst-typefind.c: (main):
2147         Doc updates.
2148         Added doc about clock.
2149         removed gst_bin_iterate_recurse_up(), marked methods
2150         for removal.
2151         Fix more testsuites.
2152
2153 2005-03-09  Wim Taymans  <wim@fluendo.com>
2154
2155         * gst/gstpad.c: (gst_pad_get_direction),
2156         (_gst_pad_default_fixate_foreach), (gst_pad_collectv),
2157         (gst_pad_collect_valist):
2158         * testsuite/bins/interface.c: (main):
2159         * testsuite/caps/audioscale.c: (test_caps):
2160         * testsuite/caps/caps.c: (test1), (test2), (test3):
2161         * testsuite/caps/deserialize.c: (main):
2162         * testsuite/caps/enumcaps.c: (main):
2163         * testsuite/caps/filtercaps.c: (main):
2164         * testsuite/caps/intersect2.c: (main):
2165         * testsuite/caps/random.c: (main):
2166         * testsuite/caps/renegotiate.c: (my_fixate), (main):
2167         * testsuite/caps/sets.c: (check_caps):
2168         * testsuite/caps/simplify.c: (check_caps), (main):
2169         * testsuite/caps/subtract.c: (check_caps):
2170         Fix _pad_get_direction wrt ghostpads.
2171         Fix caps testsuite.
2172
2173 2005-03-09  Wim Taymans  <wim@fluendo.com>
2174
2175         * check/Makefile.am:
2176         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite), (main):
2177         * check/gst/gstsystemclock.c: (START_TEST), (gst_clock_debug),
2178         (ok_callback), (error_callback), (gst_systemclock_suite), (main):
2179         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func),
2180         (gst_bin_set_clock_func), (gst_bin_get_clock_func),
2181         (gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
2182         (gst_bin_remove), (gst_bin_iterate_recurse_up),
2183         (bin_element_is_sink), (gst_bin_iterate_sinks),
2184         (gst_bin_iterate_all_by_interface):
2185         * gst/gstbin.h:
2186         * gst/gstelement.c: (gst_element_init), (gst_element_error_full),
2187         (gst_element_change_state), (gst_element_dispose),
2188         (gst_element_finalize), (gst_element_set_loop_function):
2189         * gst/gstelement.h:
2190         * gst/gstiterator.c: (find_custom_fold_func):
2191         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2192         (gst_pad_collectv), (gst_pad_collect_valist),
2193         (gst_pad_template_new):
2194         * gst/gstpipeline.c: (gst_pipeline_class_init),
2195         (gst_pipeline_dispose), (gst_pipeline_set_property),
2196         (gst_pipeline_get_property), (gst_pipeline_get_clock_func),
2197         (gst_pipeline_get_clock), (gst_pipeline_use_clock),
2198         (gst_pipeline_set_clock), (gst_pipeline_auto_clock):
2199         * gst/gstutils.h:
2200         * gst/schedulers/entryscheduler.c:
2201         * gst/schedulers/gstbasicscheduler.c:
2202         (gst_basic_scheduler_cothreaded_chain),
2203         (gst_basic_scheduler_chain_add_element):
2204         * testsuite/bins/interface.c: (main):
2205         Added GstBin test.
2206         Added GstSystemClock test.
2207         Implemented clock distribution code in GstBin.
2208         Implemented iterate sinks method for future use.
2209         Rearranged gstelement.h
2210         Fix GstIterator comparison bug.
2211         Moved some code to GstPipeline, mostly clocking related.
2212
2213 2005-03-09  Wim Taymans  <wim@fluendo.com>
2214
2215         * configure.ac:
2216         * gst/gst_private.h:
2217         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2218         (gst_bin_remove_func), (gst_bin_remove),
2219         (gst_bin_get_by_name_recurse_up):
2220         * gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
2221         (gst_clock_id_compare_func), (gst_clock_id_wait),
2222         (gst_clock_id_wait_async), (gst_clock_init),
2223         (gst_clock_adjust_unlocked), (gst_clock_get_time):
2224         * gst/gstelement.h:
2225         * gst/gstinfo.c: (_gst_debug_init):
2226         * gst/gstobject.h:
2227         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2228         (gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
2229         * gst/gstpad.h:
2230         Bump version number, we're now 0.9.0
2231         Add future debugging category.
2232         Fix NULL _unref() in _get_by_name_recurse_up
2233         Rearrange gstpad.h.
2234         Update some docs.
2235
2236 2005-03-08  Wim Taymans  <wim@fluendo.com>
2237
2238         * gst/elements/gstaggregator.c: (gst_aggregator_class_init):
2239         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
2240         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
2241         * gst/elements/gstfdsink.c: (gst_fdsink_class_init):
2242         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init):
2243         * gst/elements/gstfilesink.c: (gst_filesink_class_init):
2244         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init):
2245         * gst/elements/gstidentity.c: (gst_identity_class_init):
2246         * gst/elements/gstmd5sink.c: (gst_md5sink_class_init):
2247         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
2248         * gst/elements/gstshaper.c: (gst_shaper_class_init):
2249         * gst/elements/gststatistics.c: (gst_statistics_class_init):
2250         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_getcaps),
2251         (gst_tee_link):
2252         * gst/gstelement.c: (gst_element_class_init),
2253         (gst_element_base_class_init), (gst_element_init),
2254         (gst_element_get_random_pad), (gst_element_wait_state_change),
2255         (gst_element_change_state), (gst_element_dispose),
2256         (gst_element_finalize), (gst_element_set_loop_function):
2257         * gst/gstelement.h:
2258         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_link_src):
2259         * gst/gstthread.c: (gst_thread_class_init),
2260         (gst_thread_release_children_locks), (gst_thread_change_state):
2261         * gst/schedulers/gstbasicscheduler.c:
2262         (gst_basic_scheduler_loopfunc_wrapper),
2263         (gst_basic_scheduler_chain_wrapper),
2264         (gst_basic_scheduler_src_wrapper),
2265         (gst_basic_scheduler_remove_element):
2266         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
2267         Remove threadsafe properties. Fix elements because GObject
2268         complains when installing a property before declaring a
2269         set/get_property handler.
2270         Rearrange gstelement.h file, use STATE macros for state locks.
2271         Free mutexes in the finalize method instead of dispose.
2272
2273 2005-03-08  Wim Taymans  <wim@fluendo.com>
2274
2275         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
2276         * gst/gstthread.c: (gst_thread_release_children_locks):
2277         Added parentage check.
2278         Fix build og GstThread again.
2279
2280 2005-03-08  Wim Taymans  <wim@fluendo.com>
2281
2282         * docs/design/part-MT-refcounting.txt:
2283         * docs/design/part-conventions.txt:
2284         * docs/design/part-gstobject.txt:
2285         * docs/design/part-relations.txt:
2286         * docs/design/part-standards.txt:
2287         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2288         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
2289         (gst_bin_get_by_name), (gst_bin_get_by_interface),
2290         (gst_bin_iterate_all_by_interface):
2291         * gst/gstbuffer.h:
2292         * gst/gstclock.h:
2293         * gst/gstelement.c: (gst_element_class_init),
2294         (gst_element_change_state), (gst_element_set_loop_function):
2295         * gst/gstelement.h:
2296         * gst/gstiterator.c:
2297         * gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
2298         (gst_object_unref), (gst_object_sink), (gst_object_dispose),
2299         (gst_object_dispatch_properties_changed), (gst_object_set_name),
2300         (gst_object_set_parent), (gst_object_unparent),
2301         (gst_object_check_uniqueness):
2302         * gst/gstobject.h:
2303         Docs updates, clean up some headers.
2304
2305 2005-03-07  Wim Taymans  <wim@fluendo.com>
2306
2307         * check/.cvsignore:
2308         * check/Makefile.am:
2309         * check/gst-libs/.cvsignore:
2310         * check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
2311         * check/gst/.cvsignore:
2312         * check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
2313         (START_TEST), (gstbus_suite), (main):
2314         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
2315         * check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
2316         (gst_data_suite), (main):
2317         * check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
2318         (add_fold_func), (gstiterator_suite), (main):
2319         * check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
2320         (thread_name_object), (thread_name_object_default),
2321         (gst_object_name_compare), (gst_object_suite), (main):
2322         * check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
2323         (gst_pad_suite), (main):
2324         * check/gstcheck.c: (gst_check_log_message_func),
2325         (gst_check_log_critical_func), (gst_check_init):
2326         * check/gstcheck.h:
2327         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
2328         (run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
2329         Added checks.
2330
2331 2005-03-07  Wim Taymans  <wim@fluendo.com>
2332
2333         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
2334         (gst_list_iterator_next), (gst_list_iterator_resync),
2335         (gst_list_iterator_free), (gst_iterator_new_list),
2336         (gst_iterator_pop), (gst_iterator_next), (gst_iterator_resync),
2337         (gst_iterator_free), (gst_iterator_push), (filter_next),
2338         (filter_resync), (filter_uninit), (filter_free),
2339         (gst_iterator_filter), (gst_iterator_fold), (foreach_fold_func),
2340         (gst_iterator_foreach), (find_custom_fold_func),
2341         (gst_iterator_find_custom):
2342         * gst/gstiterator.h:
2343         Added missing files.
2344
2345 2005-03-07  Wim Taymans  <wim@fluendo.com>
2346
2347         * Makefile.am:
2348         * configure.ac:
2349         * docs/design/part-MT-refcounting.txt:
2350         * docs/design/part-conventions.txt:
2351         * docs/design/part-gstobject.txt:
2352         * docs/design/part-relations.txt:
2353         * examples/mixer/mixer.c: (main):
2354         * examples/thread/thread.c: (eos), (main):
2355         * gst/Makefile.am:
2356         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
2357         * gst/autoplug/gstspider.c: (gst_spider_identity_plug),
2358         (gst_spider_plug_from_srcpad):
2359         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps),
2360         (gst_spider_identity_change_state),
2361         (gst_spider_identity_sink_loop_type_finding):
2362         * gst/elements/gstfakesrc.c: (gst_fakesrc_loop):
2363         * gst/elements/gstidentity.c: (gst_identity_init):
2364         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_getcaps),
2365         (gst_tee_link), (gst_tee_request_new_pad), (gst_tee_chain):
2366         * gst/elements/gsttypefindelement.c: (free_entry):
2367         * gst/gst.c:
2368         * gst/gst.h:
2369         * gst/gstbin.c: (gst_bin_init), (gst_bin_get_clock_func),
2370         (gst_bin_set_clock_func), (gst_bin_auto_clock),
2371         (gst_bin_set_index), (gst_bin_set_element_sched),
2372         (gst_bin_unset_element_sched), (gst_bin_add_func), (gst_bin_add),
2373         (gst_bin_remove_func), (gst_bin_remove), (iterate_child),
2374         (gst_bin_iterate_elements), (iterate_child_recurse),
2375         (gst_bin_iterate_recurse), (gst_bin_dispose), (compare_name),
2376         (gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
2377         (compare_interface), (gst_bin_get_by_interface),
2378         (gst_bin_iterate_all_by_interface), (gst_bin_iterate_func):
2379         * gst/gstbin.h:
2380         * gst/gstbuffer.c: (gst_buffer_get_type), (_gst_buffer_sub_free),
2381         (gst_buffer_default_free), (gst_buffer_default_copy),
2382         (gst_buffer_new), (gst_buffer_get_caps), (gst_buffer_set_caps),
2383         (gst_buffer_create_sub):
2384         * gst/gstbuffer.h:
2385         * gst/gstcaps.c: (gst_caps_get_type), (gst_caps_new_empty),
2386         (_gst_caps_free), (gst_caps_make_writable), (gst_caps_ref),
2387         (gst_caps_unref), (gst_static_caps_get),
2388         (gst_caps_remove_and_get_structure), (gst_caps_append),
2389         (gst_caps_append_structure), (gst_caps_remove_structure),
2390         (gst_caps_copy_nth), (gst_caps_set_simple),
2391         (gst_caps_set_simple_valist), (gst_caps_is_fixed_foreach),
2392         (gst_structure_is_equal_foreach), (gst_caps_is_subset),
2393         (gst_caps_structure_intersect_field), (gst_caps_intersect),
2394         (gst_caps_structure_subtract_field), (gst_caps_subtract),
2395         (gst_caps_normalize_foreach), (gst_caps_compare_structures),
2396         (gst_caps_structure_figure_out_union),
2397         (gst_caps_switch_structures), (gst_caps_do_simplify),
2398         (gst_caps_replace), (gst_caps_from_string),
2399         (gst_caps_copy_conditional):
2400         * gst/gstcaps.h:
2401         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_ref),
2402         (_gst_clock_id_free), (gst_clock_id_unref),
2403         (gst_clock_id_compare_func), (gst_clock_id_wait),
2404         (gst_clock_id_wait_async), (gst_clock_class_init),
2405         (gst_clock_init), (gst_clock_dispose), (gst_clock_adjust_unlocked),
2406         (gst_clock_get_time), (gst_clock_set_time_adjust),
2407         (gst_clock_set_property), (gst_clock_get_property):
2408         * gst/gstclock.h:
2409         * gst/gstcompat.h:
2410         * gst/gstcpu.c: (_gst_cpu_initialize_i386), (gst_cpu_get_flags):
2411         * gst/gstdata.c: (gst_data_is_writable), (gst_data_copy_on_write):
2412         * gst/gstdata.h:
2413         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
2414         (gst_element_requires_clock), (gst_element_provides_clock),
2415         (gst_element_set_clock), (gst_element_clock_wait),
2416         (gst_element_wait), (gst_element_set_time_delay),
2417         (gst_element_is_indexable), (gst_element_add_pad),
2418         (gst_element_add_ghost_pad), (gst_element_remove_pad),
2419         (pad_compare_name), (gst_element_get_static_pad),
2420         (gst_element_request_pad), (gst_element_get_request_pad),
2421         (gst_element_get_pad), (iterate_pad), (gst_element_iterate_pads),
2422         (gst_element_class_get_pad_template_list),
2423         (gst_element_class_get_pad_template), (gst_element_error_func),
2424         (gst_element_get_random_pad), (gst_element_get_event_masks),
2425         (gst_element_send_event), (gst_element_seek),
2426         (gst_element_get_query_types), (gst_element_query),
2427         (gst_element_get_formats), (gst_element_convert),
2428         (gst_element_is_locked_state), (gst_element_set_locked_state),
2429         (gst_element_sync_state_with_parent), (gst_element_change_state),
2430         (gst_element_finalize), (gst_element_yield),
2431         (gst_element_interrupt), (gst_element_set_scheduler),
2432         (gst_element_get_scheduler), (gst_element_set_loop_function):
2433         * gst/gstelement.h:
2434         * gst/gstevent.h:
2435         * gst/gstformat.c: (_gst_format_initialize), (gst_format_register),
2436         (gst_format_get_by_nick), (gst_format_get_details),
2437         (gst_format_iterate_definitions):
2438         * gst/gstformat.h:
2439         * gst/gstindex.c: (gst_index_gtype_resolver):
2440         * gst/gstinfo.c:
2441         * gst/gstinfo.h:
2442         * gst/gstmemchunk.c: (gst_mem_chunk_alloc), (gst_mem_chunk_alloc0),
2443         (gst_mem_chunk_free):
2444         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
2445         (gst_object_ref), (gst_object_unref), (gst_object_sink),
2446         (gst_object_replace), (gst_object_dispose), (gst_object_finalize),
2447         (gst_object_dispatch_properties_changed),
2448         (gst_object_set_name_default), (gst_object_set_name),
2449         (gst_object_get_name), (gst_object_set_name_prefix),
2450         (gst_object_get_name_prefix), (gst_object_set_parent),
2451         (gst_object_get_parent), (gst_object_unparent),
2452         (gst_object_check_uniqueness), (gst_object_save_thyself),
2453         (gst_object_restore_thyself), (gst_object_real_restore_thyself),
2454         (gst_object_set_property), (gst_object_get_property),
2455         (gst_object_get_path_string):
2456         * gst/gstobject.h:
2457         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
2458         (gst_real_pad_init), (gst_real_pad_get_property),
2459         (gst_pad_custom_new), (gst_pad_get_direction),
2460         (gst_pad_set_active), (gst_pad_is_active),
2461         (gst_pad_set_event_function), (gst_pad_is_linked),
2462         (gst_pad_link_free), (gst_pad_link_intersect),
2463         (gst_pad_link_fixate), (gst_pad_set_caps),
2464         (gst_pad_try_set_caps_nonfixed), (gst_pad_set_pad_template),
2465         (gst_pad_get_real_parent), (gst_pad_add_ghost_pad),
2466         (gst_pad_remove_ghost_pad), (_gst_pad_default_fixate_foreach),
2467         (gst_pad_link_unnegotiate), (gst_pad_proxy_fixate),
2468         (gst_pad_get_caps), (gst_pad_peer_get_caps),
2469         (gst_pad_get_pad_template_caps), (gst_pad_get_peer),
2470         (gst_pad_realize), (gst_pad_get_allowed_caps),
2471         (gst_real_pad_dispose), (gst_real_pad_finalize),
2472         (gst_pad_collectv), (gst_pad_collect_valist),
2473         (gst_pad_template_dispose), (gst_pad_template_new),
2474         (gst_pad_get_internal_links):
2475         * gst/gstpad.h:
2476         * gst/gstpipeline.c: (gst_pipeline_dispose),
2477         (gst_pipeline_change_state):
2478         * gst/gstpipeline.h:
2479         * gst/gstplugin.c:
2480         * gst/gstpluginfeature.c: (gst_plugin_feature_get_name),
2481         (gst_plugin_feature_set_rank), (gst_plugin_feature_get_rank):
2482         * gst/gstpluginfeature.h:
2483         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
2484         * gst/gstquery.c: (_gst_query_type_initialize),
2485         (gst_query_type_register), (gst_query_type_get_by_nick),
2486         (gst_query_type_get_details), (gst_query_type_iterate_definitions):
2487         * gst/gstquery.h:
2488         * gst/gstqueue.c: (gst_queue_link_sink), (gst_queue_link_src):
2489         * gst/gstscheduler.c: (gst_scheduler_add_element),
2490         (gst_scheduler_factory_create):
2491         * gst/gststructure.c: (gst_structure_set_parent_refcount),
2492         (gst_structure_free), (gst_structure_set_name),
2493         (gst_structure_id_set_value), (gst_structure_set_value),
2494         (gst_structure_set_valist), (gst_structure_remove_field),
2495         (gst_structure_remove_fields),
2496         (gst_structure_remove_fields_valist),
2497         (gst_structure_remove_all_fields), (gst_structure_foreach),
2498         (gst_structure_map_in_place),
2499         (gst_caps_structure_fixate_field_nearest_int),
2500         (gst_caps_structure_fixate_field_nearest_double):
2501         * gst/gststructure.h:
2502         * gst/gstsystemclock.c: (gst_system_clock_class_init),
2503         (gst_system_clock_init), (gst_system_clock_dispose),
2504         (gst_system_clock_async_thread),
2505         (gst_system_clock_id_wait_unlocked), (gst_system_clock_id_wait),
2506         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
2507         * gst/gstsystemclock.h:
2508         * gst/gsttag.c: (gst_tag_list_add_value_internal),
2509         (gst_tag_list_copy_foreach), (structure_foreach_wrapper):
2510         * gst/gsttaginterface.c:
2511         * gst/gstthread.c: (gst_thread_dispose),
2512         (gst_thread_release_children_locks), (gst_thread_change_state),
2513         (gst_thread_main_loop):
2514         * gst/gsttrashstack.h:
2515         * gst/gsttypefind.c: (gst_type_find_factory_dispose):
2516         * gst/gsttypes.h:
2517         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
2518         (gst_element_request_pad), (gst_element_get_pad_from_template),
2519         (gst_element_request_compatible_pad),
2520         (gst_element_get_compatible_pad_filtered),
2521         (gst_element_get_compatible_pad), (gst_element_state_get_name),
2522         (gst_element_link_pads_filtered), (gst_element_link_filtered),
2523         (gst_element_link_many), (gst_element_link),
2524         (gst_element_link_pads), (gst_element_unlink_pads),
2525         (gst_element_unlink_many), (gst_element_unlink),
2526         (gst_pad_can_link_filtered), (gst_pad_can_link),
2527         (gst_pad_use_fixed_caps), (gst_pad_get_fixed_caps_func),
2528         (gst_object_default_error), (gst_bin_add_many),
2529         (gst_bin_remove_many), (gst_element_populate_std_props),
2530         (gst_element_class_install_std_props), (gst_buffer_merge),
2531         (gst_buffer_stamp), (intersect_caps_func), (gst_pad_proxy_getcaps),
2532         (link_fold_func), (gst_pad_proxy_setcaps):
2533         * gst/gstutils.h:
2534         * gst/gstvalue.c: (gst_value_deserialize_string):
2535         * gst/parse/grammar.y:
2536         * gst/schedulers/gstbasicscheduler.c:
2537         (gst_basic_scheduler_cothreaded_chain),
2538         (gst_basic_scheduler_chain_recursive_add),
2539         (gst_basic_scheduler_pad_link):
2540         * gst/schedulers/gstoptimalscheduler.c:
2541         (get_group_schedule_function),
2542         (gst_opt_scheduler_state_transition),
2543         (gst_opt_scheduler_add_element), (element_get_reachables_func):
2544         * libs/gst/bytestream/bytestream.c:
2545         * libs/gst/dataprotocol/dataprotocol.c:
2546         (gst_dp_header_from_buffer):
2547         * po/nb.po:
2548         * po/ru.po:
2549         * tests/threadstate/threadstate2.c: (eos):
2550         * tools/gst-compprep.c: (main):
2551         * tools/gst-inspect.c: (print_field), (print_element_flag_info),
2552         (print_pad_info), (print_children_info):
2553         * tools/gst-launch.c: (idle_func), (main):
2554         * tools/gst-md5sum.c: (idle_func), (main):
2555         * tools/gst-xmlinspect.c: (print_element_info):
2556         First THREADED backport attempt, focusing on adding locks and
2557         making sure the API is threadsafe. Needs more work. More docs
2558         follow this week.
2559
2560 2005-02-24  Andy Wingo  <wingo@pobox.com>
2561
2562         * tests/bench-complexity.scm:
2563         * tests/complexity.gnuplot: New files, good for running complexity
2564         benchmarks.
2565
2566         * tests/Makefile.am:
2567         * tests/complexity.c: New test, sets up N elements, at each level
2568         teeing into M streams per element. Eeeenteresting.
2569
2570         * tests/mass_elements.gnuplot: gnuplot file for the mass_elements
2571         benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after
2572         running bench-mass_elements.scm.
2573
2574         * tests/bench-mass_elements.scm: New script, runs mass_elements
2575         for various numbers of identities, outputting the results to a
2576         file. Requires guile 1.6. Just for testing.
2577
2578 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2579
2580         * gst/schedulers/fairscheduler.c:
2581           compile with debug disabled
2582
2583 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2584
2585         * configure.ac:
2586           hunting season on 0.9 is now OPEN
2587
2588 2005-02-22  Stefan Kost  <ensonic@users.sf.net>
2589
2590         * docs/libs/tmpl/gstcontrol.sgml:
2591         * docs/libs/tmpl/gstdparam.sgml:
2592         * docs/libs/tmpl/gstdplinint.sgml:
2593         * docs/libs/tmpl/gstdpman.sgml:
2594         * docs/libs/tmpl/gstdpsmooth.sgml:
2595         * docs/libs/tmpl/gstunitconvert.sgml:
2596           more docs for the state of dparams
2597
2598 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2599
2600         * gst/gstelementfactory.c: (gst_element_factory_create):
2601         * gst/gstobject.c: (gst_object_init),
2602         (gst_object_set_name_default), (gst_object_set_name):
2603           name objects by default, not in gst_element_factory_create. Allows
2604           using elements created with g_object_new. (fixes #167283)
2605
2606 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2607
2608         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_log_default):
2609           make the time that debugging functions print relative to when
2610           gst_init was called
2611
2612 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
2613
2614         * gst/gsttaginterface.c:
2615           Fix inline docs: tag setter vararg functions are NULL-terminated,
2616           GST_TAG_INVALID doesn't exist any more.
2617
2618 2005-02-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2619
2620         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_dump_byte_array):
2621         Allocate the 1 byte more memory that was forgotten!!!!!
2622         fixes memory corruption on 64bit platforms
2623
2624 2005-02-15  Stefan Kost  <ensonic@users.sf.net>
2625
2626         * docs/pwg/building-pads.xml:
2627         * docs/pwg/intro-basics.xml:
2628           fixed a few typos, relabeled introductionary list of types
2629         * docs/random/ensonic/dparams.txt:
2630           more notes abut dparam changes
2631         * libs/gst/control/dparam.c: (gst_dparam_attach):
2632         * libs/gst/control/dparammanager.c:
2633         * libs/gst/control/dparammanager.h:
2634           - many comments and notes on dparam implementation
2635           - new dparams are were not initialized to the default value
2636             from param spec
2637
2638 2005-02-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2639
2640         submitted by: Peter Astakhov
2641
2642         * po/LINGUAS:
2643         * po/ru.po:
2644           adding Russian translation
2645
2646 2005-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2647
2648         * configure.ac:
2649         * docs/gst/Makefile.am:
2650         * docs/libs/Makefile.am:
2651           make sure popt is added to gtk-doc flags.  Fixes #147782.
2652
2653 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
2654
2655         * docs/faq/using.xml:
2656           Fix typo in FAQ (artssink => artsdsink)
2657
2658 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2659
2660         * tools/gst-launch.1.in:
2661           Fix typo (#166699).
2662
2663 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
2664
2665         * docs/faq/using.xml:
2666           Add -v argument to fakesrc/fakesink gst-launch line,
2667           so that the promised output will actually show up.
2668
2669 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2670
2671         * gst/gstthread.c: (gst_thread_change_state):
2672           Implement state-change error handling (#166073).
2673
2674 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2675
2676         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2677           Release interrupt after handling (#166250).
2678
2679 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2680
2681         * configure.ac:
2682           back to HEAD
2683
2684 === release 0.8.9 ===
2685
2686 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2687
2688         * NEWS:
2689         * RELEASE:
2690         * configure.ac:
2691           releasing 0.8.9, "Like Eating Glass"
2692
2693 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2694
2695         submitted by: Clytie Siddall
2696
2697         * po/vi.po: Added Vietnamese translation
2698
2699 2005-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
2700
2701         patch by: Tim Philipp-Müller
2702
2703         * configure.ac:
2704         * gst/gstpad.c:
2705           unref data when probe function returns FALSE.  Fixes #166362
2706
2707 2005-02-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2708
2709         * gst/gst.c: (gst_init_get_popt_table):
2710           Fix typo (#166269).
2711
2712 2005-02-04  Andy Wingo  <wingo@pobox.com>
2713
2714         * gst/gstelement.c (gst_element_get_compatible_pad_template): Fix
2715         the debugging on whether the caps are compatible.
2716
2717 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2718
2719         * docs/manual/basics-elements.xml:
2720           Fix two typos.
2721
2722 2005-02-02  Wim Taymans  <wim@fluendo.com>
2723
2724         * gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),
2725         (schedule_chain), (get_invalid_call), (chain_invalid_call),
2726         (loop_group_schedule_function), (gst_opt_scheduler_iterate):
2727         Remove some FIXMEs after analysing and commenting why they
2728         are not issues.
2729
2730 2005-02-02  Wim Taymans  <wim@fluendo.com>
2731
2732         * gst/schedulers/gstoptimalscheduler.c:
2733         (gst_opt_scheduler_class_init), (gst_opt_scheduler_init),
2734         (gst_opt_scheduler_finalize), (remove_decoupled), (schedule_chain),
2735         (get_invalid_call), (chain_invalid_call),
2736         (get_group_schedule_function), (loop_group_schedule_function),
2737         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
2738         (gst_opt_scheduler_state_transition),
2739         (gst_opt_scheduler_add_element),
2740         (gst_opt_scheduler_remove_element), (gst_opt_scheduler_interrupt),
2741         (gst_opt_scheduler_error), (gst_opt_scheduler_pad_link),
2742         (gst_opt_scheduler_pad_unlink), (gst_opt_scheduler_iterate),
2743         (gst_opt_scheduler_show):
2744         Added lock to protect scheduler data structures.
2745
2746 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2747
2748         * testsuite/threads/threadi.c: (cb_data):
2749           Fix buglet in test.
2750
2751 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2752
2753         * testsuite/threads/Makefile.am:
2754         * testsuite/threads/threadi.c: (cb_data), (cb_play), (main):
2755           On Wim's request, split the test in three separately-compiled
2756           tests that each test a very specific bug. Two of them still fail,
2757           will create bugs for those. threadi.c indicates why they fail.
2758
2759 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2760
2761         * gst/schedulers/gstoptimalscheduler.c:
2762         (get_group_schedule_function):
2763           Try to work with the threading mess that queue_link is.
2764
2765 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2766
2767         * gst/gstbin.c: (gst_bin_remove_func):
2768           Explicitely make an element release locks in a group when being
2769           remove from a bin.
2770         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2771           If there's no scheduler, always return immediately (similar to
2772           gst_element_interrupt).
2773
2774 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2775
2776         * gst/gstbin.c: (gst_bin_child_state_change_func):
2777           Remove a piece of code that could never be reached.
2778         * docs/gst/gstreamer-sections.txt:
2779         * gst/gstpad.c: (gst_pad_push), (gst_pad_pull),
2780         (gst_pad_call_get_function):
2781         * gst/gstpad.h:
2782         * testsuite/pad/Makefile.am:
2783           Fix #150546, enable tests.
2784
2785 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2786
2787         * docs/pwg/advanced-types.xml:
2788           Fix description for buffer-frames=0.
2789         * docs/gst/tmpl/gstbin.sgml:
2790         * gst/gstbin.c: (gst_bin_child_state_change_func),
2791         (gst_bin_change_state), (gst_bin_change_state_norecurse):
2792         * gst/gstbin.h:
2793         * testsuite/threads/Makefile.am:
2794         * testsuite/threads/threadi.c: (cb_timeout), (cb_quit), (cb_eos),
2795         (cb_state), (cb_play), (main):
2796           Fix non-recursive state changes to *really* change the state
2797           of the object, and not just call parent_class->state_change.
2798           Fix a lot of lockups caused by this. Fixes #132775. Add test
2799           for the problem. Also enable test to show #142588 (fixed).
2800         * gst/gstthread.c: (gst_thread_change_state),
2801         (gst_thread_child_state_change):
2802           Don't exit the thread if we go to NULL and are inside thread
2803           context. Instead, return control to the main thread context
2804           and exit from there.
2805         * gst/gstelement.c: (gst_element_disable_threadsafe_properties):
2806           Don't unset virtual functions, since those may still be used.
2807           That's not necessarily correct, but suffices for now.
2808         * configure.ac:
2809         * testsuite/Makefile.am:
2810         * testsuite/pad/Makefile.am:
2811         * testsuite/pad/chainnopull.c: (gst_test_sink_class_init),
2812         (gst_test_sink_base_init), (gst_test_sink_chain),
2813         (gst_test_sink_init), (main):
2814         * testsuite/pad/getnopush.c: (gst_test_src_class_init),
2815         (gst_test_src_base_init), (gst_test_src_get), (gst_test_src_init),
2816         (main):
2817         * testsuite/pad/link.c: (gst_test_element_class_init),
2818         (gst_test_element_base_init), (gst_test_src_get),
2819         (gst_test_src_loop), (gst_test_src_init), (gst_test_filter_chain),
2820         (gst_test_filter_loop), (gst_test_filter_init),
2821         (gst_test_sink_chain), (gst_test_sink_loop), (gst_test_sink_init),
2822         (cb_error), (main):
2823           Add tests to show #150546. Pass, but should fail (currently
2824           disabled from the testsuite).
2825         * gst/gstscheduler.c: (gst_scheduler_dispose):
2826           Dereference child schedulers on dispose (#94464).
2827         * testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
2828           Fix typo.
2829         * testsuite/threads/thread.c: (main):
2830           Add more debug.
2831
2832 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2833
2834         * gst/gstpad.c: (gst_pad_push):
2835           Oops, revert previous commit, broke testsuite...
2836
2837 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2838
2839         * gst/gstpad.c: (gst_pad_push):
2840           Add check that the pad on which the push is performed is not a
2841           get-based pad (#150546).
2842
2843 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2844
2845         * gst/elements/gsttypefindelement.c:
2846         (gst_type_find_element_handle_event):
2847           Fix buffer pushing if stream EOSes during typefinding.
2848
2849 2005-01-28  Edward Hervey  <bilboed@bilboed.com>
2850
2851         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2852
2853         * gst/gstvalue.c: (gst_string_wrap):
2854           Allow NULL-strings as argument (#165365).
2855
2856 2005-01-27  Stephane Wirtel  <stephane.wirtel@belgacom.net>
2857
2858         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2859
2860         * gst/schedulers/faircothreads.c:
2861         (gst_fair_scheduler_cothread_queue_show):
2862           Fix build without debug enabled.
2863
2864 2005-01-26  Stefan Kost  <ensonic@users.sf.net>
2865
2866         * docs/gst/gstreamer-sections.txt:
2867         * docs/libs/gstreamer-libs-docs.sgml:
2868         * docs/libs/gstreamer-libs-sections.txt:
2869         * docs/libs/tmpl/gstcontrol.sgml:
2870         * docs/libs/tmpl/gstdparam.sgml:
2871         * docs/libs/tmpl/gstdplinint.sgml:
2872         * docs/libs/tmpl/gstdpman.sgml:
2873         * docs/libs/tmpl/gstdpsmooth.sgml:
2874         * docs/libs/tmpl/gstputbits.sgml:
2875         * docs/libs/tmpl/gstunitconvert.sgml:
2876         * libs/gst/control/dparam.c:
2877         * libs/gst/control/dparam.h:
2878         * libs/gst/control/dparammanager.c:
2879         (gst_dpman_add_required_dparam_callback),
2880         (gst_dpman_add_required_dparam_direct),
2881         (gst_dpman_add_required_dparam_array),
2882         (gst_dpman_remove_required_dparam), (gst_dpman_attach_dparam),
2883         (gst_dpman_get_dparam), (gst_dpman_get_dparam_type),
2884         (gst_dpman_get_manager)
2885           restructured DParam docs
2886
2887 2005-01-25  Tim-Philipp Müller  <tim at centricular dot net>
2888
2889         * gst-element-check.m4:
2890           Only check for gst-inspect if we haven't already
2891           found it in previous element check runs
2892
2893 2005-01-25  Stefan Kost  <ensonic@users.sf.net>
2894
2895         * docs/gst/Makefile.am:
2896         * docs/libs/Makefile.am:
2897           fixed install rules to treat style.css as optional
2898
2899 2005-01-24  Stefan Kost  <ensonic@users.sf.net>
2900
2901         * docs/gst/Makefile.am:
2902         * docs/libs/Makefile.am:
2903           install style.css along with docs
2904         * docs/gst/tmpl/gstbin.sgml:
2905         * docs/gst/tmpl/gstclock.sgml:
2906         * docs/gst/tmpl/gstdata.sgml:
2907         * docs/gst/tmpl/gstelement.sgml:
2908         * gst/gstbin.h:
2909         * gst/gstelement.c: (gst_element_class_init):
2910         * gst/gstelement.h:
2911           fixing incomplete docs
2912
2913 2005-01-24  Tim-Philipp Müller  <tim at centricular dot net>
2914
2915         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
2916           Don't unref seek event twice when fflush() fails
2917           
2918 2005-01-22  David Schleef  <ds@schleef.org>
2919
2920         * configure.ac: Add --disable-valgrind. (partial fix for #164890)
2921
2922 2005-01-21  Stefan Kost  <ensonic@users.sf.net>
2923
2924         * docs/gst/Makefile.am:
2925         * docs/libs/Makefile.am:
2926           added params for deprecation guards
2927         * gst/gst.c:
2928         * gst/gst.h:
2929         * gst/gsterror.c: (_gst_resource_errors_init),
2930         (_gst_stream_errors_init):
2931         * gst/gsterror.h:
2932           documented some more enums
2933
2934 2005-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
2935         * gst/autoplug/gstspideridentity.c:
2936         Cosmetic fix - spider_find_peek should be static
2937         * gst/parse/parse.l:
2938         Applying fix for #164261
2939
2940 2005-01-18  Stefan Kost  <ensonic@users.sf.net>
2941
2942         * docs/gst/gstreamer-sections.txt:
2943         * docs/gst/tmpl/gstplugin.sgml:
2944         * docs/libs/gstreamer-libs-sections.txt:
2945         * docs/libs/tmpl/gstcontrol.sgml:
2946         * gst/gstbuffer.h:
2947         * gst/gsttag.h:
2948         * gst/gstvalue.c:
2949           added docs for the TAG defines
2950
2951 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2952
2953         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
2954           Only unref entry if there is an entry.
2955
2956 2005-01-17  Wim Taymans  <wim@fluendo.com>
2957
2958         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
2959         (remove_from_group), (schedule_group), (normalize_group),
2960         (gst_opt_scheduler_iterate):
2961         Also ref/unref decoupled elements before iterating the
2962         group since they are not added to the list of elements.
2963
2964 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2965
2966         * docs/manual/highlevel-components.xml:
2967           Add subtitle/streamselection as new features to playbin.
2968
2969 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2970
2971         * docs/manual/manual.xml:
2972           Re-enable dataaccess docs (oops).
2973
2974 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2975
2976         * docs/pwg/advanced-types.xml:
2977         * docs/random/mimetypes:
2978           Add documentation on libsndfile types (#163309), by Steve Baker
2979           <steve@stevebaker.org>.
2980         * gst/gstelement.c: (gst_element_release_request_pad):
2981           If an element has no explicit function, just remove the pad.
2982
2983 2005-01-17  Luca Ognibene  <luogni@tin.it>
2984
2985         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2986
2987         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
2988           Fix memleak (#163801).
2989
2990 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2991
2992         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link):
2993           I think this is actually more correct...
2994
2995 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2996
2997         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
2998           Another workaround for memory access while destroyed in callback.
2999           Please, someone with refcount knowledge, have a look at this.
3000
3001 2005-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3002
3003         * docs/faq/faq.xml:
3004         * docs/faq/legal.xml:
3005           move the legal Q&A here
3006
3007 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3008
3009         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link),
3010         (gst_tee_request_new_pad):
3011           Fix negotiation.
3012
3013 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3014
3015         * docs/random/omega/caps2:
3016         * testsuite/caps/caps_strings:
3017           replace framerate aproximations by their real value
3018           (24000/1001, 30000/1001, 60000/1001)
3019           Partially fixes bug #164049
3020
3021 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3022
3023         * docs/gst/Makefile.am:
3024           don't fail on the stupid GstPoptOption
3025
3026 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3027
3028         * gst/gstpad.h:
3029         * gst/gstprobe.c:
3030           allow probes to work on ghost pads by realizing the pad
3031           probe debugging
3032
3033 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3034
3035         * docs/gst/gstreamer-sections.txt:
3036         * docs/gst/tmpl/gstpad.sgml:
3037         * gst/gstpad.c: (gst_pad_set_active_recursive):
3038         * gst/gstpad.h:
3039           Add gst_pad_set_active_recursive().
3040
3041 2005-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
3042
3043         * docs/random/release:
3044           updates
3045         * gst/gst_private.h:
3046         * gst/gstinfo.c:
3047         * gst/gstobject.c:
3048           move deep_notify logging to a new category
3049         * gst/gstprobe.c:
3050         * gst/gstprobe.h:
3051           add stuff so bindings can wrap probes
3052
3053 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3054
3055         * gst/gstplugin.c: (gst_plugin_load):
3056           Fix plugin loading if plugin/lib was already loaded. Fixes
3057           #163383
3058
3059 2005-01-09  Sebastien Cote  <sc5@hermes.usherb.ca>
3060
3061         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3062
3063         * gst/gstpluginfeature.c: (gst_plugin_feature_ensure_loaded):
3064           Protect plugin loading by a mutex so it's threadsafe. Fixes
3065           #163234.
3066
3067 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3068
3069         * gst/gstevent.c: (_gst_event_copy):
3070           Reference source object when copying events, since it'll be
3071           dereferenced on event dereferencing as well.
3072
3073 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3074
3075         * docs/gst/gstreamer-sections.txt:
3076         * docs/gst/tmpl/gstevent.sgml:
3077         * gst/gstevent.c: (gst_event_new_filler_stamped),
3078         (gst_event_filler_get_duration):
3079         * gst/gstevent.h:
3080           Add two new functions for filler events (which are used to
3081           synchronize streams if one of them is not having any data
3082           for a while) without interrupting the actual data-stream.
3083           Basically a no-op.
3084         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3085         (gst_queue_link_sink), (gst_queue_link_src),
3086         (gst_queue_change_state):
3087           Allow for renegotiation while filled. Required for stream
3088           switching while playing.
3089
3090 2005-01-08  Benjamin Otte  <otte@gnome.org>
3091
3092         * gst/gstelement.c: (gst_element_link_many):
3093           fix up g_return_if_fail's
3094         * po/LINGUAS:
3095         * po/de.po:
3096           add German translation, that was somehow not included
3097
3098 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3099
3100         * docs/random/mimetypes:
3101           add 2 more 4CC code for DV (HDTV and SDTV-LongPlay profiles)
3102           do not add them to riff-lib as they are not common
3103
3104 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3105
3106         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
3107           Check for existence of probe after performing the probe before
3108           re-accessing it to prevent segfaults caused by removal of the
3109           probe in the callback.
3110
3111 2005-01-05  David Schleef  <ds@schleef.org>
3112
3113         * testsuite/registry/Makefile.am:
3114         * testsuite/registry/gst-print-formats.c:
3115         (print_pad_templates_info), (print_element_list),
3116         (print_typefind_list), (list_sort_func), (get_typefind_mime_list),
3117         (g_list_uniqify), (get_pad_templates_info),
3118         (get_element_mime_list), (print_mime_list), (main): A little
3119         program that looks through the registry to find elements of
3120         a given type.  Not particularly interesting as a test, except
3121         that there's no other test covering the same area.
3122
3123 2005-01-05  David Schleef  <ds@schleef.org>
3124
3125         * tools/gst-launch.c: (idle_func), (fault_handler_sighandler),
3126         (fault_handler_sigaction), (fault_spin),
3127         (sigint_handler_sighandler), (play_handler), (main): Fix deadlocks
3128         in signal.h-type signal handlers by not calling forbidden functions,
3129         including gst_element_set_state().
3130
3131 2005-01-05  David Schleef  <ds@schleef.org>
3132
3133         * gst/gstvalue.h: Mark _gst_reserved[] as private
3134
3135 2005-01-05  David Schleef  <ds@schleef.org>
3136
3137         * gst/gstvalue.c: Fix doc build problem.
3138
3139 2005-01-05  David Schleef  <ds@schleef.org>
3140
3141         * gst/gstvalue.c: Add some documentation
3142
3143 2005-01-05  Stefan Kost  <ensonic@users.sf.net>
3144
3145         * docs/README:
3146           another shell oneliner for empty return value docs
3147         * gst/gstcaps.c:
3148         * gst/gstvalue.c:
3149         * libs/gst/control/dparam.c:
3150           more doc fixes (parameters and return values)
3151
3152 2005-01-05  Vincent Torri  <torri@iecn.u-nancy.fr>
3153
3154         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3155
3156         * gst/gstregistry.h:
3157         * gst/registries/gstxmlregistry.c:
3158           Fix macro's for Mingw (fixes #162276).
3159
3160 2005-01-04  Stefan Kost  <ensonic@users.sf.net>
3161
3162         * docs/README:
3163           quick shell oneliner to find undocumented members
3164         * docs/gst/tmpl/gstplugin.sgml:
3165         * docs/gst/tmpl/gstscheduler.sgml:
3166         * docs/gst/tmpl/gstthread.sgml:
3167           more enumtypes cleanup
3168         * gst/gsterror.h:
3169           activated documentation comments, now someone needs to document
3170           the enums :(
3171
3172 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3173
3174         * docs/manual/manual.xml:
3175           Add dataaccess part (doh!).
3176
3177 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3178
3179         * docs/manual/advanced-autoplugging.xml:
3180           Fix typo (intiate -> initiate).
3181
3182 2005-01-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3183
3184         * docs/random/bbb/streamselection:
3185           Add some notes on how to handle multi-subtitle/-audio streams.
3186
3187 2004-12-30  Stefan Kost  <ensonic@users.sf.net>
3188
3189         * docs/gst/gstreamer-docs.sgml:
3190         * docs/gst/gstreamer-sections.txt:
3191         * docs/gst/tmpl/gstenumtypes.sgml:
3192         * docs/gst/tmpl/gsterror.sgml:
3193         * docs/gst/tmpl/gstevent.sgml:
3194         * docs/gst/tmpl/gstpad.sgml:
3195         * docs/gst/tmpl/gstpadtemplate.sgml:
3196         * docs/gst/tmpl/gstthread.sgml:
3197           removed gstenumtypes section from docs and put all the enums into
3198           their sections
3199
3200 2004-12-27  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3201
3202         * gst/gstplugin.c:
3203           document gst_library_load a bit more (riff special case + return
3204           value if already loaded)
3205         * testsuite/bytestream/filepadsink.c:
3206           plugin name is 'gstbytestream', not 'bytestream'
3207
3208 2004-12-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3209
3210         * docs/random/bbb/subtitles:
3211           Add some first mind rumblings on proper subtitle support.
3212
3213 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3214
3215         * po/ca.po:
3216         * po/sv.po:
3217           updated translations
3218
3219 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3220
3221         * docs/manual/advanced-dataaccess.xml:
3222           Add section on how to use fakesrc/fakesink/identity in your
3223           application, plus section on how to embed plugins. Also mention
3224           probes.
3225         * docs/manual/appendix-checklist.xml:
3226         * docs/manual/appendix-debugging.xml:
3227         * docs/manual/appendix-gnome.xml:
3228         * docs/manual/appendix-integration.xml:
3229           Debug -> checklist, GNOME -> integration, add sections on Linux,
3230           KDE integration and add other things useful for application
3231           development.
3232         * docs/manual/manual.xml:
3233           Remove some fixmes, update some file pointers.
3234         * docs/pwg/appendix-checklist.xml:
3235           Fix typo.
3236         * docs/pwg/building-boiler.xml:
3237           Remove ugly header and add commented fixme.
3238         * docs/pwg/pwg.xml:
3239           Add fixme.
3240         * examples/manual/Makefile.am:
3241           Add example for added docs.
3242
3243 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3244
3245         * configure.ac:
3246           back to HEAD
3247
3248 === release 0.8.8 ===
3249
3250 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3251
3252         * NEWS:
3253         * RELEASE:
3254         * configure.ac:
3255           Releasing 0.8.8, "I'll Take Care Of You"
3256
3257 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3258
3259         * configure.ac:
3260           second prerelease
3261
3262 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3263
3264         patch by: Wim Taymans
3265
3266         * gst/gstbin.c:
3267           Fix for #159852 - make iterate emission threadsafe
3268
3269 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3270
3271         * docs/faq/cvs.xml:
3272           notes about new fdo account request
3273
3274 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
3275
3276         * docs/gst/gstreamer-docs.sgml:
3277         * docs/gst/tmpl/gstenumtypes.sgml:
3278         * docs/gst/tmpl/gstplugin.sgml:
3279         * docs/libs/gstreamer-libs-docs.sgml:
3280           Added missing short docs. Added ids for navigation.
3281
3282 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3283
3284         * docs/manual/advanced-autoplugging.xml:
3285         * docs/manual/advanced-schedulers.xml:
3286         * docs/manual/advanced-threads.xml:
3287           Rewrites. Remove cothreads, go a bit into opt specifically,
3288           document threads and their gotchas, and do some technical stuff
3289           on autoplugging plus add some working examples. Fixes #157395.
3290         * examples/manual/Makefile.am:
3291           Add typefind/autoplugger example (one that actually works).
3292           Remove queue example since it's a duplicate of the thread one.
3293
3294 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3295
3296         * gst/gstvalue.c: (gst_value_deserialize_string):
3297           use deprecated g_value_set_string_take_ownership to keep compatible
3298           with glib 2.2
3299
3300 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3301
3302         * gst/gstvalue.c: (gst_value_deserialize_string):
3303           revert last patch, only dom a g_utf8_validate now before accepting
3304           the string - caps parsing strips " from strings so we can't rely on
3305           them
3306         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3307           disable a test that tested the above and comment it
3308
3309 2004-12-16  Steve Lhomme <steve.lhomme@free.fr>
3310
3311         Patch reviewed by David Schleef  <ds@schleef.org>
3312
3313         * win32/gstenumtypes.c: Update from gst/gstenumtypes.c (See
3314         bug #153882)
3315         * win32/gstenumtypes.h: same
3316
3317 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3318
3319         * gst/gstpad.c: (gst_pad_query):
3320           Do query on realized pad, similar to how convert/send_event handle
3321           this. Also makes sense, since this pad belongs to the function to
3322           which this query will be sent. Fixes #158163.
3323
3324 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
3325
3326         * docs/manual/appendix-programs.xml: fix pipeline to actually work
3327
3328 2004-12-16  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3329
3330         * docs/faq/general.xml: fix pipeline to actually work
3331
3332 2004-12-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3333
3334         * gst/gstvalue.c: (gst_value_deserialize_string):
3335           check that a simple string that gets deserialized does not contain
3336           invalid characters
3337         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3338           remove a test that tested a wring behaviour
3339
3340 2004-12-16  Matt Kraai  <kraai@alumni.cmu.edu>
3341
3342         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3343
3344         * docs/manual/intro-motivation.xml:
3345           Fix typos.
3346
3347 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
3348
3349         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3350
3351         * docs/gst/tmpl/gstprobe.sgml:
3352           Fix documentation of probe callback - it is supposed to return
3353           FALSE, not TRUE, to remove data from the stream (#159087).
3354
3355 2004-12-16  Daniel Gazard  <dany42@free.fr>
3356
3357         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3358
3359         * gst/gstelementfactory.c: (gst_element_factory_create):
3360           Fix compile failure if compiling without libxml2 support (#149936).
3361
3362 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3363
3364         * docs/manual/advanced-autoplugging.xml:
3365         * docs/manual/highlevel-components.xml:
3366           Move spider from autoplugging to components. Autoplugging is for
3367           internals, not for solutions. ;-).
3368
3369 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3370
3371         * docs/random/ds/0.9-suggested-changes:
3372           Make note on device/location/uri property names.
3373
3374 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3375
3376         * docs/manual/advanced-autoplugging.xml:
3377         * docs/manual/advanced-clocks.xml:
3378         * docs/manual/advanced-interfaces.xml:
3379         * docs/manual/advanced-metadata.xml:
3380         * docs/manual/advanced-position.xml:
3381         * docs/manual/advanced-schedulers.xml:
3382         * docs/manual/advanced-threads.xml:
3383         * docs/manual/appendix-gnome.xml:
3384         * docs/manual/appendix-programs.xml:
3385         * docs/manual/appendix-quotes.xml:
3386         * docs/manual/autoplugging.xml:
3387         * docs/manual/basics-bins.xml:
3388         * docs/manual/basics-data.xml:
3389         * docs/manual/basics-elements.xml:
3390         * docs/manual/basics-helloworld.xml:
3391         * docs/manual/basics-init.xml:
3392         * docs/manual/basics-pads.xml:
3393         * docs/manual/basics-plugins.xml:
3394         * docs/manual/bins-api.xml:
3395         * docs/manual/bins.xml:
3396         * docs/manual/buffers-api.xml:
3397         * docs/manual/buffers.xml:
3398         * docs/manual/clocks.xml:
3399         * docs/manual/components.xml:
3400         * docs/manual/cothreads.xml:
3401         * docs/manual/debugging.xml:
3402         * docs/manual/dparams-app.xml:
3403         * docs/manual/dynamic.xml:
3404         * docs/manual/elements-api.xml:
3405         * docs/manual/elements.xml:
3406         * docs/manual/factories.xml:
3407         * docs/manual/gnome.xml:
3408         * docs/manual/goals.xml:
3409         * docs/manual/helloworld.xml:
3410         * docs/manual/helloworld2.xml:
3411         * docs/manual/highlevel-components.xml:
3412         * docs/manual/highlevel-xml.xml:
3413         * docs/manual/init-api.xml:
3414         * docs/manual/intro-basics.xml:
3415         * docs/manual/intro-motivation.xml:
3416         * docs/manual/intro-preface.xml:
3417         * docs/manual/intro.xml:
3418         * docs/manual/links-api.xml:
3419         * docs/manual/links.xml:
3420         * docs/manual/manual.xml:
3421         * docs/manual/motivation.xml:
3422         * docs/manual/pads-api.xml:
3423         * docs/manual/pads.xml:
3424         * docs/manual/plugins-api.xml:
3425         * docs/manual/plugins.xml:
3426         * docs/manual/programs.xml:
3427         * docs/manual/queues.xml:
3428         * docs/manual/quotes.xml:
3429         * docs/manual/schedulers.xml:
3430         * docs/manual/states-api.xml:
3431         * docs/manual/states.xml:
3432         * docs/manual/threads.xml:
3433         * docs/manual/typedetection.xml:
3434         * docs/manual/win32.xml:
3435         * docs/manual/xml.xml:
3436           Try 2. This time, include a short preface as a "general
3437           introduction", also add code blocks around all code samples
3438           so they get compiled. We still need a way to tell readers
3439           the filename of the code sample. In some cases, don't show
3440           all code in the documentation, but do include it in the generated
3441           code. This allows for focussing on specific bits in the docs,
3442           while still having a full test application available.
3443         * examples/manual/Makefile.am:
3444           Fix up examples for new ADM. Add several of the new examples that
3445           were either added or were missing from the build system.
3446         * examples/manual/extract.pl:
3447           Allow nameless blocks.
3448
3449 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3450
3451         * docs/manual/elements-api.xml:
3452         * docs/manual/helloworld.xml:
3453         * examples/manual/extract.pl:
3454           fix last example.  Add example of adding code blocks that are not
3455           shown in docbook output.
3456
3457 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3458
3459         * docs/manual/dynamic.xml:
3460         * docs/manual/elements-api.xml:
3461         * docs/manual/gnome.xml:
3462         * docs/manual/helloworld2.xml:
3463         * docs/manual/init-api.xml:
3464         * docs/manual/queues.xml:
3465         * docs/manual/threads.xml:
3466         * docs/manual/xml.xml:
3467         * examples/manual/extract.pl:
3468           Make it possible to extract example code from separate blocks.
3469           Should make Ronald happy.
3470
3471 2004-12-15  Wim Taymans  <wim@fluendo.com>
3472
3473         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3474         (remove_from_group), (group_elements_set_visited),
3475         (normalize_group), (gst_opt_scheduler_iterate):
3476         Fix bug where a flag was not updated on a decoupled entry point 
3477         because we were just checking the group element list and decoupled
3478         elements are not in that list..
3479
3480 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3481
3482         * docs/manual/advanced-autoplugging.xml:
3483         * docs/manual/advanced-clocks.xml:
3484         * docs/manual/advanced-dparams.xml:
3485         * docs/manual/advanced-interfaces.xml:
3486         * docs/manual/advanced-metadata.xml:
3487         * docs/manual/advanced-position.xml:
3488         * docs/manual/advanced-schedulers.xml:
3489         * docs/manual/advanced-threads.xml:
3490         * docs/manual/appendix-debugging.xml:
3491         * docs/manual/appendix-gnome.xml:
3492         * docs/manual/appendix-programs.xml:
3493         * docs/manual/appendix-quotes.xml:
3494         * docs/manual/appendix-win32.xml:
3495         * docs/manual/autoplugging.xml:
3496         * docs/manual/basics-bins.xml:
3497         * docs/manual/basics-data.xml:
3498         * docs/manual/basics-elements.xml:
3499         * docs/manual/basics-helloworld.xml:
3500         * docs/manual/basics-init.xml:
3501         * docs/manual/basics-pads.xml:
3502         * docs/manual/basics-plugins.xml:
3503         * docs/manual/bins-api.xml:
3504         * docs/manual/bins.xml:
3505         * docs/manual/buffers-api.xml:
3506         * docs/manual/buffers.xml:
3507         * docs/manual/clocks.xml:
3508         * docs/manual/components.xml:
3509         * docs/manual/cothreads.xml:
3510         * docs/manual/debugging.xml:
3511         * docs/manual/dparams-app.xml:
3512         * docs/manual/dynamic.xml:
3513         * docs/manual/elements-api.xml:
3514         * docs/manual/elements.xml:
3515         * docs/manual/factories.xml:
3516         * docs/manual/gnome.xml:
3517         * docs/manual/goals.xml:
3518         * docs/manual/helloworld.xml:
3519         * docs/manual/helloworld2.xml:
3520         * docs/manual/highlevel-components.xml:
3521         * docs/manual/highlevel-xml.xml:
3522         * docs/manual/init-api.xml:
3523         * docs/manual/intro-motivation.xml:
3524         * docs/manual/intro-preface.xml:
3525         * docs/manual/intro.xml:
3526         * docs/manual/links-api.xml:
3527         * docs/manual/links.xml:
3528         * docs/manual/manual.xml:
3529         * docs/manual/motivation.xml:
3530         * docs/manual/pads-api.xml:
3531         * docs/manual/pads.xml:
3532         * docs/manual/plugins-api.xml:
3533         * docs/manual/plugins.xml:
3534         * docs/manual/programs.xml:
3535         * docs/manual/queues.xml:
3536         * docs/manual/quotes.xml:
3537         * docs/manual/schedulers.xml:
3538         * docs/manual/states-api.xml:
3539         * docs/manual/states.xml:
3540         * docs/manual/threads.xml:
3541         * docs/manual/typedetection.xml:
3542         * docs/manual/win32.xml:
3543         * docs/manual/xml.xml:
3544           First try at rewriting the ADM. Needs lotsamore work, but some
3545           parts might already be somewhat useful.
3546         * docs/pwg/advanced-interfaces.xml:
3547           Remove properties interface, it never actually existed (except for
3548           on my HD...).
3549
3550 2004-12-13  David Schleef  <ds@schleef.org>
3551
3552         * gst/gstpad.c: (gst_pad_set_explicit_caps): Allow caps to
3553         be NULL (bug #160220).
3554
3555 2004-12-13  David Schleef  <ds@schleef.org>
3556
3557         * configure.ac: remove all mmx stuff, because it's not used.
3558         * docs/random/ds/0.9-suggested-changes: additional notes
3559         * include/Makefile.am: we don't use these anymore
3560         * include/mmx.h: remove
3561         * include/sse.h: remove
3562
3563 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3564
3565         * docs/random/mimetypes:
3566           Add FOURCC code for h264 codec (VSSH)
3567           Add alternate FOURCC codes for h263 related codecs
3568
3569 2004-12-10  Stefan Kost  <ensonic@users.sf.net>
3570
3571         * docs/manual/programs.xml:
3572           Added more gst-launch examples.
3573
3574 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3575
3576         * gst/gstqueue.c: (gst_queue_handle_src_query):
3577           Check for availability again.
3578
3579 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3580
3581         * gst/gstcaps.c: (gst_caps_compare_structures):
3582           Simple caps go first. This has the nice side-effect of fixing an
3583           obscure warning.
3584
3585 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3586
3587         * gst/gstversion.h.in:
3588           Protect header.
3589
3590 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3591
3592         * gst/schedulers/gstoptimalscheduler.c:
3593         (gst_opt_scheduler_schedule_run_queue), (schedule_chain),
3594         (gst_opt_scheduler_get_wrapper):
3595           When we're recursing into a chain run, only run the directly
3596           related group, not all queued ones. This will fix a possible
3597           deadlock in chains with more than two groups.
3598
3599 2004-12-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3600
3601         * autogen.sh:
3602           remove patch if autopoint fails
3603
3604 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3605
3606         * docs/gst/gstreamer-sections.txt:
3607           Document Thomas' addition, fix build, make Luis the sheriff happy.
3608
3609 2004-12-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3610
3611         * gst/gstplugin.c:
3612         * gst/gstplugin.h:
3613           add accessor for version field
3614
3615 2004-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
3616
3617         submitted by: Luca Ferretti <elle.uca@infinito.it>
3618
3619         * po/LINGUAS:
3620         * po/it.po:
3621           New tranlation added: Italian
3622
3623 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3624
3625         * gst/gstpad.c: (gst_pad_is_negotiated),
3626         (gst_pad_get_negotiated_caps):
3627           GST_RPAD_* will only operate on a RealPad (it casts the pointer,
3628           it doesn't actually check the contents), so be sure to hand it
3629           a RealPad else we'll crash.
3630
3631 2004-12-03  Wim Taymans  <wim@fluendo.com>
3632
3633         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3634         (gst_queue_link), (gst_queue_handle_src_query):
3635         Reverted to 1.110 until this makes the testsuite and various
3636         apps work.
3637
3638 2004-12-01  Christian Fredrik Kalager Schaller <christian@fluendo.com>
3639
3640         * docs/upload.mak: fix included CVS conflict strings
3641
3642 2004-12-01  William Jon McCann  <mccann@jhu.edu>
3643
3644         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3645
3646         * gst/gstelement.c: (gst_element_error_full):
3647           Use g_error_new_literal because error text may have
3648           percentage signs in it. Fixes #160019.
3649
3650 2004-12-01  Benjamin Otte  <otte@gnome.org>
3651
3652         * gst/elements/gstbufferstore.c:
3653         (gst_buffer_store_add_buffer_func):
3654           don't try to make subbuffers bigger than they can be. (fixes
3655           #159970)
3656
3657 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3658
3659         * docs/gst/gstreamer-sections.txt:
3660         * docs/gst/tmpl/gstvalue.sgml:
3661           Add new function to docs to fix build.
3662
3663 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3664
3665         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
3666         * gst/gstpad.c: (_gst_pad_default_fixate_value),
3667         (_gst_pad_default_fixate_foreach):
3668         * gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
3669         * gst/gstvalue.h:
3670           Deprecate _type_is_fixed, use _value_is_fixed instead, since
3671           in some cases (arrays), the fixedness depends on the content.
3672         * gst/gstqueue.c: (gst_queue_handle_src_query):
3673           Check for availability before doing something.
3674
3675 2004-11-29  Wim Taymans  <wim@fluendo.com>
3676
3677         * testsuite/threads/Makefile.am:
3678         * testsuite/threads/signals.c: (gst_test_get_type),
3679         (gst_test_class_init), (gst_test_init), (gst_test_dispose),
3680         (gst_test_set_property), (gst_test_get_property),
3681         (gst_test_do_signal1), (signal2_handler), (gst_test_do_signal2),
3682         (gst_test_do_prop), (run_thread), (main):
3683         Added a bunch of testcases that show threadsafety bugs in glib.
3684
3685 2004-11-29  Stefan Kost  <ensonic@users.sf.net>
3686
3687         * docs/manual/programs.xml:
3688           Added a first batch of gst-launch examples, as provided by Ronald
3689           and others from the devel-mlist
3690
3691 2004-11-28  Benjamin Otte  <otte@gnome.org>
3692
3693         * gst/gstelement.c: (gst_element_negotiate_pads):
3694           simplify
3695         * gst/gstvalue.c: (gst_string_wrap), (gst_string_unwrap),
3696         (gst_value_serialize_string), (gst_value_deserialize_string):
3697           add unwrapping of previously wrapped strings. Fix bug in wrapping
3698           while at it.
3699         * testsuite/caps/value_serialize.c: (test1),
3700         (test_string_serialization), (test_string_deserialization), (main):
3701           add tests for string (de)serialization
3702
3703 2004-11-26  Wim Taymans  <wim@fluendo.com>
3704
3705         * testsuite/threads/159566.c: (object_deep_notify), (main):
3706         * testsuite/threads/Makefile.am:
3707         Added testsuite to show bug #159566
3708
3709 2004-11-25  Wim Taymans  <wim@fluendo.com>
3710
3711         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_change_state),
3712         (gst_thread_child_state_change), (gst_thread_main_loop):
3713         Ref the thread object in the GThread mainloop. Break out of the
3714         thread mainloop if it holds the last ref. This properly exits
3715         the threads when disposing the thread from its own context. It
3716         also avoids possible deadlocks in the dispose function.
3717
3718 2004-11-24  Martin Soto  <martinsoto@users.sourceforge.net>
3719
3720         * gst/gstqueue.c (gst_queue_link_sink): Grab the lock only when
3721         it is necessary to wait.
3722
3723 2004-11-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3724
3725         * docs/pwg/building-boiler.xml:
3726           Make description somewhat clearer.
3727
3728 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3729
3730         * docs/upload.mak:
3731           Apparently docs changed location on FDO's server.
3732
3733 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3734
3735         * docs/pwg/appendix-checklist.xml:
3736           Add some random notes on things to check when writing an element.
3737           This list can be extended as people see fit.
3738
3739 2004-11-23  Martin Soto  <martinsoto@users.sourceforge.net>
3740
3741         * gst/gstqueue.c (gst_queue_init, gst_queue_link_sink)
3742         (gst_queue_link_src): Allow for renegotiating the caps of the sink
3743         pad. The queue will now wait until it is empty and forward the new
3744         caps to the source.
3745         * gst/gstbin.c (gst_bin_set_element_sched)
3746         (gst_bin_unset_element_sched): Make sure that all elements and
3747         links are registered and unregistered with the scheduler exactly
3748         once. This elaborates on a fix by Benjamin Otte, but
3749         guarantees that decoupled elements are also registered.
3750
3751 2004-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3752
3753         * docs/manual/quotes.xml:
3754           add a quote
3755         * configure.ac:
3756         * gst/gst.c:
3757         * gst/gstinfo.c:
3758           add LIBDIR and move init message higher up so it's at the start
3759
3760 2004-11-08  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3761
3762         * gst/schedulers/Makefile.am: fix disted build fair by including .h file
3763         * gstreamer.spec.in: add fair
3764
3765 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3766
3767         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3768         * gst/elements/gstidentity.c: (gst_identity_class_init):
3769           Use G_SIGNAL_TYPE_STATIC_SCOPE, patch by Christophe Fergeau
3770           <teuf@gnome.org> (#157263).
3771         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
3772         (gst_type_find_handle_src_query):
3773           Subtract size of internally stored data from position queries.
3774
3775 2004-11-07  Martin Soto  <martinsoto@users.sourceforge.net>
3776
3777         * gst/schedulers/fairscheduler.c:
3778         * gst/schedulers/faircothreads.c:
3779         * gst/schedulers/faircothreads.h:
3780         New cothread based scheduler: Fair scheduler.
3781         * gst/schedulers/gthread-cothreads.h: 
3782         Add the standard #if around the whole file.
3783         Defining symbol GTHREAD_COTHREADS_NO_DEFINITIONS will now prevent
3784         compilation of the functions defined in this file. This is
3785         necessary to be able to use this file as a normal header.
3786         * gst/schedulers/Makefile.am: Add compiling support for fair
3787         scheduler.
3788         * docs/gst/Makefile.am (IGNORE_HFILES): Exclude internal fair
3789         scheduler cothreads layer from documentation generation.
3790
3791 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3792
3793         * gst/autoplug/gstspideridentity.c:
3794         (gst_spider_identity_sink_loop_type_finding):
3795           Don't crash if that function is not implemented.
3796
3797 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3798
3799         * docs/pwg/advanced-types.xml:
3800           Another typo.
3801
3802 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3803
3804         * docs/pwg/intro-preface.xml:
3805           Hm, ok, so the brackets weren't really useful...
3806         * docs/pwg/other-ntoone.xml:
3807           Fix embarassing typo.
3808
3809 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3810
3811         * docs/pwg/intro-preface.xml:
3812           Rewrite preface.
3813
3814 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3815
3816         * docs/pwg/advanced-scheduling.xml:
3817         * docs/pwg/advanced-tagging.xml:
3818         * docs/pwg/advanced-types.xml:
3819         * docs/pwg/building-boiler.xml:
3820         * docs/pwg/building-chainfn.xml:
3821         * docs/pwg/building-signals.xml:
3822         * docs/pwg/building-state.xml:
3823         * docs/pwg/building-testapp.xml:
3824         * docs/pwg/intro-basics.xml:
3825         * docs/pwg/other-manager.xml:
3826         * docs/pwg/other-source.xml:
3827           Typo fixes.
3828         * docs/pwg/other-manager.xml:
3829           Add some first content. No example code yet.
3830         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
3831           Remove double newlines.
3832
3833 2004-11-04  Wim Taymans  <wim@fluendo.com>
3834
3835         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3836         (remove_from_group), (normalize_group), (group_migrate_connected),
3837         (gst_opt_scheduler_iterate):
3838         * testsuite/schedulers/.cvsignore:
3839         * testsuite/schedulers/Makefile.am:
3840         * testsuite/schedulers/queue_link.c: (main):
3841         Added testcase for scheduler segfault.
3842         Fix scheduler segfault when removing a decoupled
3843         entry point as the last element from a group.
3844
3845 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3846
3847         * gst/gstmarshal.list: add missing marshaller, fixes build
3848
3849 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3850
3851         * docs/random/signal: added notes about using BOXED for GstBuffer
3852         signal marshallers, not POINTER
3853
3854 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3855
3856         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3857         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init): more
3858         POINTER=>BOXED changes to marshal GstBuffers
3859
3860 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3861
3862         * gst/elements/gstidentity.c: (gst_identity_class_init): GstBuffer is 
3863         a boxed type, marshal the signal with VOID__BOXED, not VOID__POINTER
3864
3865 2004-11-03  Stefan Kost  <ensonic@users.sf.net>
3866
3867         * docs/gst/gstreamer-sections.txt:
3868         * docs/gst/tmpl/gstcaps.sgml:
3869         * docs/gst/tmpl/gsterror.sgml:
3870         * docs/gst/tmpl/gstinfo.sgml:
3871         * docs/gst/tmpl/gstmacros.sgml:
3872         * docs/gst/tmpl/gstutils.sgml:
3873         * docs/random/ensonic/interfaces.txt:
3874         * gst/gstinfo.h:
3875           added some more docs, removed two obsolete defines
3876
3877 2004-11-02  Kjartan Maraas <as at gnome.org>
3878
3879         reviewed by: Wim Taymans, Ronald Bultje.
3880
3881         * gst/cothreads.c: (cothread_create):
3882         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
3883         (gst_bin_child_state_change_func):
3884         * gst/gstbuffer.c: (gst_buffer_span):
3885         * gst/gstelement.c: (gst_element_get_index),
3886         (gst_element_get_event_masks), (gst_element_get_query_types),
3887         (gst_element_get_formats):
3888         * gst/gsterror.c: (_gst_core_errors_init),
3889         (_gst_library_errors_init), (_gst_resource_errors_init),
3890         (_gst_stream_errors_init):
3891         * gst/gstobject.c: (gst_object_default_deep_notify):
3892         * gst/gstpad.c: (gst_pad_get_event_masks),
3893         (gst_pad_get_internal_links_default):
3894         * gst/gstplugin.c: (gst_plugin_register_func),
3895         (gst_plugin_get_module):
3896         * gst/gststructure.c: (gst_structure_get_string),
3897         (gst_structure_get_abbrs), (gst_structure_from_abbr),
3898         (gst_structure_to_abbr):
3899         * gst/gstutils.c: (gst_print_element_args):
3900         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3901         (setup_group_scheduler), (gst_opt_scheduler_iterate):
3902         Aplied part of patch #157127: Cleanup of issues reported by 
3903         sparse.
3904         Also do not try to use cothreads when there is no cothread
3905         context yet.
3906
3907 2004-11-02  Sebastien Cote <sc5 at hermes.usherb.ca>
3908
3909         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3910         (gst_opt_scheduler_iterate):
3911         Applied patch #154061. Running a pipeline in which an element 
3912         calls GST_ELEMENT_ERROR in the chain function, the opt 
3913         scheduler doesn't unref the chain so it never gets freed.
3914
3915 2004-11-02  Wim Taymans  <wim@fluendo.com>
3916
3917         * gst/gststructure.c: (gst_structure_get_abbrs),
3918         (gst_structure_from_abbr), (gst_structure_to_abbr):
3919         Remove that ugly if-then thing in the code that converts
3920         between strings and types.
3921
3922 2004-11-02  Wim Taymans  <wim@fluendo.com>
3923
3924         * gst/gstscheduler.c: (gst_scheduler_add_element),
3925         (gst_scheduler_remove_element), (gst_scheduler_state_transition):
3926         Aplied clock distribution patch, this should fix bug
3927         #148787.
3928
3929 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3930
3931         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
3932
3933         * po/LINGUAS:
3934         * po/nb.po:
3935           Added Norwegian Bokmaal translation
3936
3937 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3938
3939         * tools/gst-inspect.c: (print_signal_info):
3940           print signal arguments as pointers if they are
3941
3942 2004-10-22  Stefan Kost  <ensonic@users.sf.net>
3943
3944         * docs/pwg/building-boiler.xml:
3945           exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
3946
3947 2004-10-19  Wim Taymans  <wim at fluendo dot com>
3948
3949         * gst/parse/parse.l:
3950         * testsuite/parse/parse1.c: (main):
3951         Since parse can do 'element name=a:b' make 'a:b.' work as
3952         well. 
3953         Added testcase to verify fix.
3954
3955 2004-10-19  Wim Taymans  <wim at fluendo dot com>
3956
3957         * tools/gst-inspect.c: (print_pad_info), (print_plugin_features):
3958         Use the realpad when printing the direction.
3959         Add extra \n when printing extensions of typefind factories.
3960
3961 2004-10-13  David Schleef  <ds@schleef.org>
3962
3963         * examples/manual/Makefile.am: $< isn't portable in Makefile
3964         rules.
3965
3966 2004-10-13  Stefan Kost  <ensonic@users.sf.net>
3967
3968         * docs/gst/tmpl/gstobject.sgml:
3969         * docs/gst/tmpl/gstplugin.sgml:
3970         * docs/gst/tmpl/gstpluginfeature.sgml:
3971         * docs/gst/tmpl/gstregistry.sgml:
3972         * docs/gst/tmpl/gstversion.sgml:
3973         * gst/gstbin.c:
3974           more api documentation
3975         * gst/gstplugin.c: (gst_plugin_register_func),
3976         (gst_plugin_check_file), (gst_plugin_load_file):
3977           better error signaling and logging
3978
3979 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3980
3981         * gst/gstqueue.c: (gst_queue_init), (gst_queue_handle_src_query):
3982           Subtract current queue contents from position queries.
3983
3984 2004-10-11  Johan Dahlin  <johan@gnome.org>
3985
3986         * gst/gsturi.c (gst_uri_get_location): unescape string
3987         (gst_uri_construct): escape string.
3988
3989 2004-10-11  Benjamin Otte  <otte@gnome.org>
3990
3991         * gst/gstpad.c: (gst_pad_renegotiate), (gst_pad_try_set_caps),
3992         (gst_pad_try_set_caps_nonfixed):
3993           allow renegotiation of unconnected pads (as inside spider). Simply
3994           return OK if unconnected - mimic try_set_caps there.
3995
3996 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3997
3998         * gst/gstbin.c: (gst_bin_sync_children_state):
3999           Add missing break.
4000
4001 2004-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4002
4003         * gst/elements/gstfakesrc.c: (gst_fakesrc_get):
4004         Set element to EOS before sending EOS event
4005
4006 2004-10-08  Wim Taymans  <wim at fluendo dot com>
4007
4008         * gst/elements/gsttypefindelement.c:
4009         (gst_type_find_element_handle_event):
4010         Handle EOS events when doing the transition from
4011         typefind to data passing. This should fix the
4012         infinite loops in short files.
4013
4014 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4015
4016         * gst/gstthread.c: (gst_thread_change_state),
4017         (gst_thread_child_state_change):
4018         Make sure no iteration happens while performing
4019         the state change as it could mess up the internal
4020         consistency of the thread state.
4021
4022 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4023
4024         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_sync),
4025         (gst_thread_change_state), (gst_thread_child_state_change):
4026         Do not try to grab the iterate lock in the state change method
4027         when we are in the same thread as the iterate or else we
4028         could deadlock. Some other cleanups.
4029
4030 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4031
4032         * configure.ac:
4033           bump nano to cvs
4034
4035 === release 0.8.7 ===
4036
4037 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4038
4039         * configure.ac:
4040         * NEWS:
4041         * RELEASE:
4042         * configure.ac:
4043           releasing 0.8.7, "A Cruise"
4044
4045 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
4046
4047         * docs/random/mimetypes:
4048         Add an entry for Sony ATRAC3 audio format with mime-type
4049         used by rmdemux et riff-read
4050
4051 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4052
4053         * gst/elements/gsttypefindelement.c: (stop_typefinding):
4054         Push the buffer store instead of clearing it in case that
4055         the stream is not seekable.
4056
4057 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4058
4059         * gst/gstthread.c: (gst_thread_init), (gst_thread_change_state),
4060         (gst_thread_main_loop):
4061         Lock the iteration and the state change so that automatic
4062         negotiation and fixation does not happen at the same time
4063         as the in stream negotiation.
4064
4065 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4066
4067         * configure.ac:
4068           bump nano to cvs
4069
4070 === release 0.8.6 ===
4071
4072 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4073
4074         * configure.ac:
4075         * NEWS:
4076         * RELEASE:
4077         * configure.ac:
4078           releasing 0.8.6, "Narc"
4079
4080 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4081
4082         * configure.ac:
4083           prerel bump
4084
4085 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4086
4087         patch by: Steve Lhomme
4088
4089         * gst/elements/gstfakesrc.c:
4090         * gst/elements/gstidentity.c:
4091         * gst/gstthread.c:
4092           Fix for #153881
4093
4094 2004-10-01  Wim Taymans  <wim at fluendo dot com>
4095
4096         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
4097         Fix threadsafety of the crc checking function.
4098
4099 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4100
4101         patch by: Ronald Bultje
4102
4103         * gst/elements/gsttypefindelement.c: (stop_typefinding),
4104         (gst_type_find_element_handle_event),
4105         (gst_type_find_element_chain):
4106         * gst/elements/gsttypefindelement.h:
4107          #153657.
4108          Filter out discont event from seekable sources when typefind
4109          asks them to seek.  Fixes typefind with demuxers for
4110          avi, asf and matroska.
4111
4112 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4113
4114         * docs/gst/gstreamer-sections.txt:
4115         * gst/gstcaps.c:
4116         * gst/gstcaps.h:
4117         * gst/gstpad.c:
4118           Revert preferred caps: (#147789)
4119
4120 2004-09-19  Steve Lhomme  <steve.lhomme@free.fr>
4121
4122         * win32/dirent.c:
4123           fix a memory leak
4124
4125 2004-09-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4126
4127         * configure.ac:
4128           bump for prerelease
4129
4130 2004-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4131
4132         * docs/Makefile.am:
4133         * docs/manual/elements-api.xml:
4134           restructure so that common stuff is shown first
4135         * docs/manual/init-api.xml:
4136           convert to examples
4137         * docs/manual/manual.xml:
4138         * docs/manuals.mak:
4139         * docs/url.entities:
4140           link to API on the website, possibly override later in build
4141         * examples/manual/.cvsignore:
4142           ignore more
4143         * examples/manual/Makefile.am:
4144           add more examples
4145         * examples/manual/extract.pl:
4146           error out on failure
4147
4148 2004-09-08  Thomas Vander Stichele  <thomas at apestaart dot org>
4149
4150         * docs/gst/tmpl/gstthread.sgml:
4151         * docs/manual/init-api.xml:
4152         * examples/manual/Makefile.am:
4153           convert two code bits to examples
4154
4155 2004-09-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
4156
4157         * gst/gstelement.c: (gst_element_change_state):
4158           Well, actually, I was about to remove this insane assert when
4159           I noticed Wim already did that. A warning is nice so we can
4160           fix actual ugs (using --g-fatal-warnings and backtraces), so
4161           I added that instead.
4162
4163 2004-09-06  Wim Taymans  <wim@fluendo.com>
4164
4165         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
4166         (gst_element_threadsafe_properties_post_run),
4167         (gst_element_set_state), (gst_element_change_state):
4168         Added extra refcounting around various places. 
4169
4170 2004-09-06  Wim Taymans  <wim@fluendo.com>
4171
4172         * gst/gstpad.c: (gst_pad_link_call_link_functions):
4173         Fix debug info.
4174
4175 2004-09-06  Wim Taymans  <wim@fluendo.com>
4176
4177         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
4178         (remove_from_group):
4179         Some more debug info.
4180
4181 2004-09-03  Wim Taymans  <wim@fluendo.com>
4182
4183         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
4184         (gst_fakesrc_init), (gst_fakesrc_set_clock),
4185         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
4186         (gst_fakesrc_get), (gst_fakesrc_change_state):
4187         * gst/elements/gstfakesrc.h:
4188         * gst/elements/gstidentity.c: (gst_identity_class_init),
4189         (gst_identity_init), (gst_identity_chain),
4190         (gst_identity_set_property), (gst_identity_get_property),
4191         (gst_identity_change_state):
4192         * gst/elements/gstidentity.h:
4193         Added datarate properties to limit the datarate.
4194
4195 2004-08-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4196
4197         * gst/autoplug/gstspider.c: (plugin_init):
4198           don't set a rank. We don't want to autoplug by inserting spiders.
4199
4200 2004-08-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4201
4202         * gst/autoplug/gstspider.c: (gst_spider_class_init),
4203         (gst_spider_identity_plug):
4204           add a template for spider's sink
4205         * gst/gst.c: (gst_register_core_elements):
4206           queue's rank should be NULL, we don't want spider to add it.
4207
4208 2004-08-18  David Schleef  <ds@schleef.org>
4209
4210         * docs/gst/Makefile.am: Remove --ignore-fail-on-non-empty (#150331)
4211         * docs/libs/Makefile.am: same
4212         * docs/gst/tmpl/gstxml.sgml: Remove GstXMLNs
4213         * docs/random/ds/0.9-planning: random additions
4214         * docs/random/ds/0.9-suggested-changes: same
4215         * gst/gstxml.h: remove vestigal GstXMLNs definition
4216
4217         Preferred caps: (#147789)
4218         * docs/gst/gstreamer-sections.txt: Add symbols
4219         * docs/gst/tmpl/gstcaps.sgml: Add symbols
4220         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
4221         (gst_caps_append), (gst_caps_copy_1), (gst_caps_intersect),
4222         (gst_caps_union), (gst_caps_save_thyself), (gst_caps_load_thyself),
4223         (gst_caps_get_preferred), (gst_caps_set_preferred),
4224         (gst_caps_get_structure_by_id), (gst_caps_prefer_foreach),
4225         (gst_caps_use_preferred): Handle caps preferences
4226         * gst/gstcaps.h: Add caps preferences
4227         * gst/gstpad.c: (gst_pad_link_get_preferred),
4228         (gst_pad_link_fixate), (gst_pad_link_call_link_functions),
4229         (gst_pad_renegotiate), (gst_pad_guess_preferred),
4230         (gst_pad_get_caps), (gst_pad_push):  Use caps preferences for
4231         negotiation.
4232
4233 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4234
4235         * gst/autoplug/gstspideridentity.c:
4236         (gst_spider_identity_request_new_pad):
4237         * gst/elements/gstaggregator.c: (gst_aggregator_base_init),
4238         (gst_aggregator_init):
4239         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
4240         (gst_fakesink_init):
4241         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
4242         (gst_fakesrc_init):
4243         * gst/elements/gstfdsink.c: (gst_fdsink_base_init),
4244         (gst_fdsink_init):
4245         * gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
4246         * gst/elements/gstfilesink.c: (gst_filesink_base_init),
4247         (gst_filesink_init):
4248         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
4249         (gst_filesrc_init):
4250         * gst/elements/gstidentity.c: (gst_identity_base_init),
4251         (gst_identity_init):
4252         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
4253         (gst_multifilesrc_init):
4254         * gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
4255         (gst_pipefilter_init):
4256         * gst/elements/gststatistics.c: (gst_statistics_base_init),
4257         (gst_statistics_init):
4258         * gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
4259         * gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
4260           s/gst_pad_new/&_from_template/
4261           register pad templates in the base_init function
4262           add static pad template definitions
4263
4264 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4265
4266         * testsuite/bytestream/gstbstest.c: (gst_bstest_init):
4267         * testsuite/dynparams/dparamstest.c: (gst_dptest_init):
4268         * testsuite/refcounting/pad.c: (main):
4269         * testsuite/refcounting/thread.c: (create_thread_ghostpads):
4270           s/gst_pad_new/&_from_template/
4271           prepare deprecation of gst_pad_new
4272
4273 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4274
4275         patch by: Luca Ognibene <skaboy81@virgilio.it>
4276
4277         * gst/gstcaps.c:
4278         * gst/gstelement.c:
4279         * gst/gstpad.c:
4280         * gst/gstxml.c:
4281           fix memleaks.  Fixes #150001
4282
4283 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4284
4285         * docs/random/ds/0.9-suggested-changes:
4286           add notes - mostly about pad templates
4287
4288 2004-08-16  Steve Lhomme  <steve.lhomme@free.fr>
4289
4290         * win32/GStreamer.vcproj:
4291           temporary locale files are .gmo not .mo
4292
4293 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4294
4295         * configure.ac: bump nano to cvs
4296
4297 === release 0.8.5 ===
4298
4299 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4300
4301         * configure.ac:
4302           releasing 0.8.5, "Stuttgart"
4303         * NEWS:
4304         * RELEASE:
4305         * configure.ac:
4306         * docs/random/release:
4307           updates for release
4308
4309 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4310
4311         patch by: Wim Taymans (wim@fluendo.com)
4312
4313         * gst/gstbuffer.c:
4314         * gst/gstindex.h:
4315         * libs/gst/dataprotocol/dataprotocol.c:
4316           copy KEY_UNIT and DELTA_UNIT flags correctly.  Fixes #150242
4317
4318 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4319
4320         * Makefile.am:
4321         * win32/MANIFEST:
4322           add win32 dir to the build.  Fixes #149981.
4323
4324 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4325
4326         * configure.ac:
4327           bump libtool versioning
4328         * gst/gststructure.c:
4329           mark function as static
4330         * po/af.po:
4331         * po/az.po:
4332         * po/ca.po:
4333         * po/cs.po:
4334         * po/en_GB.po:
4335         * po/fr.po:
4336         * po/nl.po:
4337         * po/sq.po:
4338         * po/sr.po:
4339         * po/sv.po:
4340         * po/tr.po:
4341         * po/uk.po:
4342           translations update
4343         * win32/README.txt:
4344           trademark protection
4345
4346 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4347
4348         * configure.ac:
4349           fix GST_ORIGIN
4350           set GST_PACKAGE to source, and distinguish between release and other
4351         * tools/gst-inspect.c:
4352           print out plugin an element factory is part of so we see this info
4353
4354 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4355
4356         * docs/gst/gstreamer-sections.txt:
4357         * docs/gst/tmpl/gstbuffer.sgml:
4358         * docs/gst/tmpl/gstschedulerfactory.sgml:
4359           reorder docs a little, make GstBuffer's more sensible.
4360         * gst/gstbuffer.h:
4361           API: added GST_BUFFER_FLAG_DELTA_UNIT
4362         * gst/gstscheduler.c:
4363           comment API addition
4364
4365 2004-08-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4366
4367         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
4368           work with non-regular files that can be mmapped (like /dev/zero)
4369         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
4370           get rid of typefinds that require a seek when we can't seek instead
4371           of trying them over and over again
4372         * tools/gst-launch.c: (idle_func), (error_cb), (main):
4373           return non-zero failure value when the pipeline was interrupted or
4374           an error occurred
4375
4376 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4377
4378         * win32/config.h:
4379         * win32/GStreamer.vcproj:
4380           compile and install the locales
4381
4382 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4383
4384         * gst/gstvalue.c:
4385           fix a possible memory leak under Windows
4386
4387 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4388
4389         * win32/GStreamer.vcproj:
4390           fix a memory leak that occured under Windows
4391         * win32/gstreamer.def:
4392           add gst_scheduler_register
4393
4394 2004-08-11  Benjamin Otte  <otte@gnome.org>
4395
4396         * docs/gst/gstreamer-sections.txt:
4397         * gst/gstscheduler.c: (gst_scheduler_register):
4398         * gst/gstscheduler.h:
4399           API:
4400           add gst_scheduler_register shortcut similar to gst_element_register
4401         * gst/schedulers/entryscheduler.c: (plugin_init):
4402         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
4403         * gst/schedulers/gstoptimalscheduler.c: (plugin_init):
4404           use it
4405
4406 2004-08-10  Steve Lhomme  <steve.lhomme@free.fr>
4407
4408         * gst/gstvalue.h:
4409           fix a memory leak that occured under Windows
4410
4411 2004-08-10  Colin Walters  <walters@redhat.com>
4412
4413         * gst/registries/gstxmlregistry.c (gst_xml_registry_open_func):
4414         Don't use O_EXCL to open temporary registry.  It will prevent
4415         registry creation if a temporary one already exists, which
4416         is unnecessary.
4417
4418 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4419
4420         * docs/gst/gstreamer-sections.txt:
4421         * docs/gst/tmpl/gstvalue.sgml:
4422           remove some valuable stuff from the documentation due to the use of GST_EXPORT
4423
4424 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4425
4426         * win32/gstbytestream.vcproj:
4427         * win32/gstelements.vcproj:
4428         * win32/gstgetbits.vcproj:
4429         * win32/gst-inspect.vcproj:
4430         * win32/gst-launch.vcproj:
4431         * win32/gstoptimalscheduler.vcproj:
4432         * win32/GStreamer.vcproj:
4433         * win32/gst-register.vcproj:
4434         * win32/gstspider.vcproj:
4435           update the include and lib dirs to fit standard libraries as
4436           described in the Win32 manual
4437
4438 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4439
4440         * win32/config.h:
4441         * win32/gstversion.h:
4442           enable NLS again, push the version number for the coming 0.8.5 release
4443
4444 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4445
4446         * gst/gstvalue.h:
4447           export gst_type_XXX for windows DLLs
4448
4449 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4450
4451         * docs/faq/gst-uninstalled:
4452           fix PKG_CONFIG_PATH and PYTHONPATH
4453         * gst/schedulers/Makefile.am:
4454           cleanup
4455         * libs/gst/bytestream/bytestream.c:
4456           remove newline
4457         * po/LINGUAS:
4458         * po/sq.po:
4459           adding Albanian translation (Laurent Dhima)
4460         * po/cs.po:
4461           updated
4462
4463 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4464
4465         * po/ca.po:
4466         * po/sv.po:
4467           updated translations
4468
4469 2004-08-04  Benjamin Otte  <otte@gnome.org>
4470
4471         * tests/mass_elements.c: (main):
4472           allow specifying src and sink element explicitly, so I can test
4473           videotestsrc instead of fakesrc
4474
4475 2004-08-04  Benjamin Otte  <otte@gnome.org>
4476
4477         * gst/gststructure.c: (gst_structure_id_empty_new_with_size),
4478         (gst_structure_id_empty_new), (gst_structure_empty_new),
4479         (gst_structure_copy):
4480           add gst_structure_id_empty_new_with_size to allow preallocating
4481           value array sizes. Use this in gst_structure_copy to get rid of
4482           reallocs.
4483           don't do quark=>string=>quark when copying structures
4484
4485 2004-08-03  Steve Lhomme  <steve.lhomme@free.fr>
4486
4487         * docs/manual/win32.xml:
4488         * win32/README.txt:
4489           update documentation with the clean version of dependencies
4490
4491 2004-08-03  Benjamin Otte  <otte@gnome.org>
4492
4493         * gst/schedulers/entryscheduler.c:
4494         (gst_entry_scheduler_remove_element):
4495           fix for GST_DISABLE_DEBUG
4496         * tools/gst-launch.c: (print_tag):
4497           fixes for G_DISABLE_ASSERT
4498
4499 2004-08-03  Benjamin Otte  <otte@gnome.org>
4500
4501         * gst/gst.c: (gst_register_core_elements):
4502           fix for G_DISABLE_ASSERT
4503         * gst/gstinfo.c: (__gst_in_valgrind):
4504           add for GST_DISABLE_DEBUG
4505
4506 2004-08-03  Benjamin Otte  <otte@gnome.org>
4507
4508         * gst/parse/parse.l:
4509           fix for G_DISABLE_ASSERT
4510
4511 2004-08-03  Wim Taymans  <wim@fluendo.com>
4512
4513         * gst/gstbin.c: (gst_bin_get_type),
4514         (gst_bin_child_state_change_func):
4515         * gst/gstthread.c: (gst_thread_change_state):
4516         Backported some debug logging from a reverted patch
4517         Don't try to destroy the thread twice. Added some more
4518         debugging in GstThread. Unlock and signal even if we
4519         are in the thread context.
4520
4521 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
4522
4523         * po/uk.po:
4524           updated translation
4525
4526 2004-07-30  David Schleef  <ds@schleef.org>
4527
4528         * gst/gstatomic_impl.h: Enable atomic code for x86_64
4529
4530 2004-07-29  David Schleef  <ds@schleef.org>
4531
4532         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test):
4533         Use GST_READ_GUINTxx_BE(), since it accesses unaligned memory.
4534
4535 2004-07-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4536
4537         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
4538         (gst_bin_add_func), (gst_bin_remove_func),
4539         (gst_bin_child_state_change), (gst_bin_child_state_change_func),
4540         (set_kid_state_func), (gst_bin_change_state), (gst_bin_set_state),
4541         (gst_bin_change_state_norecurse), (gst_bin_dispose),
4542         (gst_bin_sync_children_state):
4543         * gst/gstbin.h:
4544         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_release),
4545         (gst_thread_change_state):
4546         * testsuite/states/Makefile.am:
4547           revert state change patches as agreed so we can rework them
4548           gradually
4549
4550 2004-07-29  Benjamin Otte  <otte@gnome.org>
4551
4552         * libs/gst/control/Makefile.am:
4553           link to libgstreamer (fixes Debian bug 262019, see
4554           http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=262019 )
4555
4556 2004-07-29  Wim Taymans  <wim@fluendo.com>
4557
4558         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4559         (check_from_fraction_convert), (transform_test), (main):
4560         Make the test less pedantic about float roundoff errors.
4561
4562 2004-07-29  Benjamin Otte  <otte@gnome.org>
4563
4564         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file),
4565         (gst_filesrc_srcpad_event):
4566           make seek events to before start/after end of file not fail, but
4567           seek to start/end instead
4568         * testsuite/caps/fraction-convert.c: (check_from_double_convert):
4569           add more output
4570
4571 2004-07-29  Benjamin Otte  <otte@gnome.org>
4572
4573         * gst/gstpad.c: (gst_pad_set_explicit_caps):
4574           check that caps are fixed
4575         * gst/gstpad.c: (gst_pad_template_new):
4576           don't try to simplify caps, costs too much time on gst_init
4577         * gst/gstplugin.c: (gst_plugin_add_feature):
4578           G_ERROR if features are added twice
4579         * gst/gsttypefind.c: (gst_type_find_register):
4580         * gst/gstelementfactory.c: (gst_element_register):
4581           don't add features twice
4582         * docs/random/ds/0.9-suggested-changes:
4583           add note about possible gst_init optimization
4584
4585 2004-07-28  David Schleef  <ds@schleef.org>
4586
4587         * testsuite/elements/Makefile.am:
4588         * testsuite/elements/struct_i386.h:
4589         * testsuite/elements/struct_size.c: (main):  A little test
4590         to keep distcheck from working if someone changes a structure
4591         size accidentally.
4592
4593 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4594
4595         * docs/libs/Makefile.am:
4596         * docs/libs/gstreamer-libs-docs.sgml:
4597         * docs/libs/gstreamer-libs-sections.txt:
4598         * docs/libs/tmpl/gstbytestream.sgml:
4599         * docs/libs/tmpl/gstcontrol.sgml:
4600         * docs/libs/tmpl/gstdataprotocol.sgml:
4601         * docs/libs/tmpl/gstgetbits.sgml:
4602         * libs/gst/bytestream/Makefile.am:
4603         * libs/gst/bytestream/bytestream.c:
4604         * libs/gst/bytestream/bytestream.h:
4605         * libs/gst/control/Makefile.am:
4606         * libs/gst/dataprotocol/Makefile.am:
4607         * libs/gst/getbits/Makefile.am:
4608         * libs/gst/getbits/getbits.h:
4609           various doc and style fixes, adding bytestream to libs docs.
4610
4611 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4612
4613         * docs/gst/gstreamer-docs.sgml:
4614         * docs/libs/Makefile.am:
4615         * docs/libs/gstreamer-libs-docs.sgml:
4616         * docs/libs/gstreamer-libs-sections.txt:
4617         * libs/gst/control/dparam.c:
4618           more doc fixes.  gst-libs docs now build the same way as gst.
4619
4620 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4621
4622         * configure.ac:
4623         * testsuite/Makefile.am:
4624         * testsuite/bins/Makefile.am:
4625         * testsuite/caps/Makefile.am:
4626         * testsuite/cleanup/Makefile.am:
4627         * testsuite/clock/Makefile.am:
4628         * testsuite/debug/Makefile.am:
4629         * testsuite/dlopen/Makefile.am:
4630         * testsuite/dynparams/Makefile.am:
4631         * testsuite/elements/.cvsignore:
4632         * testsuite/elements/Makefile.am:
4633         * testsuite/enumcaps/Makefile.am:
4634         * testsuite/enumcaps/enumcaps.c:
4635         * testsuite/ghostpads/Makefile.am:
4636         * testsuite/indexers/Makefile.am:
4637         * testsuite/negotiation/Makefile.am:
4638         * testsuite/parse/Makefile.am:
4639         * testsuite/plugin/Makefile.am:
4640         * testsuite/refcounting/Makefile.am:
4641         * testsuite/schedulers/.cvsignore:
4642         * testsuite/states/Makefile.am:
4643         * testsuite/tags/Makefile.am:
4644         * testsuite/threads/Makefile.am:
4645           fold enumcaps into caps dir
4646           clean up Makefile.am's for testsuite
4647
4648 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4649
4650         * docs/gst/Makefile.am:
4651         * docs/libs/Makefile.am:
4652           clean up docs build.  Fixes needless rebuilding of template files.
4653
4654 2004-07-28  Wim Taymans  <wim@fluendo.com>
4655
4656         * gst/gstbin.c: (set_kid_state_func), (gst_bin_set_state):
4657         * gst/gstthread.c: (gst_thread_release), (gst_thread_set_state):
4658         Make sure that a bin state change tries to keep the children
4659         in sync. 
4660         Added debug logging to the thread.
4661
4662 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4663
4664         * win32/GStreamer.vcproj:
4665         * win32/gstreamer.def:
4666           more exports for the plugins
4667
4668 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4669
4670         * win32/gstgetbits.vcproj:
4671         * win32/gstgetbits.def:
4672         * win32/msvc71.sln:
4673           add support for the getbits plugin
4674
4675 2004-07-27  Wim Taymans  <wim@fluendo.com>
4676
4677         * gst/gstvalue.c: (gst_value_transform_double_fraction),
4678         (gst_value_transform_fraction_double), (_gst_value_initialize):
4679         * testsuite/caps/Makefile.am:
4680         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4681         (check_from_fraction_convert), (transform_test), (main):
4682         Added transform functions between double and fraction.
4683         Added testcase to verify transforms
4684
4685 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4686
4687         * win32/GStreamer.vcproj:
4688           rename GStreamer-0.8.lib to libgstreamer.lib
4689
4690 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4691
4692         * win32/gstelements.vcproj:
4693         * win32/gstoptimalscheduler.vcproj:
4694           fixes for the Release build
4695
4696 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4697
4698         * win32/config.h:
4699           update the version number
4700
4701 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4702
4703         * win32/GStreamer.vcproj:
4704           add gstinterface to the build
4705
4706 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4707
4708         * win32/gstreamer.def:
4709           add many definitions needed by plugins,
4710           GST_CAT_DEFAULT only available in the Debug build ?
4711
4712 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4713
4714         * gst/gstelement.c: (gst_element_set_eos_recursive):
4715           various whitespace fixes.
4716           doc fix, fixes #148497
4717
4718 2004-07-25  Benjamin Otte  <otte@gnome.org>
4719
4720         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
4721           don't delay links on the sink elements, it causes unnegotiated
4722           links.
4723         * gst/elements/gsttypefindelement.c:
4724         (gst_type_find_element_base_init):
4725           add our padtemplates, we indeed do have some.
4726         * gst/elements/gsttypefindelement.c:
4727         (gst_type_find_element_handle_event),
4728         (gst_type_find_element_chain):
4729           don't push data when typefinding failed.
4730         * gst/gstpad.c: (gst_pad_link_fixate):
4731           check that no fixate function returns empty caps.
4732         * gst/gstpad.c: (gst_pad_push):
4733           check that the link is negotiated before data gets pushed.
4734         * tools/gst-register.c: (main):
4735           don't assert (fixes #148283)
4736
4737 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4738
4739         * docs/gst/gstreamer-sections.txt:
4740         * docs/gst/tmpl/gstconfig.sgml:
4741           add GST_PLUGIN_EXPORT definition
4742
4743 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4744
4745         * gst/gstplugin.h:
4746         * gst/gstconfig.h.in:
4747         * win32/gstconfig.h:
4748         * win32/gstelements.def:
4749         * win32/gstelements.vcproj:
4750         * win32/gstoptimalscheduler.def:
4751         * win32/gstoptimalscheduler.vcproj:
4752         * win32/gstspider.def:
4753         * win32/gstspider.vcproj:
4754           remove unused .def files and export symbols using GST_PLUGIN_DEFINE
4755
4756 2004-07-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4757
4758         * docs/gst/gstreamer-sections.txt:
4759           remove GST_CAT_DEFAULT because the type has changed
4760
4761 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4762
4763         * win32/gstbytestream.vcproj:
4764         * win32/gstelements.vcproj:
4765         * win32/gst-inspect.vcproj:
4766         * win32/gst-launch.vcproj:
4767         * win32/gstoptimalscheduler.vcproj:
4768         * win32/GStreamer.vcproj:
4769         * win32/gst-register.vcproj:
4770         * win32/gstspider.vcproj:
4771         * win32/msvc71.sln:
4772           Copy the files where needed after building, The testsuite will be
4773           built separately
4774
4775 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4776
4777         * win32/config.h:
4778         * win32/README.txt:
4779         * docs/manual/win32.xml:
4780         Fixed the plugin and GStreamer location
4781
4782 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4783
4784         * win32/gstreamer.def:
4785         More exports for the plugins
4786
4787 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4788
4789         * gst/gstinfo.h:
4790         Marc was right, we need to export literally GST_CAT_DEFAULT
4791
4792 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4793
4794         * win32/config.h:
4795         NLS crashes in gettext, disabled until this is solved
4796
4797 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4798
4799         * win32/gst-inspect.vcproj:
4800         * win32/gst-launch.vcproj:
4801         Should use NLS when available
4802
4803 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4804
4805         * gst/registries/gstxmlregistry.c:
4806         removing the file doesn't seem to be a good idea on Linux
4807
4808 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4809
4810         * gst/registries/gstxmlregistry.c:
4811         Remove the registry before renaming the tempfile (needed for Windows)
4812
4813 2004-07-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4814
4815         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init),
4816         (gst_multifilesrc_init), (gst_multifilesrc_set_property),
4817         (gst_multifilesrc_get_property), (gst_multifilesrc_get):
4818         * gst/elements/gstmultifilesrc.h:
4819         Added newmedia property so it generates newmedia events between each
4820         file when property is set, as well as fixed eos handling
4821
4822 2004-07-22  David Schleef  <ds@schleef.org>
4823
4824         * gst/gststructure.c: (gst_structure_id_empty_new),
4825         (gst_structure_empty_new):  Set type field correctly.
4826         * gst/gststructure.h: Check type field correctly.
4827         * testsuite/caps/Makefile.am:
4828         * testsuite/caps/structure.c: (test1), (main): Add a very small
4829         test for structures.
4830
4831 2004-07-22  David Schleef  <ds@schleef.org>
4832
4833         * docs/random/ds/0.9-suggested-changes: more comments
4834         * tools/gst-launch.c: (idle_func): Fix hard-to-translate string.
4835
4836 2004-07-22  Benjamin Otte  <otte@gnome.org>
4837
4838         * gst/gstelementfactory.c: (gst_element_register):
4839           set the factory in the class struct, so gst_element_get_factory
4840           actually works
4841         * gst/parse/grammar.y:
4842           set element to playing when it gets unlocked as we can't rely on the
4843           bin state - all elements in the bin state might still be locked in
4844           NULL)
4845
4846 2004-07-22  Benjamin Otte  <otte@gnome.org>
4847
4848         * gst/gstelement.c: (gst_element_set_state_func):
4849           make this a static function
4850
4851 2004-07-22  Wim Taymans  <wim@fluendo.com>
4852
4853         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
4854         (gst_opt_scheduler_pad_link):
4855         fix 147894-2 and the group_link problem.
4856
4857 2004-07-22  Wim Taymans  <wim@fluendo.com>
4858
4859         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
4860         (handoff_identity), (main):
4861         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
4862         (handoff_identity), (main):
4863         * testsuite/schedulers/Makefile.am:
4864         * testsuite/schedulers/group_link.c: (main):
4865         Show bug in scheduler when linking chain and loop based element 
4866         where the chain based element was not yet in a group.
4867
4868 2004-07-21  Benjamin Otte  <otte@gnome.org>
4869
4870         * gst/.cvsignore:
4871         * gst/autoplug/.cvsignore:
4872         * gst/elements/.cvsignore:
4873         * gst/indexers/.cvsignore:
4874         * libs/gst/bytestream/.cvsignore:
4875         * libs/gst/control/.cvsignore:
4876         * libs/gst/getbits/.cvsignore:
4877         * testsuite/states/.cvsignore:
4878         * testsuite/threads/.cvsignore:
4879           keep this up to date, since I seem to be the only one who cares
4880           about not missing files on commits (editor's note: no you don't,
4881           but feel free to change them at the time you add stuff instead
4882           of later on)
4883
4884 2004-07-21  Benjamin Otte  <otte@gnome.org>
4885
4886         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
4887         (gst_bin_fix_state), (gst_bin_add_func), (gst_bin_remove_func),
4888         (gst_bin_child_state_change_func), (set_kid_state_func),
4889         (gst_bin_set_state), (gst_bin_change_state_norecurse):
4890           make state changes work correctly and reentrant (so removing
4891           elements from bins during state changes of bins doesn't cause
4892           segfaults or even wrong states)
4893           add debugging category and debugging output to print children states
4894         * gst/gstbin.c: (gst_bin_dispose): 
4895           add some assertion checks
4896         * gst/gstbin.h:
4897         * gst/gstbin.c: (gst_bin_sync_children_state):
4898           deprecate this function - it just does gst_bin_set_state (bin,
4899           GST_STATE (bin)) 
4900         * testsuite/threads/queue.c: (main):
4901           don't use gst_bin_sync_children_state anymore
4902         * testsuite/states/Makefile.am:
4903         * testsuite/states/bin.c:
4904           test that the state changes of bins work as expected
4905         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_set_state):
4906           some adjustments to change states correctly, too
4907         * gst/gstthread.c: (gst_thread_change_state):
4908           don't enable/disable "threadsafe" properties, they're unused and
4909           cause random segfaults
4910         * testsuite/threads/Makefile.am:
4911           the queue check randomly passes now, ignore it
4912
4913 2004-07-21  Benjamin Otte  <otte@gnome.org>
4914
4915         * gst/gstpad.c:
4916           check if data is NULL before outputting debug info. (fixes #145100)
4917
4918 2004-07-21  Benjamin Otte  <otte@gnome.org>
4919
4920         * gst/schedulers/entryscheduler.c:
4921         (gst_entry_scheduler_loop_wrapper),
4922         (gst_entry_scheduler_chain_wrapper),
4923         (gst_entry_scheduler_get_wrapper):
4924           reset the state when the cothread starts, so we don't get assertion
4925           failures on restarting of cothreads
4926
4927 2004-07-20  Benjamin Otte  <otte@gnome.org>
4928
4929         * gst/gstelement.c: (gst_element_link_pads_filtered):
4930           use correct sinkpad, if only sinkpad is specified, but not srcpad
4931           (fixes #147889)
4932         * gst/gstelement.c: (gst_element_set_state_func),
4933         (gst_element_change_state): ref/unref the element, signal handlers
4934         could get rid of the element otherwise
4935
4936 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
4937
4938         * docs/random/ds/0.9-suggested-changes:
4939           Make note about renaming fixed-list to array.
4940         * gst/gstvalue.c: (gst_value_intersect_fixed_list),
4941         (_gst_value_initialize):
4942           Add array intersections.
4943         * testsuite/caps/intersect2.c: (main):
4944           Add test for array intersections.
4945
4946 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4947
4948         * configure.ac: back to cvs
4949
4950 === release 0.8.4 ===
4951
4952 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4953
4954         * configure.ac:
4955           releasing 0.8.4, "Paella"
4956           bump libtool versioning
4957
4958 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4959
4960         * po/LINGUAS:
4961         * po/ca.po:
4962           adding Catalan translation (Jordi Mallach)
4963
4964 2004-07-20  Wim Taymans  <wim@fluendo.com>
4965
4966         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
4967         (handoff_identity), (main):
4968         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
4969         (handoff_identity), (main):
4970         * testsuite/schedulers/Makefile.am:
4971         Added failing testcase for variant of #147894
4972
4973 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4974
4975         patch by: David Moore
4976
4977         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
4978         (schedule_group), (gst_opt_scheduler_schedule_run_queue),
4979         (group_migrate_connected):
4980         * testsuite/schedulers/Makefile.am:
4981           fix for #142813 (Deadlock in optimal scheduler)
4982
4983 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4984
4985         patch by: Wim Taymans
4986
4987         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
4988         (gst_opt_scheduler_schedule_run_queue),
4989         (gst_opt_scheduler_get_wrapper), (get_group),
4990         (group_migrate_connected):
4991         * testsuite/schedulers/Makefile.am:
4992           fix for #147819 (Add some checks in the opt scheduler)
4993
4994 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
4995
4996         patch by: Benjamin Otte
4997
4998         * gst/gstelementfactory.c: (__gst_element_details_set):
4999           fix for #147929: running gst-register in non-utf8 locale can cause
5000           invalid registry
5001
5002 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5003
5004         patch by: Wim Taymans
5005
5006         * gst/schedulers/gstoptimalscheduler.c: (group_num_elements),
5007         (group_has_element), (element_get_reachables_func),
5008         (group_migrate_connected):
5009           fix for #147894 (opt scheduler decoupled elements mismanagement)
5010         * testsuite/schedulers/Makefile.am:
5011           testsuite app now passes
5012
5013 2004-07-19  Wim Taymans  <wim@fluendo.com>
5014
5015         * testsuite/schedulers/147819.c: (handoff_identity1),
5016         (handoff_identity2), (main):
5017         * testsuite/schedulers/Makefile.am:
5018         Added testcase for bug 147819
5019
5020 2004-07-19  Wim Taymans  <wim@fluendo.com>
5021
5022         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
5023         (handoff_identity), (main):
5024         * testsuite/schedulers/Makefile.am:
5025         Added testcase for bug 147894
5026
5027 2004-07-16  Wim Taymans  <wim@fluendo.com>
5028
5029         * testsuite/schedulers/142183-2.c: (handoff_identity), (main):
5030         * testsuite/schedulers/142183.c: (handoff_identity), (main):
5031         * testsuite/schedulers/Makefile.am:
5032         Added testsuite for bug 142183 in its two incarnations. Refcount
5033         is not increased for scheduled elements and threadsafe properties
5034         mutexes are not properly unlocked.
5035
5036 2004-07-16  Wim Taymans  <wim@fluendo.com>
5037
5038         * gst/schedulers/gstoptimalscheduler.c: (gst_opt_scheduler_init),
5039         (create_chain), (destroy_chain), (create_group), (destroy_group),
5040         (add_to_group), (merge_groups), (group_elements), (group_inc_link),
5041         (group_dec_link), (gst_opt_scheduler_pad_link),
5042         (group_inc_links_for_element), (group_migrate_connected):
5043         Call group_inc_link with the proper src->sink ordering -- 
5044         break this, and we break sort_chain. patch from wingo for bug
5045         147713.
5046         Partially revert patch 1.89. When adding a loop based element to 
5047         the scheduler, the links to other groups are automatically followed
5048         and incremented. This should not happen because the bin will call
5049         pad_link explicitly for those connection, resulting in them counted 
5050         twice. Results in assertion failure on pipeline cleanup.
5051
5052 2004-07-16  Wim Taymans  <wim@fluendo.com>
5053
5054         * testsuite/schedulers/143777-2.c: (main):
5055         * testsuite/schedulers/147713.c: (handoff_src), (handoff_sink),
5056         (main):
5057         * testsuite/schedulers/Makefile.am:
5058         Added cleanup code to testcase 143777-2.
5059         Added testcase to show bug 147713, does not really show the
5060         deadlock as I can't figure out how to trigger it, but it does
5061         demonstrate bad ordering in the scheduler.
5062
5063 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5064
5065         * gst/gstvalue.c: (gst_value_deserialize_fraction):
5066           change strndup to g_strndup.  Fixes #147707
5067
5068 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5069
5070         * po/af.po:
5071         * po/az.po:
5072         * po/cs.po:
5073         * po/en_GB.po:
5074         * po/fr.po:
5075         * po/nl.po:
5076         * po/sr.po:
5077         * po/sv.po:
5078         * po/tr.po:
5079         * po/uk.po:
5080           updated translations
5081
5082 2004-07-16  Benjamin Otte  <otte@gnome.org>
5083
5084         * gst/gstvalue.c: (gst_greatest_common_divisor):
5085           use ints and return ints, fractions only use ints, too, so this
5086           avoids accidently casting multiplications to unsigned
5087         (gst_value_lcopy_fraction): it's ints, not uint32
5088         (gst_value_set_fraction): disallow minint, multiplying and negation
5089           are broken with it
5090         (gst_value_fraction_multiply): fix to make large numbers work and get
5091         rid of the assumption that the multiplication of two ints fits an
5092         int64 - dunno if that's true for all systems
5093         * testsuite/caps/Makefile.am:
5094         * testsuite/caps/fraction-multiply-and-zero.c:
5095         (check_multiplication), (check_equal), (zero_test), (main):
5096           add tests for all the stuff above
5097         * testsuite/caps/value_compare.c: (test1):
5098           fix comment
5099         * tests/.cvsignore:
5100         * testsuite/caps/.cvsignore:
5101         * testsuite/debug/.cvsignore:
5102         * testsuite/dlopen/.cvsignore:
5103         * testsuite/states/.cvsignore:
5104           get up to date
5105
5106 2004-07-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5107
5108         * docs/manual/bins-api.xml:
5109         * docs/manual/factories.xml:
5110         * docs/manual/helloworld.xml:
5111         * docs/manual/links-api.xml: 
5112           fixes for out of date info, incorrect info and grammar
5113
5114 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5115
5116         * docs/manual/pads.xml:
5117         * docs/manual/pads-api.xml: grammar fix
5118
5119 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5120
5121         * docs/manual/pads-api.xml: typo + grammar fix
5122
5123 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5124
5125         * docs/gst/gstreamer-sections.txt:
5126           add new symbols
5127         * docs/gst/tmpl/gstelement.sgml:
5128         * docs/gst/tmpl/gstpad.sgml:
5129         * docs/gst/tmpl/gsttypes.sgml:
5130         * docs/gst/tmpl/gstvalue.sgml:
5131           update docs
5132         * gst/gststructure.c: (gst_structure_set_valist),
5133         (gst_structure_from_abbr), (gst_structure_to_abbr):
5134         * gst/gstvalue.c: (gst_value_compare_double), (gst_type_is_fixed),
5135         (gst_greatest_common_divisor), (gst_value_init_fraction),
5136         (gst_value_copy_fraction), (gst_value_collect_fraction),
5137         (gst_value_lcopy_fraction), (gst_value_set_fraction),
5138         (gst_value_get_fraction_numerator),
5139         (gst_value_get_fraction_denominator),
5140         (gst_value_fraction_multiply), (gst_value_serialize_fraction),
5141         (gst_value_deserialize_fraction),
5142         (gst_value_transform_fraction_string),
5143         (gst_value_transform_string_fraction),
5144         (gst_value_compare_fraction), (_gst_value_initialize):
5145         * gst/gstvalue.h:
5146           adding GstFraction GValue type, get/set, and multiply
5147         * testsuite/caps/Makefile.am:
5148         * testsuite/caps/fraction.c: (test), (main):
5149         * testsuite/caps/string-conversions.c: (main):
5150         * testsuite/caps/value_compare.c: (test1), (main):
5151           add regression tests for GstFraction
5152
5153 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5154         
5155         * docs/manual/init-api.xml: Grammar fix
5156
5157 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5158
5159         * docs/manual/states.xml: Fix inconsistent information
5160
5161 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5162
5163         * gst/gstelement.c: (gst_element_set_state):
5164         * gst/gstpad.c: (gst_pad_try_set_caps):
5165         * gst/gststructure.c:
5166         * gst/gstthread.c: (gst_thread_child_state_change):
5167         * gst/gstvalue.c: (gst_value_compare_double):
5168         * gst/gstvalue.h:
5169         * testsuite/parse/parse1.c: (main):
5170           debugging additions and style cleanups
5171
5172 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5173
5174         * docs/manual/states.xml: Grammar fix
5175
5176 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5177
5178         * docs/manual/pads.xml: Grammar fix
5179
5180 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5181
5182         * docs/manual/elements.xml: Fixed image reference
5183
5184 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5185
5186         * docs/manual/goals.xml: Grammar fix
5187
5188 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5189
5190         * docs/manual/motivation.xml:
5191         Bonobo is no longer "emerging" and added sentence regarding tcp plugins
5192
5193 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5194
5195         * docs/manual/motivation.xml: Fix spelling
5196
5197 2004-07-15  Benjamin Otte  <otte@gnome.org>
5198
5199         * gst/gstelement.h: 
5200           Don't GST_ERROR_OBJECT empty strings - Solaris doesn't like NULL
5201           strings.
5202         * gst/gstelement.c (gst_element_class_init):
5203           GError's are boxed, not objects
5204         * gst/gstmarshal.list:
5205           update list for the fixed error signal
5206
5207 2004-07-14  Andy Wingo  <wingo@pobox.com>
5208
5209         * gst/gsttag.c: Add a tag merge func for pointers. The header was
5210         there all along, but the function wasn't. (guile-gstreamer's build
5211         system uses the address of the function -- I wasn't actually
5212         trying to use this.)
5213
5214 2004-07-14  Andy Wingo  <wingo@pobox.com>
5215
5216         * gst/gstpad.c (gst_pad_try_set_caps): Naive link functions (such
5217         as gst_pad_proxy_pad_link) just link to every other pad when they
5218         are called. In the case where the graph has cycles, this will mean
5219         that a call to try_set_caps will recurse. Allow this recursion
5220         and return OK, while we wait for the first try_set_caps to give a
5221         proper return value.
5222         (gst_pad_link_call_link_functions): Since this function is the
5223         only one to set the NEGOTIATING flag on a pad, if the flag is set
5224         it means that the link functions have indirectly recursed. If this
5225         happens, error out to avoid infinite recursion and an eventual
5226         SEGV.
5227         (gst_real_pad_class_init): Remove a crufty GtkObject comment.
5228         (gst_pad_proxy_getcaps): Intersect the result with the template
5229         caps to ensure that the return value is valid.
5230
5231 2004-07-14  Andy Wingo  <wingo@pobox.com>
5232
5233         * gst/gstdata.c (gst_data_is_writable): s/>=/>/. If there is only
5234         one refcount, the calling function is the owner of the buffer.
5235
5236 2004-07-14  Wim Taymans  <wim@fluendo.com>
5237
5238         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5239         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5240         Fix stupid warning when an element is to be migrated but
5241         is already migrated.
5242
5243 2004-07-14  Wim Taymans  <wim@fluendo.com>
5244
5245         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5246         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5247         Make sure that a single non-loop-based element does not 
5248         end up in a group. This fixes the testsuite again.
5249
5250 2004-07-14  Wim Taymans  <wim@fluendo.com>
5251
5252         * gst/schedulers/gstoptimalscheduler.c: (create_group),
5253         (add_to_group), (merge_groups), (schedule_group),
5254         (gst_opt_scheduler_get_wrapper), (group_elements),
5255         (group_dec_link), (gst_opt_scheduler_pad_link),
5256         (group_migrate_connected), (gst_opt_scheduler_pad_unlink),
5257         (gst_opt_scheduler_iterate):
5258         move isolated groups to a new chain.
5259         Emit a warning instead of segfaulting in some error cases.
5260         Fix a bug where the link count between groups was not calculated 
5261         correctly. Fixes #144510.
5262
5263 2004-07-13  Steve Lhomme  <steve.lhomme@free.fr>
5264         * gst/elements/gstfilesrc.c:
5265           Binary files support under Windows now OK
5266       
5267 2004-07-13  Benjamin Otte  <otte@gnome.org>
5268
5269           compatibility fixes for Solaris 8/gcc 2.95
5270         * configure.ac:
5271           include libintl libs in LDFLAGS
5272         * gstvalue.c (gst_value_deserialize_buffer):
5273           cast isxdigit stuff to int to silence compiler warning
5274
5275 2004-07-12  Benjamin Otte  <otte@gnome.org>
5276
5277         * gst/gsttypes.h:
5278           get rid of GST_O_READONLY, GST_FILE_MODE_READ and
5279           GST_FILE_MODE_WRITE, I don't want them in the exported headers. It
5280           just causes support madness
5281         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
5282           make it work without this
5283         * gst/indexers/gstfileindex.c: (_file_index_id_save_entries),
5284         (gst_file_index_commit):
5285           glib IO channels don't want binary mode
5286         * testsuite/bytestream/filepadsink.c: (main):
5287         * testsuite/bytestream/test1.c: (read_param_file):
5288           use "rb" instead of GST_FILE_MODE_READ, it works on POSIX systems
5289
5290 2004-07-12  Benjamin Otte  <otte@gnome.org>
5291
5292         * gst/gstelement.c: (gst_element_class_init),
5293         (gst_element_set_state), (gst_element_set_state_func):
5294           virutalize gst_element_set_state, use set_state member in class
5295           struct that was already added in 0.7 for this.
5296         * gst/gstbin.c: (gst_bin_foreach), (set_kid_state_func), 
5297         (gst_bin_change_state):
5298           make gst_bin_foreach works similar to other foreach functions, plug
5299           memleaks in it. Make functions using it work with the new approach.
5300           Document gst_bin_foreach, so it can be exported if we want to
5301         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_state):
5302           use virtualized set_state to make set_state on bins set the state of
5303           all its children.
5304
5305 2004-07-12  Benjamin Otte  <otte@gnome.org>
5306
5307         * configure.ac:
5308           require valgrind >= 2.1 (fixes Gentoo bug 53967, see
5309           http://bugs.gentoo.org/show_bug.cgi?id=53967)
5310         * gst/gstpad.c: (gst_pad_alloc_buffer):
5311           allow buffer_alloc functions to return NULL and allocate a normal
5312           buffer in that case
5313
5314 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5315         * gst/elements/gstfilesink.c:
5316         * gst/elements/gstfilesrc.c:
5317         * gst/indexers/gstfileindex.c:
5318         * gst/gsttypes.h:
5319         * testsuite/bytestream/filepadsink.c:
5320         * testsuite/bytestream/test1.c:
5321           Handle binary files under Windows
5322
5323 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5324         * docs/manual/win32.xml:
5325         * win32/config.h:
5326         * win32/gst-register.vcproj:
5327         * win32/gstreamer.def:
5328           Update to another gettext public build
5329
5330 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5331         * gst/gstplugin.c:
5332           Fix an impossible C syntax
5333         * win32/config.h:
5334           Disable i18n under Windows for the moment
5335         * win32/gst-register.vcproj:
5336           Use this configuration
5337
5338 2004-07-12  Jan Schmidt  <thaytan@mad.scientis.com>
5339         * docs/manual/quotes.xml:
5340           Keep the quotes file alive
5341         * docs/random/ds/0.9-suggested-changes:
5342           Add the suggestion of including a 'rowstride' as part of video
5343           format caps
5344
5345 2004-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5346
5347         * gst/gstelement.c: (gst_element_set_state),
5348         (gst_element_change_state):
5349           d'oh.  Set PENDING state correctly before forcing bin to change.
5350         * gst/gststructure.c: (gst_structure_value_get_generic_type),
5351         (gst_structure_parse_fixed_list):
5352         * gst/schedulers/gstoptimalscheduler.c:
5353         (gst_opt_scheduler_state_transition):
5354         * testsuite/states/parent.c: (main):
5355           remove comment now that it's fixed.
5356
5357 2004-07-11  Benjamin Otte  <otte@gnome.org>
5358
5359         * gst/gstclock.h:
5360           GST_SECOND shouldn't cause a conversion to unsigned.
5361         * testsuite/clock/.cvsignore:
5362         * testsuite/clock/Makefile.am:
5363         * testsuite/clock/signedness.c: (main):
5364           make sure it never will again
5365
5366 2004-07-11  Andy Wingo  <wingo@pobox.com>
5367
5368         * gst/gstbin.c (gst_bin_add_func): If we're adding an element
5369         whose state is higher than the bin state, raise the bin state to
5370         ensure that bin state := highest child state.
5371         
5372 2004-07-11  Andy Wingo  <wingo@pobox.com>
5373
5374         * gst/gstbin.c (gst_bin_foreach): New static function. Calls a
5375         procedure on the children of a bin. Assumes that the procedure can
5376         change the set of children.
5377         (set_kid_state_func): New static function.
5378         (gst_bin_change_state): Use gst_bin_foreach to call
5379         set_kid_state_func. Fixes a bug: if a child had a state-change
5380         handler that removes it from the bin, there would be a segfault.
5381         Hopefully it should also work in the case where the state-change
5382         handler on one child adds or removes other children. In any case,
5383         fixes should go to gst_bin_foreach.
5384
5385 2004-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5386
5387         * gst/gstelement.c: (gst_element_set_state):
5388           compatibility fix for latest plugins release.  Change loop back
5389           to while {}
5390
5391 2004-07-09  Wim Taymans  <wim@fluendo.com>
5392
5393         * gst/gstbin.c: (gst_bin_remove), (gst_bin_dispose):
5394         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_catch),
5395         (gst_thread_main_loop):
5396         Since remove is virtual in GstBin we must not assume the 
5397         elements GList to have anothing useful.
5398         Add some more logging to GstThread and be a bit more paranoid
5399         when resetting the scheduler.
5400         Set the state of the bin to NULL before removing the children.
5401
5402 2004-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5403
5404         * testsuite/threads/Makefile.am:
5405         * testsuite/threads/threadg.c:
5406           added test to check if problem when removing all elements from a
5407           GstThread before setting GstThread state to NULL
5408
5409 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5410
5411         * docs/gst/tmpl/gstelement.sgml:
5412         * docs/gst/tmpl/gsttypes.sgml:
5413         * gst/gstbin.c: (gst_bin_change_state):
5414         * gst/gstelement.c: (gst_element_set_state),
5415         (gst_element_change_state):
5416           rework so that for bins we try to set the state on all children
5417           as well even if the bin is in the correct state already.
5418           change while to do so at least one iteration is done.
5419           For regular elements, we fall back to the previous behaviour for
5420           now since we first need a new plugins release.
5421         * testsuite/states/parent.c: (main):
5422           test for this case
5423           Fixes #123774
5424
5425 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5426
5427         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_finalize),
5428         (gst_queue_chain), (gst_queue_get), (gst_queue_handle_src_event),
5429         (gst_queue_release_locks), (gst_queue_change_state),
5430         (gst_queue_set_property):
5431           add proper lock debugging.  Change dispose to finalize, since
5432           we're freeing mutexes and other stuff which should happen only once.
5433
5434 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5435
5436         * docs/gst/tmpl/gstelement.sgml:
5437         * docs/gst/tmpl/gstplugin.sgml:
5438         * docs/gst/tmpl/gsttypes.sgml:
5439         * docs/pwg/building-state.xml:
5440         * gst/elements/gstfakesrc.c: (gst_fakesrc_change_state):
5441         * gst/gstelement.c: (gst_element_change_state):
5442         * gst/gstthread.c: (gst_thread_change_state):
5443           catch wrong state changes in element base class.
5444
5445 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5446
5447         * gst/gstinfo.h:
5448           clean up layout a little.
5449
5450 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5451
5452         * configure.ac:
5453         * testsuite/Makefile.am:
5454         * testsuite/states/Makefile.am:
5455         * testsuite/states/parent.c: (main):
5456           re-enable states testsuite dir.  Add test for state changes and
5457           parent behaviour
5458
5459 2004-07-09  Wim Taymans  <wim@fluendo.com>
5460
5461         * gst/schedulers/gstoptimalscheduler.c:
5462         (gst_opt_scheduler_pad_link), (group_elements_set_visited),
5463         (element_get_reachables_func), (element_get_reachables),
5464         (debug_element), (rechain_group), (group_migrate_connected),
5465         (gst_opt_scheduler_pad_unlink):
5466         Do not try to migrate decoupled elements to a new group since
5467         they are not added to groups.
5468
5469 2004-07-08  Benjamin Otte  <otte@gnome.org>
5470
5471         * gst/gstelement.c: (gst_element_error_func):
5472           make reentrant (= allow removing elements in error handler)
5473
5474 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5475
5476         * gst/gstpad.c: (gst_pad_event_default_dispatch),
5477         (gst_pad_send_event), (gst_pad_call_chain_function):
5478           events sent to elements below PAUSED cannot be handled, so
5479           don't try to
5480
5481 2004-07-08  Wim Taymans  <wim@fluendo.com>
5482
5483         * gst/schedulers/gstoptimalscheduler.c:
5484         (chain_recursively_migrate_group), (create_group),
5485         (schedule_group), (gst_opt_scheduler_pad_link),
5486         (group_elements_set_visited), (element_get_reachables_func),
5487         (element_get_reachables), (group_can_reach_group), (debug_element),
5488         (rechain_group), (group_migrate_connected),
5489         (gst_opt_scheduler_pad_unlink):
5490         * testsuite/schedulers/Makefile.am:
5491         Implemented group splitting and rechaining.
5492         Fixes 143777 and 143777-2 in the testsuite.
5493
5494 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5495
5496         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5497           extra debugging
5498         * gst/gstevent.h:
5499         * gst/gstinfo.c: (gst_debug_log_default):
5500           print time nicely.  add thread pointer until someone figures out
5501           a completely portable way of getting at thread id's.
5502         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_try),
5503         (_invent_event), (gst_pad_pull), (gst_pad_event_default_dispatch),
5504         (gst_pad_call_chain_function):
5505           extra debugging
5506         * gst/schedulers/gstoptimalscheduler.c:
5507         (get_group_schedule_function), (loop_group_schedule_function),
5508         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
5509         (pad_clear_queued), (gst_opt_scheduler_iterate):
5510           rename BUFPEN and friends to DATAPEN since that's what they are.
5511
5512 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5513
5514         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5515         * gst/gstbuffer.h:
5516         * gst/gstpad.c:
5517           cleanups and debugging
5518
5519 2004-07-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
5520
5521         * configure.ac:
5522         * gst/gstvalue.c: (gst_value_compare_enum),
5523         (gst_value_serialize_enum), (gst_value_deserialize_enum),
5524         (gst_value_can_compare), (gst_value_compare):
5525         * testsuite/Makefile.am:
5526         * testsuite/enumcaps/Makefile.am:
5527         * testsuite/enumcaps/enumcaps.c:
5528           Fix enum serialization, deserialization, comparison in caps, add
5529           a test to ensure that this continues working in the future.
5530
5531 2004-07-06  David Schleef  <ds@schleef.org>
5532
5533         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5534         Fix memleak.
5535
5536 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5537
5538         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
5539         * gst/gstplugin.h:
5540         * gst/registries/gstxmlregistry.c:
5541         (plugin_times_older_than_recurse), (plugin_times_older_than),
5542         (gst_xml_registry_parse_padtemplate):
5543           only rebuild registry when actual plugins have a newer time than
5544           the registry.  Fixes #145520
5545
5546 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5547
5548         * docs/manual/manual.xml:
5549         * docs/manual/win32.xml:
5550           add chapter on win32 building.  fixes #142422
5551
5552 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5553
5554         patch by: Sebastien Cote <sc5 at hermes.usherb.ca>
5555
5556         * gst/autoplug/gstspider.c: (gst_spider_init),
5557         (gst_spider_dispose):
5558           fix spider memleaks.  fixes #137863
5559
5560 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5561
5562         patch by: Joe Marcus Clarke <marcus at freebsd dot org>
5563
5564         * gst/schedulers/gstoptimalscheduler.c:
5565         (gst_opt_scheduler_pad_unlink):
5566           fix SIGBUS error, fixes #145338
5567
5568 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5569
5570         * gst/gstobject.c: (gst_object_replace):
5571         * gst/gstscheduler.c: (gst_scheduler_get_clock):
5572         * gst/gstsystemclock.c: (gst_system_clock_obtain):
5573           clean up clock lifecycle.  Fixes #109831
5574
5575 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5576
5577         * po/LINGUAS:
5578         * po/cs.po:
5579           added Czech translation (Miloslav Trmac)
5580
5581 2004-07-04  David Schleef  <ds@schleef.org>
5582
5583         * tools/Makefile.am:
5584         * tools/gst-xmlinspect.1.in:  Add man page. (bug #140219)
5585
5586 2004-07-04  David Schleef  <ds@schleef.org>
5587
5588         * common/m4/gst-doc.m4: Check for docbook2html 0.6.10 (bug #139909)
5589
5590 2004-07-04  Thomas Vander Stichele  <thomas at apestaart dot org>
5591
5592         * gst/gstbin.c: (gst_bin_restore_thyself):
5593           chain to parent restore so the bins get restored correctly
5594           in the editor
5595
5596 2004-07-03  David Schleef  <ds@schleef.org>
5597
5598         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5599         Actually do something in these functions, like before the big
5600         caps change.  (bug #145137)
5601
5602 2004-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5603
5604         * gst/gstelement.c: (gst_element_get_compatible_pad_template),
5605         (gst_element_get_compatible_pad_filtered):
5606         * gst/gstthread.c: (gst_thread_main_loop):
5607           more debugging
5608
5609 2004-07-02  David Schleef  <ds@schleef.org>
5610
5611         * gst/gstinfo.h: wrap #pragmas in #ifdefs for the correct compiler
5612         * gst/gstobject.h:
5613         * gst/gstparse.h:
5614         * gst/gsttrace.h:
5615         * gst/gstxml.h:
5616
5617 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5618
5619         * gst/gstpad.c: (gst_pad_check_schedulers),
5620         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5621         (gst_pad_link_prepare):
5622           revert until testsuite is fixed
5623
5624 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5625
5626         * testsuite/Makefile.am:
5627         * testsuite/caps/filtercaps.c: (main):
5628         * testsuite/clock/clock1.c: (main):
5629         * testsuite/dynparams/dparamstest.c: (gst_dptest_chain), (main):
5630           fix some more tests
5631
5632 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5633
5634         * testsuite/cleanup/cleanup1.c: (create_pipeline):
5635         * testsuite/cleanup/cleanup2.c: (create_pipeline):
5636         * testsuite/cleanup/cleanup4.c: (main):
5637           fix testsuite
5638
5639 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5640
5641         * libs/gst/control/control.c:
5642         * libs/gst/control/dparam.c:
5643         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_get_type):
5644         * libs/gst/control/dparammanager.c:
5645         * libs/gst/control/dparammanager.h:
5646         * testsuite/dynparams/Makefile.am:
5647         * testsuite/dynparams/dparamstest.c: (gst_dptest_base_init),
5648         (gst_dptest_change_state), (gst_dptest_chain), (main):
5649           fix testcase for dparams
5650           add debugging category
5651
5652 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5653
5654         * testsuite/Rules:
5655           change path
5656
5657 2004-07-02  Benjamin Otte  <otte@gnome.org>
5658
5659         * tests/.cvsignore:
5660         * tests/Makefile.am:
5661         * tests/mass_elements.c: (gst_get_current_time), (main):
5662           add simple benchmark to test various speeds of fakesrc ! identity !
5663           identity ! ... ! fakesink.
5664           Usage: mass_elements [num_identities] [num_buffers]
5665           If not specified they default to 1000.
5666
5667 2004-07-02  Benjamin Otte  <otte@gnome.org>
5668
5669         * gst/gstpad.c: (gst_pad_check_schedulers),
5670         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5671         (gst_pad_link_prepare):
5672           check that pads that get linked belong to the same manager. The old
5673           code allowed linking elements before putting them into bins, so it
5674           worked to link them and then put them in different threads, which
5675           lead to weird behaviour.
5676           Since this effectively disallows linking elements before putting
5677           them in a bin, some applications might not work after this and error
5678           out. If these applications are too critical, we might need to revert
5679           that patch. Please test this before the next release...
5680
5681 2004-06-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5682
5683         * gst/gstpad.c: (gst_pad_get_caps):
5684           throw an error if the getcaps function does not return a subset of
5685           the template caps.
5686         * libs/gst/bytestream/filepad.c: (gst_file_pad_chain):
5687           make disconts without position info an error in debugging
5688         * tests/spidey_bench.c: (handoff), (main):
5689           don't count first try when averaging
5690
5691 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5692
5693         * gst/gstplugin.c: (gst_plugin_load_file):
5694           figure out problem with dynamic test
5695
5696 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5697
5698         * docs/gst/Makefile.am:
5699           fix docs build
5700
5701 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5702
5703         * po/POTFILES.in:
5704         * po/af.po:
5705         * po/az.po:
5706         * po/en_GB.po:
5707         * po/fr.po:
5708         * po/nl.po:
5709         * po/sr.po:
5710         * po/sv.po:
5711         * po/tr.po:
5712         * po/uk.po:
5713         * tools/gst-register.c: (plugin_added_func), (main):
5714           i18n-ize -register, fix plural
5715
5716 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5717
5718         * gst/elements/gstidentity.c: (gst_identity_class_init),
5719         (gst_identity_init), (gst_identity_chain),
5720         (gst_identity_set_property), (gst_identity_get_property):
5721         * gst/elements/gstidentity.h:
5722           check for perfect stream
5723
5724 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5725
5726         * gst/elements/gstidentity.c: (gst_identity_chain):
5727           print offset_end
5728
5729 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5730
5731         * docs/gst/Makefile.am:
5732         * docs/gst/gstreamer-docs.sgml:
5733           doc fixes
5734
5735 2004-06-24  David Schleef  <ds@schleef.org>
5736
5737         * autogen.sh:  Remove call to env, since the buildbot isn't
5738         broken anymore.
5739
5740 2004-06-24  Wim Taymans  <wim@fluendo.com>
5741
5742         * gst/elements/Makefile.am:
5743         * gst/elements/gstelements.c:
5744         * gst/elements/gstmultifdsink.c: (gst_multifdsink_base_init),
5745         (gst_multifdsink_class_init), (gst_multifdsink_init),
5746         (gst_multifdsink_add), (gst_multifdsink_remove),
5747         (gst_multifdsink_clear), (gst_multifdsink_chain),
5748         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
5749         * gst/elements/gstmultifdsink.h:
5750         Added an element that writes to multiple filedescriptors at once.
5751
5752 2004-06-24  Benjamin Otte  <otte@gnome.org>
5753
5754         * gst/parse/grammar.y:
5755           don't try to link elements before they have been added to bins
5756
5757 2004-06-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5758
5759         * libs/gst/bytestream/filepad.c: (gst_file_pad_available),
5760         (gst_file_pad_get_length):
5761         * libs/gst/bytestream/filepad.h:
5762           add 2 new functions
5763
5764 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5765
5766         * docs/gst/gstreamer-sections.txt:
5767         remove from docs, the define that Benjamin removed from gstelement.h
5768
5769 2004-06-22  Benjamin Otte  <otte@gnome.org>
5770
5771         * gst/gstelement.h:
5772           remove define that referenced a nonexisting GstElement struct member
5773
5774 2004-06-20  Benjamin Otte  <otte@gnome.org>
5775
5776         * gst/gstdata.c: (gst_data_is_writable):
5777           whoops, return values were wrong, so writable data was marked as
5778           non-writable and vice versa. (fixes #143953, spotted by Francis
5779           Labonte)
5780           Shows how rarely we need to copy data ;)
5781
5782 2004-06-20  Benjamin Otte  <otte@gnome.org>
5783
5784         * testsuite/schedulers/.cvsignore:
5785         * testsuite/schedulers/Makefile.am:
5786         * testsuite/schedulers/143777-2.c: (main):
5787           add test for opt breakage in bug #143777
5788
5789 2004-06-20  Benjamin Otte  <otte@gnome.org>
5790
5791         * gst/gstpad.c: (gst_pad_call_chain_function):
5792           check for if we were unlinked while inside the chainfunction (fixes
5793           entrygthread having issues with #143777)
5794         * testsuite/schedulers/143777.c: (main):
5795         * testsuite/schedulers/Makefile.am:
5796           add a test for that fix
5797
5798 2004-06-20  Benjamin Otte  <otte@gnome.org>
5799
5800         * gst/gstvalue.c: (gst_value_set_int_range):
5801           test that start is smaller then end
5802         * libs/gst/bytestream/Makefile.am:
5803         * libs/gst/bytestream/filepad.c: 
5804         * libs/gst/bytestream/filepad.h:
5805           add GstFilePad - a pad that behaves like a FILE*
5806         * testsuite/bytestream/.cvsignore:
5807         * testsuite/bytestream/Makefile.am:
5808         * testsuite/bytestream/filepadsink.c: 
5809           test for the GstFilePad
5810
5811 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
5812
5813         * gst/elements/gstidentity.c: (gst_identity_class_init),
5814         (gst_identity_init), (gst_identity_set_clock),
5815         (gst_identity_chain), (gst_identity_set_property),
5816         (gst_identity_get_property):
5817         * gst/elements/gstidentity.h:
5818         * gst/gstclock.c: (gst_clock_id_wait):
5819           add a "sync" property to sync to the clock
5820
5821 2004-06-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5822
5823         * gst/gstelementfactory.c: (gst_element_factory_create):
5824           make the freakin "elementfactory bla has no type" message more
5825           useful. So we actually can do something when someone shows up
5826           complaining about it.
5827
5828 2004-06-15  Johan Dahlin  <johan@gnome.org>
5829
5830         * tools/gst-inspect.c (main): Fallback to plugin if no element is
5831         found. This matches the old behavior better. Thanks to Thomas for
5832         pointing out.
5833
5834 2004-06-14  David Schleef  <ds@schleef.org>
5835
5836         * gst/gstcpu.c: (gst_cpuid_i386): Fix problem when using
5837         -fomit-frame-pointer.  Appears to generate correct code in
5838         other cases as well.
5839
5840 2004-06-14  Johan Dahlin  <johan@gnome.org>
5841
5842         * tools/gst-inspect.c (main): Add two new command line options: -a
5843         to print all elements and -n to print the name on each line. Also
5844         fix some error reporting.
5845         (main): Simplify, remove -n and always print names if -a is specified
5846
5847 2004-06-13  Steve Lhomme  <steve.lhomme@free.fr>
5848
5849         * win32/gstconfig.h:
5850         * win32/GSTreamer.vcproj:
5851         * win32/Makefile:
5852         * gst/gstconfig.h.in:
5853         * gst/gst.h:
5854         * gst/gstbin.h:
5855         * gst/gstelement.h:
5856         * gst/gstevent.h:
5857         * gst/gstobject.h:
5858         * gst/gstpad.h:
5859         * docs/gst/gstreamer-sections.txt:
5860         * docs/gst/tmpl/gstconfig.sgml:
5861           rename GSTREAMER_EXPORT(S) to GST_EXPORT(S)
5862
5863 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
5864         * docs/gst/gstreamer-sections.txt:
5865         * docs/gst/tmpl/gstconfig.sgml:
5866         Add the GSTREAMER_EXPORT macro to the docs
5867
5868 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
5869
5870         * tools/gst-compprep.c: (handle_xmlerror), (main):
5871         Add a check for the version that introduced SetStructuredError to fix
5872         the build on FC1
5873
5874 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5875
5876         * win32/msvc71.sln:
5877         * win32/testsuite/:
5878           prepare to compile the testsuite with MSVC
5879
5880 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5881
5882         * docs/manual/win32.xml:
5883           attempt to transform the Win32 README into an XML doc
5884
5885 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5886
5887         * gst/gst.c:
5888         * gst/gstbin.*:
5889         * gst/config.h.in:
5890         * gst/gstelement.*:
5891         * gst/gstevent.h:
5892         * gst/gstobject.*:
5893         * gst/gstpad.h:
5894         * tools/gst-register.c:
5895         * win32/gstreamer.def:
5896           extern symbols are now exported for the Windows DLL
5897
5898 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5899
5900         * gst/gstinfo.h:
5901           fix a problem to enable/disable DEBUG under MSVC
5902
5903 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5904
5905         * win32/:
5906           enable more debug code in DEBUG build
5907
5908 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
5909
5910         * win32/config.h:
5911         * gst/gst-i18n-app.h:
5912           enable NLS under Windows
5913
5914 2004-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
5915         * tools/gst-compprep.c: (handle_xmlerror), (main):
5916           Make an error that baffled me a bit clearer
5917
5918 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5919
5920         * gst/gstqueue.c:
5921           don't use g_queue_get_length () because it's 2.4, use ->length
5922
5923 2004-06-11  Steve Lhomme  <steve.lhomme@free.fr>
5924
5925         reviewed by Benjamin Otte  <in7y118@public.uni-hamburg.de>
5926
5927         * tools/gst-inspect.c: (print_signal_info):
5928           don't free random data twice. (fixes #144185)
5929
5930 2004-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5931
5932         * gst/gstqueue.c:
5933         * gst/gstqueue.h:
5934           fix removing from the wrong queue on event timeout
5935           fix disposing of the event queue by casting correctly
5936           add mutexes for handling the event queue
5937           someone was sleeping when fixing queue last time around :)
5938
5939 2004-06-10  Johan Dahlin  <johan@gnome.org>
5940
5941         * gst/gst.c (gst_init_check_with_popt_table): Do not fail on
5942         errors, like gtk. It makes it more useful in bindings.  Fixes #141692.
5943
5944 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
5945
5946         * docs/random/gdp:
5947         * libs/gst/dataprotocol/dataprotocol-test.c: (buffer_test):
5948         * libs/gst/dataprotocol/dataprotocol.c:
5949         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
5950         (gst_dp_buffer_from_header):
5951         * libs/gst/dataprotocol/dataprotocol.h:
5952         * libs/gst/dataprotocol/dp-private.h:
5953           rev version to 0.1, add buffer flags and copy them
5954
5955 2004-06-09  Johan Dahlin  <johan@gnome.org>
5956
5957         * gst/gstbuffer.c (gst_buffer_default_copy): Don't forget to merge
5958         the flags from the buffer we're copying.
5959
5960 2004-06-09  Wim Taymans  <wim@fluendo.com>
5961
5962         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
5963         * gst/elements/gstidentity.c: (gst_identity_init),
5964         (gst_identity_chain):
5965         Print more buffer info in fakesink.
5966         Make identity output similar to fakesink.
5967
5968 2004-06-07  Daniel Gazard  <dany42@free.fr>
5969
5970         reviewed by Benjamin Otte  <otte@gnome.org>
5971
5972         * configure.ac:
5973           fix cross compiling not working. (fixes #143741)
5974
5975 2004-06-07  Benjamin Otte  <otte@gnome.org>
5976
5977         * gst/gstelement.c: (gst_element_set_time_delay):
5978           add failure check
5979         * gst/gstinfo.h:
5980           put brackets around macro arguments of GST_TIME_ARGS, add note to
5981           move it to correct header in 0.9
5982
5983 2004-06-07  Benjamin Otte  <otte@gnome.org>
5984
5985         * gst/indexers/gstfileindex.c: (gst_file_index_get_writer_id),
5986         (gst_file_index_load), (_file_index_id_save_entries),
5987         (gst_file_index_commit), (gst_file_index_add_association),
5988         (gst_file_index_add_entry), (gst_file_index_get_assoc_entry),
5989         (gst_file_index_plugin_init):
5990           make debugging use a default category
5991
5992 2004-06-06  David Moore  <dcm@acm.org>
5993
5994         reviewed by Benjamin Otte  <otte@gnome.org>
5995
5996         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
5997         (gst_fdsrc_change_state):
5998           reset offset counter when going READY => PAUSED. (fixes #142903)
5999
6000 2004-06-06  ed@catmur.co.uk
6001
6002         reviewed by Benjamin Otte  <otte@gnome.org>
6003
6004         * gst/registries/gstxmlregistry.c:
6005         (gst_xml_registry_rebuild_recurse):
6006           don't rely on g_dir_open to figure out if a file is a directory, use
6007           explicit G_TEST_IS_DIR. Reiserfs4 allows opening files as
6008           directories. (fixes #142850)
6009
6010 2004-06-06  Benjamin Otte  <otte@gnome.org>
6011
6012         * gst/gstqueue.c: (gst_queue_dispose), (gst_queue_change_state):
6013           fix memory leaks (fixes #142795). Initial patch by Sebastien Cote
6014         * libs/gst/bytestream/adapter.c:
6015         * libs/gst/bytestream/adapter.h:
6016           fix copyright in header and typo in debugging category name
6017
6018 2004-06-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6019
6020         * configure.ac:
6021           bump nano to cvs
6022
6023 === release 0.8.3 ===
6024
6025 2004-06-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6026
6027         * configure.ac:
6028           update libtool versioning
6029           do a new release
6030         * docs/gst/tmpl/gstelement.sgml:
6031         * docs/gst/tmpl/gsttypes.sgml:
6032         * gst/gstinfo.c: (_gst_debug_init):
6033           put back GST_CAT_DATAFLOW to fix API breakage
6034
6035 2004-06-04  David Schleef  <ds@schleef.org>
6036
6037         * autogen.sh: Add a temporary 'env' to test buildbot problems.
6038
6039 2004-06-04  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6040
6041         * configure.ac:
6042           bump nano to cvs
6043
6044 === release 0.8.2 ===
6045
6046 2004-06-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6047
6048         * gst/gst.c: (parse_debug_list), (gst_init_check_with_popt_table):
6049           check GST_DEBUG environment variable which is parsed the same way
6050           as --gst-debug=
6051
6052 2004-05-28  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6053
6054         * gst/elements    : gstaggregator.c gstfakesink.c gstfakesrc.c
6055                             gstmd5sink.c gstshaper.c gsttee.c
6056                             gsttypefindelement.c
6057         * gst/schedulers  : gstbasicscheduler.c gstoptimalscheduler.c
6058
6059           - removing trailing commas at end of enums
6060             it is correct C99 code but C90 compilers would complain
6061             (AIX, Forte, ...)
6062             ('should' fix #143290, at least partially)
6063
6064 2004-05-27  Wim Taymans  <wim@fluendo.com>
6065
6066         * gst/schedulers/gstoptimalscheduler.c: (remove_from_chain),
6067         (chain_group_set_enabled), (create_group), (add_to_group),
6068         (merge_groups), (setup_group_scheduler), (group_elements),
6069         (gst_opt_scheduler_iterate), (gst_opt_scheduler_show):
6070         Don't try to follow the pad connections with other groups
6071         when a loop based element is added to the scheduler because
6072         the bin will inform the scheduler about the pad links a little
6073         later.
6074
6075 2004-05-27  Wim Taymans  <wim@fluendo.com>
6076
6077         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6078         (remove_from_chain), (chain_group_set_enabled),
6079         (setup_group_scheduler), (group_element_set_enabled),
6080         (gst_opt_scheduler_state_transition), (gst_opt_scheduler_iterate),
6081         (gst_opt_scheduler_show):
6082         Elements without a group can do a state change as well, just wait
6083         with the setup of the scheduling function when it is added to a
6084         chain.
6085
6086 2004-05-27  Wim Taymans  <wim@fluendo.com>
6087
6088         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6089         (remove_from_chain), (chain_group_set_enabled), (add_to_group),
6090         (merge_groups), (setup_group_scheduler),
6091         (group_inc_links_for_element), (gst_opt_scheduler_iterate),
6092         (gst_opt_scheduler_show):
6093         Fixes to maintain internal consistency of the scheduler data
6094         structures. 
6095          - adding an enabled group to a chain should increment the
6096            number of enabled elements in that chain.
6097          - removing an enabled group from a chain could disable the
6098            chain.
6099          - removing a disabled group from a chain could enable the
6100            chain.
6101          - add g_assert when internal inconsistency is detected.
6102          - adding an element to a group could increase the number of
6103            links this group has with other groups.
6104          - merging two groups also merges the chains.
6105          - also show group links in the _show method.
6106            
6107
6108 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6109
6110         * gst/gstcaps.c: (gst_caps_structure_simplify):
6111           don't print error messages when there is no error
6112         * gst/gstvalue.c: (gst_value_compare_int_range):
6113           compare the second value, too
6114         * testsuite/caps/Makefile.am:
6115         * testsuite/caps/random.c: (assert_on_error), (main):
6116           add tests to make sure the two things above are checked for
6117
6118 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6119
6120         * configure.ac:
6121         * libs/gst/dataprotocol/Makefile.am:
6122         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps):
6123         * libs/gst/dataprotocol/dataprotocol.h:
6124           wrap header in GST_ENABLE_NEW.  make code use it
6125
6126 2004-05-23  Johan Dahlin  <johan@gnome.org>
6127
6128         * tools/gst-inspect.c (main): Cleanup most parts of it, don't be
6129         so verbose and print GstElement signal names all the time.
6130
6131 2004-05-22  David Schleef  <ds@schleef.org>
6132
6133         * gst/registries/gstxmlregistry.c:
6134         (gst_xml_registry_parse_padtemplate): Fix warning on OS X.
6135         (bug #142957)
6136
6137 2004-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6138
6139         * configure.ac:
6140           scrub cflags for glib2 so gcc doesn't complain when glib is in
6141           /usr/local
6142
6143 2004-05-21  Johan Dahlin  <johan@gnome.org>
6144
6145         * gst/gstcpu.c (gst_cpuid_i386): Protect some gcc asm stuff with
6146         __GNUC__, patch from Brian Cameron, fixes bug #142804
6147
6148 2004-05-20  David Schleef  <ds@schleef.org>
6149
6150         * gst/gstindex.c: (gst_index_compare_func): Fix overflows in
6151         comparison code.  (bug #142819)
6152
6153 2004-05-20  Wim Taymans  <wim@fluendo.com>
6154
6155         * gst/gstbuffer.c: (gst_buffer_default_copy):
6156         * gst/gstbuffer.h:
6157         Added Comment to a flag.
6158         copy relevant flags in _buffer_copy.
6159
6160 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6161
6162         reviewed by: Wim Taymans <wim at fluendo dot com>
6163
6164         * gst/gstbuffer.h:
6165           add GST_BUFFER_IN_CAPS buffer flag
6166         * gst/gststructure.c: (gst_structure_value_get_generic_type),
6167         (gst_structure_parse_any_list), (gst_structure_parse_list),
6168         (gst_structure_parse_fixed_list), (gst_structure_parse_value):
6169         * gst/gstvalue.c: (gst_value_serialize_any_list),
6170         (gst_value_transform_any_list_string),
6171         (gst_value_list_prepend_value), (gst_value_list_append_value),
6172         (gst_value_list_get_size), (gst_value_list_get_value),
6173         (gst_value_transform_list_string),
6174         (gst_value_transform_fixed_list_string),
6175         (gst_value_serialize_list), (gst_value_serialize_fixed_list),
6176         (gst_value_deserialize_fixed_list), (gst_type_is_fixed),
6177         (_gst_value_initialize):
6178         * gst/gstvalue.h:
6179           add a GST_TYPE_FIXED_LIST which is fixed by definition and uses
6180           < , > as a format.
6181         * testsuite/caps/string-conversions.c: (main):
6182           add regression tests for < >
6183
6184 2004-05-20  Johan Dahlin  <johan@gnome.org>
6185
6186         * docs/gst/Makefile.am (all-local): Re-add
6187
6188 2004-05-20  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6189
6190         * docs/gst/Makefile.am:
6191         * docs/gst/gstreamer-docs.sgml:
6192         * docs/libs/Makefile.am:
6193         * docs/libs/gstreamer-libs-docs.sgml:
6194           fix distcheck issues
6195
6196 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6197
6198         * libs/gst/dataprotocol/Makefile.am:
6199           add to autotest
6200
6201 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6202
6203         * libs/gst/dataprotocol/Makefile.am:
6204         * libs/gst/dataprotocol/dataprotocol.c:
6205         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6206         (gst_dp_packet_from_event), (gst_dp_event_from_packet):
6207         * libs/gst/dataprotocol/dp-private.h:
6208           use GST macros to read/write fixed length ints
6209           add some more asserts
6210
6211 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6212
6213         * docs/libs/gstreamer-libs-docs.sgml:
6214         * docs/libs/gstreamer-libs-sections.txt:
6215           remove idct and putbits
6216         * configure.ac:
6217         * docs/libs/tmpl/gstdataprotocol.sgml:
6218         * libs/gst/Makefile.am:
6219         * libs/gst/dataprotocol/Makefile.am:
6220         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test),
6221         (buffer_test), (caps_test), (event_test), (main):
6222         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
6223         (gst_dp_dump_byte_array), (gst_dp_init),
6224         (gst_dp_header_payload_length), (gst_dp_header_payload_type),
6225         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6226         (gst_dp_packet_from_event), (gst_dp_buffer_from_header),
6227         (gst_dp_caps_from_packet), (gst_dp_event_from_packet),
6228         (gst_dp_validate_header), (gst_dp_validate_payload),
6229         (gst_dp_validate_packet), (plugin_init):
6230         * libs/gst/dataprotocol/dataprotocol.h:
6231         * libs/gst/dataprotocol/dp-private.h:
6232           add dataprotocol
6233
6234 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6235
6236         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
6237           fix int variable deserialization and add a helper so we can actually
6238           debug this.
6239
6240 2004-05-18  David Schleef  <ds@schleef.org>
6241
6242         * testsuite/debug/commandline.c: (main): Call ./commandline, not
6243           argv[0].  Calling yourself is probably not the best way to
6244           construct a test like this, btw.
6245
6246 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6247
6248         * gst/gstbin.c: (gst_bin_iterate_func), (gst_bin_iterate):
6249           don't claim to be more intelligent than a scheduler when the
6250           scheduler claims the pipeline is stopped
6251         * gst/schedulers/entryscheduler.c: (safe_cothread_switch),
6252         (safe_cothread_destroy),
6253         (gst_entry_scheduler_remove_all_cothreads),
6254         (gst_entry_scheduler_reset), (_remove_cothread),
6255         (gst_entry_scheduler_state_transition):
6256           hold off cothread destruction if we're not in main cothread
6257         * configure.ac:
6258         * testsuite/Makefile.am:
6259           add new test dir
6260         * testsuite/schedulers/.cvsignore:
6261         * testsuite/schedulers/Makefile.am:
6262           add tests
6263         * testsuite/schedulers/relink.c: (cb_handoff), (main):
6264           check relinking and adding/removing elements from a running pipeline
6265         * testsuite/schedulers/unlink.c: (cb_handoff), (main):
6266           check unlinking in a running pipeline
6267         * testsuite/schedulers/unref.c: (cb_handoff), (main):
6268           check unreffing a running pipeline
6269         * testsuite/schedulers/useless_iteration.c: (main):
6270           check iterating a pipeline that contains running threads works
6271
6272 2004-05-18  David Schleef  <ds@schleef.org>
6273
6274         * docs/gst/Makefile.am: Add all-local target for when HAVE_GTK_DOC
6275           is false.
6276
6277 2004-05-18  Wim Taymans  <wim@fluendo.com>
6278
6279         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6280         (setup_group_scheduler), (gst_opt_scheduler_pad_link):
6281         Fixed an error introduced with patch for 1.63. When setting
6282         a get based element as the entry point in a group, make sure
6283         to mark the group as GET based.
6284
6285 2004-05-18  Wim Taymans  <wim@fluendo.com>
6286
6287         * gst/schedulers/gstoptimalscheduler.c: (create_group),
6288         (setup_group_scheduler), (loop_group_schedule_function),
6289         (gst_opt_scheduler_pad_link):
6290         Added some more debug info and fixed a bug where the group
6291         type was set to LOOP but it was in fact unknown.
6292
6293 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6294
6295         * gst/schedulers/entryscheduler.c: (gst_entry_scheduler_reset):
6296           make resetting scheduler work twice in a row
6297
6298 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6299
6300         * gst/gstvalue.c: (gst_strtoll), (CREATE_SERIALIZATION),
6301         (CREATE_USERIALIZATION), (_gst_value_initialize),
6302         (gst_value_compare_float), (gst_value_serialize_float),
6303         (gst_value_deserialize_float), (gst_value_compare_enum),
6304         (gst_value_serialize_enum), (gst_value_deserialize_enum):
6305           add serialization and comparison functions for long, int64, enum and
6306           float values
6307         * gst/gstvalue.c: (gst_value_serialize), (gst_value_deserialize):
6308           use best serialization function in type hierarchy instead of only a
6309           matching one. This is required for enums to work.
6310         * gst/parse/grammar.y:
6311           use gst_caps_deserialize
6312         * testsuite/parse/Makefile.am:
6313           parse1 now works
6314         * testsuite/parse/parse1.c: (main):
6315           remove aggregator check, aggregator is broken, this test works now
6316           but fails because of bug #138012
6317         * testsuite/parse/parse2.c: (main):
6318           s/xvideosink/xvimagesink - this test looks a lot like we should
6319           disable it
6320
6321 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6322
6323         * gst/gstelement.c: (gst_element_class_init):
6324           whoops, store the signal id correctly
6325         * gst/schedulers/gstbasicscheduler.c:
6326         (gst_basic_scheduler_chain_wrapper):
6327           detect infinfinfinfinfinf^Cinite loops in chain wrapper when the
6328           chain function isn't linked
6329
6330 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
6331         * configure.ac:
6332         Add $GST_PKG_CFLAGS back into GST_INT_CFLAGS so I have large file
6333         support until we decide where the flags should be used
6334         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_query):
6335         Use GST_FORMAT_BYTES when GST_FORMAT_DEFAULT is passed
6336         * gst/gstpad.c: (gst_pad_link_call_link_functions):
6337         Output refused caps in the debug info
6338
6339 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6340
6341         * gst/elements/gstidentity.c: (gst_identity_chain):
6342           add duration debug
6343         * gst/gstinfo.c: (gst_debug_log_default):
6344           add timestamp
6345
6346 2004-05-13  Benjamin Otte  <otte@gnome.org>
6347
6348         * gst/gstpipeline.c: (gst_pipeline_dispose),
6349         (gst_pipeline_change_state):
6350           call gst_scheduler_reset on dispose (fixes #141416)
6351
6352 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6353
6354         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6355           compute mapsize correctly
6356         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6357           use correct datatypes when calling a varargs function
6358         * gst/elements/gsttypefindelement.c: (stop_typefinding):
6359           push a DISCONT event as first thing
6360         * gst/gst_private.h:
6361         * gst/gstinfo.c: (_gst_debug_init):
6362           remove GST_DATAFLOW debugging category
6363         * gst/gstbin.c: (gst_bin_iterate):
6364           use GST_SCHEDULING category
6365         * gst/gstpad.c: (gst_pad_get_type), (_invent_event),
6366         (gst_pad_push), (gst_pad_pull), (gst_pad_call_chain_function),
6367         (gst_pad_call_get_function):
6368           add GST_DATAFLOW to easily track flow of buffers or events.
6369         * gst/gstqueue.c: (gst_queue_get_type),
6370         (gst_queue_handle_pending_events), (gst_queue_chain),
6371         (gst_queue_get), (gst_queue_handle_src_event):
6372           use own static debugging category GST_DATAFLOW for dataflow,
6373           use DEBUG category for showing which path events go, use LOG
6374           category for buffers.
6375
6376 2004-05-10  David Schleef  <ds@schleef.org>
6377
6378         * docs/gst/gstreamer-sections.txt: Add gst_element_no_more_pads.
6379
6380 2004-05-10  David Schleef  <ds@schleef.org>
6381
6382         * docs/gst/Makefile.am: Dear gtk-doc, please print out the unused
6383         symbols, because otherwise we don't know what they are.  Thanks,
6384         the GStreamer team.
6385         * gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
6386
6387 2004-05-10  David Schleef  <ds@schleef.org>
6388
6389         (from Steve Lhomme)
6390         * win32/Makefile: When using make clean the MS Visual Studio makefiles
6391         are deleted.  Fix.
6392         * win32/Makefile.inspect:
6393         * win32/Makefile.launch:
6394         * win32/Makefile.register:
6395
6396 2004-05-10  David Schleef  <ds@schleef.org>
6397
6398         * gst/gstinfo.h: Add missing inline function.
6399         * gst/gsttrace.c: add include
6400         * gst/parse/grammar.y: remove unused code
6401         * gst/registries/gstxmlregistry.c: (make_dir): make mkdir call
6402         more portable.
6403         * tools/gst-register.c: wrap unistd.h
6404         
6405         More additions/fixes from Steve for the MSVC build.
6406         * win32/GStreamer.vcproj:
6407         * win32/Makefile:
6408         * win32/Makefile.inspect:
6409         * win32/Makefile.launch:
6410         * win32/Makefile.register:
6411         * win32/README.txt:
6412         * win32/gst-inspect.vcproj:
6413         * win32/gst-launch.vcproj:
6414         * win32/gst-register.vcproj:
6415         * win32/gstbytestream.def:
6416         * win32/gstbytestream.vcproj:
6417         * win32/gstconfig.h:
6418         * win32/gstelements.def:
6419         * win32/gstelements.vcproj:
6420         * win32/gstenumtypes.c:
6421         * win32/gstenumtypes.h:
6422         * win32/gstoptimalscheduler.def:
6423         * win32/gstoptimalscheduler.vcproj:
6424         * win32/gstreamer.def:
6425         * win32/gstspider.def:
6426         * win32/gstspider.vcproj:
6427         * win32/gstversion.h:
6428         * win32/msvc71.sln:
6429
6430 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6431
6432         * gst/gstelement.c: (gst_element_class_init),
6433         (gst_element_no_more_pads):
6434         * gst/gstelement.h:
6435           add gst_element_no_more_pads and the "no-more-pads" signal
6436
6437 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6438
6439         * gst/gstregistry.c: (gst_registry_add_plugin):
6440           refuse to add plugins when a plugin with same name is already
6441           registered. Fixes a bunch of "How to remove plugins?" issues.
6442           May lead to other problems though, let's test
6443
6444 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6445
6446         * testsuite/caps/caps_strings : audio/ac3 => audio/x-ac3
6447         * docs/manual/pads-api.xml : audio/wav => audio/x-wav
6448         * docs/random/uraeus/gstreamer_and_midi.txt : audio/wav => audio/x-wav
6449
6450 2004-05-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6451
6452         * tests/Makefile.am: fix am16 issue
6453
6454 2004-05-09  Benjamin Otte  <otte@gnome.org>
6455
6456         * libs/gst/bytestream/Makefile.am:
6457           we should indeed add .c files to makefiles or they won't be built
6458           (d'oh)
6459
6460 2004-05-08  Benjamin Otte  <otte@gnome.org>
6461
6462         * gst/gstpad.c: (gst_pad_proxy_fixate):
6463           really reduce the set of caps
6464
6465 2004-05-08  Benjamin Otte  <otte@gnome.org>
6466
6467         * tests/Makefile.am:
6468         * tests/spidey_bench.c: (handoff), (main):
6469           add benchmark to test how long spider needs to create a pipeline
6470
6471 2004-05-08  Benjamin Otte  <otte@gnome.org>
6472
6473         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_unnegotiate):
6474           mark links as unengaged when unnegotiating instead of deactivating.
6475           This way pads aren't marked as unengaged when going PLAYING=>PAUSED
6476
6477 2004-05-08  Benjamin Otte  <otte@gnome.org>
6478
6479         * docs/manual/helloworld.xml:
6480           s/audiosink/osssink (patch by Patrick Guimond)
6481
6482 2004-05-07  David Schleef  <ds@schleef.org>
6483
6484         * configure.ac: Make sure GST_INT_CFLAGS is not clobbered,
6485         since it contains important stuff.
6486
6487 2004-05-07  David Schleef  <ds@schleef.org>
6488
6489         * testsuite/caps/caps.c: (test3), (main): A check for appending
6490         ANY caps.
6491
6492 2004-05-07  David Schleef  <ds@schleef.org>
6493
6494         * common/m4/as-compiler-flag.m4: Properly quote arguments,
6495         which may contain commas.  Fixes detection of -Wa,-mregnames
6496
6497 2004-05-06  David Schleef  <ds@schleef.org>
6498
6499         Changes to handle compilers that don't have variadic macro
6500         support.  In particular, glib headers define some inlines
6501         that need G_LOG_DOMAIN defined.  Additional fixes for MSVC
6502         builds.
6503         * gst/Makefile.am:
6504         * gst/cothreads.c:
6505         * gst/elements/gstfdsink.c:
6506         * gst/elements/gstfdsrc.c:
6507         * gst/elements/gstfilesink.c:
6508         * gst/elements/gstfilesrc.c:
6509         * gst/gst_private.h:
6510         * gst/gstatomic.c:
6511         * gst/gstcaps.c: (gst_caps_append):
6512         * gst/gstcpu.c: (gst_cpuid_i386):
6513         * gst/gstelement.c:
6514         * gst/gsterror.c:
6515         * gst/gstfilter.c:
6516         * gst/gstinfo.h:
6517         * gst/gstprobe.c:
6518         * gst/gstquery.c:
6519         * gst/gstregistry.c:
6520         * gst/gststructure.c:
6521         * gst/gsttaginterface.c:
6522         * gst/gsttrace.c: (gst_trace_new):
6523         * gst/gsttrashstack.c:
6524         * gst/gsturi.c:
6525         * gst/gstvalue.c:
6526         * gst/parse/grammar.y:
6527         * gst/parse/parse.l:
6528         * tools/gst-inspect.c: (main):
6529         * tools/gst-launch.c: (main):
6530         * tools/gst-xmlinspect.c: (PUT_STRING):
6531
6532 2004-05-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6533
6534         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
6535         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
6536         * gst/elements/gstfilesrc.h:
6537           send NEW_MEDIA events correctly
6538         * gst/elements/gsttypefindelement.c: (start_typefinding),
6539         (gst_type_find_element_handle_event):
6540           restart typefinding when we get a NEW_MEDIA event
6541         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_change_state),
6542         (gst_bin_dispose):
6543           don't die when someone removes elements in callbacks
6544         * gst/gstelement.c: (gst_element_change_state):
6545           improve debugging
6546         * gst/gstpad.c: (gst_pad_pull), (gst_pad_call_chain_function):
6547           we need a NEW_MEDIA event to engage a link
6548         * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
6549           don't g_print debugging stuff
6550         * testsuite/caps/simplify.c: (check_caps):
6551
6552 2004-05-04  Benjamin Otte  <otte@gnome.org>
6553
6554         * gst/parse/grammar.y:
6555           use GST_ERROR instead of g_warning, and always throw a GST_ERROR 
6556
6557 2004-05-04  Benjamin Otte  <otte@gnome.org>
6558
6559         * testsuite/caps/renegotiate.c: (main):
6560           improve output in error case
6561
6562 2004-05-04  Benjamin Otte  <otte@gnome.org>
6563
6564         * gst/parse/grammar.y:
6565           fix assert to not trigger when there's no error argument
6566         * gst/parse/parse.l:
6567           fix definition of caps to allow more than two structures
6568         * testsuite/caps/Makefile.am:
6569         * testsuite/caps/renegotiate.c: (main):
6570           it's sinesrc and works in that case
6571
6572 2004-05-04  Wim Taymans  <wim@fluendo.com>
6573
6574         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6575         (group_dec_link), (gst_opt_scheduler_pad_unlink):
6576         when removing an element from a group, we always need to
6577         decrement the link count that this group had with other 
6578         groups through the element.
6579         added an extra assert to catch inconsistencies when decrementing
6580         the link count.
6581
6582 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6583
6584         * configure.ac:
6585         * docs/gst/Makefile.am:
6586         * docs/gst/gstreamer-sections.txt:
6587         * docs/gst/tmpl/gstcompat.sgml:
6588         * examples/appreader/Makefile.am:
6589         * examples/cutter/Makefile.am:
6590         * examples/events/Makefile.am:
6591         * examples/helloworld/Makefile.am:
6592         * examples/helloworld2/Makefile.am:
6593         * examples/launch/Makefile.am:
6594         * examples/manual/Makefile.am:
6595         * examples/mixer/Makefile.am:
6596         * examples/pingpong/Makefile.am:
6597         * examples/plugins/Makefile.am:
6598         * examples/queue/Makefile.am:
6599         * examples/queue2/Makefile.am:
6600         * examples/queue3/Makefile.am:
6601         * examples/queue4/Makefile.am:
6602         * examples/retag/Makefile.am:
6603         * examples/thread/Makefile.am:
6604         * examples/typefind/Makefile.am:
6605         * examples/xml/Makefile.am:
6606         * gst/Makefile.am:
6607         * gst/autoplug/Makefile.am:
6608         * gst/elements/Makefile.am:
6609         * gst/gstcompat.h:
6610         * gst/indexers/Makefile.am:
6611         * gst/parse/Makefile.am:
6612         * gst/registries/Makefile.am:
6613         * gst/schedulers/Makefile.am:
6614         * libs/gst/bytestream/Makefile.am:
6615         * libs/gst/control/Makefile.am:
6616         * libs/gst/getbits/Makefile.am:
6617         * po/af.po:
6618         * po/az.po:
6619         * po/en_GB.po:
6620         * po/fr.po:
6621         * po/nl.po:
6622         * po/sr.po:
6623         * po/sv.po:
6624         * po/tr.po:
6625         * po/uk.po:
6626         * tests/Makefile.am:
6627         * tests/bufspeed/Makefile.am:
6628         * tests/instantiate/Makefile.am:
6629         * tests/memchunk/Makefile.am:
6630         * tests/muxing/Makefile.am:
6631         * tests/negotiation/Makefile.am:
6632         * tests/probes/Makefile.am:
6633         * tests/sched/Makefile.am:
6634         * tests/seeking/Makefile.am:
6635         * tests/threadstate/Makefile.am:
6636         * testsuite/caps/Makefile.am:
6637         * testsuite/cleanup/Makefile.am:
6638         * testsuite/dlopen/Makefile.am:
6639         * testsuite/dynparams/Makefile.am:
6640         * testsuite/plugin/Makefile.am:
6641         * testsuite/states/Makefile.am:
6642         * tools/Makefile.am:
6643           reorganize compile/link flags to be consistent
6644           put gst_info in gstcompat.h and actually use GST_DISABLE_DEPRECATED
6645
6646 2004-05-04  David Schleef  <ds@schleef.org>
6647
6648         The "once more, with feeling" check-in.
6649         * testsuite/caps/Makefile.am: dist caps_strings
6650         * testsuite/caps/renegotiate.c: (main): This test triggers a
6651           segfault in the core.  Marking as failing.
6652
6653 2004-05-03  David Schleef  <ds@schleef.org>
6654
6655         * testsuite/caps/deserialize.c: (main): Fix problems noticed
6656           by the build bots.
6657         * testsuite/caps/renegotiate.c: (main): Same.
6658
6659 2004-05-03  David Schleef  <ds@schleef.org>
6660
6661         * testsuite/caps/renegotiate.c: (my_fixate), (main): Another test.
6662
6663 2004-05-03  David Schleef  <ds@schleef.org>
6664
6665         * testsuite/caps/deserialize.c: (main): Use the srcdir environment
6666           variable to find our source file.
6667
6668 2004-05-03  David Schleef  <ds@schleef.org>
6669
6670         * configure.ac:  Link plugins with libgstreamer and dependent
6671           libraries
6672         * testsuite/caps/Makefile.am:
6673         * testsuite/caps/caps_strings:
6674         * testsuite/caps/deserialize.c: (main): Add a little test to slog
6675           through a file of caps strings and test each one
6676
6677 2004-05-04  Benjamin Otte  <otte@gnome.org>
6678
6679         * libs/gst/bytestream/Makefile.am:
6680         * libs/gst/bytestream/adapter.c: 
6681         * libs/gst/bytestream/adapter.h:
6682           add GstAdapter, similar to bytestream, but doesn't require ugly event
6683           handling or uglier loopbased elements
6684
6685 2004-05-03  David Schleef  <ds@schleef.org>
6686
6687         * testsuite/caps/Makefile.am: Fix spelling of Ηρατοσθενες
6688         * testsuite/caps/erathostenes.c:
6689         * testsuite/caps/eratosthenes.c: (eratosthenes), (main):
6690
6691 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6692
6693         * docs/pwg/pwg.xml:
6694           remove hardcoded stylesheet path (duh)
6695         * docs/random/release:
6696         * docs/gst/gstreamer-sections.txt:
6697         * gst/Makefile.am:
6698         * gst/gst.h:
6699         * gst/gst_private.h:
6700         * gst/gstcaps.c:
6701         * gst/gstevent.c:
6702         * gst/gstformat.c:
6703         * gst/gstinfo.c:
6704         * gst/gstinfo.h:
6705         * gst/gstinterface.c:
6706         * gst/gstmemchunk.c:
6707         * gst/gstprobe.c:
6708         * gst/gstquery.c:
6709         * gst/gstregistry.c:
6710         * gst/gstregistrypool.c:
6711         * gst/gststructure.c:
6712         * gst/gsttaginterface.c:
6713         * gst/gstthread.c:
6714         * gst/gsttrace.c:
6715         * gst/gsttypefind.c: (gst_type_find_factory_get_type):
6716         * gst/gsturi.c:
6717         * gst/gstvalue.c:
6718           deprecate gst_info; remove gstlog.h
6719    
6720
6721 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6722
6723         * Makefile.am:
6724         * po/en_GB.po:
6725         * po/sv.po:
6726         * po/uk.po:
6727           updated translations
6728
6729 2004-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6730
6731         * gst/gstbin.c: (gst_bin_dispose):
6732           better debugging
6733
6734 2004-05-03  Johan Dahlin  <johan@gnome.org>
6735
6736         * gst/schedulers/gstoptimalscheduler.c
6737         (gst_opt_scheduler_pad_unlink): Check if element is non-NULL and
6738         really is a GstElement. Avoids critical when running gst-launch -v
6739         and a oggdemux/decoding pipeline.
6740
6741 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6742
6743         * docs/gst/tmpl/gstpipeline.sgml :
6744         * docs/manual/elements-api.xml :
6745                 doc fix by Patrick Guimond (Protector) from devel ML
6746                 reviewed by ronald
6747
6748 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6749
6750         * docs/gst/Makefile.am :
6751         * docs/libs/Makefile.am :
6752                 apply a patch from Arwed v. Merkatz so that gtk-doc
6753                 generated docs install (same for .devhelp file)
6754                 (fixes part 1 of #138836)
6755
6756 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6757
6758         * docs/faq/dependencies.xml: typo
6759         * docs/faq/getting.xml :
6760             - fix download URL for new gstreamer site
6761             - hide sf.net download page as latest version aren't there
6762             - fix apt URLs
6763             - fill "get via CVS" paragraph (link to dev page on the site)
6764         * docs/faq/general.xml:
6765             hide status tables as they no more exists
6766             change case on plugins license file to reflect reality
6767         * docs/faq/troubleshooting.xml:
6768             remove the wiki question/answer as there is no more wiki
6769
6770 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
6771
6772         * gst/gsterror.h:
6773           include the headers needed for declarations used in this header
6774
6775 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6776
6777         * docs/random/uraeus/gstreamer_and_midi.txt :
6778           add .kar (midi + karaoke/lyrics 'track') doc to midi doc.
6779           (fixes #132288)
6780
6781 2004-04-30  Sebastien Cote  <sc5@hermes.usherb.ca>
6782
6783         reviewed by Benjamin Otte  <otte@gnome.org>
6784
6785         * gst/schedulers/gthread-cothreads.h:
6786           free allocated data for main cothread, too when destroying context
6787           (fixes #141417)
6788
6789 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6790
6791         * docs/manual/goals.xml : remove duplicated paragraph at end 
6792         of doc page (fixes #141448)
6793
6794 2004-04-29  David Schleef  <ds@schleef.org>
6795
6796         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
6797         Patch from Sebastien Cote to fix leakage of events. (bug #141414)
6798
6799 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6800
6801         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
6802           fix property
6803         * gst/gstcaps.c:
6804           fix doc string
6805         * po/POTFILES.in:
6806           rename typefind source file
6807
6808 2004-04-28  David Schleef  <ds@schleef.org>
6809
6810         Several new files from Steve Lhomme's MSVC patch (bug #141317):
6811         * win32/GStreamer.vcproj:
6812         * win32/Makefile:
6813         * win32/config.h:
6814         * win32/dirent.c: (_topendir), (_treaddir), (_tclosedir),
6815         (_trewinddir), (_ttelldir), (_tseekdir):
6816         * win32/dirent.h:
6817         * win32/gst-inspect.vcproj:
6818         * win32/gst-launch.vcproj:
6819         * win32/gst-register.vcproj:
6820         * win32/gstbytestream.vcproj:
6821         * win32/gstelements.vcproj:
6822         * win32/gstoptimalscheduler.vcproj:
6823         * win32/gstspider.vcproj:
6824         * win32/gtchar.h:
6825         * win32/mman.c: (mmap), (mprotect), (msync), (munmap):
6826         * win32/mman.h:
6827         * win32/mman.inl:
6828         * win32/msvc71.sln:
6829
6830 2004-04-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6831
6832         * gst/gst.c: (init_post):
6833         * gst/gstinfo.c:
6834           remove useless _gst_progname stuff
6835         * tools/gst-inspect.c: (print_field), (print_caps):
6836           improve caps output
6837
6838 2004-04-28  David Schleef  <ds@schleef.org>
6839
6840         Disable parsing of a lot of files that aren't part of the
6841         exported API.  Move corresponding template files to old/,
6842         waiting for removal when they don't contain anything
6843         interesting.
6844         * docs/gst/Makefile.am:
6845         * docs/gst/gstreamer-sections.txt:
6846         * docs/gst/tmpl/cothreads.sgml:
6847         * docs/gst/tmpl/cothreads_compat.sgml:
6848         * docs/gst/tmpl/gettext.sgml:
6849         * docs/gst/tmpl/gobject2gtk.sgml:
6850         * docs/gst/tmpl/grammar.tab.sgml:
6851         * docs/gst/tmpl/gst-i18n-app.sgml:
6852         * docs/gst/tmpl/gst-i18n-lib.sgml:
6853         * docs/gst/tmpl/gst_private.sgml:
6854         * docs/gst/tmpl/gstaggregator.sgml:
6855         * docs/gst/tmpl/gstarch.sgml:
6856         * docs/gst/tmpl/gstatomic_impl.sgml:
6857         * docs/gst/tmpl/gstbufferstore.sgml:
6858         * docs/gst/tmpl/gstdata_private.sgml:
6859         * docs/gst/tmpl/gstdisksink.sgml:
6860         * docs/gst/tmpl/gstdisksrc.sgml:
6861         * docs/gst/tmpl/gstelementfactory.sgml:
6862         * docs/gst/tmpl/gstextratypes.sgml:
6863         * docs/gst/tmpl/gstfakesink.sgml:
6864         * docs/gst/tmpl/gstfakesrc.sgml:
6865         * docs/gst/tmpl/gstfdsink.sgml:
6866         * docs/gst/tmpl/gstfdsrc.sgml:
6867         * docs/gst/tmpl/gstfilesink.sgml:
6868         * docs/gst/tmpl/gstfilesrc.sgml:
6869         * docs/gst/tmpl/gsthttpsrc.sgml:
6870         * docs/gst/tmpl/gstidentity.sgml:
6871         * docs/gst/tmpl/gstindexfactory.sgml:
6872         * docs/gst/tmpl/gstmarshal.sgml:
6873         * docs/gst/tmpl/gstmd5sink.sgml:
6874         * docs/gst/tmpl/gstmultidisksrc.sgml:
6875         * docs/gst/tmpl/gstmultifilesrc.sgml:
6876         * docs/gst/tmpl/gstpadtemplate.sgml:
6877         * docs/gst/tmpl/gstpipefilter.sgml:
6878         * docs/gst/tmpl/gstschedulerfactory.sgml:
6879         * docs/gst/tmpl/gstsearchfuncs.sgml:
6880         * docs/gst/tmpl/gstshaper.sgml:
6881         * docs/gst/tmpl/gstspider.sgml:
6882         * docs/gst/tmpl/gstspideridentity.sgml:
6883         * docs/gst/tmpl/gststatistics.sgml:
6884         * docs/gst/tmpl/gsttee.sgml:
6885         * docs/gst/tmpl/gsttimecache.sgml:
6886         * docs/gst/tmpl/gsttypefind.sgml:
6887         * docs/gst/tmpl/gsttypefindfactory.sgml:
6888         * docs/gst/tmpl/gstxmlregistry.sgml:
6889         * docs/gst/tmpl/gthread-cothreads.sgml:
6890         * docs/gst/tmpl/old/cothreads.sgml:
6891         * docs/gst/tmpl/old/cothreads_compat.sgml:
6892         * docs/gst/tmpl/old/gettext.sgml:
6893         * docs/gst/tmpl/old/gobject2gtk.sgml:
6894         * docs/gst/tmpl/old/grammar.tab.sgml:
6895         * docs/gst/tmpl/old/gst-i18n-app.sgml:
6896         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
6897         * docs/gst/tmpl/old/gst_private.sgml:
6898         * docs/gst/tmpl/old/gstaggregator.sgml:
6899         * docs/gst/tmpl/old/gstarch.sgml:
6900         * docs/gst/tmpl/old/gstatomic_impl.sgml:
6901         * docs/gst/tmpl/old/gstbufferstore.sgml:
6902         * docs/gst/tmpl/old/gstdata_private.sgml:
6903         * docs/gst/tmpl/old/gstdisksink.sgml:
6904         * docs/gst/tmpl/old/gstdisksrc.sgml:
6905         * docs/gst/tmpl/old/gstelementfactory.sgml:
6906         * docs/gst/tmpl/old/gstextratypes.sgml:
6907         * docs/gst/tmpl/old/gstfakesink.sgml:
6908         * docs/gst/tmpl/old/gstfakesrc.sgml:
6909         * docs/gst/tmpl/old/gstfdsink.sgml:
6910         * docs/gst/tmpl/old/gstfdsrc.sgml:
6911         * docs/gst/tmpl/old/gstfilesink.sgml:
6912         * docs/gst/tmpl/old/gstfilesrc.sgml:
6913         * docs/gst/tmpl/old/gsthttpsrc.sgml:
6914         * docs/gst/tmpl/old/gstidentity.sgml:
6915         * docs/gst/tmpl/old/gstindexfactory.sgml:
6916         * docs/gst/tmpl/old/gstmarshal.sgml:
6917         * docs/gst/tmpl/old/gstmd5sink.sgml:
6918         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
6919         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
6920         * docs/gst/tmpl/old/gstpadtemplate.sgml:
6921         * docs/gst/tmpl/old/gstpipefilter.sgml:
6922         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
6923         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
6924         * docs/gst/tmpl/old/gstshaper.sgml:
6925         * docs/gst/tmpl/old/gstspider.sgml:
6926         * docs/gst/tmpl/old/gstspideridentity.sgml:
6927         * docs/gst/tmpl/old/gststatistics.sgml:
6928         * docs/gst/tmpl/old/gsttee.sgml:
6929         * docs/gst/tmpl/old/gsttimecache.sgml:
6930         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
6931         * docs/gst/tmpl/old/gstxmlregistry.sgml:
6932         * docs/gst/tmpl/old/gthread-cothreads.sgml:
6933         * docs/gst/tmpl/old/types.sgml:
6934         * docs/gst/tmpl/types.sgml:
6935
6936         Rename gsttypefind.[ch] back to gsttypefindelement.[ch], since
6937         gtkdoc-scan doesn't like files with the same name in different
6938         directories.
6939         * gst/elements/Makefile.am:
6940         * gst/elements/gstelements.c:
6941         * gst/elements/gsttypefind.c: 
6942         * gst/elements/gsttypefind.h:
6943         * gst/elements/gsttypefindelement.c:
6944         * gst/elements/gsttypefindelement.h:
6945
6946 2004-04-28  David Schleef  <ds@schleef.org>
6947
6948         A bunch of portability fixes, derived from Steve Lhomme's MSVC
6949         patch (bug #141317):
6950         * gst/gst-i18n-lib.h: Allow disabling gettext.
6951         * gst/gstatomic_impl.h: disable warning when it's dumb.
6952         * gst/gstclock.c: fix include
6953         * gst/gstcompat.h: fix variadic macro
6954         * gst/gstinfo.c: fix include
6955         * gst/gstmacros.h: add defines for inlines on MSVC
6956         * gst/gstplugin.c: fix includes
6957         * gst/gstregistry.c: fix includes
6958         * gst/gstregistry.h: use S_IREAD, etc., if S_IRUSR isn't defined
6959         * gst/gstsystemclock.c: fix include
6960         * gst/gsttrace.c: (gst_trace_new), (gst_trace_text_flush): use
6961         S_IREAD if S_IRUSR isn't defined.  fix use of non-portable functions
6962         * gst/registries/gstxmlregistry.c:
6963         (gst_xml_registry_parse_element_factory): fix use of non-portable
6964         functions
6965         * libs/gst/control/dparam.h: Remove trailing comma in enum definition
6966         * libs/gst/control/dparammanager.h: same
6967
6968 2004-04-28  David Schleef  <ds@schleef.org>
6969
6970         Move a bunch of unused files to old/ with names that are
6971         not case-insensitive-unique.  These files still contain some
6972         useful information that needs to be merged into gstbin.sgml,
6973         etc., so they shouldn't be deleted yet.
6974         * docs/gst/tmpl/GstBin.sgml:
6975         * docs/gst/tmpl/GstBuffer.sgml:
6976         * docs/gst/tmpl/GstCaps.sgml:
6977         * docs/gst/tmpl/GstClock.sgml:
6978         * docs/gst/tmpl/GstCompat.sgml:
6979         * docs/gst/tmpl/GstData.sgml:
6980         * docs/gst/tmpl/GstElement.sgml:
6981         * docs/gst/tmpl/GstEvent.sgml:
6982         * docs/gst/tmpl/GstIndex.sgml:
6983         * docs/gst/tmpl/GstStructure.sgml:
6984         * docs/gst/tmpl/GstTag.sgml:
6985         * docs/gst/tmpl/old/GstBin.sgml:
6986         * docs/gst/tmpl/old/GstBuffer.sgml:
6987         * docs/gst/tmpl/old/GstCaps.sgml:
6988         * docs/gst/tmpl/old/GstClock.sgml:
6989         * docs/gst/tmpl/old/GstCompat.sgml:
6990         * docs/gst/tmpl/old/GstData.sgml:
6991         * docs/gst/tmpl/old/GstElement.sgml:
6992         * docs/gst/tmpl/old/GstEvent.sgml:
6993         * docs/gst/tmpl/old/GstIndex.sgml:
6994         * docs/gst/tmpl/old/GstStructure.sgml:
6995         * docs/gst/tmpl/old/GstTag.sgml:
6996
6997 2004-04-28  David Schleef  <ds@schleef.org>
6998
6999         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
7000         (gst_caps_append), (gst_caps_append_structure),
7001         (gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
7002         (gst_caps_set_simple), (gst_caps_set_simple_valist),
7003         (gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
7004         (gst_caps_is_fixed), (gst_caps_is_always_compatible),
7005         (gst_caps_intersect), (gst_caps_normalize),
7006         (gst_caps_transform_to_string):  Patch from Tim-Philipp Müller
7007         to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
7008         * gst/gstcaps.h: use GST_IS_CAPS().
7009
7010 2004-04-26  David Schleef  <ds@schleef.org>
7011
7012         * gst/gstcpu.c: (gst_cpuid_i386): Don't clobber ebx in inline
7013         assembly.  gcc doesn't handle it correctly. (bug #141083)
7014         * gst/gsttrashstack.h: same
7015
7016 2004-04-25  Benjamin Otte  <otte@gnome.org>
7017
7018         * gst/gstelement.c: (gst_element_change_state):
7019           fix assertion to do an int comparison
7020
7021 2004-04-25  Benjamin Otte  <otte@gnome.org>
7022
7023         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
7024           better debugging output on error
7025
7026 2004-04-25  Benjamin Otte  <otte@gnome.org>
7027
7028         * gst/gstcaps.c: (gst_caps_subtract):
7029           fix memleak
7030
7031 2004-04-23  Benjamin Otte  <otte@gnome.org>
7032
7033         * gst/gstvalue.c: (gst_value_compare_buffer),
7034         (_gst_value_initialize):
7035           add comparison function for buffers
7036
7037 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7038
7039         * docs/pwg/pwg.xml:
7040           Just found out that this so-called "ima-wav" format is really
7041           just "dvi adpcm" (according to the MS WAV documentation). So
7042           renaming it. We didn't use it yet anyway.
7043
7044 2004-04-23  Benjamin Otte  <otte@gnome.org>
7045
7046         * gst/gstcaps.c: (gst_caps_is_always_compatible):
7047           call gst_caps_is_subset
7048
7049 2004-04-23  Benjamin Otte  <otte@gnome.org>
7050
7051         * gst/gstcaps.c: (gst_caps_subtract), (gst_caps_is_equal), 
7052         (gst_caps_is_subset):
7053           add documentation
7054
7055 2004-04-23  Benjamin Otte  <otte@gnome.org>
7056           
7057         * gst/gstcaps.c: (gst_caps_structure_subtract_field),
7058         (gst_caps_structure_subtract), (gst_caps_subtract),
7059         (gst_caps_structure_figure_out_union),
7060         (gst_caps_structure_simplify), (gst_caps_do_simplify):
7061           fix simplifying and subtracting not working correctly with optional
7062           properties
7063           solve assorted problems that make it now simplify ebven more
7064         * docs/gst/tmpl/gstcaps.sgml:
7065         * gst/gstcaps.h:
7066           make gst_caps_do_simplify return a bool to indicate if it simplified
7067         * testsuite/caps/simplify.c: (main):
7068           add more checks. The tests is quite a bit useless right now because
7069           the core is heavily simplifying itself.
7070         * testsuite/caps/caps.h:
7071           fix caps to contain all optional properties
7072
7073 2004-04-22  Benjamin Otte  <otte@gnome.org>
7074
7075         * docs/gst/tmpl/gstcaps.sgml:
7076         * docs/gst/tmpl/gstfilesrc.sgml:
7077         * docs/gst/tmpl/gststructure.sgml:
7078         * docs/gst/tmpl/gstvalue.sgml:
7079           update for recent API changes
7080         * gst/gstcaps.c: (gst_caps_do_simplify):
7081           fix to stop trying with a freed structure
7082         * gst/gstpad.c: (gst_pad_link_fixate):
7083           simplify caps
7084         * gst/gstpad.c: (gst_pad_template_get_caps_by_name):
7085           remove C++ comment
7086         * gst/gstpad.h:
7087           deprecate gst_pad_template_get_caps_by_name, it doesn't work anyway
7088         * gst/gststructure.c: (gst_structure_value_get_generic_type),
7089         (gst_structure_to_string):
7090           keep the correct type when using lists of ranges
7091         * gst/gstvalue.c: (gst_value_list_prepend_value),
7092         (gst_value_list_append_value):
7093           copy the value before adding to the list (d'oh)
7094         * gst/gstvalue.c: (gst_value_subtract_int_range_int),
7095         (gst_value_subtract_int_range_int_range):
7096           handle overflows correctly
7097         * gst/gstvalue.c: (gst_value_subtract_from_list):
7098           fix memleak
7099         * testsuite/caps/caps.h:
7100           add a caps that caused segfaults
7101
7102 2004-04-22  Benjamin Otte  <otte@gnome.org>
7103
7104         * testsuite/refcounting/pad.c: (main):
7105           fix test
7106
7107 2004-04-22  Benjamin Otte  <otte@gnome.org>
7108
7109         * gst/gstcaps.c: (gst_caps_subtract):
7110           allow subtracting ANY and EMPTY from ANY caps
7111
7112 2004-04-22  Benjamin Otte  <otte@gnome.org>
7113
7114         * gst/gstcaps.c: (gst_caps_append), (gst_caps_intersect),
7115         (gst_caps_union):
7116           only simplify in functions that create new caps. Simplifying in
7117           gst_caps_append breaks tests.
7118
7119 2004-04-22  Benjamin Otte  <otte@gnome.org>
7120
7121         * gst/gstcaps.c: (gst_caps_structure_simplify):
7122           unset GValue after use
7123         * gst/gstcaps.c: (gst_caps_append), 
7124         * gst/gstpad.c: (gst_pad_link_fixate), (gst_pad_template_new):
7125           use gst_caps_simplify (reduces registry size by 30%)
7126         * gst/gstpad.c: (gst_pad_template_new):
7127           don't allow NULL caps
7128
7129 2004-04-22  Benjamin Otte  <otte@gnome.org>
7130
7131         * docs/gst/gstreamer-sections.txt:
7132           add gst_caps_do_simplify
7133         * gst/gstcaps.c:
7134           add documentation for gst_caps_do_simplify
7135         * gst/gstvalue.h:
7136           fix typo in gst_value_register_subtract_func declaration for gst-doc
7137
7138 2004-04-22  Benjamin Otte  <otte@gnome.org>
7139
7140         * gst/gstcaps.c: (gst_caps_from_string_inplace):
7141           fix bug when converting from empty string.
7142         * gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
7143         (gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
7144           use gst_caps_new_empty to allocate a new caps. Only that function
7145           allocates memory for caps now.
7146         * gst/gstcaps.c: (gst_caps_remove_and_get_structure),
7147         (gst_caps_remove_structure):
7148           add ability to remove one structure (but not to header yet)
7149         * gst/gstcaps.c: (gst_caps_compare_structures),
7150         (gst_caps_simplify), (gst_caps_structure_figure_out_union),
7151         (gst_caps_structure_simplify), (gst_caps_do_simplify),
7152         * gst/gstcaps.h:
7153           add gst_caps_do_simplify that tries to simplify a caps in place.
7154           Deprecate old gst_caps_simplify function.
7155         * testsuite/caps/caps.h:
7156           add caps.h containing a common set of caps to test against.
7157         * testsuite/caps/sets.c: (check_caps), (main):
7158           use it.
7159         * testsuite/caps/.cvsignore:
7160         * testsuite/caps/Makefile.am:
7161         * testsuite/caps/simplify.c: (check_caps), (main):
7162           add test to check correctness and efficency of caps simplification.
7163
7164 2004-04-22  Sebastien Cote <sc5@hermes.usherb.ca>
7165
7166         reviewed by Benjamin Otte  <otte@gnome.org>
7167
7168         * gst/gstparse.c: (_gst_parse_escape):
7169           Free the GString used in _gst_parse_escape()
7170
7171 2004-04-21  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7172
7173         * gst/gstpad.c: (gst_pad_link_negotiate):
7174           refuse to link if the link is not possible
7175         * configure.ac:
7176         * testsuite/Makefile.am:
7177         * testsuite/negotiation/.cvsignore:
7178         * testsuite/negotiation/Makefile.am:
7179         * testsuite/negotiation/pad_link.c: (main):
7180           add test that checks the above behaviour
7181
7182 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7183
7184         * docs/gst/gstreamer-sections.txt:
7185           add newly added API
7186
7187 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7188
7189         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
7190         (gst_filesrc_get_mmap), (gst_filesrc_get_read), (gst_filesrc_get),
7191         (gst_filesrc_open_file), (gst_filesrc_close_file),
7192         (gst_filesrc_srcpad_query), (gst_filesrc_srcpad_event):
7193         * gst/elements/gstfilesrc.h:
7194           add support for non-regular files (#140734)
7195
7196 2004-04-21  Benjamin Otte  <otte@gnome.org>
7197
7198         * gst/gstpad.c: (gst_pad_link_fixate):
7199           add sophisticated error checking code to see if fixation functions
7200           did their fixation right
7201
7202 2004-04-21  Benjamin Otte  <otte@gnome.org>
7203
7204         * gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
7205           check for ANY caps before appending/unioning
7206         * gst/gstcaps.c: (gst_caps_is_subset),
7207         (gst_caps_is_equal), (gst_caps_structure_subtract_field),
7208         (gst_caps_structure_subtract), (gst_caps_subtract):
7209         * gst/gstcaps.h:
7210           add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
7211           the API. deprecate gst_caps_is_equal_fixed
7212         * gst/gstpad.c: (gst_pad_try_set_caps):
7213         * gst/gstqueue.c: (gst_queue_link):
7214           s/gst_caps_is_equal_fixed/gst_caps_is_equal/
7215         * gst/gststructure.c: (gst_structure_get_name_id):
7216         * gst/gststructure.h:
7217           add function gst_structure_get_name_id
7218         * gst/gstvalue.c: (gst_value_subtract_int_int_range),
7219         (gst_value_create_new_range), (gst_value_subtract_int_range_int),
7220         (gst_value_subtract_int_range_int_range),
7221         (gst_value_subtract_double_double_range),
7222         (gst_value_subtract_double_range_double),
7223         (gst_value_subtract_double_range_double_range),
7224         (gst_value_subtract_from_list), (gst_value_subtract_list),
7225         (gst_value_can_intersect), (gst_value_subtract),
7226         (gst_value_can_subtract), (gst_value_register_subtract_func),
7227         (_gst_value_initialize):
7228         * gst/gstvalue.h:
7229           add support for subtracting values from each other. Note that
7230           subtracting means subtracting as in set theory. Required for caps
7231           stuff above.
7232         * testsuite/caps/.cvsignore:
7233         * testsuite/caps/Makefile.am:
7234         * testsuite/caps/erathostenes.c: (erathostenes), (main):
7235         * testsuite/caps/sets.c: (check_caps), (main):
7236         * testsuite/caps/subtract.c: (check_caps), (main):
7237           add tests for subtraction and equality code.
7238
7239 2004-04-20  David Schleef  <ds@schleef.org>
7240
7241         * gst/autoplug/Makefile.am:  Fix some little buglets in last checkin.
7242         * gst/indexers/Makefile.am:
7243         * gst/schedulers/Makefile.am:
7244         * libs/gst/bytestream/Makefile.am:
7245         * libs/gst/control/Makefile.am:
7246         * libs/gst/getbits/Makefile.am:
7247
7248 2004-04-20  David Schleef  <ds@schleef.org>
7249
7250         * common/as-libtool.mak: Fine-tune DLL building.
7251         * configure.ac: Link plugins against libgstreamer.  Define plugindir
7252         (like gst-plugins)
7253         * examples/plugins/Makefile.am: remove plugindir
7254         * gst/autoplug/Makefile.am: DLL building fixes
7255         * gst/elements/Makefile.am: DLL building fixes.  Disable pipefilter on
7256         Windows.
7257         * gst/elements/gstelements.c: Conditionally disable pipefilter.
7258         * gst/indexers/Makefile.am: DLL building fixes
7259         * gst/schedulers/Makefile.am: DLL building fixes.
7260         * libs/gst/bytestream/Makefile.am: DLL building fixes.
7261         * libs/gst/control/Makefile.am: same
7262         * libs/gst/getbits/Makefile.am: same
7263         * testsuite/Makefile.am: New dlopen directory
7264         * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works
7265         when dlopened.
7266         * testsuite/dlopen/dlopen_gst.c: (main): same
7267         * testsuite/dlopen/loadgst.c: (do_test): same
7268
7269 2004-04-20  David Schleef  <ds@schleef.org>
7270
7271         * gst/parse/grammar.y:  Apply patch from Sebastien Cote
7272         <sc5@hermes.usherb.ca> to fix a memleak. (bug #140594)
7273
7274 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7275
7276         * gst/gstelement.c: (gst_element_wait),
7277         (gst_element_set_time_delay), (gst_element_change_state):
7278           Use GST_TIME_*
7279
7280 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7281
7282         * gst/autoplug/gstspider.c: (gst_spider_link_sometimes),
7283         (gst_spider_identity_plug):
7284           improve debugging messages
7285         * gst/gstbin.c: (gst_bin_remove_func):
7286           make sure the state_change function is only called with simple state
7287           transitions
7288
7289 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7290
7291         * gst/elements/gstfakesink.c: (gst_fakesink_state_error_get_type),
7292         (gst_fakesink_set_property), (gst_fakesink_chain):
7293         * gst/elements/gstfakesrc.c: (gst_fakesrc_set_property):
7294         * gst/elements/gstfdsrc.c: (gst_fdsrc_set_property):
7295         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property):
7296         * gst/elements/gstidentity.c: (gst_identity_chain),
7297         (gst_identity_set_property):
7298         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_set_property):
7299         * gst/elements/gstpipefilter.c: (gst_pipefilter_set_property):
7300           add warnings to _set_property for unknown arguments
7301           use GST_TIME_FORMAT/GST_TIME_ARGS for timestamp printing
7302
7303 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7304
7305         * Makefile.am:
7306         * docs/manuals.mak:
7307           add .po file download snippet
7308           fix a bug in the doc makefile
7309
7310 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7311
7312         * Makefile.am:
7313         * po/LINGUAS:
7314         * po/en_GB.po:
7315           Added en_GB translation (Gareth Owen)
7316
7317 2004-04-20  Johan Dahlin  <johan@gnome.org>
7318
7319         * gst/gstpad.c (_invent_event): Clean up
7320
7321 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7322
7323         * testsuite/caps/filtercaps.c: (main):
7324           fix test to test things correctly (caps are complicated)
7325
7326 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7327
7328         * testsuite/caps/Makefile.am:
7329         * testsuite/caps/filtercaps.c: (main):
7330           add test (that doesn't work right now, but should)
7331
7332 2004-04-19  David Schleef  <ds@schleef.org>
7333
7334         * configure.ac: Add test for allowing unaligned access.  Add define
7335         to put in gstconfig.h.
7336         * docs/gst/gstreamer-sections.txt: New symbols
7337         * docs/gst/tmpl/gstcompat.sgml: Check in changes made by gtkdoc
7338         * docs/gst/tmpl/gstfilesrc.sgml:
7339         * docs/gst/tmpl/gstparse.sgml:
7340         * docs/gst/tmpl/gsttypes.sgml:
7341         * docs/gst/tmpl/gstutils.sgml:
7342         * docs/gst/tmpl/gstvalue.sgml:
7343         * gst/gstconfig.h.in: Add GST_HAVE_UNALIGNED_ACCESS
7344         * gst/gstutils.h: Add macros for unaligned memory access.  Useful
7345         on most !i386/!powerpc architectures.  From Daniel Gazard
7346         <daniel.gazard@free.fr>.  (bug #140156)
7347         * po/af.po: Check in changes made by gettext.
7348         * po/az.po:
7349         * po/fr.po:
7350         * po/nl.po:
7351         * po/sr.po:
7352         * po/sv.po:
7353
7354 2004-04-20  Benjamin Otte  <otte@gnome.org>
7355
7356         * gst/schedulers/entryscheduler.c: 
7357         (gst_entry_scheduler_yield):
7358           refuse to yield when decoupled elements insist on doing that.
7359           At least it's better than crashing
7360
7361 2004-04-19  David Schleef  <ds@schleef.org>
7362
7363         * docs/libs/Makefile.am: Change sinclude to include
7364         * docs/gst/Makefile.am: same
7365         * pkgconfig/Makefile.am:  Remove GNU-ism from makefile target
7366
7367 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
7368
7369         * po/LINGUAS:
7370         * po/uk.po:
7371           Added Ukrainian translation (Maxim V. Dziumanenko)
7372
7373 2004-04-19  Johan Dahlin  <johan@gnome.org>
7374
7375         * gst/parse/grammar.y (__gst_parse_chain_free): Don't do null
7376         checking here, do it before calling the function.
7377         Clean up, use for loops instead of while loops while iterating
7378         over lists.
7379
7380         * gst/autoplug/gstspider.c (gst_spider_request_new_pad): Fix typo
7381         in debug message.
7382         (gst_spider_create_and_plug): Improve debug message.
7383         General: Replace while loops which iterates over GLists with for
7384         loops. Which are much cleaner, improves readability, especially
7385         for gst_spider_identity_plug
7386
7387         * gst/gstpad.c (_invent_event): Fix parameters to warning macros,
7388         fixes bug 140477
7389
7390 2004-04-18  Thomas Vander Stichele  <thomas at apestaart dot org>
7391
7392         * po/LINGUAS:
7393         * po/tr.po:
7394           Added Turkish translation (Baris Cicek)
7395
7396 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7397
7398         * docs/faq/troubleshooting.xml:
7399           Mention gst-register in the FAQ (fixes 139045).
7400
7401 2004-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7402
7403         * docs/gst/gstreamer-sections.txt:
7404
7405 2004-04-17  Benjamin Otte  <otte@gnome.org>
7406
7407         * gst/gstelement.c: (gst_element_dispose):
7408           simplify
7409         * gst/gstpad.c: (gst_pad_call_chain_function):
7410           don't create loads of events due to bad macro usage
7411
7412 2004-04-16  David Schleef  <ds@schleef.org>
7413
7414         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
7415         * gst/gstpad.c: (_gst_pad_default_fixate_foreach):
7416         * gst/gstvalue.c: (gst_value_serialize_buffer),
7417         (gst_value_deserialize_buffer), (gst_type_is_fixed),
7418         (_gst_value_initialize): Create a new function gst_type_is_fixed()
7419         to indicate types that are fixed wrt caps or not.  Switching to
7420         this function fixes (bug #140298).
7421         * gst/gstvalue.h:
7422
7423 2004-04-16  David Schleef  <ds@schleef.org>
7424
7425         * common/m4/gst-arch.m4:  Implmenent a whitelist and blacklist
7426         for GST_UNALIGNED_ACESS, since we essentially know which archs
7427         are ok.
7428
7429 2004-04-17  Benjamin Otte  <otte@gnome.org>
7430
7431         * docs/gst/Makefile.am:
7432           ignore gst/parse directory when building docs (fixes #140205)
7433
7434 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
7435
7436         * testsuite/refcounting/mem.c: (vmsize):
7437           do error checking
7438
7439 2004-04-16  Johan Dahlin  <johan@gnome.org>
7440
7441         * docs/gst/gstreamer-sections.txt: Add gst_pad_call_chain_function
7442         and gst_pad_call_get_function.
7443
7444 2004-04-15  David Schleef  <ds@schleef.org>
7445
7446         * common/m4/gst-arch.m4: Add GST_UNALIGNED_ACCESS() macro that
7447         checks if we can access unaligned memory.
7448         * configure.ac: Use it.
7449
7450 2004-04-16  Benjamin Otte  <otte@gnome.org>
7451
7452         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get),
7453         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
7454         * gst/elements/gstfilesrc.h:
7455           s/seek_happened/need_discont/ and require discont before sending any
7456           data
7457
7458 2004-04-15  David Schleef  <ds@schleef.org>
7459
7460         * gst/gstvalue.c: (gst_value_serialize_buffer),
7461         (gst_value_deserialize_buffer), (_gst_value_initialize):
7462         Register these types as fundamental types. (bug #140015)
7463
7464 2004-04-16  Benjamin Otte  <otte@gnome.org>
7465
7466         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_new),
7467         (gst_pad_link_free), (gst_pad_link_try), (_invent_event),
7468         (gst_pad_pull):
7469           implement enforcing discont events before buffers are passed. This
7470           allows state changes of only some elements and later correctly going
7471           on where they left off (or in short: you can now set audio sinks to
7472           NULL to release the device when the pipeline is paused)
7473         * gst/gstpad.c: (gst_pad_call_chain_function),
7474         (gst_pad_call_get_function):
7475         * gst/gstpad.h:
7476           add gst_pad_call_chain_function and gst_pad_call_get_function for
7477           scheduler interaction. They are required because of the changes
7478           above.
7479         * gst/schedulers/entryscheduler.c: (get_buffer),
7480         (gst_entry_scheduler_chain_wrapper),
7481         (gst_entry_scheduler_get_wrapper),
7482         (gst_entry_scheduler_state_transition),
7483         (gst_entry_scheduler_pad_link):
7484         * gst/schedulers/gstbasicscheduler.c:
7485         (gst_basic_scheduler_chain_wrapper),
7486         (gst_basic_scheduler_src_wrapper),
7487         (gst_basic_scheduler_chainhandler_proxy),
7488         (gst_basic_scheduler_gethandler_proxy),
7489         (gst_basic_scheduler_cothreaded_chain),
7490         (gst_basic_scheduler_chain_elements):
7491         * gst/schedulers/gstoptimalscheduler.c:
7492         (get_group_schedule_function), (pad_clear_queued),
7493         (gst_opt_scheduler_pad_link):
7494           use the new functions instead of calling get/chain-functions
7495           directly.
7496
7497 2004-04-15  David Schleef  <ds@schleef.org>
7498
7499         * docs/gst/gstreamer-sections.txt: Remove deprecated symbols.
7500         * docs/gst/tmpl/gstinfo.sgml: same
7501         * docs/gst/tmpl/gstutils.sgml: Remove a bunch of bogus crap that
7502         gtk-doc put here.
7503         * gst/gstutils.h: Remove the \ that was confusing gtk-doc.
7504         * examples/queue/queue.c: (main):  We iterate pipelines, not
7505         bins.  (bug #139996)
7506
7507 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7508
7509         * docs/pwg/advanced-types.xml:
7510           Add MS RLE support. Also document Qt RLE although I have no sample
7511           files for that yet. And document an extra property for ADPCM.
7512
7513 2004-04-15  David Schleef  <ds@schleef.org>
7514
7515         * gst/gstplugin.c: (_gst_plugin_fault_handler_restore),
7516         (_gst_plugin_fault_handler_setup):  Disable more stuff on
7517         Windows.
7518
7519 2004-04-15  David Schleef  <ds@schleef.org>
7520
7521         * gst/gstinfo.c: (_gst_debug_init): Change some internal
7522         symbol names to not conflict with new gstinfo.h symbols.
7523         * gst/gstinfo.h: Add inline functions for all those crazy
7524         compilers that don't know how to handle variadic macros (MSVC).
7525
7526 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7527
7528         * configure.ac: bump nano to 1
7529
7530 === release 0.8.1 ===
7531
7532 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7533
7534         * NEWS:
7535         * RELEASE:
7536         * configure.ac:
7537           releasing 0.8.1, "Snow Brigade"
7538
7539 2004-04-14  David Schleef  <ds@schleef.org>
7540
7541         * testsuite/Makefile.am: define tests_ignore
7542         * testsuite/Rules: Added new tests_ignore, which get compiled,
7543         but not run (generally because they're inconsistent or have
7544         heisenbugs).  Now we can ensure all the .c files compile in
7545         testsuite/.
7546         * testsuite/bins/Makefile.am: define tests_ignore
7547         * testsuite/bytestream/Makefile.am:
7548         * testsuite/caps/Makefile.am:
7549         * testsuite/clock/Makefile.am:
7550         * testsuite/debug/Makefile.am:
7551         * testsuite/debug/global.c: (gst_debug_log_one),
7552         (gst_debug_log_two): Fix compilation problem.
7553         * testsuite/dynparams/Makefile.am:
7554         * testsuite/elements/Makefile.am:
7555         * testsuite/ghostpads/Makefile.am:
7556         * testsuite/indexers/Makefile.am:
7557         * testsuite/parse/Makefile.am:
7558         * testsuite/plugin/Makefile.am:
7559         * testsuite/refcounting/Makefile.am:
7560         * testsuite/refcounting/element_pad.c: (main): Don't return leak
7561         results, because it's not calculated correctly.
7562         * testsuite/refcounting/pad.c: (main): same
7563         * testsuite/states/Makefile.am:
7564         * testsuite/tags/Makefile.am:
7565         * testsuite/threads/Makefile.am:
7566
7567 2004-04-14  David Schleef  <ds@schleef.org>
7568
7569         * gst/gstcpu.c: (gst_cpuid_i386): Add workaround for gcc-3.2
7570         generating bad code around the cpu detection asm code.
7571
7572 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7573
7574         * tools/gst-inspect.c: (print_element_info):
7575           print numeric version of rank as well, since we added some - 1
7576           rank values to elements
7577
7578 2004-04-13  David Schleef  <ds@schleef.org>
7579
7580         * configure.ac:  Disable various code when compiling for MinGW.
7581         * gst/elements/Makefile.am:
7582         * gst/elements/gstelements.c:
7583         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
7584         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get):
7585         * gst/registries/gstxmlregistry.c: (make_dir):
7586
7587 2004-04-13  David Schleef  <ds@schleef.org>
7588
7589         * gst/Makefile.am:
7590         * gst/gstcpu.c: (gst_cpuid_i386): Convert asm source into inline
7591         assembly.
7592         * gst/gstcpuid_i386.s: remove
7593
7594 2004-04-13  David Schleef  <ds@schleef.org>
7595
7596         * docs/gst/tmpl/gstaggregator.sgml: Random checkin because gtk-doc
7597         seems to think it needs to be done.
7598         * docs/gst/tmpl/gstfakesink.sgml:
7599         * docs/gst/tmpl/gstfakesrc.sgml:
7600         * docs/gst/tmpl/gstfdsink.sgml:
7601         * docs/gst/tmpl/gstfdsrc.sgml:
7602         * docs/gst/tmpl/gstfilesink.sgml:
7603         * docs/gst/tmpl/gstfilesrc.sgml:
7604         * docs/gst/tmpl/gstidentity.sgml:
7605         * docs/gst/tmpl/gstmd5sink.sgml:
7606         * docs/gst/tmpl/gstmultifilesrc.sgml:
7607         * docs/gst/tmpl/gstpipefilter.sgml:
7608         * docs/gst/tmpl/gstshaper.sgml:
7609         * docs/gst/tmpl/gstspider.sgml:
7610         * docs/gst/tmpl/gstspideridentity.sgml:
7611         * docs/gst/tmpl/gststatistics.sgml:
7612         * docs/gst/tmpl/gsttee.sgml:
7613         * docs/gst/tmpl/gsttypefind.sgml:
7614         * docs/gst/tmpl/gstutils.sgml:
7615
7616 2004-04-13  David Schleef  <ds@schleef.org>
7617
7618         * configure.ac: Changes to remove POSIXisms (mmap in this case)
7619         and to build DLLs on Windows.
7620         * gst/Makefile.am:
7621         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
7622         (gst_filesrc_open_file):
7623         * gst/schedulers/Makefile.am:
7624
7625 2004-04-13  David Schleef  <ds@schleef.org>
7626
7627         * gst/gstcaps.c: (gst_caps_structure_fixate_field_nearest_int),
7628         (gst_caps_structure_fixate_field_nearest_double):  Fix bug in
7629         fixating lists.
7630
7631 2004-04-12  David Schleef  <ds@schleef.org>
7632
7633         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
7634         (gst_buffer_free_chunk): Added gst_buffer_get_type() and changed
7635         to using it.
7636         * gst/gstbuffer.h: Changed GST_BUFFER_TYPE to gst_buffer_get_type()
7637         * gst/gstcaps.c: (gst_caps_is_fixed_foreach): Buffer is a fixed type
7638         * gst/gstpad.c: (_gst_pad_default_fixate_foreach): same
7639         * gst/gststructure.c: (gst_structure_set_valist),
7640         (gst_structure_from_abbr), (gst_structure_to_abbr): Add vararg
7641         support for buffers.
7642         * gst/gsttag.c: (gst_tag_register): Constify a prototype that was
7643         intended to be const.
7644         * gst/gsttag.h: same
7645         * gst/gstvalue.c: (gst_value_serialize_buffer),
7646         (gst_value_deserialize_buffer), (_gst_value_initialize):  Add code
7647         to (de)serialize buffers.
7648         * testsuite/caps/Makefile.am:  Add a bit of buffer testing
7649         * testsuite/caps/string-conversions.c: (main):
7650         * testsuite/caps/value_serialize.c: add new test
7651
7652 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7653
7654         * docs/pwg/advanced-types.xml:
7655           Document MS video 1 (video/x-msvideocodec) mimetype/format.
7656
7657 2004-04-11  Benjamin Otte  <otte@gnome.org>
7658
7659         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
7660           rename categories to basic_*
7661         * gst/schedulers/gstbasicscheduler.c: 
7662         (gst_basic_scheduler_chain_wrapper),
7663         (gst_basic_scheduler_chainhandler_proxy),
7664         (gst_basic_scheduler_gethandler_proxy),
7665         (gst_basic_scheduler_eventhandler_proxy):
7666           debugging category fixes - put common stuff in log category
7667         * gst/schedulers/gstbasicscheduler.c: 
7668         (gst_basic_scheduler_chain_elements):
7669           dirty fix: call gst_basic_scheduler_cothreaded_chain when already
7670           active and linking two active chains
7671
7672 2004-04-10  Benjamin Otte  <otte@gnome.org>
7673
7674         * docs/pwg/intro-preface.xml:
7675           fix dead links and remove reference to Wiki
7676
7677 2004-04-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7678
7679         * gst/schedulers/gstbasicscheduler.c:
7680           make sure we can switch back to the main function if we're still in
7681           the main function (supposed to fix #139617)
7682         * gst/schedulers/gthread-cothreads.h:
7683           don't throw an error when switching to the same cothread
7684
7685 2004-04-09  Benjamin Otte  <otte@gnome.org>
7686
7687         * gst/gstbin.c: (gst_bin_get_type):
7688         * gst/gstclock.c: (gst_clock_get_type):
7689         * gst/gstindex.c: (gst_index_get_type):
7690         * gst/gstobject.c: (gst_object_get_type),
7691         (gst_signal_object_get_type):
7692         * gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
7693         (gst_pad_template_get_type), (gst_ghost_pad_get_type):
7694         * gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
7695         * gst/gstqueue.c: (gst_queue_get_type):
7696         * gst/gstregistry.c: (gst_registry_get_type):
7697         * gst/gstsystemclock.c: (gst_system_clock_get_type):
7698         * gst/gstthread.c: (gst_thread_get_type):
7699           don't use memchunks for these objects, use malloc instead
7700
7701 2004-04-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7702
7703         * docs/gst/.cvsignore:
7704         * docs/gst/Makefile.am:
7705         * docs/gst/gstreamer-sections.txt:
7706         * docs/gst/tmpl/gstaggregator.sgml:
7707         * docs/gst/tmpl/gstbuffer.sgml:
7708         * docs/gst/tmpl/gstclock.sgml:
7709         * docs/gst/tmpl/gstelement.sgml:
7710         * docs/gst/tmpl/gstfakesink.sgml:
7711         * docs/gst/tmpl/gstfakesrc.sgml:
7712         * docs/gst/tmpl/gstfdsink.sgml:
7713         * docs/gst/tmpl/gstfdsrc.sgml:
7714         * docs/gst/tmpl/gstfilesink.sgml:
7715         * docs/gst/tmpl/gstfilesrc.sgml:
7716         * docs/gst/tmpl/gstidentity.sgml:
7717         * docs/gst/tmpl/gstindex.sgml:
7718         * docs/gst/tmpl/gstinfo.sgml:
7719         * docs/gst/tmpl/gstmd5sink.sgml:
7720         * docs/gst/tmpl/gstmultifilesrc.sgml:
7721         * docs/gst/tmpl/gstpad.sgml:
7722         * docs/gst/tmpl/gstpipefilter.sgml:
7723         * docs/gst/tmpl/gstpipeline.sgml:
7724         * docs/gst/tmpl/gstpluginfeature.sgml:
7725         * docs/gst/tmpl/gstqueue.sgml:
7726         * docs/gst/tmpl/gstregistry.sgml:
7727         * docs/gst/tmpl/gstscheduler.sgml:
7728         * docs/gst/tmpl/gstshaper.sgml:
7729         * docs/gst/tmpl/gstspider.sgml:
7730         * docs/gst/tmpl/gstspideridentity.sgml:
7731         * docs/gst/tmpl/gststatistics.sgml:
7732         * docs/gst/tmpl/gstsystemclock.sgml:
7733         * docs/gst/tmpl/gsttee.sgml:
7734         * docs/gst/tmpl/gstthread.sgml:
7735         * docs/gst/tmpl/gsttypefind.sgml:
7736         * docs/gst/tmpl/gstutils.sgml:
7737           further doc build fixes
7738
7739 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7740
7741         * docs/gst/Makefile.am:
7742           make docs exit on scanning problems
7743           fix nonsrcdir build issues
7744         * docs/gst/gstreamer-sections.txt:
7745           adding stuff from -unused
7746         * gst/gstqueue.h:
7747           create GstQueueSize
7748         * gst/schedulers/cothreads_compat.h:
7749           fix cothread warnings
7750
7751 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7752
7753         * docs/gst/gstreamer-sections.txt:
7754           remove defines deprecated by Benjamin
7755
7756 2004-04-07  Benjamin Otte  <otte@gnome.org>
7757
7758         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
7759           when the buffer is complete, don't check if other buffers are needed
7760         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_event):
7761           check that the offset is >0 so we don't try to read before the
7762           beginning of the file
7763         * gst/gstpad.c: (gst_pad_set_pad_template):
7764           sink the template, so we don't end up with 130k pad templates
7765
7766 2004-04-06  Benjamin Otte  <otte@gnome.org>
7767
7768         * gst/autoplug/gstspider.c: (gst_spider_link_add):
7769           don't ref the element, adding already reffed it. And we didn't unref
7770           it later anyway... (huge memleak when you used many spider elements)
7771         * gst/gstelement.c: (gst_element_base_class_finalize):
7772         * gst/gstelementfactory.c: (gst_element_factory_cleanup),
7773         (gst_element_register):
7774         * gst/gsturi.c: (gst_element_make_from_uri):
7775           use gst_object_(un)ref instead of g_object(un)ref
7776
7777 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7778
7779         * gst/gstbuffer.h:
7780           remove macro that wouldn't work anymore because struct member has
7781           been removed.
7782         * gst/schedulers/entryscheduler.c: (schedule_forward):
7783           fix segfault for unconnected pads
7784         
7785 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7786
7787         reviewed by David Schleef <ds@schleef.org>
7788
7789         * gst/gstinfo.h:
7790           *_FORMAT modifiers should require putting a % in front of them for
7791           consistency reasons.
7792
7793 2004-04-05  Colin Walters  <walters@redhat.com>
7794
7795         * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious
7796         space.
7797
7798 2004-04-05  Benjamin Otte  <otte@gnome.org>
7799
7800         * configure.ac:
7801         * gst/Makefile.am:
7802         * gst/gst_private.h:
7803         * gst/gstinfo.c: (__gst_in_valgrind), (_gst_debug_init):
7804           add support for detecting if GStreamer runs inside valgrind.
7805           requires valgrind (d'oh) and --enable-debug for correct cdetection.
7806           print a big message in valgrind that GStreamer has detected it's
7807           running inside and might now use different code.
7808         * gst/gstmemchunk.c: (populate), (free_area),
7809         (gst_mem_chunk_destroy), (gst_mem_chunk_alloc),
7810         (gst_mem_chunk_free):
7811           flag memchunks for valgrind, so it can detect leaking of chunks.
7812           This allows detecting leaks of GstBuffer and GstEvent correctly
7813           inside valgrind.
7814
7815 2004-04-05  David Schleef  <ds@schleef.org>
7816
7817         * gst/gsttrace.h:  Fix #ifdef nesting (bug #139109) Patch from
7818           jensgr@gmx.net (Jens Granseuer)
7819
7820 2004-04-05  David Schleef  <ds@schleef.org>
7821
7822         * gst/gstbuffer.c: (_gst_buffer_sub_free),
7823         (gst_buffer_default_free), (gst_buffer_default_copy),
7824         (gst_buffer_alloc_chunk), (gst_buffer_free_chunk),
7825         (gst_buffer_new), (gst_buffer_create_sub):  Allocate GstBuffer
7826         structures in one place.
7827
7828 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7829
7830         * gst/gstinfo.h: adding Ronald's timestamp debugging defines
7831           (GST_TIME_FORMAT, GST_TIME_ARGS)
7832
7833 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7834
7835         * testsuite/elements/Makefile.am:
7836           disable test until it stops breaking make distcheck
7837
7838 2004-04-05  Johan Dahlin  <johan@gnome.org>
7839
7840         * po/sv.po: Updated translation
7841
7842 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7843
7844         * gst/gstplugin.c: (gst_plugin_load_file):
7845           fix segfault for when original plugin was loaded statically
7846
7847 2004-04-05  Benjamin Otte  <otte@gnome.org>
7848
7849         * testsuite/debug/category.c: (main):
7850         * testsuite/debug/commandline.c: (main):
7851         * testsuite/debug/output.c: (main):
7852           fix tests to work again with debugging enabled
7853
7854 2004-04-05  Benjamin Otte  <otte@gnome.org>
7855
7856         * gst/schedulers/gstbasicscheduler.c:
7857         (gst_basic_scheduler_pad_link):
7858           fix to work with recent scheduling changes
7859
7860 2004-04-05  Benjamin Otte  <otte@gnome.org>
7861
7862         * gst/schedulers/entryscheduler.c: (some functions, dunno which,
7863         prepareChangeLog doesn't work when cvs indents):
7864           don't throw an error when no element can be scheduled, there's too
7865           many weird reasons why it doesn't work. Return STOPPED instead.
7866           decoupled elemts' schedulability doesn't depend on bufpens.
7867
7868 2004-04-04  Benjamin Otte  <otte@gnome.org>
7869
7870         * gst/schedulers/gstbasicscheduler.c:
7871         (gst_basic_scheduler_pad_select):
7872           fix uninitialized variable warnings
7873
7874 2004-04-04  Benjamin Otte  <otte@gnome.org>
7875
7876         * gst/gstpad.c: (gst_pad_collect_valist):
7877           fix uninitialized variable warning
7878         * gst/schedulers/entryscheduler.c: (schedule_forward):
7879           fix shadowed variable
7880
7881 2004-04-04  Benjamin Otte  <otte@gnome.org>
7882
7883         * gst/gstpad.c: (gst_pad_collect_array), (gst_pad_collectv),
7884         (gst_pad_collect), (gst_pad_collect_valist), (gst_pad_selectv),
7885         (gst_pad_select):
7886         * gst/gstpad.h:
7887         * gst/gstscheduler.c: (gst_scheduler_pad_select),
7888         (gst_scheduler_lock_element), (gst_scheduler_unlock_element):
7889         * gst/gstscheduler.h:
7890           implement gst_pad_collect as replacement for gst_pad_select.
7891           deprecate gst_pad_select and gst_scheduler_(un)lock_element
7892           add new flag GST_SCHEDULER_FLAG_NEW_API for API that implements the
7893           new pad_select, lock and unlock calls.
7894         * gst/cothreads.c: (cothread_destroy), (cothread_switch):
7895         * gst/cothreads.h:
7896         * gst/schedulers/cothreads_compat.h:
7897         * gst/schedulers/gthread-cothreads.h:
7898           remove unused cothread_lock and cothread_unlock calls
7899         * gst/schedulers/entryscheduler.c:
7900         (gst_entry_scheduler_class_init), (gst_entry_scheduler_init),
7901         (_can_schedule_loop), (gst_entry_scheduler_get_handler),
7902         (gst_entry_scheduler_pad_select):
7903           update to new API
7904         * gst/schedulers/gstbasicscheduler.c:
7905         (gst_basic_scheduler_class_init), (gst_basic_scheduler_init),
7906         (gst_basic_scheduler_pad_select):
7907           remove useless lock and unlock calls, update pad_select to new API
7908           (untested)
7909         * gst/schedulers/gstoptimalscheduler.c:
7910         (gst_opt_scheduler_class_init):
7911           remove useless select, lock and unlock function calls
7912         * gst/elements/gstaggregator.c: (gst_aggregator_loop):
7913           use gst_pad_collect instead of gst_pad_select
7914
7915 2004-04-04  Benjamin Otte  <otte@gnome.org>
7916
7917         * gst/schedulers/entryscheduler.c: (_can_schedule_get),
7918         (can_schedule_pad), (can_schedule), (schedule), (schedule_forward),
7919         (schedule_next_element), (print_entry):
7920           add can_schedule_pad to handle element states.
7921           add schedule_forward to select the correct entry to schedule next
7922
7923 2004-04-03  Benjamin Otte  <otte@gnome.org>
7924
7925         * gst/schedulers/entryscheduler.c: 
7926           remove unused variable, fix error inside Rb, fix compile warning in
7927           unreachable code
7928
7929 2004-04-03  Benjamin Otte  <otte@gnome.org>
7930
7931         * gst/schedulers/entryscheduler.c:
7932           completely revamp the inner workings, so it's a lot easier to
7933           understand and extend
7934
7935 2004-04-03  Andy Wingo  <wingo@pobox.com>
7936
7937         * gst/schedulers/gstoptimalscheduler.c (GstOptSchedulerGroupLink):
7938         Rename ->group1 and ->group2 to ->src and ->sink, respectively.
7939         This allows better introspection of pipeline topology.
7940         (add_to_chain): Don't do trickery to put loop elements first;
7941         rather, queue a chain sort by marking the chain as dirty.
7942         (remove_from_chain): Mark the chain dirty.
7943         (sort_chain): New function. Sorts the group list so that terminal
7944         sinks are first. This means elements on the sink side will be
7945         preferentially sscheduled before elements on the src side of the
7946         pipeline.
7947         (chain_recursively_migrate_group): Use OTHER_GROUP_LINK.
7948         (schedule_chain): If the chain is marked DIRTY, call sort_chain.
7949         (gst_opt_scheduler_pad_link, gst_opt_scheduler_pad_unlink)
7950         (group_inc_link): Change argument and variable names to match the
7951         new link structure member names (src and sink).
7952         (group_dec_link): Add some description
7953
7954 2004-04-03  Benjamin Otte  <otte@gnome.org>
7955
7956         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
7957         * gst/gstinfo.h:
7958         * testsuite/debug/category.c: (main):
7959         * testsuite/debug/commandline.c: (main):
7960         * testsuite/debug/output.c: (main):
7961         * testsuite/debug/printf_extension.c: (main):
7962           fix to successfully build and test with --disable-gst-debug
7963           configure switch (fixes #138705)
7964
7965 2004-04-03  Benjamin Otte  <otte@gnome.org>
7966
7967         * docs/pwg/building-boiler.xml:
7968           add cvs login line and s/anonymous/anoncvs/
7969
7970 2004-04-03  Tim-Phillip Müller  <t.i.m@zen.co.uk>
7971
7972         reviewed by Benjamin Otte  <otte@gnome.org>
7973
7974         * gst/gststructure.c: (gst_structure_free):
7975           memleak fix: free fields array (partial fix for #134839)
7976
7977 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7978
7979         * docs/random/ds/0.9-suggested-changes:
7980           Add a note to change handoff use in fakesrc to be usable in
7981           a more generic way (fakesrc should be renamed to appsrc or so).
7982         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
7983           Change signal type to scope, so we can fill the buffer in the
7984           handoff handler (that's the whole use of this signal...).
7985
7986 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7987
7988         * docs/pwg/other-ntoone.xml:
7989           Document muxers and n-to-1 elements.
7990
7991 2004-04-01  Martin Soto  <martinsoto@users.sourceforge.net>
7992
7993         * gst/registries/gstxmlregistry.c
7994         (gst_xml_registry_rebuild_recurse): Fix the algorithm to
7995         determine if a file is a G_MODULE. The old one discards paths
7996         containing "so" somewhere in the middle. My home directory is
7997         called "soto". Go figure...
7998
7999 2004-03-31  David Schleef  <ds@schleef.org>
8000
8001         * gst/gstbuffer.c: (gst_buffer_join):  Add function gst_buffer_join()
8002         to eventually deprecate gst_buffer_merge().  (bug: #136408)
8003         * gst/gstbuffer.h:
8004
8005 2004-03-31  David Schleef  <ds@schleef.org>
8006
8007         * gst/gstvalue.c: (gst_value_union_int_int_range),
8008         (gst_value_union_int_range_int_range), (gst_value_can_union),
8009         (gst_value_union), (_gst_value_initialize):  Add some union
8010         implementations.  We didn't have any previously.
8011         * testsuite/caps/Makefile.am:
8012         * testsuite/caps/audioscale.c: (gst_audioscale_expand_value),
8013         (gst_audioscale_getcaps), (test_caps), (main): A little test
8014         that is the same as the caps manipulation in audioscale.
8015
8016 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8017
8018         * docs/faq/general.xml:
8019           add entry about "does gst support format X?"
8020
8021 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8022
8023         * gst/gstthread.c:
8024           fix docs
8025         * gst/gstutils.h:
8026           fix GST_BOILERPLATE_FULL to not throw casting errors on C++
8027
8028 2004-03-30  Benjamin Otte  <otte@gnome.org>
8029
8030         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
8031           set the offset of the buffer to the requested offset
8032         * gst/elements/gsttypefind.c: (stop_typefinding):
8033           revert patch 1.18 (which I unfortunately don't know the reason for).
8034           This is needed to allow downstream elements to seek. Otherwise
8035           typefind might overwrite a previous seek by downstream elements.
8036           This lead to errors with id3tag and typefind on some mp3s.
8037         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8038         (gst_entry_scheduler_iterate):
8039           be more verbose when debugging
8040
8041 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8042
8043         * gst/gstcaps.c: (gst_caps_from_string_inplace):
8044           make sure we don't get NULL strings
8045
8046 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8047
8048         * gst/gstcaps.c:
8049         * gst/gstelement.c:
8050         * gst/gstelementfactory.c: (gst_element_factory_get_type):
8051         * gst/gstindex.c: (gst_index_resolver_get_type),
8052         (gst_index_get_type), (gst_index_factory_get_type):
8053         * gst/gstinfo.c:
8054         * gst/gstpad.c:
8055         * gst/gstplugin.c:
8056         * gst/gsturi.c: (gst_uri_handler_get_type):
8057         * gst/gstvalue.c:
8058           first batch of documentation fixes
8059
8060 2004-03-29  David Schleef  <ds@schleef.org>
8061
8062         * docs/gst/Makefile.am:  Disable a bunch of headers from being scanned
8063         * docs/gst/gstreamer-docs.sgml:  More hacking
8064         * docs/gst/gstreamer-sections.txt:
8065         * docs/gst/tmpl/cothreads_compat.sgml:
8066         * docs/gst/tmpl/gstcaps.sgml:
8067         * docs/gst/tmpl/gstclock.sgml:
8068         * docs/gst/tmpl/gstelement.sgml:
8069         * docs/gst/tmpl/gstevent.sgml:
8070         * docs/gst/tmpl/gstpad.sgml:
8071         * docs/gst/tmpl/gstutils.sgml:
8072         * docs/gst/tmpl/gstxml.sgml:
8073         * docs/gst/tmpl/gthread-cothreads.sgml:
8074         * docs/random/ds/0.9-suggested-changes:
8075         * gst/elements/gstfakesink.h: doc fixes
8076         * gst/elements/gstfakesrc.h: doc fixes
8077         * gst/gstcaps.c: doc fixes
8078         * gst/gstcaps.h: doc fixes
8079         * gst/gstelement.c: doc fixes
8080         * gst/gstelement.h: doc fixes
8081         * gst/gstindex.c: doc fixes
8082         * gst/gstinfo.c: doc fixes
8083         * gst/gstpad.c: doc fixes
8084         * gst/gstpad.h: doc fixes
8085         * gst/gstplugin.c: doc fixes
8086         * gst/gsttypefind.h: doc fixes
8087         * gst/gsturi.c: doc fixes
8088         * gst/gstvalue.c: doc fixes
8089
8090 2004-03-29  Colin Walters  <walters@redhat.com>
8091
8092         * gst/registries/gstxmlregistry.c (get_time)
8093         (plugin_times_older_than_recurse):
8094         Use the result of stat to determine whether a path is a file,
8095         so we don't attempt to opendir() files.
8096
8097 2004-03-29  Benjamin Otte  <otte@gnome.org>
8098
8099         * gst/gstpad.c: (gst_pad_set_explicit_caps):
8100           print caps in debugging output when setting caps failed
8101         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8102         (schedule_next_element), (get_buffer), (run_chainhandler),
8103         (element_may_start), (gst_entry_scheduler_chain_handler),
8104         (gst_entry_scheduler_get_handler),
8105         (gst_entry_scheduler_state_transition),
8106         (gst_entry_scheduler_pad_link):
8107           make this scheduler a testcase for mandatory
8108           discont-before-first-buffer which is needed if we want to allow apps
8109           to release the sound device.
8110           add SCHED_ASSERT macro to print scheduler state before an assertion
8111           triggers.
8112
8113 2004-03-29  Benjamin Otte  <otte@gnome.org>
8114
8115         * COPYING:
8116           replace by LGPL (former COPYING.LIB). The core is completely
8117           licensed LGPL.
8118         * COPYING.LIB:
8119           remove
8120
8121 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8122
8123         * po/af.po:
8124         * po/sv.po:
8125           updated Afrikaans and Swedish
8126
8127 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8128
8129         * po/LINGUAS:
8130         * po/az.po:
8131           adding Azerbaijani (Mətin Əmirov)
8132
8133 2004-03-28  Martin Soto  <martinsoto@users.sourceforge.net>
8134
8135         * gst/gstelement.h: 
8136         * gst/gstelement.c (gst_element_set_time_delay): New function for
8137         setting element time taking into account a hardware buffering
8138         delay.
8139         (gst_element_set_time): Now just an invocation of
8140         gst_element_set_time_delay.
8141         * gst/gstclock.h: 
8142         * gst/gstclock.c (gst_clock_get_event_time_delay): New function
8143         allowing to set event times in the future.
8144         (gst_clock_get_event_time): Now just an invocation of
8145         gst_clock_get_event_time_delay.
8146
8147 2004-03-28  Benjamin Otte  <otte@gnome.org>
8148
8149         * gst/gstbin.c: (gst_bin_set_element_sched),
8150         (gst_bin_unset_element_sched):
8151           don't add decoupled elements to schedulers - otherwise it's
8152           impossible to control if a link to a decoupled element was already
8153           removed from a scheduler or not.
8154         * gst/schedulers/cothreads_compat.h:
8155         * gst/schedulers/gthread-cothreads.h:
8156           add COTHREADS_TYPE macro. Make do_cothread_set_func a macro so there
8157           is no "unused" warning.
8158         * gst/schedulers/Makefile.am:
8159         * gst/schedulers/entryscheduler.c:
8160           add new scheduler, based on ideas from talking to David and Martin.
8161           It's supposed to be small and correct. Currently it's also slow (but
8162           it's not noticable)
8163         * examples/retag/retag.c: (main):
8164         * testsuite/bytestream/test1.c: (main):
8165           fix missing NULLs at end of variadic functions
8166         * testsuite/elements/.cvsignore:
8167           update
8168
8169 2004-03-28  Jan Schmidt  <thaytan@mad.scientist.com>
8170
8171         * gst/gstevent.h:
8172         Added GST_EVENT_ANY for GstEvents that pass a GstStructure
8173
8174 2004-03-25  David Schleef  <ds@schleef.org>
8175
8176         * docs/gst/gstreamer-sections.txt:  More doc hacking.
8177         * docs/gst/tmpl/gstaggregator.sgml:
8178         * docs/gst/tmpl/gstautoplugfactory.sgml:
8179         * docs/gst/tmpl/gstbin.sgml:
8180         * docs/gst/tmpl/gstbuffer.sgml:
8181         * docs/gst/tmpl/gstbufferstore.sgml:
8182         * docs/gst/tmpl/gstfakesink.sgml:
8183         * docs/gst/tmpl/gstfakesrc.sgml:
8184         * docs/gst/tmpl/gstmd5sink.sgml:
8185         * docs/gst/tmpl/gstreamer-unused.sgml:
8186         * docs/gst/tmpl/gstsearchfuncs.sgml:
8187         * docs/gst/tmpl/gstshaper.sgml:
8188         * docs/gst/tmpl/gstspider.sgml:
8189         * docs/gst/tmpl/gsttee.sgml:
8190         * docs/gst/tmpl/gstutils.sgml:
8191         * docs/gst/tmpl/gstvalue.sgml:
8192         * docs/gst/tmpl/gstxml.sgml:
8193         * gst/Makefile.am:  Remove gstthreaddummy.c.  It never worked,
8194         and we don't support it.
8195         * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
8196         (gst_use_threads), (gst_has_threads): same
8197         * gst/gstthreaddummy.c: same
8198         * gst/autoplug/gstspider.c: Make gst_spider_details static.
8199         * gst/autoplug/gstspider.h: same
8200         * gst/elements/gstaggregator.h: Remove bogus function from header
8201         * gst/elements/gstfakesink.h: same
8202         * gst/elements/gstfakesrc.h: same
8203         * gst/elements/gstmd5sink.h: same
8204         * gst/elements/gstshaper.h: same
8205         * gst/elements/gsttee.h: same
8206         * gst/gstbin.c: doc fixes
8207         * gst/gstbin.h: Remove unused definition.
8208         * gst/gstbuffer.c: doc fixes
8209         * gst/gstcaps.c: (gst_caps_is_always_compatible): doc fixes
8210         * gst/gstfilter.c: doc fixes
8211         * gst/gsttag.c: doc fixes
8212         * gst/gstvalue.c: doc fixes
8213
8214 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8215
8216         * docs/pwg/advanced-types.xml:
8217           Document typefinding.
8218         * docs/pwg/other-oneton.xml:
8219           Document one-to-n elements, demuxers and parsers.
8220
8221 2004-03-25  Tim-Philipp Müller <t.i.m@zen.co.uk>
8222
8223         reviewed by: David Schleef  <ds@schleef.org>
8224
8225         * configure.ac: Check bison version (bug #127838)
8226
8227 2004-03-25  David Schleef  <ds@schleef.org>
8228
8229         * docs/gst/gstreamer-docs.sgml: More fine tuning.
8230         * docs/gst/gstreamer-sections.txt:
8231         * docs/gst/tmpl/gstautoplug.sgml:
8232         * docs/gst/tmpl/gststaticautoplug.sgml:
8233         * docs/gst/tmpl/gststaticautoplugrender.sgml:
8234         * docs/gst/tmpl/gstutils.sgml:
8235         * docs/gst/tmpl/gstxml.sgml:
8236
8237 2004-03-24  David Schleef  <ds@schleef.org>
8238
8239         * docs/gst/gstreamer-docs.sgml:  I got tired of the reference
8240         manual being such complete crap, that I decided to do major
8241         hacking of it.  This checkin replaces any fine tuning that
8242         may have been done previously, with the benefit of actually
8243         being complete for much of the API that was changed since
8244         0.6.  Further fine tuning will occur shortly.  (bug #134721)
8245         * docs/gst/gstreamer-sections.txt:
8246         * docs/gst/tmpl/GstBin.sgml:
8247         * docs/gst/tmpl/GstBuffer.sgml:
8248         * docs/gst/tmpl/GstCaps.sgml:
8249         * docs/gst/tmpl/GstClock.sgml:
8250         * docs/gst/tmpl/GstCompat.sgml:
8251         * docs/gst/tmpl/GstData.sgml:
8252         * docs/gst/tmpl/GstElement.sgml:
8253         * docs/gst/tmpl/GstEvent.sgml:
8254         * docs/gst/tmpl/GstIndex.sgml:
8255         * docs/gst/tmpl/GstStructure.sgml:
8256         * docs/gst/tmpl/GstTag.sgml:
8257         * docs/gst/tmpl/cothreads.sgml:
8258         * docs/gst/tmpl/cothreads_compat.sgml:
8259         * docs/gst/tmpl/gettext.sgml:
8260         * docs/gst/tmpl/grammar.tab.sgml:
8261         * docs/gst/tmpl/gst-i18n-app.sgml:
8262         * docs/gst/tmpl/gst-i18n-lib.sgml:
8263         * docs/gst/tmpl/gst.sgml:
8264         * docs/gst/tmpl/gst_private.sgml:
8265         * docs/gst/tmpl/gstaggregator.sgml:
8266         * docs/gst/tmpl/gstarch.sgml:
8267         * docs/gst/tmpl/gstatomic.sgml:
8268         * docs/gst/tmpl/gstatomic_impl.sgml:
8269         * docs/gst/tmpl/gstbin.sgml:
8270         * docs/gst/tmpl/gstbuffer.sgml:
8271         * docs/gst/tmpl/gstbufferstore.sgml:
8272         * docs/gst/tmpl/gstcaps.sgml:
8273         * docs/gst/tmpl/gstclock.sgml:
8274         * docs/gst/tmpl/gstcompat.sgml:
8275         * docs/gst/tmpl/gstconfig.sgml:
8276         * docs/gst/tmpl/gstcpu.sgml:
8277         * docs/gst/tmpl/gstdata.sgml:
8278         * docs/gst/tmpl/gstdata_private.sgml:
8279         * docs/gst/tmpl/gstelement.sgml:
8280         * docs/gst/tmpl/gstenumtypes.sgml:
8281         * docs/gst/tmpl/gsterror.sgml:
8282         * docs/gst/tmpl/gstevent.sgml:
8283         * docs/gst/tmpl/gstfakesink.sgml:
8284         * docs/gst/tmpl/gstfakesrc.sgml:
8285         * docs/gst/tmpl/gstfilesink.sgml:
8286         * docs/gst/tmpl/gstfilter.sgml:
8287         * docs/gst/tmpl/gstindex.sgml:
8288         * docs/gst/tmpl/gstinfo.sgml:
8289         * docs/gst/tmpl/gstinterface.sgml:
8290         * docs/gst/tmpl/gstlog.sgml:
8291         * docs/gst/tmpl/gstmacros.sgml:
8292         * docs/gst/tmpl/gstmarshal.sgml:
8293         * docs/gst/tmpl/gstmd5sink.sgml:
8294         * docs/gst/tmpl/gstmultifilesrc.sgml:
8295         * docs/gst/tmpl/gstobject.sgml:
8296         * docs/gst/tmpl/gstpad.sgml:
8297         * docs/gst/tmpl/gstparse.sgml:
8298         * docs/gst/tmpl/gstpipeline.sgml:
8299         * docs/gst/tmpl/gstplugin.sgml:
8300         * docs/gst/tmpl/gstpluginfeature.sgml:
8301         * docs/gst/tmpl/gstqueue.sgml:
8302         * docs/gst/tmpl/gstreamer-unused.sgml:
8303         * docs/gst/tmpl/gstregistry.sgml:
8304         * docs/gst/tmpl/gstregistrypool.sgml:
8305         * docs/gst/tmpl/gstscheduler.sgml:
8306         * docs/gst/tmpl/gstsearchfuncs.sgml:
8307         * docs/gst/tmpl/gstshaper.sgml:
8308         * docs/gst/tmpl/gstspider.sgml:
8309         * docs/gst/tmpl/gstspideridentity.sgml:
8310         * docs/gst/tmpl/gststructure.sgml:
8311         * docs/gst/tmpl/gstsystemclock.sgml:
8312         * docs/gst/tmpl/gsttag.sgml:
8313         * docs/gst/tmpl/gsttaginterface.sgml:
8314         * docs/gst/tmpl/gsttee.sgml:
8315         * docs/gst/tmpl/gstthread.sgml:
8316         * docs/gst/tmpl/gsttrace.sgml:
8317         * docs/gst/tmpl/gsttrashstack.sgml:
8318         * docs/gst/tmpl/gsttypefind.sgml:
8319         * docs/gst/tmpl/gsttypes.sgml:
8320         * docs/gst/tmpl/gsturi.sgml:
8321         * docs/gst/tmpl/gsturitype.sgml:
8322         * docs/gst/tmpl/gstutils.sgml:
8323         * docs/gst/tmpl/gstvalue.sgml:
8324         * docs/gst/tmpl/gstversion.sgml:
8325         * docs/gst/tmpl/gstxml.sgml:
8326         * docs/gst/tmpl/gstxmlregistry.sgml:
8327         * docs/gst/tmpl/gthread-cothreads.sgml:
8328         * docs/gst/tmpl/types.sgml:
8329
8330 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8331
8332         * docs/pwg/other-sink.xml:
8333         * docs/pwg/other-source.xml:
8334           Documentation on how to write source and sink elements. Other
8335           stuff in chapter 4 (1-to-n/demuxer, n-to-1/muxer, n-to-n,
8336           manager, autoplugger) are all still pending.
8337
8338 2004-03-25  Benjamin Otte  <otte@gnome.org>
8339
8340         * testsuite/elements/Makefile.am:
8341         * testsuite/elements/gst-compprep-check:
8342           add check to make sure gst-compprep works
8343         * testsuite/elements/gst-inspect-check.in:
8344           improve initialization output
8345         * testsuite/Makefile.am:
8346         * testsuite/gst-inspect-check:
8347           remove old file
8348
8349 2004-03-24  David Schleef  <ds@schleef.org>
8350
8351         * testsuite/elements/Makefile.am:
8352         * testsuite/elements/gst-inspect-check.in: Add gst-inspect-check
8353         to the testsuite.
8354
8355 2004-03-24  Benjamin Otte  <otte@gnome.org>
8356
8357         * libs/gst/control/dparam.c: (gst_dparam_attach),
8358         (gst_dparam_detach):
8359         * libs/gst/control/dparammanager.c: (gst_dpman_init):
8360           fix lvalue casts for real
8361
8362 2004-03-24  Benjamin Otte  <otte@gnome.org>
8363
8364         * gst/schedulers/gstbasicscheduler.c:
8365         (gst_basic_scheduler_src_wrapper):
8366         * gst/schedulers/gstoptimalscheduler.c:
8367         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
8368         (pad_clear_queued), (gst_opt_scheduler_add_element),
8369         (gst_opt_scheduler_remove_element):
8370           fix GStreamer to not have issues with lvalue casts anymore (fixes
8371           #136841)
8372
8373 2004-03-24  Benjamin Otte  <otte@gnome.org>
8374
8375         * gst/gstelement.c:
8376           add documentation about a gobject quirk where the object hasn't the
8377           correct class pointer set on initialization
8378         * gst/schedulers/gstbasicscheduler.c:
8379         (gst_basic_scheduler_src_wrapper):
8380           make sure to not run into an infinite loop
8381
8382 2004-03-22  Benjamin Otte  <otte@gnome.org>
8383
8384         * gst/gstutils.c: (gst_util_dump_mem):
8385         * gst/gstutils.h:
8386           first argument of gst_util_dump_mem should be const
8387
8388 2004-03-22  Johan Dahlin  <johan@gnome.org>
8389
8390         * gst/gstvalue.h: Clean up a little bit.
8391
8392 2004-03-21  Tim-Philipp Müller <t.i.m@zen.co.uk>
8393
8394         reviewed by Benjamin Otte  <otte@gnome.org>
8395
8396         * gst/autoplug/gstspider.c: (gst_spider_dispose):
8397         * gst/elements/gstaggregator.c: (gst_aggregator_finalize),
8398         (gst_aggregator_class_init), (gst_aggregator_init):
8399         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
8400         (gst_filesrc_dispose), (gst_filesrc_set_location):
8401         * gst/elements/gstidentity.c: (gst_identity_finalize),
8402         (gst_identity_class_init), (gst_identity_chain):
8403         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
8404         * gst/elements/gststatistics.c: (gst_statistics_finalize),
8405         (gst_statistics_class_init):
8406         * gst/elements/gsttee.c: (gst_tee_finalize), (gst_tee_class_init),
8407         (gst_tee_get_property):
8408           clean up used memory in this elements correctly on teardown (closes
8409           #137279)
8410
8411 2004-03-20  Colin Walters  <walters@redhat.com>
8412
8413         * gst/registries/gstxmlregistry.c:
8414         (gst_xml_registry_open_func, gst_xml_registry_close_func): Make
8415         registry saving atomic.
8416
8417 2004-03-20  Colin Walters  <walters@redhat.com>
8418
8419         * gst/registries/gstxmlregistry.c (gst_xml_registry_get_perms_func):
8420         Just use
8421         access() instead of actually creating and deleting files.
8422
8423 2004-03-18  David Schleef  <ds@schleef.org>
8424
8425         * configure.ac:  Remove HAVE_ATOMIC_H test, since it's unused.
8426         (bug #137625)
8427
8428 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8429
8430         * po/sv.po: updated translation (Christian Rose)
8431
8432 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8433
8434         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
8435         (gst_filesink_get_query_types), (_do_init),
8436         (gst_filesink_handle_event), (gst_filesink_uri_get_protocols):
8437           return FALSE silently
8438         * po/af.po: updated translation (Petri Jooste)
8439
8440 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8441
8442         * Makefile.am:
8443         * configure.ac:
8444           dist common properly
8445         * po/af.po:
8446         * po/fr.po:
8447         * po/nl.po:
8448         * po/sr.po:
8449         * po/sv.po:
8450           refreshing translations
8451
8452 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8453
8454         * po/LINGUAS:
8455         * po/sv.po:
8456         * po/af.po:
8457           adding Swedish (Christian Rose) and Afrikaans (Petri Jooste)
8458
8459 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8460
8461         * Makefile.am: use common/release.mak
8462
8463 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8464
8465         * docs/faq/gst-uninstalled:
8466           adding gst-monkeysaudio to the list of possible plugin dirs
8467
8468 2004-03-16  David Schleef  <ds@schleef.org>
8469
8470         * gst/gst.c: (gst_get_popt_options), (gst_init_get_popt_table),
8471         (gst_init_check_with_popt_table):  Fix some gettext strings to
8472         make them easier to translate.  Required making the strings
8473         non-const.
8474
8475 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8476
8477         * configure.ac: bump nano to 1
8478
8479 === release 0.8.0 ===
8480
8481 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8482
8483         * configure.ac: release 0.8.0, "Executive Slacks"
8484
8485 2004-03-16  Johan Dahlin  <johan@gnome.org>
8486
8487         * gst/schedulers/gstoptimalscheduler.c
8488         (gst_opt_scheduler_pad_unlink): Remove double ;,
8489         spotted by Scott Wheeler
8490
8491 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8492
8493         * configure.ac: bump libtool version
8494
8495 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8496
8497         * gst/gstcaps.h:
8498         * gst/gststructure.h:
8499           add reserved padding
8500
8501 2004-03-15  Benjamin Otte  <otte@gnome.org>
8502
8503         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
8504           set the first parameter for select call correctly.
8505           (fixes #137230)
8506
8507 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8508
8509         * *.c,*.h: don't mix tabs and spaces
8510
8511 2004-03-15  Johan Dahlin  <johan@gnome.org>
8512
8513         * gst/schedulers/gstoptimalscheduler.c
8514         (gst_opt_scheduler_pad_unlink): Fix bug that causes totem to
8515         crash on MPEG playback. My boolean arithmetic is a bit rusty.
8516
8517         * tools/Makefile.am (EXTRA_DIST): Add gst-indent
8518         
8519 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8520
8521         * testsuite/Rules:
8522           fix gst-register rules
8523
8524 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8525
8526         * testsuite/Rules:
8527           use versioned gst-register
8528
8529 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8530
8531         * docs/libs/gstreamer-libs-sections.txt:
8532           remove </SUBSECTION>
8533         * gst/gstplugin.c:
8534         * gst/gstregistry.c: (gst_registry_add_plugin):
8535         * gst/registries/gstxmlregistry.c: (gst_xml_registry_get_type),
8536         (gst_xml_registry_open_func), (gst_xml_registry_close_func):
8537           add debugging and fix some comment blocks
8538
8539 2004-03-15  Johan Dahlin  <johan@gnome.org>
8540
8541         * *.h: Revert indent changes.
8542         
8543 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8544
8545         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load_plugin):
8546           g_error_free the g_error
8547         * tools/gst-feedback-m.m:
8548           check for other versions of gstreamer
8549         * tools/gst-indent:
8550           use sh, not bash
8551
8552 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8553
8554         * tools/gst-register.c: do not spill paths when registries are not
8555           writable, until we fix the "user running gst-register" case.
8556
8557 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8558
8559         * *.c, *.h: commit of gst-indent run on core
8560
8561 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8562
8563         * tools/gst-indent:
8564         * tools/Makefile.am:
8565           add our indentation style as a script
8566
8567 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8568
8569         * po/sr.po:
8570         * po/LINGUAS:
8571           added Serbian translation
8572
8573 2004-03-13  Benjamin Otte  <otte@gnome.org>
8574
8575         * gst/gstelement.c:
8576           add documentation note about gst_element_found_tags_for_pad not
8577           being usable in getfunctions. (see #137042)
8578
8579 2004-03-12  David Schleef  <ds@schleef.org>
8580
8581         * gst/gstcaps.h: jdahlin, what are you smoking?  We can't just
8582         change API right now!  Readd gst_caps_is_simple() macro.
8583         * gst/gstelement.c: (gst_element_base_class_finalize): Fix
8584         uninitialized variable.  I'd bet this caused crashes.
8585         * gst/gstinfo.c: (gst_debug_print_object):  Fix 64-bit cleanliness.
8586
8587 2004-03-12  Johan Dahlin  <johan@gnome.org>
8588
8589         * gst/gstcaps.h (GST_CAPS_IS_SIMPLE): Capitalize macro
8590         * gst/gstcaps.h: Clean up
8591
8592         * gst/gst.c (init_post): call gst_caps_get_type() instead of
8593         _gst_caps_initalize()
8594
8595         * gst/gstcaps.c: Style fixes, stay closer to glib and friends
8596         (_gst_caps_initialize): Remove, in favor for gst_caps_get_type()
8597
8598         * gst/gststructure.c (gst_structure_get_type): Ditto
8599
8600         * gst/gststructure.h: Ditto
8601         
8602 2004-03-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8603
8604         * gst/gstqueue.c: (gst_queue_init):
8605           Reset default max. values in queues. Reason is simply to avoid
8606           braindead use. If you want wider values, use the properties. The
8607           default is supposed to always work. Wider values would make this
8608           beast a memory hog by default (250 full-PAL RGB32 video frames?
8609           That's 440 MB! No thank you).
8610
8611 2004-03-10  David Schleef  <ds@schleef.org>
8612
8613         * tools/gst-run.c: (main):  Fix crash when no relevant tools
8614         were found.  (bug #136793)
8615
8616 2004-03-10  Johan Dahlin  <johan@gnome.org>
8617
8618         * gst/schedulers/gstoptimalscheduler.c
8619         (gst_opt_scheduler_pad_unlink): Implement unlink for elements with
8620         links to elements within the same group, so we can finally remove
8621         that annoying warning. Refactor the code a little bit
8622         (group_dec_links_for_element): Split out
8623
8624 2004-03-09  David Schleef  <ds@schleef.org>
8625
8626         * docs/manual/dparams-app.xml:  Fix to handle double dparams.
8627         (bug #134863)
8628
8629 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8630
8631         * configure.ac: first bug fix due to major/minor bump
8632
8633 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8634
8635         * configure.ac: bump nano to 1
8636
8637 === release 0.7.6 ===
8638
8639 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8640
8641         * NEWS:
8642         * RELEASE:
8643         * configure.ac:
8644           releasing 0.7.6, "Almost"
8645         * po/fr.po:
8646         * po/nl.po:
8647         * tools/Makefile.am:
8648         * tools/gst-feedback-m.m:
8649           unversioned source
8650
8651 2004-03-09  Johan Dahlin  <johan@gnome.org>
8652
8653         Reviewed by: Thomas Vander Stichele
8654
8655         * gst/gstelement.c (gst_element_class_init): register second
8656         parameter as GST_TYPE_G_ERROR instead of G_TYPE_POINTER, so
8657         language bindings can (de)marshall correctly.
8658
8659         * gst/gsterror.h: Add GST_TYPE_G_ERROR and cleanup a little bit
8660
8661         * gst/gsterror.c (gst_g_error_get_type): New function
8662
8663         * gst/gstmarshal.list: Remove VOID:OBJECT,POINTER,STRING, replace
8664         with VOID:OBJECT,OBJECT,STRING 
8665
8666 2004-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
8667
8668         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
8669         Free a leaked g_timer on early returns.
8670
8671 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8672
8673         * docs/pwg/advanced-types.xml:
8674           Add cinepak description.
8675
8676 2004-03-07  David Schleef  <ds@schleef.org>
8677
8678         * docs/random/mimetypes:  Added cinepak description
8679
8680 2004-03-07  Andy Wingo  <wingo@pobox.com>
8681
8682         * gst/gstbin.c (gst_bin_remove): Debugging fixes.
8683
8684         * gst/schedulers/gstoptimalscheduler.c (destroy_group): Assert
8685         there are no links to other groups when a group is destroyed.
8686         (gst_opt_scheduler_pad_unlink): If the unlink means an element is
8687         removed from a group, make sure the link count to elements linked
8688         to other pads is appropriately decremented. This really fixes
8689         #135672.
8690
8691         The 1.60->1.61 patch has been reapplied in light of this fix.
8692
8693         * gst/gstelement.c (gst_element_dispose): Really protect against
8694         multiple invocations this time.
8695
8696 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8697
8698         * docs/gst/gstreamer-sections.txt:
8699         * docs/gst/tmpl/gsttag.sgml:
8700           remove some deprecated functions, document some existing ones
8701         * gst/gsttag.c: (gst_tag_get_flag):
8702         * gst/gsttag.h:
8703           add accessor function
8704
8705 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8706
8707         * docs/gst/gstreamer-sections.txt:
8708         * docs/gst/tmpl/gsttag.sgml:
8709         * docs/gst/tmpl/gstxml.sgml:
8710         * gst/gsttag.c: (gst_tag_get_flag):
8711         * gst/gsttag.h:
8712
8713 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
8714
8715         * gst/autoplug/gstspider.c: (gst_spider_identity_plug): fixed caps
8716         leak
8717
8718 2004-03-05  David Schleef  <ds@schleef.org>
8719
8720         * REQUIREMENTS: Add bison and flex.
8721         * configure.ac: Fix comment about bison.
8722         * docs/random/ds/0.9-suggested-changes: yer ma
8723         * tools/gst-inspect.c: (print_element_info):  Fix warning.
8724
8725 2004-03-05  Benjamin Otte  <otte@gnome.org>
8726
8727         * gst/gstelement.c: (gst_element_error_full):
8728           revert recent recursive state changing commit - messing with other
8729           elements' states is evil and should be done by apps only.
8730
8731 2004-03-05  Benjamin Otte  <otte@gnome.org>
8732
8733         * gst/gstelement.c: (gst_element_get_compatible_pad_template):
8734           check for empty intersection instead of NULL caps
8735         (gst_element_get_compatible_pad_filtered):
8736           remove old workaround that is only a bug nowadays
8737
8738 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8739
8740         * gst/gstelement.c: (gst_element_error_full):
8741           make elements try to recursively change state to PAUSED on all
8742           parents after an error to suppress ensuing warnings
8743         * gst/parse/grammar.y:
8744           make it check if it was able to sync the state, and throw an error
8745           if not, so stuff like
8746           oggdemux ! vorbisdec ! osssink gets caught
8747
8748 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8749
8750         * configure.ac: use ${libdir} for PLUGINS_DIR since on 64bit
8751           it contains lib64; use AS_AC_EXPAND to handle it properly
8752
8753 2004-03-05  David Schleef  <ds@schleef.org>
8754
8755         * gst/gstcpuid_i386.s:  Remove unused code
8756         * libs/gst/getbits/getbits.c: (gst_getbits_init),
8757         (gst_getbits_newbuf): Remove MMX code
8758         * libs/gst/getbits/getbits.h: Remove MMX code
8759
8760 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
8761
8762         * debian/.cvsignore:
8763         * debian/README.Debian:
8764         * debian/changelog:
8765         * debian/control:
8766         * debian/control.in:
8767         * debian/copyright:
8768         * debian/gstreamer-core-libs-dev.files:
8769         * debian/gstreamer-core-libs.files:
8770         * debian/gstreamer-core.files:
8771         * debian/gstreamer-core.postinst:
8772         * debian/gstreamer-core.postrm:
8773         * debian/gstreamer-doc.files:
8774         * debian/gstreamer-doc.links:
8775         * debian/gstreamer-doc.lintian:
8776         * debian/gstreamer-runtime.files:
8777         * debian/gstreamer-runtime.manpages:
8778         * debian/gstreamer-runtime.postinst:
8779         * debian/gstreamer-runtime.postrm:
8780         * debian/gstreamer-tools.files:
8781         * debian/gstreamer-tools.manpages:
8782         * debian/libgstreamer-dev.files:
8783         * debian/libgstreamer0.4.1.files:
8784         * debian/libgstreamerVERSION.files:
8785         * debian/rules:
8786         Debian package info not maintained here.
8787
8788 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
8789
8790         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
8791         * gst/gstbin.c: (gst_bin_class_init):
8792         * gst/gstelement.c: (gst_element_class_init):
8793         * gst/gstindex.c: (gst_index_class_init):
8794         * gst/gstobject.c: (gst_object_class_init),
8795         (gst_signal_object_class_init):
8796         * gst/gstpad.c: (gst_pad_template_class_init):
8797         * gst/gstregistry.c: (gst_registry_class_init):
8798         * gst/gsturi.c: (gst_uri_handler_base_init):
8799         * gst/gstxml.c: (gst_xml_class_init):
8800         * libs/gst/control/dparam.c: (gst_dparam_class_init):
8801         * libs/gst/control/dparammanager.c: (gst_dpman_class_init):
8802           make all signal names use dashes instead of underscore
8803
8804 2004-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
8805
8806         * configure.ac: AC_SUBST GLIB_ONLY CFLAGS and LIBS
8807
8808 2004-03-03  Benjamin Otte  <otte@gnome.org>
8809
8810         * gst/schedulers/gstoptimalscheduler.c:
8811           revert last commit by Andy Wingo. It causes segfaults on unreffing
8812           in Rhythmbox. (see bug #135672)
8813
8814 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8815
8816         * po/fr.po: fix typo
8817
8818 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8819
8820         * tools/gst-inspect.c: (main): 
8821         * tools/gst-launch.c: (main): add calls to bind_textdomain_codeset
8822
8823 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8824
8825         * configure.ac:
8826           get GLIB_ONLY and POPT flags for the nonversioned binaries
8827         * tools/Makefile.am:
8828           use them
8829
8830 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8831
8832         * gst/gst.c: (init_post):
8833           change so that GST_REGISTRY now is where the global registry gets
8834           saved, since that is where plugins now get attached to first, and
8835           spilled over to the user registry.  Note that in the case of using
8836           GST_REGISTRY env var, we don't want to affect any real registries
8837           beyond the one given by this var, and thus we don't set a user
8838           registry to spill to.  So make sure GST_REGISTRY is writable.
8839
8840 2004-03-01  David Schleef  <ds@schleef.org>
8841
8842         * AUTHORS:  Added some names.  Add yourself if you're missing.
8843
8844 2004-03-01  David Schleef  <ds@schleef.org>
8845
8846         * MAINTAINERS: Add
8847
8848 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
8849
8850         * configure.ac:
8851           remove whitespace
8852         * docs/gst/tmpl/gstbuffer.sgml:
8853         * docs/gst/tmpl/gstdata.sgml:
8854         * docs/gst/tmpl/gstreamer-unused.sgml:
8855         * docs/gst/tmpl/gstxml.sgml:
8856           doc update
8857         * docs/manuals.mak:
8858           add a FIXME
8859         * docs/pwg/intro-preface.xml:
8860         * docs/pwg/pwg.xml:
8861           remove GNOME
8862         * gst/gst.c: (init_post):
8863           try GST_PLUGIN_PATH paths for the _global_registry first
8864         * gst/gstelement.h:
8865           add the error message as well, otherwise (null) debug info doesn't
8866           make much sense
8867         * tools/gst-register.c: (main):
8868           spill paths to next registry if this registry is not writable
8869         * po/fr.po:
8870         * po/nl.po:
8871           translation updates
8872
8873 2004-03-01  Johan Dahlin  <johan@gnome.org>
8874
8875         * gst/gstbuffer.c (_gst_buffer_initialize): 
8876         * gst/gstdata.c (gst_data_get_type): 
8877         * gst/gstevent.c (_gst_event_initialize): Use gst_data_copy,
8878         instead of ref, since some applications that uses GBoxed
8879         routines depends on a function that actually returns a copy.
8880
8881 2004-02-27  Benjamin Otte  <otte@gnome.org>
8882
8883         * gst/gstbuffer.h:
8884           remove gst_buffer_free, use gst_data_unref
8885         * gst/gstdata.c: (gst_data_get_type):
8886           use refcounting in GstData GBoxed registration
8887         * gst/gstdata.h:
8888           remove gst_data_free, use gst_data_unref
8889
8890 2004-02-27  Johan Dahlin  <johan@gnome.org>
8891
8892         * gst/gstdata.c (gst_data_get_type): New function, register
8893         GstData as a GBoxed type.
8894
8895         * gst/gstdata.h (GST_TYPE_DATA): New macro
8896
8897 2004-02-27  Thomas Vander Stichele  <thomas at apestaart dot org>
8898
8899         * Makefile.am:
8900         * gstreamer.spec.in:
8901           put back RELEASE
8902         * gst/Makefile.am:
8903           clean up non-disting of built files
8904         * testsuite/debug/commandline.c:
8905           test fix for option rename
8906
8907 2004-02-26  David Schleef  <ds@schleef.org>
8908
8909         * configure.ac:  We don't really need glib-2.3.  Also remove
8910         some unneeded checks for library functions.
8911         * gst/Makefile.am:  Instead, we need to not dist files created
8912         by glib-genmarshal.
8913
8914 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8915
8916         * configure.ac:
8917           bump glib required version to 2.3.0 for g_value_takes_boxed
8918
8919  2004-02-25  Christian Fredrik Kalager Schaller <uraeus@gnome.org>
8920
8921         * common/m4/gst-docs.m4
8922         change flavour text from enable to disable as enable is our default
8923         closes bug Bug 135304
8924
8925 === release 0.7.5 ===
8926  
8927  2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8928  
8929         * NEWS:
8930           instate NEWS file
8931         * Makefile.am:
8932         * gstreamer.spec.in:
8933         * RELEASE:
8934           put back release
8935         * configure.ac:
8936         * docs/random/release:
8937           more updates
8938
8939 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8940
8941         * gst/gsttag.c: (_gst_tag_initialize):
8942         * po/fr.po:
8943         * po/nl.po:
8944           remove hyphen from codec tags
8945
8946 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8947
8948         * gst/parse/Makefile.am:
8949           fix dependency so that a make from a clean build works the first
8950           time
8951
8952 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
8953
8954         * docs/random/release:
8955           update release strategy
8956         * po/fr.po:
8957           auto-update po file
8958         * po/nl.po:
8959           update dutch translation
8960
8961 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
8962
8963         * docs/manual/debugging.xml:
8964         fix manual for new debugging system
8965
8966 2004-02-25  Andy Wingo  <wingo@pobox.com>
8967
8968         * gst/gstpad.c (gst_pad_link_prepare): Re-add
8969         gst_pad_link_prepare. Please email the list with specific reasons
8970         for reverting.
8971
8972 2004-02-24  Andy Wingo  <wingo@pobox.com>
8973
8974         * gst/gstelement.c (gst_element_dispose): Protect against multiple
8975         invocations.
8976
8977         * gst/schedulers/gstoptimalscheduler.c:
8978         I added a mess of prototypes at the top of the file by way of
8979         documentation. Some of the operations on chains and groups were
8980         re-organized.
8981
8982         (create_group): Added a type argument so if the group is enabled,
8983         the setup_group_scheduler knows what to do.
8984         (group_elements): Added a type argument here, too, to be passed on
8985         to create_group.
8986         (group_element_set_enabled): If an unlinked PLAYING element is
8987         added to a bin, we have to create a new group to hold the element,
8988         and this function will be called before the group is added to the
8989         chain. Thus we have a valid case for group->chain==NULL. Instead
8990         of calling chain_group_set_enabled, just set the flag on the group
8991         (the chain's status will be set when the group is added to it).
8992         (gst_opt_scheduler_state_transition, chain_group_set_enabled):
8993         Setup the group scheduler when the group is enabled, not
8994         specifically when an element goes PAUSED->PLAYING. This means
8995         PLAYING elements can be added, linked, and scheduled into a
8996         PLAYING pipeline, as was intended.
8997         (add_to_group): Don't ref the group twice. I don't know when this
8998         double-ref got in here. Removing it has the potential to cause
8999         segfaults if other parts of the scheduler are buggy. If you find
9000         that the scheduler is segfaulting for you, put in an extra ref
9001         here and see if that hacks over the underlying issue. Of course,
9002         then find out what code is unreffing a group it doesn't own...
9003         (create_group): Make the extra refcount floating, and remove it
9004         after adding the element. This means that...
9005         (unref_group): Destroy when the refcount reaches 0, not 1, like
9006         every other refcounted object in the known universe.
9007         (remove_from_group): When a group becomes empty, set it to be not
9008         active, and remove it from its chain. Don't unref it again,
9009         there's no floating reference any more.
9010         (destroy_group): We have to remove the group from the chain in
9011         remove_from_group (rather than here) to break refcounting cycles
9012         (the chain always has a ref on the group). So assert that
9013         group->chain==NULL.
9014         (ref_group_by_count): Removed, it was commented out anyway.
9015         (merge_chains): Use the remove_from_chain and add_to_chain
9016         primitives to do the reparenting, instead of rolling our own
9017         implementation.
9018         (add_to_chain): The first non-disabled group in the chain's group
9019         list will be the entry point for the chain. Because buffers can
9020         accumulate in loop elements' peer bufpens, we preferentially
9021         schedule loop groups before get groups to avoid unnecessary
9022         execution of get-based groups when the bufpens are already full.
9023         (gst_opt_scheduler_schedule_run_queue): Debug fixes.
9024         (get_group_schedule_function): Ditto.
9025         (loop_group_schedule_function): Ditto.
9026         (gst_opt_scheduler_loop_wrapper): Ditto.
9027         (gst_opt_scheduler_iterate): Ditto.
9028
9029         I understand the opt scheduler now, yippee!
9030
9031         * gst/gstpad.c: All throughout, added FIXMEs to look at for 0.9.
9032         (gst_pad_get_name, gst_pad_set_chain_function) 
9033         (gst_pad_set_get_function, gst_pad_set_event_function) 
9034         (gst_pad_set_event_mask_function, gst_pad_get_event_masks) 
9035         (gst_pad_get_event_masks_default, gst_pad_set_convert_function) 
9036         (gst_pad_set_query_function, gst_pad_get_query_types) 
9037         (gst_pad_get_query_types_default) 
9038         (gst_pad_set_internal_link_function) 
9039         (gst_pad_set_formats_function, gst_pad_set_link_function) 
9040         (gst_pad_set_fixate_function, gst_pad_set_getcaps_function) 
9041         (gst_pad_set_bufferalloc_function, gst_pad_unlink) 
9042         (gst_pad_renegotiate, gst_pad_set_parent, gst_pad_get_parent) 
9043         (gst_pad_add_ghost_pad, gst_pad_proxy_getcaps) 
9044         (gst_pad_proxy_pad_link, gst_pad_proxy_fixate) 
9045         (gst_pad_get_pad_template_caps, gst_pad_check_compatibility) 
9046         (gst_pad_get_peer, gst_pad_get_allowed_caps) 
9047         (gst_pad_alloc_buffer, gst_pad_push, gst_pad_pull) 
9048         (gst_pad_selectv, gst_pad_select, gst_pad_template_get_caps) 
9049         (gst_pad_event_default_dispatch, gst_pad_event_default) 
9050         (gst_pad_dispatcher, gst_pad_send_event, gst_pad_convert_default) 
9051         (gst_pad_convert, gst_pad_query_default, gst_pad_query) 
9052         (gst_pad_get_formats_default, gst_pad_get_formats): Better
9053         argument checks, and some doc fixes.
9054
9055         (gst_pad_custom_new_from_template): Um, does anyone
9056         use these functions? Actually make a custom pad instead of a
9057         normal one.
9058         (gst_pad_try_set_caps): Transpose some checks.
9059         (gst_pad_try_set_caps_nonfixed): Same, and use a macro to check if
9060         the pad is in negotiation.
9061         (gst_pad_try_relink_filtered): Use pad_link_prepare.
9062         
9063         * gst/gstelement.c: Remove prototypes also defined in gstclock.h.
9064
9065         * gst/gstelement.h: 
9066         * gst/gstclock.h: Un-deprecate the old clocking API, as discussed
9067         on the list.
9068
9069 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9070
9071         * gst/gstbin.c: (gst_bin_add):
9072           add error for not being able to add elements
9073
9074 2004-02-22  Julien MOUTTE <julien@moutte.net>
9075
9076         * gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
9077         audio-codec and video-codec.
9078
9079 2004-02-22  Benjamin Otte  <otte@gnome.org>
9080
9081         reported by: Padraig O'Briain <padraig.obriain@sun.com>
9082
9083         * autogen.sh:
9084           replace test -e with test -x for mkinstalldirs to be more portable.
9085           (fixes #134816)
9086
9087 2004-02-22  Benjamin Otte  <otte@gnome.org>
9088
9089         * gst/gstpad.c:
9090           revert last patch from Andy, it makes gst_pad_can_link_filtered much
9091           too noisy
9092         * gst/gsttag.c: (_gst_tag_initialize):
9093         * gst/gsttag.h:
9094           add GST_TAG_ALBUM_VOLUME_{COUNT,NUMBER}
9095         * libs/gst/control/dparam.c: (gst_dparam_attach):
9096         * libs/gst/control/dparammanager.c: (gst_dpman_attach_dparam):
9097           check that types for attached dparams match
9098
9099 2004-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9100
9101         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
9102         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
9103         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
9104           fix errors
9105
9106 2004-02-20  Andy Wingo  <wingo@pobox.com>
9107
9108         * gst/gstbin.c:
9109         * gst/gstbuffer.c:
9110         * gst/gstplugin.c:
9111         * gst/registries/gstxmlregistry.c: 
9112         * gst/schedulers/gstoptimalscheduler.c: Debugging tweaks.
9113
9114         * gst/gstelement.c (gst_element_set_scheduler): Debugging fixes.
9115         (gst_element_add_pad): DEBUG->INFO, some fixes.
9116         (gst_element_get_compatible_pad_template): Just see if the
9117         templates' caps intersect, not if one is a strict subset of the
9118         other. This conforms more to what gst_pad_link_intersect() does.
9119         (gst_element_class_add_pad_template): Don't memcpy the pad
9120         template, just ref it.
9121         (gst_element_get_compatible_pad_filtered): Clean up debug messages
9122
9123         * gst/gstpad.c (gst_pad_can_link_filtered): Debug a true result.
9124         (gst_pad_link_filtered): Debug changes.
9125         (gst_pad_link_prepare): New function, consolidated from
9126         can_link_filtered and link_filtered.
9127
9128         * gst/parse/grammar.y (gst_parse_perform_link): Made INFO output
9129         look more like that of the functions in gstelement.c
9130
9131         * gst/gstinfo.c (gst_debug_print_object): Put a space before the
9132         object, and return the empty string if object is NULL.
9133
9134         * gst/parse/parse.l: Remove trailing newlines when calling PRINT.
9135         * gst/parse/grammar.y (YYFPRINTF): Log bison debugging info via
9136         LOG, not DEBUG. We still get flex info on debug.
9137
9138         * gst/registries/gstxmlregistry.c (gst_xml_registry_load): Make
9139         debug string more verbose.
9140         (plugin_times_older_than): DEBUG->LOG.
9141
9142 2004-02-20  Julien MOUTTE <julien@moutte.net>
9143
9144         * gst/gsttag.h: Adding video-codec and audio-codec for demuxers which
9145         will emit found_tag for each stream they demux with the codec.
9146
9147 2004-02-20  Benjamin Otte  <otte@gnome.org>
9148
9149         * gst/gstevent.c: (_gst_event_copy), (_gst_event_free):
9150           copy navigation event correctly. Check freeing tag lists. 
9151         * gst/gstthread.c: (gst_thread_change_state):
9152           don't abort() on state changing mess - it might happen because of
9153           bugs.
9154         * gst/gstvalue.c: (gst_value_set_caps), (gst_value_get_caps):
9155           use boxed functions
9156         * gst/gstvalue.h:
9157           fix GST_VALUE_HOLDS_CAPS
9158
9159 2004-02-19  David Schleef  <ds@schleef.org>
9160
9161         * gst/gstinfo.h:  Copy G_STRFUNC implementation from glib-2.4
9162         and use it for GST_FUNCTION.  (bug #134750)
9163
9164 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9165
9166         * po/fr.po:
9167         * po/nl.po:
9168           updating translations
9169
9170 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9171
9172         * tools/gst-run.c: (get_candidates), (main): some fixes from jdahlin
9173
9174 2004-02-18  kost@imn.htwk-leipzig.de
9175
9176         reviewed by: David Schleef  <ds@schleef.org>
9177
9178         * docs/libs/gstreamer-libs-sections.txt:  Add missing sections
9179         for libgstcontrol.
9180
9181 2004-02-18  David Schleef  <ds@schleef.org>
9182
9183         * libs/gst/control/dparam.c: (gst_dparam_class_init):
9184         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9185         (gst_dpsmooth_new): Additional fixes to get double dparams working.
9186         * tools/gst-inspect.c: (print_element_info): Support dumping of
9187         double dparam information.
9188
9189 2004-02-17  David Schleef  <ds@schleef.org>
9190
9191         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
9192         Use G_TYPE_STRING in signal prototype instead of G_TYPE_POINTER.
9193         * gst/elements/gsttypefind.c: (gst_type_find_element_class_init):
9194         Use GST_TYPE_CAPS in signal prototype.
9195         * gst/gstcaps.c: (_gst_caps_initialize), (gst_caps_copy_conditional):
9196         Convert GST_TYPE_CAPS to boxed.
9197         * gst/gstelement.c: (gst_element_class_init):
9198         Use GST_TYPE_TAG_LIST in signal prototype.
9199         * gst/gstindex.c: (gst_index_class_init):
9200         * gst/gstindex.h:
9201         Add GST_TYPE_INDEX_ENTRY type.
9202         * gst/gstmarshal.list:
9203         Add necessary marshal types.
9204         * gst/gstpad.c: (gst_real_pad_class_init),
9205         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
9206         (gst_pad_recover_caps_error):
9207         Use GST_TYPE_CAPS in signal prototypes.  Fix some debugging strings.
9208         * gst/gststructure.c: (_gst_structure_initialize),
9209         (gst_structure_copy), (_gst_structure_copy_conditional):
9210         * gst/gststructure.h:
9211         Convert GST_TYPE_STRUCTURE to boxed.
9212         * gst/gsttag.c: (gst_tag_list_get_type):
9213         * gst/gsttag.h:
9214         Add GST_TYPE_TAG_LIST type.
9215
9216 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9217
9218         * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
9219         to what we agreed with david.
9220         * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
9221
9222 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9223
9224         * po/nl.po: update translation
9225
9226 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9227
9228         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
9229           throw an error if spider is trying to play a mime type there is
9230           no decoder for
9231         * po/POTFILES.in:
9232           add gst/autoplug/gstspider.c for translation
9233
9234 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9235
9236         * gst/gstpad.c: (gst_pad_try_set_caps): We are nice people. Return 
9237         silently when the pad is negotiating.
9238
9239 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9240
9241         * docs/faq/Makefile.am:
9242           add script to run gstreamer uninstalled 
9243         * docs/faq/faq.xml:
9244         * docs/faq/developing.xml:
9245         * docs/faq/gst-uninstalled:
9246           extract script to run gstreamer uninstalled
9247         * docs/manuals.mak:
9248           add EXTRA_SOURCES variable for Makefile.am's to set to
9249           use additional SOURCE files for the doc build
9250
9251 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9252
9253         * gst/gstatomic_impl.h: Fedora 2 test package patch for S390
9254
9255 2004-02-15  Julien MOUTTE  <julien@moutte.net>
9256
9257         * gst/gstbin.c: (gst_bin_change_state), (gst_bin_iterate): Fix a big
9258         bug that was breaking pipelines like sinesrc ! { queue ! osssink } when
9259         an error was thrown by osssink. Basically a state change failure for
9260         an element in a different scheduling group was considered as
9261         successful, which means that caps nego was going on and weird stuff
9262         happened. Like I wrote in the comment there, if someone wants to
9263         revert that please drop me a mail explaining why because I really see
9264         no point in keeping that broken behaviour there.
9265         * gst/gstqueue.c: (gst_queue_get): Add a safety check as the queue CAN
9266         be empty, we then return NULL which will trigger a nice error when 
9267         pulling from the pad.
9268
9269 2004-02-13  David Schleef  <ds@schleef.org>
9270
9271         * libs/gst/control/dparam.c: (gst_dparam_class_init),
9272         (gst_dparam_get_property), (gst_dparam_set_property),
9273         (gst_dparam_do_update_default):
9274         * libs/gst/control/dparam.h:
9275         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9276         (gst_dpsmooth_new), (gst_dpsmooth_set_property),
9277         (gst_dpsmooth_get_property), (gst_dpsmooth_value_changed_double),
9278         (gst_dpsmooth_do_update_double):
9279         * libs/gst/control/dparam_smooth.h:
9280         * libs/gst/control/dparammanager.c:
9281         (gst_dpman_inline_direct_update):
9282         Add support for double dparams.
9283
9284 2004-02-13  David Schleef  <ds@schleef.org>
9285
9286         * gst/elements/gstfdsrc.c: (gst_fdsrc_get): Use GST_TIME_TO_TIMEVAL()
9287         * gst/gstclock.h: Avoid using 64-bit % operator (slow!)
9288
9289 2004-02-13  Mattias Wadman  <mattias@sudac.org>
9290
9291         reviewed by: David Schleef  <ds@schleef.org>
9292
9293         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
9294         (gst_fdsrc_init), (gst_fdsrc_set_property),
9295         (gst_fdsrc_get_property), (gst_fdsrc_get):
9296         * gst/elements/gstfdsrc.h:  Adds timeout property to fdsrc,
9297         and sends an EOS event if file descriptor reading times out.
9298
9299 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9300
9301         * configure.ac:
9302           add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
9303
9304 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9305
9306         * configure.ac: pass required libxml version as argument
9307         (bug reported by Christophe Fergeau)
9308
9309 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9310   
9311         * docs/gst/gstreamer-docs.sgml:
9312         * docs/gst/tmpl/gstxml.sgml:
9313         * docs/libs/gstreamer-libs-docs.sgml:
9314           version API docs
9315
9316 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9317
9318         * gst/gstinfo.c:
9319         * gst/gstregistrypool.c: (gst_registry_pool_plugin_filter),
9320         (gst_registry_pool_feature_filter):
9321         * gst/gstthread.c: (gst_thread_class_init):
9322         * gst/gstvalue.c:
9323           add includes exposed by building without libxml
9324         * gst/indexers/Makefile.am:
9325           do not build fileindex when LOADSAVE disabled; we should have
9326           a better libxml check later since fileindex depends on xml, not
9327           LOADSAVE or REGISTRY
9328         * libs/gst/control/Makefile.am:
9329           link with m
9330         * tools/Makefile.am:
9331           fix wrong source code for gst-xmlinspect
9332
9333 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9334
9335         * configure.ac:
9336           fix gcov help output
9337           move calls to and use new GST_CHECK_DISABLE_SUBSYSTEM
9338         * docs/random/release:
9339           some updated releasing notes
9340         * gstreamer.spec.in:
9341           more updates
9342
9343 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9344
9345         * docs/faq/faq.xml:
9346         * docs/manual/manual.xml:
9347         * docs/pwg/pwg.xml:
9348         * docs/pwg/titlepage.xml:
9349           put version in documentation
9350
9351 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9352
9353         * tools/Makefile.am: fix man page installation
9354
9355 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9356
9357         * configure.ac:
9358           don't check for libxml when load/save and registry disabled (#105844)
9359         * gstreamer.spec.in:
9360           sync with fedora candidate spec
9361
9362 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9363
9364         * po/fr.po:
9365         * po/nl.po:
9366           replace multidisksrc with multifilesrc
9367
9368 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9369
9370         * po/POTFILES.in:
9371           update to multidisksrc => multifilesrc file renaming (#134145)
9372
9373 2004-02-11  David Schleef  <ds@schleef.org>
9374
9375         * docs/gst/tmpl/gstcaps.sgml:  Fix stuff that mentions GstProps
9376         * docs/gst/tmpl/gstpadtemplate.sgml: same
9377         * docs/gst/tmpl/gstreamer-unused.sgml: Remove GstProps
9378         * gst/gstobject.c: (gst_object_set_name_default): Do the memleak
9379         fixing dance.
9380         * gst/gstutils.c: Remove disabled code that uses GstProps.
9381         * gst/registries/gstxmlregistry.h: same
9382         * docs/random/ds/0.9-suggested-changes: random notes
9383
9384 2004-02-11  kost@imn.htwk-leipzig.de
9385
9386         reviewed by: David Schleef  <ds@schleef.org>
9387
9388         * gst/gstclock.c: (gst_clock_entry_new): fixes structure
9389         initialisation of clock (bug #134128)
9390
9391 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9392
9393         * configure.ac:
9394         * gst/elements/Makefile.am:
9395         * gst/elements/gstelements.c:
9396         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
9397         (gst_multifilesrc_class_init), (gst_multifilesrc_init),
9398         (gst_multifilesrc_set_property), (gst_multifilesrc_get_property),
9399         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
9400         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
9401         * gst/elements/gstmultifilesrc.h:
9402           rename multidisksrc to multifilesrc (part of #122200)
9403
9404 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9405
9406         * docs/manuals.mak:
9407           fix automake complaints
9408         * gst-element-check.m4:
9409           fix unquotedness
9410
9411 2004-02-11  David Schleef  <ds@schleef.org>
9412
9413         * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
9414         * gst/gstatomic_impl.h: Disable sparc implementation.
9415
9416 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9417
9418         * gst-element-check.m4:
9419           fix underquoted macros as reported by automake 1.8.x (#133800)
9420         * configure.ac:
9421           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
9422           by autopoint (fixes #132996)
9423
9424 2004-02-10  Andy Wingo  <wingo@pobox.com>
9425
9426         * gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
9427         way to do inheritance.
9428         (gst_pad_get_event_masks, gst_pad_get_event_masks_default) 
9429         (gst_pad_get_query_types, gst_pad_get_query_types_default):
9430         Routine docs.
9431         (gst_pad_set_link_function, gst_pad_set_fixate_function) 
9432         (gst_pad_set_getcaps_function): Doc from Dave's negotation random
9433         doc.
9434         (gst_pad_unlink, gst_pad_is_linked): Docs.
9435         (gst_pad_renegotiate): A brief description of capsnego.
9436         (gst_pad_try_set_caps): Document.
9437         (gst_pad_try_set_caps_nonfixed): Document.
9438         (gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
9439         (gst_pad_set_parent): Deprecated (although not out of the API).
9440         (gst_pad_get_parent): Deprecated, although many plugins use this.
9441         (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
9442         are private and will go away in 0.9.
9443         (gst_pad_perform_negotiate): Doc.
9444         (gst_pad_link_unnegotiate): I think this is meant to be static.
9445         (gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps) 
9446         (gst_pad_template_get_caps_by_name, gst_pad_check_compatibility) 
9447         (gst_pad_get_peer): Doc updates.
9448         (gst_pad_caps_change_notify): Doc.
9449         (gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get) 
9450         (gst_ghost_pad_new): Doc fixes.
9451
9452         * gst/gstobject.c (gst_object_get_parent, gst_object_unparent) 
9453         (gst_object_check_uniqueness): 
9454
9455         * gst/gstelement.c (gst_element_add_pad) 
9456         (gst_element_add_ghost_pad, gst_element_remove_pad) 
9457         (gst_element_remove_ghost_pad, gst_element_get_pad) 
9458         (gst_element_get_static_pad, gst_element_get_pad_list) 
9459         (gst_element_class_get_pad_template_list) 
9460         (gst_element_class_get_pad_template): Work on the docs.
9461         (gst_element_get_pad_template_list): Uses the class method.
9462         (gst_element_get_compatible_pad_template): Docs, and consolidate
9463         some test conditions. 
9464         (gst_element_get_pad_from_template): New static function.
9465         (gst_element_request_compatible_pad): Docs, and work with
9466         non-request compatible templates. 
9467         (gst_element_get_compatible_pad_filtered): Docs and remove
9468         redundant checks.
9469         (gst_element_get_compatible_pad, gst_element_link_pads_filtered) 
9470         (gst_element_link_filtered, gst_element_link_many) 
9471         (gst_element_link, gst_element_link_pads) 
9472         (gst_element_unlink_many): Docs.
9473
9474 2004-02-05  Andy Wingo  <wingo@pobox.com>
9475
9476         * gst/gstpad.c (_gst_real_pad_fixate_accumulator):
9477         s/pointer/boxed/.
9478
9479         * gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
9480
9481         * gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
9482         marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
9483         with the type=GST_TYPE_CAPS. This allows language bindings to know
9484         what kind of data they're dealing with.
9485
9486         * gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
9487         to NULL when g_value_init is called. GstCaps, which rolls its own
9488         type implementation, now does the same instead of allocating empty
9489         caps.
9490         (_gst_caps_initialize, _gst_caps_collect_value,
9491         _gst_caps_lcopy_value): Provide collect_value and lcopy_value type
9492         table methods. This allows G_VALUE_COLLECT to work.
9493
9494 2004-02-05  Andy Wingo  <wingo@pobox.com>
9495
9496         * configure.ac:
9497         * testsuite/Makefile.am (SUBDIRS): 
9498         * testsuite/ghostpads/Makefile.am: 
9499         * testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
9500
9501         * gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
9502         These two routines are the only ones that set
9503         GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
9504         pad template. They should be made static, depending on ABI needs.
9505         (gst_real_pad_dispose): Handle the case of ghost pads without a
9506         parent. Assert after dealing with ghost pads that the ghost pad
9507         list is empty.
9508         (gst_ghost_pad_class_init): New property added, ::real-pad. Can be
9509         set after creation.
9510         (gst_ghost_pad_dispose): Set ::real-pad to NULL.
9511         (gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
9512         functions. set_property will call add_ghost_pad/remove_ghost_pad
9513         as appropriate.
9514         (gst_ghost_pad_new): All the work is offloaded to g_object_new.
9515
9516         * gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
9517         (gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
9518         (gst_element_remove_pad): Handle ghost pads as well.
9519         (gst_element_remove_ghost_pad): Deprecated (could be removed,
9520         depending on API-stability needs).
9521
9522 2004-02-05  Andy Wingo  <wingo@pobox.com>
9523
9524         * gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
9525         of course they're const
9526
9527 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9528
9529         * tools/Makefile.am:
9530         * tools/gst-feedback:
9531         * tools/gst-feedback-0.7:
9532           make gst-feedback versioned too for consistency
9533
9534 2004-02-11  David Schleef  <ds@schleef.org>
9535
9536         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9537         (gst_pad_try_set_caps): Fix format strings for GST_PTR_FORMAT.
9538
9539 2004-02-10  Julien MOUTTE <julien@moutte.net>
9540
9541         * gst/gstevent.c: (_gst_event_free): Sometimes a tag event arrives but
9542         the structure does not contain a valid tag list. Adding a safety check
9543         to remove a noisy warning in that case.
9544
9545 2004-02-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9546
9547         * gst/gst.c: fix name to be in line with others
9548
9549 2004-02-09  Julien MOUTTE <julien@moutte.net>
9550
9551         * libs/gst/bytestream/bytestream.c: (gst_bytestream_peek): We should
9552         not shout that loud when len is 0. Just return 0 silently.
9553
9554 2004-02-09  Julien MOUTTE  <julien@moutte.net>
9555
9556         * gst/gstdata.c: (gst_data_ref): Adding a categorized debug on data_ref
9557         because data_unref has one and I prefer the debug to be symetric.
9558         * gst/gstqueue.c: (gst_queue_locked_flush): Fix a huge memleak. Buffers
9559         were refed when added to the queue and unrefed only once when the queue
9560         was flushed. Now the flush handler unref the buffers two times : first
9561         unref for the ref added when pushing in the queue's tail and second
9562         unref to destroy the flushed buffer.
9563
9564 2004-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9565
9566         * docs/pwg/building-boiler.xml: fix cvs checkout documentation
9567
9568 2004-02-06  David Schleef  <ds@schleef.org>
9569
9570         * docs/random/ds/0.9-suggested-changes: Random ramblings
9571         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap): Cast size_t
9572         to int before printing.
9573         * gst/parse/grammar.y: Fix gcc-2.95 style variadic macros.
9574         * gst/parse/parse.l: same.  See bug #129600
9575
9576 2004-02-06  David Schleef  <ds@schleef.org>
9577
9578         * gst/gstindex.c: (gst_index_add_format), (gst_index_add_id),
9579         (gst_index_add_entry), (gst_index_add_associationv),
9580         (gst_index_add_association): Add gst_index_add_associationv()
9581         and clean up gst_index_add_association(). #127133
9582
9583 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9584
9585         * autogen.sh: check out common with right tag if CVS/Tag exists
9586
9587 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9588
9589         * testsuite/ghostpads/ghostpads.c: (main):
9590           fix testsuite from segfaulting
9591
9592 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9593
9594         * Makefile.am: add release target
9595         * configure.ac: bump nano to 1
9596         * docs/random/release:
9597
9598 2004-02-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9599
9600         * gst/gstcaps.h:
9601         * gst/gstelement.c: (gst_element_base_class_init),
9602         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9603         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9604         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9605         (gst_real_pad_dispose):
9606         * gst/gststructure.c: (gst_structure_free),
9607         (gst_structure_from_string):
9608           put reverted patch back in
9609         * gst/gstelement.c: (gst_element_remove_pad):
9610           free explicit caps if they're set
9611         * gst/gstpad.c: (_gst_pad_default_fixate_func):
9612           copy the structure when fixating
9613
9614 2004-02-05  David Schleef  <ds@schleef.org>
9615
9616         * gst/gstmarshal.list:
9617         * gst/gstpad.c: (gst_real_pad_class_init),
9618         (_gst_real_pad_fixate_accumulator):
9619         Revert POINTER->BOXED change in signal marshaller.
9620
9621 === release 0.7.4 ===
9622                                                                                 
9623 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9624                                                                                 
9625         * NEWS: GStreamer 0.7.4 "Wooden Eels" released
9626         * configure.ac: changed for release
9627
9628 2004-02-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9629
9630         * gstreamer.spec.in:
9631           bump required version of gtk-doc
9632
9633 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9634
9635         * gst/gstcaps.h:
9636         * gst/gstelement.c: (gst_element_base_class_init),
9637         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9638         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9639         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9640         (gst_real_pad_dispose):
9641         * gst/gststructure.c: (gst_structure_free),
9642         (gst_structure_from_string):
9643           revert patch that breaks applications, reapply after release
9644           to get this fixed properly
9645
9646 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9647
9648         * gst/gsttag.c: (_gst_tag_initialize):
9649         * gst/gsttag.h:
9650           remove duplicated field GST_TAG_APPLICATION. It's GST_TAG_ENCODER
9651
9652 2004-02-04  David Schleef  <ds@schleef.org>
9653
9654         Fix some memleaks:
9655         * gst/autoplug/gstspider.c: (gst_spider_request_new_pad),
9656         (gst_spider_plug_from_srcpad):
9657         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
9658
9659 2004-02-04  David Schleef  <ds@schleef.org>
9660
9661         * gst/gstelement.c: (gst_element_clear_pad_caps): Make sure we have
9662         a GstRealPad before accessing its structure members.
9663
9664 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9665
9666         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_speed),
9667         (gst_clock_get_speed):
9668         * gst/gstclock.h:
9669           reset padding, remove unused fields
9670
9671 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9672
9673         * gst/autoplug/gstspideridentity.c:
9674         (gst_spider_identity_sink_loop_type_finding):
9675           use get_allowed_caps, not get_caps (fixes #132519)
9676         * gst/elements/gsttypefind.c: (stop_typefinding):
9677           use correct order when sending buffers and seeking
9678
9679 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9680
9681         * configure.ac:
9682         * gst/gstelement.h:
9683         * gst/gstpad.h:
9684         * gst/gstqueue.h:
9685           upgrade libtool CURRENT, reset padding
9686
9687 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9688
9689         * configure.ac:
9690           bump to prerelease
9691           put back AM_PROG_LIBTOOL to make libtoolize stop complaining
9692
9693 2004-02-04  David Schleef  <ds@schleef.org>
9694
9695         * docs/random/ds/0.9-suggested-changes: random notes
9696         * gst/elements/gstfakesrc.c: (gst_fakesrc_get_formats),
9697         (gst_fakesrc_get_query_types), (gst_fakesrc_get_event_mask):
9698         Replace GST_PAD_EVENT_MASK_FUNCTION() (et al.) with its
9699         expansion.
9700         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
9701         (gst_filesink_get_query_types): same
9702         * gst/elements/gstfilesrc.c: (gst_filesrc_get_event_mask),
9703         (gst_filesrc_get_query_types), (gst_filesrc_get_formats): same
9704         * gst/gstcaps.h: deprecate GST_DEBUG_CAPS(), and fix the macro
9705         to use new GST_PTR_FORMAT.
9706         * gst/gstelement.h: deprecate function factory macros
9707         GST_ELEMENT_QUERY_TYPE_FUNCTION(), GST_ELEMENT_EVENT_MASK_FUNCTION().
9708         These are our last variadic macros that can't be replaced with
9709         inlines.  Celebrate!  Also fix a typo in an #ifdef that was
9710         attempting to deprecate gst_element_clock_wait().
9711         * gst/gstevent.h: same
9712         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9713         (gst_pad_try_set_caps): replace GST_DEBUG_CAPS() with GST_DEBUG()
9714         * gst/gstpad.h: deprecate function factory macros similar to above.
9715
9716 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9717
9718         * configure.ac:
9719         * tools/Makefile.am:
9720         * tools/gst-run.c: (popt_callback), (hash_print_key),
9721         (find_highest_version), (unmangle_libtool), (get_dir_of_binary),
9722         (get_candidates), (main):
9723           add new source file to generate non-versioned wrapper binaries
9724           for our tools.
9725
9726 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9727
9728         * gst/gstevent.c: (_gst_event_free):
9729           actually break; inside the switch statement
9730         * gst/parse/grammar.y:
9731           fix memleak where GValues weren't unset
9732
9733 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9734
9735         * gst/gststructure.c: (gst_structure_from_string):
9736           fix huge memleak
9737         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
9738         (new_entry), (gst_type_find_element_chain):
9739         * gst/gstelement.c: (gst_element_base_class_init),
9740         (gst_element_class_set_details):
9741         * gst/gstpad.c: (gst_pad_can_link_filtered):
9742           fix smaller memleaks
9743         * gst/gstpad.c: (gst_real_pad_dispose):
9744           check that explicit caps are gone
9745         * gst/gststructure.c: (gst_structure_free):
9746           actually free the structure
9747         * gst/gstelement.c: (gst_element_clear_pad_caps):
9748           unset explicit caps
9749
9750 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9751
9752         * tools/Makefile.am:
9753           use AM_CFLAGS since all the CFLAGS are the same
9754           use AM_LDFAGS
9755
9756 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9757
9758         * docs/manual/gnome.xml:
9759           expand example a little
9760         * gst/gst.c: (gst_init_with_popt_table),
9761         (gst_init_check_with_popt_table), (init_pre), (init_popt_callback):
9762           make sure popt option displays are done with right textdomain
9763           use GstPoptOption type
9764         * gst/gst.h:
9765           create GstPoptOption type
9766
9767 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9768
9769         * gst/gsterror.c: (_gst_stream_errors_init):
9770         * gst/gsterror.h:
9771           adding error type for no codec
9772         * po/POTFILES.in:
9773           add gst-inspect
9774         * po/nl.po:
9775           update dutch translation
9776         * tools/gst-inspect.c: (print_element_list), (main):
9777           do proper internationalization
9778         * tools/gst-launch.c: (idle_func):
9779           remove commented out function call
9780
9781 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9782
9783         * docs/README:
9784           add some error fixing notes
9785         * docs/gst/gstreamer-sections.txt:
9786           remove double entries
9787         * docs/gst/tmpl/gstbin.sgml:
9788         * docs/gst/tmpl/gstclock.sgml:
9789           remove override
9790         * docs/gst/tmpl/gstelement.sgml:
9791         * docs/gst/tmpl/gstindex.sgml:
9792         * docs/gst/tmpl/gstobject.sgml:
9793         * docs/gst/tmpl/gstpadtemplate.sgml:
9794         * docs/gst/tmpl/gstreamer-unused.sgml:
9795         * docs/gst/tmpl/gsttag.sgml:
9796         * docs/gst/tmpl/gstthread.sgml:
9797         * docs/gst/tmpl/gstxml.sgml:
9798         * gst/gsttag.h:
9799           sync header prototypes with c decls
9800         * gst/gsttaginterface.c:
9801           fix doc headers
9802
9803 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9804
9805         * gst/parse/Makefile.am:
9806         * gst/gstobject.h:
9807           get rid of gstmarshal.h dependency. It's not needed.
9808         * gst/gst.h:
9809         * gst/elements/gstfakesink.c:
9810         * gst/elements/gstfakesrc.c:
9811         * gst/elements/gstidentity.c:
9812         * gst/gstbin.c:
9813         * gst/gstelement.c:
9814         * gst/gstindex.c:
9815         * gst/gstobject.c:
9816         * gst/gstpad.c:
9817         * gst/gstthread.c:
9818         * gst/gstxml.c:
9819         * libs/gst/control/dparam.c:
9820         * libs/gst/control/dparammanager.c:
9821           include gstmarshal.h.
9822         Fixes #132045
9823
9824 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9825
9826         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
9827         (gst_filesrc_dispose), (gst_filesrc_free_parent_mmap),
9828         (gst_filesrc_map_region), (gst_filesrc_get_mmap):
9829         * gst/elements/gstfilesrc.h:
9830           don't ref the filesrc when creating mmaped buffers. Don't keep a
9831           list of not-yet-destroyed buffers.
9832         * gst/gstbuffer.h:
9833           Deprecated BST_BUFFER_FREE_FUNC and GST_BUFFER_COPY_FUNC
9834
9835 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9836
9837         * gst/gst.c: (init_pre):
9838           remove textdomain
9839
9840 2004-02-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
9841
9842         * docs/pwg/advanced-events.xml:
9843         * docs/pwg/advanced-scheduling.xml:
9844         * docs/pwg/intro-basics.xml:
9845         * docs/pwg/other-manager.xml:
9846         * docs/pwg/other-nton.xml:
9847         * docs/pwg/other-ntoone.xml:
9848         * docs/pwg/other-oneton.xml:
9849         * docs/pwg/pwg.xml:
9850           All sort of documentation... Forgot what. Point is that I want this
9851           in before I leave. The 'other-*' will be the last section and will
9852           explain issues specific to these type of elements.
9853
9854 2004-02-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9855
9856         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
9857         (gst_filesrc_get_read):
9858           set all the values on buffers that we can
9859
9860 2004-02-02  David Schleef  <ds@schleef.org>
9861
9862         Change usage of isblah() to g_ascii_isblah() to be more locale
9863         independent.  (#133076)
9864         * gst/gsturi.c: (gst_uri_protocol_check_internal):
9865         * gst/gstutils.c:
9866         * gst/parse/parse.l:
9867
9868 2004-02-02  Jon Trowbridge  <trow@gnu.org>
9869
9870         reviewed by: David Schleef  <ds@schleef.org>
9871
9872         Fix memory leaks:
9873         * gst/gstcaps.c: (gst_caps_to_string):
9874         * gst/registries/gstxmlregistry.c:
9875         (gst_xml_registry_add_path_list_func),
9876         (gst_xml_registry_parse_padtemplate):
9877
9878 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9879
9880         * gst/gstelement.c: (gst_element_default_error):
9881           suffix error messages with period
9882
9883 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9884
9885         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
9886         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
9887         * gst/gsterror.c: (gst_error_get_message):
9888           Suffix with dots
9889         * po/fr.po:
9890         * po/nl.po:
9891           Update translation files
9892
9893 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9894
9895         * gst/autoplug/gstspideridentity.c:
9896         (gst_spider_identity_sink_loop_type_finding):
9897         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
9898         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
9899         (gst_filesink_close_file), (gst_filesink_handle_event),
9900         (gst_filesink_chain):
9901         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
9902         (gst_filesrc_get_read), (gst_filesrc_open_file):
9903         * gst/elements/gstidentity.c: (gst_identity_chain):
9904         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
9905         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
9906         (gst_pipefilter_chain), (gst_pipefilter_open_file):
9907         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
9908         * gst/gsterror.c: (_gst_core_errors_init),
9909         (_gst_library_errors_init), (_gst_resource_errors_init),
9910         (_gst_stream_errors_init), (gst_error_get_message):
9911         * gst/gstpad.c: (gst_pad_set_explicit_caps),
9912         (gst_pad_recover_caps_error), (gst_pad_pull):
9913         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
9914         * gst/schedulers/gstbasicscheduler.c:
9915         (gst_basic_scheduler_chainhandler_proxy),
9916         (gst_basic_scheduler_gethandler_proxy),
9917         (gst_basic_scheduler_cothreaded_chain):
9918           Suffix error messages with period.
9919           Use (NULL) instead of NULL
9920
9921 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
9922
9923         * docs/gst/tmpl/gstelement.sgml:
9924         * docs/gst/tmpl/gstxml.sgml:
9925         * gst/gstelement.c: (gst_element_error_full):
9926           add element path to error
9927
9928 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9929
9930         * docs/random/mimetypes:
9931           update raw int/float info
9932         * gst/gsttag.c: (_gst_tag_initialize):
9933         * gst/gsttag.h:
9934           add GST_TAG_ENCODER
9935
9936 2004-01-30  David Schleef  <ds@schleef.org>
9937
9938         * gst/cothreads.c: Add another fallback if MAP_ANONYMOUS is
9939           missing (#132991)
9940
9941 2004-01-30  Laurent Vivier <Laurent.Vivier@bull.net>
9942
9943         reviewed by Benjamin Otte 
9944           parts of the patch submitted in bug #113913
9945
9946         * configure.ac:
9947           use AC_C_INLINE. Use = instead of == with test
9948         * examples/plugins/example.c:
9949         * gst/autoplug/gstspideridentity.c:
9950         * gst/elements/gstfdsrc.c:
9951         * gst/elements/gstfilesrc.c:
9952         * gst/elements/gstidentity.c:
9953         * gst/elements/gstmultidisksrc.c:
9954         * gst/elements/gststatistics.c:
9955         * gst/gstelement.c:
9956         * gst/gstobject.c:
9957         * gst/gstpad.c:
9958         * gst/gstpipeline.c:
9959         * gst/gstthread.c:
9960           don't end enums with a comma
9961         * gst/gstindex.c: (gst_index_compare_func):
9962           do explicit casting to gint
9963         * gst/gsttrace.c: (gst_trace_text_flush):
9964           #define strsize as a macro
9965
9966 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
9967
9968         * docs/README:
9969         * docs/gst/gstreamer-docs.sgml:
9970         * docs/gst/gstreamer-sections.txt:
9971         * docs/gst/tmpl/gstelement.sgml:
9972         * docs/gst/tmpl/gsterror.sgml:
9973         * docs/gst/tmpl/gstinterface.sgml:
9974         * docs/gst/tmpl/gstreamer-unused.sgml:
9975         * docs/gst/tmpl/gststructure.sgml:
9976         * docs/gst/tmpl/gsttag.sgml:
9977         * docs/gst/tmpl/gsttaginterface.sgml:
9978         * docs/gst/tmpl/gstvalue.sgml:
9979         make sure all API ends up in the built docs
9980         * gst/gstinterface.c:
9981         * gst/gststructure.c: (gst_structure_id_set_value),
9982         (gst_structure_set_value), (gst_structure_id_get_value):
9983         * gst/gststructure.h:
9984         * gst/gstvalue.h:
9985         sync .h with .c declarations
9986
9987 2004-01-30  Julien Moutte  <julien@moutte.net>
9988
9989         * libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
9990         Ronald will fix riffread.
9991
9992 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
9993
9994         * docs/pwg/advanced-interfaces.xml:
9995           Added tuner interface docs.
9996
9997 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9998
9999         * docs/random/mimetypes:
10000           correct Theora information
10001         * gst/gstelement.h:
10002           make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
10003
10004 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10005
10006         * gst/gstelement.c: (gst_element_error_full):
10007         * gst/gstelement.h:
10008           GST_ELEMENT_ERROR in enum -> _IN_ERROR
10009
10010 2004-01-29  Julien MOUTTE  <julien@moutte.net>
10011
10012         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
10013         (gst_filesrc_uri_handler_init): Fixing seeking by making FLUSH happen
10014         again and even before DISCONT.
10015         * gst/gstpad.c: (gst_pad_event_default): Remove a unused switch case.
10016         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf): Fix
10017         bytestream so that it's not stopping to fill the bytestream if events
10018         different than EOS or DISCONT are received. Instead it process them so
10019         that they go downstream.
10020
10021 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10022
10023         * docs/gst/tmpl/gstelement.sgml:
10024         * docs/gst/tmpl/gstreamer-unused.sgml:
10025         * docs/gst/tmpl/gstxml.sgml:
10026         * gst/autoplug/gstspideridentity.c:
10027         (gst_spider_identity_sink_loop_type_finding):
10028         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10029         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10030         (gst_filesink_close_file), (gst_filesink_handle_event),
10031         (gst_filesink_chain):
10032         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
10033         (gst_filesrc_get_read), (gst_filesrc_open_file):
10034         * gst/elements/gstidentity.c: (gst_identity_chain):
10035         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10036         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10037         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10038         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10039         * gst/gstelement.h:
10040         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10041         (gst_pad_recover_caps_error), (gst_pad_pull):
10042         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10043         * gst/schedulers/gstbasicscheduler.c:
10044         (gst_basic_scheduler_chainhandler_proxy),
10045         (gst_basic_scheduler_gethandler_proxy),
10046         (gst_basic_scheduler_cothreaded_chain):
10047           gst_element_error -> GST_ELEMENT_ERROR
10048
10049 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10050
10051         * docs/Makefile.am:
10052         * docs/gst/tmpl/gstelement.sgml:
10053         * docs/gst/tmpl/gstxml.sgml:
10054         * docs/manuals.mak:
10055         * docs/pwg/advanced-request.xml:
10056         * docs/pwg/advanced-scheduling.xml:
10057         * docs/pwg/advanced-tagging.xml:
10058           fix non-validating docbook using CDATA
10059           make sure make check-local gets run first to check if it validates
10060
10061 2004-01-29  Julien MOUTTE <julien@moutte.net>
10062
10063         * docs/pwg/advanced-events.xml: Adding documentation on advanced event
10064         handling (up and downstream).
10065         * docs/pwg/advanced-interfaces.xml: Make it coherent with the
10066         my_filter thing.
10067
10068 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10069
10070         * docs/pwg/advanced-tagging.xml:
10071           Add docs about tag writing.
10072
10073 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10074
10075         * docs/pwg/advanced-tagging.xml:
10076           Add a part about tag reading and application signalling... Tag
10077           writing still needs to be documented.
10078         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10079           We can set file locations in READY, too.
10080
10081 2004-01-29  Julien MOUTTE <julien@moutte.net>
10082
10083         * docs/random/ds/element-checklist: Adding some notes about src
10084         events.
10085
10086 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10087
10088         * docs/random/mimetypes:
10089           Update docs to point to correct elements for various mimetypes, and
10090           some more errors pointed out by Stéphane LOEUILLET (aka LeRoutier)
10091           <stephane.loeuillet@tiscali.fr>.
10092
10093 2004-01-28  David Schleef  <ds@schleef.org>
10094
10095         * docs/pwg/intro-basics.xml: rewrite bufferpool stuff.
10096
10097 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10098
10099         * docs/random/mimetypes:
10100           update docs for audio/x-raw-float. Add "buffer-frames=0 means
10101           undefined"
10102         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10103           make it only work in NULL.
10104         * gst/gstcaps.c:
10105           don't posion NULL caps
10106         * gst/gstelement.c: (gst_element_set_time):
10107           add debugging statement
10108         * gst/gstelement.c: (gst_element_emit_found_tag),
10109         (gst_element_found_tag_func), (gst_element_found_tags):
10110         * gst/gstelement.h:
10111           These functions take const taglists
10112         * gst/gstpad.c: (gst_pad_proxy_getcaps):
10113           fix memleak
10114         * gst/gstpad.c: (gst_pad_event_default):
10115           make more effort on handling discont and clocks, g_warn if everything
10116           fails
10117         * gst/gststructure.c: (gst_structure_remove_fields),
10118         (gst_structure_remove_fields_valist):
10119         * gst/gststructure.h:
10120           add gst_structure_remove_fields(_valist)
10121         * gst/gsttag.c:
10122           fix doc glitch
10123
10124 2004-01-28  David Schleef  <ds@schleef.org>
10125
10126         * docs/random/ds/element-checklist: Notes about gst_caps_to_string()
10127         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save_caps):
10128         Fix memory leakage of gst_caps_to_string().
10129
10130         Use GST_PTR_FORMAT instead of gst_caps_to_string():
10131         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_sp):
10132         * gst/autoplug/gstspideridentity.c: (spider_find_suggest),
10133         (gst_spider_identity_sink_loop_type_finding):
10134         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
10135         (find_suggest):
10136         * gst/gstpad.c: (gst_pad_try_relink_filtered),
10137         (gst_pad_set_explicit_caps):
10138         * gst/parse/grammar.y:
10139
10140 2004-01-28  David Schleef  <ds@schleef.org>
10141
10142         * configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
10143         GST_PRINTF_EXTENSION_FORMAT_DEFINE.
10144         * docs/random/ds/0.9-suggested-changes: Notes from Company.
10145         * gst/gstcaps.c: (gst_caps_to_string): Add comment.
10146         * gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
10147         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
10148         (gst_debug_log_default), (_gst_info_printf_extension),
10149         (_gst_info_printf_extension_arginfo):  Add printf extension.
10150         * gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
10151         * gst/gststructure.c: (gst_structure_to_string),
10152         (_gst_structure_parse_value): Use gst_value_deserialize() and
10153         remove old code.
10154         * gst/gstvalue.c: (gst_value_deserialize_fourcc),
10155         (gst_value_deserialize_boolean), (gst_strtoi),
10156         (gst_value_deserialize_int), (gst_value_deserialize_double),
10157         (gst_value_deserialize_string), (gst_value_deserialize): Implement
10158         a bunch of deserialize functions and gst_value_deserialize.
10159         * gst/gstvalue.h: er, _de_serialize, not unserialize
10160         * testsuite/caps/string-conversions.c: (main): We don't currently
10161         handle (float) in caps, so convert these to (double).
10162         * testsuite/debug/Makefile.am: Add new test for the printf extension
10163         * testsuite/debug/printf_extension.c: (main): same
10164
10165 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10166
10167         * docs/random/company/time:
10168           Add some docs about clocking and time
10169
10170 2004-01-28  Julien MOUTTE <julien@moutte.net>
10171
10172         * docs/pwg/advanced-interfaces.xml: Adding XOverlay documentation.
10173
10174 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10175
10176         * docs/pwg/advanced-clock.xml:
10177         * docs/pwg/advanced-dparams.xml:
10178         * docs/pwg/advanced-events.xml:
10179         * docs/pwg/advanced-interfaces.xml:
10180         * docs/pwg/advanced-midi.xml:
10181         * docs/pwg/advanced-request.xml:
10182         * docs/pwg/advanced-scheduling.xml:
10183         * docs/pwg/advanced-tagging.xml:
10184         * docs/pwg/advanced-types.xml:
10185         * docs/pwg/appendix-checklist.xml:
10186         * docs/pwg/building-boiler.xml:
10187         * docs/pwg/building-chainfn.xml:
10188         * docs/pwg/building-filterfactory.xml:
10189         * docs/pwg/building-pads.xml:
10190         * docs/pwg/building-props.xml:
10191         * docs/pwg/building-signals.xml:
10192         * docs/pwg/building-state.xml:
10193         * docs/pwg/building-testapp.xml:
10194         * docs/pwg/intro-basics.xml:
10195         * docs/pwg/intro-preface.xml:
10196         * docs/pwg/other-autoplugger.xml:
10197         * docs/pwg/other-sink.xml:
10198         * docs/pwg/other-source.xml:
10199         * docs/pwg/titlepage.xml:
10200           fix up id's
10201
10202 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10203
10204         * docs/95NonPath:
10205         * docs/HACKING:
10206         * docs/README:
10207         * docs/building-the-docs-on-debian:
10208           collect relevant bits of doc info
10209
10210 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10211
10212         * docs/pwg/advanced_tagging.xml:
10213           Half-assed commit so Thomas can re-arrange document IDs here to be
10214           consistent, too.
10215
10216 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10217
10218         * docs/manual/autoplugging.xml:
10219         * docs/manual/bins-api.xml:
10220         * docs/manual/bins.xml:
10221         * docs/manual/buffers-api.xml:
10222         * docs/manual/buffers.xml:
10223         * docs/manual/clocks.xml:
10224         * docs/manual/components.xml:
10225         * docs/manual/cothreads.xml:
10226         * docs/manual/debugging.xml:
10227         * docs/manual/dparams-app.xml:
10228         * docs/manual/dynamic.xml:
10229         * docs/manual/elements-api.xml:
10230         * docs/manual/elements.xml:
10231         * docs/manual/factories.xml:
10232         * docs/manual/gnome.xml:
10233         * docs/manual/goals.xml:
10234         * docs/manual/helloworld.xml:
10235         * docs/manual/helloworld2.xml:
10236         * docs/manual/init-api.xml:
10237         * docs/manual/intro.xml:
10238         * docs/manual/links-api.xml:
10239         * docs/manual/links.xml:
10240         * docs/manual/manual.xml:
10241         * docs/manual/motivation.xml:
10242         * docs/manual/pads-api.xml:
10243         * docs/manual/pads.xml:
10244         * docs/manual/plugins-api.xml:
10245         * docs/manual/plugins.xml:
10246         * docs/manual/programs.xml:
10247         * docs/manual/queues.xml:
10248         * docs/manual/quotes.xml:
10249         * docs/manual/schedulers.xml:
10250         * docs/manual/states-api.xml:
10251         * docs/manual/states.xml:
10252         * docs/manual/threads.xml:
10253         * docs/manual/typedetection.xml:
10254         * docs/manual/xml.xml:
10255           use chapter, part, section or misc as id starts for all bits
10256
10257 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10258
10259         * docs/gst/gstreamer-sections.txt:
10260           Fix up TITLE of the sections
10261
10262 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10263
10264         * docs/pwg/advanced_interfaces.xml:
10265           Add documentation on propertyprobing.
10266         * docs/pwg/advanced_events.xml:
10267         * docs/pwg/advanced_tagging.xml:
10268         * docs/pwg/building_boiler.xml:
10269         * docs/pwg/building_filterfactory.xml:
10270         * docs/pwg/pwg.xml:
10271           Move filterfactory and tagging into their own chapter, add a chapter
10272           on events. all these are empty placeholders that will be filled in
10273           some day.
10274
10275 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10276
10277         * docs/pwg/advanced_interfaces.xml:
10278           Docs for mixer interface. Also a check for website uploading.
10279
10280 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10281
10282         * docs/HACKING:
10283         * docs/Makefile.am:
10284         * docs/faq/Makefile.am:
10285         * docs/gst/Makefile.am:
10286         * docs/gst/tmpl/gstelement.sgml:
10287         * docs/gst/tmpl/gstplugin.sgml:
10288         * docs/gst/tmpl/gstreamer-unused.sgml:
10289         * docs/libs/Makefile.am:
10290         * docs/manual/Makefile.am:
10291         * docs/manuals.mak:
10292         * docs/pwg/Makefile.am:
10293         * docs/upload.mak:
10294           Separate out upload target and make it similar for
10295           both docbook and gtk-doc docs
10296
10297 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10298
10299         * docs/manuals.mak:
10300           Fix upload target to work with freedesktop
10301
10302 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10303
10304         * docs/pwg/advanced_types.xml:
10305           Add notes on creating your own types.
10306         * docs/pwg/building_boiler.xml:
10307         * docs/pwg/building_pads.xml:
10308         * docs/pwg/building_state.xml:
10309           Add some stuff about how to retrieve values from structures, how
10310           that relates to types and change layout slightly again to be almost
10311           perfect.
10312
10313 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10314
10315         * docs/pwg/advanced_dparams.xml:
10316         * docs/pwg/advanced_scheduling.xml:
10317           Change index layout slightly.
10318
10319 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10320
10321         * docs/pwg/advanced_clock.xml:
10322         * docs/pwg/advanced_interfaces.xml:
10323         * docs/pwg/advanced_midi.xml:
10324           General placeholders for now.
10325         * docs/pwg/advanced_request.xml:
10326           Explanation about sometimes and request pads.
10327         * docs/pwg/advanced_scheduling.xml:
10328           Concept of bytestream, loopfunctions and schedulers.
10329         * docs/pwg/building_boiler.xml:
10330           Add something about plugin-init.
10331
10332 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10333
10334         * docs/pwg/building_pads.xml:
10335           Fix broken docbook
10336
10337 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10338
10339         * docs/pwg/advanced_interfaces.xml:
10340         * docs/pwg/pwg.xml:
10341           Add as a placeholder for future filling-in.
10342         * docs/pwg/basics_autoplugging.xml:
10343         * docs/pwg/basics_buffers.xml:
10344         * docs/pwg/basics_elements.xml:
10345         * docs/pwg/basics_events.xml:
10346         * docs/pwg/basics_plugins.xml:
10347         * docs/pwg/basics_types.xml:
10348           Remove, because unused (this is all in intro_basics.xml).
10349         * docs/pwg/building_signals.xml:
10350           Short intro to signals + reference to GObject docs - we really
10351           shouldn't go into these sort of things to deply because we don't
10352           use them that extensively anyway.
10353         * docs/pwg/building_state.xml:
10354           Explanation of states. Benjamin, please check.
10355         * docs/pwg/building_testapp.xml:
10356           Put everything in one page - putting only a few lines of content
10357           per page doesn't really make sense.
10358
10359           Time to get into the advanced topics. ;).
10360
10361 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10362
10363         * docs/pwg/advanced_types.xml:
10364           Finish documenting the current state of mimetypes.
10365         * docs/pwg/building_boiler.xml:
10366         * docs/pwg/building_chainfn.xml:
10367         * docs/pwg/building_pads.xml:
10368         * docs/pwg/building_props.xml:
10369         * docs/pwg/building_testapp.xml:
10370           Start documenting the "how to build a simple audio filter" part
10371           of the PWG. Most stuff is ready by now. Stuff remaining: signals,
10372           states and (maybe?) a short introduction to capsnego in the chapter
10373           on pads (building_pads.xml). Capsnego should probably be explained
10374           fully in advanced_capsnego.xml or so.
10375
10376 2004-01-26  David Schleef  <ds@schleef.org>
10377
10378         * gst/gstpad.c: (gst_pad_try_set_caps_nonfixed):
10379         * gst/gstpad.h: Add new function to allow element to (somewhat)
10380         specify non-fixed caps on a pad.
10381         * gst/gstqueue.c: (gst_queue_chain): Remove noisy g_object_notify()
10382         that I added a few weeks ago.
10383
10384 2004-01-26  David Schleef  <ds@schleef.org>
10385
10386         * gst/gstpad.c: (gst_pad_try_set_caps): Revert last change
10387           making try_set_caps() work with non-fixed caps.
10388
10389 2004-01-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10390
10391         * docs/pwg/advanced_types.xml:
10392         * docs/pwg/intro_basics.xml:
10393         * docs/pwg/intro_preface.xml:
10394         * docs/pwg/pwg.xml:
10395         * docs/pwg/titlepage.xml:
10396           First try to resurrect the PWG. I'm halfway integrating the mimetypes
10397           in here (docs/random/mimetypes), and will from there on work on both
10398           updating outdated parts and adding missing parts.
10399           That doesn't mean I'll fix it completely, but I'll try at least. ;).
10400
10401 2004-01-26  Thomas Vander Stichele  <thomas at apestaart dot org>
10402
10403         * gst/gsterror.h: reinstate GST_LIBRARY_ERROR_ENCODE until
10404           policy is set
10405
10406 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10407
10408         * gst/gstelement.h:
10409           remove gst_element_factory_get_version. It doesn't exist anymore.
10410         * gst/gstplugin.c:
10411         * gst/gstplugin.h:
10412           remove gst_plugin_set_name and change gst_plugin_get_longname to
10413           gst_plugin_get_description to match code.
10414         * gst/gsterror.h:
10415           remove GST_LIBRARY_ERROR_ENCODE. It's GST_STREAM_ERROR_ENCODE.
10416         * gst/gstpad.c: (gst_pad_try_set_caps):
10417           make it work with nonfixed caps.
10418           Note that even in the nonfixed case the link function of the pad
10419           that tries to set caps isn't called.
10420
10421 2004-01-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10422
10423         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
10424           fix bug where buffer was not assembled correctly
10425         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init):
10426           silence by default
10427         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10428           only seek if there's no more buffers that could work without seeking
10429
10430 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10431
10432         * gst/gsttag.c: (_gst_tag_initialize):
10433         * gst/gsttag.h:
10434           Add application tag (for encoding/muxing app).
10435
10436 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10437
10438         * autogen.sh:
10439           make autopoint force, and libtoolize not copy
10440         * common/m4/as-docbook.m4:
10441           added docbook xml catalog setup check
10442         * common/m4/gst-doc.m4:
10443           use docbook check
10444
10445 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10446
10447         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
10448         * gst/gsttag.h:
10449           add GstTagFlag
10450
10451 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10452
10453         * docs/gst/gstreamer-sections.txt:
10454         * docs/gst/tmpl/gst.sgml:
10455         * docs/gst/tmpl/gstbuffer.sgml:
10456         * docs/gst/tmpl/gstclock.sgml:
10457         * docs/gst/tmpl/gstelement.sgml:
10458         * docs/gst/tmpl/gstreamer-unused.sgml:
10459         * docs/gst/tmpl/gstxml.sgml:
10460           sync latest API changes to docs
10461
10462 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10463
10464         * gst/gstpluginfeature.c:
10465           fix doc snippet
10466         * tools/gst-inspect.c: (print_element_list):
10467           fix output of typefind
10468           add GPL header
10469         * tools/gst-launch.c:
10470           add GPL header
10471
10472 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10473
10474         * gst/elements/Makefile.am:
10475         * gst/elements/gstelements.c:
10476         * gst/elements/gsttypefindelement.c:
10477         * gst/elements/gsttypefindelement.h:
10478         * po/POTFILES.in:
10479         * po/fr.po:
10480         * po/nl.po:
10481           renamed gsttypefindelement to gsttypefind, conserving CVS history
10482
10483 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10484
10485         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_list_add_valist):
10486         * gst/gsttag.h:
10487           add some tags used in ogg as well
10488           fix _ in replaygain tags
10489
10490 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10491
10492         * gst/gsterror.h:
10493           fix wrong GST_LIBRARY_ERROR_ENCODE addition
10494
10495 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10496
10497         * gst/gstelement.c: (gst_element_error_full):
10498         * gst/gstelement.h:
10499           change _extended to _full
10500
10501 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10502
10503         reviewed by: <delete if not using a buddy>
10504
10505         * docs/gst/tmpl/gst.sgml:
10506         * docs/gst/tmpl/gstbuffer.sgml:
10507         * docs/gst/tmpl/gstclock.sgml:
10508         * docs/gst/tmpl/gstelement.sgml:
10509         * docs/gst/tmpl/gstreamer-unused.sgml:
10510         * docs/gst/tmpl/gstxml.sgml:
10511         * gst/gstelement.c: (gst_element_error_full):
10512         * gst/gstelement.h:
10513
10514 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10515
10516         * gst/gstelement.h: fix _gst_element_error_printf prototype
10517
10518 2004-01-20  David Schleef  <ds@schleef.org>
10519
10520         * gst/gststructure.c: (gst_structure_to_string):
10521         Convert function to use gst_value_serialize().
10522         * gst/gstvalue.c: (gst_value_serialize_list),
10523         (gst_value_serialize_fourcc), (gst_value_serialize_int_range),
10524         (gst_value_serialize_double_range), (gst_value_serialize_boolean),
10525         (gst_value_serialize_int), (gst_value_serialize_double),
10526         (gst_string_wrap), (gst_value_serialize_string),
10527         (gst_value_serialize), (gst_value_deserialize):
10528         * gst/gstvalue.h:
10529         Add implementations for serialize.
10530
10531 2004-01-20  Julien MOUTTE  <julien@moutte.net>
10532
10533         * gst/gsterror.h: xvidenc.c needs GST_LIBRARY_ERROR_ENCODE. Dunno if
10534         we want to keep that one in the future or change xvidenc.c to use 
10535         another error.
10536
10537 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10538
10539         * gst/gstelement.c: (_gst_element_error_printf):
10540         * gst/gstelement.h:
10541           privatise function
10542
10543 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10544
10545         * docs/random/error:
10546           doc explaining error system
10547         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
10548           cleanup
10549
10550 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10551
10552         * gst/gst-i18n-app.h:
10553         * gst/gst-i18n-lib.h:
10554           remove inclusion of config.h
10555         * po/POTFILES.in:
10556         * po/nl.po:
10557           add gst/gstelement.c
10558
10559 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10560
10561         * po/nl.po: updated Dutch translation
10562
10563 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10564
10565         * gst/gsterror.c: (_gst_core_errors_init),
10566         (_gst_library_errors_init), (_gst_resource_errors_init),
10567         (_gst_stream_errors_init):
10568         remove ending punctuation dots
10569
10570 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10571
10572         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
10573         * gst/elements/gstfilesrc.c: (gst_filesrc_get_read):
10574         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10575         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10576         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10577         use GST_ERROR_SYSTEM
10578
10579 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10580
10581         * gst/gstelement.c: (gst_element_error_printf),
10582         (gst_element_error_extended):
10583         * gst/gstelement.h:
10584           add a helper printf function so we can have NULL values passed.
10585
10586 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10587
10588         * gst/gstelement.h:
10589           add G_STMT macros to gst_element_error, which isn't strictly
10590           necessary but people tell me to anyway.
10591
10592 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
10593
10594         * gst/Makefile.am:
10595         * gst/autoplug/gstspideridentity.c:
10596         (gst_spider_identity_sink_loop_type_finding):
10597         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10598         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10599         (gst_filesink_close_file), (gst_filesink_handle_event),
10600         (gst_filesink_chain):
10601         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property),
10602         (gst_filesrc_map_region), (gst_filesrc_get_read),
10603         (gst_filesrc_open_file):
10604         * gst/elements/gstidentity.c: (gst_identity_chain):
10605         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10606         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10607         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10608         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
10609         * gst/gst.h:
10610         * gst/gst_private.h:
10611         * gst/gstelement.c: (gst_element_class_init),
10612         (gst_element_default_error), (gst_element_error_func),
10613         (gst_element_error_extended):
10614         * gst/gstelement.h:
10615         * gst/gsterror.c: (_gst_core_errors_init),
10616         (_gst_library_errors_init), (_gst_resource_errors_init),
10617         (_gst_stream_errors_init), (gst_error_get_message):
10618         * gst/gsterror.h:
10619         * gst/gstinfo.c: (_gst_debug_init):
10620         * gst/gstmarshal.list:
10621         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10622         (gst_pad_recover_caps_error), (gst_pad_pull):
10623         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10624         * gst/schedulers/gstbasicscheduler.c:
10625         (gst_basic_scheduler_chainhandler_proxy),
10626         (gst_basic_scheduler_gethandler_proxy),
10627         (gst_basic_scheduler_cothreaded_chain):
10628         * po/POTFILES.in:
10629         * po/fr.po:
10630         * po/nl.po:
10631           change error signal
10632           add error categories
10633
10634 2004-01-18  Jeremy Simon  <jesimon@libertysurf.fr>
10635
10636         * gst/gsttag.c: (_gst_tag_initialize):
10637         * gst/gsttag.h:
10638         Add replaygain tag
10639
10640 2004-01-18  Colin Walters  <walters@verbum.org>
10641
10642         * examples/retag/retag.c: Call gst_init before processing
10643         program args.  Add g_assert to _link_many call.
10644
10645 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10646
10647         * gst/gstpad.c: (gst_pad_alloc_buffer):
10648           Return a newly allocated buffer when the pad has no peer.
10649
10650 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10651
10652         * gst/gstclock.c: (gst_clock_get_time):
10653           make it compile with gcc 2.95 again.
10654           Patch by Scott Wheeler
10655
10656 2004-01-15  David Schleef  <ds@schleef.org>
10657
10658         * gst/gstcaps.h:
10659         Added gst_caps_is_simple() macro.
10660         * testsuite/caps/caps.c: (test1):
10661         * testsuite/caps/intersect2.c: (main):
10662         * testsuite/caps/intersection.c: (main):
10663         Fixes to make 'make check' work again after removing
10664         gst_caps_is_chained().
10665
10666 2004-01-15  Leif Johnson <leif@ambient.2y.net>
10667
10668         * docs/random/uraeus/gstreamer_and_midi.txt: Rather large edits
10669         and additions to the MIDI document.
10670
10671 2004-01-15  David Schleef  <ds@schleef.org>
10672
10673         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered),
10674         (gst_element_link_pads_filtered): Use GST_PAD_ macros instead
10675         of GST_RPAD_, since we don't know if it's a real or ghost pad.
10676
10677 2004-01-15  David Schleef  <ds@schleef.org>
10678
10679         * gst/gstqueue.c:
10680         * gst/gstqueue.h:
10681         Fix the spelling of "treshold" and make min_threshold actually
10682         affect the queue.
10683
10684 2004-01-15  David Schleef  <ds@schleef.org>
10685
10686         * gst/gstcaps.c:
10687         Add lots of documentation.
10688         * gst/gstcaps.h:
10689         Deprecate a few functions.
10690         * gst/gstpad.c:
10691         Removed use of deprecated functions.
10692
10693 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10694
10695         * gst/gstpad.c: (gst_pad_is_linked):
10696         * gst/gstpad.h:
10697           implement gst_pad_is_linked
10698         * gst/gstelement.h:
10699           reserve space for initiate_state_change
10700
10701 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10702
10703         * gst/autoplug/gstspideridentity.c:
10704         (gst_spider_identity_sink_loop_type_finding):
10705           break infinite loop by just returning instead of looping
10706         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_set_property):
10707           set event time difference correctly. Set it to 1 second instead
10708           of 100ms to be more tolerant
10709         * gst/gstelement.c: (gst_element_set_time):
10710           add debugging output
10711
10712 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10713
10714         * gst/gstqueue.c: (gst_queue_getcaps), (gst_queue_link):
10715           query if buffers are inside the pool, ignore events
10716
10717 2004-01-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10718
10719         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
10720         (gst_clock_set_speed), (gst_clock_set_active),
10721         (gst_clock_is_active), (gst_clock_reset),
10722         (gst_clock_handle_discont):
10723         * gst/gstclock.h:
10724           deprecate old interface and disable functions that aren't in use
10725           anymore.
10726         * gst/gstelement.h:
10727         * gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
10728         (gst_element_set_time), (gst_element_adjust_time):
10729           add concept of "element time" and functions to get/set this time.
10730         * gst/gstelement.c: (gst_element_change_state):
10731           update element time correctly.
10732         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
10733           This is a debug message, not a g_critical.
10734         * gst/gstpad.c: (gst_pad_event_default):
10735           handle discontinuous events right with element time.
10736         * gst/gstscheduler.c: (gst_scheduler_state_transition):
10737           update to clocking fixes.
10738           set clocks on elements in READY=>PAUSED. The old behaviour caused
10739           a wrong element time on the first element that started playing.
10740         * gst/schedulers/gstbasicscheduler.c:
10741         (gst_basic_scheduler_class_init):
10742         * gst/schedulers/gstoptimalscheduler.c:
10743         (gst_opt_scheduler_class_init):
10744           remove code that just implements the default behaviour.
10745         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
10746           update to use new clocking functions
10747         * testsuite/clock/clock1.c: (gst_clock_debug), (main):
10748         * testsuite/clock/clock2.c: (gst_clock_debug), (main):
10749           update to test new element time.
10750         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
10751           use _get_allowed_caps instead of _get_caps. This catches filtered
10752           caps correctly.
10753         * testsuite/debug/commandline.c:
10754           update for new GST_DEBUG syntax.
10755         * testsuite/threads/Makefile.am:
10756           disable a test that only works sometimes.
10757
10758 2004-01-13  Julien MOUTTE <julien@moutte.net>
10759
10760         * po/LINGUAS: Adding fr.
10761         * po/fr.po: Adding french translation.
10762
10763 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10764
10765         * gst/parse/grammar.y:
10766         * po/POTFILES.in:
10767         * po/nl.po:
10768         * tools/gst-launch.c: (xmllaunch_parse_cmdline), (main):
10769           translate parsing error messages
10770
10771 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10772
10773         * po/POTFILES.in: adding gst-launch
10774         * po/nl.po: updated translation, all 99 strings translated
10775         * tools/gst-launch.c: (idle_func), (xmllaunch_parse_cmdline),
10776         (found_tag), (sigint_handler_sighandler), (play_handler), (main):
10777           fix strings for translation
10778
10779 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10780
10781         * gst/gst.c:
10782           - capitalize beginnings of popt options
10783           - fix strings for translation
10784           - change gst-debug format from =N1=V1:N2=V2 to =N1:V1,N2:V2
10785
10786 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10787
10788         * po/README: add some notes on how to update translations
10789
10790 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10791
10792         * ABOUT-NLS: removed, is autogenerated from autopoint
10793         * autogen.sh: add autopoint stuff
10794         * configure.ac: fix up gettext stuff
10795         * gst/Makefile.am: add i18n headers to noinst_HEADERS
10796         * gst/elements/gsttypefindelement.c: add header include
10797         * gst/gettext.h: add header, copy from system-installed header
10798         * gst/gst-i18n-app.h: to be included by each app having translations
10799         * gst/gst-i18n-lib.h: to be included by each lib having translations
10800         * gst/gst.c: (init_pre): fix up gettext calls
10801         * gst/gst_private.h: remove i18n stuff, moving to separate headers
10802         * po/LINGUAS: the new way to specify translations present
10803         * po/Makefile.in.in: removed from cvs, autogenerated from autopoint
10804         * po/Makevars: the variables filled in for GStreamer
10805         * po/POTFILES.in: added new files with translations
10806         * po/de.po: has new strings
10807         * po/nl.po: readded, has new strings
10808
10809 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10810
10811         * gst/gsttag.c: fix some strings marked for translation
10812
10813 2004-01-13  Iain <iain@prettypeople.org>
10814
10815         * gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
10816         group when we add an element to it, cos we unref it when we remove one
10817
10818 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10819
10820         * testsuite/debug/commandline.c: (debug_not_reached):
10821         * testsuite/debug/output.c: (check_message):
10822           fix testsuite
10823
10824 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10825
10826         * examples/cutter/.cvsignore:
10827         * examples/helloworld/.cvsignore:
10828         * examples/launch/.cvsignore:
10829         * examples/manual/.cvsignore:
10830         * examples/mixer/.cvsignore:
10831         * examples/pingpong/.cvsignore:
10832         * examples/plugins/.cvsignore:
10833         * examples/queue/.cvsignore:
10834         * examples/queue2/.cvsignore:
10835         * examples/queue3/.cvsignore:
10836         * examples/queue4/.cvsignore:
10837         * examples/retag/.cvsignore:
10838         * examples/thread/.cvsignore:
10839         * examples/typefind/.cvsignore:
10840         * examples/xml/.cvsignore:
10841         * gst/.cvsignore:
10842         * gst/autoplug/.cvsignore:
10843         * gst/elements/.cvsignore:
10844         * gst/indexers/.cvsignore:
10845         * gst/parse/.cvsignore:
10846         * gst/registries/.cvsignore:
10847         * gst/schedulers/.cvsignore:
10848         * libs/gst/bytestream/.cvsignore:
10849         * libs/gst/control/.cvsignore:
10850         * libs/gst/getbits/.cvsignore:
10851         * tests/.cvsignore:
10852         * tests/bufspeed/.cvsignore:
10853         * tests/instantiate/.cvsignore:
10854         * tests/memchunk/.cvsignore:
10855         * tests/muxing/.cvsignore:
10856         * tests/sched/.cvsignore:
10857         * tests/seeking/.cvsignore:
10858         * tests/threadstate/.cvsignore:
10859         * testsuite/.cvsignore:
10860         * testsuite/caps/.cvsignore:
10861         * testsuite/cleanup/.cvsignore:
10862         * testsuite/dynparams/.cvsignore:
10863         * testsuite/plugin/.cvsignore:
10864         * tools/.cvsignore:
10865           update - this is huge, because it includes *.bb, *.bbg and *.da files
10866           which are generated for gcov.
10867
10868 2004-01-11  David Schleef  <ds@schleef.org>
10869
10870         * gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
10871         a function to parse integers in ways that strto[u]l() does not.
10872
10873 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10874
10875         * tools/gst-inspect.c: (print_caps):
10876           improve output of caps a bit
10877
10878 2004-01-11  David Schleef  <ds@schleef.org>
10879
10880         * gst/gstbuffer.c: (gst_buffer_create_sub): Subbuffers should
10881         inherit correct flags (READONLY and DONTKEEP).
10882
10883 2004-01-11  David Schleef  <ds@schleef.org>
10884
10885         * gst/elements/gstfilesrc.c: (gst_filesrc_free_parent_mmap),
10886         (gst_filesrc_map_region):
10887         * gst/gstbuffer.c: (_gst_buffer_initialize),
10888         (_gst_buffer_sub_free), (gst_buffer_default_copy),
10889         (gst_buffer_new), (gst_buffer_create_sub),
10890         (gst_buffer_is_span_fast), (gst_buffer_span):
10891         * gst/gstbuffer.h:
10892         Change GstBuffer private structure element names. (all files)
10893         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
10894         (gst_queue_link):
10895         * gst/gstqueue.h:
10896         Implement getcaps/pad_link functions that handle the case where
10897         there are data in the queue.
10898
10899 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10900
10901         * gst/elements/gstbufferstore.c:
10902           initialize debugging structure correctly
10903         * gst/elements/gsttee.c: (gst_tee_set_property):
10904           g_object_notify when property was changed
10905         * gst/elements/gsttypefindelement.c:
10906         (gst_type_find_element_change_state):
10907           clear caps correctly
10908
10909 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10910
10911         * gst/gstqueue.c: (gst_queue_init):
10912           Use better defaults for when a queue should block. This
10913           gets rid of jerky playback for quite a few files.
10914           It takes more memory.
10915
10916 2004-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
10917
10918         (gst_xml_registry_parse_padtemplate):
10919           make critical message slightly more useful
10920
10921 2004-01-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10922
10923         * gst/gstinfo.c: (gst_debug_log), (gst_debug_log_valist),
10924         (gst_debug_message_get), (gst_debug_log_default):
10925         * gst/gstinfo.h:
10926           Change gst_debug_log(_valist) to take a const format string.
10927           Change prototype of log function and functions using those to 
10928           take a GstDebugMessage instead of a string that requires using
10929           gst_debug_message_get.
10930
10931 2004-01-08  David Schleef  <ds@schleef.org>
10932
10933         * Makefile.am:
10934         * configure.ac:
10935         Add option --enable-gcov to build GStreamer with -fprofile-arcs
10936         and -ftest-coverage, which allows gcov to show information about
10937         testsuite coverage.
10938
10939 2004-01-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10940
10941         * gst/gstutils.h:
10942           Add GST_BOILERPLATE(_FULL), GST_PARENT_CALL and
10943           GST_PARENT_CALL_WITH_DEFAULT
10944         * gst/elements/gstaggregator.c: 
10945         * gst/elements/gstbufferstore.c: 
10946         * gst/elements/gstfakesink.c: 
10947         * gst/elements/gstfakesrc.c: 
10948         * gst/elements/gstfdsink.c: 
10949         * gst/elements/gstfdsrc.c: 
10950         * gst/elements/gstfilesink.c: 
10951         * gst/elements/gstfilesrc.c: 
10952         * gst/elements/gstidentity.c: 
10953         * gst/elements/gstmd5sink.c: 
10954         * gst/elements/gstmultidisksrc.c:
10955         * gst/elements/gstpipefilter.c: 
10956         * gst/elements/gstshaper.c:
10957         * gst/elements/gststatistics.c:
10958         * gst/elements/gsttee.c:
10959         * gst/elements/gsttypefindelement.c:
10960           use them.
10961
10962 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
10963
10964         * docs/gst/gstreamer-docs.sgml: remove props
10965         * docs/gst/gstreamer-sections.txt: remove props
10966         * docs/gst/tmpl/gst.sgml:
10967         * docs/gst/tmpl/gstbin.sgml:
10968         * docs/gst/tmpl/gstbuffer.sgml:
10969         * docs/gst/tmpl/gstcaps.sgml:
10970         * docs/gst/tmpl/gstclock.sgml:
10971         * docs/gst/tmpl/gstelement.sgml:
10972         * docs/gst/tmpl/gstindex.sgml:
10973         * docs/gst/tmpl/gstobject.sgml:
10974         * docs/gst/tmpl/gstpad.sgml:
10975         * docs/gst/tmpl/gstpadtemplate.sgml:
10976         * docs/gst/tmpl/gstreamer-unused.sgml:
10977         * docs/gst/tmpl/gstthread.sgml:
10978         * docs/gst/tmpl/gstxml.sgml:
10979           sync with code reorganization
10980
10981 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
10982
10983         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
10984         Make the 'Could not find compatible pad' message more informative.
10985
10986 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10987                                                                                 
10988         * gst/elements/gstfilesink.c: (gst_filesink_set_location):
10989           Fix for if we pass NULL as property to location.
10990         * gst/elements/gstpipefilter.c: (gst_pipefilter_init),
10991         (gst_pipefilter_handle_event), (gst_pipefilter_chain):
10992           Fix for instantiate-test (see below).
10993         * gst/gststructure.c: (_gst_structure_parse_value):
10994           Fix compile error on gcc-2.96.
10995         * configure.ac:
10996         * tests/Makefile.am:
10997         * tests/instantiate/Makefile.am:
10998         * tests/instantiate/create.c: (create_all_elements), (main):
10999           Add a test that instantiates all elements. This makes it easy to
11000           track dead code for old API/design (like setting event functions
11001           on sink pads and so on).
11002
11003 2004-01-06  Jan Schmidt  <thaytan@mad.scientist.com>
11004
11005         * gst/gstcaps.c: (gst_caps_append_structure):
11006           Move the poisoning to allow a NULL structure
11007         * gst/gstevent.c: (_gst_event_free):
11008           When freeing a navigation event, free the structure
11009           also
11010
11011 2004-01-04  David Schleef  <ds@schleef.org>
11012
11013         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11014         Remove usage of gst_pad_proxy_fixate.
11015         * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
11016         (gst_caps_split_one), (gst_caps_replace):
11017         Add poisoning code.
11018         * gst/gstmarshal.list:
11019         Add pointer__pointer for fixate signal
11020         * gst/gstpad.c: (gst_real_pad_class_init),
11021         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
11022         (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
11023         (gst_pad_set_explicit_caps), (gst_pad_template_new):
11024         Add poisoning code. Add fixate signal on RealPad. Change
11025         set_explicit_caps() to take const GstCaps, like try_set_caps().
11026         * gst/gstpad.h:
11027         * testsuite/caps/Makefile.am:
11028         * testsuite/caps/app_fixate.c: Add a test for the fixate signal
11029
11030 2004-01-03  David Schleef  <ds@schleef.org>
11031
11032         * gst/elements/gsttypefindelement.c:
11033         (gst_type_find_element_have_type), (gst_type_find_element_init):
11034         Use gst_pad_use_explicit_caps for src pad.
11035         * gst/gstpad.c: (gst_pad_try_set_caps):  Check that link exists
11036         before using it.
11037
11038 2004-01-03  David Schleef  <ds@schleef.org>
11039
11040         * gst/gstelement.c: (gst_element_link_pads_filtered),
11041         (gst_element_negotiate_pads): Fix to allow DELAYED to indicate
11042         that linking was successful.
11043         * gst/gstpad.c: (gst_pad_link_free),
11044         (gst_pad_link_call_link_functions), (gst_pad_link_negotiate),
11045         (gst_pad_link_try), (gst_pad_link_unnegotiate),
11046         (gst_pad_unnegotiate), (gst_pad_set_explicit_caps): Pass
11047         GstPadLinkReturn correctly between functions, and don't fail
11048         when DELAYED is used (DELAYED is very important).  Better
11049         cleanup on unlinking and unnegotiation.  Should fix some spider
11050         bugs.
11051
11052 2004-01-02  David Schleef  <ds@schleef.org>
11053
11054         * gst/gstelement.c: (gst_element_class_init),
11055         (gst_element_base_class_init): ->padtemplates should be cleared
11056         in base_init, since we need to have a fresh list for every
11057         class.  (Alternately, we chould copy the list and share the
11058         actual pad templates (not the list), but that would require
11059         changing every plugin to move pad template registration from
11060         base_init to class_init.)
11061
11062 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11063
11064         * gst/gstelement.c: (gst_element_class_add_pad_template):
11065           Refuse registering a pad template if another pad template
11066           with the same name already exists (#114715).
11067
11068 2004-01-02  David Schleef  <ds@schleef.org>
11069
11070         * gst/gstcaps.c: (_gst_structure_is_equal_foreach),
11071         (gst_caps_is_equal_fixed): Add new function.
11072         * gst/gstcaps.h: ditto.
11073         * gst/gstpad.c: (gst_real_pad_class_init),
11074         (gst_pad_link_call_link_functions), (gst_pad_try_set_caps),
11075         (gst_pad_set_explicit_caps), (gst_pad_get_caps):  In try_set_caps,
11076         check new caps against existing caps -- if they're the same, return
11077         OK without renegotiating.  caps-nego-failed signal fixed so that
11078         the marshaller isn't VOID__OBJECT.  Also changed to G_TYPE_POINTER
11079         to save an extra caps copy.  Don't complete negotiation if a pad
11080         link function returns DELAYED.
11081
11082 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11083
11084         * gst/gstpad.c: (gst_pad_try_relink_filtered):
11085           Fix wrong g_return_if_fail
11086
11087 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
11088
11089         * gst/gstbin.c: (gst_bin_class_init):
11090         Change the marshalling of element_added/element_removed
11091         to use gst_marshal_VOID__OBJECT, since gst_marshal_VOID__POINTER 
11092         complains that GST_TYPE_ELEMENT is not G_TYPE_POINTER
11093
11094 2004-01-01  David Schleef  <ds@schleef.org>
11095
11096         * gst/gstpad.c: (gst_pad_set_explicit_caps),
11097         (gst_pad_explicit_getcaps), (gst_pad_explicit_link),
11098         (gst_pad_use_explicit_caps):
11099         * gst/gstpad.h:
11100         Add new functions.  gst_pad_use_explicit_caps() sets up a pad
11101         to use an internal getcaps and link fuction so that negotiation
11102         always results in the explicitly set caps.
11103         gst_pad_set_explicit_caps() sets the explicit caps.  These functions
11104         are particularly useful for decoders.
11105
11106 2003-12-31  David Schleef  <ds@schleef.org>
11107
11108         * gst/elements/gstidentity.c: (gst_identity_class_init),
11109         (gst_identity_init), (gst_identity_chain),
11110         (gst_identity_set_property), (gst_identity_get_property):
11111         * gst/elements/gstidentity.h:
11112         * gst/gstqueue.c: (gst_queue_init):
11113           Negotiation fixes.
11114
11115 2003-12-31  David Schleef  <ds@schleef.org>
11116
11117         * gst/gstcaps.c: (gst_caps_intersect),
11118         (_gst_caps_normalize_foreach), (gst_caps_normalize):
11119           Implement gst_caps_normalize().
11120         * testsuite/caps/normalisation.c: (main):
11121           Add an additional test
11122
11123 2003-12-31  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11124
11125         * gst/gstqueue.c: (gst_queue_init):
11126           use gst_pad_proxy_getcaps()
11127
11128 2003-12-31  David Schleef  <ds@schleef.org>
11129
11130         * gst/elements/gstshaper.c: (gst_shaper_link):
11131         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11132         * gst/gstqueue.c: (gst_queue_link):
11133           Negotiation fixes.
11134
11135 2003-12-31  David Schleef  <ds@schleef.org>
11136
11137         * gst/gstpad.c: (gst_pad_proxy_pad_link), (gst_pad_proxy_fixate):
11138         * gst/gstpad.h: Add functions that are useful as default pad
11139         link and fixate functions for elements.
11140
11141 2003-12-30  David Schleef  <ds@schleef.org>
11142
11143         * gst/gstpad.c: (gst_pad_link_try):
11144           Fix segfault when attempting to return to old caps
11145
11146 2003-12-29  David Schleef  <ds@schleef.org>
11147
11148         * gst/gstcaps.c: (gst_caps_normalize), (simplify_foreach),
11149         (gst_caps_structure_simplify), (gst_caps_simplify):
11150         * gst/gstcaps.h:
11151           Add simplify function
11152         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
11153         (gst_pad_perform_negotiate), (gst_pad_is_negotiated):
11154         * gst/gstpad.h:
11155           Copy over srcnotify, sinknotify when calling old pad_link
11156           functions.  Add new is_negotiated() function.
11157         * gst/gststructure.c: (gst_structure_copy):
11158           Fix an incredibly stupid bug that should have been noticed
11159           weeks ago.  _copy() returned the argument, not the new copy.
11160
11161 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11162
11163         * gst/gstcaps.c: (gst_caps_append):
11164           add sanity checks
11165         * gst/gstcaps.h: (gst_caps_debug):
11166           remove, it doesn't exist anymore.
11167         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
11168         (gst_element_threadsafe_properties_post_run):
11169           make debugging messages not clutter up THREAD debug category
11170         (gst_element_negotiate_pads), (gst_element_clear_pad_caps),
11171         (gst_element_change_state):
11172           update to new caps API
11173         * gst/gstinterface.c: (gst_implements_interface_cast):
11174           don't put vital code in g_return_if_fail
11175         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps), 
11176         (gst_pad_link_filtered):
11177           add pst_pad_try_link and use it.
11178         (gst_pad_perform_negotiate), (gst_pad_renegotiate):
11179           implement correctly, deprecate first one.
11180         (gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
11181           add and implement.
11182         (gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
11183           implement.
11184         (gst_pad_get_negotiated_caps):
11185           add and implement. Make GST_PAD_CAPS call this function.
11186         (gst_pad_get_caps):
11187           remove unneeded check..
11188         (gst_pad_recover_caps_error):
11189           disable, always return FALSE.
11190         (gst_real_pad_dispose):
11191           don't free caps and appfilter anymore, they're unused.
11192         * gst/gstpad.h:
11193           Reflect changes mentioned above.
11194         * gst/gstsystemclock.c: (gst_system_clock_wait):
11195           Make 'clock is way behind' a debugging message.
11196         * gst/gstthread.c: (gst_thread_change_state):
11197           Fix debugging message
11198
11199 2003-12-25  Thomas Vander Stichele  <thomas at apestaart dot org>
11200
11201         * gst/gstinfo.h:
11202           fix GST_DEBUG_CATEGORY_INIT gtk-doc description
11203         * docs/gst/tmpl/gstreamer-unused.sgml:
11204           removed all traces of cvs conflicts
11205
11206 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11207
11208         * configure.ac:
11209         * gst/schedulers/cothreads_compat.h:
11210         * libs/Makefile.am:
11211           remove last instances of wingo cothread usage
11212
11213 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11214
11215         * gst/gstplugin.c:
11216         * gst/gstversion.h.in:
11217         * gst/parse/grammar.y:
11218           change comment block from /** to /* when not gtk-doc comments
11219
11220 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11221
11222         * gst/gst.c: whitespace and doc style fixes
11223
11224 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11225
11226         * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
11227
11228 2003-12-24  Colin Walters  <walters@verbum.org>
11229
11230         * gst/elements/gsttypefindelement.c:
11231           gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
11232           Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
11233           Don't double-free caps.
11234
11235 2003-12-23  David Schleef  <ds@schleef.org>
11236
11237         * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
11238           gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
11239           Many little fixes and additions of debug statements to
11240           get rhythmbox working.
11241
11242 2003-12-23  Colin Walters  <walters@verbum.org>
11243
11244         * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
11245         Use GST_PAD_LINK_SUCCESSFUL.
11246
11247 2003-12-23  David Schleef  <ds@schleef.org>
11248
11249         * gst/elements/gstaggregator.c:
11250         * gst/elements/gsttee.c:
11251           Use gst_pad_proxy_getcaps().
11252         * gst/gstpad.c:
11253         * gst/gstpad.h:
11254           Add gst_pad_proxy_getcaps(), which filter elements can use
11255           as a generic getcaps implementation.
11256           Fix gst_pad_get_allowed_caps().  It just wasn't doing what
11257           was advertised.
11258
11259 2003-12-23  David Schleef  <ds@schleef.org>
11260
11261         * gst/gstpad.c:
11262           Rearrange/rewrite much of the pad negotiation code, since it
11263           resembled pasta.  This actually changes the way some
11264           negotiation works, since the previous code was inconsistent
11265           depending on how it was invoked.  Add (internal) structure
11266           GstPadLink, which is used to hold some information (more in
11267           the future) about the link between two pads.  Fixes a number
11268           of bugs, including random lossage of filter caps when the
11269           initial negotiation is delayed.  A few functions are still
11270           unimplemented.
11271         * gst/gstpad.h:
11272           Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros.  Please use
11273           these when testing GstPadLinkReturn values instead of comparing
11274           directly.
11275
11276 2003-12-23  David Schleef  <ds@schleef.org>
11277
11278         * gst/gstvalue.c: 
11279         * gst/gstvalue.h:
11280           Rearrange lots of code.  Change registration of compare function
11281           into registration of compare/serialize/deserialize functions.
11282           Doesn't include implementation of gst_value_[de]serialize(),
11283           but that should be easy.
11284
11285 2003-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11286
11287         * docs/gst/gstreamer-sections.txt:
11288         * docs/gst/tmpl/gstprops.sgml: removed
11289         * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
11290           David removed props and caps code, so let's remove their docs as well.
11291           Removed all no longer existing symbols from gstreamer-sections.txt
11292           
11293 2003-12-22  Colin Walters  <walters@verbum.org>
11294
11295         * gst/gsttaginterface.c, gst/gsttaginterface.h,
11296           gst/gsttag.c, gst/gsttag.h:  Add interface to setting GValues
11297           of tags directly.
11298
11299 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11300
11301         * gst/elements/gstelements.c:
11302           Set ranks of elements to NONE, so the autoplugger doesn't use them.
11303         * gst/elements/gstshaper.c: (gst_shaper_getcaps):
11304           Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
11305           gst_caps (peer).
11306
11307 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11308
11309         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
11310         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
11311         (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
11312         (gst_spider_identity_sink_loop_type_finding):
11313         * gst/autoplug/gstspideridentity.h:
11314           Fix autoplugging in spider element, so it works with new caps.
11315           This was mainly caused by identifying empty caps incorrectly.
11316
11317 2003-12-22  David Schleef  <ds@schleef.org>
11318
11319         * gststructure.c, gstvalue.c, gstvalue.h: Add
11320           gst_value_init_and_copy() and use it, to avoid silly mistakes in
11321           using g_value_copy()
11322
11323 2003-12-21  David Schleef  <ds@schleef.org>
11324
11325         * many, many files: Merge CAPS branch.  This includes:
11326           - implemention of GstValue and several GstValue types
11327           - implemention of GstStructure
11328           - entire rewrite of GstCaps
11329           - removal of GstProps
11330           - many changes to GstPad to compensate for new caps paradigm
11331           - removal of GstBufferpool
11332         * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
11333         gstvalue.h, gst/gstcaps[2]*.[ch]:
11334           - rename gstcaps2.[ch] to gstcaps.[ch]
11335
11336 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11337
11338         * gst/gstqueue.c: (gst_queue_handle_pending_events),
11339         (gst_queue_chain), (gst_queue_handle_src_event):
11340           implement timeout for sending events. Workaround for if the
11341           pipeline on this queue is not passing any data.
11342
11343 2003-12-21  Ronald Bultje <rbultje@ronald.bitfreak.net>
11344                                                                                 
11345         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
11346         * moved CVS to freedesktop.org
11347