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