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