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