gst/gstghostpad.c (on_int_notify): Catches notify::caps on the internal pad, and...
[platform/upstream/gstreamer.git] / ChangeLog
1 2005-06-23  Andy Wingo  <wingo@pobox.com>
2
3         * gst/gstghostpad.c (on_int_notify): Catches notify::caps on the
4         internal pad, and hacks accordingly. Doesn't do it on the target
5         pad because we change its caps. Probably catches all cases of
6         interest tho.
7         (gst_ghost_pad_set_property): Connect to notify::caps as
8         appropritate.
9
10         * tests/network-clock.scm (plot-simulation): Pipe data to the
11         elite python skript.
12
13         * tests/network-clock-utils.scm (define-parameter): New macro,
14         defines a parameter that can be set via the command line.
15         (set-parameter!, parse-parameter-arguments): Command line args
16         parser.
17
18         * tests/plot-data: Simple matplotlib-based plotter, takes input on
19         stdin.
20
21 2005-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
22
23         * gst/elements/gsttypefindelement.c:
24         (gst_type_find_element_handle_event):
25           Don't restart typefinding on a discont.
26         * gst/gstelement.c: (gst_element_set_state):
27           Debug spelling fix.
28         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_send_event):
29           Allow changing mode of an active pad.
30           Debug output fixes.
31         * gst/registries/gstlibxmlregistry.c: (load_feature):
32           Don't cast a static pad template to a normal pad template.
33
34 2005-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
35
36         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
37         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
38           remove gst_strtoll completely, since it didn't actually do
39           anything more than what g_ascii_strtoull already does.
40           check for range errors when deserializing
41           do a cast for the unsigned cases; but further fixing needs
42           a decision on what the interpretation of "(int)" and
43           deserialization should be for values that fall outside the
44           type's boundaries (ie, refuse, or interpret as casting)
45
46 2005-06-23  Wim Taymans  <wim@fluendo.com>
47
48         * check/Makefile.am:
49         * check/states/sinks.c: (START_TEST), (gst_object_suite), (main):
50         * docs/design/part-live-source.txt:
51         * docs/design/part-states.txt:
52         * gst/base/gstbasesrc.c: (gst_basesrc_init),
53         (gst_basesrc_set_live), (gst_basesrc_is_live),
54         (gst_basesrc_get_range), (gst_basesrc_activate),
55         (gst_basesrc_change_state):
56         * gst/base/gstbasesrc.h:
57         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
58         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
59         * gst/gstbin.c: (gst_bin_get_state), (gst_bin_change_state):
60         * gst/gstelement.c: (gst_element_get_state_func),
61         (gst_element_set_state):
62         * gst/gstelement.h:
63         * gst/gsttypes.h:
64         * tools/gst-launch.c: (event_loop), (main):
65         Added support for live sources and other elements that
66         cannot do preroll.
67         Updated design docs, added live-source design doc.
68         Implemented live source functionality in basesrc
69         Fix error condition in _bin_get_state()
70         Implement live source handling in -launch.
71         Added check for live sources.
72         Fixed case in GstBin where elements were changed state
73         multiple times.
74
75
76 2005-06-23  Andy Wingo  <wingo@pobox.com>
77
78         * check/gst/gstpad.c (test_get_allowed_caps, test_refcount): Fix
79         borken refcounting.
80
81         * gst/gstpad.c (gst_pad_set_caps): Remove needless refs,
82         gst_caps_replace takes care of this for us.
83
84         * gst/gstghostpad.c (gst_proxy_pad_do_setcaps): Call the full
85         gst_pad_set_caps on the target, not just its setcaps() function.
86
87         * tests/network-clock.scm: 
88         * tests/network-clock-utils.scm: A network clock simulator.
89         Something of an algorithmic testbed before doing something in C.
90
91 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
92
93         * check/Makefile.am:
94         * check/gst/capslist.h:
95           copy over from 0.8, and add two with bitmasks specified with
96           (int) 0xFF...
97         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
98           add test to parse everything from capslist.h
99         * check/gst/gststructure.c: (START_TEST), (gst_value_suite),
100         (main):
101           add test for structure deserialization
102         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
103           add tests for deserialization of strings to int types
104         * gst/gststructure.c: (gst_structure_nth_field_name):
105         * gst/gststructure.h:
106           add a way to get the name of a field referenced by index
107         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
108           instead of checking if the resulting long long lies between
109           min and max, we check if the long long would fit into
110           a number of bytes for the final type.
111           This fixes cases where a string represents 2^32 - 1, which
112           when cast to int would be the (valid) -1, but is bigger than
113           G_MAXINT
114
115 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
116
117         * gst/parse/grammar.y:
118           add a log line for type deserialization
119
120 2005-06-22  Thomas Vander Stichele  <thomas at apestaart dot org>
121
122         * check/gst/gstvalue.c: (START_TEST):
123         * gst/gstvalue.c: (gst_value_deserialize):
124           return long long, not int, so gint64 deserialization actually
125           works.  Is there any flag that makes the compiler check this ?
126           Fixes #308559
127
128 2005-06-22  Wim Taymans  <wim@fluendo.com>
129
130         * gst/gstbuffer.h:
131         Added convenience macros for setting buffers in GValue.
132
133 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
134
135         * check/gst/.cvsignore:
136         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite):
137           add a test deserializing int64, and comment part out because
138           it fails, yay !
139
140 2005-06-21  Thomas Vander Stichele  <thomas at apestaart dot org>
141
142         * check/Makefile.am:
143         * check/gst/gstvalue.c: (START_TEST), (gst_value_suite), (main):
144         * testsuite/Makefile.am:
145         * testsuite/caps/Makefile.am:
146         * testsuite/caps/value_serialize.c:
147         * testsuite/test_gst_init.c:
148           move a value_serialize test over
149
150 2005-06-20  Wim Taymans  <wim@fluendo.com>
151
152         * gst/gstpad.c:
153         Small doc updates.
154         
155         * gst/gstvalue.c: (gst_value_compare_buffer),
156         (gst_value_serialize_buffer), (gst_value_deserialize_buffer),
157         (gst_value_compare_flags), (gst_value_serialize_flags),
158         (gst_value_deserialize_flags), (_gst_value_initialize):
159         Fix serialisation of buffers, they are not boxed types anymore
160
161 2005-06-20  Wim Taymans  <wim@fluendo.com>
162
163         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite):
164         Testcase to show error in buffer-on-caps serialisation.
165
166 2005-06-20  Andy Wingo  <wingo@pobox.com>
167
168         * docs/random/wingo/porting-plugins-to-0.9: A pitiful document I
169         will be adding to later.
170
171         * gst/gstsystemclock.c (gst_system_clock_init): Unlock the clock
172         if its socks fill with rocks.
173         (gst_system_clock_obtain): Set the name on object construction.
174         Avoid double-checked locking.
175
176 2005-06-20  Tim-Philipp Müller  <tim at centricular dot net>
177
178         * gst/gsturi.c: (gst_element_make_from_uri):
179           Fix potential endless loop.
180
181 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
182
183         * check/Makefile.am:
184           add gsttag
185         * check/gst/gsttag.c: (check_tags), (START_TEST), (gst_tag_suite),
186         (main):
187           move over from testsuite dir and clean up
188         * configure.ac:
189         * gst/gsttag.c:
190         * testsuite/Makefile.am:
191         * testsuite/tags/.cvsignore:
192         * testsuite/tags/Makefile.am:
193         * testsuite/tags/merge.c:
194           remove testsuite/tags
195
196 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
197
198         * docs/gst/gstreamer-sections.txt:
199         * docs/gst/tmpl/gstenumtypes.sgml:
200         * win32/gstenumtypes.c:
201           clean up documentation build a little
202
203 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
204
205         * check/gstcheck.h:
206           add macros for checking refcounts on objects and caps
207         * check/gst/gstpad.c: (START_TEST), (gst_pad_suite):
208           add some more unit tests
209         * gst/gstpad.c: (gst_pad_link_check_compatible_unlocked),
210         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_allowed_caps):
211           fix leaked refcounts (I hope :)) so unittest works
212         * gst/gstpad.h:
213           whitespace removal
214
215 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
216
217         * configure.ac: back to HEAD
218
219 === release 0.9.1 ===
220
221 2005-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
222
223         * NEWS:
224         * RELEASE:
225           updated
226
227 2005-06-17  Andy Wingo  <wingo@pobox.com>
228
229         * gst/base/gstbasesink.c (gst_basesink_chain): Remove bogus
230         assert; it's always possible that the pad gets deactivated in
231         between the checks in gstpad.c and the implementation. Rely on
232         finish_preroll() to return a FLUSHING or similar instead of on the
233         assert.
234         
235         * gst/base/gstbasesink.c (gst_basesink_event): Only wait for the
236         clock and post an EOS message if we come out of finish_preroll in
237         the playing state.
238
239 2005-06-16  David Schleef  <ds@schleef.org>
240
241         * gst/elements/gstcapsfilter.c: (gst_capsfilter_class_init),
242         (gst_capsfilter_set_property): Allow NULL as possible value
243         for filter_caps property, indicating GST_CAPS_ANY.
244
245 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
246
247         * gst/elements/gstfakesrc.c: (gst_fakesrc_create):
248           fix debug output
249         * gst/schedulers/Makefile.am:
250           use libgst prefix
251         * gstreamer.spec.in:
252           fix spec for it
253
254 2005-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
255
256         * gstreamer.spec.in:
257           clean up
258
259 2005-06-08  Andy Wingo  <wingo@pobox.com>
260
261         * gst/gstutils.c: RPAD fixes all around.
262         (gst_element_link_pads): Refcounting fixes.
263
264         * tools/gst-inspect.c:
265         * tools/gst-xmlinspect.c:
266         * parse/grammar.y:
267         * gst/base/gsttypefindhelper.c:
268         * gst/base/gstbasesink.c:
269         * gst/gstqueue.c: RPAD fixes.
270
271         * gst/gstghostpad.h:
272         * gst/gstghostpad.c: New ghost pad implementation as full proxy
273         pads. The tricky thing is they provide both source and sink
274         interfaces, since they proxy the internal pad for the external
275         pad, and vice versa. Implement with lower-level ProxyPad objects,
276         with the interior proxy pad as a child of the exterior ghost pad.
277         Should write a doc on this.
278         
279         * gst/gstpad.h: s/RPAD/PAD/, s/RealPad/Pad/.
280         (gst_pad_set_name, gst_pad_set_parent): Macros removed, use
281         gst_object API.
282         
283         * gst/gstpad.c: Big changes. No more stub base GstPad, now all
284         pads are real pads. No ghost pads in this file. Not documenting
285         the myriad s/RPAD/PAD/ and REALIZE fixes.
286         (gst_pad_class_init): Add properties for "direction" and
287         "template". Both are construct-only, so they can't change during
288         the life of the pad. Fixes properly deriving from GstPad.
289         (gst_pad_custom_new, gst_pad_custom_new_from_template): Gone. For
290         derived objects, just set properties when creating the objects via
291         g_object_new.
292         (gst_pad_get_parent): Implement as a function, return NULL if the
293         parent is not an element.
294         (gst_pad_get_real_parent, gst_pad_add_ghost_pad)
295         (gst_pad_remove_ghost_pad, gst_pad_realize): Removed.
296         
297         * gst/gstobject.c (gst_object_class_init): Make name a construct
298         property. Don't set it in the object init.
299
300         * gst/gstelement.c (gst_element_add_pad): Don't allow adding pads
301         with UNKNOWN direction.
302         (gst_element_add_ghost_pad): Remove non-orthogonal API. Replace
303         with gst_element_add_pad (e, gst_ghost_pad_new (name, pad)).
304         (gst_element_remove_pad): Remove ghost-pad special cases.
305         (gst_element_pads_activate): Remove rpad cruft.
306
307         * gst/gstbin.c (gst_bin_change_state): Use gst_pad_get_parent to
308         catch the pad's-parent-not-an-element case.
309
310         * gst/gst.h: Include gstghostpad.h.
311
312         * gst/gst.c (init_post): No more real, ghost pads.
313
314         * gst/Makefile.am: Add gstghostpad.[ch].
315
316         * check/Makefile.am:
317         * check/gst/gstbin.c:
318         * check/gst/gstghostpad.c (test_ghost_pads): Check that linking
319         into a bin creates ghost pads, and that the refcounts are right.
320         Partly moved from gstbin.c.
321
322 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
323
324         * check/gst-libs/.cvsignore:
325         * check/gst/.cvsignore:
326         * check/pipelines/.cvsignore:
327           ignore more
328         * check/pipelines/cleanup.c: (setup_pipeline), (run_pipeline),
329         (START_TEST), (cleanup_suite), (main):
330           add some tests related to cleanup after running pipelines
331
332 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
333
334         * check/gst/gstbuffer.c: (START_TEST), (gst_test_suite), (main):
335           add a testsuite for GstBuffer
336
337 2005-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
338
339         * gst/gstminiobject.h:
340           add defines for accessing the refcount
341
342 2005-06-03  Stefan Kost  <ensonic@users.sf.net>
343
344         * Makefile.am: added support for html unit test coverage reports
345
346 2005-06-03  Jan Schmidt  <thaytan@mad.scientist.com>
347
348         * gst/elements/gstcapsfilter.c: (gst_capsfilter_set_property):
349           Free existing caps if the capsfilter changes. Add a FIXME about
350           setting those caps on the pads.
351
352         * gst/gstutils.c: (gst_element_get_compatible_pad), (ghost_up):
353           Before adding a ghost pad to a parent bin, check that there isn't
354           already one for the element on the bin. Prevents infinite recursion
355           when using decodebin in parse pipelines. Andy says he'll rewrite the
356           way this works anyway, so ignore the hack.
357
358 2005-06-02  Andy Wingo  <wingo@pobox.com>
359
360         * gst/elements/gsttypefindelement.c (do_pull_typefind): Query the
361         file size, pass it on to the type find helper.
362
363         * gst/base/gstbasesrc.c (gst_basesrc_do_seek): Set the
364         segment_start and segment_end properly according to the seek
365         method. Segment_end is still a bit flaky because offset can be
366         negative for CUR and END cases, but it takes -1 as an "unset"
367         value.
368
369 2005-06-02  Wim Taymans  <wim@fluendo.com>
370
371         * gst/base/gstbasesink.c: (gst_basesink_pad_buffer_alloc),
372         (gst_base_sink_buffer_alloc), (gst_basesink_preroll_queue_push),
373         (gst_basesink_activate):
374         * gst/base/gstbasesink.h:
375         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
376         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
377         (gst_pad_query), (gst_pad_start_task):
378         * gst/gstpad.h:
379         * gst/gstqueue.c: (gst_queue_bufferalloc),
380         (gst_queue_handle_sink_event), (gst_queue_chain):
381         Bufferalloc: return GstFlowReturn to more accuratly report
382         why allocation failed.
383
384 2005-06-02  Wim Taymans  <wim@fluendo.com>
385
386         * gst/gstpipeline.c: (gst_pipeline_send_event):
387         Take snapshot of state without blocking.
388
389 2005-06-02  Wim Taymans  <wim@fluendo.com>
390
391         * docs/design/part-TODO.txt:
392         * docs/design/part-caps.txt:
393         * docs/design/part-clocks.txt:
394         * docs/design/part-negotiation.txt:
395         * docs/design/part-preroll.txt:
396         Small doc updates 
397
398 2005-05-30  Wim Taymans  <wim@fluendo.com>
399
400         * gst/elements/gstidentity.c: (gst_identity_event),
401         (gst_identity_transform), (gst_identity_get_property):
402         Protect last_message property as it is accessed from
403         multiple threads.
404
405 2005-05-30  Wim Taymans  <wim@fluendo.com>
406
407         * gst/gstelement.c: (gst_element_init),
408         (gst_element_pads_activate), (gst_element_change_state):
409         Slicker pad activation code.
410
411 2005-05-30  Wim Taymans  <wim@fluendo.com>
412
413         * gst/Makefile.am:
414         * gst/gstelement.h:
415         * gst/gstelementfactory.h:
416         * gst/gsttypes.h:
417         Move elementfactory methods to separate .h file.
418
419 2005-05-30  Wim Taymans  <wim@fluendo.com>
420
421         * docs/design/part-overview.txt:
422         * gst/gstsystemclock.h:
423         Small typo fixes, doc updates.
424
425 2005-05-30  Wim Taymans  <wim@fluendo.com>
426
427         * gst/gst.c: (gst_init_get_popt_table), (init_post),
428         (init_popt_callback):
429         Remove cpu-opt flag.
430
431 2005-05-30  Wim Taymans  <wim@fluendo.com>
432
433         * gst/gstbuffer.c: (gst_subbuffer_finalize),
434         (gst_buffer_create_sub), (gst_buffer_is_span_fast):
435         * gst/gstbuffer.h:
436         Avoid typechecking in places where not needed.
437         Added accessor for malloc_data.
438
439 2005-05-30  Wim Taymans  <wim@fluendo.com>
440
441         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_set_active),
442         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_accept_caps),
443         (gst_pad_configure_sink), (gst_pad_configure_src),
444         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_send_event),
445         (gst_pad_start_task):
446         Propagate errors from _set_caps() in configure_src/sink
447         functions instead of returning TRUE.
448         FLUSH events can travel up and downstream
449
450
451 2005-05-30  Wim Taymans  <wim@fluendo.com>
452
453         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
454         (gst_basesink_activate):
455         Handle EOS in preroll.
456
457 2005-05-30  Wim Taymans  <wim@fluendo.com>
458
459         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
460         (gst_queue_loop), (gst_queue_handle_src_event):
461         Remove old pieces of code
462         Flushing the queue in an upstream event is a very bad idea.
463
464 2005-05-26  Andy Wingo  <wingo@pobox.com>
465
466         * gst/gstminiobject.c (gst_value_mini_object_collect): Use
467         gst_value_set_mini_object so as to add a ref on the object (which
468         will be removed when the value is unset).
469
470         * gst/elements/gstfakesink.c (gst_fakesink_class_init): Fix signal
471         arg type in ::handoff.
472
473         * gst/gstelement.c (gst_element_change_state): Also deactivate
474         pads in READY->NULL, just in case the element didn't make it to
475         PAUSED. Wingo tested, Wim approved.
476
477 2005-05-26  Wim Taymans  <wim@fluendo.com>
478
479         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
480         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_alloc_buffer),
481         (gst_pad_query), (gst_pad_send_event), (gst_pad_start_task):
482         A flushing pad cannot be used to alloc_buffer from.
483
484 2005-05-26  Wim Taymans  <wim@fluendo.com>
485
486         * gst/gstbus.c: (gst_bus_init), (gst_bus_dispose), (gst_bus_post),
487         (gst_bus_pop), (gst_bus_source_prepare), (gst_bus_source_check),
488         (gst_bus_source_dispatch), (gst_bus_source_finalize),
489         (gst_bus_create_watch), (gst_bus_add_watch_full):
490         * gst/gstbus.h:
491         Implement a real GSource and use g_main_context_wakeup() to
492         signal new messages instead of the socketpair.
493
494 2005-05-25  Wim Taymans  <wim@fluendo.com>
495
496         * gst/gstbin.c: (bin_element_is_sink), (has_ancestor),
497         (bin_element_is_semi_sink), (append_child), (gst_bin_change_state):
498         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
499         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
500         (gst_pad_send_event), (gst_pad_start_task):
501         * gst/gstqueue.c: (gst_queue_init), (gst_queue_locked_flush),
502         (gst_queue_handle_sink_event), (gst_queue_chain), (gst_queue_loop),
503         (gst_queue_sink_activate), (gst_queue_src_activate),
504         (gst_queue_change_state):
505         * gst/gstqueue.h:
506         Fix state changes for non sinks. We now change sinks, then elements
507         with unconnected srcpads, then the rest.
508         More efficient queue unlocking in flush and state changes.
509         Set the pad activate mode even if it does not have an activate
510         function.
511
512 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
513
514         * gst/base/gstbasesrc.c: (gst_basesrc_activate):
515           Don't go in pull mode for non-seekable sources.
516         * gst/elements/gsttypefindelement.h:
517         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
518         (gst_type_find_element_dispose), (gst_type_find_handle_src_query),
519         (free_entry), (stop_typefinding),
520         (gst_type_find_element_handle_event), (find_peek),
521         (gst_type_find_element_chain), (do_pull_typefind),
522         (gst_type_find_element_change_state):
523           Allow typefinding (w/o seeking) in push-mode, simplified version
524           of what was in 0.8.
525         * gst/gstutils.c: (gst_buffer_join):
526         * gst/gstutils.h:
527           gst_buffer_join() from 0.8.
528
529 2005-05-25  Wim Taymans  <wim@fluendo.com>
530
531         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_prepare),
532         (gst_pad_link), (gst_pad_accept_caps), (gst_pad_query),
533         (gst_pad_send_event), (gst_pad_start_task):
534         Disable attempt at mode switching until it is figured out.
535
536 2005-05-25  Wim Taymans  <wim@fluendo.com>
537
538         * gst/base/gstadapter.c: (gst_adapter_peek), (gst_adapter_flush):
539         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_push),
540         (gst_basesink_finish_preroll), (gst_basesink_chain),
541         (gst_basesink_loop), (gst_basesink_activate),
542         (gst_basesink_change_state):
543         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek),
544         (gst_basesrc_get_range), (gst_basesrc_loop),
545         (gst_basesrc_activate):
546         * gst/elements/gsttee.c: (gst_tee_sink_activate):
547         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
548         (gst_real_pad_init), (gst_real_pad_set_property),
549         (gst_real_pad_get_property), (gst_pad_set_active),
550         (gst_pad_is_active), (gst_pad_get_query_types), (gst_pad_unlink),
551         (gst_pad_link_prepare), (gst_pad_link), (gst_pad_get_real_parent),
552         (gst_real_pad_get_caps_unlocked), (gst_pad_peer_get_caps),
553         (gst_pad_accept_caps), (gst_pad_get_peer), (gst_pad_realize),
554         (gst_pad_event_default_dispatch), (gst_pad_event_default),
555         (gst_pad_dispatcher), (gst_pad_query), (gst_real_pad_dispose),
556         (gst_pad_save_thyself), (handle_pad_block), (gst_pad_chain),
557         (gst_pad_push), (gst_pad_get_range), (gst_pad_pull_range),
558         (gst_pad_send_event), (gst_pad_start_task), (gst_pad_pause_task),
559         (gst_pad_stop_task):
560         * gst/gstpad.h:
561         * gst/gstqueue.c: (gst_queue_handle_sink_event), (gst_queue_chain),
562         (gst_queue_loop), (gst_queue_src_activate):
563         * gst/gsttask.c: (gst_task_init), (gst_task_set_lock),
564         (gst_task_get_state):
565         * gst/gsttask.h:
566         * gst/schedulers/threadscheduler.c:
567         (gst_thread_scheduler_task_start), (gst_thread_scheduler_func):
568         Implement gst_pad_pause/start/stop_task(), take STREAM lock
569         in task function.
570         Remove ACTIVE pad flag, use FLUSHING everywhere
571         Added _pad_chain(), _pad_get_range() to call chain/getrange 
572         functions.
573         Add locks around IS_FLUSHING when reading.
574         Take STREAM lock in chain(), get_range() functions so plugins
575         don't need to take it anymore.
576         
577
578
579 2005-05-25  Wim Taymans  <wim@fluendo.com>
580
581         * tools/gst-launch.c: (event_loop):
582         Unref message after using its contents instead of
583         before.
584
585 2005-05-24  Wim Taymans  <wim@fluendo.com>
586
587         * docs/design/draft-ghostpads.txt:
588         * docs/design/draft-push-pull.txt:
589         * docs/design/draft-query.txt:
590         * docs/design/part-overview.txt:
591         Docs updates, added general overview doc.
592
593 2005-05-21  David Schleef  <ds@schleef.org>
594
595         * docs/gst/tmpl/old/GstBin.sgml:
596         * docs/gst/tmpl/old/GstBuffer.sgml:
597         * docs/gst/tmpl/old/GstCaps.sgml:
598         * docs/gst/tmpl/old/GstClock.sgml:
599         * docs/gst/tmpl/old/GstCompat.sgml:
600         * docs/gst/tmpl/old/GstData.sgml:
601         * docs/gst/tmpl/old/GstElement.sgml:
602         * docs/gst/tmpl/old/GstEvent.sgml:
603         * docs/gst/tmpl/old/GstIndex.sgml:
604         * docs/gst/tmpl/old/GstStructure.sgml:
605         * docs/gst/tmpl/old/GstTag.sgml:
606         * docs/gst/tmpl/old/cothreads.sgml:
607         * docs/gst/tmpl/old/cothreads_compat.sgml:
608         * docs/gst/tmpl/old/gettext.sgml:
609         * docs/gst/tmpl/old/gobject2gtk.sgml:
610         * docs/gst/tmpl/old/grammar.tab.sgml:
611         * docs/gst/tmpl/old/gst-i18n-app.sgml:
612         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
613         * docs/gst/tmpl/old/gst_private.sgml:
614         * docs/gst/tmpl/old/gstaggregator.sgml:
615         * docs/gst/tmpl/old/gstarch.sgml:
616         * docs/gst/tmpl/old/gstatomic_impl.sgml:
617         * docs/gst/tmpl/old/gstbufferstore.sgml:
618         * docs/gst/tmpl/old/gstdata_private.sgml:
619         * docs/gst/tmpl/old/gstdisksink.sgml:
620         * docs/gst/tmpl/old/gstdisksrc.sgml:
621         * docs/gst/tmpl/old/gstelementfactory.sgml:
622         * docs/gst/tmpl/old/gstextratypes.sgml:
623         * docs/gst/tmpl/old/gstfakesink.sgml:
624         * docs/gst/tmpl/old/gstfakesrc.sgml:
625         * docs/gst/tmpl/old/gstfdsink.sgml:
626         * docs/gst/tmpl/old/gstfdsrc.sgml:
627         * docs/gst/tmpl/old/gstfilesink.sgml:
628         * docs/gst/tmpl/old/gstfilesrc.sgml:
629         * docs/gst/tmpl/old/gsthttpsrc.sgml:
630         * docs/gst/tmpl/old/gstidentity.sgml:
631         * docs/gst/tmpl/old/gstindexfactory.sgml:
632         * docs/gst/tmpl/old/gstmarshal.sgml:
633         * docs/gst/tmpl/old/gstmd5sink.sgml:
634         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
635         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
636         * docs/gst/tmpl/old/gstpadtemplate.sgml:
637         * docs/gst/tmpl/old/gstpipefilter.sgml:
638         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
639         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
640         * docs/gst/tmpl/old/gstshaper.sgml:
641         * docs/gst/tmpl/old/gstspider.sgml:
642         * docs/gst/tmpl/old/gstspideridentity.sgml:
643         * docs/gst/tmpl/old/gststatistics.sgml:
644         * docs/gst/tmpl/old/gsttee.sgml:
645         * docs/gst/tmpl/old/gsttimecache.sgml:
646         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
647         * docs/gst/tmpl/old/gstxmlregistry.sgml:
648         * docs/gst/tmpl/old/gthread-cothreads.sgml:
649         * docs/gst/tmpl/old/types.sgml:
650           I didn't intend to add these or check them in.
651
652 2005-05-19  David Schleef  <ds@schleef.org>
653
654         * configure.ac: Use -no-common everywhere.  In a sane world, it
655           would be the default in libtool, because without it, you can't
656           build DLLs on Windows.
657         * docs/gst/gstreamer-docs.sgml: Remove GstCpu, GstData, GstThread
658         * docs/gst/gstreamer-sections.txt:
659         * docs/gst/tmpl/gstcpu.sgml:
660         * docs/gst/tmpl/gstdata.sgml:
661         * docs/gst/tmpl/gstthread.sgml:
662
663 2005-05-19  David Schleef  <ds@schleef.org>
664
665         * gst/gstminiobject.c: (gst_value_set_mini_object),
666         (gst_value_take_mini_object), (gst_value_get_mini_object):
667         * gst/gstminiobject.h: Add GValue set/get functions.
668
669 2005-05-19  Wim Taymans  <wim@fluendo.com>
670
671         * gst/gstbuffer.c: (gst_buffer_init), (gst_subbuffer_get_type),
672         (gst_subbuffer_class_init), (gst_subbuffer_finalize),
673         (gst_subbuffer_init), (gst_buffer_is_span_fast):
674         * gst/gstbuffer.h:
675         * gst/gstbus.c: (gst_bus_post):
676         * gst/gstelement.c: (gst_element_get_random_pad):
677         * gst/gstmessage.c: (gst_message_init), (gst_message_finalize):
678         Make subbufer unref the parent in finalize.
679         some more debugging info.
680
681
682 2005-05-19  Wim Taymans  <wim@fluendo.com>
683
684         * gst/base/gstbasesink.c: (gst_basesink_class_init),
685         (gst_basesink_init), (gst_basesink_finalize),
686         (gst_basesink_activate), (gst_basesink_change_state):
687         Don't free preroll queue too early.
688
689 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
690
691         * gst/Makefile.am:
692         * gst/ROADMAP:
693           Hi, I'm outdated. Please shoot me.
694
695 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
696
697         * gst/gstpipeline.c: (gst_pipeline_send_event):
698           Do not access variables after they have been deleted.
699
700 2005-05-19  Wim Taymans  <wim@fluendo.com>
701
702         * tools/gst-inspect.c: (print_plugin_features):
703         A plugin feature does unfortunatly not use the
704         object name yet...
705
706 2005-05-18  Wim Taymans  <wim@fluendo.com>
707
708         * gst/gstbuffer.c: (gst_buffer_is_span_fast), (gst_buffer_span):
709         Port _span() functions to new subbuffers.
710
711 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
712
713         * gst/gstbin.c: (gst_bin_add_func):
714           Fix clock settery in bins when adding kids after the clock has
715           been selected.
716
717 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
718
719         * gst/elements/gstidentity.c: (gst_identity_class_init):
720           Workaround until signals support GstMiniObject.
721
722 2005-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
723
724         * gst/gstbuffer.c:
725         Oops, fix a typo GST_TYPE_BUFFER -> GST_TYPE_SUBBUFFER.
726
727 2005-05-18  Wim Taymans  <wim@fluendo.com>
728
729         * gst/base/Makefile.am:
730         * gst/base/gstadapter.c: (gst_adapter_base_init),
731         (gst_adapter_class_init), (gst_adapter_init),
732         (gst_adapter_dispose), (gst_adapter_finalize), (gst_adapter_new),
733         (gst_adapter_clear), (gst_adapter_push), (gst_adapter_peek),
734         (gst_adapter_flush), (gst_adapter_available),
735         (gst_adapter_available_fast):
736         * gst/base/gstadapter.h:
737         Ported and added adapter to the base classes.
738
739 2005-05-17  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
740
741         * gst/gst.c:
742         * gst/gstmessage.c:
743           Make sure the class is reffed/unreffed once before threads can be
744           used.  Fixes #304551.
745
746 2005-05-17  Wim Taymans  <wim@fluendo.com>
747
748         * gst/base/gstbasesink.c: (gst_basesink_finish_preroll),
749         (gst_basesink_chain_unlocked), (gst_basesink_activate):
750         * gst/gstminiobject.c: (gst_mini_object_get_type),
751         (gst_mini_object_free):
752         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query),
753         (gst_pad_push), (gst_pad_push_event):
754         * gst/gstqueue.c: (gst_queue_change_state):
755         Don't queue buffers in basesink when we are flushing.
756         Unref buffer when flushing in basesink.
757         Flush queue when going to READY
758         Unref buffer when _push() returns an error.
759         Don't free MiniObject instance when refcount is incremented
760         in _finalize() so that we can recover objects.
761
762 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
763
764         * docs/manual/advanced-schedulers.xml:
765         * docs/manual/appendix-checklist.xml:
766         * docs/pwg/advanced-clock.xml:
767         * docs/pwg/advanced-interfaces.xml:
768         * docs/pwg/advanced-request.xml:
769         * docs/pwg/advanced-types.xml:
770         * docs/pwg/intro-preface.xml:
771         * examples/plugins/example.c: (gst_example_get_type),
772         (gst_example_class_init), (gst_example_chain),
773         (gst_example_set_property), (gst_example_get_property),
774         (gst_example_change_state), (plugin_init):
775         * examples/plugins/example.h:
776           small doc fixes
777
778 2005-05-17  Wim Taymans  <wim@fluendo.com>
779
780         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_set_caps),
781         (gst_pad_alloc_buffer), (gst_pad_query), (gst_pad_push):
782         * gst/gstqueue.c: (gst_queue_change_state):
783         Clear queue when going to READY.
784         Remove IN_SETCAPS flag too.
785
786 2005-05-17  Tim-Philipp Müller  <tim at centricular dot net>
787
788         * gst/base/gstbasesrc.c: (gst_basesrc_change_state):
789           Remove implicit cast from gboolean to GstElementStateReturn;
790           make sure we still return failure in paused => ready case if
791           the parent class fails to change state and our own stop 
792           vfunc succeeds.
793
794 2005-05-17  Wim Taymans  <wim@fluendo.com>
795
796         * tools/gst-launch.c: (event_loop):
797         Message was unreffed too soon.
798
799 2005-05-16  Andy Wingo  <wingo@pobox.com>
800
801         * gst/gstbin.c (sink_iterator_filter): Err... um...
802
803         * check/gst/gstbin.c (test_ghost_pads): New test for the
804         ghosting-if-elements-not-in-same-bin behavior.
805
806 2005-05-16  David Schleef  <ds@schleef.org>
807
808         * gst/gstminiobject.c: Use g_atomic_int_get() instead of
809         accessing refcount directly.
810
811 2005-05-15  David Schleef  <ds@schleef.org>
812
813         * check/Makefile.am: remove GstData checks
814         * check/gst-libs/gdp.c: (START_TEST): fix for API changes
815         * gst/Makefile.am: add miniobject, remove data
816         * gst/gst.h: add miniobject, remove data
817         * gst/gstdata.c: remove
818         * gst/gstdata.h: remove
819         * gst/gstdata_private.h: remove
820         * gst/gsttypes.h: remove GstEvent and GstMessage
821         * gst/gstelement.c: (gst_element_post_message): fix for API changes
822         * gst/gstmarshal.list: change BOXED -> OBJECT
823
824         Implement GstMiniObject.
825         * gst/gstminiobject.c:
826         * gst/gstminiobject.h:
827
828         Modify to be subclasses of GstMiniObject.
829         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
830         (gst_buffer_class_init), (gst_buffer_finalize), (_gst_buffer_copy),
831         (gst_buffer_init), (gst_buffer_new), (gst_buffer_new_and_alloc),
832         (gst_subbuffer_get_type), (gst_subbuffer_init),
833         (gst_buffer_create_sub), (gst_buffer_is_span_fast),
834         (gst_buffer_span):
835         * gst/gstbuffer.h:
836         * gst/gstevent.c: (_gst_event_initialize), (gst_event_get_type),
837         (gst_event_class_init), (gst_event_init), (gst_event_finalize),
838         (_gst_event_copy), (gst_event_new):
839         * gst/gstevent.h:
840         * gst/gstmessage.c: (_gst_message_initialize),
841         (gst_message_get_type), (gst_message_class_init),
842         (gst_message_init), (gst_message_finalize), (_gst_message_copy),
843         (gst_message_new), (gst_message_new_error),
844         (gst_message_new_warning), (gst_message_new_tag),
845         (gst_message_new_state_changed), (gst_message_new_application):
846         * gst/gstmessage.h:
847         * gst/gstprobe.c: (gst_probe_perform),
848         (gst_probe_dispatcher_dispatch):
849         * gst/gstprobe.h:
850         * gst/gstquery.c: (_gst_query_initialize), (gst_query_get_type),
851         (gst_query_class_init), (gst_query_finalize), (gst_query_init),
852         (_gst_query_copy), (gst_query_new):
853
854         Update elements for GstData -> GstMiniObject changes
855         * gst/gstquery.h:
856         * gst/gstqueue.c: (gst_queue_finalize), (gst_queue_locked_flush),
857         (gst_queue_chain), (gst_queue_loop):
858         * gst/elements/gstbufferstore.c:
859         (gst_buffer_store_add_buffer_func),
860         (gst_buffer_store_cleared_func), (gst_buffer_store_get_buffer):
861         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
862         (gst_fakesink_render):
863         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
864         * gst/elements/gstfilesrc.c: (gst_mmap_buffer_get_type),
865         (gst_mmap_buffer_class_init), (gst_mmap_buffer_init),
866         (gst_mmap_buffer_finalize), (gst_filesrc_map_region),
867         (gst_filesrc_create_read):
868         * gst/elements/gstidentity.c: (gst_identity_class_init):
869         * gst/elements/gsttypefindelement.c:
870         (gst_type_find_element_src_event), (free_entry_buffers),
871         (gst_type_find_element_handle_event):
872         * libs/gst/dataprotocol/dataprotocol.c:
873         (gst_dp_header_from_buffer):
874         * libs/gst/dataprotocol/dataprotocol.h:
875         * libs/gst/dataprotocol/dp-private.h:
876
877 2005-05-15  David Schleef  <ds@schleef.org>
878
879         * gst/elements/gstelements.c: Don't include headers that were
880         just removed.
881
882 2005-05-15  David Schleef  <ds@schleef.org>
883
884         * gst/elements/Makefile.am: Remove some elements that don't
885         need to be in the core (or even exist at all).
886         * gst/elements/gstaggregator.c:
887         * gst/elements/gstaggregator.h:
888         * gst/elements/gstmd5sink.c:
889         * gst/elements/gstmd5sink.h:
890         * gst/elements/gstmultifilesrc.c:
891         * gst/elements/gstmultifilesrc.h:
892         * gst/elements/gstpipefilter.c:
893         * gst/elements/gstpipefilter.h:
894         * gst/elements/gstshaper.c:
895         * gst/elements/gstshaper.h:
896         * gst/elements/gststatistics.c:
897         * gst/elements/gststatistics.h:
898         * po/POTFILES.in: Remove above files.
899
900 2005-05-14  Andy Wingo  <wingo@pobox.com>
901
902         * gst/gstbin.c (gst_bin_iterate_sinks): Use sink_iterator_filter
903         so as to get the refs right.
904         (sink_iterator_filter): New function, wraps bin_element_is_sink,
905         unreffing objects that don't pass the filter.
906
907         * gst/gstpipeline.c (gst_pipeline_init): Drop ref on bus after
908         gst_element_set_bus.
909         (gst_pipeline_dispose): Set the bus on the pipeline to NULL. In
910         normal cases, this will destroy the bus.
911
912         * gst/gstutils.c (prepare_link_maybe_ghosting): Drop ref on root
913         object.
914
915         * gst/gstbin.c (gst_bin_change_state): Fix state changes if a bin
916         has no sinks.
917
918 2005-05-13  Andy Wingo  <wingo@pobox.com>
919
920         * gst/gstutils.c (gst_element_link_pads): Instead of calling
921         gst_pad_link, call pad_link_maybe_ghosting,
922         (pad_link_maybe_ghosting): Links pads, making sure that the
923         elements being linked are in the same bin.
924         (find_common_root, object_has_ancestor, ghost_up, remove_pad):
925         Helpers for pad_link_maybe_ghosting.
926
927 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
928
929         * configure.ac:
930           Require GLib >= 2.4.0 (for the g_atomic_* funcs)
931
932 2005-05-13  Tim-Philipp Müller  <tim at centricular dot net>
933
934         * docs/design/part-element-source.txt:
935           Mention GstPushSrc
936
937 2005-05-12  Wim Taymans  <wim@fluendo.com>
938
939         * gst/base/gstbasesink.c: (gst_basesink_init),
940         (gst_basesink_activate):
941         * gst/base/gstbasesrc.c: (gst_basesrc_unlock),
942         (gst_basesrc_is_seekable):
943         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
944         (bin_element_is_sink), (gst_bin_change_state):
945         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
946         * gst/gstelement.h:
947         Identify sinks by their flag to avoid overly complicated
948         checks (fow now).
949         Do state changes even for elements not reachable from the
950         sinks.
951         BaseSink is a sink now :)
952         Some more debugging info in the basesrc.
953
954
955 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
956
957         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_query):
958           Implement _query on a bin, similar to _send_event.
959
960 2005-05-12  Tim-Philipp Müller  <tim at centricular dot net>
961
962         * gst/base/gstbasesrc.c: (gst_basesrc_do_seek):
963           Discont event offset format should be GST_FORMAT_BYTES,
964           not GST_FORMAT_TIME.
965
966 2005-05-12  Wim Taymans  <wim@fluendo.com>
967
968         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_get_state):
969         Same fix as Ronald's but without the signal. 
970
971 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
972
973         * gst/gstutils.c: (gst_element_query_position):
974           No, an element is not a pad.
975
976 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
977
978         * gst/gstbin.c: (gst_bin_add_func), (cb_parent_unset),
979         (gst_bin_get_state):
980           If a child is removed from a bin while we remove the child from
981           the bin and while we're retrieving its state, signal this to the
982           get_state function so we abort the wait (instead of waiting for
983           a timeout) and can immediately re-iterate over all other elements.
984
985 2005-05-12  Wim Taymans  <wim@fluendo.com>
986
987         * gst/base/Makefile.am:
988         * gst/base/gstbasesrc.c: (gst_basesrc_is_seekable),
989         (gst_basesrc_start):
990         * gst/base/gstbasesrc.h:
991         * gst/base/gstpushsrc.c: (gst_pushsrc_get_type),
992         (gst_pushsrc_base_init), (gst_pushsrc_class_init),
993         (gst_pushsrc_init), (gst_pushsrc_create):
994         * gst/base/gstpushsrc.h:
995         Added is_seekable to BaseSrc
996         Added simple PushSrc.
997
998 2005-05-11  Wim Taymans  <wim@fluendo.com>
999
1000         * gst/gstelement.c: (gst_element_add_pad), (gst_element_query):
1001         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1002         (gst_element_link_pads), (gst_element_query_position),
1003         (gst_element_query_convert), (intersect_caps_func),
1004         (gst_pad_query_position), (gst_pad_query_convert):
1005         Fix refcounting in utils function.
1006         No point in trying to activate a pad when it's added, it could
1007         be added from the state change function and then we deadlock, the
1008         element has to decide what to do.
1009
1010 2005-05-10  Andy Wingo  <wingo@pobox.com>
1011
1012         * gst/elements/gstfakesink.c (gst_fakesink_render): Er, emit with
1013         *all* the arguments.
1014
1015         * gst/base/gstbasetransform.c (gst_base_transform_event): Grab the
1016         stream lock if it's a FLUSH_DONE; normal flushes don't get the
1017         lock (according to the docs -- if this is wrong change the docs).
1018
1019         * gst/gstpipeline.c (gst_pipeline_change_state): Set the bus to
1020         flush messages in the NULL state.
1021
1022         * gst/gstbus.c (gst_bus_post): If a bus is flushing, unref the
1023         message immediately and return.
1024         (gst_bus_set_flushing): New function. If a bus is flushing, it
1025         flushes out any queued messages and immediately unrefs new
1026         messages. This is so when an element goes to NULL, all of the
1027         unhandled messages coming from it can be freed, and their
1028         references to the element dropped. In other words: message source
1029         ref considered harmful :P
1030
1031         * gst/gstbin.c (gst_bin_change_state): Unref peer element when
1032         we're finished with it.
1033
1034         * gst/gstmessage.c (gst_message_new_state_changed): 
1035
1036 2005-05-10  Wim Taymans  <wim@fluendo.com>
1037
1038         * gst/gstvalue.c: (gst_value_compare_flags),
1039         (gst_value_serialize_flags), (gst_value_deserialize_flags),
1040         (_gst_value_initialize):
1041         Added flags serialize/deserialize/compare code.
1042
1043 2005-05-09  Andy Wingo  <wingo@pobox.com>
1044
1045         * gst/base/gstbasetransform.c (gst_base_transform_proxy_getcaps):
1046         Intersect the peer's caps with our caps.
1047
1048 2005-05-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1049
1050         * gst/base/gsttypefindhelper.c: (helper_find_peek):
1051         * gst/elements/gsttypefindelement.c: (find_peek):
1052           Handle negative offsets better. Fixes decodebin.
1053
1054 2005-05-09  Wim Taymans  <wim@fluendo.com>
1055
1056         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps),
1057         (gst_base_transform_event):
1058         * gst/gstpad.c: (gst_pad_accept_caps), (gst_pad_query):
1059         Implement accept_caps.
1060         Fix silly lock/unlock mismatch in base class.
1061
1062 2005-05-09  Wim Taymans  <wim@fluendo.com>
1063
1064         * docs/design/draft-push-pull.txt:
1065         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_query):
1066         * gst/elements/gstfilesink.c: (gst_filesink_init),
1067         (gst_filesink_query):
1068         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
1069         (gst_type_find_handle_src_query), (find_element_get_length):
1070         * gst/gstelement.c: (gst_element_seek), (gst_element_query):
1071         * gst/gstelement.h:
1072         * gst/gstmessage.c:
1073         * gst/gstmessage.h:
1074         * gst/gstpad.c: (gst_real_pad_init), (gst_pad_get_query_types),
1075         (gst_real_pad_get_caps_unlocked),
1076         (gst_pad_get_internal_links_default), (gst_pad_get_internal_links),
1077         (gst_pad_event_default_dispatch), (gst_pad_event_default),
1078         (gst_pad_dispatcher), (gst_pad_query), (gst_pad_query_default),
1079         (gst_real_pad_dispose), (gst_real_pad_finalize),
1080         (gst_pad_load_and_link), (gst_pad_save_thyself),
1081         (gst_ghost_pad_save_thyself), (handle_pad_block), (gst_pad_push),
1082         (gst_pad_check_pull_range), (gst_pad_pull_range),
1083         (gst_pad_template_get_type), (gst_pad_template_class_init),
1084         (gst_pad_template_init), (gst_pad_template_dispose),
1085         (name_is_valid), (gst_static_pad_template_get),
1086         (gst_pad_template_new), (gst_static_pad_template_get_caps),
1087         (gst_pad_template_get_caps), (gst_pad_set_element_private),
1088         (gst_pad_get_element_private), (gst_pad_start_task),
1089         (gst_pad_pause_task), (gst_pad_stop_task),
1090         (gst_ghost_pad_get_type), (gst_ghost_pad_class_init),
1091         (gst_ghost_pad_init), (gst_ghost_pad_dispose),
1092         (gst_ghost_pad_set_property), (gst_ghost_pad_get_property),
1093         (gst_ghost_pad_new):
1094         * gst/gstpad.h:
1095         * gst/gstquery.c: (_gst_query_initialize), (gst_query_new),
1096         (gst_query_new_position), (gst_query_set_position),
1097         (gst_query_parse_position), (gst_query_new_convert),
1098         (gst_query_set_convert), (gst_query_parse_convert):
1099         * gst/gstquery.h:
1100         * gst/gstqueryutils.c:
1101         * gst/gstqueryutils.h:
1102         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
1103         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
1104         (gst_queue_handle_src_query):
1105         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1106         (gst_element_query_position), (gst_element_query_convert),
1107         (intersect_caps_func), (gst_pad_query_position),
1108         (gst_pad_query_convert):
1109         * gst/gstutils.h:
1110         * tools/gst-inspect.c: (print_pad_info):
1111         * tools/gst-xmlinspect.c: (print_element_info):
1112         Remove old query functions. Ported old code.
1113         Added position/convert helper functions to gstutils.
1114         Reordered gstpad.c code, grouping relevant things.
1115         Remove gst_message_new(), always need to speficy a specific
1116         message.
1117
1118
1119 2005-05-09  Andy Wingo  <wingo@pobox.com>
1120
1121         * gst/gstiterator.h: Add some includes.
1122
1123         * gst/gstqueryutils.h: Include more headers.
1124
1125         * gst/gstpad.h:
1126         * gst/gstpad.c (gst_pad_query_position): New routine, replaces
1127         some uses of gst_pad_query.
1128
1129         * gst/gstqueryutils.c: Build fixes. Make parse functions ignore
1130         NULL out parameters.
1131         (gst_query_new_position): New proc, allocates a new position
1132         query.
1133
1134         * gst/Makefile.am (libgstreamer_@GST_MAJORMINOR@_la_SOURCES): Add
1135         gstqueryutils.c to the build.
1136
1137         * gst/gststructure.c (gst_structure_set_valist): Implement with
1138         the generic G_VALUE_COLLECT.
1139         
1140 2005-05-08  Edward Hervey  <bilboed@bilboed.com>
1141
1142         * gst/Makefile.am: (gst_headers):
1143         Added gstqueryutils.h to the list of headers to install, that was
1144         a 'nachty' move wingo :)
1145
1146 2005-05-06  Andy Wingo  <wingo@pobox.com>
1147
1148         * gst/gstquery.h
1149         * gst/gstquery.c (_gst_query_initialize): Extend GstQuery from
1150         GstData, init a memchunk.
1151         (standard_definitions): Add a few query types, deprecate a few.
1152         (gst_query_get_type): New proc.
1153         (_gst_query_copy, _gst_query_free, gst_query_new): GstData
1154         implementation.
1155         (gst_query_new_application, gst_query_get_structure): New public
1156         procs.
1157
1158         * docs/design/draft-query.txt: Removed LINKS from the query types,
1159         because all the rest can be dispatched to other pads -- seemed
1160         ugly to have a query that couldn't be dispatched. internal_links
1161         is fine as a pad method.
1162
1163         * gst/gstpad.h: Add query2 as a pad method, add the new functions
1164         in gstpad.c, but maintain binary compatibility for the moment.
1165         Will fix before 0.9 is out.
1166
1167         * gst/gstqueryutils.c: 
1168         * gst/gstqueryutils.h: New files, implement 3 methods for each
1169         query type: parse_query, parse_response, and set. Probably need an
1170         allocator as well.
1171
1172         * gst/gst.h: Add gstquery.h and gstqueryutils.h to the list.
1173
1174         * gst/elements/gstfilesink.c (gst_filesink_query2):
1175         * gst/base/gstbasesrc.c (gst_basesrc_query2): Replace old query,
1176         query_types, and formats methods.
1177
1178         * gst/gstpad.c (gst_pad_query2, gst_pad_query2_default)
1179         (gst_pad_set_query2_function): New functions.
1180         (gst_real_pad_init): Set query2_default as the default query2
1181         function. Basically just dispatches to internally linked pads.
1182
1183         Needs review!
1184         
1185         * gst/gstdata_private.h (_GST_DATA_INIT): Set data->refcount to 1
1186         without using the atomic operations. Only one thread can possibly
1187         be accessing the data at this point. Changed so as to avoid
1188         gst_atomic operations.
1189
1190 2005-05-06  Wim Taymans  <wim@fluendo.com>
1191
1192         * gst/gstpad.c: (gst_pad_alloc_buffer), (gst_pad_push):
1193         Also set caps if we use the fallback buffer alloc.
1194
1195 2005-05-06  Tim-Philipp Müller  <tim at centricular dot net>
1196
1197         * docs/gst/Makefile.am:
1198         * docs/gst/gstreamer-docs.sgml:
1199         * docs/gst/gstreamer-sections.txt:
1200         * docs/gst/tmpl/gstatomic.sgml:
1201         * docs/gst/tmpl/gstmemchunk.sgml:
1202         * testsuite/elements/struct_i386.h:
1203         * win32/GStreamer.vcproj:
1204         * win32/Makefile:
1205           Purge GstAtomic stuff from docs and win32 makefiles as well
1206
1207 2005-05-06  Wim Taymans  <wim@fluendo.com>
1208
1209         * gst/base/gstbasetransform.c: (gst_base_transform_proxy_getcaps):
1210         * gst/elements/gstcapsfilter.c: (gst_capsfilter_getcaps):
1211         * gst/gstpad.c: (gst_pad_peer_get_caps):
1212         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
1213         (gst_queue_bufferalloc), (gst_queue_handle_sink_event),
1214         (gst_queue_src_activate), (gst_queue_change_state):
1215         * gst/gstqueue.h:
1216         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
1217         (intersect_caps_func):
1218         Fix gst_pad_peer_get_caps(), make it return NULL if no peer.
1219         Always take QUEUE_LOCK after STREAM_LOCK or we might deadlock.
1220         Some fixes for the peer_get_caps() change.
1221
1222 2005-05-06  Wim Taymans  <wim@fluendo.com>
1223
1224         * gst/base/gstbasesink.c: (gst_basesink_preroll_queue_empty),
1225         (gst_basesink_handle_buffer), (gst_basesink_chain_unlocked),
1226         (gst_basesink_activate):
1227         Actually do something with error codes returned from the push
1228         functions.
1229
1230 2005-05-06  Wim Taymans  <wim@fluendo.com>
1231
1232         * docs/design/part-element-sink.txt:
1233         * docs/design/part-element-source.txt:
1234         * gst/base/gstbasesink.c: (gst_basesink_class_init),
1235         (gst_basesink_event), (gst_basesink_activate):
1236         * gst/base/gstbasesink.h:
1237         * gst/base/gstbasesrc.c: (gst_basesrc_init), (gst_basesrc_unlock),
1238         (gst_basesrc_activate):
1239         * gst/base/gstbasesrc.h:
1240         * gst/gstelement.c: (gst_element_pads_activate):
1241         Some more documentation.
1242         Fixed scheduling decision in _pads_activate().
1243
1244 2005-05-05  Andy Wingo  <wingo@pobox.com>
1245
1246         * check/pipelines/simple_launch_lines.c (test_2_elements): "Fix"
1247         the test suite.
1248
1249 2005-05-05  Wim Taymans  <wim@fluendo.com>
1250
1251         * gst/base/Makefile.am:
1252         * gst/base/gstbasesink.h:
1253         * gst/base/gstbasesrc.c: (gst_basesrc_init),
1254         (gst_basesrc_set_dataflow_funcs), (gst_basesrc_query):
1255         * gst/base/gstcollectpads.c: (gst_collectpads_get_type),
1256         (gst_collectpads_class_init), (gst_collectpads_init),
1257         (gst_collectpads_finalize), (gst_collectpads_new),
1258         (gst_collectpads_set_function), (gst_collectpads_add_pad),
1259         (find_pad), (gst_collectpads_remove_pad),
1260         (gst_collectpads_is_active), (gst_collectpads_collect),
1261         (gst_collectpads_collect_range), (gst_collectpads_start),
1262         (gst_collectpads_stop), (gst_collectpads_peek),
1263         (gst_collectpads_pop), (gst_collectpads_available),
1264         (gst_collectpads_read), (gst_collectpads_flush),
1265         (gst_collectpads_chain):
1266         * gst/base/gstcollectpads.h:
1267         * gst/elements/Makefile.am:
1268         * gst/elements/gstelements.c:
1269         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1270         (gst_fakesink_get_times), (gst_fakesink_event),
1271         (gst_fakesink_preroll), (gst_fakesink_render):
1272         * gst/elements/gstfilesink.c: (gst_filesink_class_init),
1273         (gst_filesink_init), (gst_filesink_set_location),
1274         (gst_filesink_open_file), (gst_filesink_close_file),
1275         (gst_filesink_pad_query), (gst_filesink_event),
1276         (gst_filesink_render), (gst_filesink_change_state):
1277         * gst/elements/gstfilesink.h:
1278         Added object to help in making collect pad based elements.
1279         Ported filesink.
1280         Make event function in sink baseclass return gboolean.
1281
1282 2005-05-05  Wim Taymans  <wim@fluendo.com>
1283
1284         * gst/gstbin.c: (gst_bin_send_event), (compare_name),
1285         (gst_bin_get_by_name):
1286         * gst/gstbuffer.h:
1287         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_class_init),
1288         (gst_clock_finalize):
1289         * gst/gstdata.c: (gst_data_replace):
1290         * gst/gstdata.h:
1291         * gst/gstelement.c: (gst_element_request_pad),
1292         (gst_element_pads_activate):
1293         * gst/gstobject.c: (gst_object_init), (gst_object_ref),
1294         (gst_object_unref):
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_set_caps),
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/gstutils.c: (gst_element_get_compatible_pad_template),
1302         (gst_element_request_pad), (gst_pad_proxy_getcaps):
1303         Fix name lookup in GstBin.
1304         Added _data_replace() function and _buffer_replace()
1305         Use finalize method to clean up clock.
1306         Fix refcounting on request pads.
1307         Fix pad schedule mode error.
1308         Some more object refcounting debug info,
1309
1310
1311 2005-05-04  Andy Wingo <wingo@pobox.com>
1312
1313         * check/Makefile.am:
1314         * docs/gst/tmpl/gstatomic.sgml:
1315         * docs/gst/tmpl/gstplugin.sgml:
1316         * gst/base/gstbasesink.c: (gst_basesink_activate):
1317         * gst/base/gstbasesrc.c: (gst_basesrc_class_init),
1318         (gst_basesrc_init), (gst_basesrc_set_dataflow_funcs),
1319         (gst_basesrc_query), (gst_basesrc_set_property),
1320         (gst_basesrc_get_property), (gst_basesrc_check_get_range),
1321         (gst_basesrc_activate):
1322         * gst/base/gstbasesrc.h:
1323         * gst/base/gstbasetransform.c: (gst_base_transform_sink_activate),
1324         (gst_base_transform_src_activate):
1325         * gst/elements/gstelements.c:
1326         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1327         (gst_fakesrc_set_property), (gst_fakesrc_get_property):
1328         * gst/elements/gsttee.c: (gst_tee_sink_activate):
1329         * gst/elements/gsttypefindelement.c: (find_element_get_length),
1330         (gst_type_find_element_checkgetrange),
1331         (gst_type_find_element_activate):
1332         * gst/gstbin.c: (gst_bin_save_thyself), (gst_bin_restore_thyself):
1333         * gst/gstcaps.c: (gst_caps_do_simplify), (gst_caps_save_thyself),
1334         (gst_caps_load_thyself):
1335         * gst/gstelement.c: (gst_element_pads_activate),
1336         (gst_element_save_thyself), (gst_element_restore_thyself):
1337         * gst/gstpad.c: (gst_pad_load_and_link), (gst_pad_save_thyself),
1338         (gst_ghost_pad_save_thyself), (gst_pad_check_pull_range):
1339         * gst/gstpad.h:
1340         * gst/gstxml.c: (gst_xml_write), (gst_xml_parse_doc),
1341         (gst_xml_parse_file), (gst_xml_parse_memory),
1342         (gst_xml_get_element), (gst_xml_make_element):
1343         * gst/indexers/gstfileindex.c: (gst_file_index_load),
1344         (_file_index_id_save_xml), (gst_file_index_commit):
1345         * gst/registries/gstlibxmlregistry.c: (read_string), (read_uint),
1346         (read_enum), (load_pad_template), (load_feature), (load_plugin),
1347         (load_paths):
1348         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps),
1349         (gst_dp_packet_from_event), (gst_dp_caps_from_packet):
1350         * tools/gst-complete.c: (main):
1351         * tools/gst-compprep.c: (main):
1352         * tools/gst-inspect.c: (print_element_properties_info):
1353         * tools/gst-launch.c: (xmllaunch_parse_cmdline):
1354         * tools/gst-xmlinspect.c: (print_element_properties):
1355         GCC 4 fixen.
1356         
1357 2005-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
1358
1359         * gst/gstplugin.c: (gst_plugin_check_module),
1360         (gst_plugin_check_file), (gst_plugin_load_file):
1361             apply patch from #172526 to make register work on MacOSX
1362
1363 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1364
1365         * docs/gst/tmpl/gstconfig.sgml:
1366         * gst/gstconfig.h.in:
1367           move documentation for some symbols.  Add doc for GST_PTR_FORMAT
1368         * testsuite/debug/printf_extension.c: (main):
1369           Do not use GST_PTR_FORMAT on pointers to types with
1370           sizeof < sizeof(gpointer).  Fixes test on 64-bit
1371         * testsuite/elements/property.h:
1372           use correct printf format
1373
1374 2005-05-02  Wim Taymans  <wim@fluendo.com>
1375
1376         * docs/design/draft-push-pull.txt:
1377         * docs/design/draft-query.txt:
1378         * gst/base/gstbasesrc.c: (gst_basesrc_get_range_unlocked),
1379         (gst_basesrc_start):
1380         Added draft for new query API.
1381         Added draft for better selecting scheduling methods.
1382         Make basesrc ignore length if the subclass does not support
1383         it.
1384
1385 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1386
1387         * gst/Makefile.am:
1388           possible fixes for automake-1.5 - _LIBADD is reserved
1389
1390 2005-05-02  Thomas Vander Stichele  <thomas at apestaart dot org>
1391
1392         * docs/faq/Makefile.am:
1393         * docs/manual/Makefile.am:
1394         * docs/manuals.mak:
1395         * docs/pwg/Makefile.am:
1396         * gst/Makefile.am:
1397           possible fixes for automake-1.5
1398
1399 2005-04-28  Wim Taymans  <wim@fluendo.com>
1400
1401         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1402         (gst_basesink_pad_getcaps), (gst_basesink_init),
1403         (gst_basesink_do_sync):
1404         * gst/gstclock.c: (gst_clock_entry_new):
1405         * gst/gstevent.c: (gst_event_discont_get_value):
1406         * gst/gstpipeline.c: (pipeline_bus_handler),
1407         (gst_pipeline_change_state):
1408         * gst/gstsystemclock.c: (gst_system_clock_id_wait_unlocked):
1409         Better debugging of clocking info.
1410         Allow NULL values when getting discont values.
1411
1412 2005-04-27  Wim Taymans  <wim@fluendo.com>
1413
1414         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
1415         * check/gst/gstpad.c: (gst_pad_suite):
1416         Increase timeout for checks.
1417
1418 2005-04-27  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
1419
1420         * check/Makefile.am:
1421           fix the broken rule for cleanup.  Apparently this rule is
1422           only needed on FC2, so maybe this warrants further autotool
1423           inspection.
1424
1425 2005-04-26  Wim Taymans  <wim@fluendo.com>
1426
1427         * gst/gsttrashstack.h:
1428         Ooohh. a nasty one! After having a failed pop() from the stack,
1429         it's possible that the stack is empty. In that case, don't
1430         follow the NULL pointer.
1431
1432 2005-04-25  Wim Taymans  <wim@fluendo.com>
1433
1434         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1435         (gst_pad_set_checkgetrange_function),
1436         (gst_pad_link_check_compatible_unlocked), (gst_pad_link_prepare),
1437         (gst_pad_check_pull_range), (gst_pad_pull_range),
1438         (gst_static_pad_template_get_caps), (gst_pad_start_task),
1439         (gst_pad_pause_task), (gst_pad_stop_task):
1440         * gst/gstplugin.c: (gst_plugin_load):
1441         * gst/gstplugin.h:
1442         Remove gst_library_load as it does more harm than good with
1443         the new g_module flags.
1444         Revert bogus caps template check in pad linking, pad caps
1445         are important when linking not the template, which is more
1446         general than the current caps.
1447
1448 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1449
1450         * gst/autoplug/.cvsignore:
1451         * gst/autoplug/Makefile.am:
1452         * gst/autoplug/gstsearchfuncs.c:
1453         * gst/autoplug/gstsearchfuncs.h:
1454         * gst/autoplug/gstspider.c:
1455         * gst/autoplug/gstspider.h:
1456         * gst/autoplug/gstspideridentity.c:
1457         * gst/autoplug/gstspideridentity.h:
1458         * gst/autoplug/spidertest.c:
1459           Die, spider, die.
1460
1461 2005-04-25  Wim Taymans  <wim@fluendo.com>
1462
1463         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1464         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1465         (gst_pad_pull_range), (gst_static_pad_template_get_caps),
1466         (gst_pad_start_task), (gst_pad_pause_task), (gst_pad_stop_task):
1467         * gst/gstpad.h:
1468         Added stubs for unimplemented functions. 
1469
1470 2005-04-24  David Schleef  <ds@schleef.org>
1471
1472         * gst/gstpad.h: Disable some unimplemented functions.  Wim,
1473         please fix.
1474
1475 2005-04-24  David Schleef  <ds@schleef.org>
1476
1477         Convert everything from GstAtomicInt to g_atomic_int_*, and
1478         remove gstatomic.
1479         * gst/Makefile.am:
1480         * gst/gstatomic.c:
1481         * gst/gstatomic.h:
1482         * gst/gstatomic_impl.h:
1483         * gst/gstbuffer.c:
1484         * gst/gstcaps.c:
1485         * gst/gstcaps.h:
1486         * gst/gstclock.c:
1487         * gst/gstclock.h:
1488         * gst/gstdata.c:
1489         * gst/gstdata.h:
1490         * gst/gstdata_private.h:
1491         * gst/gstevent.c:
1492         * gst/gstinfo.c:
1493         * gst/gstinfo.h:
1494         * gst/gstmessage.c:
1495         * gst/gstobject.c:
1496         * gst/gstobject.h:
1497         * gst/gststructure.c:
1498         * gst/gststructure.h:
1499         * gst/gstutils.c: Add gst_atomic_int_set() compaitibility function.
1500         * gst/gstutils.h:
1501
1502 2005-04-24  David Schleef  <ds@schleef.org>
1503
1504         * check/gst/gstpad.c: (START_TEST): Oh yeah, it's always nice to
1505         make the regressions tests work.  Remove some code that is no
1506         longer true.
1507         * gst/gstpad.c: (gst_pad_link_check_templates_compatible_unlocked):
1508         Disable warning for pads without templates.
1509
1510 2005-04-24  David Schleef  <ds@schleef.org>
1511
1512         * gst/gstpad.c: Remove handling of filtered caps.  Fix/merge
1513         functions that handle filtered links.
1514         * gst/gstpad.h: Remove 'appfilter' field and prototypes of
1515         removed functions.
1516         * gst/gstutils.c: Fix/remove utility functions that handle
1517         filtered caps.
1518         * gst/gstutils.h:
1519         * gst/gstvalue.c: Add serialization/deserialization of caps
1520         * gst/parse/grammar.y: Ignore filtered caps when linking.  This
1521         requires fixing so that the filter caps notation creates
1522         a capsfilter element and sets the filter_caps property.  I
1523         think everyone probably wants to keep the shorthand notation.
1524         * docs/gst/tmpl/gstelement.sgml: updates for API changes.
1525         * docs/gst/tmpl/gstpad.sgml:
1526
1527         * gst/elements/gstelements.c: Register capsfilter element.
1528         * gst/Makefile.am: fix spacing
1529         * docs/random/ds/0.9-suggested-changes: random
1530
1531 2005-04-23  David Schleef  <ds@schleef.org>
1532
1533         * gst/elements/Makefile.am:
1534         * gst/elements/gstcapsfilter.c: New element that acts like an
1535         identity, but filters caps.  Will eventually replace filtered
1536         caps in pad linking.
1537         * gst/gstutils.c: (gst_element_create_all_pads): New function
1538         to create all the ALWAYS pads that are registered with an
1539         element class.  This functionality should eventually be
1540         merged in with GstElement initialization.
1541         * gst/gstutils.h:
1542         * testsuite/trigger/README: part of trigger test code that should
1543         have been checked in a long time ago.
1544
1545 2005-04-23  David Schleef  <ds@schleef.org>
1546
1547         * gst/Makefile.am: Remove as-libtool stuff.  It's likely not
1548         needed with new versions of libtool (nobody will confirm this),
1549         and hard to carry around.
1550         * gst/autoplug/Makefile.am:
1551         * gst/base/Makefile.am:
1552         * gst/elements/Makefile.am:
1553         * gst/indexers/Makefile.am:
1554         * gst/schedulers/Makefile.am:
1555         * libs/gst/bytestream/Makefile.am:
1556         * libs/gst/control/Makefile.am:
1557         * libs/gst/dataprotocol/Makefile.am:
1558         * libs/gst/getbits/Makefile.am:
1559
1560 2005-04-21  Wim Taymans  <wim@fluendo.com>
1561
1562         * docs/design/draft-push-pull.txt:
1563         * docs/design/part-MT-refcounting.txt:
1564         * docs/design/part-TODO.txt:
1565         * docs/design/part-caps.txt:
1566         * docs/design/part-events.txt:
1567         * docs/design/part-gstbus.txt:
1568         * docs/design/part-gstpipeline.txt:
1569         * docs/design/part-messages.txt:
1570         * docs/design/part-push-pull.txt:
1571         * docs/design/part-query.txt:
1572         Some more docs.
1573
1574 2005-04-21  Wim Taymans  <wim@fluendo.com>
1575
1576         * gst/gstmessage.c: (_gst_message_copy), (_gst_message_free),
1577         (gst_message_new), (gst_message_new_error),
1578         (gst_message_new_warning), (gst_message_new_tag),
1579         (gst_message_new_state_changed), (gst_message_new_application),
1580         (gst_message_get_structure):
1581         * gst/gstmessage.h:
1582         * gst/gststructure.c: (gst_structure_set_parent_refcount),
1583         (gst_structure_copy_conditional):
1584         Use parent refcount in GstMessage to ensure GstStructure
1585         consistency.
1586         Cleaned up headers a bit.
1587         
1588
1589 2005-04-20  Wim Taymans  <wim@fluendo.com>
1590
1591         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1592         (gst_basesink_pad_getcaps), (gst_basesink_init),
1593         (gst_basesink_chain_unlocked):
1594         * gst/base/gsttypefindhelper.c: (helper_find_suggest),
1595         (gst_type_find_helper):
1596         * gst/elements/gsttypefindelement.c:
1597         (gst_type_find_element_have_type), (gst_type_find_element_init),
1598         (stop_typefinding), (gst_type_find_element_handle_event),
1599         (find_suggest), (gst_type_find_element_chain),
1600         (gst_type_find_element_checkgetrange),
1601         (gst_type_find_element_getrange), (do_typefind),
1602         (gst_type_find_element_activate):
1603         * gst/gstbuffer.c: (_gst_buffer_sub_free),
1604         (gst_buffer_default_free), (gst_buffer_default_copy),
1605         (gst_buffer_set_caps):
1606         * gst/gstcaps.c: (gst_caps_ref), (gst_caps_unref),
1607         (gst_caps_replace):
1608         * gst/gstmessage.c: (gst_message_new),
1609         (gst_message_new_state_changed):
1610         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1611         (gst_pad_set_checkgetrange_function),
1612         (gst_pad_link_prepare_filtered), (gst_pad_relink_filtered),
1613         (gst_pad_set_caps), (gst_pad_check_pull_range),
1614         (gst_pad_pull_range), (gst_static_pad_template_get_caps):
1615         * gst/gstpad.h:
1616         * gst/gsttypefind.c: (gst_type_find_register):
1617         Make gst_caps_replace() work like other _replace() functions.
1618         Use _caps_replace() where possible.
1619         Make sure _message_new() initialises its field.
1620         Add gst_static_pad_template_get_caps()
1621
1622
1623 2005-04-18  Andy Wingo  <wingo@pobox.com>
1624
1625         * gst/gstelement.c (gst_element_pads_activate): Check pull_range
1626         on the peer, not the pad. I think that was a typo. Pass an extra
1627         arg to see if random access is possible. Activate the pads as
1628         PULL_RANGE if possible.
1629
1630         * gst/elements/gstfakesrc.c: s/ARG_/PROP_/.
1631
1632         * gst/base/gstbasesrc.c (gst_basesrc_set_property) 
1633         (gst_basesrc_get_property): BLOCKSIZE is a ULONG. Rename ARG_...
1634         to PROP_....
1635
1636 2005-04-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1637
1638         * docs/faq/using.xml:
1639           Add note on gstreamer-properties (#154996).
1640
1641 2005-04-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1642
1643         * docs/random/bbb/optional-properties:
1644           Some analysis on optional properties.
1645
1646 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
1647
1648         * docs/gst/tmpl/gstelementfactory.sgml:
1649         * gst/gstelement.h:
1650         * gst/gstelementfactory.c: (gst_element_factory_init),
1651         (gst_element_factory_cleanup), (gst_element_register),
1652         (__gst_element_factory_add_static_pad_template),
1653         (gst_element_factory_get_static_pad_templates),
1654         (gst_element_factory_can_src_caps),
1655         (gst_element_factory_can_sink_caps):
1656         * gst/registries/Makefile.am:
1657         * gst/registries/gstlibxmlregistry.c: (gst_xml_registry_get_type),
1658         (gst_xml_registry_class_init), (gst_xml_registry_init),
1659         (gst_xml_registry_new), (gst_xml_registry_set_property),
1660         (gst_xml_registry_get_property), (get_time), (make_dir),
1661         (gst_xml_registry_get_perms_func),
1662         (plugin_times_older_than_recurse), (plugin_times_older_than),
1663         (gst_xml_registry_open_func), (gst_xml_registry_load_func),
1664         (gst_xml_registry_save_func), (gst_xml_registry_close_func),
1665         (add_to_char_array), (read_string), (read_uint), (read_enum),
1666         (load_pad_template), (load_feature), (load_plugin), (load_paths),
1667         (gst_xml_registry_load), (gst_xml_registry_load_plugin),
1668         (gst_xml_registry_save_caps), (gst_xml_registry_save_pad_template),
1669         (gst_xml_registry_save_feature), (gst_xml_registry_save_plugin),
1670         (gst_xml_registry_save), (gst_xml_registry_rebuild_recurse),
1671         (gst_xml_registry_rebuild):
1672         * gst/registries/gstlibxmlregistry.h:
1673         * tools/gst-compprep.c: (main):
1674         * tools/gst-inspect.c: (print_pad_templates_info):
1675         * tools/gst-xmlinspect.c: (print_element_info):
1676           Use libxml2 for registry parsing, use staticpadtemplates in
1677           elementfactories. Makes gst_init() +/- 10x faster.
1678
1679 2005-04-12  Wim Taymans  <wim@fluendo.com>
1680
1681         * gst/base/Makefile.am:
1682         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1683         (gst_basesink_pad_getcaps), (gst_basesink_init),
1684         (gst_basesink_event), (gst_basesink_change_state):
1685         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1686         (gst_basesrc_init), (gst_basesrc_query),
1687         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1688         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1689         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1690         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1691         (gst_basesrc_stop), (gst_basesrc_activate),
1692         (gst_basesrc_change_state):
1693         * gst/base/gsttypefindhelper.c: (helper_find_peek),
1694         (helper_find_suggest), (gst_type_find_helper):
1695         * gst/base/gsttypefindhelper.h:
1696         * gst/elements/Makefile.am:
1697         * gst/elements/gstelements.c:
1698         * gst/elements/gstfakesink.c: (gst_fakesink_class_init),
1699         (gst_fakesink_get_times), (gst_fakesink_event),
1700         (gst_fakesink_preroll), (gst_fakesink_render):
1701         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
1702         (gst_fakesrc_init), (gst_fakesrc_event_handler),
1703         (gst_fakesrc_get_property), (gst_fakesrc_create),
1704         (gst_fakesrc_start), (gst_fakesrc_stop):
1705         * gst/elements/gstfakesrc.h:
1706         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init),
1707         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1708         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1709         (gst_filesrc_create_read), (gst_filesrc_create),
1710         (gst_filesrc_is_seekable), (gst_filesrc_get_size),
1711         (gst_filesrc_start):
1712         * gst/elements/gsttypefindelement.c:
1713         (gst_type_find_element_have_type), (gst_type_find_element_init),
1714         (start_typefinding), (stop_typefinding), (push_buffer_store),
1715         (gst_type_find_element_handle_event),
1716         (gst_type_find_element_chain),
1717         (gst_type_find_element_checkgetrange),
1718         (gst_type_find_element_getrange), (do_typefind),
1719         (gst_type_find_element_activate),
1720         (gst_type_find_element_change_state):
1721         * gst/elements/gsttypefindelement.h:
1722         * gst/gstpipeline.c: (pipeline_bus_handler):
1723         Added typefind helper.
1724         Small preroll fix in the base sink.
1725         Disable typefind code in basesrc.
1726         Crude port of typefindelement.
1727         Fakesrc cleanups.
1728
1729
1730 2005-04-11  Wim Taymans  <wim@fluendo.com>
1731
1732         * check/gst/gstbus.c: (gstbus_suite):
1733         * check/gst/gstdata.c: (thread_ref), (gst_data_suite):
1734         * check/gstcheck.h:
1735           Fix up the timeout so that the test does not fail.
1736
1737 2005-04-06  Wim Taymans  <wim@fluendo.com>
1738
1739         * gst/base/README:
1740         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1741         (gst_basesrc_init), (gst_basesrc_get_formats), (gst_basesrc_query),
1742         (gst_basesrc_get_event_mask), (gst_basesrc_do_seek),
1743         (gst_basesrc_event_handler), (gst_basesrc_get_range_unlocked),
1744         (gst_basesrc_check_get_range), (gst_basesrc_loop),
1745         (gst_basesrc_unlock), (gst_basesrc_get_size), (gst_basesrc_start),
1746         (gst_basesrc_stop), (gst_basesrc_activate),
1747         (gst_basesrc_change_state), (basesrc_find_peek),
1748         (basesrc_find_suggest), (gst_basesrc_type_find):
1749         * gst/base/gstbasesrc.h:
1750         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
1751         (gst_filesrc_class_init), (gst_filesrc_init),
1752         (gst_filesrc_finalize), (gst_filesrc_set_location),
1753         (gst_filesrc_set_property), (gst_filesrc_get_property),
1754         (gst_filesrc_free_parent_mmap), (gst_filesrc_map_region),
1755         (gst_filesrc_map_small_region), (gst_filesrc_create_mmap),
1756         (gst_filesrc_create_read), (gst_filesrc_create),
1757         (gst_filesrc_get_size), (gst_filesrc_start), (gst_filesrc_stop):
1758         * gst/elements/gstfilesrc.h:
1759         * gst/gstelement.c: (gst_element_get_state_func),
1760         (gst_element_lost_state), (gst_element_pads_activate):
1761         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1762         (gst_pad_set_checkgetrange_function), (gst_pad_check_pull_range),
1763         (gst_pad_pull_range):
1764         * gst/gstpad.h:
1765         More work on the generic source base class, implement seeking,
1766         query.
1767         Make filesrc extend the base source class.
1768         Added gst_pad_set_checkgetrange_function to GstPad.
1769
1770 2005-04-06  Andy Wingo  <wingo@pobox.com>
1771
1772         * pkgconfig/gstreamer-base.pc.in:
1773         * pkgconfig/gstreamer-base-uninstalled.pc.in: New files.
1774
1775         * pkgconfig/Makefile.am:
1776         * configure.ac (AC_OUTPUT): Add gstreamer-base pkgconfig files.
1777
1778 2005-04-04  Wim Taymans  <wim@fluendo.com>
1779
1780         * gst/base/Makefile.am:
1781         * gst/base/README:
1782         * gst/base/gstbasesink.c: (gst_basesink_base_init),
1783         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1784         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1785         (gst_basesink_do_sync), (gst_basesink_chain_unlocked):
1786         * gst/base/gstbasesrc.c: (gst_basesrc_get_type),
1787         (gst_basesrc_base_init), (gst_basesrc_class_init),
1788         (gst_basesrc_init), (gst_basesrc_get_formats),
1789         (gst_basesrc_get_query_types), (gst_basesrc_query),
1790         (gst_basesrc_get_event_mask), (gst_basesrc_event_handler),
1791         (gst_basesrc_set_property), (gst_basesrc_get_property),
1792         (gst_basesrc_get_range_unlocked), (gst_basesrc_get_range),
1793         (gst_basesrc_loop), (gst_basesrc_activate),
1794         (gst_basesrc_change_state):
1795         * gst/base/gstbasesrc.h:
1796         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
1797         (gst_fakesrc_class_init), (gst_fakesrc_init),
1798         (gst_fakesrc_event_handler), (gst_fakesrc_set_property),
1799         (gst_fakesrc_get_property), (gst_fakesrc_create):
1800         * gst/elements/gstfakesrc.h:
1801         * gst/elements/gstfilesrc.c: (gst_filesrc_getrange),
1802         (gst_filesrc_open_file), (gst_filesrc_loop),
1803         (gst_filesrc_activate), (filesrc_find_peek),
1804         (gst_filesrc_type_find):
1805         Made base source class, make fakesrc extend it.
1806         Add comments to basesink class.
1807         Some filesrc cleanup.
1808
1809 2005-03-31  David Schleef  <ds@schleef.org>
1810
1811         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
1812         Switch to using G_MODULE_BIND_LOCAL, which means plugins are now
1813         expected to link against libgstreamer.
1814         * gst/base/Makefile.am: link against libgstreamer
1815         * gst/elements/Makefile.am: same
1816
1817 2005-03-31  Andy Wingo  <wingo@pobox.com>
1818
1819         * tests/instantiate/Makefile.am:
1820         * tests/instantiate/caps.c: Add test to test speed of caps copy
1821         and free.
1822
1823         * tests/memchunk/gmemchunktest.c (main): Use alloc only on the
1824         GMemChunk to be fair.
1825
1826         * gst/gsttrashstack.h: Remove warning about using the fallback
1827         trash stack implementation, it's still faster than malloc.
1828
1829 2005-03-30  Andy Wingo  <wingo@pobox.com>
1830
1831         * tests/complexity.c: Add a copyright.
1832
1833 2005-03-31  Wim Taymans  <wim@fluendo.com>
1834
1835         * gst/base/gstbasetransform.c: (gst_base_transform_base_init),
1836         (gst_base_transform_class_init), (gst_base_transform_init),
1837         (gst_base_transform_setcaps), (gst_base_transform_handle_buffer),
1838         (gst_base_transform_get_property),
1839         (gst_base_transform_sink_activate),
1840         (gst_base_transform_src_activate),
1841         (gst_base_transform_change_state):
1842         * gst/base/gstbasetransform.h:
1843         * gst/elements/gstidentity.c: (gst_identity_class_init),
1844         (gst_identity_event), (gst_identity_check_perfect),
1845         (gst_identity_transform), (gst_identity_start),
1846         (gst_identity_stop):
1847         Added start/stop methods to transform base class so subclasses 
1848         don't need to deal with state changes even.
1849
1850 2005-03-31  Wim Taymans  <wim@fluendo.com>
1851
1852         * gst/gstevent.c: (gst_event_new_discontinuous_valist),
1853         (gst_event_new_discontinuous), (gst_event_discont_get_value):
1854         * gst/gstevent.h:
1855         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1856         (gst_pad_pull_range):
1857         Added rate to the discont event to prepare for variable speed
1858         and reverse playback.
1859
1860 2005-03-29  David Schleef  <ds@schleef.org>
1861
1862         * configure.ac:
1863         * testsuite/trigger/Makefile.am:
1864         * testsuite/trigger/trigger.c: A little example program to show
1865         how trigger-based elements can work.
1866
1867 2005-03-29  Wim Taymans  <wim@fluendo.com>
1868
1869         * gst/base/Makefile.am:
1870         * gst/base/README:
1871         * gst/base/gstbasesink.c: (gst_basesink_get_type),
1872         (gst_basesink_base_init), (gst_basesink_class_init),
1873         (gst_basesink_pad_getcaps), (gst_basesink_init),
1874         (gst_basesink_activate), (gst_basesink_change_state):
1875         * gst/base/gstbasesink.h:
1876         * gst/base/gstbasetransform.c: (gst_base_transform_get_type),
1877         (gst_base_transform_base_init), (gst_base_transform_finalize),
1878         (gst_base_transform_class_init), (gst_base_transform_init),
1879         (gst_base_transform_proxy_getcaps), (gst_base_transform_setcaps),
1880         (gst_base_transform_event), (gst_base_transform_getrange),
1881         (gst_base_transform_chain), (gst_base_transform_handle_buffer),
1882         (gst_base_transform_set_property),
1883         (gst_base_transform_get_property),
1884         (gst_base_transform_sink_activate),
1885         (gst_base_transform_src_activate),
1886         (gst_base_transform_change_state):
1887         * gst/base/gstbasetransform.h:
1888         * gst/elements/gstidentity.c: (gst_identity_finalize),
1889         (gst_identity_class_init), (gst_identity_init),
1890         (gst_identity_event), (gst_identity_check_perfect),
1891         (gst_identity_transform), (gst_identity_set_property),
1892         (gst_identity_get_property), (gst_identity_change_state):
1893         * gst/elements/gstidentity.h:
1894         * gst/gstelement.c: (gst_element_get_state_func),
1895         (gst_element_lost_state), (gst_element_pads_activate):
1896         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_peer_set_active),
1897         (gst_pad_check_pull_range), (gst_pad_pull_range):
1898         * gst/gstpad.h:
1899         Simplify pad activation.
1900         Added function to check if pull_range can be performed.
1901         Error out when pulling inactive or flushing pads.
1902         Removed const from refcounted types as it does not make sense.
1903         Simplify pad templates in basesink
1904         Added base class for simple 1-to-1 transforms.
1905         Make identity subclass the base transform.
1906
1907 2005-03-29  Andy Wingo  <wingo@pobox.com>
1908
1909         * docs/libs/gstreamer-libs-overrides.txt: 
1910         * docs/gst/gstreamer-overrides.txt: Add these files to CVS. Now I
1911         really don't understand what's going on, but like whatever. I want
1912         green buildbot!
1913
1914         * docs/gst/Makefile.am:
1915         * docs/libs/Makefile.am: Dist the overrides files.
1916
1917         * check/Makefile.am (clean-local): Remove .libs directories.
1918
1919         * gst/elements/Makefile.am (EXTRA_DIST): Add all the attic
1920         elements to EXTRA_DIST, so po/ files are happy.
1921
1922         * po/POTFILES.in: Er, remove it here.
1923
1924         * po/POTFILES: Remove gstspider.c.
1925
1926         * configure.ac (AC_OUTPUT): Add missing testsuite makefiles.
1927
1928         * docs/libs/gstreamer-libs-docs.sgml: 
1929         * docs/libs/gstreamer-libs-sections.txt: Remove the section on
1930         bytestream.
1931
1932         * tests/complexity.c (main): Set the length of the preroll queue
1933         on the sinks to prevent a lockup.
1934
1935         * libs/gst/dataprotocol/Makefile.am: 
1936         * libs/gst/dataprotocol/dataprotocol-test.c: Remove test, it's
1937         the same as the one in check/gst-libs/gdp.c.
1938
1939         * po/, docs/gst/: Commit automatic changes to docs and po files.
1940
1941         * gst/elements/Makefile.am (libgstelements_la_LDFLAGS): Link to
1942         the versioned libgstbase.
1943
1944         * check/Makefile.am: Depend on an unversioned gst-register, seems
1945         to make autoconf happier.
1946
1947         * gst/base/Makefile.am: Make libgstbase a versioned lib.
1948
1949 2005-03-28  Wim Taymans  <wim@fluendo.com>
1950
1951         * configure.ac:
1952         * docs/design/part-gstelement.txt:
1953         * docs/design/part-negotiation.txt:
1954         * docs/design/part-preroll.txt:
1955         * docs/design/part-scheduling.txt:
1956         * docs/design/part-states.txt:
1957         * gst/Makefile.am:
1958         * gst/base/Makefile.am:
1959         * gst/base/README:
1960         * gst/base/gstbasesink.c: (gst_basesink_get_template),
1961         (gst_basesink_base_init), (gst_basesink_class_init),
1962         (gst_basesink_pad_getcaps), (gst_basesink_pad_setcaps),
1963         (gst_basesink_pad_buffer_alloc), (gst_basesink_init),
1964         (gst_basesink_set_pad_functions),
1965         (gst_basesink_set_all_pad_functions), (gst_basesink_set_clock),
1966         (gst_basesink_set_property), (gst_basesink_get_property),
1967         (gst_base_sink_get_template), (gst_base_sink_get_caps),
1968         (gst_base_sink_set_caps), (gst_base_sink_buffer_alloc),
1969         (gst_basesink_preroll_queue_push),
1970         (gst_basesink_preroll_queue_empty),
1971         (gst_basesink_preroll_queue_flush), (gst_basesink_finish_preroll),
1972         (gst_basesink_event), (gst_basesink_get_times),
1973         (gst_basesink_do_sync), (gst_basesink_handle_buffer),
1974         (gst_basesink_chain_unlocked), (gst_basesink_chain),
1975         (gst_basesink_loop), (gst_basesink_activate),
1976         (gst_basesink_change_state):
1977         * gst/base/gstbasesink.h:
1978         * gst/elements/Makefile.am:
1979         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
1980         (gst_fakesink_class_init), (gst_fakesink_init),
1981         (gst_fakesink_set_property), (gst_fakesink_get_property),
1982         (gst_fakesink_get_times), (gst_fakesink_event),
1983         (gst_fakesink_preroll), (gst_fakesink_render),
1984         (gst_fakesink_change_state):
1985         * gst/elements/gstfakesink.h:
1986         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
1987         (gst_bin_get_state), (gst_bin_change_state), (gst_bin_send_event):
1988         * gst/gstelement.c: (gst_element_add_pad),
1989         (gst_element_get_state_func), (gst_element_abort_state),
1990         (gst_element_commit_state), (gst_element_lost_state),
1991         (gst_element_set_state), (gst_element_pads_activate):
1992         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_event_default):
1993         * gst/gstpipeline.c: (gst_pipeline_send_event),
1994         (gst_pipeline_change_state):
1995         Added state change code.
1996         Added/updated docs.
1997         Added sink base class, make fakesink extend the base class.
1998         Small cleanups in GstPipeline.
1999
2000 2005-03-26  David Schleef  <ds@schleef.org>
2001
2002         * gst/Makefile.am: remove gstcpu.[ch].  The gst_cpu functionality
2003         is broken and should be implemented in a different library.
2004         * gst/gst.c: (init_post): don't call _gst_cpu_initialize()
2005         * gst/gst.h: remove gstcpu.h
2006         * gst/gstcpu.c: remove
2007         * gst/gstcpu.h: remove
2008         * gst/Makefile.am.future: Remove this file.  It's ancient.
2009
2010 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2011
2012         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_manager),
2013         (gst_bin_send_event):
2014           Add default event/set_manager handlers. The set_manager handler
2015           takes care that the manager is distributed over kids that were
2016           already in the bin before the manager was set. The event handler
2017           is a utility virtual function that sends the event over all sinks,
2018           so that gst_element_send_event (bin, event); has the expected
2019           behaviour.
2020         * gst/gstpad.c: (gst_pad_event_default):
2021           Re-install default event handling for discontinuities, so that
2022           seeking works without requiring hacks in applications or extra
2023           code in sinks.
2024         * gst/gstpipeline.c: (gst_pipeline_class_init),
2025         (gst_pipeline_send_event):
2026           Half hack, half utility: set a pipeline to PAUSED for seek events,
2027           since that is the only way we can guarantee a/v sync. Means that
2028           you can do gst_element_seek (pipeline, method, pos); on a pipeline
2029           and it "just works".
2030
2031 2005-03-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2032
2033         * gst/gstpipeline.c: (gst_pipeline_use_clock):
2034           Lock/unlock mismatch.
2035
2036 2005-03-25  Thomas Vander Stichele  <thomas at apestaart dot org>
2037
2038         * docs/faq/gst-uninstalled:
2039           add gst-plugins-base
2040         * docs/gst/Makefile.am:
2041           don't error out until docs are fixed
2042         * docs/gst/gstreamer.types:
2043           remove thread
2044
2045 2005-03-22  Wim Taymans  <wim@fluendo.com>
2046
2047         * check/Makefile.am:
2048         * check/gst/gstmessage.c: (START_TEST), (gst_data_suite), (main):
2049         * gst/gststructure.c: (gst_structure_set_valist),
2050         (gst_structure_copy_conditional):
2051         Activated more tests.
2052         Added message test.
2053         Added G_TYPE_POINTER to GstStructure.
2054         
2055
2056 2005-03-22  Wim Taymans  <wim@fluendo.com>
2057
2058         * docs/design/part-TODO.txt:
2059         * docs/design/part-events.txt:
2060         * docs/design/part-gstbin.txt:
2061         * docs/design/part-gstbus.txt:
2062         * docs/design/part-gstpipeline.txt:
2063         * docs/design/part-messages.txt:
2064         * gst/gstbus.c:
2065         * gst/gstmessage.c:
2066         Docs updates
2067
2068 2005-03-21  Wim Taymans  <wim@fluendo.com>
2069
2070         * gst/gstbus.c: (gst_bus_post):
2071         Fix copy-and-paste error.
2072
2073 2005-03-21  Wim Taymans  <wim@fluendo.com>
2074
2075         * check/Makefile.am:
2076         * gst/Makefile.am:
2077         * gst/elements/Makefile.am:
2078         * gst/elements/gstelements.c:
2079         * gst/elements/gstfakesink.c: (gst_fakesink_init),
2080         (gst_fakesink_event), (gst_fakesink_chain):
2081         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
2082         (gst_fakesrc_init), (gst_fakesrc_get_event_mask),
2083         (gst_fakesrc_event_handler), (gst_fakesrc_set_pad_functions),
2084         (gst_fakesrc_set_all_pad_functions), (gst_fakesrc_request_new_pad),
2085         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
2086         (gst_fakesrc_get_range_unlocked), (gst_fakesrc_get_range),
2087         (gst_fakesrc_loop), (gst_fakesrc_activate),
2088         (gst_fakesrc_change_state):
2089         * gst/elements/gstfakesrc.h:
2090         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
2091         (gst_filesrc_get_read), (gst_filesrc_getrange), (gst_filesrc_get),
2092         (gst_filesrc_open_file), (gst_filesrc_loop),
2093         (gst_filesrc_activate), (gst_filesrc_change_state),
2094         (filesrc_find_peek), (filesrc_find_suggest),
2095         (gst_filesrc_type_find):
2096         * gst/elements/gstidentity.c: (gst_identity_finalize),
2097         (gst_identity_class_init), (gst_identity_init),
2098         (gst_identity_proxy_getcaps), (identity_queue_push),
2099         (identity_queue_pop), (identity_queue_flush), (gst_identity_event),
2100         (gst_identity_getrange), (gst_identity_chain),
2101         (gst_identity_sink_loop), (gst_identity_src_loop),
2102         (gst_identity_handle_buffer), (gst_identity_set_dataflow_funcs),
2103         (gst_identity_set_property), (gst_identity_get_property),
2104         (gst_identity_change_state):
2105         * gst/elements/gstidentity.h:
2106         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init),
2107         (gst_tee_update_pad_functions), (gst_tee_request_new_pad),
2108         (gst_tee_set_property), (gst_tee_get_property), (gst_tee_do_push),
2109         (gst_tee_handle_buffer), (gst_tee_chain), (gst_tee_loop),
2110         (gst_tee_sink_activate):
2111         * gst/elements/gsttee.h:
2112         * gst/gst.c: (gst_register_core_elements), (init_post):
2113         * gst/gst.h:
2114         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_bus),
2115         (gst_bin_set_scheduler), (gst_bin_add_func), (gst_bin_add),
2116         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_get_state),
2117         (gst_bin_change_state):
2118         * gst/gstbin.h:
2119         * gst/gstbus.c: (gst_bus_get_type), (gst_bus_class_init),
2120         (gst_bus_init), (gst_bus_dispose), (gst_bus_set_property),
2121         (gst_bus_get_property), (gst_bus_new), (gst_bus_post),
2122         (gst_bus_have_pending), (gst_bus_pop), (gst_bus_peek),
2123         (gst_bus_set_sync_handler), (gst_bus_create_watch),
2124         (bus_watch_callback), (bus_watch_destroy),
2125         (gst_bus_add_watch_full), (gst_bus_add_watch), (poll_handler),
2126         (poll_timeout), (gst_bus_poll):
2127         * gst/gstbus.h:
2128         * gst/gstcaps.h:
2129         * gst/gstdata.h:
2130         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
2131         (gst_element_post_message), (gst_element_message_full),
2132         (gst_element_get_state_func), (gst_element_get_state),
2133         (gst_element_abort_state), (gst_element_commit_state),
2134         (gst_element_lost_state), (gst_element_set_state),
2135         (gst_element_pads_activate), (gst_element_change_state),
2136         (gst_element_dispose), (gst_element_set_manager_func),
2137         (gst_element_set_bus_func), (gst_element_set_scheduler_func),
2138         (gst_element_set_manager), (gst_element_get_manager),
2139         (gst_element_set_bus), (gst_element_get_bus),
2140         (gst_element_set_scheduler), (gst_element_get_scheduler):
2141         * gst/gstelement.h:
2142         * gst/gstevent.c: (gst_event_new_segment_seek),
2143         (gst_event_new_flush):
2144         * gst/gstevent.h:
2145         * gst/gstmessage.c: (_gst_message_initialize), (_gst_message_copy),
2146         (_gst_message_free), (gst_message_get_type), (gst_message_new),
2147         (gst_message_new_eos), (gst_message_new_error),
2148         (gst_message_new_warning), (gst_message_new_tag),
2149         (gst_message_new_state_changed), (gst_message_new_application),
2150         (gst_message_get_structure), (gst_message_parse_tag),
2151         (gst_message_parse_state_changed), (gst_message_parse_error),
2152         (gst_message_parse_warning):
2153         * gst/gstmessage.h:
2154         * gst/gstpad.c: (gst_real_pad_class_init), (gst_real_pad_init),
2155         (gst_real_pad_set_property), (gst_pad_set_active),
2156         (gst_pad_is_active), (gst_pad_set_blocked_async),
2157         (gst_pad_set_blocked), (gst_pad_is_blocked),
2158         (gst_pad_set_activate_function), (gst_pad_set_loop_function),
2159         (gst_pad_set_getrange_function), (gst_pad_set_acceptcaps_function),
2160         (gst_pad_set_fixatecaps_function), (gst_pad_set_setcaps_function),
2161         (gst_pad_unlink), (gst_pad_link_prepare_filtered),
2162         (gst_pad_link_filtered), (gst_pad_relink_filtered),
2163         (gst_real_pad_get_caps_unlocked), (gst_pad_get_caps),
2164         (gst_pad_peer_get_caps), (gst_pad_fixate_caps),
2165         (gst_pad_accept_caps), (gst_pad_peer_accept_caps),
2166         (gst_pad_set_caps), (gst_pad_configure_sink),
2167         (gst_pad_configure_src), (gst_pad_get_negotiated_caps),
2168         (gst_pad_get_filter_caps), (gst_pad_alloc_buffer),
2169         (gst_real_pad_dispose), (gst_real_pad_finalize),
2170         (handle_pad_block), (gst_pad_push), (gst_pad_pull_range),
2171         (gst_pad_event_default_dispatch), (gst_pad_event_default),
2172         (gst_pad_push_event), (gst_pad_send_event), (gst_pad_get_formats):
2173         * gst/gstpad.h:
2174         * gst/gstpipeline.c: (gst_pipeline_init), (is_eos),
2175         (pipeline_bus_handler), (gst_pipeline_change_state),
2176         (gst_pipeline_get_scheduler), (gst_pipeline_get_bus):
2177         * gst/gstpipeline.h:
2178         * gst/gstprobe.h:
2179         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_init),
2180         (gst_queue_finalize), (gst_queue_getcaps), (gst_queue_link_sink),
2181         (gst_queue_link_src), (gst_queue_bufferalloc),
2182         (gst_queue_locked_flush), (gst_queue_handle_sink_event),
2183         (gst_queue_is_empty), (gst_queue_is_filled), (gst_queue_chain),
2184         (gst_queue_loop), (gst_queue_handle_src_event),
2185         (gst_queue_handle_src_query), (gst_queue_src_activate),
2186         (gst_queue_change_state):
2187         * gst/gstqueue.h:
2188         * gst/gstscheduler.c: (gst_scheduler_init),
2189         (gst_scheduler_dispose), (gst_scheduler_create_task),
2190         (gst_scheduler_factory_create):
2191         * gst/gstscheduler.h:
2192         * gst/gststructure.c: (gst_structure_get_type),
2193         (gst_structure_copy_conditional):
2194         * gst/gststructure.h:
2195         * gst/gsttaginterface.h:
2196         * gst/gsttask.c: (gst_task_get_type), (gst_task_class_init),
2197         (gst_task_init), (gst_task_dispose), (gst_task_create),
2198         (gst_task_get_state), (gst_task_start), (gst_task_stop),
2199         (gst_task_pause):
2200         * gst/gsttask.h:
2201         * gst/gstthread.c:
2202         * gst/gstthread.h:
2203         * gst/gsttypes.h:
2204         * gst/schedulers/Makefile.am:
2205         * gst/schedulers/cothreads_compat.h:
2206         * gst/schedulers/entryscheduler.c:
2207         * gst/schedulers/faircothreads.c:
2208         * gst/schedulers/faircothreads.h:
2209         * gst/schedulers/fairscheduler.c:
2210         * gst/schedulers/gstbasicscheduler.c:
2211         * gst/schedulers/gstoptimalscheduler.c:
2212         * gst/schedulers/gthread-cothreads.h:
2213         * gst/schedulers/threadscheduler.c:
2214         (gst_thread_scheduler_task_get_type),
2215         (gst_thread_scheduler_task_class_init),
2216         (gst_thread_scheduler_task_init),
2217         (gst_thread_scheduler_task_start),
2218         (gst_thread_scheduler_task_stop),
2219         (gst_thread_scheduler_task_pause), (gst_thread_scheduler_get_type),
2220         (gst_thread_scheduler_class_init), (gst_thread_scheduler_func),
2221         (gst_thread_scheduler_init), (gst_thread_scheduler_create_task),
2222         (gst_thread_scheduler_setup), (gst_thread_scheduler_reset),
2223         (plugin_init):
2224         * libs/gst/Makefile.am:
2225         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf):
2226         * libs/gst/bytestream/filepad.c: (gst_file_pad_init),
2227         (gst_file_pad_parent_set):
2228         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_event),
2229         (gst_dp_event_from_packet):
2230         * tests/complexity.c: (main):
2231         * tests/mass_elements.c: (main):
2232         * testsuite/states/locked.c: (message_received), (main):
2233         * testsuite/states/parent.c: (main):
2234         * tools/gst-inspect.c: (print_element_flag_info),
2235         (print_implementation_info), (print_pad_info):
2236         * tools/gst-launch.c: (check_intr), (play_handler), (event_loop),
2237         (main):
2238         * tools/gst-md5sum.c: (event_loop), (main):
2239         * tools/gst-typefind.c: (main):
2240         * tools/gst-xmlinspect.c: (print_element_info):
2241         Next big merge.
2242         Added GstBus for mainloop integration.
2243         Added GstMessage for sending notifications on the bus.
2244         Added GstTask as an abstraction for pipeline entry points.
2245         Removed GstThread.
2246         Removed Schedulers.
2247         Simplified GstQueue for multithreaded core.
2248         Made _link threadsafe, removed old capsnego.
2249         Added STREAM_LOCK and PREROLL_LOCK in GstPad.
2250         Added pad blocking functions.
2251         Reworked scheduling functions in GstPad to prepare for
2252         scheduling updates soon.
2253         Moved events out of data stream.
2254         Simplified GstEvent types.
2255         Added return values to push/pull.
2256         Removed clocking from GstElement.
2257         Added prototypes for state change function for next merge.
2258         Removed iterate from bins and state change management.
2259         Fixed some elements, disabled others for now.
2260         Fixed -inspect and -launch.
2261         Added check for GstBus.
2262
2263 2005-03-10  Wim Taymans  <wim@fluendo.com>
2264
2265         * docs/design/part-MT-refcounting.txt:
2266         * docs/design/part-clocks.txt:
2267         * docs/design/part-gstelement.txt:
2268         * docs/design/part-gstobject.txt:
2269         * docs/design/part-standards.txt:
2270         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2271         (gst_bin_remove_func), (gst_bin_remove):
2272         * gst/gstbin.h:
2273         * gst/gstbuffer.c:
2274         * gst/gstcaps.h:
2275         * testsuite/clock/clock1.c: (main):
2276         * testsuite/clock/clock2.c: (gst_clock_debug), (element_wait),
2277         (main):
2278         * testsuite/dlopen/loadgst.c: (do_test):
2279         * testsuite/refcounting/bin.c: (add_remove_test1),
2280         (add_remove_test2), (main):
2281         * testsuite/refcounting/element.c: (main):
2282         * testsuite/refcounting/element_pad.c: (main):
2283         * testsuite/refcounting/pad.c: (main):
2284         * tools/gst-launch.c: (sigint_handler_sighandler):
2285         * tools/gst-typefind.c: (main):
2286         Doc updates.
2287         Added doc about clock.
2288         removed gst_bin_iterate_recurse_up(), marked methods
2289         for removal.
2290         Fix more testsuites.
2291
2292 2005-03-09  Wim Taymans  <wim@fluendo.com>
2293
2294         * gst/gstpad.c: (gst_pad_get_direction),
2295         (_gst_pad_default_fixate_foreach), (gst_pad_collectv),
2296         (gst_pad_collect_valist):
2297         * testsuite/bins/interface.c: (main):
2298         * testsuite/caps/audioscale.c: (test_caps):
2299         * testsuite/caps/caps.c: (test1), (test2), (test3):
2300         * testsuite/caps/deserialize.c: (main):
2301         * testsuite/caps/enumcaps.c: (main):
2302         * testsuite/caps/filtercaps.c: (main):
2303         * testsuite/caps/intersect2.c: (main):
2304         * testsuite/caps/random.c: (main):
2305         * testsuite/caps/renegotiate.c: (my_fixate), (main):
2306         * testsuite/caps/sets.c: (check_caps):
2307         * testsuite/caps/simplify.c: (check_caps), (main):
2308         * testsuite/caps/subtract.c: (check_caps):
2309         Fix _pad_get_direction wrt ghostpads.
2310         Fix caps testsuite.
2311
2312 2005-03-09  Wim Taymans  <wim@fluendo.com>
2313
2314         * check/Makefile.am:
2315         * check/gst/gstbin.c: (START_TEST), (gst_bin_suite), (main):
2316         * check/gst/gstsystemclock.c: (START_TEST), (gst_clock_debug),
2317         (ok_callback), (error_callback), (gst_systemclock_suite), (main):
2318         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_index_func),
2319         (gst_bin_set_clock_func), (gst_bin_get_clock_func),
2320         (gst_bin_add_func), (gst_bin_add), (gst_bin_remove_func),
2321         (gst_bin_remove), (gst_bin_iterate_recurse_up),
2322         (bin_element_is_sink), (gst_bin_iterate_sinks),
2323         (gst_bin_iterate_all_by_interface):
2324         * gst/gstbin.h:
2325         * gst/gstelement.c: (gst_element_init), (gst_element_error_full),
2326         (gst_element_change_state), (gst_element_dispose),
2327         (gst_element_finalize), (gst_element_set_loop_function):
2328         * gst/gstelement.h:
2329         * gst/gstiterator.c: (find_custom_fold_func):
2330         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2331         (gst_pad_collectv), (gst_pad_collect_valist),
2332         (gst_pad_template_new):
2333         * gst/gstpipeline.c: (gst_pipeline_class_init),
2334         (gst_pipeline_dispose), (gst_pipeline_set_property),
2335         (gst_pipeline_get_property), (gst_pipeline_get_clock_func),
2336         (gst_pipeline_get_clock), (gst_pipeline_use_clock),
2337         (gst_pipeline_set_clock), (gst_pipeline_auto_clock):
2338         * gst/gstutils.h:
2339         * gst/schedulers/entryscheduler.c:
2340         * gst/schedulers/gstbasicscheduler.c:
2341         (gst_basic_scheduler_cothreaded_chain),
2342         (gst_basic_scheduler_chain_add_element):
2343         * testsuite/bins/interface.c: (main):
2344         Added GstBin test.
2345         Added GstSystemClock test.
2346         Implemented clock distribution code in GstBin.
2347         Implemented iterate sinks method for future use.
2348         Rearranged gstelement.h
2349         Fix GstIterator comparison bug.
2350         Moved some code to GstPipeline, mostly clocking related.
2351
2352 2005-03-09  Wim Taymans  <wim@fluendo.com>
2353
2354         * configure.ac:
2355         * gst/gst_private.h:
2356         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2357         (gst_bin_remove_func), (gst_bin_remove),
2358         (gst_bin_get_by_name_recurse_up):
2359         * gst/gstclock.c: (gst_clock_id_ref), (gst_clock_id_unref),
2360         (gst_clock_id_compare_func), (gst_clock_id_wait),
2361         (gst_clock_id_wait_async), (gst_clock_init),
2362         (gst_clock_adjust_unlocked), (gst_clock_get_time):
2363         * gst/gstelement.h:
2364         * gst/gstinfo.c: (_gst_debug_init):
2365         * gst/gstobject.h:
2366         * gst/gstpad.c: (_gst_pad_default_fixate_foreach),
2367         (gst_pad_collectv), (gst_pad_collect_valist), (gst_pad_query):
2368         * gst/gstpad.h:
2369         Bump version number, we're now 0.9.0
2370         Add future debugging category.
2371         Fix NULL _unref() in _get_by_name_recurse_up
2372         Rearrange gstpad.h.
2373         Update some docs.
2374
2375 2005-03-08  Wim Taymans  <wim@fluendo.com>
2376
2377         * gst/elements/gstaggregator.c: (gst_aggregator_class_init):
2378         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
2379         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
2380         * gst/elements/gstfdsink.c: (gst_fdsink_class_init):
2381         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init):
2382         * gst/elements/gstfilesink.c: (gst_filesink_class_init):
2383         * gst/elements/gstfilesrc.c: (gst_filesrc_class_init):
2384         * gst/elements/gstidentity.c: (gst_identity_class_init):
2385         * gst/elements/gstmd5sink.c: (gst_md5sink_class_init):
2386         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
2387         * gst/elements/gstshaper.c: (gst_shaper_class_init):
2388         * gst/elements/gststatistics.c: (gst_statistics_class_init):
2389         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_getcaps),
2390         (gst_tee_link):
2391         * gst/gstelement.c: (gst_element_class_init),
2392         (gst_element_base_class_init), (gst_element_init),
2393         (gst_element_get_random_pad), (gst_element_wait_state_change),
2394         (gst_element_change_state), (gst_element_dispose),
2395         (gst_element_finalize), (gst_element_set_loop_function):
2396         * gst/gstelement.h:
2397         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_link_src):
2398         * gst/gstthread.c: (gst_thread_class_init),
2399         (gst_thread_release_children_locks), (gst_thread_change_state):
2400         * gst/schedulers/gstbasicscheduler.c:
2401         (gst_basic_scheduler_loopfunc_wrapper),
2402         (gst_basic_scheduler_chain_wrapper),
2403         (gst_basic_scheduler_src_wrapper),
2404         (gst_basic_scheduler_remove_element):
2405         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
2406         Remove threadsafe properties. Fix elements because GObject
2407         complains when installing a property before declaring a
2408         set/get_property handler.
2409         Rearrange gstelement.h file, use STATE macros for state locks.
2410         Free mutexes in the finalize method instead of dispose.
2411
2412 2005-03-08  Wim Taymans  <wim@fluendo.com>
2413
2414         * check/gst/gstobject.c: (START_TEST), (gst_object_suite):
2415         * gst/gstthread.c: (gst_thread_release_children_locks):
2416         Added parentage check.
2417         Fix build og GstThread again.
2418
2419 2005-03-08  Wim Taymans  <wim@fluendo.com>
2420
2421         * docs/design/part-MT-refcounting.txt:
2422         * docs/design/part-conventions.txt:
2423         * docs/design/part-gstobject.txt:
2424         * docs/design/part-relations.txt:
2425         * docs/design/part-standards.txt:
2426         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_add),
2427         (gst_bin_remove_func), (gst_bin_remove), (gst_bin_iterate_recurse),
2428         (gst_bin_get_by_name), (gst_bin_get_by_interface),
2429         (gst_bin_iterate_all_by_interface):
2430         * gst/gstbuffer.h:
2431         * gst/gstclock.h:
2432         * gst/gstelement.c: (gst_element_class_init),
2433         (gst_element_change_state), (gst_element_set_loop_function):
2434         * gst/gstelement.h:
2435         * gst/gstiterator.c:
2436         * gst/gstobject.c: (gst_object_class_init), (gst_object_ref),
2437         (gst_object_unref), (gst_object_sink), (gst_object_dispose),
2438         (gst_object_dispatch_properties_changed), (gst_object_set_name),
2439         (gst_object_set_parent), (gst_object_unparent),
2440         (gst_object_check_uniqueness):
2441         * gst/gstobject.h:
2442         Docs updates, clean up some headers.
2443
2444 2005-03-07  Wim Taymans  <wim@fluendo.com>
2445
2446         * check/.cvsignore:
2447         * check/Makefile.am:
2448         * check/gst-libs/.cvsignore:
2449         * check/gst-libs/gdp.c: (START_TEST), (gst_object_suite), (main):
2450         * check/gst/.cvsignore:
2451         * check/gst/gstbus.c: (pound_bus_with_messages), (pull_messages),
2452         (START_TEST), (gstbus_suite), (main):
2453         * check/gst/gstcaps.c: (START_TEST), (gst_caps_suite), (main):
2454         * check/gst/gstdata.c: (START_TEST), (thread_ref), (thread_unref),
2455         (gst_data_suite), (main):
2456         * check/gst/gstiterator.c: (make_list_of_ints), (START_TEST),
2457         (add_fold_func), (gstiterator_suite), (main):
2458         * check/gst/gstobject.c: (gst_fake_object_get_type), (START_TEST),
2459         (thread_name_object), (thread_name_object_default),
2460         (gst_object_name_compare), (gst_object_suite), (main):
2461         * check/gst/gstpad.c: (START_TEST), (thread_link_unlink),
2462         (gst_pad_suite), (main):
2463         * check/gstcheck.c: (gst_check_log_message_func),
2464         (gst_check_log_critical_func), (gst_check_init):
2465         * check/gstcheck.h:
2466         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
2467         (run_pipeline), (START_TEST), (simple_launch_lines_suite), (main):
2468         Added checks.
2469
2470 2005-03-07  Wim Taymans  <wim@fluendo.com>
2471
2472         * gst/gstiterator.c: (gst_iterator_init), (gst_iterator_new),
2473         (gst_list_iterator_next), (gst_list_iterator_resync),
2474         (gst_list_iterator_free), (gst_iterator_new_list),
2475         (gst_iterator_pop), (gst_iterator_next), (gst_iterator_resync),
2476         (gst_iterator_free), (gst_iterator_push), (filter_next),
2477         (filter_resync), (filter_uninit), (filter_free),
2478         (gst_iterator_filter), (gst_iterator_fold), (foreach_fold_func),
2479         (gst_iterator_foreach), (find_custom_fold_func),
2480         (gst_iterator_find_custom):
2481         * gst/gstiterator.h:
2482         Added missing files.
2483
2484 2005-03-07  Wim Taymans  <wim@fluendo.com>
2485
2486         * Makefile.am:
2487         * configure.ac:
2488         * docs/design/part-MT-refcounting.txt:
2489         * docs/design/part-conventions.txt:
2490         * docs/design/part-gstobject.txt:
2491         * docs/design/part-relations.txt:
2492         * examples/mixer/mixer.c: (main):
2493         * examples/thread/thread.c: (eos), (main):
2494         * gst/Makefile.am:
2495         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
2496         * gst/autoplug/gstspider.c: (gst_spider_identity_plug),
2497         (gst_spider_plug_from_srcpad):
2498         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps),
2499         (gst_spider_identity_change_state),
2500         (gst_spider_identity_sink_loop_type_finding):
2501         * gst/elements/gstfakesrc.c: (gst_fakesrc_loop):
2502         * gst/elements/gstidentity.c: (gst_identity_init):
2503         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_getcaps),
2504         (gst_tee_link), (gst_tee_request_new_pad), (gst_tee_chain):
2505         * gst/elements/gsttypefindelement.c: (free_entry):
2506         * gst/gst.c:
2507         * gst/gst.h:
2508         * gst/gstbin.c: (gst_bin_init), (gst_bin_get_clock_func),
2509         (gst_bin_set_clock_func), (gst_bin_auto_clock),
2510         (gst_bin_set_index), (gst_bin_set_element_sched),
2511         (gst_bin_unset_element_sched), (gst_bin_add_func), (gst_bin_add),
2512         (gst_bin_remove_func), (gst_bin_remove), (iterate_child),
2513         (gst_bin_iterate_elements), (iterate_child_recurse),
2514         (gst_bin_iterate_recurse), (gst_bin_dispose), (compare_name),
2515         (gst_bin_get_by_name), (gst_bin_get_by_name_recurse_up),
2516         (compare_interface), (gst_bin_get_by_interface),
2517         (gst_bin_iterate_all_by_interface), (gst_bin_iterate_func):
2518         * gst/gstbin.h:
2519         * gst/gstbuffer.c: (gst_buffer_get_type), (_gst_buffer_sub_free),
2520         (gst_buffer_default_free), (gst_buffer_default_copy),
2521         (gst_buffer_new), (gst_buffer_get_caps), (gst_buffer_set_caps),
2522         (gst_buffer_create_sub):
2523         * gst/gstbuffer.h:
2524         * gst/gstcaps.c: (gst_caps_get_type), (gst_caps_new_empty),
2525         (_gst_caps_free), (gst_caps_make_writable), (gst_caps_ref),
2526         (gst_caps_unref), (gst_static_caps_get),
2527         (gst_caps_remove_and_get_structure), (gst_caps_append),
2528         (gst_caps_append_structure), (gst_caps_remove_structure),
2529         (gst_caps_copy_nth), (gst_caps_set_simple),
2530         (gst_caps_set_simple_valist), (gst_caps_is_fixed_foreach),
2531         (gst_structure_is_equal_foreach), (gst_caps_is_subset),
2532         (gst_caps_structure_intersect_field), (gst_caps_intersect),
2533         (gst_caps_structure_subtract_field), (gst_caps_subtract),
2534         (gst_caps_normalize_foreach), (gst_caps_compare_structures),
2535         (gst_caps_structure_figure_out_union),
2536         (gst_caps_switch_structures), (gst_caps_do_simplify),
2537         (gst_caps_replace), (gst_caps_from_string),
2538         (gst_caps_copy_conditional):
2539         * gst/gstcaps.h:
2540         * gst/gstclock.c: (gst_clock_entry_new), (gst_clock_id_ref),
2541         (_gst_clock_id_free), (gst_clock_id_unref),
2542         (gst_clock_id_compare_func), (gst_clock_id_wait),
2543         (gst_clock_id_wait_async), (gst_clock_class_init),
2544         (gst_clock_init), (gst_clock_dispose), (gst_clock_adjust_unlocked),
2545         (gst_clock_get_time), (gst_clock_set_time_adjust),
2546         (gst_clock_set_property), (gst_clock_get_property):
2547         * gst/gstclock.h:
2548         * gst/gstcompat.h:
2549         * gst/gstcpu.c: (_gst_cpu_initialize_i386), (gst_cpu_get_flags):
2550         * gst/gstdata.c: (gst_data_is_writable), (gst_data_copy_on_write):
2551         * gst/gstdata.h:
2552         * gst/gstelement.c: (gst_element_class_init), (gst_element_init),
2553         (gst_element_requires_clock), (gst_element_provides_clock),
2554         (gst_element_set_clock), (gst_element_clock_wait),
2555         (gst_element_wait), (gst_element_set_time_delay),
2556         (gst_element_is_indexable), (gst_element_add_pad),
2557         (gst_element_add_ghost_pad), (gst_element_remove_pad),
2558         (pad_compare_name), (gst_element_get_static_pad),
2559         (gst_element_request_pad), (gst_element_get_request_pad),
2560         (gst_element_get_pad), (iterate_pad), (gst_element_iterate_pads),
2561         (gst_element_class_get_pad_template_list),
2562         (gst_element_class_get_pad_template), (gst_element_error_func),
2563         (gst_element_get_random_pad), (gst_element_get_event_masks),
2564         (gst_element_send_event), (gst_element_seek),
2565         (gst_element_get_query_types), (gst_element_query),
2566         (gst_element_get_formats), (gst_element_convert),
2567         (gst_element_is_locked_state), (gst_element_set_locked_state),
2568         (gst_element_sync_state_with_parent), (gst_element_change_state),
2569         (gst_element_finalize), (gst_element_yield),
2570         (gst_element_interrupt), (gst_element_set_scheduler),
2571         (gst_element_get_scheduler), (gst_element_set_loop_function):
2572         * gst/gstelement.h:
2573         * gst/gstevent.h:
2574         * gst/gstformat.c: (_gst_format_initialize), (gst_format_register),
2575         (gst_format_get_by_nick), (gst_format_get_details),
2576         (gst_format_iterate_definitions):
2577         * gst/gstformat.h:
2578         * gst/gstindex.c: (gst_index_gtype_resolver):
2579         * gst/gstinfo.c:
2580         * gst/gstinfo.h:
2581         * gst/gstmemchunk.c: (gst_mem_chunk_alloc), (gst_mem_chunk_alloc0),
2582         (gst_mem_chunk_free):
2583         * gst/gstobject.c: (gst_object_class_init), (gst_object_init),
2584         (gst_object_ref), (gst_object_unref), (gst_object_sink),
2585         (gst_object_replace), (gst_object_dispose), (gst_object_finalize),
2586         (gst_object_dispatch_properties_changed),
2587         (gst_object_set_name_default), (gst_object_set_name),
2588         (gst_object_get_name), (gst_object_set_name_prefix),
2589         (gst_object_get_name_prefix), (gst_object_set_parent),
2590         (gst_object_get_parent), (gst_object_unparent),
2591         (gst_object_check_uniqueness), (gst_object_save_thyself),
2592         (gst_object_restore_thyself), (gst_object_real_restore_thyself),
2593         (gst_object_set_property), (gst_object_get_property),
2594         (gst_object_get_path_string):
2595         * gst/gstobject.h:
2596         * gst/gstpad.c: (gst_pad_dispose), (gst_real_pad_class_init),
2597         (gst_real_pad_init), (gst_real_pad_get_property),
2598         (gst_pad_custom_new), (gst_pad_get_direction),
2599         (gst_pad_set_active), (gst_pad_is_active),
2600         (gst_pad_set_event_function), (gst_pad_is_linked),
2601         (gst_pad_link_free), (gst_pad_link_intersect),
2602         (gst_pad_link_fixate), (gst_pad_set_caps),
2603         (gst_pad_try_set_caps_nonfixed), (gst_pad_set_pad_template),
2604         (gst_pad_get_real_parent), (gst_pad_add_ghost_pad),
2605         (gst_pad_remove_ghost_pad), (_gst_pad_default_fixate_foreach),
2606         (gst_pad_link_unnegotiate), (gst_pad_proxy_fixate),
2607         (gst_pad_get_caps), (gst_pad_peer_get_caps),
2608         (gst_pad_get_pad_template_caps), (gst_pad_get_peer),
2609         (gst_pad_realize), (gst_pad_get_allowed_caps),
2610         (gst_real_pad_dispose), (gst_real_pad_finalize),
2611         (gst_pad_collectv), (gst_pad_collect_valist),
2612         (gst_pad_template_dispose), (gst_pad_template_new),
2613         (gst_pad_get_internal_links):
2614         * gst/gstpad.h:
2615         * gst/gstpipeline.c: (gst_pipeline_dispose),
2616         (gst_pipeline_change_state):
2617         * gst/gstpipeline.h:
2618         * gst/gstplugin.c:
2619         * gst/gstpluginfeature.c: (gst_plugin_feature_get_name),
2620         (gst_plugin_feature_set_rank), (gst_plugin_feature_get_rank):
2621         * gst/gstpluginfeature.h:
2622         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
2623         * gst/gstquery.c: (_gst_query_type_initialize),
2624         (gst_query_type_register), (gst_query_type_get_by_nick),
2625         (gst_query_type_get_details), (gst_query_type_iterate_definitions):
2626         * gst/gstquery.h:
2627         * gst/gstqueue.c: (gst_queue_link_sink), (gst_queue_link_src):
2628         * gst/gstscheduler.c: (gst_scheduler_add_element),
2629         (gst_scheduler_factory_create):
2630         * gst/gststructure.c: (gst_structure_set_parent_refcount),
2631         (gst_structure_free), (gst_structure_set_name),
2632         (gst_structure_id_set_value), (gst_structure_set_value),
2633         (gst_structure_set_valist), (gst_structure_remove_field),
2634         (gst_structure_remove_fields),
2635         (gst_structure_remove_fields_valist),
2636         (gst_structure_remove_all_fields), (gst_structure_foreach),
2637         (gst_structure_map_in_place),
2638         (gst_caps_structure_fixate_field_nearest_int),
2639         (gst_caps_structure_fixate_field_nearest_double):
2640         * gst/gststructure.h:
2641         * gst/gstsystemclock.c: (gst_system_clock_class_init),
2642         (gst_system_clock_init), (gst_system_clock_dispose),
2643         (gst_system_clock_async_thread),
2644         (gst_system_clock_id_wait_unlocked), (gst_system_clock_id_wait),
2645         (gst_system_clock_id_wait_async), (gst_system_clock_id_unschedule):
2646         * gst/gstsystemclock.h:
2647         * gst/gsttag.c: (gst_tag_list_add_value_internal),
2648         (gst_tag_list_copy_foreach), (structure_foreach_wrapper):
2649         * gst/gsttaginterface.c:
2650         * gst/gstthread.c: (gst_thread_dispose),
2651         (gst_thread_release_children_locks), (gst_thread_change_state),
2652         (gst_thread_main_loop):
2653         * gst/gsttrashstack.h:
2654         * gst/gsttypefind.c: (gst_type_find_factory_dispose):
2655         * gst/gsttypes.h:
2656         * gst/gstutils.c: (gst_element_get_compatible_pad_template),
2657         (gst_element_request_pad), (gst_element_get_pad_from_template),
2658         (gst_element_request_compatible_pad),
2659         (gst_element_get_compatible_pad_filtered),
2660         (gst_element_get_compatible_pad), (gst_element_state_get_name),
2661         (gst_element_link_pads_filtered), (gst_element_link_filtered),
2662         (gst_element_link_many), (gst_element_link),
2663         (gst_element_link_pads), (gst_element_unlink_pads),
2664         (gst_element_unlink_many), (gst_element_unlink),
2665         (gst_pad_can_link_filtered), (gst_pad_can_link),
2666         (gst_pad_use_fixed_caps), (gst_pad_get_fixed_caps_func),
2667         (gst_object_default_error), (gst_bin_add_many),
2668         (gst_bin_remove_many), (gst_element_populate_std_props),
2669         (gst_element_class_install_std_props), (gst_buffer_merge),
2670         (gst_buffer_stamp), (intersect_caps_func), (gst_pad_proxy_getcaps),
2671         (link_fold_func), (gst_pad_proxy_setcaps):
2672         * gst/gstutils.h:
2673         * gst/gstvalue.c: (gst_value_deserialize_string):
2674         * gst/parse/grammar.y:
2675         * gst/schedulers/gstbasicscheduler.c:
2676         (gst_basic_scheduler_cothreaded_chain),
2677         (gst_basic_scheduler_chain_recursive_add),
2678         (gst_basic_scheduler_pad_link):
2679         * gst/schedulers/gstoptimalscheduler.c:
2680         (get_group_schedule_function),
2681         (gst_opt_scheduler_state_transition),
2682         (gst_opt_scheduler_add_element), (element_get_reachables_func):
2683         * libs/gst/bytestream/bytestream.c:
2684         * libs/gst/dataprotocol/dataprotocol.c:
2685         (gst_dp_header_from_buffer):
2686         * po/nb.po:
2687         * po/ru.po:
2688         * tests/threadstate/threadstate2.c: (eos):
2689         * tools/gst-compprep.c: (main):
2690         * tools/gst-inspect.c: (print_field), (print_element_flag_info),
2691         (print_pad_info), (print_children_info):
2692         * tools/gst-launch.c: (idle_func), (main):
2693         * tools/gst-md5sum.c: (idle_func), (main):
2694         * tools/gst-xmlinspect.c: (print_element_info):
2695         First THREADED backport attempt, focusing on adding locks and
2696         making sure the API is threadsafe. Needs more work. More docs
2697         follow this week.
2698
2699 2005-02-24  Andy Wingo  <wingo@pobox.com>
2700
2701         * tests/bench-complexity.scm:
2702         * tests/complexity.gnuplot: New files, good for running complexity
2703         benchmarks.
2704
2705         * tests/Makefile.am:
2706         * tests/complexity.c: New test, sets up N elements, at each level
2707         teeing into M streams per element. Eeeenteresting.
2708
2709         * tests/mass_elements.gnuplot: gnuplot file for the mass_elements
2710         benchmark. Run as gnuplot mass_elements.gnuplot > foo.ps, after
2711         running bench-mass_elements.scm.
2712
2713         * tests/bench-mass_elements.scm: New script, runs mass_elements
2714         for various numbers of identities, outputting the results to a
2715         file. Requires guile 1.6. Just for testing.
2716
2717 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2718
2719         * gst/schedulers/fairscheduler.c:
2720           compile with debug disabled
2721
2722 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
2723
2724         * configure.ac:
2725           hunting season on 0.9 is now OPEN
2726
2727 2005-02-22  Stefan Kost  <ensonic@users.sf.net>
2728
2729         * docs/libs/tmpl/gstcontrol.sgml:
2730         * docs/libs/tmpl/gstdparam.sgml:
2731         * docs/libs/tmpl/gstdplinint.sgml:
2732         * docs/libs/tmpl/gstdpman.sgml:
2733         * docs/libs/tmpl/gstdpsmooth.sgml:
2734         * docs/libs/tmpl/gstunitconvert.sgml:
2735           more docs for the state of dparams
2736
2737 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2738
2739         * gst/gstelementfactory.c: (gst_element_factory_create):
2740         * gst/gstobject.c: (gst_object_init),
2741         (gst_object_set_name_default), (gst_object_set_name):
2742           name objects by default, not in gst_element_factory_create. Allows
2743           using elements created with g_object_new. (fixes #167283)
2744
2745 2005-02-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2746
2747         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_log_default):
2748           make the time that debugging functions print relative to when
2749           gst_init was called
2750
2751 2005-02-18  Tim-Philipp Müller  <tim at centricular dot net>
2752
2753         * gst/gsttaginterface.c:
2754           Fix inline docs: tag setter vararg functions are NULL-terminated,
2755           GST_TAG_INVALID doesn't exist any more.
2756
2757 2005-02-18  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
2758
2759         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_dump_byte_array):
2760         Allocate the 1 byte more memory that was forgotten!!!!!
2761         fixes memory corruption on 64bit platforms
2762
2763 2005-02-15  Stefan Kost  <ensonic@users.sf.net>
2764
2765         * docs/pwg/building-pads.xml:
2766         * docs/pwg/intro-basics.xml:
2767           fixed a few typos, relabeled introductionary list of types
2768         * docs/random/ensonic/dparams.txt:
2769           more notes abut dparam changes
2770         * libs/gst/control/dparam.c: (gst_dparam_attach):
2771         * libs/gst/control/dparammanager.c:
2772         * libs/gst/control/dparammanager.h:
2773           - many comments and notes on dparam implementation
2774           - new dparams are were not initialized to the default value
2775             from param spec
2776
2777 2005-02-14  Thomas Vander Stichele  <thomas at apestaart dot org>
2778
2779         submitted by: Peter Astakhov
2780
2781         * po/LINGUAS:
2782         * po/ru.po:
2783           adding Russian translation
2784
2785 2005-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2786
2787         * configure.ac:
2788         * docs/gst/Makefile.am:
2789         * docs/libs/Makefile.am:
2790           make sure popt is added to gtk-doc flags.  Fixes #147782.
2791
2792 2005-02-09  Tim-Philipp Müller  <tim at centricular dot net>
2793
2794         * docs/faq/using.xml:
2795           Fix typo in FAQ (artssink => artsdsink)
2796
2797 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2798
2799         * tools/gst-launch.1.in:
2800           Fix typo (#166699).
2801
2802 2005-02-08  Tim-Philipp Müller  <tim at centricular dot net>
2803
2804         * docs/faq/using.xml:
2805           Add -v argument to fakesrc/fakesink gst-launch line,
2806           so that the promised output will actually show up.
2807
2808 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2809
2810         * gst/gstthread.c: (gst_thread_change_state):
2811           Implement state-change error handling (#166073).
2812
2813 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2814
2815         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2816           Release interrupt after handling (#166250).
2817
2818 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2819
2820         * configure.ac:
2821           back to HEAD
2822
2823 === release 0.8.9 ===
2824
2825 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2826
2827         * NEWS:
2828         * RELEASE:
2829         * configure.ac:
2830           releasing 0.8.9, "Like Eating Glass"
2831
2832 2005-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2833
2834         submitted by: Clytie Siddall
2835
2836         * po/vi.po: Added Vietnamese translation
2837
2838 2005-02-07  Thomas Vander Stichele  <thomas at apestaart dot org>
2839
2840         patch by: Tim Philipp-Müller
2841
2842         * configure.ac:
2843         * gst/gstpad.c:
2844           unref data when probe function returns FALSE.  Fixes #166362
2845
2846 2005-02-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2847
2848         * gst/gst.c: (gst_init_get_popt_table):
2849           Fix typo (#166269).
2850
2851 2005-02-04  Andy Wingo  <wingo@pobox.com>
2852
2853         * gst/gstelement.c (gst_element_get_compatible_pad_template): Fix
2854         the debugging on whether the caps are compatible.
2855
2856 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2857
2858         * docs/manual/basics-elements.xml:
2859           Fix two typos.
2860
2861 2005-02-02  Wim Taymans  <wim@fluendo.com>
2862
2863         * gst/schedulers/gstoptimalscheduler.c: (remove_decoupled),
2864         (schedule_chain), (get_invalid_call), (chain_invalid_call),
2865         (loop_group_schedule_function), (gst_opt_scheduler_iterate):
2866         Remove some FIXMEs after analysing and commenting why they
2867         are not issues.
2868
2869 2005-02-02  Wim Taymans  <wim@fluendo.com>
2870
2871         * gst/schedulers/gstoptimalscheduler.c:
2872         (gst_opt_scheduler_class_init), (gst_opt_scheduler_init),
2873         (gst_opt_scheduler_finalize), (remove_decoupled), (schedule_chain),
2874         (get_invalid_call), (chain_invalid_call),
2875         (get_group_schedule_function), (loop_group_schedule_function),
2876         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
2877         (gst_opt_scheduler_state_transition),
2878         (gst_opt_scheduler_add_element),
2879         (gst_opt_scheduler_remove_element), (gst_opt_scheduler_interrupt),
2880         (gst_opt_scheduler_error), (gst_opt_scheduler_pad_link),
2881         (gst_opt_scheduler_pad_unlink), (gst_opt_scheduler_iterate),
2882         (gst_opt_scheduler_show):
2883         Added lock to protect scheduler data structures.
2884
2885 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2886
2887         * testsuite/threads/threadi.c: (cb_data):
2888           Fix buglet in test.
2889
2890 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2891
2892         * testsuite/threads/Makefile.am:
2893         * testsuite/threads/threadi.c: (cb_data), (cb_play), (main):
2894           On Wim's request, split the test in three separately-compiled
2895           tests that each test a very specific bug. Two of them still fail,
2896           will create bugs for those. threadi.c indicates why they fail.
2897
2898 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2899
2900         * gst/schedulers/gstoptimalscheduler.c:
2901         (get_group_schedule_function):
2902           Try to work with the threading mess that queue_link is.
2903
2904 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2905
2906         * gst/gstbin.c: (gst_bin_remove_func):
2907           Explicitely make an element release locks in a group when being
2908           remove from a bin.
2909         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
2910           If there's no scheduler, always return immediately (similar to
2911           gst_element_interrupt).
2912
2913 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2914
2915         * gst/gstbin.c: (gst_bin_child_state_change_func):
2916           Remove a piece of code that could never be reached.
2917         * docs/gst/gstreamer-sections.txt:
2918         * gst/gstpad.c: (gst_pad_push), (gst_pad_pull),
2919         (gst_pad_call_get_function):
2920         * gst/gstpad.h:
2921         * testsuite/pad/Makefile.am:
2922           Fix #150546, enable tests.
2923
2924 2005-01-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2925
2926         * docs/pwg/advanced-types.xml:
2927           Fix description for buffer-frames=0.
2928         * docs/gst/tmpl/gstbin.sgml:
2929         * gst/gstbin.c: (gst_bin_child_state_change_func),
2930         (gst_bin_change_state), (gst_bin_change_state_norecurse):
2931         * gst/gstbin.h:
2932         * testsuite/threads/Makefile.am:
2933         * testsuite/threads/threadi.c: (cb_timeout), (cb_quit), (cb_eos),
2934         (cb_state), (cb_play), (main):
2935           Fix non-recursive state changes to *really* change the state
2936           of the object, and not just call parent_class->state_change.
2937           Fix a lot of lockups caused by this. Fixes #132775. Add test
2938           for the problem. Also enable test to show #142588 (fixed).
2939         * gst/gstthread.c: (gst_thread_change_state),
2940         (gst_thread_child_state_change):
2941           Don't exit the thread if we go to NULL and are inside thread
2942           context. Instead, return control to the main thread context
2943           and exit from there.
2944         * gst/gstelement.c: (gst_element_disable_threadsafe_properties):
2945           Don't unset virtual functions, since those may still be used.
2946           That's not necessarily correct, but suffices for now.
2947         * configure.ac:
2948         * testsuite/Makefile.am:
2949         * testsuite/pad/Makefile.am:
2950         * testsuite/pad/chainnopull.c: (gst_test_sink_class_init),
2951         (gst_test_sink_base_init), (gst_test_sink_chain),
2952         (gst_test_sink_init), (main):
2953         * testsuite/pad/getnopush.c: (gst_test_src_class_init),
2954         (gst_test_src_base_init), (gst_test_src_get), (gst_test_src_init),
2955         (main):
2956         * testsuite/pad/link.c: (gst_test_element_class_init),
2957         (gst_test_element_base_init), (gst_test_src_get),
2958         (gst_test_src_loop), (gst_test_src_init), (gst_test_filter_chain),
2959         (gst_test_filter_loop), (gst_test_filter_init),
2960         (gst_test_sink_chain), (gst_test_sink_loop), (gst_test_sink_init),
2961         (cb_error), (main):
2962           Add tests to show #150546. Pass, but should fail (currently
2963           disabled from the testsuite).
2964         * gst/gstscheduler.c: (gst_scheduler_dispose):
2965           Dereference child schedulers on dispose (#94464).
2966         * testsuite/bytestream/filepadsink.c: (gst_fp_sink_init):
2967           Fix typo.
2968         * testsuite/threads/thread.c: (main):
2969           Add more debug.
2970
2971 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2972
2973         * gst/gstpad.c: (gst_pad_push):
2974           Oops, revert previous commit, broke testsuite...
2975
2976 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2977
2978         * gst/gstpad.c: (gst_pad_push):
2979           Add check that the pad on which the push is performed is not a
2980           get-based pad (#150546).
2981
2982 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2983
2984         * gst/elements/gsttypefindelement.c:
2985         (gst_type_find_element_handle_event):
2986           Fix buffer pushing if stream EOSes during typefinding.
2987
2988 2005-01-28  Edward Hervey  <bilboed@bilboed.com>
2989
2990         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2991
2992         * gst/gstvalue.c: (gst_string_wrap):
2993           Allow NULL-strings as argument (#165365).
2994
2995 2005-01-27  Stephane Wirtel  <stephane.wirtel@belgacom.net>
2996
2997         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
2998
2999         * gst/schedulers/faircothreads.c:
3000         (gst_fair_scheduler_cothread_queue_show):
3001           Fix build without debug enabled.
3002
3003 2005-01-26  Stefan Kost  <ensonic@users.sf.net>
3004
3005         * docs/gst/gstreamer-sections.txt:
3006         * docs/libs/gstreamer-libs-docs.sgml:
3007         * docs/libs/gstreamer-libs-sections.txt:
3008         * docs/libs/tmpl/gstcontrol.sgml:
3009         * docs/libs/tmpl/gstdparam.sgml:
3010         * docs/libs/tmpl/gstdplinint.sgml:
3011         * docs/libs/tmpl/gstdpman.sgml:
3012         * docs/libs/tmpl/gstdpsmooth.sgml:
3013         * docs/libs/tmpl/gstputbits.sgml:
3014         * docs/libs/tmpl/gstunitconvert.sgml:
3015         * libs/gst/control/dparam.c:
3016         * libs/gst/control/dparam.h:
3017         * libs/gst/control/dparammanager.c:
3018         (gst_dpman_add_required_dparam_callback),
3019         (gst_dpman_add_required_dparam_direct),
3020         (gst_dpman_add_required_dparam_array),
3021         (gst_dpman_remove_required_dparam), (gst_dpman_attach_dparam),
3022         (gst_dpman_get_dparam), (gst_dpman_get_dparam_type),
3023         (gst_dpman_get_manager)
3024           restructured DParam docs
3025
3026 2005-01-25  Tim-Philipp Müller  <tim at centricular dot net>
3027
3028         * gst-element-check.m4:
3029           Only check for gst-inspect if we haven't already
3030           found it in previous element check runs
3031
3032 2005-01-25  Stefan Kost  <ensonic@users.sf.net>
3033
3034         * docs/gst/Makefile.am:
3035         * docs/libs/Makefile.am:
3036           fixed install rules to treat style.css as optional
3037
3038 2005-01-24  Stefan Kost  <ensonic@users.sf.net>
3039
3040         * docs/gst/Makefile.am:
3041         * docs/libs/Makefile.am:
3042           install style.css along with docs
3043         * docs/gst/tmpl/gstbin.sgml:
3044         * docs/gst/tmpl/gstclock.sgml:
3045         * docs/gst/tmpl/gstdata.sgml:
3046         * docs/gst/tmpl/gstelement.sgml:
3047         * gst/gstbin.h:
3048         * gst/gstelement.c: (gst_element_class_init):
3049         * gst/gstelement.h:
3050           fixing incomplete docs
3051
3052 2005-01-24  Tim-Philipp Müller  <tim at centricular dot net>
3053
3054         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
3055           Don't unref seek event twice when fflush() fails
3056           
3057 2005-01-22  David Schleef  <ds@schleef.org>
3058
3059         * configure.ac: Add --disable-valgrind. (partial fix for #164890)
3060
3061 2005-01-21  Stefan Kost  <ensonic@users.sf.net>
3062
3063         * docs/gst/Makefile.am:
3064         * docs/libs/Makefile.am:
3065           added params for deprecation guards
3066         * gst/gst.c:
3067         * gst/gst.h:
3068         * gst/gsterror.c: (_gst_resource_errors_init),
3069         (_gst_stream_errors_init):
3070         * gst/gsterror.h:
3071           documented some more enums
3072
3073 2005-01-19  Jan Schmidt  <thaytan@mad.scientist.com>
3074         * gst/autoplug/gstspideridentity.c:
3075         Cosmetic fix - spider_find_peek should be static
3076         * gst/parse/parse.l:
3077         Applying fix for #164261
3078
3079 2005-01-18  Stefan Kost  <ensonic@users.sf.net>
3080
3081         * docs/gst/gstreamer-sections.txt:
3082         * docs/gst/tmpl/gstplugin.sgml:
3083         * docs/libs/gstreamer-libs-sections.txt:
3084         * docs/libs/tmpl/gstcontrol.sgml:
3085         * gst/gstbuffer.h:
3086         * gst/gsttag.h:
3087         * gst/gstvalue.c:
3088           added docs for the TAG defines
3089
3090 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3091
3092         * gst/schedulers/gstoptimalscheduler.c: (schedule_group):
3093           Only unref entry if there is an entry.
3094
3095 2005-01-17  Wim Taymans  <wim@fluendo.com>
3096
3097         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3098         (remove_from_group), (schedule_group), (normalize_group),
3099         (gst_opt_scheduler_iterate):
3100         Also ref/unref decoupled elements before iterating the
3101         group since they are not added to the list of elements.
3102
3103 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3104
3105         * docs/manual/highlevel-components.xml:
3106           Add subtitle/streamselection as new features to playbin.
3107
3108 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3109
3110         * docs/manual/manual.xml:
3111           Re-enable dataaccess docs (oops).
3112
3113 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3114
3115         * docs/pwg/advanced-types.xml:
3116         * docs/random/mimetypes:
3117           Add documentation on libsndfile types (#163309), by Steve Baker
3118           <steve@stevebaker.org>.
3119         * gst/gstelement.c: (gst_element_release_request_pad):
3120           If an element has no explicit function, just remove the pad.
3121
3122 2005-01-17  Luca Ognibene  <luogni@tin.it>
3123
3124         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3125
3126         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
3127           Fix memleak (#163801).
3128
3129 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3130
3131         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link):
3132           I think this is actually more correct...
3133
3134 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3135
3136         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
3137           Another workaround for memory access while destroyed in callback.
3138           Please, someone with refcount knowledge, have a look at this.
3139
3140 2005-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3141
3142         * docs/faq/faq.xml:
3143         * docs/faq/legal.xml:
3144           move the legal Q&A here
3145
3146 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3147
3148         * gst/elements/gsttee.c: (gst_tee_getcaps), (gst_tee_link),
3149         (gst_tee_request_new_pad):
3150           Fix negotiation.
3151
3152 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3153
3154         * docs/random/omega/caps2:
3155         * testsuite/caps/caps_strings:
3156           replace framerate aproximations by their real value
3157           (24000/1001, 30000/1001, 60000/1001)
3158           Partially fixes bug #164049
3159
3160 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3161
3162         * docs/gst/Makefile.am:
3163           don't fail on the stupid GstPoptOption
3164
3165 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3166
3167         * gst/gstpad.h:
3168         * gst/gstprobe.c:
3169           allow probes to work on ghost pads by realizing the pad
3170           probe debugging
3171
3172 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3173
3174         * docs/gst/gstreamer-sections.txt:
3175         * docs/gst/tmpl/gstpad.sgml:
3176         * gst/gstpad.c: (gst_pad_set_active_recursive):
3177         * gst/gstpad.h:
3178           Add gst_pad_set_active_recursive().
3179
3180 2005-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
3181
3182         * docs/random/release:
3183           updates
3184         * gst/gst_private.h:
3185         * gst/gstinfo.c:
3186         * gst/gstobject.c:
3187           move deep_notify logging to a new category
3188         * gst/gstprobe.c:
3189         * gst/gstprobe.h:
3190           add stuff so bindings can wrap probes
3191
3192 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3193
3194         * gst/gstplugin.c: (gst_plugin_load):
3195           Fix plugin loading if plugin/lib was already loaded. Fixes
3196           #163383
3197
3198 2005-01-09  Sebastien Cote  <sc5@hermes.usherb.ca>
3199
3200         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3201
3202         * gst/gstpluginfeature.c: (gst_plugin_feature_ensure_loaded):
3203           Protect plugin loading by a mutex so it's threadsafe. Fixes
3204           #163234.
3205
3206 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3207
3208         * gst/gstevent.c: (_gst_event_copy):
3209           Reference source object when copying events, since it'll be
3210           dereferenced on event dereferencing as well.
3211
3212 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3213
3214         * docs/gst/gstreamer-sections.txt:
3215         * docs/gst/tmpl/gstevent.sgml:
3216         * gst/gstevent.c: (gst_event_new_filler_stamped),
3217         (gst_event_filler_get_duration):
3218         * gst/gstevent.h:
3219           Add two new functions for filler events (which are used to
3220           synchronize streams if one of them is not having any data
3221           for a while) without interrupting the actual data-stream.
3222           Basically a no-op.
3223         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3224         (gst_queue_link_sink), (gst_queue_link_src),
3225         (gst_queue_change_state):
3226           Allow for renegotiation while filled. Required for stream
3227           switching while playing.
3228
3229 2005-01-08  Benjamin Otte  <otte@gnome.org>
3230
3231         * gst/gstelement.c: (gst_element_link_many):
3232           fix up g_return_if_fail's
3233         * po/LINGUAS:
3234         * po/de.po:
3235           add German translation, that was somehow not included
3236
3237 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
3238
3239         * docs/random/mimetypes:
3240           add 2 more 4CC code for DV (HDTV and SDTV-LongPlay profiles)
3241           do not add them to riff-lib as they are not common
3242
3243 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3244
3245         * gst/gstprobe.c: (gst_probe_dispatcher_dispatch):
3246           Check for existence of probe after performing the probe before
3247           re-accessing it to prevent segfaults caused by removal of the
3248           probe in the callback.
3249
3250 2005-01-05  David Schleef  <ds@schleef.org>
3251
3252         * testsuite/registry/Makefile.am:
3253         * testsuite/registry/gst-print-formats.c:
3254         (print_pad_templates_info), (print_element_list),
3255         (print_typefind_list), (list_sort_func), (get_typefind_mime_list),
3256         (g_list_uniqify), (get_pad_templates_info),
3257         (get_element_mime_list), (print_mime_list), (main): A little
3258         program that looks through the registry to find elements of
3259         a given type.  Not particularly interesting as a test, except
3260         that there's no other test covering the same area.
3261
3262 2005-01-05  David Schleef  <ds@schleef.org>
3263
3264         * tools/gst-launch.c: (idle_func), (fault_handler_sighandler),
3265         (fault_handler_sigaction), (fault_spin),
3266         (sigint_handler_sighandler), (play_handler), (main): Fix deadlocks
3267         in signal.h-type signal handlers by not calling forbidden functions,
3268         including gst_element_set_state().
3269
3270 2005-01-05  David Schleef  <ds@schleef.org>
3271
3272         * gst/gstvalue.h: Mark _gst_reserved[] as private
3273
3274 2005-01-05  David Schleef  <ds@schleef.org>
3275
3276         * gst/gstvalue.c: Fix doc build problem.
3277
3278 2005-01-05  David Schleef  <ds@schleef.org>
3279
3280         * gst/gstvalue.c: Add some documentation
3281
3282 2005-01-05  Stefan Kost  <ensonic@users.sf.net>
3283
3284         * docs/README:
3285           another shell oneliner for empty return value docs
3286         * gst/gstcaps.c:
3287         * gst/gstvalue.c:
3288         * libs/gst/control/dparam.c:
3289           more doc fixes (parameters and return values)
3290
3291 2005-01-05  Vincent Torri  <torri@iecn.u-nancy.fr>
3292
3293         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3294
3295         * gst/gstregistry.h:
3296         * gst/registries/gstxmlregistry.c:
3297           Fix macro's for Mingw (fixes #162276).
3298
3299 2005-01-04  Stefan Kost  <ensonic@users.sf.net>
3300
3301         * docs/README:
3302           quick shell oneliner to find undocumented members
3303         * docs/gst/tmpl/gstplugin.sgml:
3304         * docs/gst/tmpl/gstscheduler.sgml:
3305         * docs/gst/tmpl/gstthread.sgml:
3306           more enumtypes cleanup
3307         * gst/gsterror.h:
3308           activated documentation comments, now someone needs to document
3309           the enums :(
3310
3311 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3312
3313         * docs/manual/manual.xml:
3314           Add dataaccess part (doh!).
3315
3316 2005-01-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3317
3318         * docs/manual/advanced-autoplugging.xml:
3319           Fix typo (intiate -> initiate).
3320
3321 2005-01-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3322
3323         * docs/random/bbb/streamselection:
3324           Add some notes on how to handle multi-subtitle/-audio streams.
3325
3326 2004-12-30  Stefan Kost  <ensonic@users.sf.net>
3327
3328         * docs/gst/gstreamer-docs.sgml:
3329         * docs/gst/gstreamer-sections.txt:
3330         * docs/gst/tmpl/gstenumtypes.sgml:
3331         * docs/gst/tmpl/gsterror.sgml:
3332         * docs/gst/tmpl/gstevent.sgml:
3333         * docs/gst/tmpl/gstpad.sgml:
3334         * docs/gst/tmpl/gstpadtemplate.sgml:
3335         * docs/gst/tmpl/gstthread.sgml:
3336           removed gstenumtypes section from docs and put all the enums into
3337           their sections
3338
3339 2004-12-27  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3340
3341         * gst/gstplugin.c:
3342           document gst_library_load a bit more (riff special case + return
3343           value if already loaded)
3344         * testsuite/bytestream/filepadsink.c:
3345           plugin name is 'gstbytestream', not 'bytestream'
3346
3347 2004-12-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3348
3349         * docs/random/bbb/subtitles:
3350           Add some first mind rumblings on proper subtitle support.
3351
3352 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3353
3354         * po/ca.po:
3355         * po/sv.po:
3356           updated translations
3357
3358 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3359
3360         * docs/manual/advanced-dataaccess.xml:
3361           Add section on how to use fakesrc/fakesink/identity in your
3362           application, plus section on how to embed plugins. Also mention
3363           probes.
3364         * docs/manual/appendix-checklist.xml:
3365         * docs/manual/appendix-debugging.xml:
3366         * docs/manual/appendix-gnome.xml:
3367         * docs/manual/appendix-integration.xml:
3368           Debug -> checklist, GNOME -> integration, add sections on Linux,
3369           KDE integration and add other things useful for application
3370           development.
3371         * docs/manual/manual.xml:
3372           Remove some fixmes, update some file pointers.
3373         * docs/pwg/appendix-checklist.xml:
3374           Fix typo.
3375         * docs/pwg/building-boiler.xml:
3376           Remove ugly header and add commented fixme.
3377         * docs/pwg/pwg.xml:
3378           Add fixme.
3379         * examples/manual/Makefile.am:
3380           Add example for added docs.
3381
3382 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3383
3384         * configure.ac:
3385           back to HEAD
3386
3387 === release 0.8.8 ===
3388
3389 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3390
3391         * NEWS:
3392         * RELEASE:
3393         * configure.ac:
3394           Releasing 0.8.8, "I'll Take Care Of You"
3395
3396 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3397
3398         * configure.ac:
3399           second prerelease
3400
3401 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3402
3403         patch by: Wim Taymans
3404
3405         * gst/gstbin.c:
3406           Fix for #159852 - make iterate emission threadsafe
3407
3408 2004-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3409
3410         * docs/faq/cvs.xml:
3411           notes about new fdo account request
3412
3413 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
3414
3415         * docs/gst/gstreamer-docs.sgml:
3416         * docs/gst/tmpl/gstenumtypes.sgml:
3417         * docs/gst/tmpl/gstplugin.sgml:
3418         * docs/libs/gstreamer-libs-docs.sgml:
3419           Added missing short docs. Added ids for navigation.
3420
3421 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3422
3423         * docs/manual/advanced-autoplugging.xml:
3424         * docs/manual/advanced-schedulers.xml:
3425         * docs/manual/advanced-threads.xml:
3426           Rewrites. Remove cothreads, go a bit into opt specifically,
3427           document threads and their gotchas, and do some technical stuff
3428           on autoplugging plus add some working examples. Fixes #157395.
3429         * examples/manual/Makefile.am:
3430           Add typefind/autoplugger example (one that actually works).
3431           Remove queue example since it's a duplicate of the thread one.
3432
3433 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3434
3435         * gst/gstvalue.c: (gst_value_deserialize_string):
3436           use deprecated g_value_set_string_take_ownership to keep compatible
3437           with glib 2.2
3438
3439 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3440
3441         * gst/gstvalue.c: (gst_value_deserialize_string):
3442           revert last patch, only dom a g_utf8_validate now before accepting
3443           the string - caps parsing strips " from strings so we can't rely on
3444           them
3445         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3446           disable a test that tested the above and comment it
3447
3448 2004-12-16  Steve Lhomme <steve.lhomme@free.fr>
3449
3450         Patch reviewed by David Schleef  <ds@schleef.org>
3451
3452         * win32/gstenumtypes.c: Update from gst/gstenumtypes.c (See
3453         bug #153882)
3454         * win32/gstenumtypes.h: same
3455
3456 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3457
3458         * gst/gstpad.c: (gst_pad_query):
3459           Do query on realized pad, similar to how convert/send_event handle
3460           this. Also makes sense, since this pad belongs to the function to
3461           which this query will be sent. Fixes #158163.
3462
3463 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
3464
3465         * docs/manual/appendix-programs.xml: fix pipeline to actually work
3466
3467 2004-12-16  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3468
3469         * docs/faq/general.xml: fix pipeline to actually work
3470
3471 2004-12-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
3472
3473         * gst/gstvalue.c: (gst_value_deserialize_string):
3474           check that a simple string that gets deserialized does not contain
3475           invalid characters
3476         * testsuite/caps/value_serialize.c: (test_string_deserialization):
3477           remove a test that tested a wring behaviour
3478
3479 2004-12-16  Matt Kraai  <kraai@alumni.cmu.edu>
3480
3481         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3482
3483         * docs/manual/intro-motivation.xml:
3484           Fix typos.
3485
3486 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
3487
3488         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3489
3490         * docs/gst/tmpl/gstprobe.sgml:
3491           Fix documentation of probe callback - it is supposed to return
3492           FALSE, not TRUE, to remove data from the stream (#159087).
3493
3494 2004-12-16  Daniel Gazard  <dany42@free.fr>
3495
3496         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3497
3498         * gst/gstelementfactory.c: (gst_element_factory_create):
3499           Fix compile failure if compiling without libxml2 support (#149936).
3500
3501 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3502
3503         * docs/manual/advanced-autoplugging.xml:
3504         * docs/manual/highlevel-components.xml:
3505           Move spider from autoplugging to components. Autoplugging is for
3506           internals, not for solutions. ;-).
3507
3508 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3509
3510         * docs/random/ds/0.9-suggested-changes:
3511           Make note on device/location/uri property names.
3512
3513 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3514
3515         * docs/manual/advanced-autoplugging.xml:
3516         * docs/manual/advanced-clocks.xml:
3517         * docs/manual/advanced-interfaces.xml:
3518         * docs/manual/advanced-metadata.xml:
3519         * docs/manual/advanced-position.xml:
3520         * docs/manual/advanced-schedulers.xml:
3521         * docs/manual/advanced-threads.xml:
3522         * docs/manual/appendix-gnome.xml:
3523         * docs/manual/appendix-programs.xml:
3524         * docs/manual/appendix-quotes.xml:
3525         * docs/manual/autoplugging.xml:
3526         * docs/manual/basics-bins.xml:
3527         * docs/manual/basics-data.xml:
3528         * docs/manual/basics-elements.xml:
3529         * docs/manual/basics-helloworld.xml:
3530         * docs/manual/basics-init.xml:
3531         * docs/manual/basics-pads.xml:
3532         * docs/manual/basics-plugins.xml:
3533         * docs/manual/bins-api.xml:
3534         * docs/manual/bins.xml:
3535         * docs/manual/buffers-api.xml:
3536         * docs/manual/buffers.xml:
3537         * docs/manual/clocks.xml:
3538         * docs/manual/components.xml:
3539         * docs/manual/cothreads.xml:
3540         * docs/manual/debugging.xml:
3541         * docs/manual/dparams-app.xml:
3542         * docs/manual/dynamic.xml:
3543         * docs/manual/elements-api.xml:
3544         * docs/manual/elements.xml:
3545         * docs/manual/factories.xml:
3546         * docs/manual/gnome.xml:
3547         * docs/manual/goals.xml:
3548         * docs/manual/helloworld.xml:
3549         * docs/manual/helloworld2.xml:
3550         * docs/manual/highlevel-components.xml:
3551         * docs/manual/highlevel-xml.xml:
3552         * docs/manual/init-api.xml:
3553         * docs/manual/intro-basics.xml:
3554         * docs/manual/intro-motivation.xml:
3555         * docs/manual/intro-preface.xml:
3556         * docs/manual/intro.xml:
3557         * docs/manual/links-api.xml:
3558         * docs/manual/links.xml:
3559         * docs/manual/manual.xml:
3560         * docs/manual/motivation.xml:
3561         * docs/manual/pads-api.xml:
3562         * docs/manual/pads.xml:
3563         * docs/manual/plugins-api.xml:
3564         * docs/manual/plugins.xml:
3565         * docs/manual/programs.xml:
3566         * docs/manual/queues.xml:
3567         * docs/manual/quotes.xml:
3568         * docs/manual/schedulers.xml:
3569         * docs/manual/states-api.xml:
3570         * docs/manual/states.xml:
3571         * docs/manual/threads.xml:
3572         * docs/manual/typedetection.xml:
3573         * docs/manual/win32.xml:
3574         * docs/manual/xml.xml:
3575           Try 2. This time, include a short preface as a "general
3576           introduction", also add code blocks around all code samples
3577           so they get compiled. We still need a way to tell readers
3578           the filename of the code sample. In some cases, don't show
3579           all code in the documentation, but do include it in the generated
3580           code. This allows for focussing on specific bits in the docs,
3581           while still having a full test application available.
3582         * examples/manual/Makefile.am:
3583           Fix up examples for new ADM. Add several of the new examples that
3584           were either added or were missing from the build system.
3585         * examples/manual/extract.pl:
3586           Allow nameless blocks.
3587
3588 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3589
3590         * docs/manual/elements-api.xml:
3591         * docs/manual/helloworld.xml:
3592         * examples/manual/extract.pl:
3593           fix last example.  Add example of adding code blocks that are not
3594           shown in docbook output.
3595
3596 2004-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3597
3598         * docs/manual/dynamic.xml:
3599         * docs/manual/elements-api.xml:
3600         * docs/manual/gnome.xml:
3601         * docs/manual/helloworld2.xml:
3602         * docs/manual/init-api.xml:
3603         * docs/manual/queues.xml:
3604         * docs/manual/threads.xml:
3605         * docs/manual/xml.xml:
3606         * examples/manual/extract.pl:
3607           Make it possible to extract example code from separate blocks.
3608           Should make Ronald happy.
3609
3610 2004-12-15  Wim Taymans  <wim@fluendo.com>
3611
3612         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3613         (remove_from_group), (group_elements_set_visited),
3614         (normalize_group), (gst_opt_scheduler_iterate):
3615         Fix bug where a flag was not updated on a decoupled entry point 
3616         because we were just checking the group element list and decoupled
3617         elements are not in that list..
3618
3619 2004-12-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3620
3621         * docs/manual/advanced-autoplugging.xml:
3622         * docs/manual/advanced-clocks.xml:
3623         * docs/manual/advanced-dparams.xml:
3624         * docs/manual/advanced-interfaces.xml:
3625         * docs/manual/advanced-metadata.xml:
3626         * docs/manual/advanced-position.xml:
3627         * docs/manual/advanced-schedulers.xml:
3628         * docs/manual/advanced-threads.xml:
3629         * docs/manual/appendix-debugging.xml:
3630         * docs/manual/appendix-gnome.xml:
3631         * docs/manual/appendix-programs.xml:
3632         * docs/manual/appendix-quotes.xml:
3633         * docs/manual/appendix-win32.xml:
3634         * docs/manual/autoplugging.xml:
3635         * docs/manual/basics-bins.xml:
3636         * docs/manual/basics-data.xml:
3637         * docs/manual/basics-elements.xml:
3638         * docs/manual/basics-helloworld.xml:
3639         * docs/manual/basics-init.xml:
3640         * docs/manual/basics-pads.xml:
3641         * docs/manual/basics-plugins.xml:
3642         * docs/manual/bins-api.xml:
3643         * docs/manual/bins.xml:
3644         * docs/manual/buffers-api.xml:
3645         * docs/manual/buffers.xml:
3646         * docs/manual/clocks.xml:
3647         * docs/manual/components.xml:
3648         * docs/manual/cothreads.xml:
3649         * docs/manual/debugging.xml:
3650         * docs/manual/dparams-app.xml:
3651         * docs/manual/dynamic.xml:
3652         * docs/manual/elements-api.xml:
3653         * docs/manual/elements.xml:
3654         * docs/manual/factories.xml:
3655         * docs/manual/gnome.xml:
3656         * docs/manual/goals.xml:
3657         * docs/manual/helloworld.xml:
3658         * docs/manual/helloworld2.xml:
3659         * docs/manual/highlevel-components.xml:
3660         * docs/manual/highlevel-xml.xml:
3661         * docs/manual/init-api.xml:
3662         * docs/manual/intro-motivation.xml:
3663         * docs/manual/intro-preface.xml:
3664         * docs/manual/intro.xml:
3665         * docs/manual/links-api.xml:
3666         * docs/manual/links.xml:
3667         * docs/manual/manual.xml:
3668         * docs/manual/motivation.xml:
3669         * docs/manual/pads-api.xml:
3670         * docs/manual/pads.xml:
3671         * docs/manual/plugins-api.xml:
3672         * docs/manual/plugins.xml:
3673         * docs/manual/programs.xml:
3674         * docs/manual/queues.xml:
3675         * docs/manual/quotes.xml:
3676         * docs/manual/schedulers.xml:
3677         * docs/manual/states-api.xml:
3678         * docs/manual/states.xml:
3679         * docs/manual/threads.xml:
3680         * docs/manual/typedetection.xml:
3681         * docs/manual/win32.xml:
3682         * docs/manual/xml.xml:
3683           First try at rewriting the ADM. Needs lotsamore work, but some
3684           parts might already be somewhat useful.
3685         * docs/pwg/advanced-interfaces.xml:
3686           Remove properties interface, it never actually existed (except for
3687           on my HD...).
3688
3689 2004-12-13  David Schleef  <ds@schleef.org>
3690
3691         * gst/gstpad.c: (gst_pad_set_explicit_caps): Allow caps to
3692         be NULL (bug #160220).
3693
3694 2004-12-13  David Schleef  <ds@schleef.org>
3695
3696         * configure.ac: remove all mmx stuff, because it's not used.
3697         * docs/random/ds/0.9-suggested-changes: additional notes
3698         * include/Makefile.am: we don't use these anymore
3699         * include/mmx.h: remove
3700         * include/sse.h: remove
3701
3702 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
3703
3704         * docs/random/mimetypes:
3705           Add FOURCC code for h264 codec (VSSH)
3706           Add alternate FOURCC codes for h263 related codecs
3707
3708 2004-12-10  Stefan Kost  <ensonic@users.sf.net>
3709
3710         * docs/manual/programs.xml:
3711           Added more gst-launch examples.
3712
3713 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3714
3715         * gst/gstqueue.c: (gst_queue_handle_src_query):
3716           Check for availability again.
3717
3718 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3719
3720         * gst/gstcaps.c: (gst_caps_compare_structures):
3721           Simple caps go first. This has the nice side-effect of fixing an
3722           obscure warning.
3723
3724 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3725
3726         * gst/gstversion.h.in:
3727           Protect header.
3728
3729 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3730
3731         * gst/schedulers/gstoptimalscheduler.c:
3732         (gst_opt_scheduler_schedule_run_queue), (schedule_chain),
3733         (gst_opt_scheduler_get_wrapper):
3734           When we're recursing into a chain run, only run the directly
3735           related group, not all queued ones. This will fix a possible
3736           deadlock in chains with more than two groups.
3737
3738 2004-12-08  Thomas Vander Stichele  <thomas at apestaart dot org>
3739
3740         * autogen.sh:
3741           remove patch if autopoint fails
3742
3743 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3744
3745         * docs/gst/gstreamer-sections.txt:
3746           Document Thomas' addition, fix build, make Luis the sheriff happy.
3747
3748 2004-12-07  Thomas Vander Stichele  <thomas at apestaart dot org>
3749
3750         * gst/gstplugin.c:
3751         * gst/gstplugin.h:
3752           add accessor for version field
3753
3754 2004-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
3755
3756         submitted by: Luca Ferretti <elle.uca@infinito.it>
3757
3758         * po/LINGUAS:
3759         * po/it.po:
3760           New tranlation added: Italian
3761
3762 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3763
3764         * gst/gstpad.c: (gst_pad_is_negotiated),
3765         (gst_pad_get_negotiated_caps):
3766           GST_RPAD_* will only operate on a RealPad (it casts the pointer,
3767           it doesn't actually check the contents), so be sure to hand it
3768           a RealPad else we'll crash.
3769
3770 2004-12-03  Wim Taymans  <wim@fluendo.com>
3771
3772         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
3773         (gst_queue_link), (gst_queue_handle_src_query):
3774         Reverted to 1.110 until this makes the testsuite and various
3775         apps work.
3776
3777 2004-12-01  Christian Fredrik Kalager Schaller <christian@fluendo.com>
3778
3779         * docs/upload.mak: fix included CVS conflict strings
3780
3781 2004-12-01  William Jon McCann  <mccann@jhu.edu>
3782
3783         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3784
3785         * gst/gstelement.c: (gst_element_error_full):
3786           Use g_error_new_literal because error text may have
3787           percentage signs in it. Fixes #160019.
3788
3789 2004-12-01  Benjamin Otte  <otte@gnome.org>
3790
3791         * gst/elements/gstbufferstore.c:
3792         (gst_buffer_store_add_buffer_func):
3793           don't try to make subbuffers bigger than they can be. (fixes
3794           #159970)
3795
3796 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3797
3798         * docs/gst/gstreamer-sections.txt:
3799         * docs/gst/tmpl/gstvalue.sgml:
3800           Add new function to docs to fix build.
3801
3802 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3803
3804         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
3805         * gst/gstpad.c: (_gst_pad_default_fixate_value),
3806         (_gst_pad_default_fixate_foreach):
3807         * gst/gstvalue.c: (gst_type_is_fixed), (gst_value_is_fixed):
3808         * gst/gstvalue.h:
3809           Deprecate _type_is_fixed, use _value_is_fixed instead, since
3810           in some cases (arrays), the fixedness depends on the content.
3811         * gst/gstqueue.c: (gst_queue_handle_src_query):
3812           Check for availability before doing something.
3813
3814 2004-11-29  Wim Taymans  <wim@fluendo.com>
3815
3816         * testsuite/threads/Makefile.am:
3817         * testsuite/threads/signals.c: (gst_test_get_type),
3818         (gst_test_class_init), (gst_test_init), (gst_test_dispose),
3819         (gst_test_set_property), (gst_test_get_property),
3820         (gst_test_do_signal1), (signal2_handler), (gst_test_do_signal2),
3821         (gst_test_do_prop), (run_thread), (main):
3822         Added a bunch of testcases that show threadsafety bugs in glib.
3823
3824 2004-11-29  Stefan Kost  <ensonic@users.sf.net>
3825
3826         * docs/manual/programs.xml:
3827           Added a first batch of gst-launch examples, as provided by Ronald
3828           and others from the devel-mlist
3829
3830 2004-11-28  Benjamin Otte  <otte@gnome.org>
3831
3832         * gst/gstelement.c: (gst_element_negotiate_pads):
3833           simplify
3834         * gst/gstvalue.c: (gst_string_wrap), (gst_string_unwrap),
3835         (gst_value_serialize_string), (gst_value_deserialize_string):
3836           add unwrapping of previously wrapped strings. Fix bug in wrapping
3837           while at it.
3838         * testsuite/caps/value_serialize.c: (test1),
3839         (test_string_serialization), (test_string_deserialization), (main):
3840           add tests for string (de)serialization
3841
3842 2004-11-26  Wim Taymans  <wim@fluendo.com>
3843
3844         * testsuite/threads/159566.c: (object_deep_notify), (main):
3845         * testsuite/threads/Makefile.am:
3846         Added testsuite to show bug #159566
3847
3848 2004-11-25  Wim Taymans  <wim@fluendo.com>
3849
3850         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_change_state),
3851         (gst_thread_child_state_change), (gst_thread_main_loop):
3852         Ref the thread object in the GThread mainloop. Break out of the
3853         thread mainloop if it holds the last ref. This properly exits
3854         the threads when disposing the thread from its own context. It
3855         also avoids possible deadlocks in the dispose function.
3856
3857 2004-11-24  Martin Soto  <martinsoto@users.sourceforge.net>
3858
3859         * gst/gstqueue.c (gst_queue_link_sink): Grab the lock only when
3860         it is necessary to wait.
3861
3862 2004-11-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3863
3864         * docs/pwg/building-boiler.xml:
3865           Make description somewhat clearer.
3866
3867 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3868
3869         * docs/upload.mak:
3870           Apparently docs changed location on FDO's server.
3871
3872 2004-11-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3873
3874         * docs/pwg/appendix-checklist.xml:
3875           Add some random notes on things to check when writing an element.
3876           This list can be extended as people see fit.
3877
3878 2004-11-23  Martin Soto  <martinsoto@users.sourceforge.net>
3879
3880         * gst/gstqueue.c (gst_queue_init, gst_queue_link_sink)
3881         (gst_queue_link_src): Allow for renegotiating the caps of the sink
3882         pad. The queue will now wait until it is empty and forward the new
3883         caps to the source.
3884         * gst/gstbin.c (gst_bin_set_element_sched)
3885         (gst_bin_unset_element_sched): Make sure that all elements and
3886         links are registered and unregistered with the scheduler exactly
3887         once. This elaborates on a fix by Benjamin Otte, but
3888         guarantees that decoupled elements are also registered.
3889
3890 2004-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3891
3892         * docs/manual/quotes.xml:
3893           add a quote
3894         * configure.ac:
3895         * gst/gst.c:
3896         * gst/gstinfo.c:
3897           add LIBDIR and move init message higher up so it's at the start
3898
3899 2004-11-08  Christian Fredrik Kalager Schaller  <christian@fluendo.com>
3900
3901         * gst/schedulers/Makefile.am: fix disted build fair by including .h file
3902         * gstreamer.spec.in: add fair
3903
3904 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3905
3906         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3907         * gst/elements/gstidentity.c: (gst_identity_class_init):
3908           Use G_SIGNAL_TYPE_STATIC_SCOPE, patch by Christophe Fergeau
3909           <teuf@gnome.org> (#157263).
3910         * gst/elements/gsttypefindelement.c: (gst_type_find_element_init),
3911         (gst_type_find_handle_src_query):
3912           Subtract size of internally stored data from position queries.
3913
3914 2004-11-07  Martin Soto  <martinsoto@users.sourceforge.net>
3915
3916         * gst/schedulers/fairscheduler.c:
3917         * gst/schedulers/faircothreads.c:
3918         * gst/schedulers/faircothreads.h:
3919         New cothread based scheduler: Fair scheduler.
3920         * gst/schedulers/gthread-cothreads.h: 
3921         Add the standard #if around the whole file.
3922         Defining symbol GTHREAD_COTHREADS_NO_DEFINITIONS will now prevent
3923         compilation of the functions defined in this file. This is
3924         necessary to be able to use this file as a normal header.
3925         * gst/schedulers/Makefile.am: Add compiling support for fair
3926         scheduler.
3927         * docs/gst/Makefile.am (IGNORE_HFILES): Exclude internal fair
3928         scheduler cothreads layer from documentation generation.
3929
3930 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3931
3932         * gst/autoplug/gstspideridentity.c:
3933         (gst_spider_identity_sink_loop_type_finding):
3934           Don't crash if that function is not implemented.
3935
3936 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3937
3938         * docs/pwg/advanced-types.xml:
3939           Another typo.
3940
3941 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3942
3943         * docs/pwg/intro-preface.xml:
3944           Hm, ok, so the brackets weren't really useful...
3945         * docs/pwg/other-ntoone.xml:
3946           Fix embarassing typo.
3947
3948 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3949
3950         * docs/pwg/intro-preface.xml:
3951           Rewrite preface.
3952
3953 2004-11-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
3954
3955         * docs/pwg/advanced-scheduling.xml:
3956         * docs/pwg/advanced-tagging.xml:
3957         * docs/pwg/advanced-types.xml:
3958         * docs/pwg/building-boiler.xml:
3959         * docs/pwg/building-chainfn.xml:
3960         * docs/pwg/building-signals.xml:
3961         * docs/pwg/building-state.xml:
3962         * docs/pwg/building-testapp.xml:
3963         * docs/pwg/intro-basics.xml:
3964         * docs/pwg/other-manager.xml:
3965         * docs/pwg/other-source.xml:
3966           Typo fixes.
3967         * docs/pwg/other-manager.xml:
3968           Add some first content. No example code yet.
3969         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
3970           Remove double newlines.
3971
3972 2004-11-04  Wim Taymans  <wim@fluendo.com>
3973
3974         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
3975         (remove_from_group), (normalize_group), (group_migrate_connected),
3976         (gst_opt_scheduler_iterate):
3977         * testsuite/schedulers/.cvsignore:
3978         * testsuite/schedulers/Makefile.am:
3979         * testsuite/schedulers/queue_link.c: (main):
3980         Added testcase for scheduler segfault.
3981         Fix scheduler segfault when removing a decoupled
3982         entry point as the last element from a group.
3983
3984 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3985
3986         * gst/gstmarshal.list: add missing marshaller, fixes build
3987
3988 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3989
3990         * docs/random/signal: added notes about using BOXED for GstBuffer
3991         signal marshallers, not POINTER
3992
3993 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
3994
3995         * gst/elements/gstfakesink.c: (gst_fakesink_class_init):
3996         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init): more
3997         POINTER=>BOXED changes to marshal GstBuffers
3998
3999 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
4000
4001         * gst/elements/gstidentity.c: (gst_identity_class_init): GstBuffer is 
4002         a boxed type, marshal the signal with VOID__BOXED, not VOID__POINTER
4003
4004 2004-11-03  Stefan Kost  <ensonic@users.sf.net>
4005
4006         * docs/gst/gstreamer-sections.txt:
4007         * docs/gst/tmpl/gstcaps.sgml:
4008         * docs/gst/tmpl/gsterror.sgml:
4009         * docs/gst/tmpl/gstinfo.sgml:
4010         * docs/gst/tmpl/gstmacros.sgml:
4011         * docs/gst/tmpl/gstutils.sgml:
4012         * docs/random/ensonic/interfaces.txt:
4013         * gst/gstinfo.h:
4014           added some more docs, removed two obsolete defines
4015
4016 2004-11-02  Kjartan Maraas <as at gnome.org>
4017
4018         reviewed by: Wim Taymans, Ronald Bultje.
4019
4020         * gst/cothreads.c: (cothread_create):
4021         * gst/gstbin.c: (gst_bin_add_func), (gst_bin_remove_func),
4022         (gst_bin_child_state_change_func):
4023         * gst/gstbuffer.c: (gst_buffer_span):
4024         * gst/gstelement.c: (gst_element_get_index),
4025         (gst_element_get_event_masks), (gst_element_get_query_types),
4026         (gst_element_get_formats):
4027         * gst/gsterror.c: (_gst_core_errors_init),
4028         (_gst_library_errors_init), (_gst_resource_errors_init),
4029         (_gst_stream_errors_init):
4030         * gst/gstobject.c: (gst_object_default_deep_notify):
4031         * gst/gstpad.c: (gst_pad_get_event_masks),
4032         (gst_pad_get_internal_links_default):
4033         * gst/gstplugin.c: (gst_plugin_register_func),
4034         (gst_plugin_get_module):
4035         * gst/gststructure.c: (gst_structure_get_string),
4036         (gst_structure_get_abbrs), (gst_structure_from_abbr),
4037         (gst_structure_to_abbr):
4038         * gst/gstutils.c: (gst_print_element_args):
4039         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
4040         (setup_group_scheduler), (gst_opt_scheduler_iterate):
4041         Aplied part of patch #157127: Cleanup of issues reported by 
4042         sparse.
4043         Also do not try to use cothreads when there is no cothread
4044         context yet.
4045
4046 2004-11-02  Sebastien Cote <sc5 at hermes.usherb.ca>
4047
4048         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
4049         (gst_opt_scheduler_iterate):
4050         Applied patch #154061. Running a pipeline in which an element 
4051         calls GST_ELEMENT_ERROR in the chain function, the opt 
4052         scheduler doesn't unref the chain so it never gets freed.
4053
4054 2004-11-02  Wim Taymans  <wim@fluendo.com>
4055
4056         * gst/gststructure.c: (gst_structure_get_abbrs),
4057         (gst_structure_from_abbr), (gst_structure_to_abbr):
4058         Remove that ugly if-then thing in the code that converts
4059         between strings and types.
4060
4061 2004-11-02  Wim Taymans  <wim@fluendo.com>
4062
4063         * gst/gstscheduler.c: (gst_scheduler_add_element),
4064         (gst_scheduler_remove_element), (gst_scheduler_state_transition):
4065         Aplied clock distribution patch, this should fix bug
4066         #148787.
4067
4068 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
4069
4070         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
4071
4072         * po/LINGUAS:
4073         * po/nb.po:
4074           Added Norwegian Bokmaal translation
4075
4076 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4077
4078         * tools/gst-inspect.c: (print_signal_info):
4079           print signal arguments as pointers if they are
4080
4081 2004-10-22  Stefan Kost  <ensonic@users.sf.net>
4082
4083         * docs/pwg/building-boiler.xml:
4084           exchanged GTK_ macros with G_TYPE macros (as pointed out by mathrick)
4085
4086 2004-10-19  Wim Taymans  <wim at fluendo dot com>
4087
4088         * gst/parse/parse.l:
4089         * testsuite/parse/parse1.c: (main):
4090         Since parse can do 'element name=a:b' make 'a:b.' work as
4091         well. 
4092         Added testcase to verify fix.
4093
4094 2004-10-19  Wim Taymans  <wim at fluendo dot com>
4095
4096         * tools/gst-inspect.c: (print_pad_info), (print_plugin_features):
4097         Use the realpad when printing the direction.
4098         Add extra \n when printing extensions of typefind factories.
4099
4100 2004-10-13  David Schleef  <ds@schleef.org>
4101
4102         * examples/manual/Makefile.am: $< isn't portable in Makefile
4103         rules.
4104
4105 2004-10-13  Stefan Kost  <ensonic@users.sf.net>
4106
4107         * docs/gst/tmpl/gstobject.sgml:
4108         * docs/gst/tmpl/gstplugin.sgml:
4109         * docs/gst/tmpl/gstpluginfeature.sgml:
4110         * docs/gst/tmpl/gstregistry.sgml:
4111         * docs/gst/tmpl/gstversion.sgml:
4112         * gst/gstbin.c:
4113           more api documentation
4114         * gst/gstplugin.c: (gst_plugin_register_func),
4115         (gst_plugin_check_file), (gst_plugin_load_file):
4116           better error signaling and logging
4117
4118 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
4119
4120         * gst/gstqueue.c: (gst_queue_init), (gst_queue_handle_src_query):
4121           Subtract current queue contents from position queries.
4122
4123 2004-10-11  Johan Dahlin  <johan@gnome.org>
4124
4125         * gst/gsturi.c (gst_uri_get_location): unescape string
4126         (gst_uri_construct): escape string.
4127
4128 2004-10-11  Benjamin Otte  <otte@gnome.org>
4129
4130         * gst/gstpad.c: (gst_pad_renegotiate), (gst_pad_try_set_caps),
4131         (gst_pad_try_set_caps_nonfixed):
4132           allow renegotiation of unconnected pads (as inside spider). Simply
4133           return OK if unconnected - mimic try_set_caps there.
4134
4135 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
4136
4137         * gst/gstbin.c: (gst_bin_sync_children_state):
4138           Add missing break.
4139
4140 2004-10-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4141
4142         * gst/elements/gstfakesrc.c: (gst_fakesrc_get):
4143         Set element to EOS before sending EOS event
4144
4145 2004-10-08  Wim Taymans  <wim at fluendo dot com>
4146
4147         * gst/elements/gsttypefindelement.c:
4148         (gst_type_find_element_handle_event):
4149         Handle EOS events when doing the transition from
4150         typefind to data passing. This should fix the
4151         infinite loops in short files.
4152
4153 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4154
4155         * gst/gstthread.c: (gst_thread_change_state),
4156         (gst_thread_child_state_change):
4157         Make sure no iteration happens while performing
4158         the state change as it could mess up the internal
4159         consistency of the thread state.
4160
4161 2004-10-07  Wim Taymans  <wim at fluendo dot com>
4162
4163         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_sync),
4164         (gst_thread_change_state), (gst_thread_child_state_change):
4165         Do not try to grab the iterate lock in the state change method
4166         when we are in the same thread as the iterate or else we
4167         could deadlock. Some other cleanups.
4168
4169 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4170
4171         * configure.ac:
4172           bump nano to cvs
4173
4174 === release 0.8.7 ===
4175
4176 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4177
4178         * configure.ac:
4179         * NEWS:
4180         * RELEASE:
4181         * configure.ac:
4182           releasing 0.8.7, "A Cruise"
4183
4184 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
4185
4186         * docs/random/mimetypes:
4187         Add an entry for Sony ATRAC3 audio format with mime-type
4188         used by rmdemux et riff-read
4189
4190 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4191
4192         * gst/elements/gsttypefindelement.c: (stop_typefinding):
4193         Push the buffer store instead of clearing it in case that
4194         the stream is not seekable.
4195
4196 2004-10-06  Wim Taymans  <wim at fluendo dot com>
4197
4198         * gst/gstthread.c: (gst_thread_init), (gst_thread_change_state),
4199         (gst_thread_main_loop):
4200         Lock the iteration and the state change so that automatic
4201         negotiation and fixation does not happen at the same time
4202         as the in stream negotiation.
4203
4204 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4205
4206         * configure.ac:
4207           bump nano to cvs
4208
4209 === release 0.8.6 ===
4210
4211 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4212
4213         * configure.ac:
4214         * NEWS:
4215         * RELEASE:
4216         * configure.ac:
4217           releasing 0.8.6, "Narc"
4218
4219 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4220
4221         * configure.ac:
4222           prerel bump
4223
4224 2004-10-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4225
4226         patch by: Steve Lhomme
4227
4228         * gst/elements/gstfakesrc.c:
4229         * gst/elements/gstidentity.c:
4230         * gst/gstthread.c:
4231           Fix for #153881
4232
4233 2004-10-01  Wim Taymans  <wim at fluendo dot com>
4234
4235         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc):
4236         Fix threadsafety of the crc checking function.
4237
4238 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4239
4240         patch by: Ronald Bultje
4241
4242         * gst/elements/gsttypefindelement.c: (stop_typefinding),
4243         (gst_type_find_element_handle_event),
4244         (gst_type_find_element_chain):
4245         * gst/elements/gsttypefindelement.h:
4246          #153657.
4247          Filter out discont event from seekable sources when typefind
4248          asks them to seek.  Fixes typefind with demuxers for
4249          avi, asf and matroska.
4250
4251 2004-09-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4252
4253         * docs/gst/gstreamer-sections.txt:
4254         * gst/gstcaps.c:
4255         * gst/gstcaps.h:
4256         * gst/gstpad.c:
4257           Revert preferred caps: (#147789)
4258
4259 2004-09-19  Steve Lhomme  <steve.lhomme@free.fr>
4260
4261         * win32/dirent.c:
4262           fix a memory leak
4263
4264 2004-09-10  Thomas Vander Stichele  <thomas at apestaart dot org>
4265
4266         * configure.ac:
4267           bump for prerelease
4268
4269 2004-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4270
4271         * docs/Makefile.am:
4272         * docs/manual/elements-api.xml:
4273           restructure so that common stuff is shown first
4274         * docs/manual/init-api.xml:
4275           convert to examples
4276         * docs/manual/manual.xml:
4277         * docs/manuals.mak:
4278         * docs/url.entities:
4279           link to API on the website, possibly override later in build
4280         * examples/manual/.cvsignore:
4281           ignore more
4282         * examples/manual/Makefile.am:
4283           add more examples
4284         * examples/manual/extract.pl:
4285           error out on failure
4286
4287 2004-09-08  Thomas Vander Stichele  <thomas at apestaart dot org>
4288
4289         * docs/gst/tmpl/gstthread.sgml:
4290         * docs/manual/init-api.xml:
4291         * examples/manual/Makefile.am:
4292           convert two code bits to examples
4293
4294 2004-09-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
4295
4296         * gst/gstelement.c: (gst_element_change_state):
4297           Well, actually, I was about to remove this insane assert when
4298           I noticed Wim already did that. A warning is nice so we can
4299           fix actual ugs (using --g-fatal-warnings and backtraces), so
4300           I added that instead.
4301
4302 2004-09-06  Wim Taymans  <wim@fluendo.com>
4303
4304         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
4305         (gst_element_threadsafe_properties_post_run),
4306         (gst_element_set_state), (gst_element_change_state):
4307         Added extra refcounting around various places. 
4308
4309 2004-09-06  Wim Taymans  <wim@fluendo.com>
4310
4311         * gst/gstpad.c: (gst_pad_link_call_link_functions):
4312         Fix debug info.
4313
4314 2004-09-06  Wim Taymans  <wim@fluendo.com>
4315
4316         * gst/schedulers/gstoptimalscheduler.c: (add_to_group),
4317         (remove_from_group):
4318         Some more debug info.
4319
4320 2004-09-03  Wim Taymans  <wim@fluendo.com>
4321
4322         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init),
4323         (gst_fakesrc_init), (gst_fakesrc_set_clock),
4324         (gst_fakesrc_set_property), (gst_fakesrc_get_property),
4325         (gst_fakesrc_get), (gst_fakesrc_change_state):
4326         * gst/elements/gstfakesrc.h:
4327         * gst/elements/gstidentity.c: (gst_identity_class_init),
4328         (gst_identity_init), (gst_identity_chain),
4329         (gst_identity_set_property), (gst_identity_get_property),
4330         (gst_identity_change_state):
4331         * gst/elements/gstidentity.h:
4332         Added datarate properties to limit the datarate.
4333
4334 2004-08-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4335
4336         * gst/autoplug/gstspider.c: (plugin_init):
4337           don't set a rank. We don't want to autoplug by inserting spiders.
4338
4339 2004-08-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4340
4341         * gst/autoplug/gstspider.c: (gst_spider_class_init),
4342         (gst_spider_identity_plug):
4343           add a template for spider's sink
4344         * gst/gst.c: (gst_register_core_elements):
4345           queue's rank should be NULL, we don't want spider to add it.
4346
4347 2004-08-18  David Schleef  <ds@schleef.org>
4348
4349         * docs/gst/Makefile.am: Remove --ignore-fail-on-non-empty (#150331)
4350         * docs/libs/Makefile.am: same
4351         * docs/gst/tmpl/gstxml.sgml: Remove GstXMLNs
4352         * docs/random/ds/0.9-planning: random additions
4353         * docs/random/ds/0.9-suggested-changes: same
4354         * gst/gstxml.h: remove vestigal GstXMLNs definition
4355
4356         Preferred caps: (#147789)
4357         * docs/gst/gstreamer-sections.txt: Add symbols
4358         * docs/gst/tmpl/gstcaps.sgml: Add symbols
4359         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
4360         (gst_caps_append), (gst_caps_copy_1), (gst_caps_intersect),
4361         (gst_caps_union), (gst_caps_save_thyself), (gst_caps_load_thyself),
4362         (gst_caps_get_preferred), (gst_caps_set_preferred),
4363         (gst_caps_get_structure_by_id), (gst_caps_prefer_foreach),
4364         (gst_caps_use_preferred): Handle caps preferences
4365         * gst/gstcaps.h: Add caps preferences
4366         * gst/gstpad.c: (gst_pad_link_get_preferred),
4367         (gst_pad_link_fixate), (gst_pad_link_call_link_functions),
4368         (gst_pad_renegotiate), (gst_pad_guess_preferred),
4369         (gst_pad_get_caps), (gst_pad_push):  Use caps preferences for
4370         negotiation.
4371
4372 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4373
4374         * gst/autoplug/gstspideridentity.c:
4375         (gst_spider_identity_request_new_pad):
4376         * gst/elements/gstaggregator.c: (gst_aggregator_base_init),
4377         (gst_aggregator_init):
4378         * gst/elements/gstfakesink.c: (gst_fakesink_base_init),
4379         (gst_fakesink_init):
4380         * gst/elements/gstfakesrc.c: (gst_fakesrc_base_init),
4381         (gst_fakesrc_init):
4382         * gst/elements/gstfdsink.c: (gst_fdsink_base_init),
4383         (gst_fdsink_init):
4384         * gst/elements/gstfdsrc.c: (gst_fdsrc_base_init), (gst_fdsrc_init):
4385         * gst/elements/gstfilesink.c: (gst_filesink_base_init),
4386         (gst_filesink_init):
4387         * gst/elements/gstfilesrc.c: (gst_filesrc_base_init),
4388         (gst_filesrc_init):
4389         * gst/elements/gstidentity.c: (gst_identity_base_init),
4390         (gst_identity_init):
4391         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
4392         (gst_multifilesrc_init):
4393         * gst/elements/gstpipefilter.c: (gst_pipefilter_base_init),
4394         (gst_pipefilter_init):
4395         * gst/elements/gststatistics.c: (gst_statistics_base_init),
4396         (gst_statistics_init):
4397         * gst/elements/gsttee.c: (gst_tee_base_init), (gst_tee_init):
4398         * gst/gstqueue.c: (gst_queue_base_init), (gst_queue_init):
4399           s/gst_pad_new/&_from_template/
4400           register pad templates in the base_init function
4401           add static pad template definitions
4402
4403 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4404
4405         * testsuite/bytestream/gstbstest.c: (gst_bstest_init):
4406         * testsuite/dynparams/dparamstest.c: (gst_dptest_init):
4407         * testsuite/refcounting/pad.c: (main):
4408         * testsuite/refcounting/thread.c: (create_thread_ghostpads):
4409           s/gst_pad_new/&_from_template/
4410           prepare deprecation of gst_pad_new
4411
4412 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
4413
4414         patch by: Luca Ognibene <skaboy81@virgilio.it>
4415
4416         * gst/gstcaps.c:
4417         * gst/gstelement.c:
4418         * gst/gstpad.c:
4419         * gst/gstxml.c:
4420           fix memleaks.  Fixes #150001
4421
4422 2004-08-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4423
4424         * docs/random/ds/0.9-suggested-changes:
4425           add notes - mostly about pad templates
4426
4427 2004-08-16  Steve Lhomme  <steve.lhomme@free.fr>
4428
4429         * win32/GStreamer.vcproj:
4430           temporary locale files are .gmo not .mo
4431
4432 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4433
4434         * configure.ac: bump nano to cvs
4435
4436 === release 0.8.5 ===
4437
4438 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4439
4440         * configure.ac:
4441           releasing 0.8.5, "Stuttgart"
4442         * NEWS:
4443         * RELEASE:
4444         * configure.ac:
4445         * docs/random/release:
4446           updates for release
4447
4448 2004-08-16  Thomas Vander Stichele  <thomas at apestaart dot org>
4449
4450         patch by: Wim Taymans (wim@fluendo.com)
4451
4452         * gst/gstbuffer.c:
4453         * gst/gstindex.h:
4454         * libs/gst/dataprotocol/dataprotocol.c:
4455           copy KEY_UNIT and DELTA_UNIT flags correctly.  Fixes #150242
4456
4457 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4458
4459         * Makefile.am:
4460         * win32/MANIFEST:
4461           add win32 dir to the build.  Fixes #149981.
4462
4463 2004-08-13  Thomas Vander Stichele  <thomas at apestaart dot org>
4464
4465         * configure.ac:
4466           bump libtool versioning
4467         * gst/gststructure.c:
4468           mark function as static
4469         * po/af.po:
4470         * po/az.po:
4471         * po/ca.po:
4472         * po/cs.po:
4473         * po/en_GB.po:
4474         * po/fr.po:
4475         * po/nl.po:
4476         * po/sq.po:
4477         * po/sr.po:
4478         * po/sv.po:
4479         * po/tr.po:
4480         * po/uk.po:
4481           translations update
4482         * win32/README.txt:
4483           trademark protection
4484
4485 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4486
4487         * configure.ac:
4488           fix GST_ORIGIN
4489           set GST_PACKAGE to source, and distinguish between release and other
4490         * tools/gst-inspect.c:
4491           print out plugin an element factory is part of so we see this info
4492
4493 2004-08-12  Thomas Vander Stichele  <thomas at apestaart dot org>
4494
4495         * docs/gst/gstreamer-sections.txt:
4496         * docs/gst/tmpl/gstbuffer.sgml:
4497         * docs/gst/tmpl/gstschedulerfactory.sgml:
4498           reorder docs a little, make GstBuffer's more sensible.
4499         * gst/gstbuffer.h:
4500           API: added GST_BUFFER_FLAG_DELTA_UNIT
4501         * gst/gstscheduler.c:
4502           comment API addition
4503
4504 2004-08-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
4505
4506         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
4507           work with non-regular files that can be mmapped (like /dev/zero)
4508         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
4509           get rid of typefinds that require a seek when we can't seek instead
4510           of trying them over and over again
4511         * tools/gst-launch.c: (idle_func), (error_cb), (main):
4512           return non-zero failure value when the pipeline was interrupted or
4513           an error occurred
4514
4515 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4516
4517         * win32/config.h:
4518         * win32/GStreamer.vcproj:
4519           compile and install the locales
4520
4521 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4522
4523         * gst/gstvalue.c:
4524           fix a possible memory leak under Windows
4525
4526 2004-08-11  Steve Lhomme  <steve.lhomme@free.fr>
4527
4528         * win32/GStreamer.vcproj:
4529           fix a memory leak that occured under Windows
4530         * win32/gstreamer.def:
4531           add gst_scheduler_register
4532
4533 2004-08-11  Benjamin Otte  <otte@gnome.org>
4534
4535         * docs/gst/gstreamer-sections.txt:
4536         * gst/gstscheduler.c: (gst_scheduler_register):
4537         * gst/gstscheduler.h:
4538           API:
4539           add gst_scheduler_register shortcut similar to gst_element_register
4540         * gst/schedulers/entryscheduler.c: (plugin_init):
4541         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
4542         * gst/schedulers/gstoptimalscheduler.c: (plugin_init):
4543           use it
4544
4545 2004-08-10  Steve Lhomme  <steve.lhomme@free.fr>
4546
4547         * gst/gstvalue.h:
4548           fix a memory leak that occured under Windows
4549
4550 2004-08-10  Colin Walters  <walters@redhat.com>
4551
4552         * gst/registries/gstxmlregistry.c (gst_xml_registry_open_func):
4553         Don't use O_EXCL to open temporary registry.  It will prevent
4554         registry creation if a temporary one already exists, which
4555         is unnecessary.
4556
4557 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4558
4559         * docs/gst/gstreamer-sections.txt:
4560         * docs/gst/tmpl/gstvalue.sgml:
4561           remove some valuable stuff from the documentation due to the use of GST_EXPORT
4562
4563 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4564
4565         * win32/gstbytestream.vcproj:
4566         * win32/gstelements.vcproj:
4567         * win32/gstgetbits.vcproj:
4568         * win32/gst-inspect.vcproj:
4569         * win32/gst-launch.vcproj:
4570         * win32/gstoptimalscheduler.vcproj:
4571         * win32/GStreamer.vcproj:
4572         * win32/gst-register.vcproj:
4573         * win32/gstspider.vcproj:
4574           update the include and lib dirs to fit standard libraries as
4575           described in the Win32 manual
4576
4577 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4578
4579         * win32/config.h:
4580         * win32/gstversion.h:
4581           enable NLS again, push the version number for the coming 0.8.5 release
4582
4583 2004-08-09  Steve Lhomme  <steve.lhomme@free.fr>
4584
4585         * gst/gstvalue.h:
4586           export gst_type_XXX for windows DLLs
4587
4588 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
4589
4590         * docs/faq/gst-uninstalled:
4591           fix PKG_CONFIG_PATH and PYTHONPATH
4592         * gst/schedulers/Makefile.am:
4593           cleanup
4594         * libs/gst/bytestream/bytestream.c:
4595           remove newline
4596         * po/LINGUAS:
4597         * po/sq.po:
4598           adding Albanian translation (Laurent Dhima)
4599         * po/cs.po:
4600           updated
4601
4602 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
4603
4604         * po/ca.po:
4605         * po/sv.po:
4606           updated translations
4607
4608 2004-08-04  Benjamin Otte  <otte@gnome.org>
4609
4610         * tests/mass_elements.c: (main):
4611           allow specifying src and sink element explicitly, so I can test
4612           videotestsrc instead of fakesrc
4613
4614 2004-08-04  Benjamin Otte  <otte@gnome.org>
4615
4616         * gst/gststructure.c: (gst_structure_id_empty_new_with_size),
4617         (gst_structure_id_empty_new), (gst_structure_empty_new),
4618         (gst_structure_copy):
4619           add gst_structure_id_empty_new_with_size to allow preallocating
4620           value array sizes. Use this in gst_structure_copy to get rid of
4621           reallocs.
4622           don't do quark=>string=>quark when copying structures
4623
4624 2004-08-03  Steve Lhomme  <steve.lhomme@free.fr>
4625
4626         * docs/manual/win32.xml:
4627         * win32/README.txt:
4628           update documentation with the clean version of dependencies
4629
4630 2004-08-03  Benjamin Otte  <otte@gnome.org>
4631
4632         * gst/schedulers/entryscheduler.c:
4633         (gst_entry_scheduler_remove_element):
4634           fix for GST_DISABLE_DEBUG
4635         * tools/gst-launch.c: (print_tag):
4636           fixes for G_DISABLE_ASSERT
4637
4638 2004-08-03  Benjamin Otte  <otte@gnome.org>
4639
4640         * gst/gst.c: (gst_register_core_elements):
4641           fix for G_DISABLE_ASSERT
4642         * gst/gstinfo.c: (__gst_in_valgrind):
4643           add for GST_DISABLE_DEBUG
4644
4645 2004-08-03  Benjamin Otte  <otte@gnome.org>
4646
4647         * gst/parse/parse.l:
4648           fix for G_DISABLE_ASSERT
4649
4650 2004-08-03  Wim Taymans  <wim@fluendo.com>
4651
4652         * gst/gstbin.c: (gst_bin_get_type),
4653         (gst_bin_child_state_change_func):
4654         * gst/gstthread.c: (gst_thread_change_state):
4655         Backported some debug logging from a reverted patch
4656         Don't try to destroy the thread twice. Added some more
4657         debugging in GstThread. Unlock and signal even if we
4658         are in the thread context.
4659
4660 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
4661
4662         * po/uk.po:
4663           updated translation
4664
4665 2004-07-30  David Schleef  <ds@schleef.org>
4666
4667         * gst/gstatomic_impl.h: Enable atomic code for x86_64
4668
4669 2004-07-29  David Schleef  <ds@schleef.org>
4670
4671         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test):
4672         Use GST_READ_GUINTxx_BE(), since it accesses unaligned memory.
4673
4674 2004-07-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4675
4676         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
4677         (gst_bin_add_func), (gst_bin_remove_func),
4678         (gst_bin_child_state_change), (gst_bin_child_state_change_func),
4679         (set_kid_state_func), (gst_bin_change_state), (gst_bin_set_state),
4680         (gst_bin_change_state_norecurse), (gst_bin_dispose),
4681         (gst_bin_sync_children_state):
4682         * gst/gstbin.h:
4683         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_release),
4684         (gst_thread_change_state):
4685         * testsuite/states/Makefile.am:
4686           revert state change patches as agreed so we can rework them
4687           gradually
4688
4689 2004-07-29  Benjamin Otte  <otte@gnome.org>
4690
4691         * libs/gst/control/Makefile.am:
4692           link to libgstreamer (fixes Debian bug 262019, see
4693           http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=262019 )
4694
4695 2004-07-29  Wim Taymans  <wim@fluendo.com>
4696
4697         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4698         (check_from_fraction_convert), (transform_test), (main):
4699         Make the test less pedantic about float roundoff errors.
4700
4701 2004-07-29  Benjamin Otte  <otte@gnome.org>
4702
4703         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file),
4704         (gst_filesrc_srcpad_event):
4705           make seek events to before start/after end of file not fail, but
4706           seek to start/end instead
4707         * testsuite/caps/fraction-convert.c: (check_from_double_convert):
4708           add more output
4709
4710 2004-07-29  Benjamin Otte  <otte@gnome.org>
4711
4712         * gst/gstpad.c: (gst_pad_set_explicit_caps):
4713           check that caps are fixed
4714         * gst/gstpad.c: (gst_pad_template_new):
4715           don't try to simplify caps, costs too much time on gst_init
4716         * gst/gstplugin.c: (gst_plugin_add_feature):
4717           G_ERROR if features are added twice
4718         * gst/gsttypefind.c: (gst_type_find_register):
4719         * gst/gstelementfactory.c: (gst_element_register):
4720           don't add features twice
4721         * docs/random/ds/0.9-suggested-changes:
4722           add note about possible gst_init optimization
4723
4724 2004-07-28  David Schleef  <ds@schleef.org>
4725
4726         * testsuite/elements/Makefile.am:
4727         * testsuite/elements/struct_i386.h:
4728         * testsuite/elements/struct_size.c: (main):  A little test
4729         to keep distcheck from working if someone changes a structure
4730         size accidentally.
4731
4732 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4733
4734         * docs/libs/Makefile.am:
4735         * docs/libs/gstreamer-libs-docs.sgml:
4736         * docs/libs/gstreamer-libs-sections.txt:
4737         * docs/libs/tmpl/gstbytestream.sgml:
4738         * docs/libs/tmpl/gstcontrol.sgml:
4739         * docs/libs/tmpl/gstdataprotocol.sgml:
4740         * docs/libs/tmpl/gstgetbits.sgml:
4741         * libs/gst/bytestream/Makefile.am:
4742         * libs/gst/bytestream/bytestream.c:
4743         * libs/gst/bytestream/bytestream.h:
4744         * libs/gst/control/Makefile.am:
4745         * libs/gst/dataprotocol/Makefile.am:
4746         * libs/gst/getbits/Makefile.am:
4747         * libs/gst/getbits/getbits.h:
4748           various doc and style fixes, adding bytestream to libs docs.
4749
4750 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4751
4752         * docs/gst/gstreamer-docs.sgml:
4753         * docs/libs/Makefile.am:
4754         * docs/libs/gstreamer-libs-docs.sgml:
4755         * docs/libs/gstreamer-libs-sections.txt:
4756         * libs/gst/control/dparam.c:
4757           more doc fixes.  gst-libs docs now build the same way as gst.
4758
4759 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4760
4761         * configure.ac:
4762         * testsuite/Makefile.am:
4763         * testsuite/bins/Makefile.am:
4764         * testsuite/caps/Makefile.am:
4765         * testsuite/cleanup/Makefile.am:
4766         * testsuite/clock/Makefile.am:
4767         * testsuite/debug/Makefile.am:
4768         * testsuite/dlopen/Makefile.am:
4769         * testsuite/dynparams/Makefile.am:
4770         * testsuite/elements/.cvsignore:
4771         * testsuite/elements/Makefile.am:
4772         * testsuite/enumcaps/Makefile.am:
4773         * testsuite/enumcaps/enumcaps.c:
4774         * testsuite/ghostpads/Makefile.am:
4775         * testsuite/indexers/Makefile.am:
4776         * testsuite/negotiation/Makefile.am:
4777         * testsuite/parse/Makefile.am:
4778         * testsuite/plugin/Makefile.am:
4779         * testsuite/refcounting/Makefile.am:
4780         * testsuite/schedulers/.cvsignore:
4781         * testsuite/states/Makefile.am:
4782         * testsuite/tags/Makefile.am:
4783         * testsuite/threads/Makefile.am:
4784           fold enumcaps into caps dir
4785           clean up Makefile.am's for testsuite
4786
4787 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4788
4789         * docs/gst/Makefile.am:
4790         * docs/libs/Makefile.am:
4791           clean up docs build.  Fixes needless rebuilding of template files.
4792
4793 2004-07-28  Wim Taymans  <wim@fluendo.com>
4794
4795         * gst/gstbin.c: (set_kid_state_func), (gst_bin_set_state):
4796         * gst/gstthread.c: (gst_thread_release), (gst_thread_set_state):
4797         Make sure that a bin state change tries to keep the children
4798         in sync. 
4799         Added debug logging to the thread.
4800
4801 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4802
4803         * win32/GStreamer.vcproj:
4804         * win32/gstreamer.def:
4805           more exports for the plugins
4806
4807 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
4808
4809         * win32/gstgetbits.vcproj:
4810         * win32/gstgetbits.def:
4811         * win32/msvc71.sln:
4812           add support for the getbits plugin
4813
4814 2004-07-27  Wim Taymans  <wim@fluendo.com>
4815
4816         * gst/gstvalue.c: (gst_value_transform_double_fraction),
4817         (gst_value_transform_fraction_double), (_gst_value_initialize):
4818         * testsuite/caps/Makefile.am:
4819         * testsuite/caps/fraction-convert.c: (check_from_double_convert),
4820         (check_from_fraction_convert), (transform_test), (main):
4821         Added transform functions between double and fraction.
4822         Added testcase to verify transforms
4823
4824 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4825
4826         * win32/GStreamer.vcproj:
4827           rename GStreamer-0.8.lib to libgstreamer.lib
4828
4829 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4830
4831         * win32/gstelements.vcproj:
4832         * win32/gstoptimalscheduler.vcproj:
4833           fixes for the Release build
4834
4835 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4836
4837         * win32/config.h:
4838           update the version number
4839
4840 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4841
4842         * win32/GStreamer.vcproj:
4843           add gstinterface to the build
4844
4845 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
4846
4847         * win32/gstreamer.def:
4848           add many definitions needed by plugins,
4849           GST_CAT_DEFAULT only available in the Debug build ?
4850
4851 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
4852
4853         * gst/gstelement.c: (gst_element_set_eos_recursive):
4854           various whitespace fixes.
4855           doc fix, fixes #148497
4856
4857 2004-07-25  Benjamin Otte  <otte@gnome.org>
4858
4859         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
4860           don't delay links on the sink elements, it causes unnegotiated
4861           links.
4862         * gst/elements/gsttypefindelement.c:
4863         (gst_type_find_element_base_init):
4864           add our padtemplates, we indeed do have some.
4865         * gst/elements/gsttypefindelement.c:
4866         (gst_type_find_element_handle_event),
4867         (gst_type_find_element_chain):
4868           don't push data when typefinding failed.
4869         * gst/gstpad.c: (gst_pad_link_fixate):
4870           check that no fixate function returns empty caps.
4871         * gst/gstpad.c: (gst_pad_push):
4872           check that the link is negotiated before data gets pushed.
4873         * tools/gst-register.c: (main):
4874           don't assert (fixes #148283)
4875
4876 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4877
4878         * docs/gst/gstreamer-sections.txt:
4879         * docs/gst/tmpl/gstconfig.sgml:
4880           add GST_PLUGIN_EXPORT definition
4881
4882 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4883
4884         * gst/gstplugin.h:
4885         * gst/gstconfig.h.in:
4886         * win32/gstconfig.h:
4887         * win32/gstelements.def:
4888         * win32/gstelements.vcproj:
4889         * win32/gstoptimalscheduler.def:
4890         * win32/gstoptimalscheduler.vcproj:
4891         * win32/gstspider.def:
4892         * win32/gstspider.vcproj:
4893           remove unused .def files and export symbols using GST_PLUGIN_DEFINE
4894
4895 2004-07-25  Thomas Vander Stichele  <thomas at apestaart dot org>
4896
4897         * docs/gst/gstreamer-sections.txt:
4898           remove GST_CAT_DEFAULT because the type has changed
4899
4900 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4901
4902         * win32/gstbytestream.vcproj:
4903         * win32/gstelements.vcproj:
4904         * win32/gst-inspect.vcproj:
4905         * win32/gst-launch.vcproj:
4906         * win32/gstoptimalscheduler.vcproj:
4907         * win32/GStreamer.vcproj:
4908         * win32/gst-register.vcproj:
4909         * win32/gstspider.vcproj:
4910         * win32/msvc71.sln:
4911           Copy the files where needed after building, The testsuite will be
4912           built separately
4913
4914 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
4915
4916         * win32/config.h:
4917         * win32/README.txt:
4918         * docs/manual/win32.xml:
4919         Fixed the plugin and GStreamer location
4920
4921 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4922
4923         * win32/gstreamer.def:
4924         More exports for the plugins
4925
4926 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4927
4928         * gst/gstinfo.h:
4929         Marc was right, we need to export literally GST_CAT_DEFAULT
4930
4931 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4932
4933         * win32/config.h:
4934         NLS crashes in gettext, disabled until this is solved
4935
4936 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4937
4938         * win32/gst-inspect.vcproj:
4939         * win32/gst-launch.vcproj:
4940         Should use NLS when available
4941
4942 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4943
4944         * gst/registries/gstxmlregistry.c:
4945         removing the file doesn't seem to be a good idea on Linux
4946
4947 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
4948
4949         * gst/registries/gstxmlregistry.c:
4950         Remove the registry before renaming the tempfile (needed for Windows)
4951
4952 2004-07-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
4953
4954         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init),
4955         (gst_multifilesrc_init), (gst_multifilesrc_set_property),
4956         (gst_multifilesrc_get_property), (gst_multifilesrc_get):
4957         * gst/elements/gstmultifilesrc.h:
4958         Added newmedia property so it generates newmedia events between each
4959         file when property is set, as well as fixed eos handling
4960
4961 2004-07-22  David Schleef  <ds@schleef.org>
4962
4963         * gst/gststructure.c: (gst_structure_id_empty_new),
4964         (gst_structure_empty_new):  Set type field correctly.
4965         * gst/gststructure.h: Check type field correctly.
4966         * testsuite/caps/Makefile.am:
4967         * testsuite/caps/structure.c: (test1), (main): Add a very small
4968         test for structures.
4969
4970 2004-07-22  David Schleef  <ds@schleef.org>
4971
4972         * docs/random/ds/0.9-suggested-changes: more comments
4973         * tools/gst-launch.c: (idle_func): Fix hard-to-translate string.
4974
4975 2004-07-22  Benjamin Otte  <otte@gnome.org>
4976
4977         * gst/gstelementfactory.c: (gst_element_register):
4978           set the factory in the class struct, so gst_element_get_factory
4979           actually works
4980         * gst/parse/grammar.y:
4981           set element to playing when it gets unlocked as we can't rely on the
4982           bin state - all elements in the bin state might still be locked in
4983           NULL)
4984
4985 2004-07-22  Benjamin Otte  <otte@gnome.org>
4986
4987         * gst/gstelement.c: (gst_element_set_state_func):
4988           make this a static function
4989
4990 2004-07-22  Wim Taymans  <wim@fluendo.com>
4991
4992         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
4993         (gst_opt_scheduler_pad_link):
4994         fix 147894-2 and the group_link problem.
4995
4996 2004-07-22  Wim Taymans  <wim@fluendo.com>
4997
4998         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
4999         (handoff_identity), (main):
5000         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
5001         (handoff_identity), (main):
5002         * testsuite/schedulers/Makefile.am:
5003         * testsuite/schedulers/group_link.c: (main):
5004         Show bug in scheduler when linking chain and loop based element 
5005         where the chain based element was not yet in a group.
5006
5007 2004-07-21  Benjamin Otte  <otte@gnome.org>
5008
5009         * gst/.cvsignore:
5010         * gst/autoplug/.cvsignore:
5011         * gst/elements/.cvsignore:
5012         * gst/indexers/.cvsignore:
5013         * libs/gst/bytestream/.cvsignore:
5014         * libs/gst/control/.cvsignore:
5015         * libs/gst/getbits/.cvsignore:
5016         * testsuite/states/.cvsignore:
5017         * testsuite/threads/.cvsignore:
5018           keep this up to date, since I seem to be the only one who cares
5019           about not missing files on commits (editor's note: no you don't,
5020           but feel free to change them at the time you add stuff instead
5021           of later on)
5022
5023 2004-07-21  Benjamin Otte  <otte@gnome.org>
5024
5025         * gst/gstbin.c: (gst_bin_get_type), (gst_bin_class_init),
5026         (gst_bin_fix_state), (gst_bin_add_func), (gst_bin_remove_func),
5027         (gst_bin_child_state_change_func), (set_kid_state_func),
5028         (gst_bin_set_state), (gst_bin_change_state_norecurse):
5029           make state changes work correctly and reentrant (so removing
5030           elements from bins during state changes of bins doesn't cause
5031           segfaults or even wrong states)
5032           add debugging category and debugging output to print children states
5033         * gst/gstbin.c: (gst_bin_dispose): 
5034           add some assertion checks
5035         * gst/gstbin.h:
5036         * gst/gstbin.c: (gst_bin_sync_children_state):
5037           deprecate this function - it just does gst_bin_set_state (bin,
5038           GST_STATE (bin)) 
5039         * testsuite/threads/queue.c: (main):
5040           don't use gst_bin_sync_children_state anymore
5041         * testsuite/states/Makefile.am:
5042         * testsuite/states/bin.c:
5043           test that the state changes of bins work as expected
5044         * gst/gstthread.c: (gst_thread_class_init), (gst_thread_set_state):
5045           some adjustments to change states correctly, too
5046         * gst/gstthread.c: (gst_thread_change_state):
5047           don't enable/disable "threadsafe" properties, they're unused and
5048           cause random segfaults
5049         * testsuite/threads/Makefile.am:
5050           the queue check randomly passes now, ignore it
5051
5052 2004-07-21  Benjamin Otte  <otte@gnome.org>
5053
5054         * gst/gstpad.c:
5055           check if data is NULL before outputting debug info. (fixes #145100)
5056
5057 2004-07-21  Benjamin Otte  <otte@gnome.org>
5058
5059         * gst/schedulers/entryscheduler.c:
5060         (gst_entry_scheduler_loop_wrapper),
5061         (gst_entry_scheduler_chain_wrapper),
5062         (gst_entry_scheduler_get_wrapper):
5063           reset the state when the cothread starts, so we don't get assertion
5064           failures on restarting of cothreads
5065
5066 2004-07-20  Benjamin Otte  <otte@gnome.org>
5067
5068         * gst/gstelement.c: (gst_element_link_pads_filtered):
5069           use correct sinkpad, if only sinkpad is specified, but not srcpad
5070           (fixes #147889)
5071         * gst/gstelement.c: (gst_element_set_state_func),
5072         (gst_element_change_state): ref/unref the element, signal handlers
5073         could get rid of the element otherwise
5074
5075 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
5076
5077         * docs/random/ds/0.9-suggested-changes:
5078           Make note about renaming fixed-list to array.
5079         * gst/gstvalue.c: (gst_value_intersect_fixed_list),
5080         (_gst_value_initialize):
5081           Add array intersections.
5082         * testsuite/caps/intersect2.c: (main):
5083           Add test for array intersections.
5084
5085 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5086
5087         * configure.ac: back to cvs
5088
5089 === release 0.8.4 ===
5090
5091 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5092
5093         * configure.ac:
5094           releasing 0.8.4, "Paella"
5095           bump libtool versioning
5096
5097 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5098
5099         * po/LINGUAS:
5100         * po/ca.po:
5101           adding Catalan translation (Jordi Mallach)
5102
5103 2004-07-20  Wim Taymans  <wim@fluendo.com>
5104
5105         * testsuite/schedulers/147894-2.c: (queue_empty), (queue_filled),
5106         (handoff_identity), (main):
5107         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
5108         (handoff_identity), (main):
5109         * testsuite/schedulers/Makefile.am:
5110         Added failing testcase for variant of #147894
5111
5112 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5113
5114         patch by: David Moore
5115
5116         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
5117         (schedule_group), (gst_opt_scheduler_schedule_run_queue),
5118         (group_migrate_connected):
5119         * testsuite/schedulers/Makefile.am:
5120           fix for #142813 (Deadlock in optimal scheduler)
5121
5122 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5123
5124         patch by: Wim Taymans
5125
5126         * gst/schedulers/gstoptimalscheduler.c: (group_has_element),
5127         (gst_opt_scheduler_schedule_run_queue),
5128         (gst_opt_scheduler_get_wrapper), (get_group),
5129         (group_migrate_connected):
5130         * testsuite/schedulers/Makefile.am:
5131           fix for #147819 (Add some checks in the opt scheduler)
5132
5133 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5134
5135         patch by: Benjamin Otte
5136
5137         * gst/gstelementfactory.c: (__gst_element_details_set):
5138           fix for #147929: running gst-register in non-utf8 locale can cause
5139           invalid registry
5140
5141 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
5142
5143         patch by: Wim Taymans
5144
5145         * gst/schedulers/gstoptimalscheduler.c: (group_num_elements),
5146         (group_has_element), (element_get_reachables_func),
5147         (group_migrate_connected):
5148           fix for #147894 (opt scheduler decoupled elements mismanagement)
5149         * testsuite/schedulers/Makefile.am:
5150           testsuite app now passes
5151
5152 2004-07-19  Wim Taymans  <wim@fluendo.com>
5153
5154         * testsuite/schedulers/147819.c: (handoff_identity1),
5155         (handoff_identity2), (main):
5156         * testsuite/schedulers/Makefile.am:
5157         Added testcase for bug 147819
5158
5159 2004-07-19  Wim Taymans  <wim@fluendo.com>
5160
5161         * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
5162         (handoff_identity), (main):
5163         * testsuite/schedulers/Makefile.am:
5164         Added testcase for bug 147894
5165
5166 2004-07-16  Wim Taymans  <wim@fluendo.com>
5167
5168         * testsuite/schedulers/142183-2.c: (handoff_identity), (main):
5169         * testsuite/schedulers/142183.c: (handoff_identity), (main):
5170         * testsuite/schedulers/Makefile.am:
5171         Added testsuite for bug 142183 in its two incarnations. Refcount
5172         is not increased for scheduled elements and threadsafe properties
5173         mutexes are not properly unlocked.
5174
5175 2004-07-16  Wim Taymans  <wim@fluendo.com>
5176
5177         * gst/schedulers/gstoptimalscheduler.c: (gst_opt_scheduler_init),
5178         (create_chain), (destroy_chain), (create_group), (destroy_group),
5179         (add_to_group), (merge_groups), (group_elements), (group_inc_link),
5180         (group_dec_link), (gst_opt_scheduler_pad_link),
5181         (group_inc_links_for_element), (group_migrate_connected):
5182         Call group_inc_link with the proper src->sink ordering -- 
5183         break this, and we break sort_chain. patch from wingo for bug
5184         147713.
5185         Partially revert patch 1.89. When adding a loop based element to 
5186         the scheduler, the links to other groups are automatically followed
5187         and incremented. This should not happen because the bin will call
5188         pad_link explicitly for those connection, resulting in them counted 
5189         twice. Results in assertion failure on pipeline cleanup.
5190
5191 2004-07-16  Wim Taymans  <wim@fluendo.com>
5192
5193         * testsuite/schedulers/143777-2.c: (main):
5194         * testsuite/schedulers/147713.c: (handoff_src), (handoff_sink),
5195         (main):
5196         * testsuite/schedulers/Makefile.am:
5197         Added cleanup code to testcase 143777-2.
5198         Added testcase to show bug 147713, does not really show the
5199         deadlock as I can't figure out how to trigger it, but it does
5200         demonstrate bad ordering in the scheduler.
5201
5202 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5203
5204         * gst/gstvalue.c: (gst_value_deserialize_fraction):
5205           change strndup to g_strndup.  Fixes #147707
5206
5207 2004-07-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5208
5209         * po/af.po:
5210         * po/az.po:
5211         * po/cs.po:
5212         * po/en_GB.po:
5213         * po/fr.po:
5214         * po/nl.po:
5215         * po/sr.po:
5216         * po/sv.po:
5217         * po/tr.po:
5218         * po/uk.po:
5219           updated translations
5220
5221 2004-07-16  Benjamin Otte  <otte@gnome.org>
5222
5223         * gst/gstvalue.c: (gst_greatest_common_divisor):
5224           use ints and return ints, fractions only use ints, too, so this
5225           avoids accidently casting multiplications to unsigned
5226         (gst_value_lcopy_fraction): it's ints, not uint32
5227         (gst_value_set_fraction): disallow minint, multiplying and negation
5228           are broken with it
5229         (gst_value_fraction_multiply): fix to make large numbers work and get
5230         rid of the assumption that the multiplication of two ints fits an
5231         int64 - dunno if that's true for all systems
5232         * testsuite/caps/Makefile.am:
5233         * testsuite/caps/fraction-multiply-and-zero.c:
5234         (check_multiplication), (check_equal), (zero_test), (main):
5235           add tests for all the stuff above
5236         * testsuite/caps/value_compare.c: (test1):
5237           fix comment
5238         * tests/.cvsignore:
5239         * testsuite/caps/.cvsignore:
5240         * testsuite/debug/.cvsignore:
5241         * testsuite/dlopen/.cvsignore:
5242         * testsuite/states/.cvsignore:
5243           get up to date
5244
5245 2004-07-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5246
5247         * docs/manual/bins-api.xml:
5248         * docs/manual/factories.xml:
5249         * docs/manual/helloworld.xml:
5250         * docs/manual/links-api.xml: 
5251           fixes for out of date info, incorrect info and grammar
5252
5253 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5254
5255         * docs/manual/pads.xml:
5256         * docs/manual/pads-api.xml: grammar fix
5257
5258 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5259
5260         * docs/manual/pads-api.xml: typo + grammar fix
5261
5262 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5263
5264         * docs/gst/gstreamer-sections.txt:
5265           add new symbols
5266         * docs/gst/tmpl/gstelement.sgml:
5267         * docs/gst/tmpl/gstpad.sgml:
5268         * docs/gst/tmpl/gsttypes.sgml:
5269         * docs/gst/tmpl/gstvalue.sgml:
5270           update docs
5271         * gst/gststructure.c: (gst_structure_set_valist),
5272         (gst_structure_from_abbr), (gst_structure_to_abbr):
5273         * gst/gstvalue.c: (gst_value_compare_double), (gst_type_is_fixed),
5274         (gst_greatest_common_divisor), (gst_value_init_fraction),
5275         (gst_value_copy_fraction), (gst_value_collect_fraction),
5276         (gst_value_lcopy_fraction), (gst_value_set_fraction),
5277         (gst_value_get_fraction_numerator),
5278         (gst_value_get_fraction_denominator),
5279         (gst_value_fraction_multiply), (gst_value_serialize_fraction),
5280         (gst_value_deserialize_fraction),
5281         (gst_value_transform_fraction_string),
5282         (gst_value_transform_string_fraction),
5283         (gst_value_compare_fraction), (_gst_value_initialize):
5284         * gst/gstvalue.h:
5285           adding GstFraction GValue type, get/set, and multiply
5286         * testsuite/caps/Makefile.am:
5287         * testsuite/caps/fraction.c: (test), (main):
5288         * testsuite/caps/string-conversions.c: (main):
5289         * testsuite/caps/value_compare.c: (test1), (main):
5290           add regression tests for GstFraction
5291
5292 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5293         
5294         * docs/manual/init-api.xml: Grammar fix
5295
5296 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5297
5298         * docs/manual/states.xml: Fix inconsistent information
5299
5300 2004-07-15  Thomas Vander Stichele  <thomas at apestaart dot org>
5301
5302         * gst/gstelement.c: (gst_element_set_state):
5303         * gst/gstpad.c: (gst_pad_try_set_caps):
5304         * gst/gststructure.c:
5305         * gst/gstthread.c: (gst_thread_child_state_change):
5306         * gst/gstvalue.c: (gst_value_compare_double):
5307         * gst/gstvalue.h:
5308         * testsuite/parse/parse1.c: (main):
5309           debugging additions and style cleanups
5310
5311 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5312
5313         * docs/manual/states.xml: Grammar fix
5314
5315 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5316
5317         * docs/manual/pads.xml: Grammar fix
5318
5319 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5320
5321         * docs/manual/elements.xml: Fixed image reference
5322
5323 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5324
5325         * docs/manual/goals.xml: Grammar fix
5326
5327 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5328
5329         * docs/manual/motivation.xml:
5330         Bonobo is no longer "emerging" and added sentence regarding tcp plugins
5331
5332 2004-07-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5333
5334         * docs/manual/motivation.xml: Fix spelling
5335
5336 2004-07-15  Benjamin Otte  <otte@gnome.org>
5337
5338         * gst/gstelement.h: 
5339           Don't GST_ERROR_OBJECT empty strings - Solaris doesn't like NULL
5340           strings.
5341         * gst/gstelement.c (gst_element_class_init):
5342           GError's are boxed, not objects
5343         * gst/gstmarshal.list:
5344           update list for the fixed error signal
5345
5346 2004-07-14  Andy Wingo  <wingo@pobox.com>
5347
5348         * gst/gsttag.c: Add a tag merge func for pointers. The header was
5349         there all along, but the function wasn't. (guile-gstreamer's build
5350         system uses the address of the function -- I wasn't actually
5351         trying to use this.)
5352
5353 2004-07-14  Andy Wingo  <wingo@pobox.com>
5354
5355         * gst/gstpad.c (gst_pad_try_set_caps): Naive link functions (such
5356         as gst_pad_proxy_pad_link) just link to every other pad when they
5357         are called. In the case where the graph has cycles, this will mean
5358         that a call to try_set_caps will recurse. Allow this recursion
5359         and return OK, while we wait for the first try_set_caps to give a
5360         proper return value.
5361         (gst_pad_link_call_link_functions): Since this function is the
5362         only one to set the NEGOTIATING flag on a pad, if the flag is set
5363         it means that the link functions have indirectly recursed. If this
5364         happens, error out to avoid infinite recursion and an eventual
5365         SEGV.
5366         (gst_real_pad_class_init): Remove a crufty GtkObject comment.
5367         (gst_pad_proxy_getcaps): Intersect the result with the template
5368         caps to ensure that the return value is valid.
5369
5370 2004-07-14  Andy Wingo  <wingo@pobox.com>
5371
5372         * gst/gstdata.c (gst_data_is_writable): s/>=/>/. If there is only
5373         one refcount, the calling function is the owner of the buffer.
5374
5375 2004-07-14  Wim Taymans  <wim@fluendo.com>
5376
5377         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5378         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5379         Fix stupid warning when an element is to be migrated but
5380         is already migrated.
5381
5382 2004-07-14  Wim Taymans  <wim@fluendo.com>
5383
5384         * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
5385         (gst_opt_scheduler_pad_link), (group_migrate_connected):
5386         Make sure that a single non-loop-based element does not 
5387         end up in a group. This fixes the testsuite again.
5388
5389 2004-07-14  Wim Taymans  <wim@fluendo.com>
5390
5391         * gst/schedulers/gstoptimalscheduler.c: (create_group),
5392         (add_to_group), (merge_groups), (schedule_group),
5393         (gst_opt_scheduler_get_wrapper), (group_elements),
5394         (group_dec_link), (gst_opt_scheduler_pad_link),
5395         (group_migrate_connected), (gst_opt_scheduler_pad_unlink),
5396         (gst_opt_scheduler_iterate):
5397         move isolated groups to a new chain.
5398         Emit a warning instead of segfaulting in some error cases.
5399         Fix a bug where the link count between groups was not calculated 
5400         correctly. Fixes #144510.
5401
5402 2004-07-13  Steve Lhomme  <steve.lhomme@free.fr>
5403         * gst/elements/gstfilesrc.c:
5404           Binary files support under Windows now OK
5405       
5406 2004-07-13  Benjamin Otte  <otte@gnome.org>
5407
5408           compatibility fixes for Solaris 8/gcc 2.95
5409         * configure.ac:
5410           include libintl libs in LDFLAGS
5411         * gstvalue.c (gst_value_deserialize_buffer):
5412           cast isxdigit stuff to int to silence compiler warning
5413
5414 2004-07-12  Benjamin Otte  <otte@gnome.org>
5415
5416         * gst/gsttypes.h:
5417           get rid of GST_O_READONLY, GST_FILE_MODE_READ and
5418           GST_FILE_MODE_WRITE, I don't want them in the exported headers. It
5419           just causes support madness
5420         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
5421           make it work without this
5422         * gst/indexers/gstfileindex.c: (_file_index_id_save_entries),
5423         (gst_file_index_commit):
5424           glib IO channels don't want binary mode
5425         * testsuite/bytestream/filepadsink.c: (main):
5426         * testsuite/bytestream/test1.c: (read_param_file):
5427           use "rb" instead of GST_FILE_MODE_READ, it works on POSIX systems
5428
5429 2004-07-12  Benjamin Otte  <otte@gnome.org>
5430
5431         * gst/gstelement.c: (gst_element_class_init),
5432         (gst_element_set_state), (gst_element_set_state_func):
5433           virutalize gst_element_set_state, use set_state member in class
5434           struct that was already added in 0.7 for this.
5435         * gst/gstbin.c: (gst_bin_foreach), (set_kid_state_func), 
5436         (gst_bin_change_state):
5437           make gst_bin_foreach works similar to other foreach functions, plug
5438           memleaks in it. Make functions using it work with the new approach.
5439           Document gst_bin_foreach, so it can be exported if we want to
5440         * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_state):
5441           use virtualized set_state to make set_state on bins set the state of
5442           all its children.
5443
5444 2004-07-12  Benjamin Otte  <otte@gnome.org>
5445
5446         * configure.ac:
5447           require valgrind >= 2.1 (fixes Gentoo bug 53967, see
5448           http://bugs.gentoo.org/show_bug.cgi?id=53967)
5449         * gst/gstpad.c: (gst_pad_alloc_buffer):
5450           allow buffer_alloc functions to return NULL and allocate a normal
5451           buffer in that case
5452
5453 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5454         * gst/elements/gstfilesink.c:
5455         * gst/elements/gstfilesrc.c:
5456         * gst/indexers/gstfileindex.c:
5457         * gst/gsttypes.h:
5458         * testsuite/bytestream/filepadsink.c:
5459         * testsuite/bytestream/test1.c:
5460           Handle binary files under Windows
5461
5462 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5463         * docs/manual/win32.xml:
5464         * win32/config.h:
5465         * win32/gst-register.vcproj:
5466         * win32/gstreamer.def:
5467           Update to another gettext public build
5468
5469 2004-07-12  Steve Lhomme  <steve.lhomme@free.fr>
5470         * gst/gstplugin.c:
5471           Fix an impossible C syntax
5472         * win32/config.h:
5473           Disable i18n under Windows for the moment
5474         * win32/gst-register.vcproj:
5475           Use this configuration
5476
5477 2004-07-12  Jan Schmidt  <thaytan@mad.scientis.com>
5478         * docs/manual/quotes.xml:
5479           Keep the quotes file alive
5480         * docs/random/ds/0.9-suggested-changes:
5481           Add the suggestion of including a 'rowstride' as part of video
5482           format caps
5483
5484 2004-07-12  Thomas Vander Stichele  <thomas at apestaart dot org>
5485
5486         * gst/gstelement.c: (gst_element_set_state),
5487         (gst_element_change_state):
5488           d'oh.  Set PENDING state correctly before forcing bin to change.
5489         * gst/gststructure.c: (gst_structure_value_get_generic_type),
5490         (gst_structure_parse_fixed_list):
5491         * gst/schedulers/gstoptimalscheduler.c:
5492         (gst_opt_scheduler_state_transition):
5493         * testsuite/states/parent.c: (main):
5494           remove comment now that it's fixed.
5495
5496 2004-07-11  Benjamin Otte  <otte@gnome.org>
5497
5498         * gst/gstclock.h:
5499           GST_SECOND shouldn't cause a conversion to unsigned.
5500         * testsuite/clock/.cvsignore:
5501         * testsuite/clock/Makefile.am:
5502         * testsuite/clock/signedness.c: (main):
5503           make sure it never will again
5504
5505 2004-07-11  Andy Wingo  <wingo@pobox.com>
5506
5507         * gst/gstbin.c (gst_bin_add_func): If we're adding an element
5508         whose state is higher than the bin state, raise the bin state to
5509         ensure that bin state := highest child state.
5510         
5511 2004-07-11  Andy Wingo  <wingo@pobox.com>
5512
5513         * gst/gstbin.c (gst_bin_foreach): New static function. Calls a
5514         procedure on the children of a bin. Assumes that the procedure can
5515         change the set of children.
5516         (set_kid_state_func): New static function.
5517         (gst_bin_change_state): Use gst_bin_foreach to call
5518         set_kid_state_func. Fixes a bug: if a child had a state-change
5519         handler that removes it from the bin, there would be a segfault.
5520         Hopefully it should also work in the case where the state-change
5521         handler on one child adds or removes other children. In any case,
5522         fixes should go to gst_bin_foreach.
5523
5524 2004-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5525
5526         * gst/gstelement.c: (gst_element_set_state):
5527           compatibility fix for latest plugins release.  Change loop back
5528           to while {}
5529
5530 2004-07-09  Wim Taymans  <wim@fluendo.com>
5531
5532         * gst/gstbin.c: (gst_bin_remove), (gst_bin_dispose):
5533         * gst/gstthread.c: (gst_thread_dispose), (gst_thread_catch),
5534         (gst_thread_main_loop):
5535         Since remove is virtual in GstBin we must not assume the 
5536         elements GList to have anothing useful.
5537         Add some more logging to GstThread and be a bit more paranoid
5538         when resetting the scheduler.
5539         Set the state of the bin to NULL before removing the children.
5540
5541 2004-07-09  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5542
5543         * testsuite/threads/Makefile.am:
5544         * testsuite/threads/threadg.c:
5545           added test to check if problem when removing all elements from a
5546           GstThread before setting GstThread state to NULL
5547
5548 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5549
5550         * docs/gst/tmpl/gstelement.sgml:
5551         * docs/gst/tmpl/gsttypes.sgml:
5552         * gst/gstbin.c: (gst_bin_change_state):
5553         * gst/gstelement.c: (gst_element_set_state),
5554         (gst_element_change_state):
5555           rework so that for bins we try to set the state on all children
5556           as well even if the bin is in the correct state already.
5557           change while to do so at least one iteration is done.
5558           For regular elements, we fall back to the previous behaviour for
5559           now since we first need a new plugins release.
5560         * testsuite/states/parent.c: (main):
5561           test for this case
5562           Fixes #123774
5563
5564 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5565
5566         * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_finalize),
5567         (gst_queue_chain), (gst_queue_get), (gst_queue_handle_src_event),
5568         (gst_queue_release_locks), (gst_queue_change_state),
5569         (gst_queue_set_property):
5570           add proper lock debugging.  Change dispose to finalize, since
5571           we're freeing mutexes and other stuff which should happen only once.
5572
5573 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5574
5575         * docs/gst/tmpl/gstelement.sgml:
5576         * docs/gst/tmpl/gstplugin.sgml:
5577         * docs/gst/tmpl/gsttypes.sgml:
5578         * docs/pwg/building-state.xml:
5579         * gst/elements/gstfakesrc.c: (gst_fakesrc_change_state):
5580         * gst/gstelement.c: (gst_element_change_state):
5581         * gst/gstthread.c: (gst_thread_change_state):
5582           catch wrong state changes in element base class.
5583
5584 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5585
5586         * gst/gstinfo.h:
5587           clean up layout a little.
5588
5589 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5590
5591         * configure.ac:
5592         * testsuite/Makefile.am:
5593         * testsuite/states/Makefile.am:
5594         * testsuite/states/parent.c: (main):
5595           re-enable states testsuite dir.  Add test for state changes and
5596           parent behaviour
5597
5598 2004-07-09  Wim Taymans  <wim@fluendo.com>
5599
5600         * gst/schedulers/gstoptimalscheduler.c:
5601         (gst_opt_scheduler_pad_link), (group_elements_set_visited),
5602         (element_get_reachables_func), (element_get_reachables),
5603         (debug_element), (rechain_group), (group_migrate_connected),
5604         (gst_opt_scheduler_pad_unlink):
5605         Do not try to migrate decoupled elements to a new group since
5606         they are not added to groups.
5607
5608 2004-07-08  Benjamin Otte  <otte@gnome.org>
5609
5610         * gst/gstelement.c: (gst_element_error_func):
5611           make reentrant (= allow removing elements in error handler)
5612
5613 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5614
5615         * gst/gstpad.c: (gst_pad_event_default_dispatch),
5616         (gst_pad_send_event), (gst_pad_call_chain_function):
5617           events sent to elements below PAUSED cannot be handled, so
5618           don't try to
5619
5620 2004-07-08  Wim Taymans  <wim@fluendo.com>
5621
5622         * gst/schedulers/gstoptimalscheduler.c:
5623         (chain_recursively_migrate_group), (create_group),
5624         (schedule_group), (gst_opt_scheduler_pad_link),
5625         (group_elements_set_visited), (element_get_reachables_func),
5626         (element_get_reachables), (group_can_reach_group), (debug_element),
5627         (rechain_group), (group_migrate_connected),
5628         (gst_opt_scheduler_pad_unlink):
5629         * testsuite/schedulers/Makefile.am:
5630         Implemented group splitting and rechaining.
5631         Fixes 143777 and 143777-2 in the testsuite.
5632
5633 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5634
5635         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5636           extra debugging
5637         * gst/gstevent.h:
5638         * gst/gstinfo.c: (gst_debug_log_default):
5639           print time nicely.  add thread pointer until someone figures out
5640           a completely portable way of getting at thread id's.
5641         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_try),
5642         (_invent_event), (gst_pad_pull), (gst_pad_event_default_dispatch),
5643         (gst_pad_call_chain_function):
5644           extra debugging
5645         * gst/schedulers/gstoptimalscheduler.c:
5646         (get_group_schedule_function), (loop_group_schedule_function),
5647         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
5648         (pad_clear_queued), (gst_opt_scheduler_iterate):
5649           rename BUFPEN and friends to DATAPEN since that's what they are.
5650
5651 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
5652
5653         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
5654         * gst/gstbuffer.h:
5655         * gst/gstpad.c:
5656           cleanups and debugging
5657
5658 2004-07-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
5659
5660         * configure.ac:
5661         * gst/gstvalue.c: (gst_value_compare_enum),
5662         (gst_value_serialize_enum), (gst_value_deserialize_enum),
5663         (gst_value_can_compare), (gst_value_compare):
5664         * testsuite/Makefile.am:
5665         * testsuite/enumcaps/Makefile.am:
5666         * testsuite/enumcaps/enumcaps.c:
5667           Fix enum serialization, deserialization, comparison in caps, add
5668           a test to ensure that this continues working in the future.
5669
5670 2004-07-06  David Schleef  <ds@schleef.org>
5671
5672         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5673         Fix memleak.
5674
5675 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5676
5677         * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
5678         * gst/gstplugin.h:
5679         * gst/registries/gstxmlregistry.c:
5680         (plugin_times_older_than_recurse), (plugin_times_older_than),
5681         (gst_xml_registry_parse_padtemplate):
5682           only rebuild registry when actual plugins have a newer time than
5683           the registry.  Fixes #145520
5684
5685 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5686
5687         * docs/manual/manual.xml:
5688         * docs/manual/win32.xml:
5689           add chapter on win32 building.  fixes #142422
5690
5691 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5692
5693         patch by: Sebastien Cote <sc5 at hermes.usherb.ca>
5694
5695         * gst/autoplug/gstspider.c: (gst_spider_init),
5696         (gst_spider_dispose):
5697           fix spider memleaks.  fixes #137863
5698
5699 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5700
5701         patch by: Joe Marcus Clarke <marcus at freebsd dot org>
5702
5703         * gst/schedulers/gstoptimalscheduler.c:
5704         (gst_opt_scheduler_pad_unlink):
5705           fix SIGBUS error, fixes #145338
5706
5707 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5708
5709         * gst/gstobject.c: (gst_object_replace):
5710         * gst/gstscheduler.c: (gst_scheduler_get_clock):
5711         * gst/gstsystemclock.c: (gst_system_clock_obtain):
5712           clean up clock lifecycle.  Fixes #109831
5713
5714 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
5715
5716         * po/LINGUAS:
5717         * po/cs.po:
5718           added Czech translation (Miloslav Trmac)
5719
5720 2004-07-04  David Schleef  <ds@schleef.org>
5721
5722         * tools/Makefile.am:
5723         * tools/gst-xmlinspect.1.in:  Add man page. (bug #140219)
5724
5725 2004-07-04  David Schleef  <ds@schleef.org>
5726
5727         * common/m4/gst-doc.m4: Check for docbook2html 0.6.10 (bug #139909)
5728
5729 2004-07-04  Thomas Vander Stichele  <thomas at apestaart dot org>
5730
5731         * gst/gstbin.c: (gst_bin_restore_thyself):
5732           chain to parent restore so the bins get restored correctly
5733           in the editor
5734
5735 2004-07-03  David Schleef  <ds@schleef.org>
5736
5737         * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
5738         Actually do something in these functions, like before the big
5739         caps change.  (bug #145137)
5740
5741 2004-07-03  Thomas Vander Stichele  <thomas at apestaart dot org>
5742
5743         * gst/gstelement.c: (gst_element_get_compatible_pad_template),
5744         (gst_element_get_compatible_pad_filtered):
5745         * gst/gstthread.c: (gst_thread_main_loop):
5746           more debugging
5747
5748 2004-07-02  David Schleef  <ds@schleef.org>
5749
5750         * gst/gstinfo.h: wrap #pragmas in #ifdefs for the correct compiler
5751         * gst/gstobject.h:
5752         * gst/gstparse.h:
5753         * gst/gsttrace.h:
5754         * gst/gstxml.h:
5755
5756 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5757
5758         * gst/gstpad.c: (gst_pad_check_schedulers),
5759         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5760         (gst_pad_link_prepare):
5761           revert until testsuite is fixed
5762
5763 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5764
5765         * testsuite/Makefile.am:
5766         * testsuite/caps/filtercaps.c: (main):
5767         * testsuite/clock/clock1.c: (main):
5768         * testsuite/dynparams/dparamstest.c: (gst_dptest_chain), (main):
5769           fix some more tests
5770
5771 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5772
5773         * testsuite/cleanup/cleanup1.c: (create_pipeline):
5774         * testsuite/cleanup/cleanup2.c: (create_pipeline):
5775         * testsuite/cleanup/cleanup4.c: (main):
5776           fix testsuite
5777
5778 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5779
5780         * libs/gst/control/control.c:
5781         * libs/gst/control/dparam.c:
5782         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_get_type):
5783         * libs/gst/control/dparammanager.c:
5784         * libs/gst/control/dparammanager.h:
5785         * testsuite/dynparams/Makefile.am:
5786         * testsuite/dynparams/dparamstest.c: (gst_dptest_base_init),
5787         (gst_dptest_change_state), (gst_dptest_chain), (main):
5788           fix testcase for dparams
5789           add debugging category
5790
5791 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
5792
5793         * testsuite/Rules:
5794           change path
5795
5796 2004-07-02  Benjamin Otte  <otte@gnome.org>
5797
5798         * tests/.cvsignore:
5799         * tests/Makefile.am:
5800         * tests/mass_elements.c: (gst_get_current_time), (main):
5801           add simple benchmark to test various speeds of fakesrc ! identity !
5802           identity ! ... ! fakesink.
5803           Usage: mass_elements [num_identities] [num_buffers]
5804           If not specified they default to 1000.
5805
5806 2004-07-02  Benjamin Otte  <otte@gnome.org>
5807
5808         * gst/gstpad.c: (gst_pad_check_schedulers),
5809         (gst_pad_can_link_filtered), (gst_pad_link_filtered),
5810         (gst_pad_link_prepare):
5811           check that pads that get linked belong to the same manager. The old
5812           code allowed linking elements before putting them into bins, so it
5813           worked to link them and then put them in different threads, which
5814           lead to weird behaviour.
5815           Since this effectively disallows linking elements before putting
5816           them in a bin, some applications might not work after this and error
5817           out. If these applications are too critical, we might need to revert
5818           that patch. Please test this before the next release...
5819
5820 2004-06-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5821
5822         * gst/gstpad.c: (gst_pad_get_caps):
5823           throw an error if the getcaps function does not return a subset of
5824           the template caps.
5825         * libs/gst/bytestream/filepad.c: (gst_file_pad_chain):
5826           make disconts without position info an error in debugging
5827         * tests/spidey_bench.c: (handoff), (main):
5828           don't count first try when averaging
5829
5830 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5831
5832         * gst/gstplugin.c: (gst_plugin_load_file):
5833           figure out problem with dynamic test
5834
5835 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5836
5837         * docs/gst/Makefile.am:
5838           fix docs build
5839
5840 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5841
5842         * po/POTFILES.in:
5843         * po/af.po:
5844         * po/az.po:
5845         * po/en_GB.po:
5846         * po/fr.po:
5847         * po/nl.po:
5848         * po/sr.po:
5849         * po/sv.po:
5850         * po/tr.po:
5851         * po/uk.po:
5852         * tools/gst-register.c: (plugin_added_func), (main):
5853           i18n-ize -register, fix plural
5854
5855 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
5856
5857         * gst/elements/gstidentity.c: (gst_identity_class_init),
5858         (gst_identity_init), (gst_identity_chain),
5859         (gst_identity_set_property), (gst_identity_get_property):
5860         * gst/elements/gstidentity.h:
5861           check for perfect stream
5862
5863 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5864
5865         * gst/elements/gstidentity.c: (gst_identity_chain):
5866           print offset_end
5867
5868 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
5869
5870         * docs/gst/Makefile.am:
5871         * docs/gst/gstreamer-docs.sgml:
5872           doc fixes
5873
5874 2004-06-24  David Schleef  <ds@schleef.org>
5875
5876         * autogen.sh:  Remove call to env, since the buildbot isn't
5877         broken anymore.
5878
5879 2004-06-24  Wim Taymans  <wim@fluendo.com>
5880
5881         * gst/elements/Makefile.am:
5882         * gst/elements/gstelements.c:
5883         * gst/elements/gstmultifdsink.c: (gst_multifdsink_base_init),
5884         (gst_multifdsink_class_init), (gst_multifdsink_init),
5885         (gst_multifdsink_add), (gst_multifdsink_remove),
5886         (gst_multifdsink_clear), (gst_multifdsink_chain),
5887         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
5888         * gst/elements/gstmultifdsink.h:
5889         Added an element that writes to multiple filedescriptors at once.
5890
5891 2004-06-24  Benjamin Otte  <otte@gnome.org>
5892
5893         * gst/parse/grammar.y:
5894           don't try to link elements before they have been added to bins
5895
5896 2004-06-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5897
5898         * libs/gst/bytestream/filepad.c: (gst_file_pad_available),
5899         (gst_file_pad_get_length):
5900         * libs/gst/bytestream/filepad.h:
5901           add 2 new functions
5902
5903 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
5904
5905         * docs/gst/gstreamer-sections.txt:
5906         remove from docs, the define that Benjamin removed from gstelement.h
5907
5908 2004-06-22  Benjamin Otte  <otte@gnome.org>
5909
5910         * gst/gstelement.h:
5911           remove define that referenced a nonexisting GstElement struct member
5912
5913 2004-06-20  Benjamin Otte  <otte@gnome.org>
5914
5915         * gst/gstdata.c: (gst_data_is_writable):
5916           whoops, return values were wrong, so writable data was marked as
5917           non-writable and vice versa. (fixes #143953, spotted by Francis
5918           Labonte)
5919           Shows how rarely we need to copy data ;)
5920
5921 2004-06-20  Benjamin Otte  <otte@gnome.org>
5922
5923         * testsuite/schedulers/.cvsignore:
5924         * testsuite/schedulers/Makefile.am:
5925         * testsuite/schedulers/143777-2.c: (main):
5926           add test for opt breakage in bug #143777
5927
5928 2004-06-20  Benjamin Otte  <otte@gnome.org>
5929
5930         * gst/gstpad.c: (gst_pad_call_chain_function):
5931           check for if we were unlinked while inside the chainfunction (fixes
5932           entrygthread having issues with #143777)
5933         * testsuite/schedulers/143777.c: (main):
5934         * testsuite/schedulers/Makefile.am:
5935           add a test for that fix
5936
5937 2004-06-20  Benjamin Otte  <otte@gnome.org>
5938
5939         * gst/gstvalue.c: (gst_value_set_int_range):
5940           test that start is smaller then end
5941         * libs/gst/bytestream/Makefile.am:
5942         * libs/gst/bytestream/filepad.c: 
5943         * libs/gst/bytestream/filepad.h:
5944           add GstFilePad - a pad that behaves like a FILE*
5945         * testsuite/bytestream/.cvsignore:
5946         * testsuite/bytestream/Makefile.am:
5947         * testsuite/bytestream/filepadsink.c: 
5948           test for the GstFilePad
5949
5950 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
5951
5952         * gst/elements/gstidentity.c: (gst_identity_class_init),
5953         (gst_identity_init), (gst_identity_set_clock),
5954         (gst_identity_chain), (gst_identity_set_property),
5955         (gst_identity_get_property):
5956         * gst/elements/gstidentity.h:
5957         * gst/gstclock.c: (gst_clock_id_wait):
5958           add a "sync" property to sync to the clock
5959
5960 2004-06-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
5961
5962         * gst/gstelementfactory.c: (gst_element_factory_create):
5963           make the freakin "elementfactory bla has no type" message more
5964           useful. So we actually can do something when someone shows up
5965           complaining about it.
5966
5967 2004-06-15  Johan Dahlin  <johan@gnome.org>
5968
5969         * tools/gst-inspect.c (main): Fallback to plugin if no element is
5970         found. This matches the old behavior better. Thanks to Thomas for
5971         pointing out.
5972
5973 2004-06-14  David Schleef  <ds@schleef.org>
5974
5975         * gst/gstcpu.c: (gst_cpuid_i386): Fix problem when using
5976         -fomit-frame-pointer.  Appears to generate correct code in
5977         other cases as well.
5978
5979 2004-06-14  Johan Dahlin  <johan@gnome.org>
5980
5981         * tools/gst-inspect.c (main): Add two new command line options: -a
5982         to print all elements and -n to print the name on each line. Also
5983         fix some error reporting.
5984         (main): Simplify, remove -n and always print names if -a is specified
5985
5986 2004-06-13  Steve Lhomme  <steve.lhomme@free.fr>
5987
5988         * win32/gstconfig.h:
5989         * win32/GSTreamer.vcproj:
5990         * win32/Makefile:
5991         * gst/gstconfig.h.in:
5992         * gst/gst.h:
5993         * gst/gstbin.h:
5994         * gst/gstelement.h:
5995         * gst/gstevent.h:
5996         * gst/gstobject.h:
5997         * gst/gstpad.h:
5998         * docs/gst/gstreamer-sections.txt:
5999         * docs/gst/tmpl/gstconfig.sgml:
6000           rename GSTREAMER_EXPORT(S) to GST_EXPORT(S)
6001
6002 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
6003         * docs/gst/gstreamer-sections.txt:
6004         * docs/gst/tmpl/gstconfig.sgml:
6005         Add the GSTREAMER_EXPORT macro to the docs
6006
6007 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
6008
6009         * tools/gst-compprep.c: (handle_xmlerror), (main):
6010         Add a check for the version that introduced SetStructuredError to fix
6011         the build on FC1
6012
6013 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6014
6015         * win32/msvc71.sln:
6016         * win32/testsuite/:
6017           prepare to compile the testsuite with MSVC
6018
6019 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6020
6021         * docs/manual/win32.xml:
6022           attempt to transform the Win32 README into an XML doc
6023
6024 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6025
6026         * gst/gst.c:
6027         * gst/gstbin.*:
6028         * gst/config.h.in:
6029         * gst/gstelement.*:
6030         * gst/gstevent.h:
6031         * gst/gstobject.*:
6032         * gst/gstpad.h:
6033         * tools/gst-register.c:
6034         * win32/gstreamer.def:
6035           extern symbols are now exported for the Windows DLL
6036
6037 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6038
6039         * gst/gstinfo.h:
6040           fix a problem to enable/disable DEBUG under MSVC
6041
6042 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6043
6044         * win32/:
6045           enable more debug code in DEBUG build
6046
6047 2004-06-12  Steve Lhomme  <steve.lhomme@free.fr>
6048
6049         * win32/config.h:
6050         * gst/gst-i18n-app.h:
6051           enable NLS under Windows
6052
6053 2004-06-12  Jan Schmidt  <thaytan@mad.scientist.com>
6054         * tools/gst-compprep.c: (handle_xmlerror), (main):
6055           Make an error that baffled me a bit clearer
6056
6057 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
6058
6059         * gst/gstqueue.c:
6060           don't use g_queue_get_length () because it's 2.4, use ->length
6061
6062 2004-06-11  Steve Lhomme  <steve.lhomme@free.fr>
6063
6064         reviewed by Benjamin Otte  <in7y118@public.uni-hamburg.de>
6065
6066         * tools/gst-inspect.c: (print_signal_info):
6067           don't free random data twice. (fixes #144185)
6068
6069 2004-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6070
6071         * gst/gstqueue.c:
6072         * gst/gstqueue.h:
6073           fix removing from the wrong queue on event timeout
6074           fix disposing of the event queue by casting correctly
6075           add mutexes for handling the event queue
6076           someone was sleeping when fixing queue last time around :)
6077
6078 2004-06-10  Johan Dahlin  <johan@gnome.org>
6079
6080         * gst/gst.c (gst_init_check_with_popt_table): Do not fail on
6081         errors, like gtk. It makes it more useful in bindings.  Fixes #141692.
6082
6083 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6084
6085         * docs/random/gdp:
6086         * libs/gst/dataprotocol/dataprotocol-test.c: (buffer_test):
6087         * libs/gst/dataprotocol/dataprotocol.c:
6088         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6089         (gst_dp_buffer_from_header):
6090         * libs/gst/dataprotocol/dataprotocol.h:
6091         * libs/gst/dataprotocol/dp-private.h:
6092           rev version to 0.1, add buffer flags and copy them
6093
6094 2004-06-09  Johan Dahlin  <johan@gnome.org>
6095
6096         * gst/gstbuffer.c (gst_buffer_default_copy): Don't forget to merge
6097         the flags from the buffer we're copying.
6098
6099 2004-06-09  Wim Taymans  <wim@fluendo.com>
6100
6101         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
6102         * gst/elements/gstidentity.c: (gst_identity_init),
6103         (gst_identity_chain):
6104         Print more buffer info in fakesink.
6105         Make identity output similar to fakesink.
6106
6107 2004-06-07  Daniel Gazard  <dany42@free.fr>
6108
6109         reviewed by Benjamin Otte  <otte@gnome.org>
6110
6111         * configure.ac:
6112           fix cross compiling not working. (fixes #143741)
6113
6114 2004-06-07  Benjamin Otte  <otte@gnome.org>
6115
6116         * gst/gstelement.c: (gst_element_set_time_delay):
6117           add failure check
6118         * gst/gstinfo.h:
6119           put brackets around macro arguments of GST_TIME_ARGS, add note to
6120           move it to correct header in 0.9
6121
6122 2004-06-07  Benjamin Otte  <otte@gnome.org>
6123
6124         * gst/indexers/gstfileindex.c: (gst_file_index_get_writer_id),
6125         (gst_file_index_load), (_file_index_id_save_entries),
6126         (gst_file_index_commit), (gst_file_index_add_association),
6127         (gst_file_index_add_entry), (gst_file_index_get_assoc_entry),
6128         (gst_file_index_plugin_init):
6129           make debugging use a default category
6130
6131 2004-06-06  David Moore  <dcm@acm.org>
6132
6133         reviewed by Benjamin Otte  <otte@gnome.org>
6134
6135         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
6136         (gst_fdsrc_change_state):
6137           reset offset counter when going READY => PAUSED. (fixes #142903)
6138
6139 2004-06-06  ed@catmur.co.uk
6140
6141         reviewed by Benjamin Otte  <otte@gnome.org>
6142
6143         * gst/registries/gstxmlregistry.c:
6144         (gst_xml_registry_rebuild_recurse):
6145           don't rely on g_dir_open to figure out if a file is a directory, use
6146           explicit G_TEST_IS_DIR. Reiserfs4 allows opening files as
6147           directories. (fixes #142850)
6148
6149 2004-06-06  Benjamin Otte  <otte@gnome.org>
6150
6151         * gst/gstqueue.c: (gst_queue_dispose), (gst_queue_change_state):
6152           fix memory leaks (fixes #142795). Initial patch by Sebastien Cote
6153         * libs/gst/bytestream/adapter.c:
6154         * libs/gst/bytestream/adapter.h:
6155           fix copyright in header and typo in debugging category name
6156
6157 2004-06-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6158
6159         * configure.ac:
6160           bump nano to cvs
6161
6162 === release 0.8.3 ===
6163
6164 2004-06-05  Thomas Vander Stichele  <thomas at apestaart dot org>
6165
6166         * configure.ac:
6167           update libtool versioning
6168           do a new release
6169         * docs/gst/tmpl/gstelement.sgml:
6170         * docs/gst/tmpl/gsttypes.sgml:
6171         * gst/gstinfo.c: (_gst_debug_init):
6172           put back GST_CAT_DATAFLOW to fix API breakage
6173
6174 2004-06-04  David Schleef  <ds@schleef.org>
6175
6176         * autogen.sh: Add a temporary 'env' to test buildbot problems.
6177
6178 2004-06-04  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6179
6180         * configure.ac:
6181           bump nano to cvs
6182
6183 === release 0.8.2 ===
6184
6185 2004-06-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6186
6187         * gst/gst.c: (parse_debug_list), (gst_init_check_with_popt_table):
6188           check GST_DEBUG environment variable which is parsed the same way
6189           as --gst-debug=
6190
6191 2004-05-28  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6192
6193         * gst/elements    : gstaggregator.c gstfakesink.c gstfakesrc.c
6194                             gstmd5sink.c gstshaper.c gsttee.c
6195                             gsttypefindelement.c
6196         * gst/schedulers  : gstbasicscheduler.c gstoptimalscheduler.c
6197
6198           - removing trailing commas at end of enums
6199             it is correct C99 code but C90 compilers would complain
6200             (AIX, Forte, ...)
6201             ('should' fix #143290, at least partially)
6202
6203 2004-05-27  Wim Taymans  <wim@fluendo.com>
6204
6205         * gst/schedulers/gstoptimalscheduler.c: (remove_from_chain),
6206         (chain_group_set_enabled), (create_group), (add_to_group),
6207         (merge_groups), (setup_group_scheduler), (group_elements),
6208         (gst_opt_scheduler_iterate), (gst_opt_scheduler_show):
6209         Don't try to follow the pad connections with other groups
6210         when a loop based element is added to the scheduler because
6211         the bin will inform the scheduler about the pad links a little
6212         later.
6213
6214 2004-05-27  Wim Taymans  <wim@fluendo.com>
6215
6216         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6217         (remove_from_chain), (chain_group_set_enabled),
6218         (setup_group_scheduler), (group_element_set_enabled),
6219         (gst_opt_scheduler_state_transition), (gst_opt_scheduler_iterate),
6220         (gst_opt_scheduler_show):
6221         Elements without a group can do a state change as well, just wait
6222         with the setup of the scheduling function when it is added to a
6223         chain.
6224
6225 2004-05-27  Wim Taymans  <wim@fluendo.com>
6226
6227         * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
6228         (remove_from_chain), (chain_group_set_enabled), (add_to_group),
6229         (merge_groups), (setup_group_scheduler),
6230         (group_inc_links_for_element), (gst_opt_scheduler_iterate),
6231         (gst_opt_scheduler_show):
6232         Fixes to maintain internal consistency of the scheduler data
6233         structures. 
6234          - adding an enabled group to a chain should increment the
6235            number of enabled elements in that chain.
6236          - removing an enabled group from a chain could disable the
6237            chain.
6238          - removing a disabled group from a chain could enable the
6239            chain.
6240          - add g_assert when internal inconsistency is detected.
6241          - adding an element to a group could increase the number of
6242            links this group has with other groups.
6243          - merging two groups also merges the chains.
6244          - also show group links in the _show method.
6245            
6246
6247 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6248
6249         * gst/gstcaps.c: (gst_caps_structure_simplify):
6250           don't print error messages when there is no error
6251         * gst/gstvalue.c: (gst_value_compare_int_range):
6252           compare the second value, too
6253         * testsuite/caps/Makefile.am:
6254         * testsuite/caps/random.c: (assert_on_error), (main):
6255           add tests to make sure the two things above are checked for
6256
6257 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
6258
6259         * configure.ac:
6260         * libs/gst/dataprotocol/Makefile.am:
6261         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps):
6262         * libs/gst/dataprotocol/dataprotocol.h:
6263           wrap header in GST_ENABLE_NEW.  make code use it
6264
6265 2004-05-23  Johan Dahlin  <johan@gnome.org>
6266
6267         * tools/gst-inspect.c (main): Cleanup most parts of it, don't be
6268         so verbose and print GstElement signal names all the time.
6269
6270 2004-05-22  David Schleef  <ds@schleef.org>
6271
6272         * gst/registries/gstxmlregistry.c:
6273         (gst_xml_registry_parse_padtemplate): Fix warning on OS X.
6274         (bug #142957)
6275
6276 2004-05-22  Thomas Vander Stichele  <thomas at apestaart dot org>
6277
6278         * configure.ac:
6279           scrub cflags for glib2 so gcc doesn't complain when glib is in
6280           /usr/local
6281
6282 2004-05-21  Johan Dahlin  <johan@gnome.org>
6283
6284         * gst/gstcpu.c (gst_cpuid_i386): Protect some gcc asm stuff with
6285         __GNUC__, patch from Brian Cameron, fixes bug #142804
6286
6287 2004-05-20  David Schleef  <ds@schleef.org>
6288
6289         * gst/gstindex.c: (gst_index_compare_func): Fix overflows in
6290         comparison code.  (bug #142819)
6291
6292 2004-05-20  Wim Taymans  <wim@fluendo.com>
6293
6294         * gst/gstbuffer.c: (gst_buffer_default_copy):
6295         * gst/gstbuffer.h:
6296         Added Comment to a flag.
6297         copy relevant flags in _buffer_copy.
6298
6299 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6300
6301         reviewed by: Wim Taymans <wim at fluendo dot com>
6302
6303         * gst/gstbuffer.h:
6304           add GST_BUFFER_IN_CAPS buffer flag
6305         * gst/gststructure.c: (gst_structure_value_get_generic_type),
6306         (gst_structure_parse_any_list), (gst_structure_parse_list),
6307         (gst_structure_parse_fixed_list), (gst_structure_parse_value):
6308         * gst/gstvalue.c: (gst_value_serialize_any_list),
6309         (gst_value_transform_any_list_string),
6310         (gst_value_list_prepend_value), (gst_value_list_append_value),
6311         (gst_value_list_get_size), (gst_value_list_get_value),
6312         (gst_value_transform_list_string),
6313         (gst_value_transform_fixed_list_string),
6314         (gst_value_serialize_list), (gst_value_serialize_fixed_list),
6315         (gst_value_deserialize_fixed_list), (gst_type_is_fixed),
6316         (_gst_value_initialize):
6317         * gst/gstvalue.h:
6318           add a GST_TYPE_FIXED_LIST which is fixed by definition and uses
6319           < , > as a format.
6320         * testsuite/caps/string-conversions.c: (main):
6321           add regression tests for < >
6322
6323 2004-05-20  Johan Dahlin  <johan@gnome.org>
6324
6325         * docs/gst/Makefile.am (all-local): Re-add
6326
6327 2004-05-20  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
6328
6329         * docs/gst/Makefile.am:
6330         * docs/gst/gstreamer-docs.sgml:
6331         * docs/libs/Makefile.am:
6332         * docs/libs/gstreamer-libs-docs.sgml:
6333           fix distcheck issues
6334
6335 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6336
6337         * libs/gst/dataprotocol/Makefile.am:
6338           add to autotest
6339
6340 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6341
6342         * libs/gst/dataprotocol/Makefile.am:
6343         * libs/gst/dataprotocol/dataprotocol.c:
6344         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6345         (gst_dp_packet_from_event), (gst_dp_event_from_packet):
6346         * libs/gst/dataprotocol/dp-private.h:
6347           use GST macros to read/write fixed length ints
6348           add some more asserts
6349
6350 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6351
6352         * docs/libs/gstreamer-libs-docs.sgml:
6353         * docs/libs/gstreamer-libs-sections.txt:
6354           remove idct and putbits
6355         * configure.ac:
6356         * docs/libs/tmpl/gstdataprotocol.sgml:
6357         * libs/gst/Makefile.am:
6358         * libs/gst/dataprotocol/Makefile.am:
6359         * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test),
6360         (buffer_test), (caps_test), (event_test), (main):
6361         * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
6362         (gst_dp_dump_byte_array), (gst_dp_init),
6363         (gst_dp_header_payload_length), (gst_dp_header_payload_type),
6364         (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
6365         (gst_dp_packet_from_event), (gst_dp_buffer_from_header),
6366         (gst_dp_caps_from_packet), (gst_dp_event_from_packet),
6367         (gst_dp_validate_header), (gst_dp_validate_payload),
6368         (gst_dp_validate_packet), (plugin_init):
6369         * libs/gst/dataprotocol/dataprotocol.h:
6370         * libs/gst/dataprotocol/dp-private.h:
6371           add dataprotocol
6372
6373 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6374
6375         * gst/gstvalue.c: (gst_value_deserialize_int_helper):
6376           fix int variable deserialization and add a helper so we can actually
6377           debug this.
6378
6379 2004-05-18  David Schleef  <ds@schleef.org>
6380
6381         * testsuite/debug/commandline.c: (main): Call ./commandline, not
6382           argv[0].  Calling yourself is probably not the best way to
6383           construct a test like this, btw.
6384
6385 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6386
6387         * gst/gstbin.c: (gst_bin_iterate_func), (gst_bin_iterate):
6388           don't claim to be more intelligent than a scheduler when the
6389           scheduler claims the pipeline is stopped
6390         * gst/schedulers/entryscheduler.c: (safe_cothread_switch),
6391         (safe_cothread_destroy),
6392         (gst_entry_scheduler_remove_all_cothreads),
6393         (gst_entry_scheduler_reset), (_remove_cothread),
6394         (gst_entry_scheduler_state_transition):
6395           hold off cothread destruction if we're not in main cothread
6396         * configure.ac:
6397         * testsuite/Makefile.am:
6398           add new test dir
6399         * testsuite/schedulers/.cvsignore:
6400         * testsuite/schedulers/Makefile.am:
6401           add tests
6402         * testsuite/schedulers/relink.c: (cb_handoff), (main):
6403           check relinking and adding/removing elements from a running pipeline
6404         * testsuite/schedulers/unlink.c: (cb_handoff), (main):
6405           check unlinking in a running pipeline
6406         * testsuite/schedulers/unref.c: (cb_handoff), (main):
6407           check unreffing a running pipeline
6408         * testsuite/schedulers/useless_iteration.c: (main):
6409           check iterating a pipeline that contains running threads works
6410
6411 2004-05-18  David Schleef  <ds@schleef.org>
6412
6413         * docs/gst/Makefile.am: Add all-local target for when HAVE_GTK_DOC
6414           is false.
6415
6416 2004-05-18  Wim Taymans  <wim@fluendo.com>
6417
6418         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6419         (setup_group_scheduler), (gst_opt_scheduler_pad_link):
6420         Fixed an error introduced with patch for 1.63. When setting
6421         a get based element as the entry point in a group, make sure
6422         to mark the group as GET based.
6423
6424 2004-05-18  Wim Taymans  <wim@fluendo.com>
6425
6426         * gst/schedulers/gstoptimalscheduler.c: (create_group),
6427         (setup_group_scheduler), (loop_group_schedule_function),
6428         (gst_opt_scheduler_pad_link):
6429         Added some more debug info and fixed a bug where the group
6430         type was set to LOOP but it was in fact unknown.
6431
6432 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6433
6434         * gst/schedulers/entryscheduler.c: (gst_entry_scheduler_reset):
6435           make resetting scheduler work twice in a row
6436
6437 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6438
6439         * gst/gstvalue.c: (gst_strtoll), (CREATE_SERIALIZATION),
6440         (CREATE_USERIALIZATION), (_gst_value_initialize),
6441         (gst_value_compare_float), (gst_value_serialize_float),
6442         (gst_value_deserialize_float), (gst_value_compare_enum),
6443         (gst_value_serialize_enum), (gst_value_deserialize_enum):
6444           add serialization and comparison functions for long, int64, enum and
6445           float values
6446         * gst/gstvalue.c: (gst_value_serialize), (gst_value_deserialize):
6447           use best serialization function in type hierarchy instead of only a
6448           matching one. This is required for enums to work.
6449         * gst/parse/grammar.y:
6450           use gst_caps_deserialize
6451         * testsuite/parse/Makefile.am:
6452           parse1 now works
6453         * testsuite/parse/parse1.c: (main):
6454           remove aggregator check, aggregator is broken, this test works now
6455           but fails because of bug #138012
6456         * testsuite/parse/parse2.c: (main):
6457           s/xvideosink/xvimagesink - this test looks a lot like we should
6458           disable it
6459
6460 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6461
6462         * gst/gstelement.c: (gst_element_class_init):
6463           whoops, store the signal id correctly
6464         * gst/schedulers/gstbasicscheduler.c:
6465         (gst_basic_scheduler_chain_wrapper):
6466           detect infinfinfinfinfinf^Cinite loops in chain wrapper when the
6467           chain function isn't linked
6468
6469 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
6470         * configure.ac:
6471         Add $GST_PKG_CFLAGS back into GST_INT_CFLAGS so I have large file
6472         support until we decide where the flags should be used
6473         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_query):
6474         Use GST_FORMAT_BYTES when GST_FORMAT_DEFAULT is passed
6475         * gst/gstpad.c: (gst_pad_link_call_link_functions):
6476         Output refused caps in the debug info
6477
6478 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
6479
6480         * gst/elements/gstidentity.c: (gst_identity_chain):
6481           add duration debug
6482         * gst/gstinfo.c: (gst_debug_log_default):
6483           add timestamp
6484
6485 2004-05-13  Benjamin Otte  <otte@gnome.org>
6486
6487         * gst/gstpipeline.c: (gst_pipeline_dispose),
6488         (gst_pipeline_change_state):
6489           call gst_scheduler_reset on dispose (fixes #141416)
6490
6491 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6492
6493         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6494           compute mapsize correctly
6495         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
6496           use correct datatypes when calling a varargs function
6497         * gst/elements/gsttypefindelement.c: (stop_typefinding):
6498           push a DISCONT event as first thing
6499         * gst/gst_private.h:
6500         * gst/gstinfo.c: (_gst_debug_init):
6501           remove GST_DATAFLOW debugging category
6502         * gst/gstbin.c: (gst_bin_iterate):
6503           use GST_SCHEDULING category
6504         * gst/gstpad.c: (gst_pad_get_type), (_invent_event),
6505         (gst_pad_push), (gst_pad_pull), (gst_pad_call_chain_function),
6506         (gst_pad_call_get_function):
6507           add GST_DATAFLOW to easily track flow of buffers or events.
6508         * gst/gstqueue.c: (gst_queue_get_type),
6509         (gst_queue_handle_pending_events), (gst_queue_chain),
6510         (gst_queue_get), (gst_queue_handle_src_event):
6511           use own static debugging category GST_DATAFLOW for dataflow,
6512           use DEBUG category for showing which path events go, use LOG
6513           category for buffers.
6514
6515 2004-05-10  David Schleef  <ds@schleef.org>
6516
6517         * docs/gst/gstreamer-sections.txt: Add gst_element_no_more_pads.
6518
6519 2004-05-10  David Schleef  <ds@schleef.org>
6520
6521         * docs/gst/Makefile.am: Dear gtk-doc, please print out the unused
6522         symbols, because otherwise we don't know what they are.  Thanks,
6523         the GStreamer team.
6524         * gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
6525
6526 2004-05-10  David Schleef  <ds@schleef.org>
6527
6528         (from Steve Lhomme)
6529         * win32/Makefile: When using make clean the MS Visual Studio makefiles
6530         are deleted.  Fix.
6531         * win32/Makefile.inspect:
6532         * win32/Makefile.launch:
6533         * win32/Makefile.register:
6534
6535 2004-05-10  David Schleef  <ds@schleef.org>
6536
6537         * gst/gstinfo.h: Add missing inline function.
6538         * gst/gsttrace.c: add include
6539         * gst/parse/grammar.y: remove unused code
6540         * gst/registries/gstxmlregistry.c: (make_dir): make mkdir call
6541         more portable.
6542         * tools/gst-register.c: wrap unistd.h
6543         
6544         More additions/fixes from Steve for the MSVC build.
6545         * win32/GStreamer.vcproj:
6546         * win32/Makefile:
6547         * win32/Makefile.inspect:
6548         * win32/Makefile.launch:
6549         * win32/Makefile.register:
6550         * win32/README.txt:
6551         * win32/gst-inspect.vcproj:
6552         * win32/gst-launch.vcproj:
6553         * win32/gst-register.vcproj:
6554         * win32/gstbytestream.def:
6555         * win32/gstbytestream.vcproj:
6556         * win32/gstconfig.h:
6557         * win32/gstelements.def:
6558         * win32/gstelements.vcproj:
6559         * win32/gstenumtypes.c:
6560         * win32/gstenumtypes.h:
6561         * win32/gstoptimalscheduler.def:
6562         * win32/gstoptimalscheduler.vcproj:
6563         * win32/gstreamer.def:
6564         * win32/gstspider.def:
6565         * win32/gstspider.vcproj:
6566         * win32/gstversion.h:
6567         * win32/msvc71.sln:
6568
6569 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6570
6571         * gst/gstelement.c: (gst_element_class_init),
6572         (gst_element_no_more_pads):
6573         * gst/gstelement.h:
6574           add gst_element_no_more_pads and the "no-more-pads" signal
6575
6576 2004-05-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6577
6578         * gst/gstregistry.c: (gst_registry_add_plugin):
6579           refuse to add plugins when a plugin with same name is already
6580           registered. Fixes a bunch of "How to remove plugins?" issues.
6581           May lead to other problems though, let's test
6582
6583 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6584
6585         * testsuite/caps/caps_strings : audio/ac3 => audio/x-ac3
6586         * docs/manual/pads-api.xml : audio/wav => audio/x-wav
6587         * docs/random/uraeus/gstreamer_and_midi.txt : audio/wav => audio/x-wav
6588
6589 2004-05-09  Thomas Vander Stichele  <thomas at apestaart dot org>
6590
6591         * tests/Makefile.am: fix am16 issue
6592
6593 2004-05-09  Benjamin Otte  <otte@gnome.org>
6594
6595         * libs/gst/bytestream/Makefile.am:
6596           we should indeed add .c files to makefiles or they won't be built
6597           (d'oh)
6598
6599 2004-05-08  Benjamin Otte  <otte@gnome.org>
6600
6601         * gst/gstpad.c: (gst_pad_proxy_fixate):
6602           really reduce the set of caps
6603
6604 2004-05-08  Benjamin Otte  <otte@gnome.org>
6605
6606         * tests/Makefile.am:
6607         * tests/spidey_bench.c: (handoff), (main):
6608           add benchmark to test how long spider needs to create a pipeline
6609
6610 2004-05-08  Benjamin Otte  <otte@gnome.org>
6611
6612         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_unnegotiate):
6613           mark links as unengaged when unnegotiating instead of deactivating.
6614           This way pads aren't marked as unengaged when going PLAYING=>PAUSED
6615
6616 2004-05-08  Benjamin Otte  <otte@gnome.org>
6617
6618         * docs/manual/helloworld.xml:
6619           s/audiosink/osssink (patch by Patrick Guimond)
6620
6621 2004-05-07  David Schleef  <ds@schleef.org>
6622
6623         * configure.ac: Make sure GST_INT_CFLAGS is not clobbered,
6624         since it contains important stuff.
6625
6626 2004-05-07  David Schleef  <ds@schleef.org>
6627
6628         * testsuite/caps/caps.c: (test3), (main): A check for appending
6629         ANY caps.
6630
6631 2004-05-07  David Schleef  <ds@schleef.org>
6632
6633         * common/m4/as-compiler-flag.m4: Properly quote arguments,
6634         which may contain commas.  Fixes detection of -Wa,-mregnames
6635
6636 2004-05-06  David Schleef  <ds@schleef.org>
6637
6638         Changes to handle compilers that don't have variadic macro
6639         support.  In particular, glib headers define some inlines
6640         that need G_LOG_DOMAIN defined.  Additional fixes for MSVC
6641         builds.
6642         * gst/Makefile.am:
6643         * gst/cothreads.c:
6644         * gst/elements/gstfdsink.c:
6645         * gst/elements/gstfdsrc.c:
6646         * gst/elements/gstfilesink.c:
6647         * gst/elements/gstfilesrc.c:
6648         * gst/gst_private.h:
6649         * gst/gstatomic.c:
6650         * gst/gstcaps.c: (gst_caps_append):
6651         * gst/gstcpu.c: (gst_cpuid_i386):
6652         * gst/gstelement.c:
6653         * gst/gsterror.c:
6654         * gst/gstfilter.c:
6655         * gst/gstinfo.h:
6656         * gst/gstprobe.c:
6657         * gst/gstquery.c:
6658         * gst/gstregistry.c:
6659         * gst/gststructure.c:
6660         * gst/gsttaginterface.c:
6661         * gst/gsttrace.c: (gst_trace_new):
6662         * gst/gsttrashstack.c:
6663         * gst/gsturi.c:
6664         * gst/gstvalue.c:
6665         * gst/parse/grammar.y:
6666         * gst/parse/parse.l:
6667         * tools/gst-inspect.c: (main):
6668         * tools/gst-launch.c: (main):
6669         * tools/gst-xmlinspect.c: (PUT_STRING):
6670
6671 2004-05-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6672
6673         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
6674         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
6675         * gst/elements/gstfilesrc.h:
6676           send NEW_MEDIA events correctly
6677         * gst/elements/gsttypefindelement.c: (start_typefinding),
6678         (gst_type_find_element_handle_event):
6679           restart typefinding when we get a NEW_MEDIA event
6680         * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_change_state),
6681         (gst_bin_dispose):
6682           don't die when someone removes elements in callbacks
6683         * gst/gstelement.c: (gst_element_change_state):
6684           improve debugging
6685         * gst/gstpad.c: (gst_pad_pull), (gst_pad_call_chain_function):
6686           we need a NEW_MEDIA event to engage a link
6687         * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
6688           don't g_print debugging stuff
6689         * testsuite/caps/simplify.c: (check_caps):
6690
6691 2004-05-04  Benjamin Otte  <otte@gnome.org>
6692
6693         * gst/parse/grammar.y:
6694           use GST_ERROR instead of g_warning, and always throw a GST_ERROR 
6695
6696 2004-05-04  Benjamin Otte  <otte@gnome.org>
6697
6698         * testsuite/caps/renegotiate.c: (main):
6699           improve output in error case
6700
6701 2004-05-04  Benjamin Otte  <otte@gnome.org>
6702
6703         * gst/parse/grammar.y:
6704           fix assert to not trigger when there's no error argument
6705         * gst/parse/parse.l:
6706           fix definition of caps to allow more than two structures
6707         * testsuite/caps/Makefile.am:
6708         * testsuite/caps/renegotiate.c: (main):
6709           it's sinesrc and works in that case
6710
6711 2004-05-04  Wim Taymans  <wim@fluendo.com>
6712
6713         * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
6714         (group_dec_link), (gst_opt_scheduler_pad_unlink):
6715         when removing an element from a group, we always need to
6716         decrement the link count that this group had with other 
6717         groups through the element.
6718         added an extra assert to catch inconsistencies when decrementing
6719         the link count.
6720
6721 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
6722
6723         * configure.ac:
6724         * docs/gst/Makefile.am:
6725         * docs/gst/gstreamer-sections.txt:
6726         * docs/gst/tmpl/gstcompat.sgml:
6727         * examples/appreader/Makefile.am:
6728         * examples/cutter/Makefile.am:
6729         * examples/events/Makefile.am:
6730         * examples/helloworld/Makefile.am:
6731         * examples/helloworld2/Makefile.am:
6732         * examples/launch/Makefile.am:
6733         * examples/manual/Makefile.am:
6734         * examples/mixer/Makefile.am:
6735         * examples/pingpong/Makefile.am:
6736         * examples/plugins/Makefile.am:
6737         * examples/queue/Makefile.am:
6738         * examples/queue2/Makefile.am:
6739         * examples/queue3/Makefile.am:
6740         * examples/queue4/Makefile.am:
6741         * examples/retag/Makefile.am:
6742         * examples/thread/Makefile.am:
6743         * examples/typefind/Makefile.am:
6744         * examples/xml/Makefile.am:
6745         * gst/Makefile.am:
6746         * gst/autoplug/Makefile.am:
6747         * gst/elements/Makefile.am:
6748         * gst/gstcompat.h:
6749         * gst/indexers/Makefile.am:
6750         * gst/parse/Makefile.am:
6751         * gst/registries/Makefile.am:
6752         * gst/schedulers/Makefile.am:
6753         * libs/gst/bytestream/Makefile.am:
6754         * libs/gst/control/Makefile.am:
6755         * libs/gst/getbits/Makefile.am:
6756         * po/af.po:
6757         * po/az.po:
6758         * po/en_GB.po:
6759         * po/fr.po:
6760         * po/nl.po:
6761         * po/sr.po:
6762         * po/sv.po:
6763         * po/tr.po:
6764         * po/uk.po:
6765         * tests/Makefile.am:
6766         * tests/bufspeed/Makefile.am:
6767         * tests/instantiate/Makefile.am:
6768         * tests/memchunk/Makefile.am:
6769         * tests/muxing/Makefile.am:
6770         * tests/negotiation/Makefile.am:
6771         * tests/probes/Makefile.am:
6772         * tests/sched/Makefile.am:
6773         * tests/seeking/Makefile.am:
6774         * tests/threadstate/Makefile.am:
6775         * testsuite/caps/Makefile.am:
6776         * testsuite/cleanup/Makefile.am:
6777         * testsuite/dlopen/Makefile.am:
6778         * testsuite/dynparams/Makefile.am:
6779         * testsuite/plugin/Makefile.am:
6780         * testsuite/states/Makefile.am:
6781         * tools/Makefile.am:
6782           reorganize compile/link flags to be consistent
6783           put gst_info in gstcompat.h and actually use GST_DISABLE_DEPRECATED
6784
6785 2004-05-04  David Schleef  <ds@schleef.org>
6786
6787         The "once more, with feeling" check-in.
6788         * testsuite/caps/Makefile.am: dist caps_strings
6789         * testsuite/caps/renegotiate.c: (main): This test triggers a
6790           segfault in the core.  Marking as failing.
6791
6792 2004-05-03  David Schleef  <ds@schleef.org>
6793
6794         * testsuite/caps/deserialize.c: (main): Fix problems noticed
6795           by the build bots.
6796         * testsuite/caps/renegotiate.c: (main): Same.
6797
6798 2004-05-03  David Schleef  <ds@schleef.org>
6799
6800         * testsuite/caps/renegotiate.c: (my_fixate), (main): Another test.
6801
6802 2004-05-03  David Schleef  <ds@schleef.org>
6803
6804         * testsuite/caps/deserialize.c: (main): Use the srcdir environment
6805           variable to find our source file.
6806
6807 2004-05-03  David Schleef  <ds@schleef.org>
6808
6809         * configure.ac:  Link plugins with libgstreamer and dependent
6810           libraries
6811         * testsuite/caps/Makefile.am:
6812         * testsuite/caps/caps_strings:
6813         * testsuite/caps/deserialize.c: (main): Add a little test to slog
6814           through a file of caps strings and test each one
6815
6816 2004-05-04  Benjamin Otte  <otte@gnome.org>
6817
6818         * libs/gst/bytestream/Makefile.am:
6819         * libs/gst/bytestream/adapter.c: 
6820         * libs/gst/bytestream/adapter.h:
6821           add GstAdapter, similar to bytestream, but doesn't require ugly event
6822           handling or uglier loopbased elements
6823
6824 2004-05-03  David Schleef  <ds@schleef.org>
6825
6826         * testsuite/caps/Makefile.am: Fix spelling of Ηρατοσθενες
6827         * testsuite/caps/erathostenes.c:
6828         * testsuite/caps/eratosthenes.c: (eratosthenes), (main):
6829
6830 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6831
6832         * docs/pwg/pwg.xml:
6833           remove hardcoded stylesheet path (duh)
6834         * docs/random/release:
6835         * docs/gst/gstreamer-sections.txt:
6836         * gst/Makefile.am:
6837         * gst/gst.h:
6838         * gst/gst_private.h:
6839         * gst/gstcaps.c:
6840         * gst/gstevent.c:
6841         * gst/gstformat.c:
6842         * gst/gstinfo.c:
6843         * gst/gstinfo.h:
6844         * gst/gstinterface.c:
6845         * gst/gstmemchunk.c:
6846         * gst/gstprobe.c:
6847         * gst/gstquery.c:
6848         * gst/gstregistry.c:
6849         * gst/gstregistrypool.c:
6850         * gst/gststructure.c:
6851         * gst/gsttaginterface.c:
6852         * gst/gstthread.c:
6853         * gst/gsttrace.c:
6854         * gst/gsttypefind.c: (gst_type_find_factory_get_type):
6855         * gst/gsturi.c:
6856         * gst/gstvalue.c:
6857           deprecate gst_info; remove gstlog.h
6858    
6859
6860 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6861
6862         * Makefile.am:
6863         * po/en_GB.po:
6864         * po/sv.po:
6865         * po/uk.po:
6866           updated translations
6867
6868 2004-05-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6869
6870         * gst/gstbin.c: (gst_bin_dispose):
6871           better debugging
6872
6873 2004-05-03  Johan Dahlin  <johan@gnome.org>
6874
6875         * gst/schedulers/gstoptimalscheduler.c
6876         (gst_opt_scheduler_pad_unlink): Check if element is non-NULL and
6877         really is a GstElement. Avoids critical when running gst-launch -v
6878         and a oggdemux/decoding pipeline.
6879
6880 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6881
6882         * docs/gst/tmpl/gstpipeline.sgml :
6883         * docs/manual/elements-api.xml :
6884                 doc fix by Patrick Guimond (Protector) from devel ML
6885                 reviewed by ronald
6886
6887 2004-05-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6888
6889         * docs/gst/Makefile.am :
6890         * docs/libs/Makefile.am :
6891                 apply a patch from Arwed v. Merkatz so that gtk-doc
6892                 generated docs install (same for .devhelp file)
6893                 (fixes part 1 of #138836)
6894
6895 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6896
6897         * docs/faq/dependencies.xml: typo
6898         * docs/faq/getting.xml :
6899             - fix download URL for new gstreamer site
6900             - hide sf.net download page as latest version aren't there
6901             - fix apt URLs
6902             - fill "get via CVS" paragraph (link to dev page on the site)
6903         * docs/faq/general.xml:
6904             hide status tables as they no more exists
6905             change case on plugins license file to reflect reality
6906         * docs/faq/troubleshooting.xml:
6907             remove the wiki question/answer as there is no more wiki
6908
6909 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
6910
6911         * gst/gsterror.h:
6912           include the headers needed for declarations used in this header
6913
6914 2004-04-30  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6915
6916         * docs/random/uraeus/gstreamer_and_midi.txt :
6917           add .kar (midi + karaoke/lyrics 'track') doc to midi doc.
6918           (fixes #132288)
6919
6920 2004-04-30  Sebastien Cote  <sc5@hermes.usherb.ca>
6921
6922         reviewed by Benjamin Otte  <otte@gnome.org>
6923
6924         * gst/schedulers/gthread-cothreads.h:
6925           free allocated data for main cothread, too when destroying context
6926           (fixes #141417)
6927
6928 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
6929
6930         * docs/manual/goals.xml : remove duplicated paragraph at end 
6931         of doc page (fixes #141448)
6932
6933 2004-04-29  David Schleef  <ds@schleef.org>
6934
6935         * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
6936         Patch from Sebastien Cote to fix leakage of events. (bug #141414)
6937
6938 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
6939
6940         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
6941           fix property
6942         * gst/gstcaps.c:
6943           fix doc string
6944         * po/POTFILES.in:
6945           rename typefind source file
6946
6947 2004-04-28  David Schleef  <ds@schleef.org>
6948
6949         Several new files from Steve Lhomme's MSVC patch (bug #141317):
6950         * win32/GStreamer.vcproj:
6951         * win32/Makefile:
6952         * win32/config.h:
6953         * win32/dirent.c: (_topendir), (_treaddir), (_tclosedir),
6954         (_trewinddir), (_ttelldir), (_tseekdir):
6955         * win32/dirent.h:
6956         * win32/gst-inspect.vcproj:
6957         * win32/gst-launch.vcproj:
6958         * win32/gst-register.vcproj:
6959         * win32/gstbytestream.vcproj:
6960         * win32/gstelements.vcproj:
6961         * win32/gstoptimalscheduler.vcproj:
6962         * win32/gstspider.vcproj:
6963         * win32/gtchar.h:
6964         * win32/mman.c: (mmap), (mprotect), (msync), (munmap):
6965         * win32/mman.h:
6966         * win32/mman.inl:
6967         * win32/msvc71.sln:
6968
6969 2004-04-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
6970
6971         * gst/gst.c: (init_post):
6972         * gst/gstinfo.c:
6973           remove useless _gst_progname stuff
6974         * tools/gst-inspect.c: (print_field), (print_caps):
6975           improve caps output
6976
6977 2004-04-28  David Schleef  <ds@schleef.org>
6978
6979         Disable parsing of a lot of files that aren't part of the
6980         exported API.  Move corresponding template files to old/,
6981         waiting for removal when they don't contain anything
6982         interesting.
6983         * docs/gst/Makefile.am:
6984         * docs/gst/gstreamer-sections.txt:
6985         * docs/gst/tmpl/cothreads.sgml:
6986         * docs/gst/tmpl/cothreads_compat.sgml:
6987         * docs/gst/tmpl/gettext.sgml:
6988         * docs/gst/tmpl/gobject2gtk.sgml:
6989         * docs/gst/tmpl/grammar.tab.sgml:
6990         * docs/gst/tmpl/gst-i18n-app.sgml:
6991         * docs/gst/tmpl/gst-i18n-lib.sgml:
6992         * docs/gst/tmpl/gst_private.sgml:
6993         * docs/gst/tmpl/gstaggregator.sgml:
6994         * docs/gst/tmpl/gstarch.sgml:
6995         * docs/gst/tmpl/gstatomic_impl.sgml:
6996         * docs/gst/tmpl/gstbufferstore.sgml:
6997         * docs/gst/tmpl/gstdata_private.sgml:
6998         * docs/gst/tmpl/gstdisksink.sgml:
6999         * docs/gst/tmpl/gstdisksrc.sgml:
7000         * docs/gst/tmpl/gstelementfactory.sgml:
7001         * docs/gst/tmpl/gstextratypes.sgml:
7002         * docs/gst/tmpl/gstfakesink.sgml:
7003         * docs/gst/tmpl/gstfakesrc.sgml:
7004         * docs/gst/tmpl/gstfdsink.sgml:
7005         * docs/gst/tmpl/gstfdsrc.sgml:
7006         * docs/gst/tmpl/gstfilesink.sgml:
7007         * docs/gst/tmpl/gstfilesrc.sgml:
7008         * docs/gst/tmpl/gsthttpsrc.sgml:
7009         * docs/gst/tmpl/gstidentity.sgml:
7010         * docs/gst/tmpl/gstindexfactory.sgml:
7011         * docs/gst/tmpl/gstmarshal.sgml:
7012         * docs/gst/tmpl/gstmd5sink.sgml:
7013         * docs/gst/tmpl/gstmultidisksrc.sgml:
7014         * docs/gst/tmpl/gstmultifilesrc.sgml:
7015         * docs/gst/tmpl/gstpadtemplate.sgml:
7016         * docs/gst/tmpl/gstpipefilter.sgml:
7017         * docs/gst/tmpl/gstschedulerfactory.sgml:
7018         * docs/gst/tmpl/gstsearchfuncs.sgml:
7019         * docs/gst/tmpl/gstshaper.sgml:
7020         * docs/gst/tmpl/gstspider.sgml:
7021         * docs/gst/tmpl/gstspideridentity.sgml:
7022         * docs/gst/tmpl/gststatistics.sgml:
7023         * docs/gst/tmpl/gsttee.sgml:
7024         * docs/gst/tmpl/gsttimecache.sgml:
7025         * docs/gst/tmpl/gsttypefind.sgml:
7026         * docs/gst/tmpl/gsttypefindfactory.sgml:
7027         * docs/gst/tmpl/gstxmlregistry.sgml:
7028         * docs/gst/tmpl/gthread-cothreads.sgml:
7029         * docs/gst/tmpl/old/cothreads.sgml:
7030         * docs/gst/tmpl/old/cothreads_compat.sgml:
7031         * docs/gst/tmpl/old/gettext.sgml:
7032         * docs/gst/tmpl/old/gobject2gtk.sgml:
7033         * docs/gst/tmpl/old/grammar.tab.sgml:
7034         * docs/gst/tmpl/old/gst-i18n-app.sgml:
7035         * docs/gst/tmpl/old/gst-i18n-lib.sgml:
7036         * docs/gst/tmpl/old/gst_private.sgml:
7037         * docs/gst/tmpl/old/gstaggregator.sgml:
7038         * docs/gst/tmpl/old/gstarch.sgml:
7039         * docs/gst/tmpl/old/gstatomic_impl.sgml:
7040         * docs/gst/tmpl/old/gstbufferstore.sgml:
7041         * docs/gst/tmpl/old/gstdata_private.sgml:
7042         * docs/gst/tmpl/old/gstdisksink.sgml:
7043         * docs/gst/tmpl/old/gstdisksrc.sgml:
7044         * docs/gst/tmpl/old/gstelementfactory.sgml:
7045         * docs/gst/tmpl/old/gstextratypes.sgml:
7046         * docs/gst/tmpl/old/gstfakesink.sgml:
7047         * docs/gst/tmpl/old/gstfakesrc.sgml:
7048         * docs/gst/tmpl/old/gstfdsink.sgml:
7049         * docs/gst/tmpl/old/gstfdsrc.sgml:
7050         * docs/gst/tmpl/old/gstfilesink.sgml:
7051         * docs/gst/tmpl/old/gstfilesrc.sgml:
7052         * docs/gst/tmpl/old/gsthttpsrc.sgml:
7053         * docs/gst/tmpl/old/gstidentity.sgml:
7054         * docs/gst/tmpl/old/gstindexfactory.sgml:
7055         * docs/gst/tmpl/old/gstmarshal.sgml:
7056         * docs/gst/tmpl/old/gstmd5sink.sgml:
7057         * docs/gst/tmpl/old/gstmultidisksrc.sgml:
7058         * docs/gst/tmpl/old/gstmultifilesrc.sgml:
7059         * docs/gst/tmpl/old/gstpadtemplate.sgml:
7060         * docs/gst/tmpl/old/gstpipefilter.sgml:
7061         * docs/gst/tmpl/old/gstschedulerfactory.sgml:
7062         * docs/gst/tmpl/old/gstsearchfuncs.sgml:
7063         * docs/gst/tmpl/old/gstshaper.sgml:
7064         * docs/gst/tmpl/old/gstspider.sgml:
7065         * docs/gst/tmpl/old/gstspideridentity.sgml:
7066         * docs/gst/tmpl/old/gststatistics.sgml:
7067         * docs/gst/tmpl/old/gsttee.sgml:
7068         * docs/gst/tmpl/old/gsttimecache.sgml:
7069         * docs/gst/tmpl/old/gsttypefindfactory.sgml:
7070         * docs/gst/tmpl/old/gstxmlregistry.sgml:
7071         * docs/gst/tmpl/old/gthread-cothreads.sgml:
7072         * docs/gst/tmpl/old/types.sgml:
7073         * docs/gst/tmpl/types.sgml:
7074
7075         Rename gsttypefind.[ch] back to gsttypefindelement.[ch], since
7076         gtkdoc-scan doesn't like files with the same name in different
7077         directories.
7078         * gst/elements/Makefile.am:
7079         * gst/elements/gstelements.c:
7080         * gst/elements/gsttypefind.c: 
7081         * gst/elements/gsttypefind.h:
7082         * gst/elements/gsttypefindelement.c:
7083         * gst/elements/gsttypefindelement.h:
7084
7085 2004-04-28  David Schleef  <ds@schleef.org>
7086
7087         A bunch of portability fixes, derived from Steve Lhomme's MSVC
7088         patch (bug #141317):
7089         * gst/gst-i18n-lib.h: Allow disabling gettext.
7090         * gst/gstatomic_impl.h: disable warning when it's dumb.
7091         * gst/gstclock.c: fix include
7092         * gst/gstcompat.h: fix variadic macro
7093         * gst/gstinfo.c: fix include
7094         * gst/gstmacros.h: add defines for inlines on MSVC
7095         * gst/gstplugin.c: fix includes
7096         * gst/gstregistry.c: fix includes
7097         * gst/gstregistry.h: use S_IREAD, etc., if S_IRUSR isn't defined
7098         * gst/gstsystemclock.c: fix include
7099         * gst/gsttrace.c: (gst_trace_new), (gst_trace_text_flush): use
7100         S_IREAD if S_IRUSR isn't defined.  fix use of non-portable functions
7101         * gst/registries/gstxmlregistry.c:
7102         (gst_xml_registry_parse_element_factory): fix use of non-portable
7103         functions
7104         * libs/gst/control/dparam.h: Remove trailing comma in enum definition
7105         * libs/gst/control/dparammanager.h: same
7106
7107 2004-04-28  David Schleef  <ds@schleef.org>
7108
7109         Move a bunch of unused files to old/ with names that are
7110         not case-insensitive-unique.  These files still contain some
7111         useful information that needs to be merged into gstbin.sgml,
7112         etc., so they shouldn't be deleted yet.
7113         * docs/gst/tmpl/GstBin.sgml:
7114         * docs/gst/tmpl/GstBuffer.sgml:
7115         * docs/gst/tmpl/GstCaps.sgml:
7116         * docs/gst/tmpl/GstClock.sgml:
7117         * docs/gst/tmpl/GstCompat.sgml:
7118         * docs/gst/tmpl/GstData.sgml:
7119         * docs/gst/tmpl/GstElement.sgml:
7120         * docs/gst/tmpl/GstEvent.sgml:
7121         * docs/gst/tmpl/GstIndex.sgml:
7122         * docs/gst/tmpl/GstStructure.sgml:
7123         * docs/gst/tmpl/GstTag.sgml:
7124         * docs/gst/tmpl/old/GstBin.sgml:
7125         * docs/gst/tmpl/old/GstBuffer.sgml:
7126         * docs/gst/tmpl/old/GstCaps.sgml:
7127         * docs/gst/tmpl/old/GstClock.sgml:
7128         * docs/gst/tmpl/old/GstCompat.sgml:
7129         * docs/gst/tmpl/old/GstData.sgml:
7130         * docs/gst/tmpl/old/GstElement.sgml:
7131         * docs/gst/tmpl/old/GstEvent.sgml:
7132         * docs/gst/tmpl/old/GstIndex.sgml:
7133         * docs/gst/tmpl/old/GstStructure.sgml:
7134         * docs/gst/tmpl/old/GstTag.sgml:
7135
7136 2004-04-28  David Schleef  <ds@schleef.org>
7137
7138         * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
7139         (gst_caps_append), (gst_caps_append_structure),
7140         (gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
7141         (gst_caps_set_simple), (gst_caps_set_simple_valist),
7142         (gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
7143         (gst_caps_is_fixed), (gst_caps_is_always_compatible),
7144         (gst_caps_intersect), (gst_caps_normalize),
7145         (gst_caps_transform_to_string):  Patch from Tim-Philipp Müller
7146         to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
7147         * gst/gstcaps.h: use GST_IS_CAPS().
7148
7149 2004-04-26  David Schleef  <ds@schleef.org>
7150
7151         * gst/gstcpu.c: (gst_cpuid_i386): Don't clobber ebx in inline
7152         assembly.  gcc doesn't handle it correctly. (bug #141083)
7153         * gst/gsttrashstack.h: same
7154
7155 2004-04-25  Benjamin Otte  <otte@gnome.org>
7156
7157         * gst/gstelement.c: (gst_element_change_state):
7158           fix assertion to do an int comparison
7159
7160 2004-04-25  Benjamin Otte  <otte@gnome.org>
7161
7162         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
7163           better debugging output on error
7164
7165 2004-04-25  Benjamin Otte  <otte@gnome.org>
7166
7167         * gst/gstcaps.c: (gst_caps_subtract):
7168           fix memleak
7169
7170 2004-04-23  Benjamin Otte  <otte@gnome.org>
7171
7172         * gst/gstvalue.c: (gst_value_compare_buffer),
7173         (_gst_value_initialize):
7174           add comparison function for buffers
7175
7176 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7177
7178         * docs/pwg/pwg.xml:
7179           Just found out that this so-called "ima-wav" format is really
7180           just "dvi adpcm" (according to the MS WAV documentation). So
7181           renaming it. We didn't use it yet anyway.
7182
7183 2004-04-23  Benjamin Otte  <otte@gnome.org>
7184
7185         * gst/gstcaps.c: (gst_caps_is_always_compatible):
7186           call gst_caps_is_subset
7187
7188 2004-04-23  Benjamin Otte  <otte@gnome.org>
7189
7190         * gst/gstcaps.c: (gst_caps_subtract), (gst_caps_is_equal), 
7191         (gst_caps_is_subset):
7192           add documentation
7193
7194 2004-04-23  Benjamin Otte  <otte@gnome.org>
7195           
7196         * gst/gstcaps.c: (gst_caps_structure_subtract_field),
7197         (gst_caps_structure_subtract), (gst_caps_subtract),
7198         (gst_caps_structure_figure_out_union),
7199         (gst_caps_structure_simplify), (gst_caps_do_simplify):
7200           fix simplifying and subtracting not working correctly with optional
7201           properties
7202           solve assorted problems that make it now simplify ebven more
7203         * docs/gst/tmpl/gstcaps.sgml:
7204         * gst/gstcaps.h:
7205           make gst_caps_do_simplify return a bool to indicate if it simplified
7206         * testsuite/caps/simplify.c: (main):
7207           add more checks. The tests is quite a bit useless right now because
7208           the core is heavily simplifying itself.
7209         * testsuite/caps/caps.h:
7210           fix caps to contain all optional properties
7211
7212 2004-04-22  Benjamin Otte  <otte@gnome.org>
7213
7214         * docs/gst/tmpl/gstcaps.sgml:
7215         * docs/gst/tmpl/gstfilesrc.sgml:
7216         * docs/gst/tmpl/gststructure.sgml:
7217         * docs/gst/tmpl/gstvalue.sgml:
7218           update for recent API changes
7219         * gst/gstcaps.c: (gst_caps_do_simplify):
7220           fix to stop trying with a freed structure
7221         * gst/gstpad.c: (gst_pad_link_fixate):
7222           simplify caps
7223         * gst/gstpad.c: (gst_pad_template_get_caps_by_name):
7224           remove C++ comment
7225         * gst/gstpad.h:
7226           deprecate gst_pad_template_get_caps_by_name, it doesn't work anyway
7227         * gst/gststructure.c: (gst_structure_value_get_generic_type),
7228         (gst_structure_to_string):
7229           keep the correct type when using lists of ranges
7230         * gst/gstvalue.c: (gst_value_list_prepend_value),
7231         (gst_value_list_append_value):
7232           copy the value before adding to the list (d'oh)
7233         * gst/gstvalue.c: (gst_value_subtract_int_range_int),
7234         (gst_value_subtract_int_range_int_range):
7235           handle overflows correctly
7236         * gst/gstvalue.c: (gst_value_subtract_from_list):
7237           fix memleak
7238         * testsuite/caps/caps.h:
7239           add a caps that caused segfaults
7240
7241 2004-04-22  Benjamin Otte  <otte@gnome.org>
7242
7243         * testsuite/refcounting/pad.c: (main):
7244           fix test
7245
7246 2004-04-22  Benjamin Otte  <otte@gnome.org>
7247
7248         * gst/gstcaps.c: (gst_caps_subtract):
7249           allow subtracting ANY and EMPTY from ANY caps
7250
7251 2004-04-22  Benjamin Otte  <otte@gnome.org>
7252
7253         * gst/gstcaps.c: (gst_caps_append), (gst_caps_intersect),
7254         (gst_caps_union):
7255           only simplify in functions that create new caps. Simplifying in
7256           gst_caps_append breaks tests.
7257
7258 2004-04-22  Benjamin Otte  <otte@gnome.org>
7259
7260         * gst/gstcaps.c: (gst_caps_structure_simplify):
7261           unset GValue after use
7262         * gst/gstcaps.c: (gst_caps_append), 
7263         * gst/gstpad.c: (gst_pad_link_fixate), (gst_pad_template_new):
7264           use gst_caps_simplify (reduces registry size by 30%)
7265         * gst/gstpad.c: (gst_pad_template_new):
7266           don't allow NULL caps
7267
7268 2004-04-22  Benjamin Otte  <otte@gnome.org>
7269
7270         * docs/gst/gstreamer-sections.txt:
7271           add gst_caps_do_simplify
7272         * gst/gstcaps.c:
7273           add documentation for gst_caps_do_simplify
7274         * gst/gstvalue.h:
7275           fix typo in gst_value_register_subtract_func declaration for gst-doc
7276
7277 2004-04-22  Benjamin Otte  <otte@gnome.org>
7278
7279         * gst/gstcaps.c: (gst_caps_from_string_inplace):
7280           fix bug when converting from empty string.
7281         * gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
7282         (gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
7283           use gst_caps_new_empty to allocate a new caps. Only that function
7284           allocates memory for caps now.
7285         * gst/gstcaps.c: (gst_caps_remove_and_get_structure),
7286         (gst_caps_remove_structure):
7287           add ability to remove one structure (but not to header yet)
7288         * gst/gstcaps.c: (gst_caps_compare_structures),
7289         (gst_caps_simplify), (gst_caps_structure_figure_out_union),
7290         (gst_caps_structure_simplify), (gst_caps_do_simplify),
7291         * gst/gstcaps.h:
7292           add gst_caps_do_simplify that tries to simplify a caps in place.
7293           Deprecate old gst_caps_simplify function.
7294         * testsuite/caps/caps.h:
7295           add caps.h containing a common set of caps to test against.
7296         * testsuite/caps/sets.c: (check_caps), (main):
7297           use it.
7298         * testsuite/caps/.cvsignore:
7299         * testsuite/caps/Makefile.am:
7300         * testsuite/caps/simplify.c: (check_caps), (main):
7301           add test to check correctness and efficency of caps simplification.
7302
7303 2004-04-22  Sebastien Cote <sc5@hermes.usherb.ca>
7304
7305         reviewed by Benjamin Otte  <otte@gnome.org>
7306
7307         * gst/gstparse.c: (_gst_parse_escape):
7308           Free the GString used in _gst_parse_escape()
7309
7310 2004-04-21  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7311
7312         * gst/gstpad.c: (gst_pad_link_negotiate):
7313           refuse to link if the link is not possible
7314         * configure.ac:
7315         * testsuite/Makefile.am:
7316         * testsuite/negotiation/.cvsignore:
7317         * testsuite/negotiation/Makefile.am:
7318         * testsuite/negotiation/pad_link.c: (main):
7319           add test that checks the above behaviour
7320
7321 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7322
7323         * docs/gst/gstreamer-sections.txt:
7324           add newly added API
7325
7326 2004-04-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7327
7328         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
7329         (gst_filesrc_get_mmap), (gst_filesrc_get_read), (gst_filesrc_get),
7330         (gst_filesrc_open_file), (gst_filesrc_close_file),
7331         (gst_filesrc_srcpad_query), (gst_filesrc_srcpad_event):
7332         * gst/elements/gstfilesrc.h:
7333           add support for non-regular files (#140734)
7334
7335 2004-04-21  Benjamin Otte  <otte@gnome.org>
7336
7337         * gst/gstpad.c: (gst_pad_link_fixate):
7338           add sophisticated error checking code to see if fixation functions
7339           did their fixation right
7340
7341 2004-04-21  Benjamin Otte  <otte@gnome.org>
7342
7343         * gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
7344           check for ANY caps before appending/unioning
7345         * gst/gstcaps.c: (gst_caps_is_subset),
7346         (gst_caps_is_equal), (gst_caps_structure_subtract_field),
7347         (gst_caps_structure_subtract), (gst_caps_subtract):
7348         * gst/gstcaps.h:
7349           add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
7350           the API. deprecate gst_caps_is_equal_fixed
7351         * gst/gstpad.c: (gst_pad_try_set_caps):
7352         * gst/gstqueue.c: (gst_queue_link):
7353           s/gst_caps_is_equal_fixed/gst_caps_is_equal/
7354         * gst/gststructure.c: (gst_structure_get_name_id):
7355         * gst/gststructure.h:
7356           add function gst_structure_get_name_id
7357         * gst/gstvalue.c: (gst_value_subtract_int_int_range),
7358         (gst_value_create_new_range), (gst_value_subtract_int_range_int),
7359         (gst_value_subtract_int_range_int_range),
7360         (gst_value_subtract_double_double_range),
7361         (gst_value_subtract_double_range_double),
7362         (gst_value_subtract_double_range_double_range),
7363         (gst_value_subtract_from_list), (gst_value_subtract_list),
7364         (gst_value_can_intersect), (gst_value_subtract),
7365         (gst_value_can_subtract), (gst_value_register_subtract_func),
7366         (_gst_value_initialize):
7367         * gst/gstvalue.h:
7368           add support for subtracting values from each other. Note that
7369           subtracting means subtracting as in set theory. Required for caps
7370           stuff above.
7371         * testsuite/caps/.cvsignore:
7372         * testsuite/caps/Makefile.am:
7373         * testsuite/caps/erathostenes.c: (erathostenes), (main):
7374         * testsuite/caps/sets.c: (check_caps), (main):
7375         * testsuite/caps/subtract.c: (check_caps), (main):
7376           add tests for subtraction and equality code.
7377
7378 2004-04-20  David Schleef  <ds@schleef.org>
7379
7380         * gst/autoplug/Makefile.am:  Fix some little buglets in last checkin.
7381         * gst/indexers/Makefile.am:
7382         * gst/schedulers/Makefile.am:
7383         * libs/gst/bytestream/Makefile.am:
7384         * libs/gst/control/Makefile.am:
7385         * libs/gst/getbits/Makefile.am:
7386
7387 2004-04-20  David Schleef  <ds@schleef.org>
7388
7389         * common/as-libtool.mak: Fine-tune DLL building.
7390         * configure.ac: Link plugins against libgstreamer.  Define plugindir
7391         (like gst-plugins)
7392         * examples/plugins/Makefile.am: remove plugindir
7393         * gst/autoplug/Makefile.am: DLL building fixes
7394         * gst/elements/Makefile.am: DLL building fixes.  Disable pipefilter on
7395         Windows.
7396         * gst/elements/gstelements.c: Conditionally disable pipefilter.
7397         * gst/indexers/Makefile.am: DLL building fixes
7398         * gst/schedulers/Makefile.am: DLL building fixes.
7399         * libs/gst/bytestream/Makefile.am: DLL building fixes.
7400         * libs/gst/control/Makefile.am: same
7401         * libs/gst/getbits/Makefile.am: same
7402         * testsuite/Makefile.am: New dlopen directory
7403         * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works
7404         when dlopened.
7405         * testsuite/dlopen/dlopen_gst.c: (main): same
7406         * testsuite/dlopen/loadgst.c: (do_test): same
7407
7408 2004-04-20  David Schleef  <ds@schleef.org>
7409
7410         * gst/parse/grammar.y:  Apply patch from Sebastien Cote
7411         <sc5@hermes.usherb.ca> to fix a memleak. (bug #140594)
7412
7413 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7414
7415         * gst/gstelement.c: (gst_element_wait),
7416         (gst_element_set_time_delay), (gst_element_change_state):
7417           Use GST_TIME_*
7418
7419 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7420
7421         * gst/autoplug/gstspider.c: (gst_spider_link_sometimes),
7422         (gst_spider_identity_plug):
7423           improve debugging messages
7424         * gst/gstbin.c: (gst_bin_remove_func):
7425           make sure the state_change function is only called with simple state
7426           transitions
7427
7428 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7429
7430         * gst/elements/gstfakesink.c: (gst_fakesink_state_error_get_type),
7431         (gst_fakesink_set_property), (gst_fakesink_chain):
7432         * gst/elements/gstfakesrc.c: (gst_fakesrc_set_property):
7433         * gst/elements/gstfdsrc.c: (gst_fdsrc_set_property):
7434         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property):
7435         * gst/elements/gstidentity.c: (gst_identity_chain),
7436         (gst_identity_set_property):
7437         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_set_property):
7438         * gst/elements/gstpipefilter.c: (gst_pipefilter_set_property):
7439           add warnings to _set_property for unknown arguments
7440           use GST_TIME_FORMAT/GST_TIME_ARGS for timestamp printing
7441
7442 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7443
7444         * Makefile.am:
7445         * docs/manuals.mak:
7446           add .po file download snippet
7447           fix a bug in the doc makefile
7448
7449 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7450
7451         * Makefile.am:
7452         * po/LINGUAS:
7453         * po/en_GB.po:
7454           Added en_GB translation (Gareth Owen)
7455
7456 2004-04-20  Johan Dahlin  <johan@gnome.org>
7457
7458         * gst/gstpad.c (_invent_event): Clean up
7459
7460 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7461
7462         * testsuite/caps/filtercaps.c: (main):
7463           fix test to test things correctly (caps are complicated)
7464
7465 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7466
7467         * testsuite/caps/Makefile.am:
7468         * testsuite/caps/filtercaps.c: (main):
7469           add test (that doesn't work right now, but should)
7470
7471 2004-04-19  David Schleef  <ds@schleef.org>
7472
7473         * configure.ac: Add test for allowing unaligned access.  Add define
7474         to put in gstconfig.h.
7475         * docs/gst/gstreamer-sections.txt: New symbols
7476         * docs/gst/tmpl/gstcompat.sgml: Check in changes made by gtkdoc
7477         * docs/gst/tmpl/gstfilesrc.sgml:
7478         * docs/gst/tmpl/gstparse.sgml:
7479         * docs/gst/tmpl/gsttypes.sgml:
7480         * docs/gst/tmpl/gstutils.sgml:
7481         * docs/gst/tmpl/gstvalue.sgml:
7482         * gst/gstconfig.h.in: Add GST_HAVE_UNALIGNED_ACCESS
7483         * gst/gstutils.h: Add macros for unaligned memory access.  Useful
7484         on most !i386/!powerpc architectures.  From Daniel Gazard
7485         <daniel.gazard@free.fr>.  (bug #140156)
7486         * po/af.po: Check in changes made by gettext.
7487         * po/az.po:
7488         * po/fr.po:
7489         * po/nl.po:
7490         * po/sr.po:
7491         * po/sv.po:
7492
7493 2004-04-20  Benjamin Otte  <otte@gnome.org>
7494
7495         * gst/schedulers/entryscheduler.c: 
7496         (gst_entry_scheduler_yield):
7497           refuse to yield when decoupled elements insist on doing that.
7498           At least it's better than crashing
7499
7500 2004-04-19  David Schleef  <ds@schleef.org>
7501
7502         * docs/libs/Makefile.am: Change sinclude to include
7503         * docs/gst/Makefile.am: same
7504         * pkgconfig/Makefile.am:  Remove GNU-ism from makefile target
7505
7506 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
7507
7508         * po/LINGUAS:
7509         * po/uk.po:
7510           Added Ukrainian translation (Maxim V. Dziumanenko)
7511
7512 2004-04-19  Johan Dahlin  <johan@gnome.org>
7513
7514         * gst/parse/grammar.y (__gst_parse_chain_free): Don't do null
7515         checking here, do it before calling the function.
7516         Clean up, use for loops instead of while loops while iterating
7517         over lists.
7518
7519         * gst/autoplug/gstspider.c (gst_spider_request_new_pad): Fix typo
7520         in debug message.
7521         (gst_spider_create_and_plug): Improve debug message.
7522         General: Replace while loops which iterates over GLists with for
7523         loops. Which are much cleaner, improves readability, especially
7524         for gst_spider_identity_plug
7525
7526         * gst/gstpad.c (_invent_event): Fix parameters to warning macros,
7527         fixes bug 140477
7528
7529 2004-04-18  Thomas Vander Stichele  <thomas at apestaart dot org>
7530
7531         * po/LINGUAS:
7532         * po/tr.po:
7533           Added Turkish translation (Baris Cicek)
7534
7535 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7536
7537         * docs/faq/troubleshooting.xml:
7538           Mention gst-register in the FAQ (fixes 139045).
7539
7540 2004-04-17  Thomas Vander Stichele  <thomas at apestaart dot org>
7541
7542         * docs/gst/gstreamer-sections.txt:
7543
7544 2004-04-17  Benjamin Otte  <otte@gnome.org>
7545
7546         * gst/gstelement.c: (gst_element_dispose):
7547           simplify
7548         * gst/gstpad.c: (gst_pad_call_chain_function):
7549           don't create loads of events due to bad macro usage
7550
7551 2004-04-16  David Schleef  <ds@schleef.org>
7552
7553         * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
7554         * gst/gstpad.c: (_gst_pad_default_fixate_foreach):
7555         * gst/gstvalue.c: (gst_value_serialize_buffer),
7556         (gst_value_deserialize_buffer), (gst_type_is_fixed),
7557         (_gst_value_initialize): Create a new function gst_type_is_fixed()
7558         to indicate types that are fixed wrt caps or not.  Switching to
7559         this function fixes (bug #140298).
7560         * gst/gstvalue.h:
7561
7562 2004-04-16  David Schleef  <ds@schleef.org>
7563
7564         * common/m4/gst-arch.m4:  Implmenent a whitelist and blacklist
7565         for GST_UNALIGNED_ACESS, since we essentially know which archs
7566         are ok.
7567
7568 2004-04-17  Benjamin Otte  <otte@gnome.org>
7569
7570         * docs/gst/Makefile.am:
7571           ignore gst/parse directory when building docs (fixes #140205)
7572
7573 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
7574
7575         * testsuite/refcounting/mem.c: (vmsize):
7576           do error checking
7577
7578 2004-04-16  Johan Dahlin  <johan@gnome.org>
7579
7580         * docs/gst/gstreamer-sections.txt: Add gst_pad_call_chain_function
7581         and gst_pad_call_get_function.
7582
7583 2004-04-15  David Schleef  <ds@schleef.org>
7584
7585         * common/m4/gst-arch.m4: Add GST_UNALIGNED_ACCESS() macro that
7586         checks if we can access unaligned memory.
7587         * configure.ac: Use it.
7588
7589 2004-04-16  Benjamin Otte  <otte@gnome.org>
7590
7591         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get),
7592         (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
7593         * gst/elements/gstfilesrc.h:
7594           s/seek_happened/need_discont/ and require discont before sending any
7595           data
7596
7597 2004-04-15  David Schleef  <ds@schleef.org>
7598
7599         * gst/gstvalue.c: (gst_value_serialize_buffer),
7600         (gst_value_deserialize_buffer), (_gst_value_initialize):
7601         Register these types as fundamental types. (bug #140015)
7602
7603 2004-04-16  Benjamin Otte  <otte@gnome.org>
7604
7605         * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_new),
7606         (gst_pad_link_free), (gst_pad_link_try), (_invent_event),
7607         (gst_pad_pull):
7608           implement enforcing discont events before buffers are passed. This
7609           allows state changes of only some elements and later correctly going
7610           on where they left off (or in short: you can now set audio sinks to
7611           NULL to release the device when the pipeline is paused)
7612         * gst/gstpad.c: (gst_pad_call_chain_function),
7613         (gst_pad_call_get_function):
7614         * gst/gstpad.h:
7615           add gst_pad_call_chain_function and gst_pad_call_get_function for
7616           scheduler interaction. They are required because of the changes
7617           above.
7618         * gst/schedulers/entryscheduler.c: (get_buffer),
7619         (gst_entry_scheduler_chain_wrapper),
7620         (gst_entry_scheduler_get_wrapper),
7621         (gst_entry_scheduler_state_transition),
7622         (gst_entry_scheduler_pad_link):
7623         * gst/schedulers/gstbasicscheduler.c:
7624         (gst_basic_scheduler_chain_wrapper),
7625         (gst_basic_scheduler_src_wrapper),
7626         (gst_basic_scheduler_chainhandler_proxy),
7627         (gst_basic_scheduler_gethandler_proxy),
7628         (gst_basic_scheduler_cothreaded_chain),
7629         (gst_basic_scheduler_chain_elements):
7630         * gst/schedulers/gstoptimalscheduler.c:
7631         (get_group_schedule_function), (pad_clear_queued),
7632         (gst_opt_scheduler_pad_link):
7633           use the new functions instead of calling get/chain-functions
7634           directly.
7635
7636 2004-04-15  David Schleef  <ds@schleef.org>
7637
7638         * docs/gst/gstreamer-sections.txt: Remove deprecated symbols.
7639         * docs/gst/tmpl/gstinfo.sgml: same
7640         * docs/gst/tmpl/gstutils.sgml: Remove a bunch of bogus crap that
7641         gtk-doc put here.
7642         * gst/gstutils.h: Remove the \ that was confusing gtk-doc.
7643         * examples/queue/queue.c: (main):  We iterate pipelines, not
7644         bins.  (bug #139996)
7645
7646 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7647
7648         * docs/pwg/advanced-types.xml:
7649           Add MS RLE support. Also document Qt RLE although I have no sample
7650           files for that yet. And document an extra property for ADPCM.
7651
7652 2004-04-15  David Schleef  <ds@schleef.org>
7653
7654         * gst/gstplugin.c: (_gst_plugin_fault_handler_restore),
7655         (_gst_plugin_fault_handler_setup):  Disable more stuff on
7656         Windows.
7657
7658 2004-04-15  David Schleef  <ds@schleef.org>
7659
7660         * gst/gstinfo.c: (_gst_debug_init): Change some internal
7661         symbol names to not conflict with new gstinfo.h symbols.
7662         * gst/gstinfo.h: Add inline functions for all those crazy
7663         compilers that don't know how to handle variadic macros (MSVC).
7664
7665 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7666
7667         * configure.ac: bump nano to 1
7668
7669 === release 0.8.1 ===
7670
7671 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
7672
7673         * NEWS:
7674         * RELEASE:
7675         * configure.ac:
7676           releasing 0.8.1, "Snow Brigade"
7677
7678 2004-04-14  David Schleef  <ds@schleef.org>
7679
7680         * testsuite/Makefile.am: define tests_ignore
7681         * testsuite/Rules: Added new tests_ignore, which get compiled,
7682         but not run (generally because they're inconsistent or have
7683         heisenbugs).  Now we can ensure all the .c files compile in
7684         testsuite/.
7685         * testsuite/bins/Makefile.am: define tests_ignore
7686         * testsuite/bytestream/Makefile.am:
7687         * testsuite/caps/Makefile.am:
7688         * testsuite/clock/Makefile.am:
7689         * testsuite/debug/Makefile.am:
7690         * testsuite/debug/global.c: (gst_debug_log_one),
7691         (gst_debug_log_two): Fix compilation problem.
7692         * testsuite/dynparams/Makefile.am:
7693         * testsuite/elements/Makefile.am:
7694         * testsuite/ghostpads/Makefile.am:
7695         * testsuite/indexers/Makefile.am:
7696         * testsuite/parse/Makefile.am:
7697         * testsuite/plugin/Makefile.am:
7698         * testsuite/refcounting/Makefile.am:
7699         * testsuite/refcounting/element_pad.c: (main): Don't return leak
7700         results, because it's not calculated correctly.
7701         * testsuite/refcounting/pad.c: (main): same
7702         * testsuite/states/Makefile.am:
7703         * testsuite/tags/Makefile.am:
7704         * testsuite/threads/Makefile.am:
7705
7706 2004-04-14  David Schleef  <ds@schleef.org>
7707
7708         * gst/gstcpu.c: (gst_cpuid_i386): Add workaround for gcc-3.2
7709         generating bad code around the cpu detection asm code.
7710
7711 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7712
7713         * tools/gst-inspect.c: (print_element_info):
7714           print numeric version of rank as well, since we added some - 1
7715           rank values to elements
7716
7717 2004-04-13  David Schleef  <ds@schleef.org>
7718
7719         * configure.ac:  Disable various code when compiling for MinGW.
7720         * gst/elements/Makefile.am:
7721         * gst/elements/gstelements.c:
7722         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
7723         * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get):
7724         * gst/registries/gstxmlregistry.c: (make_dir):
7725
7726 2004-04-13  David Schleef  <ds@schleef.org>
7727
7728         * gst/Makefile.am:
7729         * gst/gstcpu.c: (gst_cpuid_i386): Convert asm source into inline
7730         assembly.
7731         * gst/gstcpuid_i386.s: remove
7732
7733 2004-04-13  David Schleef  <ds@schleef.org>
7734
7735         * docs/gst/tmpl/gstaggregator.sgml: Random checkin because gtk-doc
7736         seems to think it needs to be done.
7737         * docs/gst/tmpl/gstfakesink.sgml:
7738         * docs/gst/tmpl/gstfakesrc.sgml:
7739         * docs/gst/tmpl/gstfdsink.sgml:
7740         * docs/gst/tmpl/gstfdsrc.sgml:
7741         * docs/gst/tmpl/gstfilesink.sgml:
7742         * docs/gst/tmpl/gstfilesrc.sgml:
7743         * docs/gst/tmpl/gstidentity.sgml:
7744         * docs/gst/tmpl/gstmd5sink.sgml:
7745         * docs/gst/tmpl/gstmultifilesrc.sgml:
7746         * docs/gst/tmpl/gstpipefilter.sgml:
7747         * docs/gst/tmpl/gstshaper.sgml:
7748         * docs/gst/tmpl/gstspider.sgml:
7749         * docs/gst/tmpl/gstspideridentity.sgml:
7750         * docs/gst/tmpl/gststatistics.sgml:
7751         * docs/gst/tmpl/gsttee.sgml:
7752         * docs/gst/tmpl/gsttypefind.sgml:
7753         * docs/gst/tmpl/gstutils.sgml:
7754
7755 2004-04-13  David Schleef  <ds@schleef.org>
7756
7757         * configure.ac: Changes to remove POSIXisms (mmap in this case)
7758         and to build DLLs on Windows.
7759         * gst/Makefile.am:
7760         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
7761         (gst_filesrc_open_file):
7762         * gst/schedulers/Makefile.am:
7763
7764 2004-04-13  David Schleef  <ds@schleef.org>
7765
7766         * gst/gstcaps.c: (gst_caps_structure_fixate_field_nearest_int),
7767         (gst_caps_structure_fixate_field_nearest_double):  Fix bug in
7768         fixating lists.
7769
7770 2004-04-12  David Schleef  <ds@schleef.org>
7771
7772         * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
7773         (gst_buffer_free_chunk): Added gst_buffer_get_type() and changed
7774         to using it.
7775         * gst/gstbuffer.h: Changed GST_BUFFER_TYPE to gst_buffer_get_type()
7776         * gst/gstcaps.c: (gst_caps_is_fixed_foreach): Buffer is a fixed type
7777         * gst/gstpad.c: (_gst_pad_default_fixate_foreach): same
7778         * gst/gststructure.c: (gst_structure_set_valist),
7779         (gst_structure_from_abbr), (gst_structure_to_abbr): Add vararg
7780         support for buffers.
7781         * gst/gsttag.c: (gst_tag_register): Constify a prototype that was
7782         intended to be const.
7783         * gst/gsttag.h: same
7784         * gst/gstvalue.c: (gst_value_serialize_buffer),
7785         (gst_value_deserialize_buffer), (_gst_value_initialize):  Add code
7786         to (de)serialize buffers.
7787         * testsuite/caps/Makefile.am:  Add a bit of buffer testing
7788         * testsuite/caps/string-conversions.c: (main):
7789         * testsuite/caps/value_serialize.c: add new test
7790
7791 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
7792
7793         * docs/pwg/advanced-types.xml:
7794           Document MS video 1 (video/x-msvideocodec) mimetype/format.
7795
7796 2004-04-11  Benjamin Otte  <otte@gnome.org>
7797
7798         * gst/schedulers/gstbasicscheduler.c: (plugin_init):
7799           rename categories to basic_*
7800         * gst/schedulers/gstbasicscheduler.c: 
7801         (gst_basic_scheduler_chain_wrapper),
7802         (gst_basic_scheduler_chainhandler_proxy),
7803         (gst_basic_scheduler_gethandler_proxy),
7804         (gst_basic_scheduler_eventhandler_proxy):
7805           debugging category fixes - put common stuff in log category
7806         * gst/schedulers/gstbasicscheduler.c: 
7807         (gst_basic_scheduler_chain_elements):
7808           dirty fix: call gst_basic_scheduler_cothreaded_chain when already
7809           active and linking two active chains
7810
7811 2004-04-10  Benjamin Otte  <otte@gnome.org>
7812
7813         * docs/pwg/intro-preface.xml:
7814           fix dead links and remove reference to Wiki
7815
7816 2004-04-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7817
7818         * gst/schedulers/gstbasicscheduler.c:
7819           make sure we can switch back to the main function if we're still in
7820           the main function (supposed to fix #139617)
7821         * gst/schedulers/gthread-cothreads.h:
7822           don't throw an error when switching to the same cothread
7823
7824 2004-04-09  Benjamin Otte  <otte@gnome.org>
7825
7826         * gst/gstbin.c: (gst_bin_get_type):
7827         * gst/gstclock.c: (gst_clock_get_type):
7828         * gst/gstindex.c: (gst_index_get_type):
7829         * gst/gstobject.c: (gst_object_get_type),
7830         (gst_signal_object_get_type):
7831         * gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
7832         (gst_pad_template_get_type), (gst_ghost_pad_get_type):
7833         * gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
7834         * gst/gstqueue.c: (gst_queue_get_type):
7835         * gst/gstregistry.c: (gst_registry_get_type):
7836         * gst/gstsystemclock.c: (gst_system_clock_get_type):
7837         * gst/gstthread.c: (gst_thread_get_type):
7838           don't use memchunks for these objects, use malloc instead
7839
7840 2004-04-08  Thomas Vander Stichele  <thomas at apestaart dot org>
7841
7842         * docs/gst/.cvsignore:
7843         * docs/gst/Makefile.am:
7844         * docs/gst/gstreamer-sections.txt:
7845         * docs/gst/tmpl/gstaggregator.sgml:
7846         * docs/gst/tmpl/gstbuffer.sgml:
7847         * docs/gst/tmpl/gstclock.sgml:
7848         * docs/gst/tmpl/gstelement.sgml:
7849         * docs/gst/tmpl/gstfakesink.sgml:
7850         * docs/gst/tmpl/gstfakesrc.sgml:
7851         * docs/gst/tmpl/gstfdsink.sgml:
7852         * docs/gst/tmpl/gstfdsrc.sgml:
7853         * docs/gst/tmpl/gstfilesink.sgml:
7854         * docs/gst/tmpl/gstfilesrc.sgml:
7855         * docs/gst/tmpl/gstidentity.sgml:
7856         * docs/gst/tmpl/gstindex.sgml:
7857         * docs/gst/tmpl/gstinfo.sgml:
7858         * docs/gst/tmpl/gstmd5sink.sgml:
7859         * docs/gst/tmpl/gstmultifilesrc.sgml:
7860         * docs/gst/tmpl/gstpad.sgml:
7861         * docs/gst/tmpl/gstpipefilter.sgml:
7862         * docs/gst/tmpl/gstpipeline.sgml:
7863         * docs/gst/tmpl/gstpluginfeature.sgml:
7864         * docs/gst/tmpl/gstqueue.sgml:
7865         * docs/gst/tmpl/gstregistry.sgml:
7866         * docs/gst/tmpl/gstscheduler.sgml:
7867         * docs/gst/tmpl/gstshaper.sgml:
7868         * docs/gst/tmpl/gstspider.sgml:
7869         * docs/gst/tmpl/gstspideridentity.sgml:
7870         * docs/gst/tmpl/gststatistics.sgml:
7871         * docs/gst/tmpl/gstsystemclock.sgml:
7872         * docs/gst/tmpl/gsttee.sgml:
7873         * docs/gst/tmpl/gstthread.sgml:
7874         * docs/gst/tmpl/gsttypefind.sgml:
7875         * docs/gst/tmpl/gstutils.sgml:
7876           further doc build fixes
7877
7878 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7879
7880         * docs/gst/Makefile.am:
7881           make docs exit on scanning problems
7882           fix nonsrcdir build issues
7883         * docs/gst/gstreamer-sections.txt:
7884           adding stuff from -unused
7885         * gst/gstqueue.h:
7886           create GstQueueSize
7887         * gst/schedulers/cothreads_compat.h:
7888           fix cothread warnings
7889
7890 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
7891
7892         * docs/gst/gstreamer-sections.txt:
7893           remove defines deprecated by Benjamin
7894
7895 2004-04-07  Benjamin Otte  <otte@gnome.org>
7896
7897         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
7898           when the buffer is complete, don't check if other buffers are needed
7899         * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_event):
7900           check that the offset is >0 so we don't try to read before the
7901           beginning of the file
7902         * gst/gstpad.c: (gst_pad_set_pad_template):
7903           sink the template, so we don't end up with 130k pad templates
7904
7905 2004-04-06  Benjamin Otte  <otte@gnome.org>
7906
7907         * gst/autoplug/gstspider.c: (gst_spider_link_add):
7908           don't ref the element, adding already reffed it. And we didn't unref
7909           it later anyway... (huge memleak when you used many spider elements)
7910         * gst/gstelement.c: (gst_element_base_class_finalize):
7911         * gst/gstelementfactory.c: (gst_element_factory_cleanup),
7912         (gst_element_register):
7913         * gst/gsturi.c: (gst_element_make_from_uri):
7914           use gst_object_(un)ref instead of g_object(un)ref
7915
7916 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7917
7918         * gst/gstbuffer.h:
7919           remove macro that wouldn't work anymore because struct member has
7920           been removed.
7921         * gst/schedulers/entryscheduler.c: (schedule_forward):
7922           fix segfault for unconnected pads
7923         
7924 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
7925
7926         reviewed by David Schleef <ds@schleef.org>
7927
7928         * gst/gstinfo.h:
7929           *_FORMAT modifiers should require putting a % in front of them for
7930           consistency reasons.
7931
7932 2004-04-05  Colin Walters  <walters@redhat.com>
7933
7934         * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious
7935         space.
7936
7937 2004-04-05  Benjamin Otte  <otte@gnome.org>
7938
7939         * configure.ac:
7940         * gst/Makefile.am:
7941         * gst/gst_private.h:
7942         * gst/gstinfo.c: (__gst_in_valgrind), (_gst_debug_init):
7943           add support for detecting if GStreamer runs inside valgrind.
7944           requires valgrind (d'oh) and --enable-debug for correct cdetection.
7945           print a big message in valgrind that GStreamer has detected it's
7946           running inside and might now use different code.
7947         * gst/gstmemchunk.c: (populate), (free_area),
7948         (gst_mem_chunk_destroy), (gst_mem_chunk_alloc),
7949         (gst_mem_chunk_free):
7950           flag memchunks for valgrind, so it can detect leaking of chunks.
7951           This allows detecting leaks of GstBuffer and GstEvent correctly
7952           inside valgrind.
7953
7954 2004-04-05  David Schleef  <ds@schleef.org>
7955
7956         * gst/gsttrace.h:  Fix #ifdef nesting (bug #139109) Patch from
7957           jensgr@gmx.net (Jens Granseuer)
7958
7959 2004-04-05  David Schleef  <ds@schleef.org>
7960
7961         * gst/gstbuffer.c: (_gst_buffer_sub_free),
7962         (gst_buffer_default_free), (gst_buffer_default_copy),
7963         (gst_buffer_alloc_chunk), (gst_buffer_free_chunk),
7964         (gst_buffer_new), (gst_buffer_create_sub):  Allocate GstBuffer
7965         structures in one place.
7966
7967 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7968
7969         * gst/gstinfo.h: adding Ronald's timestamp debugging defines
7970           (GST_TIME_FORMAT, GST_TIME_ARGS)
7971
7972 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7973
7974         * testsuite/elements/Makefile.am:
7975           disable test until it stops breaking make distcheck
7976
7977 2004-04-05  Johan Dahlin  <johan@gnome.org>
7978
7979         * po/sv.po: Updated translation
7980
7981 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7982
7983         * gst/gstplugin.c: (gst_plugin_load_file):
7984           fix segfault for when original plugin was loaded statically
7985
7986 2004-04-05  Benjamin Otte  <otte@gnome.org>
7987
7988         * testsuite/debug/category.c: (main):
7989         * testsuite/debug/commandline.c: (main):
7990         * testsuite/debug/output.c: (main):
7991           fix tests to work again with debugging enabled
7992
7993 2004-04-05  Benjamin Otte  <otte@gnome.org>
7994
7995         * gst/schedulers/gstbasicscheduler.c:
7996         (gst_basic_scheduler_pad_link):
7997           fix to work with recent scheduling changes
7998
7999 2004-04-05  Benjamin Otte  <otte@gnome.org>
8000
8001         * gst/schedulers/entryscheduler.c: (some functions, dunno which,
8002         prepareChangeLog doesn't work when cvs indents):
8003           don't throw an error when no element can be scheduled, there's too
8004           many weird reasons why it doesn't work. Return STOPPED instead.
8005           decoupled elemts' schedulability doesn't depend on bufpens.
8006
8007 2004-04-04  Benjamin Otte  <otte@gnome.org>
8008
8009         * gst/schedulers/gstbasicscheduler.c:
8010         (gst_basic_scheduler_pad_select):
8011           fix uninitialized variable warnings
8012
8013 2004-04-04  Benjamin Otte  <otte@gnome.org>
8014
8015         * gst/gstpad.c: (gst_pad_collect_valist):
8016           fix uninitialized variable warning
8017         * gst/schedulers/entryscheduler.c: (schedule_forward):
8018           fix shadowed variable
8019
8020 2004-04-04  Benjamin Otte  <otte@gnome.org>
8021
8022         * gst/gstpad.c: (gst_pad_collect_array), (gst_pad_collectv),
8023         (gst_pad_collect), (gst_pad_collect_valist), (gst_pad_selectv),
8024         (gst_pad_select):
8025         * gst/gstpad.h:
8026         * gst/gstscheduler.c: (gst_scheduler_pad_select),
8027         (gst_scheduler_lock_element), (gst_scheduler_unlock_element):
8028         * gst/gstscheduler.h:
8029           implement gst_pad_collect as replacement for gst_pad_select.
8030           deprecate gst_pad_select and gst_scheduler_(un)lock_element
8031           add new flag GST_SCHEDULER_FLAG_NEW_API for API that implements the
8032           new pad_select, lock and unlock calls.
8033         * gst/cothreads.c: (cothread_destroy), (cothread_switch):
8034         * gst/cothreads.h:
8035         * gst/schedulers/cothreads_compat.h:
8036         * gst/schedulers/gthread-cothreads.h:
8037           remove unused cothread_lock and cothread_unlock calls
8038         * gst/schedulers/entryscheduler.c:
8039         (gst_entry_scheduler_class_init), (gst_entry_scheduler_init),
8040         (_can_schedule_loop), (gst_entry_scheduler_get_handler),
8041         (gst_entry_scheduler_pad_select):
8042           update to new API
8043         * gst/schedulers/gstbasicscheduler.c:
8044         (gst_basic_scheduler_class_init), (gst_basic_scheduler_init),
8045         (gst_basic_scheduler_pad_select):
8046           remove useless lock and unlock calls, update pad_select to new API
8047           (untested)
8048         * gst/schedulers/gstoptimalscheduler.c:
8049         (gst_opt_scheduler_class_init):
8050           remove useless select, lock and unlock function calls
8051         * gst/elements/gstaggregator.c: (gst_aggregator_loop):
8052           use gst_pad_collect instead of gst_pad_select
8053
8054 2004-04-04  Benjamin Otte  <otte@gnome.org>
8055
8056         * gst/schedulers/entryscheduler.c: (_can_schedule_get),
8057         (can_schedule_pad), (can_schedule), (schedule), (schedule_forward),
8058         (schedule_next_element), (print_entry):
8059           add can_schedule_pad to handle element states.
8060           add schedule_forward to select the correct entry to schedule next
8061
8062 2004-04-03  Benjamin Otte  <otte@gnome.org>
8063
8064         * gst/schedulers/entryscheduler.c: 
8065           remove unused variable, fix error inside Rb, fix compile warning in
8066           unreachable code
8067
8068 2004-04-03  Benjamin Otte  <otte@gnome.org>
8069
8070         * gst/schedulers/entryscheduler.c:
8071           completely revamp the inner workings, so it's a lot easier to
8072           understand and extend
8073
8074 2004-04-03  Andy Wingo  <wingo@pobox.com>
8075
8076         * gst/schedulers/gstoptimalscheduler.c (GstOptSchedulerGroupLink):
8077         Rename ->group1 and ->group2 to ->src and ->sink, respectively.
8078         This allows better introspection of pipeline topology.
8079         (add_to_chain): Don't do trickery to put loop elements first;
8080         rather, queue a chain sort by marking the chain as dirty.
8081         (remove_from_chain): Mark the chain dirty.
8082         (sort_chain): New function. Sorts the group list so that terminal
8083         sinks are first. This means elements on the sink side will be
8084         preferentially sscheduled before elements on the src side of the
8085         pipeline.
8086         (chain_recursively_migrate_group): Use OTHER_GROUP_LINK.
8087         (schedule_chain): If the chain is marked DIRTY, call sort_chain.
8088         (gst_opt_scheduler_pad_link, gst_opt_scheduler_pad_unlink)
8089         (group_inc_link): Change argument and variable names to match the
8090         new link structure member names (src and sink).
8091         (group_dec_link): Add some description
8092
8093 2004-04-03  Benjamin Otte  <otte@gnome.org>
8094
8095         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
8096         * gst/gstinfo.h:
8097         * testsuite/debug/category.c: (main):
8098         * testsuite/debug/commandline.c: (main):
8099         * testsuite/debug/output.c: (main):
8100         * testsuite/debug/printf_extension.c: (main):
8101           fix to successfully build and test with --disable-gst-debug
8102           configure switch (fixes #138705)
8103
8104 2004-04-03  Benjamin Otte  <otte@gnome.org>
8105
8106         * docs/pwg/building-boiler.xml:
8107           add cvs login line and s/anonymous/anoncvs/
8108
8109 2004-04-03  Tim-Phillip Müller  <t.i.m@zen.co.uk>
8110
8111         reviewed by Benjamin Otte  <otte@gnome.org>
8112
8113         * gst/gststructure.c: (gst_structure_free):
8114           memleak fix: free fields array (partial fix for #134839)
8115
8116 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8117
8118         * docs/random/ds/0.9-suggested-changes:
8119           Add a note to change handoff use in fakesrc to be usable in
8120           a more generic way (fakesrc should be renamed to appsrc or so).
8121         * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
8122           Change signal type to scope, so we can fill the buffer in the
8123           handoff handler (that's the whole use of this signal...).
8124
8125 2004-04-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8126
8127         * docs/pwg/other-ntoone.xml:
8128           Document muxers and n-to-1 elements.
8129
8130 2004-04-01  Martin Soto  <martinsoto@users.sourceforge.net>
8131
8132         * gst/registries/gstxmlregistry.c
8133         (gst_xml_registry_rebuild_recurse): Fix the algorithm to
8134         determine if a file is a G_MODULE. The old one discards paths
8135         containing "so" somewhere in the middle. My home directory is
8136         called "soto". Go figure...
8137
8138 2004-03-31  David Schleef  <ds@schleef.org>
8139
8140         * gst/gstbuffer.c: (gst_buffer_join):  Add function gst_buffer_join()
8141         to eventually deprecate gst_buffer_merge().  (bug: #136408)
8142         * gst/gstbuffer.h:
8143
8144 2004-03-31  David Schleef  <ds@schleef.org>
8145
8146         * gst/gstvalue.c: (gst_value_union_int_int_range),
8147         (gst_value_union_int_range_int_range), (gst_value_can_union),
8148         (gst_value_union), (_gst_value_initialize):  Add some union
8149         implementations.  We didn't have any previously.
8150         * testsuite/caps/Makefile.am:
8151         * testsuite/caps/audioscale.c: (gst_audioscale_expand_value),
8152         (gst_audioscale_getcaps), (test_caps), (main): A little test
8153         that is the same as the caps manipulation in audioscale.
8154
8155 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8156
8157         * docs/faq/general.xml:
8158           add entry about "does gst support format X?"
8159
8160 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
8161
8162         * gst/gstthread.c:
8163           fix docs
8164         * gst/gstutils.h:
8165           fix GST_BOILERPLATE_FULL to not throw casting errors on C++
8166
8167 2004-03-30  Benjamin Otte  <otte@gnome.org>
8168
8169         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
8170           set the offset of the buffer to the requested offset
8171         * gst/elements/gsttypefind.c: (stop_typefinding):
8172           revert patch 1.18 (which I unfortunately don't know the reason for).
8173           This is needed to allow downstream elements to seek. Otherwise
8174           typefind might overwrite a previous seek by downstream elements.
8175           This lead to errors with id3tag and typefind on some mp3s.
8176         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8177         (gst_entry_scheduler_iterate):
8178           be more verbose when debugging
8179
8180 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8181
8182         * gst/gstcaps.c: (gst_caps_from_string_inplace):
8183           make sure we don't get NULL strings
8184
8185 2004-03-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8186
8187         * gst/gstcaps.c:
8188         * gst/gstelement.c:
8189         * gst/gstelementfactory.c: (gst_element_factory_get_type):
8190         * gst/gstindex.c: (gst_index_resolver_get_type),
8191         (gst_index_get_type), (gst_index_factory_get_type):
8192         * gst/gstinfo.c:
8193         * gst/gstpad.c:
8194         * gst/gstplugin.c:
8195         * gst/gsturi.c: (gst_uri_handler_get_type):
8196         * gst/gstvalue.c:
8197           first batch of documentation fixes
8198
8199 2004-03-29  David Schleef  <ds@schleef.org>
8200
8201         * docs/gst/Makefile.am:  Disable a bunch of headers from being scanned
8202         * docs/gst/gstreamer-docs.sgml:  More hacking
8203         * docs/gst/gstreamer-sections.txt:
8204         * docs/gst/tmpl/cothreads_compat.sgml:
8205         * docs/gst/tmpl/gstcaps.sgml:
8206         * docs/gst/tmpl/gstclock.sgml:
8207         * docs/gst/tmpl/gstelement.sgml:
8208         * docs/gst/tmpl/gstevent.sgml:
8209         * docs/gst/tmpl/gstpad.sgml:
8210         * docs/gst/tmpl/gstutils.sgml:
8211         * docs/gst/tmpl/gstxml.sgml:
8212         * docs/gst/tmpl/gthread-cothreads.sgml:
8213         * docs/random/ds/0.9-suggested-changes:
8214         * gst/elements/gstfakesink.h: doc fixes
8215         * gst/elements/gstfakesrc.h: doc fixes
8216         * gst/gstcaps.c: doc fixes
8217         * gst/gstcaps.h: doc fixes
8218         * gst/gstelement.c: doc fixes
8219         * gst/gstelement.h: doc fixes
8220         * gst/gstindex.c: doc fixes
8221         * gst/gstinfo.c: doc fixes
8222         * gst/gstpad.c: doc fixes
8223         * gst/gstpad.h: doc fixes
8224         * gst/gstplugin.c: doc fixes
8225         * gst/gsttypefind.h: doc fixes
8226         * gst/gsturi.c: doc fixes
8227         * gst/gstvalue.c: doc fixes
8228
8229 2004-03-29  Colin Walters  <walters@redhat.com>
8230
8231         * gst/registries/gstxmlregistry.c (get_time)
8232         (plugin_times_older_than_recurse):
8233         Use the result of stat to determine whether a path is a file,
8234         so we don't attempt to opendir() files.
8235
8236 2004-03-29  Benjamin Otte  <otte@gnome.org>
8237
8238         * gst/gstpad.c: (gst_pad_set_explicit_caps):
8239           print caps in debugging output when setting caps failed
8240         * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
8241         (schedule_next_element), (get_buffer), (run_chainhandler),
8242         (element_may_start), (gst_entry_scheduler_chain_handler),
8243         (gst_entry_scheduler_get_handler),
8244         (gst_entry_scheduler_state_transition),
8245         (gst_entry_scheduler_pad_link):
8246           make this scheduler a testcase for mandatory
8247           discont-before-first-buffer which is needed if we want to allow apps
8248           to release the sound device.
8249           add SCHED_ASSERT macro to print scheduler state before an assertion
8250           triggers.
8251
8252 2004-03-29  Benjamin Otte  <otte@gnome.org>
8253
8254         * COPYING:
8255           replace by LGPL (former COPYING.LIB). The core is completely
8256           licensed LGPL.
8257         * COPYING.LIB:
8258           remove
8259
8260 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8261
8262         * po/af.po:
8263         * po/sv.po:
8264           updated Afrikaans and Swedish
8265
8266 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8267
8268         * po/LINGUAS:
8269         * po/az.po:
8270           adding Azerbaijani (Mətin Əmirov)
8271
8272 2004-03-28  Martin Soto  <martinsoto@users.sourceforge.net>
8273
8274         * gst/gstelement.h: 
8275         * gst/gstelement.c (gst_element_set_time_delay): New function for
8276         setting element time taking into account a hardware buffering
8277         delay.
8278         (gst_element_set_time): Now just an invocation of
8279         gst_element_set_time_delay.
8280         * gst/gstclock.h: 
8281         * gst/gstclock.c (gst_clock_get_event_time_delay): New function
8282         allowing to set event times in the future.
8283         (gst_clock_get_event_time): Now just an invocation of
8284         gst_clock_get_event_time_delay.
8285
8286 2004-03-28  Benjamin Otte  <otte@gnome.org>
8287
8288         * gst/gstbin.c: (gst_bin_set_element_sched),
8289         (gst_bin_unset_element_sched):
8290           don't add decoupled elements to schedulers - otherwise it's
8291           impossible to control if a link to a decoupled element was already
8292           removed from a scheduler or not.
8293         * gst/schedulers/cothreads_compat.h:
8294         * gst/schedulers/gthread-cothreads.h:
8295           add COTHREADS_TYPE macro. Make do_cothread_set_func a macro so there
8296           is no "unused" warning.
8297         * gst/schedulers/Makefile.am:
8298         * gst/schedulers/entryscheduler.c:
8299           add new scheduler, based on ideas from talking to David and Martin.
8300           It's supposed to be small and correct. Currently it's also slow (but
8301           it's not noticable)
8302         * examples/retag/retag.c: (main):
8303         * testsuite/bytestream/test1.c: (main):
8304           fix missing NULLs at end of variadic functions
8305         * testsuite/elements/.cvsignore:
8306           update
8307
8308 2004-03-28  Jan Schmidt  <thaytan@mad.scientist.com>
8309
8310         * gst/gstevent.h:
8311         Added GST_EVENT_ANY for GstEvents that pass a GstStructure
8312
8313 2004-03-25  David Schleef  <ds@schleef.org>
8314
8315         * docs/gst/gstreamer-sections.txt:  More doc hacking.
8316         * docs/gst/tmpl/gstaggregator.sgml:
8317         * docs/gst/tmpl/gstautoplugfactory.sgml:
8318         * docs/gst/tmpl/gstbin.sgml:
8319         * docs/gst/tmpl/gstbuffer.sgml:
8320         * docs/gst/tmpl/gstbufferstore.sgml:
8321         * docs/gst/tmpl/gstfakesink.sgml:
8322         * docs/gst/tmpl/gstfakesrc.sgml:
8323         * docs/gst/tmpl/gstmd5sink.sgml:
8324         * docs/gst/tmpl/gstreamer-unused.sgml:
8325         * docs/gst/tmpl/gstsearchfuncs.sgml:
8326         * docs/gst/tmpl/gstshaper.sgml:
8327         * docs/gst/tmpl/gstspider.sgml:
8328         * docs/gst/tmpl/gsttee.sgml:
8329         * docs/gst/tmpl/gstutils.sgml:
8330         * docs/gst/tmpl/gstvalue.sgml:
8331         * docs/gst/tmpl/gstxml.sgml:
8332         * gst/Makefile.am:  Remove gstthreaddummy.c.  It never worked,
8333         and we don't support it.
8334         * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
8335         (gst_use_threads), (gst_has_threads): same
8336         * gst/gstthreaddummy.c: same
8337         * gst/autoplug/gstspider.c: Make gst_spider_details static.
8338         * gst/autoplug/gstspider.h: same
8339         * gst/elements/gstaggregator.h: Remove bogus function from header
8340         * gst/elements/gstfakesink.h: same
8341         * gst/elements/gstfakesrc.h: same
8342         * gst/elements/gstmd5sink.h: same
8343         * gst/elements/gstshaper.h: same
8344         * gst/elements/gsttee.h: same
8345         * gst/gstbin.c: doc fixes
8346         * gst/gstbin.h: Remove unused definition.
8347         * gst/gstbuffer.c: doc fixes
8348         * gst/gstcaps.c: (gst_caps_is_always_compatible): doc fixes
8349         * gst/gstfilter.c: doc fixes
8350         * gst/gsttag.c: doc fixes
8351         * gst/gstvalue.c: doc fixes
8352
8353 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8354
8355         * docs/pwg/advanced-types.xml:
8356           Document typefinding.
8357         * docs/pwg/other-oneton.xml:
8358           Document one-to-n elements, demuxers and parsers.
8359
8360 2004-03-25  Tim-Philipp Müller <t.i.m@zen.co.uk>
8361
8362         reviewed by: David Schleef  <ds@schleef.org>
8363
8364         * configure.ac: Check bison version (bug #127838)
8365
8366 2004-03-25  David Schleef  <ds@schleef.org>
8367
8368         * docs/gst/gstreamer-docs.sgml: More fine tuning.
8369         * docs/gst/gstreamer-sections.txt:
8370         * docs/gst/tmpl/gstautoplug.sgml:
8371         * docs/gst/tmpl/gststaticautoplug.sgml:
8372         * docs/gst/tmpl/gststaticautoplugrender.sgml:
8373         * docs/gst/tmpl/gstutils.sgml:
8374         * docs/gst/tmpl/gstxml.sgml:
8375
8376 2004-03-24  David Schleef  <ds@schleef.org>
8377
8378         * docs/gst/gstreamer-docs.sgml:  I got tired of the reference
8379         manual being such complete crap, that I decided to do major
8380         hacking of it.  This checkin replaces any fine tuning that
8381         may have been done previously, with the benefit of actually
8382         being complete for much of the API that was changed since
8383         0.6.  Further fine tuning will occur shortly.  (bug #134721)
8384         * docs/gst/gstreamer-sections.txt:
8385         * docs/gst/tmpl/GstBin.sgml:
8386         * docs/gst/tmpl/GstBuffer.sgml:
8387         * docs/gst/tmpl/GstCaps.sgml:
8388         * docs/gst/tmpl/GstClock.sgml:
8389         * docs/gst/tmpl/GstCompat.sgml:
8390         * docs/gst/tmpl/GstData.sgml:
8391         * docs/gst/tmpl/GstElement.sgml:
8392         * docs/gst/tmpl/GstEvent.sgml:
8393         * docs/gst/tmpl/GstIndex.sgml:
8394         * docs/gst/tmpl/GstStructure.sgml:
8395         * docs/gst/tmpl/GstTag.sgml:
8396         * docs/gst/tmpl/cothreads.sgml:
8397         * docs/gst/tmpl/cothreads_compat.sgml:
8398         * docs/gst/tmpl/gettext.sgml:
8399         * docs/gst/tmpl/grammar.tab.sgml:
8400         * docs/gst/tmpl/gst-i18n-app.sgml:
8401         * docs/gst/tmpl/gst-i18n-lib.sgml:
8402         * docs/gst/tmpl/gst.sgml:
8403         * docs/gst/tmpl/gst_private.sgml:
8404         * docs/gst/tmpl/gstaggregator.sgml:
8405         * docs/gst/tmpl/gstarch.sgml:
8406         * docs/gst/tmpl/gstatomic.sgml:
8407         * docs/gst/tmpl/gstatomic_impl.sgml:
8408         * docs/gst/tmpl/gstbin.sgml:
8409         * docs/gst/tmpl/gstbuffer.sgml:
8410         * docs/gst/tmpl/gstbufferstore.sgml:
8411         * docs/gst/tmpl/gstcaps.sgml:
8412         * docs/gst/tmpl/gstclock.sgml:
8413         * docs/gst/tmpl/gstcompat.sgml:
8414         * docs/gst/tmpl/gstconfig.sgml:
8415         * docs/gst/tmpl/gstcpu.sgml:
8416         * docs/gst/tmpl/gstdata.sgml:
8417         * docs/gst/tmpl/gstdata_private.sgml:
8418         * docs/gst/tmpl/gstelement.sgml:
8419         * docs/gst/tmpl/gstenumtypes.sgml:
8420         * docs/gst/tmpl/gsterror.sgml:
8421         * docs/gst/tmpl/gstevent.sgml:
8422         * docs/gst/tmpl/gstfakesink.sgml:
8423         * docs/gst/tmpl/gstfakesrc.sgml:
8424         * docs/gst/tmpl/gstfilesink.sgml:
8425         * docs/gst/tmpl/gstfilter.sgml:
8426         * docs/gst/tmpl/gstindex.sgml:
8427         * docs/gst/tmpl/gstinfo.sgml:
8428         * docs/gst/tmpl/gstinterface.sgml:
8429         * docs/gst/tmpl/gstlog.sgml:
8430         * docs/gst/tmpl/gstmacros.sgml:
8431         * docs/gst/tmpl/gstmarshal.sgml:
8432         * docs/gst/tmpl/gstmd5sink.sgml:
8433         * docs/gst/tmpl/gstmultifilesrc.sgml:
8434         * docs/gst/tmpl/gstobject.sgml:
8435         * docs/gst/tmpl/gstpad.sgml:
8436         * docs/gst/tmpl/gstparse.sgml:
8437         * docs/gst/tmpl/gstpipeline.sgml:
8438         * docs/gst/tmpl/gstplugin.sgml:
8439         * docs/gst/tmpl/gstpluginfeature.sgml:
8440         * docs/gst/tmpl/gstqueue.sgml:
8441         * docs/gst/tmpl/gstreamer-unused.sgml:
8442         * docs/gst/tmpl/gstregistry.sgml:
8443         * docs/gst/tmpl/gstregistrypool.sgml:
8444         * docs/gst/tmpl/gstscheduler.sgml:
8445         * docs/gst/tmpl/gstsearchfuncs.sgml:
8446         * docs/gst/tmpl/gstshaper.sgml:
8447         * docs/gst/tmpl/gstspider.sgml:
8448         * docs/gst/tmpl/gstspideridentity.sgml:
8449         * docs/gst/tmpl/gststructure.sgml:
8450         * docs/gst/tmpl/gstsystemclock.sgml:
8451         * docs/gst/tmpl/gsttag.sgml:
8452         * docs/gst/tmpl/gsttaginterface.sgml:
8453         * docs/gst/tmpl/gsttee.sgml:
8454         * docs/gst/tmpl/gstthread.sgml:
8455         * docs/gst/tmpl/gsttrace.sgml:
8456         * docs/gst/tmpl/gsttrashstack.sgml:
8457         * docs/gst/tmpl/gsttypefind.sgml:
8458         * docs/gst/tmpl/gsttypes.sgml:
8459         * docs/gst/tmpl/gsturi.sgml:
8460         * docs/gst/tmpl/gsturitype.sgml:
8461         * docs/gst/tmpl/gstutils.sgml:
8462         * docs/gst/tmpl/gstvalue.sgml:
8463         * docs/gst/tmpl/gstversion.sgml:
8464         * docs/gst/tmpl/gstxml.sgml:
8465         * docs/gst/tmpl/gstxmlregistry.sgml:
8466         * docs/gst/tmpl/gthread-cothreads.sgml:
8467         * docs/gst/tmpl/types.sgml:
8468
8469 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8470
8471         * docs/pwg/other-sink.xml:
8472         * docs/pwg/other-source.xml:
8473           Documentation on how to write source and sink elements. Other
8474           stuff in chapter 4 (1-to-n/demuxer, n-to-1/muxer, n-to-n,
8475           manager, autoplugger) are all still pending.
8476
8477 2004-03-25  Benjamin Otte  <otte@gnome.org>
8478
8479         * testsuite/elements/Makefile.am:
8480         * testsuite/elements/gst-compprep-check:
8481           add check to make sure gst-compprep works
8482         * testsuite/elements/gst-inspect-check.in:
8483           improve initialization output
8484         * testsuite/Makefile.am:
8485         * testsuite/gst-inspect-check:
8486           remove old file
8487
8488 2004-03-24  David Schleef  <ds@schleef.org>
8489
8490         * testsuite/elements/Makefile.am:
8491         * testsuite/elements/gst-inspect-check.in: Add gst-inspect-check
8492         to the testsuite.
8493
8494 2004-03-24  Benjamin Otte  <otte@gnome.org>
8495
8496         * libs/gst/control/dparam.c: (gst_dparam_attach),
8497         (gst_dparam_detach):
8498         * libs/gst/control/dparammanager.c: (gst_dpman_init):
8499           fix lvalue casts for real
8500
8501 2004-03-24  Benjamin Otte  <otte@gnome.org>
8502
8503         * gst/schedulers/gstbasicscheduler.c:
8504         (gst_basic_scheduler_src_wrapper):
8505         * gst/schedulers/gstoptimalscheduler.c:
8506         (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
8507         (pad_clear_queued), (gst_opt_scheduler_add_element),
8508         (gst_opt_scheduler_remove_element):
8509           fix GStreamer to not have issues with lvalue casts anymore (fixes
8510           #136841)
8511
8512 2004-03-24  Benjamin Otte  <otte@gnome.org>
8513
8514         * gst/gstelement.c:
8515           add documentation about a gobject quirk where the object hasn't the
8516           correct class pointer set on initialization
8517         * gst/schedulers/gstbasicscheduler.c:
8518         (gst_basic_scheduler_src_wrapper):
8519           make sure to not run into an infinite loop
8520
8521 2004-03-22  Benjamin Otte  <otte@gnome.org>
8522
8523         * gst/gstutils.c: (gst_util_dump_mem):
8524         * gst/gstutils.h:
8525           first argument of gst_util_dump_mem should be const
8526
8527 2004-03-22  Johan Dahlin  <johan@gnome.org>
8528
8529         * gst/gstvalue.h: Clean up a little bit.
8530
8531 2004-03-21  Tim-Philipp Müller <t.i.m@zen.co.uk>
8532
8533         reviewed by Benjamin Otte  <otte@gnome.org>
8534
8535         * gst/autoplug/gstspider.c: (gst_spider_dispose):
8536         * gst/elements/gstaggregator.c: (gst_aggregator_finalize),
8537         (gst_aggregator_class_init), (gst_aggregator_init):
8538         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
8539         (gst_filesrc_dispose), (gst_filesrc_set_location):
8540         * gst/elements/gstidentity.c: (gst_identity_finalize),
8541         (gst_identity_class_init), (gst_identity_chain):
8542         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
8543         * gst/elements/gststatistics.c: (gst_statistics_finalize),
8544         (gst_statistics_class_init):
8545         * gst/elements/gsttee.c: (gst_tee_finalize), (gst_tee_class_init),
8546         (gst_tee_get_property):
8547           clean up used memory in this elements correctly on teardown (closes
8548           #137279)
8549
8550 2004-03-20  Colin Walters  <walters@redhat.com>
8551
8552         * gst/registries/gstxmlregistry.c:
8553         (gst_xml_registry_open_func, gst_xml_registry_close_func): Make
8554         registry saving atomic.
8555
8556 2004-03-20  Colin Walters  <walters@redhat.com>
8557
8558         * gst/registries/gstxmlregistry.c (gst_xml_registry_get_perms_func):
8559         Just use
8560         access() instead of actually creating and deleting files.
8561
8562 2004-03-18  David Schleef  <ds@schleef.org>
8563
8564         * configure.ac:  Remove HAVE_ATOMIC_H test, since it's unused.
8565         (bug #137625)
8566
8567 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8568
8569         * po/sv.po: updated translation (Christian Rose)
8570
8571 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8572
8573         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
8574         (gst_filesink_get_query_types), (_do_init),
8575         (gst_filesink_handle_event), (gst_filesink_uri_get_protocols):
8576           return FALSE silently
8577         * po/af.po: updated translation (Petri Jooste)
8578
8579 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
8580
8581         * Makefile.am:
8582         * configure.ac:
8583           dist common properly
8584         * po/af.po:
8585         * po/fr.po:
8586         * po/nl.po:
8587         * po/sr.po:
8588         * po/sv.po:
8589           refreshing translations
8590
8591 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8592
8593         * po/LINGUAS:
8594         * po/sv.po:
8595         * po/af.po:
8596           adding Swedish (Christian Rose) and Afrikaans (Petri Jooste)
8597
8598 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8599
8600         * Makefile.am: use common/release.mak
8601
8602 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
8603
8604         * docs/faq/gst-uninstalled:
8605           adding gst-monkeysaudio to the list of possible plugin dirs
8606
8607 2004-03-16  David Schleef  <ds@schleef.org>
8608
8609         * gst/gst.c: (gst_get_popt_options), (gst_init_get_popt_table),
8610         (gst_init_check_with_popt_table):  Fix some gettext strings to
8611         make them easier to translate.  Required making the strings
8612         non-const.
8613
8614 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8615
8616         * configure.ac: bump nano to 1
8617
8618 === release 0.8.0 ===
8619
8620 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8621
8622         * configure.ac: release 0.8.0, "Executive Slacks"
8623
8624 2004-03-16  Johan Dahlin  <johan@gnome.org>
8625
8626         * gst/schedulers/gstoptimalscheduler.c
8627         (gst_opt_scheduler_pad_unlink): Remove double ;,
8628         spotted by Scott Wheeler
8629
8630 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
8631
8632         * configure.ac: bump libtool version
8633
8634 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8635
8636         * gst/gstcaps.h:
8637         * gst/gststructure.h:
8638           add reserved padding
8639
8640 2004-03-15  Benjamin Otte  <otte@gnome.org>
8641
8642         * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
8643           set the first parameter for select call correctly.
8644           (fixes #137230)
8645
8646 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8647
8648         * *.c,*.h: don't mix tabs and spaces
8649
8650 2004-03-15  Johan Dahlin  <johan@gnome.org>
8651
8652         * gst/schedulers/gstoptimalscheduler.c
8653         (gst_opt_scheduler_pad_unlink): Fix bug that causes totem to
8654         crash on MPEG playback. My boolean arithmetic is a bit rusty.
8655
8656         * tools/Makefile.am (EXTRA_DIST): Add gst-indent
8657         
8658 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8659
8660         * testsuite/Rules:
8661           fix gst-register rules
8662
8663 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8664
8665         * testsuite/Rules:
8666           use versioned gst-register
8667
8668 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
8669
8670         * docs/libs/gstreamer-libs-sections.txt:
8671           remove </SUBSECTION>
8672         * gst/gstplugin.c:
8673         * gst/gstregistry.c: (gst_registry_add_plugin):
8674         * gst/registries/gstxmlregistry.c: (gst_xml_registry_get_type),
8675         (gst_xml_registry_open_func), (gst_xml_registry_close_func):
8676           add debugging and fix some comment blocks
8677
8678 2004-03-15  Johan Dahlin  <johan@gnome.org>
8679
8680         * *.h: Revert indent changes.
8681         
8682 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8683
8684         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load_plugin):
8685           g_error_free the g_error
8686         * tools/gst-feedback-m.m:
8687           check for other versions of gstreamer
8688         * tools/gst-indent:
8689           use sh, not bash
8690
8691 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8692
8693         * tools/gst-register.c: do not spill paths when registries are not
8694           writable, until we fix the "user running gst-register" case.
8695
8696 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8697
8698         * *.c, *.h: commit of gst-indent run on core
8699
8700 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8701
8702         * tools/gst-indent:
8703         * tools/Makefile.am:
8704           add our indentation style as a script
8705
8706 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8707
8708         * po/sr.po:
8709         * po/LINGUAS:
8710           added Serbian translation
8711
8712 2004-03-13  Benjamin Otte  <otte@gnome.org>
8713
8714         * gst/gstelement.c:
8715           add documentation note about gst_element_found_tags_for_pad not
8716           being usable in getfunctions. (see #137042)
8717
8718 2004-03-12  David Schleef  <ds@schleef.org>
8719
8720         * gst/gstcaps.h: jdahlin, what are you smoking?  We can't just
8721         change API right now!  Readd gst_caps_is_simple() macro.
8722         * gst/gstelement.c: (gst_element_base_class_finalize): Fix
8723         uninitialized variable.  I'd bet this caused crashes.
8724         * gst/gstinfo.c: (gst_debug_print_object):  Fix 64-bit cleanliness.
8725
8726 2004-03-12  Johan Dahlin  <johan@gnome.org>
8727
8728         * gst/gstcaps.h (GST_CAPS_IS_SIMPLE): Capitalize macro
8729         * gst/gstcaps.h: Clean up
8730
8731         * gst/gst.c (init_post): call gst_caps_get_type() instead of
8732         _gst_caps_initalize()
8733
8734         * gst/gstcaps.c: Style fixes, stay closer to glib and friends
8735         (_gst_caps_initialize): Remove, in favor for gst_caps_get_type()
8736
8737         * gst/gststructure.c (gst_structure_get_type): Ditto
8738
8739         * gst/gststructure.h: Ditto
8740         
8741 2004-03-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8742
8743         * gst/gstqueue.c: (gst_queue_init):
8744           Reset default max. values in queues. Reason is simply to avoid
8745           braindead use. If you want wider values, use the properties. The
8746           default is supposed to always work. Wider values would make this
8747           beast a memory hog by default (250 full-PAL RGB32 video frames?
8748           That's 440 MB! No thank you).
8749
8750 2004-03-10  David Schleef  <ds@schleef.org>
8751
8752         * tools/gst-run.c: (main):  Fix crash when no relevant tools
8753         were found.  (bug #136793)
8754
8755 2004-03-10  Johan Dahlin  <johan@gnome.org>
8756
8757         * gst/schedulers/gstoptimalscheduler.c
8758         (gst_opt_scheduler_pad_unlink): Implement unlink for elements with
8759         links to elements within the same group, so we can finally remove
8760         that annoying warning. Refactor the code a little bit
8761         (group_dec_links_for_element): Split out
8762
8763 2004-03-09  David Schleef  <ds@schleef.org>
8764
8765         * docs/manual/dparams-app.xml:  Fix to handle double dparams.
8766         (bug #134863)
8767
8768 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8769
8770         * configure.ac: first bug fix due to major/minor bump
8771
8772 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8773
8774         * configure.ac: bump nano to 1
8775
8776 === release 0.7.6 ===
8777
8778 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
8779
8780         * NEWS:
8781         * RELEASE:
8782         * configure.ac:
8783           releasing 0.7.6, "Almost"
8784         * po/fr.po:
8785         * po/nl.po:
8786         * tools/Makefile.am:
8787         * tools/gst-feedback-m.m:
8788           unversioned source
8789
8790 2004-03-09  Johan Dahlin  <johan@gnome.org>
8791
8792         Reviewed by: Thomas Vander Stichele
8793
8794         * gst/gstelement.c (gst_element_class_init): register second
8795         parameter as GST_TYPE_G_ERROR instead of G_TYPE_POINTER, so
8796         language bindings can (de)marshall correctly.
8797
8798         * gst/gsterror.h: Add GST_TYPE_G_ERROR and cleanup a little bit
8799
8800         * gst/gsterror.c (gst_g_error_get_type): New function
8801
8802         * gst/gstmarshal.list: Remove VOID:OBJECT,POINTER,STRING, replace
8803         with VOID:OBJECT,OBJECT,STRING 
8804
8805 2004-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
8806
8807         * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
8808         Free a leaked g_timer on early returns.
8809
8810 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
8811
8812         * docs/pwg/advanced-types.xml:
8813           Add cinepak description.
8814
8815 2004-03-07  David Schleef  <ds@schleef.org>
8816
8817         * docs/random/mimetypes:  Added cinepak description
8818
8819 2004-03-07  Andy Wingo  <wingo@pobox.com>
8820
8821         * gst/gstbin.c (gst_bin_remove): Debugging fixes.
8822
8823         * gst/schedulers/gstoptimalscheduler.c (destroy_group): Assert
8824         there are no links to other groups when a group is destroyed.
8825         (gst_opt_scheduler_pad_unlink): If the unlink means an element is
8826         removed from a group, make sure the link count to elements linked
8827         to other pads is appropriately decremented. This really fixes
8828         #135672.
8829
8830         The 1.60->1.61 patch has been reapplied in light of this fix.
8831
8832         * gst/gstelement.c (gst_element_dispose): Really protect against
8833         multiple invocations this time.
8834
8835 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8836
8837         * docs/gst/gstreamer-sections.txt:
8838         * docs/gst/tmpl/gsttag.sgml:
8839           remove some deprecated functions, document some existing ones
8840         * gst/gsttag.c: (gst_tag_get_flag):
8841         * gst/gsttag.h:
8842           add accessor function
8843
8844 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
8845
8846         * docs/gst/gstreamer-sections.txt:
8847         * docs/gst/tmpl/gsttag.sgml:
8848         * docs/gst/tmpl/gstxml.sgml:
8849         * gst/gsttag.c: (gst_tag_get_flag):
8850         * gst/gsttag.h:
8851
8852 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
8853
8854         * gst/autoplug/gstspider.c: (gst_spider_identity_plug): fixed caps
8855         leak
8856
8857 2004-03-05  David Schleef  <ds@schleef.org>
8858
8859         * REQUIREMENTS: Add bison and flex.
8860         * configure.ac: Fix comment about bison.
8861         * docs/random/ds/0.9-suggested-changes: yer ma
8862         * tools/gst-inspect.c: (print_element_info):  Fix warning.
8863
8864 2004-03-05  Benjamin Otte  <otte@gnome.org>
8865
8866         * gst/gstelement.c: (gst_element_error_full):
8867           revert recent recursive state changing commit - messing with other
8868           elements' states is evil and should be done by apps only.
8869
8870 2004-03-05  Benjamin Otte  <otte@gnome.org>
8871
8872         * gst/gstelement.c: (gst_element_get_compatible_pad_template):
8873           check for empty intersection instead of NULL caps
8874         (gst_element_get_compatible_pad_filtered):
8875           remove old workaround that is only a bug nowadays
8876
8877 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8878
8879         * gst/gstelement.c: (gst_element_error_full):
8880           make elements try to recursively change state to PAUSED on all
8881           parents after an error to suppress ensuing warnings
8882         * gst/parse/grammar.y:
8883           make it check if it was able to sync the state, and throw an error
8884           if not, so stuff like
8885           oggdemux ! vorbisdec ! osssink gets caught
8886
8887 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
8888
8889         * configure.ac: use ${libdir} for PLUGINS_DIR since on 64bit
8890           it contains lib64; use AS_AC_EXPAND to handle it properly
8891
8892 2004-03-05  David Schleef  <ds@schleef.org>
8893
8894         * gst/gstcpuid_i386.s:  Remove unused code
8895         * libs/gst/getbits/getbits.c: (gst_getbits_init),
8896         (gst_getbits_newbuf): Remove MMX code
8897         * libs/gst/getbits/getbits.h: Remove MMX code
8898
8899 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
8900
8901         * debian/.cvsignore:
8902         * debian/README.Debian:
8903         * debian/changelog:
8904         * debian/control:
8905         * debian/control.in:
8906         * debian/copyright:
8907         * debian/gstreamer-core-libs-dev.files:
8908         * debian/gstreamer-core-libs.files:
8909         * debian/gstreamer-core.files:
8910         * debian/gstreamer-core.postinst:
8911         * debian/gstreamer-core.postrm:
8912         * debian/gstreamer-doc.files:
8913         * debian/gstreamer-doc.links:
8914         * debian/gstreamer-doc.lintian:
8915         * debian/gstreamer-runtime.files:
8916         * debian/gstreamer-runtime.manpages:
8917         * debian/gstreamer-runtime.postinst:
8918         * debian/gstreamer-runtime.postrm:
8919         * debian/gstreamer-tools.files:
8920         * debian/gstreamer-tools.manpages:
8921         * debian/libgstreamer-dev.files:
8922         * debian/libgstreamer0.4.1.files:
8923         * debian/libgstreamerVERSION.files:
8924         * debian/rules:
8925         Debian package info not maintained here.
8926
8927 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
8928
8929         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
8930         * gst/gstbin.c: (gst_bin_class_init):
8931         * gst/gstelement.c: (gst_element_class_init):
8932         * gst/gstindex.c: (gst_index_class_init):
8933         * gst/gstobject.c: (gst_object_class_init),
8934         (gst_signal_object_class_init):
8935         * gst/gstpad.c: (gst_pad_template_class_init):
8936         * gst/gstregistry.c: (gst_registry_class_init):
8937         * gst/gsturi.c: (gst_uri_handler_base_init):
8938         * gst/gstxml.c: (gst_xml_class_init):
8939         * libs/gst/control/dparam.c: (gst_dparam_class_init):
8940         * libs/gst/control/dparammanager.c: (gst_dpman_class_init):
8941           make all signal names use dashes instead of underscore
8942
8943 2004-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
8944
8945         * configure.ac: AC_SUBST GLIB_ONLY CFLAGS and LIBS
8946
8947 2004-03-03  Benjamin Otte  <otte@gnome.org>
8948
8949         * gst/schedulers/gstoptimalscheduler.c:
8950           revert last commit by Andy Wingo. It causes segfaults on unreffing
8951           in Rhythmbox. (see bug #135672)
8952
8953 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8954
8955         * po/fr.po: fix typo
8956
8957 2004-03-02  Christophe Fergeau  <teuf@gnome.org>
8958
8959         * tools/gst-inspect.c: (main): 
8960         * tools/gst-launch.c: (main): add calls to bind_textdomain_codeset
8961
8962 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8963
8964         * configure.ac:
8965           get GLIB_ONLY and POPT flags for the nonversioned binaries
8966         * tools/Makefile.am:
8967           use them
8968
8969 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
8970
8971         * gst/gst.c: (init_post):
8972           change so that GST_REGISTRY now is where the global registry gets
8973           saved, since that is where plugins now get attached to first, and
8974           spilled over to the user registry.  Note that in the case of using
8975           GST_REGISTRY env var, we don't want to affect any real registries
8976           beyond the one given by this var, and thus we don't set a user
8977           registry to spill to.  So make sure GST_REGISTRY is writable.
8978
8979 2004-03-01  David Schleef  <ds@schleef.org>
8980
8981         * AUTHORS:  Added some names.  Add yourself if you're missing.
8982
8983 2004-03-01  David Schleef  <ds@schleef.org>
8984
8985         * MAINTAINERS: Add
8986
8987 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
8988
8989         * configure.ac:
8990           remove whitespace
8991         * docs/gst/tmpl/gstbuffer.sgml:
8992         * docs/gst/tmpl/gstdata.sgml:
8993         * docs/gst/tmpl/gstreamer-unused.sgml:
8994         * docs/gst/tmpl/gstxml.sgml:
8995           doc update
8996         * docs/manuals.mak:
8997           add a FIXME
8998         * docs/pwg/intro-preface.xml:
8999         * docs/pwg/pwg.xml:
9000           remove GNOME
9001         * gst/gst.c: (init_post):
9002           try GST_PLUGIN_PATH paths for the _global_registry first
9003         * gst/gstelement.h:
9004           add the error message as well, otherwise (null) debug info doesn't
9005           make much sense
9006         * tools/gst-register.c: (main):
9007           spill paths to next registry if this registry is not writable
9008         * po/fr.po:
9009         * po/nl.po:
9010           translation updates
9011
9012 2004-03-01  Johan Dahlin  <johan@gnome.org>
9013
9014         * gst/gstbuffer.c (_gst_buffer_initialize): 
9015         * gst/gstdata.c (gst_data_get_type): 
9016         * gst/gstevent.c (_gst_event_initialize): Use gst_data_copy,
9017         instead of ref, since some applications that uses GBoxed
9018         routines depends on a function that actually returns a copy.
9019
9020 2004-02-27  Benjamin Otte  <otte@gnome.org>
9021
9022         * gst/gstbuffer.h:
9023           remove gst_buffer_free, use gst_data_unref
9024         * gst/gstdata.c: (gst_data_get_type):
9025           use refcounting in GstData GBoxed registration
9026         * gst/gstdata.h:
9027           remove gst_data_free, use gst_data_unref
9028
9029 2004-02-27  Johan Dahlin  <johan@gnome.org>
9030
9031         * gst/gstdata.c (gst_data_get_type): New function, register
9032         GstData as a GBoxed type.
9033
9034         * gst/gstdata.h (GST_TYPE_DATA): New macro
9035
9036 2004-02-27  Thomas Vander Stichele  <thomas at apestaart dot org>
9037
9038         * Makefile.am:
9039         * gstreamer.spec.in:
9040           put back RELEASE
9041         * gst/Makefile.am:
9042           clean up non-disting of built files
9043         * testsuite/debug/commandline.c:
9044           test fix for option rename
9045
9046 2004-02-26  David Schleef  <ds@schleef.org>
9047
9048         * configure.ac:  We don't really need glib-2.3.  Also remove
9049         some unneeded checks for library functions.
9050         * gst/Makefile.am:  Instead, we need to not dist files created
9051         by glib-genmarshal.
9052
9053 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9054
9055         * configure.ac:
9056           bump glib required version to 2.3.0 for g_value_takes_boxed
9057
9058  2004-02-25  Christian Fredrik Kalager Schaller <uraeus@gnome.org>
9059
9060         * common/m4/gst-docs.m4
9061         change flavour text from enable to disable as enable is our default
9062         closes bug Bug 135304
9063
9064 === release 0.7.5 ===
9065  
9066  2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9067  
9068         * NEWS:
9069           instate NEWS file
9070         * Makefile.am:
9071         * gstreamer.spec.in:
9072         * RELEASE:
9073           put back release
9074         * configure.ac:
9075         * docs/random/release:
9076           more updates
9077
9078 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9079
9080         * gst/gsttag.c: (_gst_tag_initialize):
9081         * po/fr.po:
9082         * po/nl.po:
9083           remove hyphen from codec tags
9084
9085 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9086
9087         * gst/parse/Makefile.am:
9088           fix dependency so that a make from a clean build works the first
9089           time
9090
9091 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
9092
9093         * docs/random/release:
9094           update release strategy
9095         * po/fr.po:
9096           auto-update po file
9097         * po/nl.po:
9098           update dutch translation
9099
9100 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
9101
9102         * docs/manual/debugging.xml:
9103         fix manual for new debugging system
9104
9105 2004-02-25  Andy Wingo  <wingo@pobox.com>
9106
9107         * gst/gstpad.c (gst_pad_link_prepare): Re-add
9108         gst_pad_link_prepare. Please email the list with specific reasons
9109         for reverting.
9110
9111 2004-02-24  Andy Wingo  <wingo@pobox.com>
9112
9113         * gst/gstelement.c (gst_element_dispose): Protect against multiple
9114         invocations.
9115
9116         * gst/schedulers/gstoptimalscheduler.c:
9117         I added a mess of prototypes at the top of the file by way of
9118         documentation. Some of the operations on chains and groups were
9119         re-organized.
9120
9121         (create_group): Added a type argument so if the group is enabled,
9122         the setup_group_scheduler knows what to do.
9123         (group_elements): Added a type argument here, too, to be passed on
9124         to create_group.
9125         (group_element_set_enabled): If an unlinked PLAYING element is
9126         added to a bin, we have to create a new group to hold the element,
9127         and this function will be called before the group is added to the
9128         chain. Thus we have a valid case for group->chain==NULL. Instead
9129         of calling chain_group_set_enabled, just set the flag on the group
9130         (the chain's status will be set when the group is added to it).
9131         (gst_opt_scheduler_state_transition, chain_group_set_enabled):
9132         Setup the group scheduler when the group is enabled, not
9133         specifically when an element goes PAUSED->PLAYING. This means
9134         PLAYING elements can be added, linked, and scheduled into a
9135         PLAYING pipeline, as was intended.
9136         (add_to_group): Don't ref the group twice. I don't know when this
9137         double-ref got in here. Removing it has the potential to cause
9138         segfaults if other parts of the scheduler are buggy. If you find
9139         that the scheduler is segfaulting for you, put in an extra ref
9140         here and see if that hacks over the underlying issue. Of course,
9141         then find out what code is unreffing a group it doesn't own...
9142         (create_group): Make the extra refcount floating, and remove it
9143         after adding the element. This means that...
9144         (unref_group): Destroy when the refcount reaches 0, not 1, like
9145         every other refcounted object in the known universe.
9146         (remove_from_group): When a group becomes empty, set it to be not
9147         active, and remove it from its chain. Don't unref it again,
9148         there's no floating reference any more.
9149         (destroy_group): We have to remove the group from the chain in
9150         remove_from_group (rather than here) to break refcounting cycles
9151         (the chain always has a ref on the group). So assert that
9152         group->chain==NULL.
9153         (ref_group_by_count): Removed, it was commented out anyway.
9154         (merge_chains): Use the remove_from_chain and add_to_chain
9155         primitives to do the reparenting, instead of rolling our own
9156         implementation.
9157         (add_to_chain): The first non-disabled group in the chain's group
9158         list will be the entry point for the chain. Because buffers can
9159         accumulate in loop elements' peer bufpens, we preferentially
9160         schedule loop groups before get groups to avoid unnecessary
9161         execution of get-based groups when the bufpens are already full.
9162         (gst_opt_scheduler_schedule_run_queue): Debug fixes.
9163         (get_group_schedule_function): Ditto.
9164         (loop_group_schedule_function): Ditto.
9165         (gst_opt_scheduler_loop_wrapper): Ditto.
9166         (gst_opt_scheduler_iterate): Ditto.
9167
9168         I understand the opt scheduler now, yippee!
9169
9170         * gst/gstpad.c: All throughout, added FIXMEs to look at for 0.9.
9171         (gst_pad_get_name, gst_pad_set_chain_function) 
9172         (gst_pad_set_get_function, gst_pad_set_event_function) 
9173         (gst_pad_set_event_mask_function, gst_pad_get_event_masks) 
9174         (gst_pad_get_event_masks_default, gst_pad_set_convert_function) 
9175         (gst_pad_set_query_function, gst_pad_get_query_types) 
9176         (gst_pad_get_query_types_default) 
9177         (gst_pad_set_internal_link_function) 
9178         (gst_pad_set_formats_function, gst_pad_set_link_function) 
9179         (gst_pad_set_fixate_function, gst_pad_set_getcaps_function) 
9180         (gst_pad_set_bufferalloc_function, gst_pad_unlink) 
9181         (gst_pad_renegotiate, gst_pad_set_parent, gst_pad_get_parent) 
9182         (gst_pad_add_ghost_pad, gst_pad_proxy_getcaps) 
9183         (gst_pad_proxy_pad_link, gst_pad_proxy_fixate) 
9184         (gst_pad_get_pad_template_caps, gst_pad_check_compatibility) 
9185         (gst_pad_get_peer, gst_pad_get_allowed_caps) 
9186         (gst_pad_alloc_buffer, gst_pad_push, gst_pad_pull) 
9187         (gst_pad_selectv, gst_pad_select, gst_pad_template_get_caps) 
9188         (gst_pad_event_default_dispatch, gst_pad_event_default) 
9189         (gst_pad_dispatcher, gst_pad_send_event, gst_pad_convert_default) 
9190         (gst_pad_convert, gst_pad_query_default, gst_pad_query) 
9191         (gst_pad_get_formats_default, gst_pad_get_formats): Better
9192         argument checks, and some doc fixes.
9193
9194         (gst_pad_custom_new_from_template): Um, does anyone
9195         use these functions? Actually make a custom pad instead of a
9196         normal one.
9197         (gst_pad_try_set_caps): Transpose some checks.
9198         (gst_pad_try_set_caps_nonfixed): Same, and use a macro to check if
9199         the pad is in negotiation.
9200         (gst_pad_try_relink_filtered): Use pad_link_prepare.
9201         
9202         * gst/gstelement.c: Remove prototypes also defined in gstclock.h.
9203
9204         * gst/gstelement.h: 
9205         * gst/gstclock.h: Un-deprecate the old clocking API, as discussed
9206         on the list.
9207
9208 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9209
9210         * gst/gstbin.c: (gst_bin_add):
9211           add error for not being able to add elements
9212
9213 2004-02-22  Julien MOUTTE <julien@moutte.net>
9214
9215         * gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
9216         audio-codec and video-codec.
9217
9218 2004-02-22  Benjamin Otte  <otte@gnome.org>
9219
9220         reported by: Padraig O'Briain <padraig.obriain@sun.com>
9221
9222         * autogen.sh:
9223           replace test -e with test -x for mkinstalldirs to be more portable.
9224           (fixes #134816)
9225
9226 2004-02-22  Benjamin Otte  <otte@gnome.org>
9227
9228         * gst/gstpad.c:
9229           revert last patch from Andy, it makes gst_pad_can_link_filtered much
9230           too noisy
9231         * gst/gsttag.c: (_gst_tag_initialize):
9232         * gst/gsttag.h:
9233           add GST_TAG_ALBUM_VOLUME_{COUNT,NUMBER}
9234         * libs/gst/control/dparam.c: (gst_dparam_attach):
9235         * libs/gst/control/dparammanager.c: (gst_dpman_attach_dparam):
9236           check that types for attached dparams match
9237
9238 2004-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
9239
9240         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
9241         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
9242         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
9243           fix errors
9244
9245 2004-02-20  Andy Wingo  <wingo@pobox.com>
9246
9247         * gst/gstbin.c:
9248         * gst/gstbuffer.c:
9249         * gst/gstplugin.c:
9250         * gst/registries/gstxmlregistry.c: 
9251         * gst/schedulers/gstoptimalscheduler.c: Debugging tweaks.
9252
9253         * gst/gstelement.c (gst_element_set_scheduler): Debugging fixes.
9254         (gst_element_add_pad): DEBUG->INFO, some fixes.
9255         (gst_element_get_compatible_pad_template): Just see if the
9256         templates' caps intersect, not if one is a strict subset of the
9257         other. This conforms more to what gst_pad_link_intersect() does.
9258         (gst_element_class_add_pad_template): Don't memcpy the pad
9259         template, just ref it.
9260         (gst_element_get_compatible_pad_filtered): Clean up debug messages
9261
9262         * gst/gstpad.c (gst_pad_can_link_filtered): Debug a true result.
9263         (gst_pad_link_filtered): Debug changes.
9264         (gst_pad_link_prepare): New function, consolidated from
9265         can_link_filtered and link_filtered.
9266
9267         * gst/parse/grammar.y (gst_parse_perform_link): Made INFO output
9268         look more like that of the functions in gstelement.c
9269
9270         * gst/gstinfo.c (gst_debug_print_object): Put a space before the
9271         object, and return the empty string if object is NULL.
9272
9273         * gst/parse/parse.l: Remove trailing newlines when calling PRINT.
9274         * gst/parse/grammar.y (YYFPRINTF): Log bison debugging info via
9275         LOG, not DEBUG. We still get flex info on debug.
9276
9277         * gst/registries/gstxmlregistry.c (gst_xml_registry_load): Make
9278         debug string more verbose.
9279         (plugin_times_older_than): DEBUG->LOG.
9280
9281 2004-02-20  Julien MOUTTE <julien@moutte.net>
9282
9283         * gst/gsttag.h: Adding video-codec and audio-codec for demuxers which
9284         will emit found_tag for each stream they demux with the codec.
9285
9286 2004-02-20  Benjamin Otte  <otte@gnome.org>
9287
9288         * gst/gstevent.c: (_gst_event_copy), (_gst_event_free):
9289           copy navigation event correctly. Check freeing tag lists. 
9290         * gst/gstthread.c: (gst_thread_change_state):
9291           don't abort() on state changing mess - it might happen because of
9292           bugs.
9293         * gst/gstvalue.c: (gst_value_set_caps), (gst_value_get_caps):
9294           use boxed functions
9295         * gst/gstvalue.h:
9296           fix GST_VALUE_HOLDS_CAPS
9297
9298 2004-02-19  David Schleef  <ds@schleef.org>
9299
9300         * gst/gstinfo.h:  Copy G_STRFUNC implementation from glib-2.4
9301         and use it for GST_FUNCTION.  (bug #134750)
9302
9303 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9304
9305         * po/fr.po:
9306         * po/nl.po:
9307           updating translations
9308
9309 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9310
9311         * tools/gst-run.c: (get_candidates), (main): some fixes from jdahlin
9312
9313 2004-02-18  kost@imn.htwk-leipzig.de
9314
9315         reviewed by: David Schleef  <ds@schleef.org>
9316
9317         * docs/libs/gstreamer-libs-sections.txt:  Add missing sections
9318         for libgstcontrol.
9319
9320 2004-02-18  David Schleef  <ds@schleef.org>
9321
9322         * libs/gst/control/dparam.c: (gst_dparam_class_init):
9323         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9324         (gst_dpsmooth_new): Additional fixes to get double dparams working.
9325         * tools/gst-inspect.c: (print_element_info): Support dumping of
9326         double dparam information.
9327
9328 2004-02-17  David Schleef  <ds@schleef.org>
9329
9330         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
9331         Use G_TYPE_STRING in signal prototype instead of G_TYPE_POINTER.
9332         * gst/elements/gsttypefind.c: (gst_type_find_element_class_init):
9333         Use GST_TYPE_CAPS in signal prototype.
9334         * gst/gstcaps.c: (_gst_caps_initialize), (gst_caps_copy_conditional):
9335         Convert GST_TYPE_CAPS to boxed.
9336         * gst/gstelement.c: (gst_element_class_init):
9337         Use GST_TYPE_TAG_LIST in signal prototype.
9338         * gst/gstindex.c: (gst_index_class_init):
9339         * gst/gstindex.h:
9340         Add GST_TYPE_INDEX_ENTRY type.
9341         * gst/gstmarshal.list:
9342         Add necessary marshal types.
9343         * gst/gstpad.c: (gst_real_pad_class_init),
9344         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
9345         (gst_pad_recover_caps_error):
9346         Use GST_TYPE_CAPS in signal prototypes.  Fix some debugging strings.
9347         * gst/gststructure.c: (_gst_structure_initialize),
9348         (gst_structure_copy), (_gst_structure_copy_conditional):
9349         * gst/gststructure.h:
9350         Convert GST_TYPE_STRUCTURE to boxed.
9351         * gst/gsttag.c: (gst_tag_list_get_type):
9352         * gst/gsttag.h:
9353         Add GST_TYPE_TAG_LIST type.
9354
9355 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9356
9357         * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
9358         to what we agreed with david.
9359         * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
9360
9361 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9362
9363         * po/nl.po: update translation
9364
9365 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9366
9367         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
9368           throw an error if spider is trying to play a mime type there is
9369           no decoder for
9370         * po/POTFILES.in:
9371           add gst/autoplug/gstspider.c for translation
9372
9373 2004-02-17  Julien MOUTTE  <julien@moutte.net>
9374
9375         * gst/gstpad.c: (gst_pad_try_set_caps): We are nice people. Return 
9376         silently when the pad is negotiating.
9377
9378 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9379
9380         * docs/faq/Makefile.am:
9381           add script to run gstreamer uninstalled 
9382         * docs/faq/faq.xml:
9383         * docs/faq/developing.xml:
9384         * docs/faq/gst-uninstalled:
9385           extract script to run gstreamer uninstalled
9386         * docs/manuals.mak:
9387           add EXTRA_SOURCES variable for Makefile.am's to set to
9388           use additional SOURCE files for the doc build
9389
9390 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
9391
9392         * gst/gstatomic_impl.h: Fedora 2 test package patch for S390
9393
9394 2004-02-15  Julien MOUTTE  <julien@moutte.net>
9395
9396         * gst/gstbin.c: (gst_bin_change_state), (gst_bin_iterate): Fix a big
9397         bug that was breaking pipelines like sinesrc ! { queue ! osssink } when
9398         an error was thrown by osssink. Basically a state change failure for
9399         an element in a different scheduling group was considered as
9400         successful, which means that caps nego was going on and weird stuff
9401         happened. Like I wrote in the comment there, if someone wants to
9402         revert that please drop me a mail explaining why because I really see
9403         no point in keeping that broken behaviour there.
9404         * gst/gstqueue.c: (gst_queue_get): Add a safety check as the queue CAN
9405         be empty, we then return NULL which will trigger a nice error when 
9406         pulling from the pad.
9407
9408 2004-02-13  David Schleef  <ds@schleef.org>
9409
9410         * libs/gst/control/dparam.c: (gst_dparam_class_init),
9411         (gst_dparam_get_property), (gst_dparam_set_property),
9412         (gst_dparam_do_update_default):
9413         * libs/gst/control/dparam.h:
9414         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
9415         (gst_dpsmooth_new), (gst_dpsmooth_set_property),
9416         (gst_dpsmooth_get_property), (gst_dpsmooth_value_changed_double),
9417         (gst_dpsmooth_do_update_double):
9418         * libs/gst/control/dparam_smooth.h:
9419         * libs/gst/control/dparammanager.c:
9420         (gst_dpman_inline_direct_update):
9421         Add support for double dparams.
9422
9423 2004-02-13  David Schleef  <ds@schleef.org>
9424
9425         * gst/elements/gstfdsrc.c: (gst_fdsrc_get): Use GST_TIME_TO_TIMEVAL()
9426         * gst/gstclock.h: Avoid using 64-bit % operator (slow!)
9427
9428 2004-02-13  Mattias Wadman  <mattias@sudac.org>
9429
9430         reviewed by: David Schleef  <ds@schleef.org>
9431
9432         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
9433         (gst_fdsrc_init), (gst_fdsrc_set_property),
9434         (gst_fdsrc_get_property), (gst_fdsrc_get):
9435         * gst/elements/gstfdsrc.h:  Adds timeout property to fdsrc,
9436         and sends an EOS event if file descriptor reading times out.
9437
9438 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9439
9440         * configure.ac:
9441           add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
9442
9443 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
9444
9445         * configure.ac: pass required libxml version as argument
9446         (bug reported by Christophe Fergeau)
9447
9448 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9449   
9450         * docs/gst/gstreamer-docs.sgml:
9451         * docs/gst/tmpl/gstxml.sgml:
9452         * docs/libs/gstreamer-libs-docs.sgml:
9453           version API docs
9454
9455 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9456
9457         * gst/gstinfo.c:
9458         * gst/gstregistrypool.c: (gst_registry_pool_plugin_filter),
9459         (gst_registry_pool_feature_filter):
9460         * gst/gstthread.c: (gst_thread_class_init):
9461         * gst/gstvalue.c:
9462           add includes exposed by building without libxml
9463         * gst/indexers/Makefile.am:
9464           do not build fileindex when LOADSAVE disabled; we should have
9465           a better libxml check later since fileindex depends on xml, not
9466           LOADSAVE or REGISTRY
9467         * libs/gst/control/Makefile.am:
9468           link with m
9469         * tools/Makefile.am:
9470           fix wrong source code for gst-xmlinspect
9471
9472 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9473
9474         * configure.ac:
9475           fix gcov help output
9476           move calls to and use new GST_CHECK_DISABLE_SUBSYSTEM
9477         * docs/random/release:
9478           some updated releasing notes
9479         * gstreamer.spec.in:
9480           more updates
9481
9482 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9483
9484         * docs/faq/faq.xml:
9485         * docs/manual/manual.xml:
9486         * docs/pwg/pwg.xml:
9487         * docs/pwg/titlepage.xml:
9488           put version in documentation
9489
9490 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9491
9492         * tools/Makefile.am: fix man page installation
9493
9494 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9495
9496         * configure.ac:
9497           don't check for libxml when load/save and registry disabled (#105844)
9498         * gstreamer.spec.in:
9499           sync with fedora candidate spec
9500
9501 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
9502
9503         * po/fr.po:
9504         * po/nl.po:
9505           replace multidisksrc with multifilesrc
9506
9507 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9508
9509         * po/POTFILES.in:
9510           update to multidisksrc => multifilesrc file renaming (#134145)
9511
9512 2004-02-11  David Schleef  <ds@schleef.org>
9513
9514         * docs/gst/tmpl/gstcaps.sgml:  Fix stuff that mentions GstProps
9515         * docs/gst/tmpl/gstpadtemplate.sgml: same
9516         * docs/gst/tmpl/gstreamer-unused.sgml: Remove GstProps
9517         * gst/gstobject.c: (gst_object_set_name_default): Do the memleak
9518         fixing dance.
9519         * gst/gstutils.c: Remove disabled code that uses GstProps.
9520         * gst/registries/gstxmlregistry.h: same
9521         * docs/random/ds/0.9-suggested-changes: random notes
9522
9523 2004-02-11  kost@imn.htwk-leipzig.de
9524
9525         reviewed by: David Schleef  <ds@schleef.org>
9526
9527         * gst/gstclock.c: (gst_clock_entry_new): fixes structure
9528         initialisation of clock (bug #134128)
9529
9530 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9531
9532         * configure.ac:
9533         * gst/elements/Makefile.am:
9534         * gst/elements/gstelements.c:
9535         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
9536         (gst_multifilesrc_class_init), (gst_multifilesrc_init),
9537         (gst_multifilesrc_set_property), (gst_multifilesrc_get_property),
9538         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
9539         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
9540         * gst/elements/gstmultifilesrc.h:
9541           rename multidisksrc to multifilesrc (part of #122200)
9542
9543 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9544
9545         * docs/manuals.mak:
9546           fix automake complaints
9547         * gst-element-check.m4:
9548           fix unquotedness
9549
9550 2004-02-11  David Schleef  <ds@schleef.org>
9551
9552         * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
9553         * gst/gstatomic_impl.h: Disable sparc implementation.
9554
9555 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9556
9557         * gst-element-check.m4:
9558           fix underquoted macros as reported by automake 1.8.x (#133800)
9559         * configure.ac:
9560           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
9561           by autopoint (fixes #132996)
9562
9563 2004-02-10  Andy Wingo  <wingo@pobox.com>
9564
9565         * gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
9566         way to do inheritance.
9567         (gst_pad_get_event_masks, gst_pad_get_event_masks_default) 
9568         (gst_pad_get_query_types, gst_pad_get_query_types_default):
9569         Routine docs.
9570         (gst_pad_set_link_function, gst_pad_set_fixate_function) 
9571         (gst_pad_set_getcaps_function): Doc from Dave's negotation random
9572         doc.
9573         (gst_pad_unlink, gst_pad_is_linked): Docs.
9574         (gst_pad_renegotiate): A brief description of capsnego.
9575         (gst_pad_try_set_caps): Document.
9576         (gst_pad_try_set_caps_nonfixed): Document.
9577         (gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
9578         (gst_pad_set_parent): Deprecated (although not out of the API).
9579         (gst_pad_get_parent): Deprecated, although many plugins use this.
9580         (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
9581         are private and will go away in 0.9.
9582         (gst_pad_perform_negotiate): Doc.
9583         (gst_pad_link_unnegotiate): I think this is meant to be static.
9584         (gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps) 
9585         (gst_pad_template_get_caps_by_name, gst_pad_check_compatibility) 
9586         (gst_pad_get_peer): Doc updates.
9587         (gst_pad_caps_change_notify): Doc.
9588         (gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get) 
9589         (gst_ghost_pad_new): Doc fixes.
9590
9591         * gst/gstobject.c (gst_object_get_parent, gst_object_unparent) 
9592         (gst_object_check_uniqueness): 
9593
9594         * gst/gstelement.c (gst_element_add_pad) 
9595         (gst_element_add_ghost_pad, gst_element_remove_pad) 
9596         (gst_element_remove_ghost_pad, gst_element_get_pad) 
9597         (gst_element_get_static_pad, gst_element_get_pad_list) 
9598         (gst_element_class_get_pad_template_list) 
9599         (gst_element_class_get_pad_template): Work on the docs.
9600         (gst_element_get_pad_template_list): Uses the class method.
9601         (gst_element_get_compatible_pad_template): Docs, and consolidate
9602         some test conditions. 
9603         (gst_element_get_pad_from_template): New static function.
9604         (gst_element_request_compatible_pad): Docs, and work with
9605         non-request compatible templates. 
9606         (gst_element_get_compatible_pad_filtered): Docs and remove
9607         redundant checks.
9608         (gst_element_get_compatible_pad, gst_element_link_pads_filtered) 
9609         (gst_element_link_filtered, gst_element_link_many) 
9610         (gst_element_link, gst_element_link_pads) 
9611         (gst_element_unlink_many): Docs.
9612
9613 2004-02-05  Andy Wingo  <wingo@pobox.com>
9614
9615         * gst/gstpad.c (_gst_real_pad_fixate_accumulator):
9616         s/pointer/boxed/.
9617
9618         * gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
9619
9620         * gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
9621         marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
9622         with the type=GST_TYPE_CAPS. This allows language bindings to know
9623         what kind of data they're dealing with.
9624
9625         * gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
9626         to NULL when g_value_init is called. GstCaps, which rolls its own
9627         type implementation, now does the same instead of allocating empty
9628         caps.
9629         (_gst_caps_initialize, _gst_caps_collect_value,
9630         _gst_caps_lcopy_value): Provide collect_value and lcopy_value type
9631         table methods. This allows G_VALUE_COLLECT to work.
9632
9633 2004-02-05  Andy Wingo  <wingo@pobox.com>
9634
9635         * configure.ac:
9636         * testsuite/Makefile.am (SUBDIRS): 
9637         * testsuite/ghostpads/Makefile.am: 
9638         * testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
9639
9640         * gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
9641         These two routines are the only ones that set
9642         GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
9643         pad template. They should be made static, depending on ABI needs.
9644         (gst_real_pad_dispose): Handle the case of ghost pads without a
9645         parent. Assert after dealing with ghost pads that the ghost pad
9646         list is empty.
9647         (gst_ghost_pad_class_init): New property added, ::real-pad. Can be
9648         set after creation.
9649         (gst_ghost_pad_dispose): Set ::real-pad to NULL.
9650         (gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
9651         functions. set_property will call add_ghost_pad/remove_ghost_pad
9652         as appropriate.
9653         (gst_ghost_pad_new): All the work is offloaded to g_object_new.
9654
9655         * gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
9656         (gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
9657         (gst_element_remove_pad): Handle ghost pads as well.
9658         (gst_element_remove_ghost_pad): Deprecated (could be removed,
9659         depending on API-stability needs).
9660
9661 2004-02-05  Andy Wingo  <wingo@pobox.com>
9662
9663         * gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
9664         of course they're const
9665
9666 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
9667
9668         * tools/Makefile.am:
9669         * tools/gst-feedback:
9670         * tools/gst-feedback-0.7:
9671           make gst-feedback versioned too for consistency
9672
9673 2004-02-11  David Schleef  <ds@schleef.org>
9674
9675         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9676         (gst_pad_try_set_caps): Fix format strings for GST_PTR_FORMAT.
9677
9678 2004-02-10  Julien MOUTTE <julien@moutte.net>
9679
9680         * gst/gstevent.c: (_gst_event_free): Sometimes a tag event arrives but
9681         the structure does not contain a valid tag list. Adding a safety check
9682         to remove a noisy warning in that case.
9683
9684 2004-02-10  Thomas Vander Stichele  <thomas at apestaart dot org>
9685
9686         * gst/gst.c: fix name to be in line with others
9687
9688 2004-02-09  Julien MOUTTE <julien@moutte.net>
9689
9690         * libs/gst/bytestream/bytestream.c: (gst_bytestream_peek): We should
9691         not shout that loud when len is 0. Just return 0 silently.
9692
9693 2004-02-09  Julien MOUTTE  <julien@moutte.net>
9694
9695         * gst/gstdata.c: (gst_data_ref): Adding a categorized debug on data_ref
9696         because data_unref has one and I prefer the debug to be symetric.
9697         * gst/gstqueue.c: (gst_queue_locked_flush): Fix a huge memleak. Buffers
9698         were refed when added to the queue and unrefed only once when the queue
9699         was flushed. Now the flush handler unref the buffers two times : first
9700         unref for the ref added when pushing in the queue's tail and second
9701         unref to destroy the flushed buffer.
9702
9703 2004-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
9704
9705         * docs/pwg/building-boiler.xml: fix cvs checkout documentation
9706
9707 2004-02-06  David Schleef  <ds@schleef.org>
9708
9709         * docs/random/ds/0.9-suggested-changes: Random ramblings
9710         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap): Cast size_t
9711         to int before printing.
9712         * gst/parse/grammar.y: Fix gcc-2.95 style variadic macros.
9713         * gst/parse/parse.l: same.  See bug #129600
9714
9715 2004-02-06  David Schleef  <ds@schleef.org>
9716
9717         * gst/gstindex.c: (gst_index_add_format), (gst_index_add_id),
9718         (gst_index_add_entry), (gst_index_add_associationv),
9719         (gst_index_add_association): Add gst_index_add_associationv()
9720         and clean up gst_index_add_association(). #127133
9721
9722 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9723
9724         * autogen.sh: check out common with right tag if CVS/Tag exists
9725
9726 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9727
9728         * testsuite/ghostpads/ghostpads.c: (main):
9729           fix testsuite from segfaulting
9730
9731 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9732
9733         * Makefile.am: add release target
9734         * configure.ac: bump nano to 1
9735         * docs/random/release:
9736
9737 2004-02-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9738
9739         * gst/gstcaps.h:
9740         * gst/gstelement.c: (gst_element_base_class_init),
9741         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9742         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9743         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9744         (gst_real_pad_dispose):
9745         * gst/gststructure.c: (gst_structure_free),
9746         (gst_structure_from_string):
9747           put reverted patch back in
9748         * gst/gstelement.c: (gst_element_remove_pad):
9749           free explicit caps if they're set
9750         * gst/gstpad.c: (_gst_pad_default_fixate_func):
9751           copy the structure when fixating
9752
9753 2004-02-05  David Schleef  <ds@schleef.org>
9754
9755         * gst/gstmarshal.list:
9756         * gst/gstpad.c: (gst_real_pad_class_init),
9757         (_gst_real_pad_fixate_accumulator):
9758         Revert POINTER->BOXED change in signal marshaller.
9759
9760 === release 0.7.4 ===
9761                                                                                 
9762 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
9763                                                                                 
9764         * NEWS: GStreamer 0.7.4 "Wooden Eels" released
9765         * configure.ac: changed for release
9766
9767 2004-02-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
9768
9769         * gstreamer.spec.in:
9770           bump required version of gtk-doc
9771
9772 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
9773
9774         * gst/gstcaps.h:
9775         * gst/gstelement.c: (gst_element_base_class_init),
9776         (gst_element_class_set_details), (gst_element_clear_pad_caps):
9777         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9778         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
9779         (gst_real_pad_dispose):
9780         * gst/gststructure.c: (gst_structure_free),
9781         (gst_structure_from_string):
9782           revert patch that breaks applications, reapply after release
9783           to get this fixed properly
9784
9785 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9786
9787         * gst/gsttag.c: (_gst_tag_initialize):
9788         * gst/gsttag.h:
9789           remove duplicated field GST_TAG_APPLICATION. It's GST_TAG_ENCODER
9790
9791 2004-02-04  David Schleef  <ds@schleef.org>
9792
9793         Fix some memleaks:
9794         * gst/autoplug/gstspider.c: (gst_spider_request_new_pad),
9795         (gst_spider_plug_from_srcpad):
9796         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
9797
9798 2004-02-04  David Schleef  <ds@schleef.org>
9799
9800         * gst/gstelement.c: (gst_element_clear_pad_caps): Make sure we have
9801         a GstRealPad before accessing its structure members.
9802
9803 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9804
9805         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_speed),
9806         (gst_clock_get_speed):
9807         * gst/gstclock.h:
9808           reset padding, remove unused fields
9809
9810 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9811
9812         * gst/autoplug/gstspideridentity.c:
9813         (gst_spider_identity_sink_loop_type_finding):
9814           use get_allowed_caps, not get_caps (fixes #132519)
9815         * gst/elements/gsttypefind.c: (stop_typefinding):
9816           use correct order when sending buffers and seeking
9817
9818 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9819
9820         * configure.ac:
9821         * gst/gstelement.h:
9822         * gst/gstpad.h:
9823         * gst/gstqueue.h:
9824           upgrade libtool CURRENT, reset padding
9825
9826 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9827
9828         * configure.ac:
9829           bump to prerelease
9830           put back AM_PROG_LIBTOOL to make libtoolize stop complaining
9831
9832 2004-02-04  David Schleef  <ds@schleef.org>
9833
9834         * docs/random/ds/0.9-suggested-changes: random notes
9835         * gst/elements/gstfakesrc.c: (gst_fakesrc_get_formats),
9836         (gst_fakesrc_get_query_types), (gst_fakesrc_get_event_mask):
9837         Replace GST_PAD_EVENT_MASK_FUNCTION() (et al.) with its
9838         expansion.
9839         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
9840         (gst_filesink_get_query_types): same
9841         * gst/elements/gstfilesrc.c: (gst_filesrc_get_event_mask),
9842         (gst_filesrc_get_query_types), (gst_filesrc_get_formats): same
9843         * gst/gstcaps.h: deprecate GST_DEBUG_CAPS(), and fix the macro
9844         to use new GST_PTR_FORMAT.
9845         * gst/gstelement.h: deprecate function factory macros
9846         GST_ELEMENT_QUERY_TYPE_FUNCTION(), GST_ELEMENT_EVENT_MASK_FUNCTION().
9847         These are our last variadic macros that can't be replaced with
9848         inlines.  Celebrate!  Also fix a typo in an #ifdef that was
9849         attempting to deprecate gst_element_clock_wait().
9850         * gst/gstevent.h: same
9851         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
9852         (gst_pad_try_set_caps): replace GST_DEBUG_CAPS() with GST_DEBUG()
9853         * gst/gstpad.h: deprecate function factory macros similar to above.
9854
9855 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
9856
9857         * configure.ac:
9858         * tools/Makefile.am:
9859         * tools/gst-run.c: (popt_callback), (hash_print_key),
9860         (find_highest_version), (unmangle_libtool), (get_dir_of_binary),
9861         (get_candidates), (main):
9862           add new source file to generate non-versioned wrapper binaries
9863           for our tools.
9864
9865 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9866
9867         * gst/gstevent.c: (_gst_event_free):
9868           actually break; inside the switch statement
9869         * gst/parse/grammar.y:
9870           fix memleak where GValues weren't unset
9871
9872 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9873
9874         * gst/gststructure.c: (gst_structure_from_string):
9875           fix huge memleak
9876         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
9877         (new_entry), (gst_type_find_element_chain):
9878         * gst/gstelement.c: (gst_element_base_class_init),
9879         (gst_element_class_set_details):
9880         * gst/gstpad.c: (gst_pad_can_link_filtered):
9881           fix smaller memleaks
9882         * gst/gstpad.c: (gst_real_pad_dispose):
9883           check that explicit caps are gone
9884         * gst/gststructure.c: (gst_structure_free):
9885           actually free the structure
9886         * gst/gstelement.c: (gst_element_clear_pad_caps):
9887           unset explicit caps
9888
9889 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9890
9891         * tools/Makefile.am:
9892           use AM_CFLAGS since all the CFLAGS are the same
9893           use AM_LDFAGS
9894
9895 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9896
9897         * docs/manual/gnome.xml:
9898           expand example a little
9899         * gst/gst.c: (gst_init_with_popt_table),
9900         (gst_init_check_with_popt_table), (init_pre), (init_popt_callback):
9901           make sure popt option displays are done with right textdomain
9902           use GstPoptOption type
9903         * gst/gst.h:
9904           create GstPoptOption type
9905
9906 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9907
9908         * gst/gsterror.c: (_gst_stream_errors_init):
9909         * gst/gsterror.h:
9910           adding error type for no codec
9911         * po/POTFILES.in:
9912           add gst-inspect
9913         * po/nl.po:
9914           update dutch translation
9915         * tools/gst-inspect.c: (print_element_list), (main):
9916           do proper internationalization
9917         * tools/gst-launch.c: (idle_func):
9918           remove commented out function call
9919
9920 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
9921
9922         * docs/README:
9923           add some error fixing notes
9924         * docs/gst/gstreamer-sections.txt:
9925           remove double entries
9926         * docs/gst/tmpl/gstbin.sgml:
9927         * docs/gst/tmpl/gstclock.sgml:
9928           remove override
9929         * docs/gst/tmpl/gstelement.sgml:
9930         * docs/gst/tmpl/gstindex.sgml:
9931         * docs/gst/tmpl/gstobject.sgml:
9932         * docs/gst/tmpl/gstpadtemplate.sgml:
9933         * docs/gst/tmpl/gstreamer-unused.sgml:
9934         * docs/gst/tmpl/gsttag.sgml:
9935         * docs/gst/tmpl/gstthread.sgml:
9936         * docs/gst/tmpl/gstxml.sgml:
9937         * gst/gsttag.h:
9938           sync header prototypes with c decls
9939         * gst/gsttaginterface.c:
9940           fix doc headers
9941
9942 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9943
9944         * gst/parse/Makefile.am:
9945         * gst/gstobject.h:
9946           get rid of gstmarshal.h dependency. It's not needed.
9947         * gst/gst.h:
9948         * gst/elements/gstfakesink.c:
9949         * gst/elements/gstfakesrc.c:
9950         * gst/elements/gstidentity.c:
9951         * gst/gstbin.c:
9952         * gst/gstelement.c:
9953         * gst/gstindex.c:
9954         * gst/gstobject.c:
9955         * gst/gstpad.c:
9956         * gst/gstthread.c:
9957         * gst/gstxml.c:
9958         * libs/gst/control/dparam.c:
9959         * libs/gst/control/dparammanager.c:
9960           include gstmarshal.h.
9961         Fixes #132045
9962
9963 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9964
9965         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
9966         (gst_filesrc_dispose), (gst_filesrc_free_parent_mmap),
9967         (gst_filesrc_map_region), (gst_filesrc_get_mmap):
9968         * gst/elements/gstfilesrc.h:
9969           don't ref the filesrc when creating mmaped buffers. Don't keep a
9970           list of not-yet-destroyed buffers.
9971         * gst/gstbuffer.h:
9972           Deprecated BST_BUFFER_FREE_FUNC and GST_BUFFER_COPY_FUNC
9973
9974 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
9975
9976         * gst/gst.c: (init_pre):
9977           remove textdomain
9978
9979 2004-02-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
9980
9981         * docs/pwg/advanced-events.xml:
9982         * docs/pwg/advanced-scheduling.xml:
9983         * docs/pwg/intro-basics.xml:
9984         * docs/pwg/other-manager.xml:
9985         * docs/pwg/other-nton.xml:
9986         * docs/pwg/other-ntoone.xml:
9987         * docs/pwg/other-oneton.xml:
9988         * docs/pwg/pwg.xml:
9989           All sort of documentation... Forgot what. Point is that I want this
9990           in before I leave. The 'other-*' will be the last section and will
9991           explain issues specific to these type of elements.
9992
9993 2004-02-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
9994
9995         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
9996         (gst_filesrc_get_read):
9997           set all the values on buffers that we can
9998
9999 2004-02-02  David Schleef  <ds@schleef.org>
10000
10001         Change usage of isblah() to g_ascii_isblah() to be more locale
10002         independent.  (#133076)
10003         * gst/gsturi.c: (gst_uri_protocol_check_internal):
10004         * gst/gstutils.c:
10005         * gst/parse/parse.l:
10006
10007 2004-02-02  Jon Trowbridge  <trow@gnu.org>
10008
10009         reviewed by: David Schleef  <ds@schleef.org>
10010
10011         Fix memory leaks:
10012         * gst/gstcaps.c: (gst_caps_to_string):
10013         * gst/registries/gstxmlregistry.c:
10014         (gst_xml_registry_add_path_list_func),
10015         (gst_xml_registry_parse_padtemplate):
10016
10017 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
10018
10019         * gst/gstelement.c: (gst_element_default_error):
10020           suffix error messages with period
10021
10022 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
10023
10024         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
10025         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10026         * gst/gsterror.c: (gst_error_get_message):
10027           Suffix with dots
10028         * po/fr.po:
10029         * po/nl.po:
10030           Update translation files
10031
10032 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
10033
10034         * gst/autoplug/gstspideridentity.c:
10035         (gst_spider_identity_sink_loop_type_finding):
10036         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10037         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10038         (gst_filesink_close_file), (gst_filesink_handle_event),
10039         (gst_filesink_chain):
10040         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
10041         (gst_filesrc_get_read), (gst_filesrc_open_file):
10042         * gst/elements/gstidentity.c: (gst_identity_chain):
10043         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10044         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10045         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10046         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10047         * gst/gsterror.c: (_gst_core_errors_init),
10048         (_gst_library_errors_init), (_gst_resource_errors_init),
10049         (_gst_stream_errors_init), (gst_error_get_message):
10050         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10051         (gst_pad_recover_caps_error), (gst_pad_pull):
10052         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10053         * gst/schedulers/gstbasicscheduler.c:
10054         (gst_basic_scheduler_chainhandler_proxy),
10055         (gst_basic_scheduler_gethandler_proxy),
10056         (gst_basic_scheduler_cothreaded_chain):
10057           Suffix error messages with period.
10058           Use (NULL) instead of NULL
10059
10060 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
10061
10062         * docs/gst/tmpl/gstelement.sgml:
10063         * docs/gst/tmpl/gstxml.sgml:
10064         * gst/gstelement.c: (gst_element_error_full):
10065           add element path to error
10066
10067 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10068
10069         * docs/random/mimetypes:
10070           update raw int/float info
10071         * gst/gsttag.c: (_gst_tag_initialize):
10072         * gst/gsttag.h:
10073           add GST_TAG_ENCODER
10074
10075 2004-01-30  David Schleef  <ds@schleef.org>
10076
10077         * gst/cothreads.c: Add another fallback if MAP_ANONYMOUS is
10078           missing (#132991)
10079
10080 2004-01-30  Laurent Vivier <Laurent.Vivier@bull.net>
10081
10082         reviewed by Benjamin Otte 
10083           parts of the patch submitted in bug #113913
10084
10085         * configure.ac:
10086           use AC_C_INLINE. Use = instead of == with test
10087         * examples/plugins/example.c:
10088         * gst/autoplug/gstspideridentity.c:
10089         * gst/elements/gstfdsrc.c:
10090         * gst/elements/gstfilesrc.c:
10091         * gst/elements/gstidentity.c:
10092         * gst/elements/gstmultidisksrc.c:
10093         * gst/elements/gststatistics.c:
10094         * gst/gstelement.c:
10095         * gst/gstobject.c:
10096         * gst/gstpad.c:
10097         * gst/gstpipeline.c:
10098         * gst/gstthread.c:
10099           don't end enums with a comma
10100         * gst/gstindex.c: (gst_index_compare_func):
10101           do explicit casting to gint
10102         * gst/gsttrace.c: (gst_trace_text_flush):
10103           #define strsize as a macro
10104
10105 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
10106
10107         * docs/README:
10108         * docs/gst/gstreamer-docs.sgml:
10109         * docs/gst/gstreamer-sections.txt:
10110         * docs/gst/tmpl/gstelement.sgml:
10111         * docs/gst/tmpl/gsterror.sgml:
10112         * docs/gst/tmpl/gstinterface.sgml:
10113         * docs/gst/tmpl/gstreamer-unused.sgml:
10114         * docs/gst/tmpl/gststructure.sgml:
10115         * docs/gst/tmpl/gsttag.sgml:
10116         * docs/gst/tmpl/gsttaginterface.sgml:
10117         * docs/gst/tmpl/gstvalue.sgml:
10118         make sure all API ends up in the built docs
10119         * gst/gstinterface.c:
10120         * gst/gststructure.c: (gst_structure_id_set_value),
10121         (gst_structure_set_value), (gst_structure_id_get_value):
10122         * gst/gststructure.h:
10123         * gst/gstvalue.h:
10124         sync .h with .c declarations
10125
10126 2004-01-30  Julien Moutte  <julien@moutte.net>
10127
10128         * libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
10129         Ronald will fix riffread.
10130
10131 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10132
10133         * docs/pwg/advanced-interfaces.xml:
10134           Added tuner interface docs.
10135
10136 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10137
10138         * docs/random/mimetypes:
10139           correct Theora information
10140         * gst/gstelement.h:
10141           make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
10142
10143 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10144
10145         * gst/gstelement.c: (gst_element_error_full):
10146         * gst/gstelement.h:
10147           GST_ELEMENT_ERROR in enum -> _IN_ERROR
10148
10149 2004-01-29  Julien MOUTTE  <julien@moutte.net>
10150
10151         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
10152         (gst_filesrc_uri_handler_init): Fixing seeking by making FLUSH happen
10153         again and even before DISCONT.
10154         * gst/gstpad.c: (gst_pad_event_default): Remove a unused switch case.
10155         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf): Fix
10156         bytestream so that it's not stopping to fill the bytestream if events
10157         different than EOS or DISCONT are received. Instead it process them so
10158         that they go downstream.
10159
10160 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10161
10162         * docs/gst/tmpl/gstelement.sgml:
10163         * docs/gst/tmpl/gstreamer-unused.sgml:
10164         * docs/gst/tmpl/gstxml.sgml:
10165         * gst/autoplug/gstspideridentity.c:
10166         (gst_spider_identity_sink_loop_type_finding):
10167         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10168         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10169         (gst_filesink_close_file), (gst_filesink_handle_event),
10170         (gst_filesink_chain):
10171         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
10172         (gst_filesrc_get_read), (gst_filesrc_open_file):
10173         * gst/elements/gstidentity.c: (gst_identity_chain):
10174         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10175         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10176         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10177         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10178         * gst/gstelement.h:
10179         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10180         (gst_pad_recover_caps_error), (gst_pad_pull):
10181         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10182         * gst/schedulers/gstbasicscheduler.c:
10183         (gst_basic_scheduler_chainhandler_proxy),
10184         (gst_basic_scheduler_gethandler_proxy),
10185         (gst_basic_scheduler_cothreaded_chain):
10186           gst_element_error -> GST_ELEMENT_ERROR
10187
10188 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
10189
10190         * docs/Makefile.am:
10191         * docs/gst/tmpl/gstelement.sgml:
10192         * docs/gst/tmpl/gstxml.sgml:
10193         * docs/manuals.mak:
10194         * docs/pwg/advanced-request.xml:
10195         * docs/pwg/advanced-scheduling.xml:
10196         * docs/pwg/advanced-tagging.xml:
10197           fix non-validating docbook using CDATA
10198           make sure make check-local gets run first to check if it validates
10199
10200 2004-01-29  Julien MOUTTE <julien@moutte.net>
10201
10202         * docs/pwg/advanced-events.xml: Adding documentation on advanced event
10203         handling (up and downstream).
10204         * docs/pwg/advanced-interfaces.xml: Make it coherent with the
10205         my_filter thing.
10206
10207 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10208
10209         * docs/pwg/advanced-tagging.xml:
10210           Add docs about tag writing.
10211
10212 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10213
10214         * docs/pwg/advanced-tagging.xml:
10215           Add a part about tag reading and application signalling... Tag
10216           writing still needs to be documented.
10217         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10218           We can set file locations in READY, too.
10219
10220 2004-01-29  Julien MOUTTE <julien@moutte.net>
10221
10222         * docs/random/ds/element-checklist: Adding some notes about src
10223         events.
10224
10225 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10226
10227         * docs/random/mimetypes:
10228           Update docs to point to correct elements for various mimetypes, and
10229           some more errors pointed out by Stéphane LOEUILLET (aka LeRoutier)
10230           <stephane.loeuillet@tiscali.fr>.
10231
10232 2004-01-28  David Schleef  <ds@schleef.org>
10233
10234         * docs/pwg/intro-basics.xml: rewrite bufferpool stuff.
10235
10236 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10237
10238         * docs/random/mimetypes:
10239           update docs for audio/x-raw-float. Add "buffer-frames=0 means
10240           undefined"
10241         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
10242           make it only work in NULL.
10243         * gst/gstcaps.c:
10244           don't posion NULL caps
10245         * gst/gstelement.c: (gst_element_set_time):
10246           add debugging statement
10247         * gst/gstelement.c: (gst_element_emit_found_tag),
10248         (gst_element_found_tag_func), (gst_element_found_tags):
10249         * gst/gstelement.h:
10250           These functions take const taglists
10251         * gst/gstpad.c: (gst_pad_proxy_getcaps):
10252           fix memleak
10253         * gst/gstpad.c: (gst_pad_event_default):
10254           make more effort on handling discont and clocks, g_warn if everything
10255           fails
10256         * gst/gststructure.c: (gst_structure_remove_fields),
10257         (gst_structure_remove_fields_valist):
10258         * gst/gststructure.h:
10259           add gst_structure_remove_fields(_valist)
10260         * gst/gsttag.c:
10261           fix doc glitch
10262
10263 2004-01-28  David Schleef  <ds@schleef.org>
10264
10265         * docs/random/ds/element-checklist: Notes about gst_caps_to_string()
10266         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save_caps):
10267         Fix memory leakage of gst_caps_to_string().
10268
10269         Use GST_PTR_FORMAT instead of gst_caps_to_string():
10270         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_sp):
10271         * gst/autoplug/gstspideridentity.c: (spider_find_suggest),
10272         (gst_spider_identity_sink_loop_type_finding):
10273         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
10274         (find_suggest):
10275         * gst/gstpad.c: (gst_pad_try_relink_filtered),
10276         (gst_pad_set_explicit_caps):
10277         * gst/parse/grammar.y:
10278
10279 2004-01-28  David Schleef  <ds@schleef.org>
10280
10281         * configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
10282         GST_PRINTF_EXTENSION_FORMAT_DEFINE.
10283         * docs/random/ds/0.9-suggested-changes: Notes from Company.
10284         * gst/gstcaps.c: (gst_caps_to_string): Add comment.
10285         * gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
10286         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
10287         (gst_debug_log_default), (_gst_info_printf_extension),
10288         (_gst_info_printf_extension_arginfo):  Add printf extension.
10289         * gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
10290         * gst/gststructure.c: (gst_structure_to_string),
10291         (_gst_structure_parse_value): Use gst_value_deserialize() and
10292         remove old code.
10293         * gst/gstvalue.c: (gst_value_deserialize_fourcc),
10294         (gst_value_deserialize_boolean), (gst_strtoi),
10295         (gst_value_deserialize_int), (gst_value_deserialize_double),
10296         (gst_value_deserialize_string), (gst_value_deserialize): Implement
10297         a bunch of deserialize functions and gst_value_deserialize.
10298         * gst/gstvalue.h: er, _de_serialize, not unserialize
10299         * testsuite/caps/string-conversions.c: (main): We don't currently
10300         handle (float) in caps, so convert these to (double).
10301         * testsuite/debug/Makefile.am: Add new test for the printf extension
10302         * testsuite/debug/printf_extension.c: (main): same
10303
10304 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10305
10306         * docs/random/company/time:
10307           Add some docs about clocking and time
10308
10309 2004-01-28  Julien MOUTTE <julien@moutte.net>
10310
10311         * docs/pwg/advanced-interfaces.xml: Adding XOverlay documentation.
10312
10313 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10314
10315         * docs/pwg/advanced-clock.xml:
10316         * docs/pwg/advanced-dparams.xml:
10317         * docs/pwg/advanced-events.xml:
10318         * docs/pwg/advanced-interfaces.xml:
10319         * docs/pwg/advanced-midi.xml:
10320         * docs/pwg/advanced-request.xml:
10321         * docs/pwg/advanced-scheduling.xml:
10322         * docs/pwg/advanced-tagging.xml:
10323         * docs/pwg/advanced-types.xml:
10324         * docs/pwg/appendix-checklist.xml:
10325         * docs/pwg/building-boiler.xml:
10326         * docs/pwg/building-chainfn.xml:
10327         * docs/pwg/building-filterfactory.xml:
10328         * docs/pwg/building-pads.xml:
10329         * docs/pwg/building-props.xml:
10330         * docs/pwg/building-signals.xml:
10331         * docs/pwg/building-state.xml:
10332         * docs/pwg/building-testapp.xml:
10333         * docs/pwg/intro-basics.xml:
10334         * docs/pwg/intro-preface.xml:
10335         * docs/pwg/other-autoplugger.xml:
10336         * docs/pwg/other-sink.xml:
10337         * docs/pwg/other-source.xml:
10338         * docs/pwg/titlepage.xml:
10339           fix up id's
10340
10341 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10342
10343         * docs/95NonPath:
10344         * docs/HACKING:
10345         * docs/README:
10346         * docs/building-the-docs-on-debian:
10347           collect relevant bits of doc info
10348
10349 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10350
10351         * docs/pwg/advanced_tagging.xml:
10352           Half-assed commit so Thomas can re-arrange document IDs here to be
10353           consistent, too.
10354
10355 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10356
10357         * docs/manual/autoplugging.xml:
10358         * docs/manual/bins-api.xml:
10359         * docs/manual/bins.xml:
10360         * docs/manual/buffers-api.xml:
10361         * docs/manual/buffers.xml:
10362         * docs/manual/clocks.xml:
10363         * docs/manual/components.xml:
10364         * docs/manual/cothreads.xml:
10365         * docs/manual/debugging.xml:
10366         * docs/manual/dparams-app.xml:
10367         * docs/manual/dynamic.xml:
10368         * docs/manual/elements-api.xml:
10369         * docs/manual/elements.xml:
10370         * docs/manual/factories.xml:
10371         * docs/manual/gnome.xml:
10372         * docs/manual/goals.xml:
10373         * docs/manual/helloworld.xml:
10374         * docs/manual/helloworld2.xml:
10375         * docs/manual/init-api.xml:
10376         * docs/manual/intro.xml:
10377         * docs/manual/links-api.xml:
10378         * docs/manual/links.xml:
10379         * docs/manual/manual.xml:
10380         * docs/manual/motivation.xml:
10381         * docs/manual/pads-api.xml:
10382         * docs/manual/pads.xml:
10383         * docs/manual/plugins-api.xml:
10384         * docs/manual/plugins.xml:
10385         * docs/manual/programs.xml:
10386         * docs/manual/queues.xml:
10387         * docs/manual/quotes.xml:
10388         * docs/manual/schedulers.xml:
10389         * docs/manual/states-api.xml:
10390         * docs/manual/states.xml:
10391         * docs/manual/threads.xml:
10392         * docs/manual/typedetection.xml:
10393         * docs/manual/xml.xml:
10394           use chapter, part, section or misc as id starts for all bits
10395
10396 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10397
10398         * docs/gst/gstreamer-sections.txt:
10399           Fix up TITLE of the sections
10400
10401 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10402
10403         * docs/pwg/advanced_interfaces.xml:
10404           Add documentation on propertyprobing.
10405         * docs/pwg/advanced_events.xml:
10406         * docs/pwg/advanced_tagging.xml:
10407         * docs/pwg/building_boiler.xml:
10408         * docs/pwg/building_filterfactory.xml:
10409         * docs/pwg/pwg.xml:
10410           Move filterfactory and tagging into their own chapter, add a chapter
10411           on events. all these are empty placeholders that will be filled in
10412           some day.
10413
10414 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10415
10416         * docs/pwg/advanced_interfaces.xml:
10417           Docs for mixer interface. Also a check for website uploading.
10418
10419 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10420
10421         * docs/HACKING:
10422         * docs/Makefile.am:
10423         * docs/faq/Makefile.am:
10424         * docs/gst/Makefile.am:
10425         * docs/gst/tmpl/gstelement.sgml:
10426         * docs/gst/tmpl/gstplugin.sgml:
10427         * docs/gst/tmpl/gstreamer-unused.sgml:
10428         * docs/libs/Makefile.am:
10429         * docs/manual/Makefile.am:
10430         * docs/manuals.mak:
10431         * docs/pwg/Makefile.am:
10432         * docs/upload.mak:
10433           Separate out upload target and make it similar for
10434           both docbook and gtk-doc docs
10435
10436 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10437
10438         * docs/manuals.mak:
10439           Fix upload target to work with freedesktop
10440
10441 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10442
10443         * docs/pwg/advanced_types.xml:
10444           Add notes on creating your own types.
10445         * docs/pwg/building_boiler.xml:
10446         * docs/pwg/building_pads.xml:
10447         * docs/pwg/building_state.xml:
10448           Add some stuff about how to retrieve values from structures, how
10449           that relates to types and change layout slightly again to be almost
10450           perfect.
10451
10452 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10453
10454         * docs/pwg/advanced_dparams.xml:
10455         * docs/pwg/advanced_scheduling.xml:
10456           Change index layout slightly.
10457
10458 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10459
10460         * docs/pwg/advanced_clock.xml:
10461         * docs/pwg/advanced_interfaces.xml:
10462         * docs/pwg/advanced_midi.xml:
10463           General placeholders for now.
10464         * docs/pwg/advanced_request.xml:
10465           Explanation about sometimes and request pads.
10466         * docs/pwg/advanced_scheduling.xml:
10467           Concept of bytestream, loopfunctions and schedulers.
10468         * docs/pwg/building_boiler.xml:
10469           Add something about plugin-init.
10470
10471 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
10472
10473         * docs/pwg/building_pads.xml:
10474           Fix broken docbook
10475
10476 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10477
10478         * docs/pwg/advanced_interfaces.xml:
10479         * docs/pwg/pwg.xml:
10480           Add as a placeholder for future filling-in.
10481         * docs/pwg/basics_autoplugging.xml:
10482         * docs/pwg/basics_buffers.xml:
10483         * docs/pwg/basics_elements.xml:
10484         * docs/pwg/basics_events.xml:
10485         * docs/pwg/basics_plugins.xml:
10486         * docs/pwg/basics_types.xml:
10487           Remove, because unused (this is all in intro_basics.xml).
10488         * docs/pwg/building_signals.xml:
10489           Short intro to signals + reference to GObject docs - we really
10490           shouldn't go into these sort of things to deply because we don't
10491           use them that extensively anyway.
10492         * docs/pwg/building_state.xml:
10493           Explanation of states. Benjamin, please check.
10494         * docs/pwg/building_testapp.xml:
10495           Put everything in one page - putting only a few lines of content
10496           per page doesn't really make sense.
10497
10498           Time to get into the advanced topics. ;).
10499
10500 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10501
10502         * docs/pwg/advanced_types.xml:
10503           Finish documenting the current state of mimetypes.
10504         * docs/pwg/building_boiler.xml:
10505         * docs/pwg/building_chainfn.xml:
10506         * docs/pwg/building_pads.xml:
10507         * docs/pwg/building_props.xml:
10508         * docs/pwg/building_testapp.xml:
10509           Start documenting the "how to build a simple audio filter" part
10510           of the PWG. Most stuff is ready by now. Stuff remaining: signals,
10511           states and (maybe?) a short introduction to capsnego in the chapter
10512           on pads (building_pads.xml). Capsnego should probably be explained
10513           fully in advanced_capsnego.xml or so.
10514
10515 2004-01-26  David Schleef  <ds@schleef.org>
10516
10517         * gst/gstpad.c: (gst_pad_try_set_caps_nonfixed):
10518         * gst/gstpad.h: Add new function to allow element to (somewhat)
10519         specify non-fixed caps on a pad.
10520         * gst/gstqueue.c: (gst_queue_chain): Remove noisy g_object_notify()
10521         that I added a few weeks ago.
10522
10523 2004-01-26  David Schleef  <ds@schleef.org>
10524
10525         * gst/gstpad.c: (gst_pad_try_set_caps): Revert last change
10526           making try_set_caps() work with non-fixed caps.
10527
10528 2004-01-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10529
10530         * docs/pwg/advanced_types.xml:
10531         * docs/pwg/intro_basics.xml:
10532         * docs/pwg/intro_preface.xml:
10533         * docs/pwg/pwg.xml:
10534         * docs/pwg/titlepage.xml:
10535           First try to resurrect the PWG. I'm halfway integrating the mimetypes
10536           in here (docs/random/mimetypes), and will from there on work on both
10537           updating outdated parts and adding missing parts.
10538           That doesn't mean I'll fix it completely, but I'll try at least. ;).
10539
10540 2004-01-26  Thomas Vander Stichele  <thomas at apestaart dot org>
10541
10542         * gst/gsterror.h: reinstate GST_LIBRARY_ERROR_ENCODE until
10543           policy is set
10544
10545 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10546
10547         * gst/gstelement.h:
10548           remove gst_element_factory_get_version. It doesn't exist anymore.
10549         * gst/gstplugin.c:
10550         * gst/gstplugin.h:
10551           remove gst_plugin_set_name and change gst_plugin_get_longname to
10552           gst_plugin_get_description to match code.
10553         * gst/gsterror.h:
10554           remove GST_LIBRARY_ERROR_ENCODE. It's GST_STREAM_ERROR_ENCODE.
10555         * gst/gstpad.c: (gst_pad_try_set_caps):
10556           make it work with nonfixed caps.
10557           Note that even in the nonfixed case the link function of the pad
10558           that tries to set caps isn't called.
10559
10560 2004-01-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10561
10562         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
10563           fix bug where buffer was not assembled correctly
10564         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init):
10565           silence by default
10566         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
10567           only seek if there's no more buffers that could work without seeking
10568
10569 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
10570
10571         * gst/gsttag.c: (_gst_tag_initialize):
10572         * gst/gsttag.h:
10573           Add application tag (for encoding/muxing app).
10574
10575 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10576
10577         * autogen.sh:
10578           make autopoint force, and libtoolize not copy
10579         * common/m4/as-docbook.m4:
10580           added docbook xml catalog setup check
10581         * common/m4/gst-doc.m4:
10582           use docbook check
10583
10584 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10585
10586         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
10587         * gst/gsttag.h:
10588           add GstTagFlag
10589
10590 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10591
10592         * docs/gst/gstreamer-sections.txt:
10593         * docs/gst/tmpl/gst.sgml:
10594         * docs/gst/tmpl/gstbuffer.sgml:
10595         * docs/gst/tmpl/gstclock.sgml:
10596         * docs/gst/tmpl/gstelement.sgml:
10597         * docs/gst/tmpl/gstreamer-unused.sgml:
10598         * docs/gst/tmpl/gstxml.sgml:
10599           sync latest API changes to docs
10600
10601 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10602
10603         * gst/gstpluginfeature.c:
10604           fix doc snippet
10605         * tools/gst-inspect.c: (print_element_list):
10606           fix output of typefind
10607           add GPL header
10608         * tools/gst-launch.c:
10609           add GPL header
10610
10611 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10612
10613         * gst/elements/Makefile.am:
10614         * gst/elements/gstelements.c:
10615         * gst/elements/gsttypefindelement.c:
10616         * gst/elements/gsttypefindelement.h:
10617         * po/POTFILES.in:
10618         * po/fr.po:
10619         * po/nl.po:
10620           renamed gsttypefindelement to gsttypefind, conserving CVS history
10621
10622 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10623
10624         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_list_add_valist):
10625         * gst/gsttag.h:
10626           add some tags used in ogg as well
10627           fix _ in replaygain tags
10628
10629 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10630
10631         * gst/gsterror.h:
10632           fix wrong GST_LIBRARY_ERROR_ENCODE addition
10633
10634 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10635
10636         * gst/gstelement.c: (gst_element_error_full):
10637         * gst/gstelement.h:
10638           change _extended to _full
10639
10640 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10641
10642         reviewed by: <delete if not using a buddy>
10643
10644         * docs/gst/tmpl/gst.sgml:
10645         * docs/gst/tmpl/gstbuffer.sgml:
10646         * docs/gst/tmpl/gstclock.sgml:
10647         * docs/gst/tmpl/gstelement.sgml:
10648         * docs/gst/tmpl/gstreamer-unused.sgml:
10649         * docs/gst/tmpl/gstxml.sgml:
10650         * gst/gstelement.c: (gst_element_error_full):
10651         * gst/gstelement.h:
10652
10653 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
10654
10655         * gst/gstelement.h: fix _gst_element_error_printf prototype
10656
10657 2004-01-20  David Schleef  <ds@schleef.org>
10658
10659         * gst/gststructure.c: (gst_structure_to_string):
10660         Convert function to use gst_value_serialize().
10661         * gst/gstvalue.c: (gst_value_serialize_list),
10662         (gst_value_serialize_fourcc), (gst_value_serialize_int_range),
10663         (gst_value_serialize_double_range), (gst_value_serialize_boolean),
10664         (gst_value_serialize_int), (gst_value_serialize_double),
10665         (gst_string_wrap), (gst_value_serialize_string),
10666         (gst_value_serialize), (gst_value_deserialize):
10667         * gst/gstvalue.h:
10668         Add implementations for serialize.
10669
10670 2004-01-20  Julien MOUTTE  <julien@moutte.net>
10671
10672         * gst/gsterror.h: xvidenc.c needs GST_LIBRARY_ERROR_ENCODE. Dunno if
10673         we want to keep that one in the future or change xvidenc.c to use 
10674         another error.
10675
10676 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10677
10678         * gst/gstelement.c: (_gst_element_error_printf):
10679         * gst/gstelement.h:
10680           privatise function
10681
10682 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10683
10684         * docs/random/error:
10685           doc explaining error system
10686         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
10687           cleanup
10688
10689 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10690
10691         * gst/gst-i18n-app.h:
10692         * gst/gst-i18n-lib.h:
10693           remove inclusion of config.h
10694         * po/POTFILES.in:
10695         * po/nl.po:
10696           add gst/gstelement.c
10697
10698 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10699
10700         * po/nl.po: updated Dutch translation
10701
10702 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10703
10704         * gst/gsterror.c: (_gst_core_errors_init),
10705         (_gst_library_errors_init), (_gst_resource_errors_init),
10706         (_gst_stream_errors_init):
10707         remove ending punctuation dots
10708
10709 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10710
10711         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
10712         * gst/elements/gstfilesrc.c: (gst_filesrc_get_read):
10713         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10714         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10715         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10716         use GST_ERROR_SYSTEM
10717
10718 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10719
10720         * gst/gstelement.c: (gst_element_error_printf),
10721         (gst_element_error_extended):
10722         * gst/gstelement.h:
10723           add a helper printf function so we can have NULL values passed.
10724
10725 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
10726
10727         * gst/gstelement.h:
10728           add G_STMT macros to gst_element_error, which isn't strictly
10729           necessary but people tell me to anyway.
10730
10731 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
10732
10733         * gst/Makefile.am:
10734         * gst/autoplug/gstspideridentity.c:
10735         (gst_spider_identity_sink_loop_type_finding):
10736         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
10737         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
10738         (gst_filesink_close_file), (gst_filesink_handle_event),
10739         (gst_filesink_chain):
10740         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property),
10741         (gst_filesrc_map_region), (gst_filesrc_get_read),
10742         (gst_filesrc_open_file):
10743         * gst/elements/gstidentity.c: (gst_identity_chain):
10744         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
10745         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
10746         (gst_pipefilter_chain), (gst_pipefilter_open_file):
10747         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
10748         * gst/gst.h:
10749         * gst/gst_private.h:
10750         * gst/gstelement.c: (gst_element_class_init),
10751         (gst_element_default_error), (gst_element_error_func),
10752         (gst_element_error_extended):
10753         * gst/gstelement.h:
10754         * gst/gsterror.c: (_gst_core_errors_init),
10755         (_gst_library_errors_init), (_gst_resource_errors_init),
10756         (_gst_stream_errors_init), (gst_error_get_message):
10757         * gst/gsterror.h:
10758         * gst/gstinfo.c: (_gst_debug_init):
10759         * gst/gstmarshal.list:
10760         * gst/gstpad.c: (gst_pad_set_explicit_caps),
10761         (gst_pad_recover_caps_error), (gst_pad_pull):
10762         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
10763         * gst/schedulers/gstbasicscheduler.c:
10764         (gst_basic_scheduler_chainhandler_proxy),
10765         (gst_basic_scheduler_gethandler_proxy),
10766         (gst_basic_scheduler_cothreaded_chain):
10767         * po/POTFILES.in:
10768         * po/fr.po:
10769         * po/nl.po:
10770           change error signal
10771           add error categories
10772
10773 2004-01-18  Jeremy Simon  <jesimon@libertysurf.fr>
10774
10775         * gst/gsttag.c: (_gst_tag_initialize):
10776         * gst/gsttag.h:
10777         Add replaygain tag
10778
10779 2004-01-18  Colin Walters  <walters@verbum.org>
10780
10781         * examples/retag/retag.c: Call gst_init before processing
10782         program args.  Add g_assert to _link_many call.
10783
10784 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10785
10786         * gst/gstpad.c: (gst_pad_alloc_buffer):
10787           Return a newly allocated buffer when the pad has no peer.
10788
10789 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10790
10791         * gst/gstclock.c: (gst_clock_get_time):
10792           make it compile with gcc 2.95 again.
10793           Patch by Scott Wheeler
10794
10795 2004-01-15  David Schleef  <ds@schleef.org>
10796
10797         * gst/gstcaps.h:
10798         Added gst_caps_is_simple() macro.
10799         * testsuite/caps/caps.c: (test1):
10800         * testsuite/caps/intersect2.c: (main):
10801         * testsuite/caps/intersection.c: (main):
10802         Fixes to make 'make check' work again after removing
10803         gst_caps_is_chained().
10804
10805 2004-01-15  Leif Johnson <leif@ambient.2y.net>
10806
10807         * docs/random/uraeus/gstreamer_and_midi.txt: Rather large edits
10808         and additions to the MIDI document.
10809
10810 2004-01-15  David Schleef  <ds@schleef.org>
10811
10812         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered),
10813         (gst_element_link_pads_filtered): Use GST_PAD_ macros instead
10814         of GST_RPAD_, since we don't know if it's a real or ghost pad.
10815
10816 2004-01-15  David Schleef  <ds@schleef.org>
10817
10818         * gst/gstqueue.c:
10819         * gst/gstqueue.h:
10820         Fix the spelling of "treshold" and make min_threshold actually
10821         affect the queue.
10822
10823 2004-01-15  David Schleef  <ds@schleef.org>
10824
10825         * gst/gstcaps.c:
10826         Add lots of documentation.
10827         * gst/gstcaps.h:
10828         Deprecate a few functions.
10829         * gst/gstpad.c:
10830         Removed use of deprecated functions.
10831
10832 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10833
10834         * gst/gstpad.c: (gst_pad_is_linked):
10835         * gst/gstpad.h:
10836           implement gst_pad_is_linked
10837         * gst/gstelement.h:
10838           reserve space for initiate_state_change
10839
10840 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10841
10842         * gst/autoplug/gstspideridentity.c:
10843         (gst_spider_identity_sink_loop_type_finding):
10844           break infinite loop by just returning instead of looping
10845         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_set_property):
10846           set event time difference correctly. Set it to 1 second instead
10847           of 100ms to be more tolerant
10848         * gst/gstelement.c: (gst_element_set_time):
10849           add debugging output
10850
10851 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10852
10853         * gst/gstqueue.c: (gst_queue_getcaps), (gst_queue_link):
10854           query if buffers are inside the pool, ignore events
10855
10856 2004-01-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10857
10858         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
10859         (gst_clock_set_speed), (gst_clock_set_active),
10860         (gst_clock_is_active), (gst_clock_reset),
10861         (gst_clock_handle_discont):
10862         * gst/gstclock.h:
10863           deprecate old interface and disable functions that aren't in use
10864           anymore.
10865         * gst/gstelement.h:
10866         * gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
10867         (gst_element_set_time), (gst_element_adjust_time):
10868           add concept of "element time" and functions to get/set this time.
10869         * gst/gstelement.c: (gst_element_change_state):
10870           update element time correctly.
10871         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
10872           This is a debug message, not a g_critical.
10873         * gst/gstpad.c: (gst_pad_event_default):
10874           handle discontinuous events right with element time.
10875         * gst/gstscheduler.c: (gst_scheduler_state_transition):
10876           update to clocking fixes.
10877           set clocks on elements in READY=>PAUSED. The old behaviour caused
10878           a wrong element time on the first element that started playing.
10879         * gst/schedulers/gstbasicscheduler.c:
10880         (gst_basic_scheduler_class_init):
10881         * gst/schedulers/gstoptimalscheduler.c:
10882         (gst_opt_scheduler_class_init):
10883           remove code that just implements the default behaviour.
10884         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
10885           update to use new clocking functions
10886         * testsuite/clock/clock1.c: (gst_clock_debug), (main):
10887         * testsuite/clock/clock2.c: (gst_clock_debug), (main):
10888           update to test new element time.
10889         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
10890           use _get_allowed_caps instead of _get_caps. This catches filtered
10891           caps correctly.
10892         * testsuite/debug/commandline.c:
10893           update for new GST_DEBUG syntax.
10894         * testsuite/threads/Makefile.am:
10895           disable a test that only works sometimes.
10896
10897 2004-01-13  Julien MOUTTE <julien@moutte.net>
10898
10899         * po/LINGUAS: Adding fr.
10900         * po/fr.po: Adding french translation.
10901
10902 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10903
10904         * gst/parse/grammar.y:
10905         * po/POTFILES.in:
10906         * po/nl.po:
10907         * tools/gst-launch.c: (xmllaunch_parse_cmdline), (main):
10908           translate parsing error messages
10909
10910 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10911
10912         * po/POTFILES.in: adding gst-launch
10913         * po/nl.po: updated translation, all 99 strings translated
10914         * tools/gst-launch.c: (idle_func), (xmllaunch_parse_cmdline),
10915         (found_tag), (sigint_handler_sighandler), (play_handler), (main):
10916           fix strings for translation
10917
10918 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10919
10920         * gst/gst.c:
10921           - capitalize beginnings of popt options
10922           - fix strings for translation
10923           - change gst-debug format from =N1=V1:N2=V2 to =N1:V1,N2:V2
10924
10925 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10926
10927         * po/README: add some notes on how to update translations
10928
10929 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10930
10931         * ABOUT-NLS: removed, is autogenerated from autopoint
10932         * autogen.sh: add autopoint stuff
10933         * configure.ac: fix up gettext stuff
10934         * gst/Makefile.am: add i18n headers to noinst_HEADERS
10935         * gst/elements/gsttypefindelement.c: add header include
10936         * gst/gettext.h: add header, copy from system-installed header
10937         * gst/gst-i18n-app.h: to be included by each app having translations
10938         * gst/gst-i18n-lib.h: to be included by each lib having translations
10939         * gst/gst.c: (init_pre): fix up gettext calls
10940         * gst/gst_private.h: remove i18n stuff, moving to separate headers
10941         * po/LINGUAS: the new way to specify translations present
10942         * po/Makefile.in.in: removed from cvs, autogenerated from autopoint
10943         * po/Makevars: the variables filled in for GStreamer
10944         * po/POTFILES.in: added new files with translations
10945         * po/de.po: has new strings
10946         * po/nl.po: readded, has new strings
10947
10948 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
10949
10950         * gst/gsttag.c: fix some strings marked for translation
10951
10952 2004-01-13  Iain <iain@prettypeople.org>
10953
10954         * gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
10955         group when we add an element to it, cos we unref it when we remove one
10956
10957 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
10958
10959         * testsuite/debug/commandline.c: (debug_not_reached):
10960         * testsuite/debug/output.c: (check_message):
10961           fix testsuite
10962
10963 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
10964
10965         * examples/cutter/.cvsignore:
10966         * examples/helloworld/.cvsignore:
10967         * examples/launch/.cvsignore:
10968         * examples/manual/.cvsignore:
10969         * examples/mixer/.cvsignore:
10970         * examples/pingpong/.cvsignore:
10971         * examples/plugins/.cvsignore:
10972         * examples/queue/.cvsignore:
10973         * examples/queue2/.cvsignore:
10974         * examples/queue3/.cvsignore:
10975         * examples/queue4/.cvsignore:
10976         * examples/retag/.cvsignore:
10977         * examples/thread/.cvsignore:
10978         * examples/typefind/.cvsignore:
10979         * examples/xml/.cvsignore:
10980         * gst/.cvsignore:
10981         * gst/autoplug/.cvsignore:
10982         * gst/elements/.cvsignore:
10983         * gst/indexers/.cvsignore:
10984         * gst/parse/.cvsignore:
10985         * gst/registries/.cvsignore:
10986         * gst/schedulers/.cvsignore:
10987         * libs/gst/bytestream/.cvsignore:
10988         * libs/gst/control/.cvsignore:
10989         * libs/gst/getbits/.cvsignore:
10990         * tests/.cvsignore:
10991         * tests/bufspeed/.cvsignore:
10992         * tests/instantiate/.cvsignore:
10993         * tests/memchunk/.cvsignore:
10994         * tests/muxing/.cvsignore:
10995         * tests/sched/.cvsignore:
10996         * tests/seeking/.cvsignore:
10997         * tests/threadstate/.cvsignore:
10998         * testsuite/.cvsignore:
10999         * testsuite/caps/.cvsignore:
11000         * testsuite/cleanup/.cvsignore:
11001         * testsuite/dynparams/.cvsignore:
11002         * testsuite/plugin/.cvsignore:
11003         * tools/.cvsignore:
11004           update - this is huge, because it includes *.bb, *.bbg and *.da files
11005           which are generated for gcov.
11006
11007 2004-01-11  David Schleef  <ds@schleef.org>
11008
11009         * gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
11010         a function to parse integers in ways that strto[u]l() does not.
11011
11012 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11013
11014         * tools/gst-inspect.c: (print_caps):
11015           improve output of caps a bit
11016
11017 2004-01-11  David Schleef  <ds@schleef.org>
11018
11019         * gst/gstbuffer.c: (gst_buffer_create_sub): Subbuffers should
11020         inherit correct flags (READONLY and DONTKEEP).
11021
11022 2004-01-11  David Schleef  <ds@schleef.org>
11023
11024         * gst/elements/gstfilesrc.c: (gst_filesrc_free_parent_mmap),
11025         (gst_filesrc_map_region):
11026         * gst/gstbuffer.c: (_gst_buffer_initialize),
11027         (_gst_buffer_sub_free), (gst_buffer_default_copy),
11028         (gst_buffer_new), (gst_buffer_create_sub),
11029         (gst_buffer_is_span_fast), (gst_buffer_span):
11030         * gst/gstbuffer.h:
11031         Change GstBuffer private structure element names. (all files)
11032         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
11033         (gst_queue_link):
11034         * gst/gstqueue.h:
11035         Implement getcaps/pad_link functions that handle the case where
11036         there are data in the queue.
11037
11038 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11039
11040         * gst/elements/gstbufferstore.c:
11041           initialize debugging structure correctly
11042         * gst/elements/gsttee.c: (gst_tee_set_property):
11043           g_object_notify when property was changed
11044         * gst/elements/gsttypefindelement.c:
11045         (gst_type_find_element_change_state):
11046           clear caps correctly
11047
11048 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11049
11050         * gst/gstqueue.c: (gst_queue_init):
11051           Use better defaults for when a queue should block. This
11052           gets rid of jerky playback for quite a few files.
11053           It takes more memory.
11054
11055 2004-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
11056
11057         (gst_xml_registry_parse_padtemplate):
11058           make critical message slightly more useful
11059
11060 2004-01-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11061
11062         * gst/gstinfo.c: (gst_debug_log), (gst_debug_log_valist),
11063         (gst_debug_message_get), (gst_debug_log_default):
11064         * gst/gstinfo.h:
11065           Change gst_debug_log(_valist) to take a const format string.
11066           Change prototype of log function and functions using those to 
11067           take a GstDebugMessage instead of a string that requires using
11068           gst_debug_message_get.
11069
11070 2004-01-08  David Schleef  <ds@schleef.org>
11071
11072         * Makefile.am:
11073         * configure.ac:
11074         Add option --enable-gcov to build GStreamer with -fprofile-arcs
11075         and -ftest-coverage, which allows gcov to show information about
11076         testsuite coverage.
11077
11078 2004-01-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11079
11080         * gst/gstutils.h:
11081           Add GST_BOILERPLATE(_FULL), GST_PARENT_CALL and
11082           GST_PARENT_CALL_WITH_DEFAULT
11083         * gst/elements/gstaggregator.c: 
11084         * gst/elements/gstbufferstore.c: 
11085         * gst/elements/gstfakesink.c: 
11086         * gst/elements/gstfakesrc.c: 
11087         * gst/elements/gstfdsink.c: 
11088         * gst/elements/gstfdsrc.c: 
11089         * gst/elements/gstfilesink.c: 
11090         * gst/elements/gstfilesrc.c: 
11091         * gst/elements/gstidentity.c: 
11092         * gst/elements/gstmd5sink.c: 
11093         * gst/elements/gstmultidisksrc.c:
11094         * gst/elements/gstpipefilter.c: 
11095         * gst/elements/gstshaper.c:
11096         * gst/elements/gststatistics.c:
11097         * gst/elements/gsttee.c:
11098         * gst/elements/gsttypefindelement.c:
11099           use them.
11100
11101 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
11102
11103         * docs/gst/gstreamer-docs.sgml: remove props
11104         * docs/gst/gstreamer-sections.txt: remove props
11105         * docs/gst/tmpl/gst.sgml:
11106         * docs/gst/tmpl/gstbin.sgml:
11107         * docs/gst/tmpl/gstbuffer.sgml:
11108         * docs/gst/tmpl/gstcaps.sgml:
11109         * docs/gst/tmpl/gstclock.sgml:
11110         * docs/gst/tmpl/gstelement.sgml:
11111         * docs/gst/tmpl/gstindex.sgml:
11112         * docs/gst/tmpl/gstobject.sgml:
11113         * docs/gst/tmpl/gstpad.sgml:
11114         * docs/gst/tmpl/gstpadtemplate.sgml:
11115         * docs/gst/tmpl/gstreamer-unused.sgml:
11116         * docs/gst/tmpl/gstthread.sgml:
11117         * docs/gst/tmpl/gstxml.sgml:
11118           sync with code reorganization
11119
11120 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
11121
11122         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
11123         Make the 'Could not find compatible pad' message more informative.
11124
11125 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11126                                                                                 
11127         * gst/elements/gstfilesink.c: (gst_filesink_set_location):
11128           Fix for if we pass NULL as property to location.
11129         * gst/elements/gstpipefilter.c: (gst_pipefilter_init),
11130         (gst_pipefilter_handle_event), (gst_pipefilter_chain):
11131           Fix for instantiate-test (see below).
11132         * gst/gststructure.c: (_gst_structure_parse_value):
11133           Fix compile error on gcc-2.96.
11134         * configure.ac:
11135         * tests/Makefile.am:
11136         * tests/instantiate/Makefile.am:
11137         * tests/instantiate/create.c: (create_all_elements), (main):
11138           Add a test that instantiates all elements. This makes it easy to
11139           track dead code for old API/design (like setting event functions
11140           on sink pads and so on).
11141
11142 2004-01-06  Jan Schmidt  <thaytan@mad.scientist.com>
11143
11144         * gst/gstcaps.c: (gst_caps_append_structure):
11145           Move the poisoning to allow a NULL structure
11146         * gst/gstevent.c: (_gst_event_free):
11147           When freeing a navigation event, free the structure
11148           also
11149
11150 2004-01-04  David Schleef  <ds@schleef.org>
11151
11152         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11153         Remove usage of gst_pad_proxy_fixate.
11154         * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
11155         (gst_caps_split_one), (gst_caps_replace):
11156         Add poisoning code.
11157         * gst/gstmarshal.list:
11158         Add pointer__pointer for fixate signal
11159         * gst/gstpad.c: (gst_real_pad_class_init),
11160         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
11161         (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
11162         (gst_pad_set_explicit_caps), (gst_pad_template_new):
11163         Add poisoning code. Add fixate signal on RealPad. Change
11164         set_explicit_caps() to take const GstCaps, like try_set_caps().
11165         * gst/gstpad.h:
11166         * testsuite/caps/Makefile.am:
11167         * testsuite/caps/app_fixate.c: Add a test for the fixate signal
11168
11169 2004-01-03  David Schleef  <ds@schleef.org>
11170
11171         * gst/elements/gsttypefindelement.c:
11172         (gst_type_find_element_have_type), (gst_type_find_element_init):
11173         Use gst_pad_use_explicit_caps for src pad.
11174         * gst/gstpad.c: (gst_pad_try_set_caps):  Check that link exists
11175         before using it.
11176
11177 2004-01-03  David Schleef  <ds@schleef.org>
11178
11179         * gst/gstelement.c: (gst_element_link_pads_filtered),
11180         (gst_element_negotiate_pads): Fix to allow DELAYED to indicate
11181         that linking was successful.
11182         * gst/gstpad.c: (gst_pad_link_free),
11183         (gst_pad_link_call_link_functions), (gst_pad_link_negotiate),
11184         (gst_pad_link_try), (gst_pad_link_unnegotiate),
11185         (gst_pad_unnegotiate), (gst_pad_set_explicit_caps): Pass
11186         GstPadLinkReturn correctly between functions, and don't fail
11187         when DELAYED is used (DELAYED is very important).  Better
11188         cleanup on unlinking and unnegotiation.  Should fix some spider
11189         bugs.
11190
11191 2004-01-02  David Schleef  <ds@schleef.org>
11192
11193         * gst/gstelement.c: (gst_element_class_init),
11194         (gst_element_base_class_init): ->padtemplates should be cleared
11195         in base_init, since we need to have a fresh list for every
11196         class.  (Alternately, we chould copy the list and share the
11197         actual pad templates (not the list), but that would require
11198         changing every plugin to move pad template registration from
11199         base_init to class_init.)
11200
11201 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11202
11203         * gst/gstelement.c: (gst_element_class_add_pad_template):
11204           Refuse registering a pad template if another pad template
11205           with the same name already exists (#114715).
11206
11207 2004-01-02  David Schleef  <ds@schleef.org>
11208
11209         * gst/gstcaps.c: (_gst_structure_is_equal_foreach),
11210         (gst_caps_is_equal_fixed): Add new function.
11211         * gst/gstcaps.h: ditto.
11212         * gst/gstpad.c: (gst_real_pad_class_init),
11213         (gst_pad_link_call_link_functions), (gst_pad_try_set_caps),
11214         (gst_pad_set_explicit_caps), (gst_pad_get_caps):  In try_set_caps,
11215         check new caps against existing caps -- if they're the same, return
11216         OK without renegotiating.  caps-nego-failed signal fixed so that
11217         the marshaller isn't VOID__OBJECT.  Also changed to G_TYPE_POINTER
11218         to save an extra caps copy.  Don't complete negotiation if a pad
11219         link function returns DELAYED.
11220
11221 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11222
11223         * gst/gstpad.c: (gst_pad_try_relink_filtered):
11224           Fix wrong g_return_if_fail
11225
11226 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
11227
11228         * gst/gstbin.c: (gst_bin_class_init):
11229         Change the marshalling of element_added/element_removed
11230         to use gst_marshal_VOID__OBJECT, since gst_marshal_VOID__POINTER 
11231         complains that GST_TYPE_ELEMENT is not G_TYPE_POINTER
11232
11233 2004-01-01  David Schleef  <ds@schleef.org>
11234
11235         * gst/gstpad.c: (gst_pad_set_explicit_caps),
11236         (gst_pad_explicit_getcaps), (gst_pad_explicit_link),
11237         (gst_pad_use_explicit_caps):
11238         * gst/gstpad.h:
11239         Add new functions.  gst_pad_use_explicit_caps() sets up a pad
11240         to use an internal getcaps and link fuction so that negotiation
11241         always results in the explicitly set caps.
11242         gst_pad_set_explicit_caps() sets the explicit caps.  These functions
11243         are particularly useful for decoders.
11244
11245 2003-12-31  David Schleef  <ds@schleef.org>
11246
11247         * gst/elements/gstidentity.c: (gst_identity_class_init),
11248         (gst_identity_init), (gst_identity_chain),
11249         (gst_identity_set_property), (gst_identity_get_property):
11250         * gst/elements/gstidentity.h:
11251         * gst/gstqueue.c: (gst_queue_init):
11252           Negotiation fixes.
11253
11254 2003-12-31  David Schleef  <ds@schleef.org>
11255
11256         * gst/gstcaps.c: (gst_caps_intersect),
11257         (_gst_caps_normalize_foreach), (gst_caps_normalize):
11258           Implement gst_caps_normalize().
11259         * testsuite/caps/normalisation.c: (main):
11260           Add an additional test
11261
11262 2003-12-31  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11263
11264         * gst/gstqueue.c: (gst_queue_init):
11265           use gst_pad_proxy_getcaps()
11266
11267 2003-12-31  David Schleef  <ds@schleef.org>
11268
11269         * gst/elements/gstshaper.c: (gst_shaper_link):
11270         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
11271         * gst/gstqueue.c: (gst_queue_link):
11272           Negotiation fixes.
11273
11274 2003-12-31  David Schleef  <ds@schleef.org>
11275
11276         * gst/gstpad.c: (gst_pad_proxy_pad_link), (gst_pad_proxy_fixate):
11277         * gst/gstpad.h: Add functions that are useful as default pad
11278         link and fixate functions for elements.
11279
11280 2003-12-30  David Schleef  <ds@schleef.org>
11281
11282         * gst/gstpad.c: (gst_pad_link_try):
11283           Fix segfault when attempting to return to old caps
11284
11285 2003-12-29  David Schleef  <ds@schleef.org>
11286
11287         * gst/gstcaps.c: (gst_caps_normalize), (simplify_foreach),
11288         (gst_caps_structure_simplify), (gst_caps_simplify):
11289         * gst/gstcaps.h:
11290           Add simplify function
11291         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
11292         (gst_pad_perform_negotiate), (gst_pad_is_negotiated):
11293         * gst/gstpad.h:
11294           Copy over srcnotify, sinknotify when calling old pad_link
11295           functions.  Add new is_negotiated() function.
11296         * gst/gststructure.c: (gst_structure_copy):
11297           Fix an incredibly stupid bug that should have been noticed
11298           weeks ago.  _copy() returned the argument, not the new copy.
11299
11300 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11301
11302         * gst/gstcaps.c: (gst_caps_append):
11303           add sanity checks
11304         * gst/gstcaps.h: (gst_caps_debug):
11305           remove, it doesn't exist anymore.
11306         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
11307         (gst_element_threadsafe_properties_post_run):
11308           make debugging messages not clutter up THREAD debug category
11309         (gst_element_negotiate_pads), (gst_element_clear_pad_caps),
11310         (gst_element_change_state):
11311           update to new caps API
11312         * gst/gstinterface.c: (gst_implements_interface_cast):
11313           don't put vital code in g_return_if_fail
11314         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps), 
11315         (gst_pad_link_filtered):
11316           add pst_pad_try_link and use it.
11317         (gst_pad_perform_negotiate), (gst_pad_renegotiate):
11318           implement correctly, deprecate first one.
11319         (gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
11320           add and implement.
11321         (gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
11322           implement.
11323         (gst_pad_get_negotiated_caps):
11324           add and implement. Make GST_PAD_CAPS call this function.
11325         (gst_pad_get_caps):
11326           remove unneeded check..
11327         (gst_pad_recover_caps_error):
11328           disable, always return FALSE.
11329         (gst_real_pad_dispose):
11330           don't free caps and appfilter anymore, they're unused.
11331         * gst/gstpad.h:
11332           Reflect changes mentioned above.
11333         * gst/gstsystemclock.c: (gst_system_clock_wait):
11334           Make 'clock is way behind' a debugging message.
11335         * gst/gstthread.c: (gst_thread_change_state):
11336           Fix debugging message
11337
11338 2003-12-25  Thomas Vander Stichele  <thomas at apestaart dot org>
11339
11340         * gst/gstinfo.h:
11341           fix GST_DEBUG_CATEGORY_INIT gtk-doc description
11342         * docs/gst/tmpl/gstreamer-unused.sgml:
11343           removed all traces of cvs conflicts
11344
11345 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11346
11347         * configure.ac:
11348         * gst/schedulers/cothreads_compat.h:
11349         * libs/Makefile.am:
11350           remove last instances of wingo cothread usage
11351
11352 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11353
11354         * gst/gstplugin.c:
11355         * gst/gstversion.h.in:
11356         * gst/parse/grammar.y:
11357           change comment block from /** to /* when not gtk-doc comments
11358
11359 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11360
11361         * gst/gst.c: whitespace and doc style fixes
11362
11363 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
11364
11365         * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
11366
11367 2003-12-24  Colin Walters  <walters@verbum.org>
11368
11369         * gst/elements/gsttypefindelement.c:
11370           gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
11371           Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
11372           Don't double-free caps.
11373
11374 2003-12-23  David Schleef  <ds@schleef.org>
11375
11376         * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
11377           gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
11378           Many little fixes and additions of debug statements to
11379           get rhythmbox working.
11380
11381 2003-12-23  Colin Walters  <walters@verbum.org>
11382
11383         * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
11384         Use GST_PAD_LINK_SUCCESSFUL.
11385
11386 2003-12-23  David Schleef  <ds@schleef.org>
11387
11388         * gst/elements/gstaggregator.c:
11389         * gst/elements/gsttee.c:
11390           Use gst_pad_proxy_getcaps().
11391         * gst/gstpad.c:
11392         * gst/gstpad.h:
11393           Add gst_pad_proxy_getcaps(), which filter elements can use
11394           as a generic getcaps implementation.
11395           Fix gst_pad_get_allowed_caps().  It just wasn't doing what
11396           was advertised.
11397
11398 2003-12-23  David Schleef  <ds@schleef.org>
11399
11400         * gst/gstpad.c:
11401           Rearrange/rewrite much of the pad negotiation code, since it
11402           resembled pasta.  This actually changes the way some
11403           negotiation works, since the previous code was inconsistent
11404           depending on how it was invoked.  Add (internal) structure
11405           GstPadLink, which is used to hold some information (more in
11406           the future) about the link between two pads.  Fixes a number
11407           of bugs, including random lossage of filter caps when the
11408           initial negotiation is delayed.  A few functions are still
11409           unimplemented.
11410         * gst/gstpad.h:
11411           Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros.  Please use
11412           these when testing GstPadLinkReturn values instead of comparing
11413           directly.
11414
11415 2003-12-23  David Schleef  <ds@schleef.org>
11416
11417         * gst/gstvalue.c: 
11418         * gst/gstvalue.h:
11419           Rearrange lots of code.  Change registration of compare function
11420           into registration of compare/serialize/deserialize functions.
11421           Doesn't include implementation of gst_value_[de]serialize(),
11422           but that should be easy.
11423
11424 2003-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
11425
11426         * docs/gst/gstreamer-sections.txt:
11427         * docs/gst/tmpl/gstprops.sgml: removed
11428         * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
11429           David removed props and caps code, so let's remove their docs as well.
11430           Removed all no longer existing symbols from gstreamer-sections.txt
11431           
11432 2003-12-22  Colin Walters  <walters@verbum.org>
11433
11434         * gst/gsttaginterface.c, gst/gsttaginterface.h,
11435           gst/gsttag.c, gst/gsttag.h:  Add interface to setting GValues
11436           of tags directly.
11437
11438 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11439
11440         * gst/elements/gstelements.c:
11441           Set ranks of elements to NONE, so the autoplugger doesn't use them.
11442         * gst/elements/gstshaper.c: (gst_shaper_getcaps):
11443           Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
11444           gst_caps (peer).
11445
11446 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
11447
11448         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
11449         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
11450         (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
11451         (gst_spider_identity_sink_loop_type_finding):
11452         * gst/autoplug/gstspideridentity.h:
11453           Fix autoplugging in spider element, so it works with new caps.
11454           This was mainly caused by identifying empty caps incorrectly.
11455
11456 2003-12-22  David Schleef  <ds@schleef.org>
11457
11458         * gststructure.c, gstvalue.c, gstvalue.h: Add
11459           gst_value_init_and_copy() and use it, to avoid silly mistakes in
11460           using g_value_copy()
11461
11462 2003-12-21  David Schleef  <ds@schleef.org>
11463
11464         * many, many files: Merge CAPS branch.  This includes:
11465           - implemention of GstValue and several GstValue types
11466           - implemention of GstStructure
11467           - entire rewrite of GstCaps
11468           - removal of GstProps
11469           - many changes to GstPad to compensate for new caps paradigm
11470           - removal of GstBufferpool
11471         * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
11472         gstvalue.h, gst/gstcaps[2]*.[ch]:
11473           - rename gstcaps2.[ch] to gstcaps.[ch]
11474
11475 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
11476
11477         * gst/gstqueue.c: (gst_queue_handle_pending_events),
11478         (gst_queue_chain), (gst_queue_handle_src_event):
11479           implement timeout for sending events. Workaround for if the
11480           pipeline on this queue is not passing any data.
11481
11482 2003-12-21  Ronald Bultje <rbultje@ronald.bitfreak.net>
11483                                                                                 
11484         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
11485         * moved CVS to freedesktop.org
11486