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