fixing the --help text for docs building/non-building. Finally the correct text for...
[platform/upstream/gstreamer.git] / ChangeLog
1 2004-02-25  Christian Fredrik Kalager Schaller <uraeus@gnome.org>
2
3         * common/m4/gst-docs.m4
4         change flavour text from enable to disable as enable is our default
5         closes bug Bug 135304
6
7 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
8
9         * docs/manual/debugging.xml:
10         fix manual for new debugging system
11
12 2004-02-25  Andy Wingo  <wingo@pobox.com>
13
14         * gst/gstpad.c (gst_pad_link_prepare): Re-add
15         gst_pad_link_prepare. Please email the list with specific reasons
16         for reverting.
17
18 2004-02-24  Andy Wingo  <wingo@pobox.com>
19
20         * gst/gstelement.c (gst_element_dispose): Protect against multiple
21         invocations.
22
23         * gst/schedulers/gstoptimalscheduler.c
24         I added a mess of prototypes at the top of the file by way of
25         documentation. Some of the operations on chains and groups were
26         re-organized.
27
28         (create_group): Added a type argument so if the group is enabled,
29         the setup_group_scheduler knows what to do.
30         (group_elements): Added a type argument here, too, to be passed on
31         to create_group.
32         (group_element_set_enabled): If an unlinked PLAYING element is
33         added to a bin, we have to create a new group to hold the element,
34         and this function will be called before the group is added to the
35         chain. Thus we have a valid case for group->chain==NULL. Instead
36         of calling chain_group_set_enabled, just set the flag on the group
37         (the chain's status will be set when the group is added to it).
38         (gst_opt_scheduler_state_transition, chain_group_set_enabled):
39         Setup the group scheduler when the group is enabled, not
40         specifically when an element goes PAUSED->PLAYING. This means
41         PLAYING elements can be added, linked, and scheduled into a
42         PLAYING pipeline, as was intended.
43         (add_to_group): Don't ref the group twice. I don't know when this
44         double-ref got in here. Removing it has the potential to cause
45         segfaults if other parts of the scheduler are buggy. If you find
46         that the scheduler is segfaulting for you, put in an extra ref
47         here and see if that hacks over the underlying issue. Of course,
48         then find out what code is unreffing a group it doesn't own...
49         (create_group): Make the extra refcount floating, and remove it
50         after adding the element. This means that...
51         (unref_group): Destroy when the refcount reaches 0, not 1, like
52         every other refcounted object in the known universe.
53         (remove_from_group): When a group becomes empty, set it to be not
54         active, and remove it from its chain. Don't unref it again,
55         there's no floating reference any more.
56         (destroy_group): We have to remove the group from the chain in
57         remove_from_group (rather than here) to break refcounting cycles
58         (the chain always has a ref on the group). So assert that
59         group->chain==NULL.
60         (ref_group_by_count): Removed, it was commented out anyway.
61         (merge_chains): Use the remove_from_chain and add_to_chain
62         primitives to do the reparenting, instead of rolling our own
63         implementation.
64         (add_to_chain): The first non-disabled group in the chain's group
65         list will be the entry point for the chain. Because buffers can
66         accumulate in loop elements' peer bufpens, we preferentially
67         schedule loop groups before get groups to avoid unnecessary
68         execution of get-based groups when the bufpens are already full.
69         (gst_opt_scheduler_schedule_run_queue): Debug fixes.
70         (get_group_schedule_function): Ditto.
71         (loop_group_schedule_function): Ditto.
72         (gst_opt_scheduler_loop_wrapper): Ditto.
73         (gst_opt_scheduler_iterate): Ditto.
74
75         I understand the opt scheduler now, yippee!
76
77         * gst/gstpad.c: All throughout, added FIXMEs to look at for 0.9.
78         (gst_pad_get_name, gst_pad_set_chain_function) 
79         (gst_pad_set_get_function, gst_pad_set_event_function) 
80         (gst_pad_set_event_mask_function, gst_pad_get_event_masks) 
81         (gst_pad_get_event_masks_default, gst_pad_set_convert_function) 
82         (gst_pad_set_query_function, gst_pad_get_query_types) 
83         (gst_pad_get_query_types_default) 
84         (gst_pad_set_internal_link_function) 
85         (gst_pad_set_formats_function, gst_pad_set_link_function) 
86         (gst_pad_set_fixate_function, gst_pad_set_getcaps_function) 
87         (gst_pad_set_bufferalloc_function, gst_pad_unlink) 
88         (gst_pad_renegotiate, gst_pad_set_parent, gst_pad_get_parent) 
89         (gst_pad_add_ghost_pad, gst_pad_proxy_getcaps) 
90         (gst_pad_proxy_pad_link, gst_pad_proxy_fixate) 
91         (gst_pad_get_pad_template_caps, gst_pad_check_compatibility) 
92         (gst_pad_get_peer, gst_pad_get_allowed_caps) 
93         (gst_pad_alloc_buffer, gst_pad_push, gst_pad_pull) 
94         (gst_pad_selectv, gst_pad_select, gst_pad_template_get_caps) 
95         (gst_pad_event_default_dispatch, gst_pad_event_default) 
96         (gst_pad_dispatcher, gst_pad_send_event, gst_pad_convert_default) 
97         (gst_pad_convert, gst_pad_query_default, gst_pad_query) 
98         (gst_pad_get_formats_default, gst_pad_get_formats): Better
99         argument checks, and some doc fixes.
100
101         (gst_pad_custom_new_from_template): Um, does anyone
102         use these functions? Actually make a custom pad instead of a
103         normal one.
104         (gst_pad_try_set_caps): Transpose some checks.
105         (gst_pad_try_set_caps_nonfixed): Same, and use a macro to check if
106         the pad is in negotiation.
107         (gst_pad_try_relink_filtered): Use pad_link_prepare.
108         
109         * gst/gstelement.c: Remove prototypes also defined in gstclock.h.
110
111         * gst/gstelement.h: 
112         * gst/gstclock.h: Un-deprecate the old clocking API, as discussed
113         on the list.
114
115 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
116
117         * gst/gstbin.c: (gst_bin_add):
118           add error for not being able to add elements
119
120 2004-02-22  Julien MOUTTE <julien@moutte.net>
121
122         * gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
123         audio-codec and video-codec.
124
125 2004-02-22  Benjamin Otte  <otte@gnome.org>
126
127         reported by: Padraig O'Briain <padraig.obriain@sun.com>
128
129         * autogen.sh:
130           replace test -e with test -x for mkinstalldirs to be more portable.
131           (fixes #134816)
132
133 2004-02-22  Benjamin Otte  <otte@gnome.org>
134
135         * gst/gstpad.c:
136           revert last patch from Andy, it makes gst_pad_can_link_filtered much
137           too noisy
138         * gst/gsttag.c: (_gst_tag_initialize):
139         * gst/gsttag.h:
140           add GST_TAG_ALBUM_VOLUME_{COUNT,NUMBER}
141         * libs/gst/control/dparam.c: (gst_dparam_attach):
142         * libs/gst/control/dparammanager.c: (gst_dpman_attach_dparam):
143           check that types for attached dparams match
144
145 2004-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
146
147         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
148         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
149         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
150
151 2004-02-20  Andy Wingo  <wingo@pobox.com>
152
153         * gst/gstbin.c:
154         * gst/gstbuffer.c:
155         * gst/gstplugin.c:
156         * gst/registries/gstxmlregistry.c: 
157         * gst/schedulers/gstoptimalscheduler.c: Debugging tweaks.
158
159         * gst/gstelement.c (gst_element_set_scheduler): Debugging fixes.
160         (gst_element_add_pad): DEBUG->INFO, some fixes.
161         (gst_element_get_compatible_pad_template): Just see if the
162         templates' caps intersect, not if one is a strict subset of the
163         other. This conforms more to what gst_pad_link_intersect() does.
164         (gst_element_class_add_pad_template): Don't memcpy the pad
165         template, just ref it.
166         (gst_element_get_compatible_pad_filtered): Clean up debug messages
167
168         * gst/gstpad.c (gst_pad_can_link_filtered): Debug a true result.
169         (gst_pad_link_filtered): Debug changes.
170         (gst_pad_link_prepare): New function, consolidated from
171         can_link_filtered and link_filtered.
172
173         * gst/parse/grammar.y (gst_parse_perform_link): Made INFO output
174         look more like that of the functions in gstelement.c
175
176         * gst/gstinfo.c (gst_debug_print_object): Put a space before the
177         object, and return the empty string if object is NULL.
178
179         * gst/parse/parse.l: Remove trailing newlines when calling PRINT.
180         * gst/parse/grammar.y (YYFPRINTF): Log bison debugging info via
181         LOG, not DEBUG. We still get flex info on debug.
182
183         * gst/registries/gstxmlregistry.c (gst_xml_registry_load): Make
184         debug string more verbose.
185         (plugin_times_older_than): DEBUG->LOG.
186
187 2004-02-20  Julien MOUTTE <julien@moutte.net>
188
189         * gst/gsttag.h: Adding video-codec and audio-codec for demuxers which
190         will emit found_tag for each stream they demux with the codec.
191
192 2004-02-20  Benjamin Otte  <otte@gnome.org>
193
194         * gst/gstevent.c: (_gst_event_copy), (_gst_event_free):
195           copy navigation event correctly. Check freeing tag lists. 
196         * gst/gstthread.c: (gst_thread_change_state):
197           don't abort() on state changing mess - it might happen because of
198           bugs.
199         * gst/gstvalue.c: (gst_value_set_caps), (gst_value_get_caps):
200           use boxed functions
201         * gst/gstvalue.h:
202           fix GST_VALUE_HOLDS_CAPS
203
204 2004-02-19  David Schleef  <ds@schleef.org>
205
206         * gst/gstinfo.h:  Copy G_STRFUNC implementation from glib-2.4
207         and use it for GST_FUNCTION.  (bug #134750)
208
209 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
210
211         * po/fr.po:
212         * po/nl.po:
213           updating translations
214
215 2004-02-19  Thomas Vander Stichele  <thomas at apestaart dot org>
216
217         * tools/gst-run.c: (get_candidates), (main): some fixes from jdahlin
218
219 2004-02-18  kost@imn.htwk-leipzig.de
220
221         reviewed by: David Schleef  <ds@schleef.org>
222
223         * docs/libs/gstreamer-libs-sections.txt:  Add missing sections
224         for libgstcontrol.
225
226 2004-02-18  David Schleef  <ds@schleef.org>
227
228         * libs/gst/control/dparam.c: (gst_dparam_class_init):
229         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
230         (gst_dpsmooth_new): Additional fixes to get double dparams working.
231         * tools/gst-inspect.c: (print_element_info): Support dumping of
232         double dparam information.
233
234 2004-02-17  David Schleef  <ds@schleef.org>
235
236         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
237         Use G_TYPE_STRING in signal prototype instead of G_TYPE_POINTER.
238         * gst/elements/gsttypefind.c: (gst_type_find_element_class_init):
239         Use GST_TYPE_CAPS in signal prototype.
240         * gst/gstcaps.c: (_gst_caps_initialize), (gst_caps_copy_conditional):
241         Convert GST_TYPE_CAPS to boxed.
242         * gst/gstelement.c: (gst_element_class_init):
243         Use GST_TYPE_TAG_LIST in signal prototype.
244         * gst/gstindex.c: (gst_index_class_init):
245         * gst/gstindex.h:
246         Add GST_TYPE_INDEX_ENTRY type.
247         * gst/gstmarshal.list:
248         Add necessary marshal types.
249         * gst/gstpad.c: (gst_real_pad_class_init),
250         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
251         (gst_pad_recover_caps_error):
252         Use GST_TYPE_CAPS in signal prototypes.  Fix some debugging strings.
253         * gst/gststructure.c: (_gst_structure_initialize),
254         (gst_structure_copy), (_gst_structure_copy_conditional):
255         * gst/gststructure.h:
256         Convert GST_TYPE_STRUCTURE to boxed.
257         * gst/gsttag.c: (gst_tag_list_get_type):
258         * gst/gsttag.h:
259         Add GST_TYPE_TAG_LIST type.
260
261 2004-02-17  Julien MOUTTE  <julien@moutte.net>
262
263         * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
264         to what we agreed with david.
265         * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
266
267 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
268
269         * po/nl.po: update translation
270
271 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
272
273         * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
274           throw an error if spider is trying to play a mime type there is
275           no decoder for
276         * po/POTFILES.in:
277           add gst/autoplug/gstspider.c for translation
278
279 2004-02-17  Julien MOUTTE  <julien@moutte.net>
280
281         * gst/gstpad.c: (gst_pad_try_set_caps): We are nice people. Return 
282         silently when the pad is negotiating.
283
284 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
285
286         * docs/faq/Makefile.am:
287           add script to run gstreamer uninstalled 
288         * docs/faq/faq.xml:
289         * docs/faq/developing.xml:
290         * docs/faq/gst-uninstalled:
291           extract script to run gstreamer uninstalled
292         * docs/manuals.mak:
293           add EXTRA_SOURCES variable for Makefile.am's to set to
294           use additional SOURCE files for the doc build
295
296 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
297
298         * gst/gstatomic_impl.h: Fedora 2 test package patch for S390
299
300 2004-02-15  Julien MOUTTE  <julien@moutte.net>
301
302         * gst/gstbin.c: (gst_bin_change_state), (gst_bin_iterate): Fix a big
303         bug that was breaking pipelines like sinesrc ! { queue ! osssink } when
304         an error was thrown by osssink. Basically a state change failure for
305         an element in a different scheduling group was considered as successfull
306         , which means that caps nego was going on and weird stuff happened. Like
307         i wrote in the comment there, if someone want to revert that please
308         drop me a mail explaining why because i really see no point in keeping
309         that broken behaviour there.
310         * gst/gstqueue.c: (gst_queue_get): Add a safety check as the queue CAN
311         be empty, we then return NULL which will trigger a nice error when 
312         pulling from the pad.
313
314 2004-02-13  David Schleef  <ds@schleef.org>
315
316         * libs/gst/control/dparam.c: (gst_dparam_class_init),
317         (gst_dparam_get_property), (gst_dparam_set_property),
318         (gst_dparam_do_update_default):
319         * libs/gst/control/dparam.h:
320         * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
321         (gst_dpsmooth_new), (gst_dpsmooth_set_property),
322         (gst_dpsmooth_get_property), (gst_dpsmooth_value_changed_double),
323         (gst_dpsmooth_do_update_double):
324         * libs/gst/control/dparam_smooth.h:
325         * libs/gst/control/dparammanager.c:
326         (gst_dpman_inline_direct_update):
327         Add support for double dparams.
328
329 2004-02-13  David Schleef  <ds@schleef.org>
330
331         * gst/elements/gstfdsrc.c: (gst_fdsrc_get): Use GST_TIME_TO_TIMEVAL()
332         * gst/gstclock.h: Avoid using 64-bit % operator (slow!)
333
334 2004-02-13  Mattias Wadman  <mattias@sudac.org>
335
336         reviewed by: David Schleef  <ds@schleef.org>
337
338         * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
339         (gst_fdsrc_init), (gst_fdsrc_set_property),
340         (gst_fdsrc_get_property), (gst_fdsrc_get):
341         * gst/elements/gstfdsrc.h:  Adds timeout property to fdsrc,
342         and sends an EOS event if file descriptor reading times out.
343
344 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
345
346         * configure.ac:
347           add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
348
349 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
350
351         * configure.ac: pass required libxml version as argument
352         (bug reported by Christophe Fergeau)
353
354 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
355   
356         * docs/gst/gstreamer-docs.sgml:
357         * docs/gst/tmpl/gstxml.sgml:
358         * docs/libs/gstreamer-libs-docs.sgml:
359           version API docs
360
361 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
362
363         * gst/gstinfo.c:
364         * gst/gstregistrypool.c: (gst_registry_pool_plugin_filter),
365         (gst_registry_pool_feature_filter):
366         * gst/gstthread.c: (gst_thread_class_init):
367         * gst/gstvalue.c:
368           add includes exposed by building without libxml
369         * gst/indexers/Makefile.am:
370           do not build fileindex when LOADSAVE disabled; we should have
371           a better libxml check later since fileindex depends on xml, not
372           LOADSAVE or REGISTRY
373         * libs/gst/control/Makefile.am:
374           link with m
375         * tools/Makefile.am:
376           fix wrong source code for gst-xmlinspect
377
378 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
379
380         * configure.ac:
381           fix gcov help output
382           move calls to and use new GST_CHECK_DISABLE_SUBSYSTEM
383         * docs/random/release:
384           some updated releasing notes
385         * gstreamer.spec.in:
386           more updates
387
388 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
389
390         * docs/faq/faq.xml:
391         * docs/manual/manual.xml:
392         * docs/pwg/pwg.xml:
393         * docs/pwg/titlepage.xml:
394           put version in documentation
395
396 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
397
398         * tools/Makefile.am: fix man page installation
399
400 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
401
402         * configure.ac:
403           don't check for libxml when load/save and registry disabled (#105844)
404         * gstreamer.spec.in:
405           sync with fedora candidate spec
406
407 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
408
409         * po/fr.po:
410         * po/nl.po:
411           replace multidisksrc with multifilesrc
412
413 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
414
415         * po/POTFILES.in:
416           update to multidisksrc => multifilesrc file renaming (#134145)
417
418 2004-02-11  David Schleef  <ds@schleef.org>
419
420         * docs/gst/tmpl/gstcaps.sgml:  Fix stuff that mentions GstProps
421         * docs/gst/tmpl/gstpadtemplate.sgml: same
422         * docs/gst/tmpl/gstreamer-unused.sgml: Remove GstProps
423         * gst/gstobject.c: (gst_object_set_name_default): Do the memleak
424         fixing dance.
425         * gst/gstutils.c: Remove disabled code that uses GstProps.
426         * gst/registries/gstxmlregistry.h: same
427         * docs/random/ds/0.9-suggested-changes: random notes
428
429 2004-02-11  kost@imn.htwk-leipzig.de
430
431         reviewed by: David Schleef  <ds@schleef.org>
432
433         * gst/gstclock.c: (gst_clock_entry_new): fixes structure
434         initialisation of clock (bug #134128)
435
436 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
437
438         * configure.ac:
439         * gst/elements/Makefile.am:
440         * gst/elements/gstelements.c:
441         * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
442         (gst_multifilesrc_class_init), (gst_multifilesrc_init),
443         (gst_multifilesrc_set_property), (gst_multifilesrc_get_property),
444         (gst_multifilesrc_get), (gst_multifilesrc_open_file),
445         (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
446         * gst/elements/gstmultifilesrc.h:
447           rename multidisksrc to multifilesrc (part of #122200)
448
449 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
450
451         * docs/manuals.mak:
452           fix automake complaints
453         * gst-element-check.m4:
454           fix unquotedness
455
456 2004-02-11  David Schleef  <ds@schleef.org>
457
458         * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
459         * gst/gstatomic_impl.h: Disable sparc implementation.
460
461 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
462
463         * gst-element-check.m4:
464           fix underquoted macros as reported by automake 1.8.x (#133800)
465         * configure.ac:
466           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
467           by autopoint (fixes #132996)
468
469 2004-02-10  Andy Wingo  <wingo@pobox.com>
470
471         * gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
472         way to do inheritance.
473         (gst_pad_get_event_masks, gst_pad_get_event_masks_default) 
474         (gst_pad_get_query_types, gst_pad_get_query_types_default):
475         Routine docs.
476         (gst_pad_set_link_function, gst_pad_set_fixate_function) 
477         (gst_pad_set_getcaps_function): Doc from Dave's negotation random
478         doc.
479         (gst_pad_unlink, gst_pad_is_linked): Docs.
480         (gst_pad_renegotiate): A brief description of capsnego.
481         (gst_pad_try_set_caps): Document.
482         (gst_pad_try_set_caps_nonfixed): Document.
483         (gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
484         (gst_pad_set_parent): Deprecated (although not out of the API).
485         (gst_pad_get_parent): Deprecated, although many plugins use this.
486         (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
487         are private and will go away in 0.9.
488         (gst_pad_perform_negotiate): Doc.
489         (gst_pad_link_unnegotiate): I think this is meant to be static.
490         (gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps) 
491         (gst_pad_template_get_caps_by_name, gst_pad_check_compatibility) 
492         (gst_pad_get_peer): Doc updates.
493         (gst_pad_caps_change_notify): Doc.
494         (gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get) 
495         (gst_ghost_pad_new): Doc fixes.
496
497         * gst/gstobject.c (gst_object_get_parent, gst_object_unparent) 
498         (gst_object_check_uniqueness): 
499
500         * gst/gstelement.c (gst_element_add_pad) 
501         (gst_element_add_ghost_pad, gst_element_remove_pad) 
502         (gst_element_remove_ghost_pad, gst_element_get_pad) 
503         (gst_element_get_static_pad, gst_element_get_pad_list) 
504         (gst_element_class_get_pad_template_list) 
505         (gst_element_class_get_pad_template): Work on the docs.
506         (gst_element_get_pad_template_list): Uses the class method.
507         (gst_element_get_compatible_pad_template): Docs, and consolidate
508         some test conditions. 
509         (gst_element_get_pad_from_template): New static function.
510         (gst_element_request_compatible_pad): Docs, and work with
511         non-request compatible templates. 
512         (gst_element_get_compatible_pad_filtered): Docs and remove
513         redundant checks.
514         (gst_element_get_compatible_pad, gst_element_link_pads_filtered) 
515         (gst_element_link_filtered, gst_element_link_many) 
516         (gst_element_link, gst_element_link_pads) 
517         (gst_element_unlink_many): Docs.
518
519 2004-02-05  Andy Wingo  <wingo@pobox.com>
520
521         * gst/gstpad.c (_gst_real_pad_fixate_accumulator):
522         s/pointer/boxed/.
523
524         * gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
525
526         * gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
527         marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
528         with the type=GST_TYPE_CAPS. This allows language bindings to know
529         what kind of data they're dealing with.
530
531         * gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
532         to NULL when g_value_init is called. GstCaps, which rolls its own
533         type implementation, now does the same instead of allocating empty
534         caps.
535         (_gst_caps_initialize, _gst_caps_collect_value,
536         _gst_caps_lcopy_value): Provide collect_value and lcopy_value type
537         table methods. This allows G_VALUE_COLLECT to work.
538
539 2004-02-05  Andy Wingo  <wingo@pobox.com>
540
541         * configure.ac:
542         * testsuite/Makefile.am (SUBDIRS): 
543         * testsuite/ghostpads/Makefile.am: 
544         * testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
545
546         * gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
547         These two routines are the only ones that set
548         GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
549         pad template. They should be made static, depending on ABI needs.
550         (gst_real_pad_dispose): Handle the case of ghost pads without a
551         parent. Assert after dealing with ghost pads that the ghost pad
552         list is empty.
553         (gst_ghost_pad_class_init): New property added, ::real-pad. Can be
554         set after creation.
555         (gst_ghost_pad_dispose): Set ::real-pad to NULL.
556         (gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
557         functions. set_property will call add_ghost_pad/remove_ghost_pad
558         as appropriate.
559         (gst_ghost_pad_new): All the work is offloaded to g_object_new.
560
561         * gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
562         (gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
563         (gst_element_remove_pad): Handle ghost pads as well.
564         (gst_element_remove_ghost_pad): Deprecated (could be removed,
565         depending on API-stability needs).
566
567 2004-02-05  Andy Wingo  <wingo@pobox.com>
568
569         * gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
570         of course they're const
571
572 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
573
574         * tools/Makefile.am:
575         * tools/gst-feedback:
576         * tools/gst-feedback-0.7:
577           make gst-feedback versioned too for consistency
578
579 2004-02-11  David Schleef  <ds@schleef.org>
580
581         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
582         (gst_pad_try_set_caps): Fix format strings for GST_PTR_FORMAT.
583
584 2004-02-10  Julien MOUTTE <julien@moutte.net>
585
586         * gst/gstevent.c: (_gst_event_free): Sometimes a tag event arrives but
587         the structure does not contain a valid tag list. Adding a safety check
588         to remove a noisy warning in that case.
589
590 2004-02-10  Thomas Vander Stichele  <thomas at apestaart dot org>
591
592         * gst/gst.c: fix name to be in line with others
593
594 2004-02-09  Julien MOUTTE <julien@moutte.net>
595
596         * libs/gst/bytestream/bytestream.c: (gst_bytestream_peek): We should
597         not shout that loud when len is 0. Just return 0 silently.
598
599 2004-02-09  Julien MOUTTE  <julien@moutte.net>
600
601         * gst/gstdata.c: (gst_data_ref): Adding a categorized debug on data_ref
602         because data_unref has one and i prefer the debug to be symetric.
603         * gst/gstqueue.c: (gst_queue_locked_flush): Fix a huge memleak. Buffers
604         were refed when added to the queue and unrefed only once when the queue
605         was flushed. Now the flush handler unref the buffers two times : first
606         unref for the ref added when pushing in the queue's tail and second
607         unref to destroy the flushed buffer.
608
609 2004-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
610
611         * docs/pwg/building-boiler.xml: fix cvs checkout documentation
612
613 2004-02-06  David Schleef  <ds@schleef.org>
614
615         * docs/random/ds/0.9-suggested-changes: Random ramblings
616         * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap): Cast size_t
617         to int before printing.
618         * gst/parse/grammar.y: Fix gcc-2.95 style variadic macros.
619         * gst/parse/parse.l: same.  See bug #129600
620
621 2004-02-06  David Schleef  <ds@schleef.org>
622
623         * gst/gstindex.c: (gst_index_add_format), (gst_index_add_id),
624         (gst_index_add_entry), (gst_index_add_associationv),
625         (gst_index_add_association): Add gst_index_add_associationv()
626         and clean up gst_index_add_association(). #127133
627
628 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
629
630         * autogen.sh: check out common with right tag if CVS/Tag exists
631
632 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
633
634         * testsuite/ghostpads/ghostpads.c: (main):
635           fix testsuite from segfaulting
636
637 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
638
639         * Makefile.am: add release target
640         * configure.ac: bump nano to 1
641         * docs/random/release:
642
643 2004-02-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
644
645         * gst/gstcaps.h:
646         * gst/gstelement.c: (gst_element_base_class_init),
647         (gst_element_class_set_details), (gst_element_clear_pad_caps):
648         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
649         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
650         (gst_real_pad_dispose):
651         * gst/gststructure.c: (gst_structure_free),
652         (gst_structure_from_string):
653           put reverted patch back in
654         * gst/gstelement.c: (gst_element_remove_pad):
655           free explicit caps if they're set
656         * gst/gstpad.c: (_gst_pad_default_fixate_func):
657           copy the structure when fixating
658
659 2004-02-05  David Schleef  <ds@schleef.org>
660
661         * gst/gstmarshal.list:
662         * gst/gstpad.c: (gst_real_pad_class_init),
663         (_gst_real_pad_fixate_accumulator):
664         Revert POINTER->BOXED change in signal marshaller.
665
666 === gstreamer 0.7.4 ===
667                                                                                 
668 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
669                                                                                 
670         * NEWS: GStreamer 0.7.4 "Wooden Eels" released
671         * configure.ac: changed for release
672
673 2004-02-05  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
674
675         * gstreamer.spec.in:
676           bump required version of gtk-doc
677
678 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
679
680         * gst/gstcaps.h:
681         * gst/gstelement.c: (gst_element_base_class_init),
682         (gst_element_class_set_details), (gst_element_clear_pad_caps):
683         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
684         (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
685         (gst_real_pad_dispose):
686         * gst/gststructure.c: (gst_structure_free),
687         (gst_structure_from_string):
688           revert patch that breaks applications, reapply after release
689           to get this fixed properly
690
691 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
692
693         * gst/gsttag.c: (_gst_tag_initialize):
694         * gst/gsttag.h:
695           remove duplicated field GST_TAG_APPLICATION. It's GST_TAG_ENCODER
696
697 2004-02-04  David Schleef  <ds@schleef.org>
698
699         Fix some memleaks:
700         * gst/autoplug/gstspider.c: (gst_spider_request_new_pad),
701         (gst_spider_plug_from_srcpad):
702         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
703
704 2004-02-04  David Schleef  <ds@schleef.org>
705
706         * gst/gstelement.c: (gst_element_clear_pad_caps): Make sure we have
707         a GstRealPad before accessing its structure members.
708
709 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
710
711         * gst/gstclock.c: (gst_clock_init), (gst_clock_set_speed),
712         (gst_clock_get_speed):
713         * gst/gstclock.h:
714           reset padding, remove unused fields
715
716 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
717
718         * gst/autoplug/gstspideridentity.c:
719         (gst_spider_identity_sink_loop_type_finding):
720           use get_allowed_caps, not get_caps (fixes #132519)
721         * gst/elements/gsttypefind.c: (stop_typefinding):
722           use correct order when sending buffers and seeking
723
724 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
725
726         * configure.ac:
727         * gst/gstelement.h:
728         * gst/gstpad.h:
729         * gst/gstqueue.h:
730           upgrade libtool CURRENT, reset padding
731
732 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
733
734         * configure.ac:
735           bump to prerelease
736           put back AM_PROG_LIBTOOL to make libtoolize stop complaining
737
738 2004-02-04  David Schleef  <ds@schleef.org>
739
740         * docs/random/ds/0.9-suggested-changes: random notes
741         * gst/elements/gstfakesrc.c: (gst_fakesrc_get_formats),
742         (gst_fakesrc_get_query_types), (gst_fakesrc_get_event_mask):
743         Replace GST_PAD_EVENT_MASK_FUNCTION() (et al.) with its
744         expansion.
745         * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
746         (gst_filesink_get_query_types): same
747         * gst/elements/gstfilesrc.c: (gst_filesrc_get_event_mask),
748         (gst_filesrc_get_query_types), (gst_filesrc_get_formats): same
749         * gst/gstcaps.h: deprecate GST_DEBUG_CAPS(), and fix the macro
750         to use new GST_PTR_FORMAT.
751         * gst/gstelement.h: deprecate function factory macros
752         GST_ELEMENT_QUERY_TYPE_FUNCTION(), GST_ELEMENT_EVENT_MASK_FUNCTION().
753         These are our last variadic macros that can't be replaced with
754         inlines.  Celebrate!  Also fix a typo in an #ifdef that was
755         attempting to deprecate gst_element_clock_wait().
756         * gst/gstevent.h: same
757         * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
758         (gst_pad_try_set_caps): replace GST_DEBUG_CAPS() with GST_DEBUG()
759         * gst/gstpad.h: deprecate function factory macros similar to above.
760
761 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
762
763         * configure.ac:
764         * tools/Makefile.am:
765         * tools/gst-run.c: (popt_callback), (hash_print_key),
766         (find_highest_version), (unmangle_libtool), (get_dir_of_binary),
767         (get_candidates), (main):
768           add new source file to generate non-versioned wrapper binaries
769           for our tools.
770
771 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
772
773         * gst/gstevent.c: (_gst_event_free):
774           actually break; inside the switch statement
775         * gst/parse/grammar.y:
776           fix memleak where GValues weren't unset
777
778 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
779
780         * gst/gststructure.c: (gst_structure_from_string):
781           fix huge memleak
782         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
783         (new_entry), (gst_type_find_element_chain):
784         * gst/gstelement.c: (gst_element_base_class_init),
785         (gst_element_class_set_details):
786         * gst/gstpad.c: (gst_pad_can_link_filtered):
787           fix smaller memleaks
788         * gst/gstpad.c: (gst_real_pad_dispose):
789           check that explicit caps are gone
790         * gst/gststructure.c: (gst_structure_free):
791           actually free the structure
792         * gst/gstelement.c: (gst_element_clear_pad_caps):
793           unset explicit caps
794
795 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
796
797         * tools/Makefile.am:
798           use AM_CFLAGS since all the CFLAGS are the same
799           use AM_LDFAGS
800
801 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
802
803         * docs/manual/gnome.xml:
804           expand example a little
805         * gst/gst.c: (gst_init_with_popt_table),
806         (gst_init_check_with_popt_table), (init_pre), (init_popt_callback):
807           make sure popt option displays are done with right textdomain
808           use GstPoptOption type
809         * gst/gst.h:
810           create GstPoptOption type
811
812 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
813
814         * gst/gsterror.c: (_gst_stream_errors_init):
815         * gst/gsterror.h:
816           adding error type for no codec
817         * po/POTFILES.in:
818           add gst-inspect
819         * po/nl.po:
820           update dutch translation
821         * tools/gst-inspect.c: (print_element_list), (main):
822           do proper internationalization
823         * tools/gst-launch.c: (idle_func):
824           remove commented out function call
825
826 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
827
828         * docs/README:
829           add some error fixing notes
830         * docs/gst/gstreamer-sections.txt:
831           remove double entries
832         * docs/gst/tmpl/gstbin.sgml:
833         * docs/gst/tmpl/gstclock.sgml:
834           remove override
835         * docs/gst/tmpl/gstelement.sgml:
836         * docs/gst/tmpl/gstindex.sgml:
837         * docs/gst/tmpl/gstobject.sgml:
838         * docs/gst/tmpl/gstpadtemplate.sgml:
839         * docs/gst/tmpl/gstreamer-unused.sgml:
840         * docs/gst/tmpl/gsttag.sgml:
841         * docs/gst/tmpl/gstthread.sgml:
842         * docs/gst/tmpl/gstxml.sgml:
843         * gst/gsttag.h:
844           sync header prototypes with c decls
845         * gst/gsttaginterface.c:
846           fix doc headers
847
848 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
849
850         * gst/parse/Makefile.am:
851         * gst/gstobject.h:
852           get rid of gstmarshal.h dependency. It's not needed.
853         * gst/gst.h:
854         * gst/elements/gstfakesink.c:
855         * gst/elements/gstfakesrc.c:
856         * gst/elements/gstidentity.c:
857         * gst/gstbin.c:
858         * gst/gstelement.c:
859         * gst/gstindex.c:
860         * gst/gstobject.c:
861         * gst/gstpad.c:
862         * gst/gstthread.c:
863         * gst/gstxml.c:
864         * libs/gst/control/dparam.c:
865         * libs/gst/control/dparammanager.c:
866           include gstmarshal.h.
867         Fixes #132045
868
869 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
870
871         * gst/elements/gstfilesrc.c: (gst_filesrc_init),
872         (gst_filesrc_dispose), (gst_filesrc_free_parent_mmap),
873         (gst_filesrc_map_region), (gst_filesrc_get_mmap):
874         * gst/elements/gstfilesrc.h:
875           don't ref the filesrc when creating mmaped buffers. Don't keep a
876           list of not-yet-destroyed buffers.
877         * gst/gstbuffer.h:
878           Deprecated BST_BUFFER_FREE_FUNC and GST_BUFFER_COPY_FUNC
879
880 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
881
882         * gst/gst.c: (init_pre):
883           remove textdomain
884
885 2004-02-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
886
887         * docs/pwg/advanced-events.xml:
888         * docs/pwg/advanced-scheduling.xml:
889         * docs/pwg/intro-basics.xml:
890         * docs/pwg/other-manager.xml:
891         * docs/pwg/other-nton.xml:
892         * docs/pwg/other-ntoone.xml:
893         * docs/pwg/other-oneton.xml:
894         * docs/pwg/pwg.xml:
895           All sort of documentation... Forgot what. Point is that I want this
896           in before I leave. The 'other-*' will be the last section and will
897           explain issues specific to these type of elements.
898
899 2004-02-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
900
901         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
902         (gst_filesrc_get_read):
903           set all the values on buffers that we can
904
905 2004-02-02  David Schleef  <ds@schleef.org>
906
907         Change usage of isblah() to g_ascii_isblah() to be more locale
908         independent.  (#133076)
909         * gst/gsturi.c: (gst_uri_protocol_check_internal):
910         * gst/gstutils.c:
911         * gst/parse/parse.l:
912
913 2004-02-02  Jon Trowbridge  <trow@gnu.org>
914
915         reviewed by: David Schleef  <ds@schleef.org>
916
917         Fix memory leaks:
918         * gst/gstcaps.c: (gst_caps_to_string):
919         * gst/registries/gstxmlregistry.c:
920         (gst_xml_registry_add_path_list_func),
921         (gst_xml_registry_parse_padtemplate):
922
923 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
924
925         * gst/gstelement.c: (gst_element_default_error):
926           suffix error messages with period
927
928 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
929
930         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
931         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
932         * gst/gsterror.c: (gst_error_get_message):
933           Suffix with dots
934         * po/fr.po:
935         * po/nl.po:
936           Update translation files
937
938 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
939
940         * gst/autoplug/gstspideridentity.c:
941         (gst_spider_identity_sink_loop_type_finding):
942         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
943         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
944         (gst_filesink_close_file), (gst_filesink_handle_event),
945         (gst_filesink_chain):
946         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
947         (gst_filesrc_get_read), (gst_filesrc_open_file):
948         * gst/elements/gstidentity.c: (gst_identity_chain):
949         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
950         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
951         (gst_pipefilter_chain), (gst_pipefilter_open_file):
952         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
953         * gst/gsterror.c: (_gst_core_errors_init),
954         (_gst_library_errors_init), (_gst_resource_errors_init),
955         (_gst_stream_errors_init), (gst_error_get_message):
956         * gst/gstpad.c: (gst_pad_set_explicit_caps),
957         (gst_pad_recover_caps_error), (gst_pad_pull):
958         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
959         * gst/schedulers/gstbasicscheduler.c:
960         (gst_basic_scheduler_chainhandler_proxy),
961         (gst_basic_scheduler_gethandler_proxy),
962         (gst_basic_scheduler_cothreaded_chain):
963           Suffix error messages with period.
964           Use (NULL) instead of NULL
965
966 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
967
968         * docs/gst/tmpl/gstelement.sgml:
969         * docs/gst/tmpl/gstxml.sgml:
970         * gst/gstelement.c: (gst_element_error_full):
971           add element path to error
972
973 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
974
975         * docs/random/mimetypes:
976           update raw int/float info
977         * gst/gsttag.c: (_gst_tag_initialize):
978         * gst/gsttag.h:
979           add GST_TAG_ENCODER
980
981 2004-01-30  David Schleef  <ds@schleef.org>
982
983         * gst/cothreads.c: Add another fallback if MAP_ANONYMOUS is
984           missing (#132991)
985
986 2004-01-30  Laurent Vivier <Laurent.Vivier@bull.net>
987
988         reviewed by Benjamin Otte 
989           parts of the patch submitted in bug #113913
990
991         * configure.ac:
992           use AC_C_INLINE. Use = instead of == with test
993         * examples/plugins/example.c:
994         * gst/autoplug/gstspideridentity.c:
995         * gst/elements/gstfdsrc.c:
996         * gst/elements/gstfilesrc.c:
997         * gst/elements/gstidentity.c:
998         * gst/elements/gstmultidisksrc.c:
999         * gst/elements/gststatistics.c:
1000         * gst/gstelement.c:
1001         * gst/gstobject.c:
1002         * gst/gstpad.c:
1003         * gst/gstpipeline.c:
1004         * gst/gstthread.c:
1005           don't end enums with a comma
1006         * gst/gstindex.c: (gst_index_compare_func):
1007           do explicit casting to gint
1008         * gst/gsttrace.c: (gst_trace_text_flush):
1009           #define strsize as a macro
1010
1011 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
1012
1013         * docs/README:
1014         * docs/gst/gstreamer-docs.sgml:
1015         * docs/gst/gstreamer-sections.txt:
1016         * docs/gst/tmpl/gstelement.sgml:
1017         * docs/gst/tmpl/gsterror.sgml:
1018         * docs/gst/tmpl/gstinterface.sgml:
1019         * docs/gst/tmpl/gstreamer-unused.sgml:
1020         * docs/gst/tmpl/gststructure.sgml:
1021         * docs/gst/tmpl/gsttag.sgml:
1022         * docs/gst/tmpl/gsttaginterface.sgml:
1023         * docs/gst/tmpl/gstvalue.sgml:
1024         make sure all API ends up in the built docs
1025         * gst/gstinterface.c:
1026         * gst/gststructure.c: (gst_structure_id_set_value),
1027         (gst_structure_set_value), (gst_structure_id_get_value):
1028         * gst/gststructure.h:
1029         * gst/gstvalue.h:
1030         sync .h with .c declarations
1031
1032 2004-01-30  Julien Moutte  <julien@moutte.net>
1033
1034         * libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
1035         Ronald will fix riffread.
1036
1037 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1038
1039         * docs/pwg/advanced-interfaces.xml:
1040           Added tuner interface docs.
1041
1042 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1043
1044         * docs/random/mimetypes:
1045           correct Theora information
1046         * gst/gstelement.h:
1047           make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
1048
1049 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1050
1051         * gst/gstelement.c: (gst_element_error_full):
1052         * gst/gstelement.h:
1053           GST_ELEMENT_ERROR in enum -> _IN_ERROR
1054
1055 2004-01-29  Julien MOUTTE  <julien@moutte.net>
1056
1057         * gst/elements/gstfilesrc.c: (gst_filesrc_get),
1058         (gst_filesrc_uri_handler_init): Fixing seeking by making FLUSH happen
1059         again and even before DISCONT.
1060         * gst/gstpad.c: (gst_pad_event_default): Remove a unused switch case.
1061         * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf): Fix
1062         bytestream so that it's not stopping to fill the bytestream if events
1063         different than EOS or DISCONT are received. Instead it process them so
1064         that they go downstream.
1065
1066 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1067
1068         * docs/gst/tmpl/gstelement.sgml:
1069         * docs/gst/tmpl/gstreamer-unused.sgml:
1070         * docs/gst/tmpl/gstxml.sgml:
1071         * gst/autoplug/gstspideridentity.c:
1072         (gst_spider_identity_sink_loop_type_finding):
1073         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
1074         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
1075         (gst_filesink_close_file), (gst_filesink_handle_event),
1076         (gst_filesink_chain):
1077         * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
1078         (gst_filesrc_get_read), (gst_filesrc_open_file):
1079         * gst/elements/gstidentity.c: (gst_identity_chain):
1080         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
1081         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
1082         (gst_pipefilter_chain), (gst_pipefilter_open_file):
1083         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
1084         * gst/gstelement.h:
1085         * gst/gstpad.c: (gst_pad_set_explicit_caps),
1086         (gst_pad_recover_caps_error), (gst_pad_pull):
1087         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
1088         * gst/schedulers/gstbasicscheduler.c:
1089         (gst_basic_scheduler_chainhandler_proxy),
1090         (gst_basic_scheduler_gethandler_proxy),
1091         (gst_basic_scheduler_cothreaded_chain):
1092           gst_element_error -> GST_ELEMENT_ERROR
1093
1094 2004-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
1095
1096         * docs/Makefile.am:
1097         * docs/gst/tmpl/gstelement.sgml:
1098         * docs/gst/tmpl/gstxml.sgml:
1099         * docs/manuals.mak:
1100         * docs/pwg/advanced-request.xml:
1101         * docs/pwg/advanced-scheduling.xml:
1102         * docs/pwg/advanced-tagging.xml:
1103           fix non-validating docbook using CDATA
1104           make sure make check-local gets run first to check if it validates
1105
1106 2004-01-29  Julien MOUTTE <julien@moutte.net>
1107
1108         * docs/pwg/advanced-events.xml: Adding documentation on advanced event
1109         handling (up and downstream).
1110         * docs/pwg/advanced-interfaces.xml: Make it coherent with the
1111         my_filter thing.
1112
1113 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1114
1115         * docs/pwg/advanced-tagging.xml:
1116           Add docs about tag writing.
1117
1118 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1119
1120         * docs/pwg/advanced-tagging.xml:
1121           Add a part about tag reading and application signalling... Tag
1122           writing still needs to be documented.
1123         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
1124           We can set file locations in READY, too.
1125
1126 2004-01-29  Julien MOUTTE <julien@moutte.net>
1127
1128         * docs/random/ds/element-checklist: Adding some notes about src
1129         events.
1130
1131 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1132
1133         * docs/random/mimetypes:
1134           Update docs to point to correct elements for various mimetypes, and
1135           some more errors pointed out by Stéphane LOEUILLET (aka LeRoutier)
1136           <stephane.loeuillet@tiscali.fr>.
1137
1138 2004-01-28  David Schleef  <ds@schleef.org>
1139
1140         * docs/pwg/intro-basics.xml: rewrite bufferpool stuff.
1141
1142 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1143
1144         * docs/random/mimetypes:
1145           update docs for audio/x-raw-float. Add "buffer-frames=0 means
1146           undefined"
1147         * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
1148           make it only work in NULL.
1149         * gst/gstcaps.c:
1150           don't posion NULL caps
1151         * gst/gstelement.c: (gst_element_set_time):
1152           add debugging statement
1153         * gst/gstelement.c: (gst_element_emit_found_tag),
1154         (gst_element_found_tag_func), (gst_element_found_tags):
1155         * gst/gstelement.h:
1156           These functions take const taglists
1157         * gst/gstpad.c: (gst_pad_proxy_getcaps):
1158           fix memleak
1159         * gst/gstpad.c: (gst_pad_event_default):
1160           make more effort on handling discont and clocks, g_warn if everything
1161           fails
1162         * gst/gststructure.c: (gst_structure_remove_fields),
1163         (gst_structure_remove_fields_valist):
1164         * gst/gststructure.h:
1165           add gst_structure_remove_fields(_valist)
1166         * gst/gsttag.c:
1167           fix doc glitch
1168
1169 2004-01-28  David Schleef  <ds@schleef.org>
1170
1171         * docs/random/ds/element-checklist: Notes about gst_caps_to_string()
1172         * gst/registries/gstxmlregistry.c: (gst_xml_registry_save_caps):
1173         Fix memory leakage of gst_caps_to_string().
1174
1175         Use GST_PTR_FORMAT instead of gst_caps_to_string():
1176         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_sp):
1177         * gst/autoplug/gstspideridentity.c: (spider_find_suggest),
1178         (gst_spider_identity_sink_loop_type_finding):
1179         * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
1180         (find_suggest):
1181         * gst/gstpad.c: (gst_pad_try_relink_filtered),
1182         (gst_pad_set_explicit_caps):
1183         * gst/parse/grammar.y:
1184
1185 2004-01-28  David Schleef  <ds@schleef.org>
1186
1187         * configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
1188         GST_PRINTF_EXTENSION_FORMAT_DEFINE.
1189         * docs/random/ds/0.9-suggested-changes: Notes from Company.
1190         * gst/gstcaps.c: (gst_caps_to_string): Add comment.
1191         * gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
1192         * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
1193         (gst_debug_log_default), (_gst_info_printf_extension),
1194         (_gst_info_printf_extension_arginfo):  Add printf extension.
1195         * gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
1196         * gst/gststructure.c: (gst_structure_to_string),
1197         (_gst_structure_parse_value): Use gst_value_deserialize() and
1198         remove old code.
1199         * gst/gstvalue.c: (gst_value_deserialize_fourcc),
1200         (gst_value_deserialize_boolean), (gst_strtoi),
1201         (gst_value_deserialize_int), (gst_value_deserialize_double),
1202         (gst_value_deserialize_string), (gst_value_deserialize): Implement
1203         a bunch of deserialize functions and gst_value_deserialize.
1204         * gst/gstvalue.h: er, _de_serialize, not unserialize
1205         * testsuite/caps/string-conversions.c: (main): We don't currently
1206         handle (float) in caps, so convert these to (double).
1207         * testsuite/debug/Makefile.am: Add new test for the printf extension
1208         * testsuite/debug/printf_extension.c: (main): same
1209
1210 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1211
1212         * docs/random/company/time:
1213           Add some docs about clocking and time
1214
1215 2004-01-28  Julien MOUTTE <julien@moutte.net>
1216
1217         * docs/pwg/advanced-interfaces.xml: Adding XOverlay documentation.
1218
1219 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1220
1221         * docs/pwg/advanced-clock.xml:
1222         * docs/pwg/advanced-dparams.xml:
1223         * docs/pwg/advanced-events.xml:
1224         * docs/pwg/advanced-interfaces.xml:
1225         * docs/pwg/advanced-midi.xml:
1226         * docs/pwg/advanced-request.xml:
1227         * docs/pwg/advanced-scheduling.xml:
1228         * docs/pwg/advanced-tagging.xml:
1229         * docs/pwg/advanced-types.xml:
1230         * docs/pwg/appendix-checklist.xml:
1231         * docs/pwg/building-boiler.xml:
1232         * docs/pwg/building-chainfn.xml:
1233         * docs/pwg/building-filterfactory.xml:
1234         * docs/pwg/building-pads.xml:
1235         * docs/pwg/building-props.xml:
1236         * docs/pwg/building-signals.xml:
1237         * docs/pwg/building-state.xml:
1238         * docs/pwg/building-testapp.xml:
1239         * docs/pwg/intro-basics.xml:
1240         * docs/pwg/intro-preface.xml:
1241         * docs/pwg/other-autoplugger.xml:
1242         * docs/pwg/other-sink.xml:
1243         * docs/pwg/other-source.xml:
1244         * docs/pwg/titlepage.xml:
1245           fix up id's
1246
1247 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1248
1249         * docs/95NonPath:
1250         * docs/HACKING:
1251         * docs/README:
1252         * docs/building-the-docs-on-debian:
1253           collect relevant bits of doc info
1254
1255 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1256
1257         * docs/pwg/advanced_tagging.xml:
1258           Half-assed commit so Thomas can re-arrange document IDs here to be
1259           consistent, too.
1260
1261 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1262
1263         * docs/manual/autoplugging.xml:
1264         * docs/manual/bins-api.xml:
1265         * docs/manual/bins.xml:
1266         * docs/manual/buffers-api.xml:
1267         * docs/manual/buffers.xml:
1268         * docs/manual/clocks.xml:
1269         * docs/manual/components.xml:
1270         * docs/manual/cothreads.xml:
1271         * docs/manual/debugging.xml:
1272         * docs/manual/dparams-app.xml:
1273         * docs/manual/dynamic.xml:
1274         * docs/manual/elements-api.xml:
1275         * docs/manual/elements.xml:
1276         * docs/manual/factories.xml:
1277         * docs/manual/gnome.xml:
1278         * docs/manual/goals.xml:
1279         * docs/manual/helloworld.xml:
1280         * docs/manual/helloworld2.xml:
1281         * docs/manual/init-api.xml:
1282         * docs/manual/intro.xml:
1283         * docs/manual/links-api.xml:
1284         * docs/manual/links.xml:
1285         * docs/manual/manual.xml:
1286         * docs/manual/motivation.xml:
1287         * docs/manual/pads-api.xml:
1288         * docs/manual/pads.xml:
1289         * docs/manual/plugins-api.xml:
1290         * docs/manual/plugins.xml:
1291         * docs/manual/programs.xml:
1292         * docs/manual/queues.xml:
1293         * docs/manual/quotes.xml:
1294         * docs/manual/schedulers.xml:
1295         * docs/manual/states-api.xml:
1296         * docs/manual/states.xml:
1297         * docs/manual/threads.xml:
1298         * docs/manual/typedetection.xml:
1299         * docs/manual/xml.xml:
1300           use chapter, part, section or misc as id starts for all bits
1301
1302 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1303
1304         * docs/gst/gstreamer-sections.txt:
1305           Fix up TITLE of the sections
1306
1307 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1308
1309         * docs/pwg/advanced_interfaces.xml:
1310           Add documentation on propertyprobing.
1311         * docs/pwg/advanced_events.xml:
1312         * docs/pwg/advanced_tagging.xml:
1313         * docs/pwg/building_boiler.xml:
1314         * docs/pwg/building_filterfactory.xml:
1315         * docs/pwg/pwg.xml:
1316           Move filterfactory and tagging into their own chapter, add a chapter
1317           on events. all these are empty placeholders that will be filled in
1318           some day.
1319
1320 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1321
1322         * docs/pwg/advanced_interfaces.xml:
1323           Docs for mixer interface. Also a check for website uploading.
1324
1325 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1326
1327         * docs/HACKING:
1328         * docs/Makefile.am:
1329         * docs/faq/Makefile.am:
1330         * docs/gst/Makefile.am:
1331         * docs/gst/tmpl/gstelement.sgml:
1332         * docs/gst/tmpl/gstplugin.sgml:
1333         * docs/gst/tmpl/gstreamer-unused.sgml:
1334         * docs/libs/Makefile.am:
1335         * docs/manual/Makefile.am:
1336         * docs/manuals.mak:
1337         * docs/pwg/Makefile.am:
1338         * docs/upload.mak:
1339           Separate out upload target and make it similar for
1340           both docbook and gtk-doc docs
1341
1342 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1343
1344         * docs/manuals.mak:
1345           Fix upload target to work with freedesktop
1346
1347 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1348
1349         * docs/pwg/advanced_types.xml:
1350           Add notes on creating your own types.
1351         * docs/pwg/building_boiler.xml:
1352         * docs/pwg/building_pads.xml:
1353         * docs/pwg/building_state.xml:
1354           Add some stuff about how to retrieve values from structures, how
1355           that relates to types and change layout slightly again to be almost
1356           perfect.
1357
1358 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1359
1360         * docs/pwg/advanced_dparams.xml:
1361         * docs/pwg/advanced_scheduling.xml:
1362           Change index layout slightly.
1363
1364 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1365
1366         * docs/pwg/advanced_clock.xml:
1367         * docs/pwg/advanced_interfaces.xml:
1368         * docs/pwg/advanced_midi.xml:
1369           General placeholders for now.
1370         * docs/pwg/advanced_request.xml:
1371           Explanation about sometimes and request pads.
1372         * docs/pwg/advanced_scheduling.xml:
1373           Concept of bytestream, loopfunctions and schedulers.
1374         * docs/pwg/building_boiler.xml:
1375           Add something about plugin-init.
1376
1377 2004-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
1378
1379         * docs/pwg/building_pads.xml:
1380           Fix broken docbook
1381
1382 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1383
1384         * docs/pwg/advanced_interfaces.xml:
1385         * docs/pwg/pwg.xml:
1386           Add as a placeholder for future filling-in.
1387         * docs/pwg/basics_autoplugging.xml:
1388         * docs/pwg/basics_buffers.xml:
1389         * docs/pwg/basics_elements.xml:
1390         * docs/pwg/basics_events.xml:
1391         * docs/pwg/basics_plugins.xml:
1392         * docs/pwg/basics_types.xml:
1393           Remove, because unused (this is all in intro_basics.xml).
1394         * docs/pwg/building_signals.xml:
1395           Short intro to signals + reference to GObject docs - we really
1396           shouldn't go into these sort of things to deply because we don't
1397           use them that extensively anyway.
1398         * docs/pwg/building_state.xml:
1399           Explanation of states. Benjamin, please check.
1400         * docs/pwg/building_testapp.xml:
1401           Put everything in one page - putting only a few lines of content
1402           per page doesn't really make sense.
1403
1404           Time to get into the advanced topics. ;).
1405
1406 2004-01-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1407
1408         * docs/pwg/advanced_types.xml:
1409           Finish documenting the current state of mimetypes.
1410         * docs/pwg/building_boiler.xml:
1411         * docs/pwg/building_chainfn.xml:
1412         * docs/pwg/building_pads.xml:
1413         * docs/pwg/building_props.xml:
1414         * docs/pwg/building_testapp.xml:
1415           Start documenting the "how to build a simple audio filter" part
1416           of the PWG. Most stuff is ready by now. Stuff remaining: signals,
1417           states and (maybe?) a short introduction to capsnego in the chapter
1418           on pads (building_pads.xml). Capsnego should probably be explained
1419           fully in advanced_capsnego.xml or so.
1420
1421 2004-01-26  David Schleef  <ds@schleef.org>
1422
1423         * gst/gstpad.c: (gst_pad_try_set_caps_nonfixed):
1424         * gst/gstpad.h: Add new function to allow element to (somewhat)
1425         specify non-fixed caps on a pad.
1426         * gst/gstqueue.c: (gst_queue_chain): Remove noisy g_object_notify()
1427         that I added a few weeks ago.
1428
1429 2004-01-26  David Schleef  <ds@schleef.org>
1430
1431         * gst/gstpad.c: (gst_pad_try_set_caps): Revert last change
1432           making try_set_caps() work with non-fixed caps.
1433
1434 2004-01-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1435
1436         * docs/pwg/advanced_types.xml:
1437         * docs/pwg/intro_basics.xml:
1438         * docs/pwg/intro_preface.xml:
1439         * docs/pwg/pwg.xml:
1440         * docs/pwg/titlepage.xml:
1441           First try to resurrect the PWG. I'm halfway integrating the mimetypes
1442           in here (docs/random/mimetypes), and will from there on work on both
1443           updating outdated parts and adding missing parts.
1444           That doesn't mean I'll fix it completely, but I'll try at least. ;).
1445
1446 2004-01-26  Thomas Vander Stichele  <thomas at apestaart dot org>
1447
1448         * gst/gsterror.h: reinstate GST_LIBRARY_ERROR_ENCODE until
1449           policy is set
1450
1451 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1452
1453         * gst/gstelement.h:
1454           remove gst_element_factory_get_version. It doesn't exist anymore.
1455         * gst/gstplugin.c:
1456         * gst/gstplugin.h:
1457           remove gst_plugin_set_name and change gst_plugin_get_longname to
1458           gst_plugin_get_description to match code.
1459         * gst/gsterror.h:
1460           remove GST_LIBRARY_ERROR_ENCODE. It's GST_STREAM_ERROR_ENCODE.
1461         * gst/gstpad.c: (gst_pad_try_set_caps):
1462           make it work with nonfixed caps.
1463           Note that even in the nonfixed case the link function of the pad
1464           that tries to set caps isn't called.
1465
1466 2004-01-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1467
1468         * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
1469           fix bug where buffer was not assembled correctly
1470         * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init):
1471           silence by default
1472         * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
1473           only seek if there's no more buffers that could work without seeking
1474
1475 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
1476
1477         * gst/gsttag.c: (_gst_tag_initialize):
1478         * gst/gsttag.h:
1479           Add application tag (for encoding/muxing app).
1480
1481 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
1482
1483         * autogen.sh:
1484           make autopoint force, and libtoolize not copy
1485         * common/m4/as-docbook.m4:
1486           added docbook xml catalog setup check
1487         * common/m4/gst-doc.m4:
1488           use docbook check
1489
1490 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
1491
1492         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
1493         * gst/gsttag.h:
1494           add GstTagFlag
1495
1496 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1497
1498         * docs/gst/gstreamer-sections.txt:
1499         * docs/gst/tmpl/gst.sgml:
1500         * docs/gst/tmpl/gstbuffer.sgml:
1501         * docs/gst/tmpl/gstclock.sgml:
1502         * docs/gst/tmpl/gstelement.sgml:
1503         * docs/gst/tmpl/gstreamer-unused.sgml:
1504         * docs/gst/tmpl/gstxml.sgml:
1505           sync latest API changes to docs
1506
1507 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1508
1509         * gst/gstpluginfeature.c:
1510           fix doc snippet
1511         * tools/gst-inspect.c: (print_element_list):
1512           fix output of typefind
1513           add GPL header
1514         * tools/gst-launch.c:
1515           add GPL header
1516
1517 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1518
1519         * gst/elements/Makefile.am:
1520         * gst/elements/gstelements.c:
1521         * gst/elements/gsttypefindelement.c:
1522         * gst/elements/gsttypefindelement.h:
1523         * po/POTFILES.in:
1524         * po/fr.po:
1525         * po/nl.po:
1526           renamed gsttypefindelement to gsttypefind, conserving CVS history
1527
1528 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1529
1530         * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_list_add_valist):
1531         * gst/gsttag.h:
1532           add some tags used in ogg as well
1533           fix _ in replaygain tags
1534
1535 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1536
1537         * gst/gsterror.h:
1538           fix wrong GST_LIBRARY_ERROR_ENCODE addition
1539
1540 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1541
1542         * gst/gstelement.c: (gst_element_error_full):
1543         * gst/gstelement.h:
1544           change _extended to _full
1545
1546 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1547
1548         reviewed by: <delete if not using a buddy>
1549
1550         * docs/gst/tmpl/gst.sgml:
1551         * docs/gst/tmpl/gstbuffer.sgml:
1552         * docs/gst/tmpl/gstclock.sgml:
1553         * docs/gst/tmpl/gstelement.sgml:
1554         * docs/gst/tmpl/gstreamer-unused.sgml:
1555         * docs/gst/tmpl/gstxml.sgml:
1556         * gst/gstelement.c: (gst_element_error_full):
1557         * gst/gstelement.h:
1558
1559 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1560
1561         * gst/gstelement.h: fix _gst_element_error_printf prototype
1562
1563 2004-01-20  David Schleef  <ds@schleef.org>
1564
1565         * gst/gststructure.c: (gst_structure_to_string):
1566         Convert function to use gst_value_serialize().
1567         * gst/gstvalue.c: (gst_value_serialize_list),
1568         (gst_value_serialize_fourcc), (gst_value_serialize_int_range),
1569         (gst_value_serialize_double_range), (gst_value_serialize_boolean),
1570         (gst_value_serialize_int), (gst_value_serialize_double),
1571         (gst_string_wrap), (gst_value_serialize_string),
1572         (gst_value_serialize), (gst_value_deserialize):
1573         * gst/gstvalue.h:
1574         Add implementations for serialize.
1575
1576 2004-01-20  Julien MOUTTE  <julien@moutte.net>
1577
1578         * gst/gsterror.h: xvidenc.c needs GST_LIBRARY_ERROR_ENCODE. Dunno if
1579         we want to keep that one in the future or change xvidenc.c to use 
1580         another error.
1581
1582 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1583
1584         * gst/gstelement.c: (_gst_element_error_printf):
1585         * gst/gstelement.h:
1586           privatise function
1587
1588 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1589
1590         * docs/random/error:
1591           doc explaining error system
1592         * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
1593           cleanup
1594
1595 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1596
1597         * gst/gst-i18n-app.h:
1598         * gst/gst-i18n-lib.h:
1599           remove inclusion of config.h
1600         * po/POTFILES.in:
1601         * po/nl.po:
1602           add gst/gstelement.c
1603
1604 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1605
1606         * po/nl.po: updated Dutch translation
1607
1608 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1609
1610         * gst/gsterror.c: (_gst_core_errors_init),
1611         (_gst_library_errors_init), (_gst_resource_errors_init),
1612         (_gst_stream_errors_init):
1613         remove ending punctuation dots
1614
1615 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1616
1617         * gst/elements/gstfilesink.c: (gst_filesink_open_file):
1618         * gst/elements/gstfilesrc.c: (gst_filesrc_get_read):
1619         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
1620         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
1621         (gst_pipefilter_chain), (gst_pipefilter_open_file):
1622         use GST_ERROR_SYSTEM
1623
1624 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1625
1626         * gst/gstelement.c: (gst_element_error_printf),
1627         (gst_element_error_extended):
1628         * gst/gstelement.h:
1629           add a helper printf function so we can have NULL values passed.
1630
1631 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
1632
1633         * gst/gstelement.h:
1634           add G_STMT macros to gst_element_error, which isn't strictly
1635           necessary but people tell me to anyway.
1636
1637 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
1638
1639         * gst/Makefile.am:
1640         * gst/autoplug/gstspideridentity.c:
1641         (gst_spider_identity_sink_loop_type_finding):
1642         * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
1643         * gst/elements/gstfilesink.c: (gst_filesink_open_file),
1644         (gst_filesink_close_file), (gst_filesink_handle_event),
1645         (gst_filesink_chain):
1646         * gst/elements/gstfilesrc.c: (gst_filesrc_set_property),
1647         (gst_filesrc_map_region), (gst_filesrc_get_read),
1648         (gst_filesrc_open_file):
1649         * gst/elements/gstidentity.c: (gst_identity_chain):
1650         * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
1651         * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
1652         (gst_pipefilter_chain), (gst_pipefilter_open_file):
1653         * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
1654         * gst/gst.h:
1655         * gst/gst_private.h:
1656         * gst/gstelement.c: (gst_element_class_init),
1657         (gst_element_default_error), (gst_element_error_func),
1658         (gst_element_error_extended):
1659         * gst/gstelement.h:
1660         * gst/gsterror.c: (_gst_core_errors_init),
1661         (_gst_library_errors_init), (_gst_resource_errors_init),
1662         (_gst_stream_errors_init), (gst_error_get_message):
1663         * gst/gsterror.h:
1664         * gst/gstinfo.c: (_gst_debug_init):
1665         * gst/gstmarshal.list:
1666         * gst/gstpad.c: (gst_pad_set_explicit_caps),
1667         (gst_pad_recover_caps_error), (gst_pad_pull):
1668         * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
1669         * gst/schedulers/gstbasicscheduler.c:
1670         (gst_basic_scheduler_chainhandler_proxy),
1671         (gst_basic_scheduler_gethandler_proxy),
1672         (gst_basic_scheduler_cothreaded_chain):
1673         * po/POTFILES.in:
1674         * po/fr.po:
1675         * po/nl.po:
1676           change error signal
1677           add error categories
1678
1679 2004-01-18  Jeremy Simon  <jesimon@libertysurf.fr>
1680
1681         * gst/gsttag.c: (_gst_tag_initialize):
1682         * gst/gsttag.h:
1683         Add replaygain tag
1684
1685 2004-01-18  Colin Walters  <walters@verbum.org>
1686
1687         * examples/retag/retag.c: Call gst_init before processing
1688         program args.  Add g_assert to _link_many call.
1689
1690 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1691
1692         * gst/gstpad.c: (gst_pad_alloc_buffer):
1693           Return a newly allocated buffer when the pad has no peer.
1694
1695 2004-01-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1696
1697         * gst/gstclock.c: (gst_clock_get_time):
1698           make it compile with gcc 2.95 again.
1699           Patch by Scott Wheeler
1700
1701 2004-01-15  David Schleef  <ds@schleef.org>
1702
1703         * gst/gstcaps.h:
1704         Added gst_caps_is_simple() macro.
1705         * testsuite/caps/caps.c: (test1):
1706         * testsuite/caps/intersect2.c: (main):
1707         * testsuite/caps/intersection.c: (main):
1708         Fixes to make 'make check' work again after removing
1709         gst_caps_is_chained().
1710
1711 2004-01-15  Leif Johnson <leif@ambient.2y.net>
1712
1713         * docs/random/uraeus/gstreamer_and_midi.txt: Rather large edits
1714         and additions to the MIDI document.
1715
1716 2004-01-15  David Schleef  <ds@schleef.org>
1717
1718         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered),
1719         (gst_element_link_pads_filtered): Use GST_PAD_ macros instead
1720         of GST_RPAD_, since we don't know if it's a real or ghost pad.
1721
1722 2004-01-15  David Schleef  <ds@schleef.org>
1723
1724         * gst/gstqueue.c:
1725         * gst/gstqueue.h:
1726         Fix the spelling of "treshold" and make min_threshold actually
1727         affect the queue.
1728
1729 2004-01-15  David Schleef  <ds@schleef.org>
1730
1731         * gst/gstcaps.c:
1732         Add lots of documentation.
1733         * gst/gstcaps.h:
1734         Deprecate a few functions.
1735         * gst/gstpad.c:
1736         Removed use of deprecated functions.
1737
1738 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1739
1740         * gst/gstpad.c: (gst_pad_is_linked):
1741         * gst/gstpad.h:
1742           implement gst_pad_is_linked
1743         * gst/gstelement.h:
1744           reserve space for initiate_state_change
1745
1746 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1747
1748         * gst/autoplug/gstspideridentity.c:
1749         (gst_spider_identity_sink_loop_type_finding):
1750           break infinite loop by just returning instead of looping
1751         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_set_property):
1752           set event time difference correctly. Set it to 1 second instead
1753           of 100ms to be more tolerant
1754         * gst/gstelement.c: (gst_element_set_time):
1755           add debugging output
1756
1757 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1758
1759         * gst/gstqueue.c: (gst_queue_getcaps), (gst_queue_link):
1760           query if buffers are inside the pool, ignore events
1761
1762 2004-01-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1763
1764         * gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
1765         (gst_clock_set_speed), (gst_clock_set_active),
1766         (gst_clock_is_active), (gst_clock_reset),
1767         (gst_clock_handle_discont):
1768         * gst/gstclock.h:
1769           deprecate old interface and disable functions that aren't in use
1770           anymore.
1771         * gst/gstelement.h:
1772         * gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
1773         (gst_element_set_time), (gst_element_adjust_time):
1774           add concept of "element time" and functions to get/set this time.
1775         * gst/gstelement.c: (gst_element_change_state):
1776           update element time correctly.
1777         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
1778           This is a debug message, not a g_critical.
1779         * gst/gstpad.c: (gst_pad_event_default):
1780           handle discontinuous events right with element time.
1781         * gst/gstscheduler.c: (gst_scheduler_state_transition):
1782           update to clocking fixes.
1783           set clocks on elements in READY=>PAUSED. The old behaviour caused
1784           a wrong element time on the first element that started playing.
1785         * gst/schedulers/gstbasicscheduler.c:
1786         (gst_basic_scheduler_class_init):
1787         * gst/schedulers/gstoptimalscheduler.c:
1788         (gst_opt_scheduler_class_init):
1789           remove code that just implements the default behaviour.
1790         * gst/elements/gstfakesink.c: (gst_fakesink_chain):
1791           update to use new clocking functions
1792         * testsuite/clock/clock1.c: (gst_clock_debug), (main):
1793         * testsuite/clock/clock2.c: (gst_clock_debug), (main):
1794           update to test new element time.
1795         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
1796           use _get_allowed_caps instead of _get_caps. This catches filtered
1797           caps correctly.
1798         * testsuite/debug/commandline.c:
1799           update for new GST_DEBUG syntax.
1800         * testsuite/threads/Makefile.am:
1801           disable a test that only works sometimes.
1802
1803 2004-01-13  Julien MOUTTE <julien@moutte.net>
1804
1805         * po/LINGUAS: Adding fr.
1806         * po/fr.po: Adding french translation.
1807
1808 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1809
1810         * gst/parse/grammar.y:
1811         * po/POTFILES.in:
1812         * po/nl.po:
1813         * tools/gst-launch.c: (xmllaunch_parse_cmdline), (main):
1814           translate parsing error messages
1815
1816 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1817
1818         * po/POTFILES.in: adding gst-launch
1819         * po/nl.po: updated translation, all 99 strings translated
1820         * tools/gst-launch.c: (idle_func), (xmllaunch_parse_cmdline),
1821         (found_tag), (sigint_handler_sighandler), (play_handler), (main):
1822           fix strings for translation
1823
1824 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1825
1826         * gst/gst.c:
1827           - capitalize beginnings of popt options
1828           - fix strings for translation
1829           - change gst-debug format from =N1=V1:N2=V2 to =N1:V1,N2:V2
1830
1831 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1832
1833         * po/README: add some notes on how to update translations
1834
1835 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1836
1837         * ABOUT-NLS: removed, is autogenerated from autopoint
1838         * autogen.sh: add autopoint stuff
1839         * configure.ac: fix up gettext stuff
1840         * gst/Makefile.am: add i18n headers to noinst_HEADERS
1841         * gst/elements/gsttypefindelement.c: add header include
1842         * gst/gettext.h: add header, copy from system-installed header
1843         * gst/gst-i18n-app.h: to be included by each app having translations
1844         * gst/gst-i18n-lib.h: to be included by each lib having translations
1845         * gst/gst.c: (init_pre): fix up gettext calls
1846         * gst/gst_private.h: remove i18n stuff, moving to separate headers
1847         * po/LINGUAS: the new way to specify translations present
1848         * po/Makefile.in.in: removed from cvs, autogenerated from autopoint
1849         * po/Makevars: the variables filled in for GStreamer
1850         * po/POTFILES.in: added new files with translations
1851         * po/de.po: has new strings
1852         * po/nl.po: readded, has new strings
1853
1854 2004-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
1855
1856         * gst/gsttag.c: fix some strings marked for translation
1857
1858 2004-01-13  Iain <iain@prettypeople.org>
1859
1860         * gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
1861         group when we add an element to it, cos we unref it when we remove one
1862
1863 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
1864
1865         * testsuite/debug/commandline.c: (debug_not_reached):
1866         * testsuite/debug/output.c: (check_message):
1867           fix testsuite
1868
1869 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1870
1871         * examples/cutter/.cvsignore:
1872         * examples/helloworld/.cvsignore:
1873         * examples/launch/.cvsignore:
1874         * examples/manual/.cvsignore:
1875         * examples/mixer/.cvsignore:
1876         * examples/pingpong/.cvsignore:
1877         * examples/plugins/.cvsignore:
1878         * examples/queue/.cvsignore:
1879         * examples/queue2/.cvsignore:
1880         * examples/queue3/.cvsignore:
1881         * examples/queue4/.cvsignore:
1882         * examples/retag/.cvsignore:
1883         * examples/thread/.cvsignore:
1884         * examples/typefind/.cvsignore:
1885         * examples/xml/.cvsignore:
1886         * gst/.cvsignore:
1887         * gst/autoplug/.cvsignore:
1888         * gst/elements/.cvsignore:
1889         * gst/indexers/.cvsignore:
1890         * gst/parse/.cvsignore:
1891         * gst/registries/.cvsignore:
1892         * gst/schedulers/.cvsignore:
1893         * libs/gst/bytestream/.cvsignore:
1894         * libs/gst/control/.cvsignore:
1895         * libs/gst/getbits/.cvsignore:
1896         * tests/.cvsignore:
1897         * tests/bufspeed/.cvsignore:
1898         * tests/instantiate/.cvsignore:
1899         * tests/memchunk/.cvsignore:
1900         * tests/muxing/.cvsignore:
1901         * tests/sched/.cvsignore:
1902         * tests/seeking/.cvsignore:
1903         * tests/threadstate/.cvsignore:
1904         * testsuite/.cvsignore:
1905         * testsuite/caps/.cvsignore:
1906         * testsuite/cleanup/.cvsignore:
1907         * testsuite/dynparams/.cvsignore:
1908         * testsuite/plugin/.cvsignore:
1909         * tools/.cvsignore:
1910           update - this is huge, because it includes *.bb, *.bbg and *.da files
1911           which are generated for gcov.
1912
1913 2004-01-11  David Schleef  <ds@schleef.org>
1914
1915         * gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
1916         a function to parse integers in ways that strto[u]l() does not.
1917
1918 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1919
1920         * tools/gst-inspect.c: (print_caps):
1921           improve output of caps a bit
1922
1923 2004-01-11  David Schleef  <ds@schleef.org>
1924
1925         * gst/gstbuffer.c: (gst_buffer_create_sub): Subbuffers should
1926         inherit correct flags (READONLY and DONTKEEP).
1927
1928 2004-01-11  David Schleef  <ds@schleef.org>
1929
1930         * gst/elements/gstfilesrc.c: (gst_filesrc_free_parent_mmap),
1931         (gst_filesrc_map_region):
1932         * gst/gstbuffer.c: (_gst_buffer_initialize),
1933         (_gst_buffer_sub_free), (gst_buffer_default_copy),
1934         (gst_buffer_new), (gst_buffer_create_sub),
1935         (gst_buffer_is_span_fast), (gst_buffer_span):
1936         * gst/gstbuffer.h:
1937         Change GstBuffer private structure element names. (all files)
1938         * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
1939         (gst_queue_link):
1940         * gst/gstqueue.h:
1941         Implement getcaps/pad_link functions that handle the case where
1942         there are data in the queue.
1943
1944 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1945
1946         * gst/elements/gstbufferstore.c:
1947           initialize debugging structure correctly
1948         * gst/elements/gsttee.c: (gst_tee_set_property):
1949           g_object_notify when property was changed
1950         * gst/elements/gsttypefindelement.c:
1951         (gst_type_find_element_change_state):
1952           clear caps correctly
1953
1954 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1955
1956         * gst/gstqueue.c: (gst_queue_init):
1957           Use better defaults for when a queue should block. This
1958           gets rid of jerky playback for quite a few files.
1959           It takes more memory.
1960
1961 2004-01-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1962
1963         (gst_xml_registry_parse_padtemplate):
1964           make critical message slightly more useful
1965
1966 2004-01-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1967
1968         * gst/gstinfo.c: (gst_debug_log), (gst_debug_log_valist),
1969         (gst_debug_message_get), (gst_debug_log_default):
1970         * gst/gstinfo.h:
1971           Change gst_debug_log(_valist) to take a const format string.
1972           Change prototype of log function and functions using those to 
1973           take a GstDebugMessage instead of a string that requires using
1974           gst_debug_message_get.
1975
1976 2004-01-08  David Schleef  <ds@schleef.org>
1977
1978         * Makefile.am:
1979         * configure.ac:
1980         Add option --enable-gcov to build GStreamer with -fprofile-arcs
1981         and -ftest-coverage, which allows gcov to show information about
1982         testsuite coverage.
1983
1984 2004-01-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
1985
1986         * gst/gstutils.h:
1987           Add GST_BOILERPLATE(_FULL), GST_PARENT_CALL and
1988           GST_PARENT_CALL_WITH_DEFAULT
1989         * gst/elements/gstaggregator.c: 
1990         * gst/elements/gstbufferstore.c: 
1991         * gst/elements/gstfakesink.c: 
1992         * gst/elements/gstfakesrc.c: 
1993         * gst/elements/gstfdsink.c: 
1994         * gst/elements/gstfdsrc.c: 
1995         * gst/elements/gstfilesink.c: 
1996         * gst/elements/gstfilesrc.c: 
1997         * gst/elements/gstidentity.c: 
1998         * gst/elements/gstmd5sink.c: 
1999         * gst/elements/gstmultidisksrc.c:
2000         * gst/elements/gstpipefilter.c: 
2001         * gst/elements/gstshaper.c:
2002         * gst/elements/gststatistics.c:
2003         * gst/elements/gsttee.c:
2004         * gst/elements/gsttypefindelement.c:
2005           use them.
2006
2007 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
2008
2009         * docs/gst/gstreamer-docs.sgml: remove props
2010         * docs/gst/gstreamer-sections.txt: remove props
2011         * docs/gst/tmpl/gst.sgml:
2012         * docs/gst/tmpl/gstbin.sgml:
2013         * docs/gst/tmpl/gstbuffer.sgml:
2014         * docs/gst/tmpl/gstcaps.sgml:
2015         * docs/gst/tmpl/gstclock.sgml:
2016         * docs/gst/tmpl/gstelement.sgml:
2017         * docs/gst/tmpl/gstindex.sgml:
2018         * docs/gst/tmpl/gstobject.sgml:
2019         * docs/gst/tmpl/gstpad.sgml:
2020         * docs/gst/tmpl/gstpadtemplate.sgml:
2021         * docs/gst/tmpl/gstreamer-unused.sgml:
2022         * docs/gst/tmpl/gstthread.sgml:
2023         * docs/gst/tmpl/gstxml.sgml:
2024           sync with code reorganization
2025
2026 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
2027
2028         * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
2029         Make the 'Could not find compatible pad' message more informative.
2030
2031 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
2032                                                                                 
2033         * gst/elements/gstfilesink.c: (gst_filesink_set_location):
2034           Fix for if we pass NULL as property to location.
2035         * gst/elements/gstpipefilter.c: (gst_pipefilter_init),
2036         (gst_pipefilter_handle_event), (gst_pipefilter_chain):
2037           Fix for instantiate-test (see below).
2038         * gst/gststructure.c: (_gst_structure_parse_value):
2039           Fix compile error on gcc-2.96.
2040         * configure.ac:
2041         * tests/Makefile.am:
2042         * tests/instantiate/Makefile.am:
2043         * tests/instantiate/create.c: (create_all_elements), (main):
2044           Add a test that instantiates all elements. This makes it easy to
2045           track dead code for old API/design (like setting event functions
2046           on sink pads and so on).
2047
2048 2004-01-06  Jan Schmidt  <thaytan@mad.scientist.com>
2049
2050         * gst/gstcaps.c: (gst_caps_append_structure):
2051           Move the poisoning to allow a NULL structure
2052         * gst/gstevent.c: (_gst_event_free):
2053           When freeing a navigation event, free the structure
2054           also
2055
2056 2004-01-04  David Schleef  <ds@schleef.org>
2057
2058         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
2059         Remove usage of gst_pad_proxy_fixate.
2060         * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
2061         (gst_caps_split_one), (gst_caps_replace):
2062         Add poisoning code.
2063         * gst/gstmarshal.list:
2064         Add pointer__pointer for fixate signal
2065         * gst/gstpad.c: (gst_real_pad_class_init),
2066         (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
2067         (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
2068         (gst_pad_set_explicit_caps), (gst_pad_template_new):
2069         Add poisoning code. Add fixate signal on RealPad. Change
2070         set_explicit_caps() to take const GstCaps, like try_set_caps().
2071         * gst/gstpad.h:
2072         * testsuite/caps/Makefile.am:
2073         * testsuite/caps/app_fixate.c: Add a test for the fixate signal
2074
2075 2004-01-03  David Schleef  <ds@schleef.org>
2076
2077         * gst/elements/gsttypefindelement.c:
2078         (gst_type_find_element_have_type), (gst_type_find_element_init):
2079         Use gst_pad_use_explicit_caps for src pad.
2080         * gst/gstpad.c: (gst_pad_try_set_caps):  Check that link exists
2081         before using it.
2082
2083 2004-01-03  David Schleef  <ds@schleef.org>
2084
2085         * gst/gstelement.c: (gst_element_link_pads_filtered),
2086         (gst_element_negotiate_pads): Fix to allow DELAYED to indicate
2087         that linking was successful.
2088         * gst/gstpad.c: (gst_pad_link_free),
2089         (gst_pad_link_call_link_functions), (gst_pad_link_negotiate),
2090         (gst_pad_link_try), (gst_pad_link_unnegotiate),
2091         (gst_pad_unnegotiate), (gst_pad_set_explicit_caps): Pass
2092         GstPadLinkReturn correctly between functions, and don't fail
2093         when DELAYED is used (DELAYED is very important).  Better
2094         cleanup on unlinking and unnegotiation.  Should fix some spider
2095         bugs.
2096
2097 2004-01-02  David Schleef  <ds@schleef.org>
2098
2099         * gst/gstelement.c: (gst_element_class_init),
2100         (gst_element_base_class_init): ->padtemplates should be cleared
2101         in base_init, since we need to have a fresh list for every
2102         class.  (Alternately, we chould copy the list and share the
2103         actual pad templates (not the list), but that would require
2104         changing every plugin to move pad template registration from
2105         base_init to class_init.)
2106
2107 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
2108
2109         * gst/gstelement.c: (gst_element_class_add_pad_template):
2110           Refuse registering a pad template if another pad template
2111           with the same name already exists (#114715).
2112
2113 2004-01-02  David Schleef  <ds@schleef.org>
2114
2115         * gst/gstcaps.c: (_gst_structure_is_equal_foreach),
2116         (gst_caps_is_equal_fixed): Add new function.
2117         * gst/gstcaps.h: ditto.
2118         * gst/gstpad.c: (gst_real_pad_class_init),
2119         (gst_pad_link_call_link_functions), (gst_pad_try_set_caps),
2120         (gst_pad_set_explicit_caps), (gst_pad_get_caps):  In try_set_caps,
2121         check new caps against existing caps -- if they're the same, return
2122         OK without renegotiating.  caps-nego-failed signal fixed so that
2123         the marshaller isn't VOID__OBJECT.  Also changed to G_TYPE_POINTER
2124         to save an extra caps copy.  Don't complete negotiation if a pad
2125         link function returns DELAYED.
2126
2127 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2128
2129         * gst/gstpad.c: (gst_pad_try_relink_filtered):
2130           Fix wrong g_return_if_fail
2131
2132 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
2133
2134         * gst/gstbin.c: (gst_bin_class_init):
2135         Change the marshalling of element_added/element_removed
2136         to use gst_marshal_VOID__OBJECT, since gst_marshal_VOID__POINTER 
2137         complains that GST_TYPE_ELEMENT is not G_TYPE_POINTER
2138
2139 2004-01-01  David Schleef  <ds@schleef.org>
2140
2141         * gst/gstpad.c: (gst_pad_set_explicit_caps),
2142         (gst_pad_explicit_getcaps), (gst_pad_explicit_link),
2143         (gst_pad_use_explicit_caps):
2144         * gst/gstpad.h:
2145         Add new functions.  gst_pad_use_explicit_caps() sets up a pad
2146         to use an internal getcaps and link fuction so that negotiation
2147         always results in the explicitly set caps.
2148         gst_pad_set_explicit_caps() sets the explicit caps.  These functions
2149         are particularly useful for decoders.
2150
2151 2003-12-31  David Schleef  <ds@schleef.org>
2152
2153         * gst/elements/gstidentity.c: (gst_identity_class_init),
2154         (gst_identity_init), (gst_identity_chain),
2155         (gst_identity_set_property), (gst_identity_get_property):
2156         * gst/elements/gstidentity.h:
2157         * gst/gstqueue.c: (gst_queue_init):
2158           Negotiation fixes.
2159
2160 2003-12-31  David Schleef  <ds@schleef.org>
2161
2162         * gst/gstcaps.c: (gst_caps_intersect),
2163         (_gst_caps_normalize_foreach), (gst_caps_normalize):
2164           Implement gst_caps_normalize().
2165         * testsuite/caps/normalisation.c: (main):
2166           Add an additional test
2167
2168 2003-12-31  Ronald Bultje  <rbultje@ronald.bitfreak.net>
2169
2170         * gst/gstqueue.c: (gst_queue_init):
2171           use gst_pad_proxy_getcaps()
2172
2173 2003-12-31  David Schleef  <ds@schleef.org>
2174
2175         * gst/elements/gstshaper.c: (gst_shaper_link):
2176         * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
2177         * gst/gstqueue.c: (gst_queue_link):
2178           Negotiation fixes.
2179
2180 2003-12-31  David Schleef  <ds@schleef.org>
2181
2182         * gst/gstpad.c: (gst_pad_proxy_pad_link), (gst_pad_proxy_fixate):
2183         * gst/gstpad.h: Add functions that are useful as default pad
2184         link and fixate functions for elements.
2185
2186 2003-12-30  David Schleef  <ds@schleef.org>
2187
2188         * gst/gstpad.c: (gst_pad_link_try):
2189           Fix segfault when attempting to return to old caps
2190
2191 2003-12-29  David Schleef  <ds@schleef.org>
2192
2193         * gst/gstcaps.c: (gst_caps_normalize), (simplify_foreach),
2194         (gst_caps_structure_simplify), (gst_caps_simplify):
2195         * gst/gstcaps.h:
2196           Add simplify function
2197         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
2198         (gst_pad_perform_negotiate), (gst_pad_is_negotiated):
2199         * gst/gstpad.h:
2200           Copy over srcnotify, sinknotify when calling old pad_link
2201           functions.  Add new is_negotiated() function.
2202         * gst/gststructure.c: (gst_structure_copy):
2203           Fix an incredibly stupid bug that should have been noticed
2204           weeks ago.  _copy() returned the argument, not the new copy.
2205
2206 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2207
2208         * gst/gstcaps.c: (gst_caps_append):
2209           add sanity checks
2210         * gst/gstcaps.h: (gst_caps_debug):
2211           remove, it doesn't exist anymore.
2212         * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
2213         (gst_element_threadsafe_properties_post_run):
2214           make debugging messages not clutter up THREAD debug category
2215         (gst_element_negotiate_pads), (gst_element_clear_pad_caps),
2216         (gst_element_change_state):
2217           update to new caps API
2218         * gst/gstinterface.c: (gst_implements_interface_cast):
2219           don't put vital code in g_return_if_fail
2220         * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps), 
2221         (gst_pad_link_filtered):
2222           add pst_pad_try_link and use it.
2223         (gst_pad_perform_negotiate), (gst_pad_renegotiate):
2224           implement correctly, deprecate first one.
2225         (gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
2226           add and implement.
2227         (gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
2228           implement.
2229         (gst_pad_get_negotiated_caps):
2230           add and implement. Make GST_PAD_CAPS call this function.
2231         (gst_pad_get_caps):
2232           remove unneeded check..
2233         (gst_pad_recover_caps_error):
2234           disable, always return FALSE.
2235         (gst_real_pad_dispose):
2236           don't free caps and appfilter anymore, they're unused.
2237         * gst/gstpad.h:
2238           Reflect changes mentioned above.
2239         * gst/gstsystemclock.c: (gst_system_clock_wait):
2240           Make 'clock is way behind' a debugging message.
2241         * gst/gstthread.c: (gst_thread_change_state):
2242           Fix debugging message
2243
2244 2003-12-25  Thomas Vander Stichele  <thomas at apestaart dot org>
2245
2246         * gst/gstinfo.h:
2247           fix GST_DEBUG_CATEGORY_INIT gtk-doc description
2248         * docs/gst/tmpl/gstreamer-unused.sgml:
2249           removed all traces of cvs conflicts
2250
2251 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
2252
2253         * configure.ac:
2254         * gst/schedulers/cothreads_compat.h:
2255         * libs/Makefile.am:
2256           remove last instances of wingo cothread usage
2257
2258 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
2259
2260         * gst/gstplugin.c:
2261         * gst/gstversion.h.in:
2262         * gst/parse/grammar.y:
2263           change comment block from /** to /* when not gtk-doc comments
2264
2265 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
2266
2267         * gst/gst.c: whitespace and doc style fixes
2268
2269 2003-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
2270
2271         * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
2272
2273 2003-12-24  Colin Walters  <walters@verbum.org>
2274
2275         * gst/elements/gsttypefindelement.c:
2276           gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
2277           Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
2278           Don't double-free caps.
2279
2280 2003-12-23  David Schleef  <ds@schleef.org>
2281
2282         * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
2283           gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
2284           Many little fixes and additions of debug statements to
2285           get rhythmbox working.
2286
2287 2003-12-23  Colin Walters  <walters@verbum.org>
2288
2289         * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
2290         Use GST_PAD_LINK_SUCCESSFUL.
2291
2292 2003-12-23  David Schleef  <ds@schleef.org>
2293
2294         * gst/elements/gstaggregator.c:
2295         * gst/elements/gsttee.c:
2296           Use gst_pad_proxy_getcaps().
2297         * gst/gstpad.c:
2298         * gst/gstpad.h:
2299           Add gst_pad_proxy_getcaps(), which filter elements can use
2300           as a generic getcaps implementation.
2301           Fix gst_pad_get_allowed_caps().  It just wasn't doing what
2302           was advertised.
2303
2304 2003-12-23  David Schleef  <ds@schleef.org>
2305
2306         * gst/gstpad.c:
2307           Rearrange/rewrite much of the pad negotiation code, since it
2308           resembled pasta.  This actually changes the way some
2309           negotiation works, since the previous code was inconsistent
2310           depending on how it was invoked.  Add (internal) structure
2311           GstPadLink, which is used to hold some information (more in
2312           the future) about the link between two pads.  Fixes a number
2313           of bugs, including random lossage of filter caps when the
2314           initial negotiation is delayed.  A few functions are still
2315           unimplemented.
2316         * gst/gstpad.h:
2317           Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros.  Please use
2318           these when testing GstPadLinkReturn values instead of comparing
2319           directly.
2320
2321 2003-12-23  David Schleef  <ds@schleef.org>
2322
2323         * gst/gstvalue.c: 
2324         * gst/gstvalue.h:
2325           Rearrange lots of code.  Change registration of compare function
2326           into registration of compare/serialize/deserialize functions.
2327           Doesn't include implementation of gst_value_[de]serialize(),
2328           but that should be easy.
2329
2330 2003-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
2331
2332         * docs/gst/gstreamer-sections.txt:
2333         * docs/gst/tmpl/gstprops.sgml: removed
2334         * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
2335           David removed props and caps code, so let's remove their docs as well.
2336           Removed all no longer existing symbols from gstreamer-sections.txt
2337           
2338 2003-12-22  Colin Walters  <walters@verbum.org>
2339
2340         * gst/gsttaginterface.c, gst/gsttaginterface.h,
2341           gst/gsttag.c, gst/gsttag.h:  Add interface to setting GValues
2342           of tags directly.
2343
2344 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2345
2346         * gst/elements/gstelements.c:
2347           Set ranks of elements to NONE, so the autoplugger doesn't use them.
2348         * gst/elements/gstshaper.c: (gst_shaper_getcaps):
2349           Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
2350           gst_caps (peer).
2351
2352 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
2353
2354         * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
2355         * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
2356         (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
2357         (gst_spider_identity_sink_loop_type_finding):
2358         * gst/autoplug/gstspideridentity.h:
2359           Fix autoplugging in spider element, so it works with new caps.
2360           This was mainly caused by identifying empty caps incorrectly.
2361
2362 2003-12-22  David Schleef  <ds@schleef.org>
2363
2364         * gststructure.c, gstvalue.c, gstvalue.h: Add
2365           gst_value_init_and_copy() and use it, to avoid silly mistakes in
2366           using g_value_copy()
2367
2368 2003-12-21  David Schleef  <ds@schleef.org>
2369
2370         * many, many files: Merge CAPS branch.  This includes:
2371           - implemention of GstValue and several GstValue types
2372           - implemention of GstStructure
2373           - entire rewrite of GstCaps
2374           - removal of GstProps
2375           - many changes to GstPad to compensate for new caps paradigm
2376           - removal of GstBufferpool
2377         * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
2378         gstvalue.h, gst/gstcaps[2]*.[ch]:
2379           - rename gstcaps2.[ch] to gstcaps.[ch]
2380
2381 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
2382
2383         * gst/gstqueue.c: (gst_queue_handle_pending_events),
2384         (gst_queue_chain), (gst_queue_handle_src_event):
2385           implement timeout for sending events. Workaround for if the
2386           pipeline on this queue is not passing any data.
2387
2388 2003-12-21  Ronald Bultje <rbultje@ronald.bitfreak.net>
2389                                                                                 
2390         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
2391         * moved CVS to freedesktop.org
2392