1 2004-07-20 Thomas Vander Stichele <thomas at apestaart dot org>
5 * gst/schedulers/gstoptimalscheduler.c: (group_num_elements),
6 (group_has_element), (element_get_reachables_func),
7 (group_migrate_connected):
8 fix for #147894 (opt scheduler decoupled elements mismanagement)
9 * testsuite/schedulers/Makefile.am:
10 testsuite app now passes
12 2004-07-19 Wim Taymans <wim@fluendo.com>
14 * testsuite/schedulers/147819.c: (handoff_identity1),
15 (handoff_identity2), (main):
16 * testsuite/schedulers/Makefile.am:
17 Added testcase for bug 147819
19 2004-07-19 Wim Taymans <wim@fluendo.com>
21 * testsuite/schedulers/147894.c: (queue_empty), (queue_filled),
22 (handoff_identity), (main):
23 * testsuite/schedulers/Makefile.am:
24 Added testcase for bug 147894
26 2004-07-16 Wim Taymans <wim@fluendo.com>
28 * testsuite/schedulers/142183-2.c: (handoff_identity), (main):
29 * testsuite/schedulers/142183.c: (handoff_identity), (main):
30 * testsuite/schedulers/Makefile.am:
31 Added testsuite for bug 142183 in its two incarnations. Refcount
32 is not increased for scheduled elements and threadsafe properties
33 mutexes are not properly unlocked.
35 2004-07-16 Wim Taymans <wim@fluendo.com>
37 * gst/schedulers/gstoptimalscheduler.c: (gst_opt_scheduler_init),
38 (create_chain), (destroy_chain), (create_group), (destroy_group),
39 (add_to_group), (merge_groups), (group_elements), (group_inc_link),
40 (group_dec_link), (gst_opt_scheduler_pad_link),
41 (group_inc_links_for_element), (group_migrate_connected):
42 Call group_inc_link with the proper src->sink ordering --
43 break this, and we break sort_chain. patch from wingo for bug
45 Partially revert patch 1.89. When adding a loop based element to
46 the scheduler, the links to other groups are automatically followed
47 and incremented. This should not happen because the bin will call
48 pad_link explicitly for those connection, resulting in them counted
49 twice. Results in assertion failure on pipeline cleanup.
51 2004-07-16 Wim Taymans <wim@fluendo.com>
53 * testsuite/schedulers/143777-2.c: (main):
54 * testsuite/schedulers/147713.c: (handoff_src), (handoff_sink),
56 * testsuite/schedulers/Makefile.am:
57 Added cleanup code to testcase 143777-2.
58 Added testcase to show bug 147713, does not really show the
59 deadlock as I can't figure out how to trigger it, but it does
60 demonstrate bad ordering in the scheduler.
62 2004-07-16 Thomas Vander Stichele <thomas at apestaart dot org>
64 * gst/gstvalue.c: (gst_value_deserialize_fraction):
65 change strndup to g_strndup. Fixes #147707
67 2004-07-16 Thomas Vander Stichele <thomas at apestaart dot org>
81 2004-07-16 Benjamin Otte <otte@gnome.org>
83 * gst/gstvalue.c: (gst_greatest_common_divisor):
84 use ints and return ints, fractions only use ints, too, so this
85 avoids accidently casting multiplications to unsigned
86 (gst_value_lcopy_fraction): it's ints, not uint32
87 (gst_value_set_fraction): disallow minint, multiplying and negation
89 (gst_value_fraction_multiply): fix to make large numbers work and get
90 rid of the assumption that the multiplication of two ints fits an
91 int64 - dunno if that's true for all systems
92 * testsuite/caps/Makefile.am:
93 * testsuite/caps/fraction-multiply-and-zero.c:
94 (check_multiplication), (check_equal), (zero_test), (main):
95 add tests for all the stuff above
96 * testsuite/caps/value_compare.c: (test1):
99 * testsuite/caps/.cvsignore:
100 * testsuite/debug/.cvsignore:
101 * testsuite/dlopen/.cvsignore:
102 * testsuite/states/.cvsignore:
105 2004-07-16 Zaheer Abbas Merali <zaheerabbas at merali dot org>
107 * docs/manual/bins-api.xml:
108 * docs/manual/factories.xml:
109 * docs/manual/helloworld.xml:
110 * docs/manual/links-api.xml:
111 fixes for out of date info, incorrect info and grammar
113 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot>
115 * docs/manual/pads.xml:
116 * docs/manual/pads-api.xml: grammar fix
118 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
120 * docs/manual/pads-api.xml: typo + grammar fix
122 2004-07-15 Thomas Vander Stichele <thomas at apestaart dot org>
124 * docs/gst/gstreamer-sections.txt:
126 * docs/gst/tmpl/gstelement.sgml:
127 * docs/gst/tmpl/gstpad.sgml:
128 * docs/gst/tmpl/gsttypes.sgml:
129 * docs/gst/tmpl/gstvalue.sgml:
131 * gst/gststructure.c: (gst_structure_set_valist),
132 (gst_structure_from_abbr), (gst_structure_to_abbr):
133 * gst/gstvalue.c: (gst_value_compare_double), (gst_type_is_fixed),
134 (gst_greatest_common_divisor), (gst_value_init_fraction),
135 (gst_value_copy_fraction), (gst_value_collect_fraction),
136 (gst_value_lcopy_fraction), (gst_value_set_fraction),
137 (gst_value_get_fraction_numerator),
138 (gst_value_get_fraction_denominator),
139 (gst_value_fraction_multiply), (gst_value_serialize_fraction),
140 (gst_value_deserialize_fraction),
141 (gst_value_transform_fraction_string),
142 (gst_value_transform_string_fraction),
143 (gst_value_compare_fraction), (_gst_value_initialize):
145 adding GstFraction GValue type, get/set, and multiply
146 * testsuite/caps/Makefile.am:
147 * testsuite/caps/fraction.c: (test), (main):
148 * testsuite/caps/string-conversions.c: (main):
149 * testsuite/caps/value_compare.c: (test1), (main):
150 add regression tests for GstFraction
152 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
154 * docs/manual/init-api.xml: Grammar fix
156 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
158 * docs/manual/states.xml: Fix inconsistent information
160 2004-07-15 Thomas Vander Stichele <thomas at apestaart dot org>
162 * gst/gstelement.c: (gst_element_set_state):
163 * gst/gstpad.c: (gst_pad_try_set_caps):
164 * gst/gststructure.c:
165 * gst/gstthread.c: (gst_thread_child_state_change):
166 * gst/gstvalue.c: (gst_value_compare_double):
168 * testsuite/parse/parse1.c: (main):
169 debugging additions and style cleanups
171 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
173 * docs/manual/states.xml: Grammar fix
175 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
177 * docs/manual/pads.xml: Grammar fix
179 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
181 * docs/manual/elements.xml: Fixed image reference
183 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
185 * docs/manual/goals.xml: Grammar fix
187 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali dot org>
189 * docs/manual/motivation.xml:
190 Bonobo is no longer "emerging" and added sentence regarding tcp plugins
192 2004-07-15 Zaheer Abbas Merali <zaheerabbas at merali.org>
194 * docs/manual/motivation.xml: Fix spelling
196 2004-07-15 Benjamin Otte <otte@gnome.org>
199 Don't GST_ERROR_OBJECT empty strings - Solaris doesn't like NULL
201 * gst/gstelement.c (gst_element_class_init):
202 GError's are boxed, not objects
203 * gst/gstmarshal.list:
204 update list for the fixed error signal
206 2004-07-14 Andy Wingo <wingo@pobox.com>
208 * gst/gsttag.c: Add a tag merge func for pointers. The header was
209 there all along, but the function wasn't. (guile-gstreamer's build
210 system uses the address of the function -- I wasn't actually
213 2004-07-14 Andy Wingo <wingo@pobox.com>
215 * gst/gstpad.c (gst_pad_try_set_caps): Naive link functions (such
216 as gst_pad_proxy_pad_link) just link to every other pad when they
217 are called. In the case where the graph has cycles, this will mean
218 that a call to try_set_caps will recurse. Allow this recursion
219 and return OK, while we wait for the first try_set_caps to give a
221 (gst_pad_link_call_link_functions): Since this function is the
222 only one to set the NEGOTIATING flag on a pad, if the flag is set
223 it means that the link functions have indirectly recursed. If this
224 happens, error out to avoid infinite recursion and an eventual
226 (gst_real_pad_class_init): Remove a crufty GtkObject comment.
227 (gst_pad_proxy_getcaps): Intersect the result with the template
228 caps to ensure that the return value is valid.
230 2004-07-14 Andy Wingo <wingo@pobox.com>
232 * gst/gstdata.c (gst_data_is_writable): s/>=/>/. If there is only
233 one refcount, the calling function is the owner of the buffer.
235 2004-07-14 Wim Taymans <wim@fluendo.com>
237 * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
238 (gst_opt_scheduler_pad_link), (group_migrate_connected):
239 Fix stupid warning when an element is to be migrated but
242 2004-07-14 Wim Taymans <wim@fluendo.com>
244 * gst/schedulers/gstoptimalscheduler.c: (group_dec_link),
245 (gst_opt_scheduler_pad_link), (group_migrate_connected):
246 Make sure that a single non-loop-based element does not
247 end up in a group. This fixes the testsuite again.
249 2004-07-14 Wim Taymans <wim@fluendo.com>
251 * gst/schedulers/gstoptimalscheduler.c: (create_group),
252 (add_to_group), (merge_groups), (schedule_group),
253 (gst_opt_scheduler_get_wrapper), (group_elements),
254 (group_dec_link), (gst_opt_scheduler_pad_link),
255 (group_migrate_connected), (gst_opt_scheduler_pad_unlink),
256 (gst_opt_scheduler_iterate):
257 move isolated groups to a new chain.
258 Emit a warning instead of segfaulting in some error cases.
259 Fix a bug where the link count between groups was not calculated
260 correctly. Fixes #144510.
262 2004-07-13 Steve Lhomme <steve.lhomme@free.fr>
263 * gst/elements/gstfilesrc.c:
264 Binary files support under Windows now OK
266 2004-07-13 Benjamin Otte <otte@gnome.org>
268 compatibility fixes for Solaris 8/gcc 2.95
270 include libintl libs in LDFLAGS
271 * gstvalue.c (gst_value_deserialize_buffer):
272 cast isxdigit stuff to int to silence compiler warning
274 2004-07-12 Benjamin Otte <otte@gnome.org>
277 get rid of GST_O_READONLY, GST_FILE_MODE_READ and
278 GST_FILE_MODE_WRITE, I don't want them in the exported headers. It
279 just causes support madness
280 * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
281 make it work without this
282 * gst/indexers/gstfileindex.c: (_file_index_id_save_entries),
283 (gst_file_index_commit):
284 glib IO channels don't want binary mode
285 * testsuite/bytestream/filepadsink.c: (main):
286 * testsuite/bytestream/test1.c: (read_param_file):
287 use "rb" instead of GST_FILE_MODE_READ, it works on POSIX systems
289 2004-07-12 Benjamin Otte <otte@gnome.org>
291 * gst/gstelement.c: (gst_element_class_init),
292 (gst_element_set_state), (gst_element_set_state_func):
293 virutalize gst_element_set_state, use set_state member in class
294 struct that was already added in 0.7 for this.
295 * gst/gstbin.c: (gst_bin_foreach), (set_kid_state_func),
296 (gst_bin_change_state):
297 make gst_bin_foreach works similar to other foreach functions, plug
298 memleaks in it. Make functions using it work with the new approach.
299 Document gst_bin_foreach, so it can be exported if we want to
300 * gst/gstbin.c: (gst_bin_class_init), (gst_bin_set_state):
301 use virtualized set_state to make set_state on bins set the state of
304 2004-07-12 Benjamin Otte <otte@gnome.org>
307 require valgrind >= 2.1 (fixes Gentoo bug 53967, see
308 http://bugs.gentoo.org/show_bug.cgi?id=53967)
309 * gst/gstpad.c: (gst_pad_alloc_buffer):
310 allow buffer_alloc functions to return NULL and allocate a normal
313 2004-07-12 Steve Lhomme <steve.lhomme@free.fr>
314 * gst/elements/gstfilesink.c:
315 * gst/elements/gstfilesrc.c:
316 * gst/indexers/gstfileindex.c:
318 * testsuite/bytestream/filepadsink.c:
319 * testsuite/bytestream/test1.c:
320 Handle binary files under Windows
322 2004-07-12 Steve Lhomme <steve.lhomme@free.fr>
323 * docs/manual/win32.xml:
325 * win32/gst-register.vcproj:
326 * win32/gstreamer.def:
327 Update to another gettext public build
329 2004-07-12 Steve Lhomme <steve.lhomme@free.fr>
331 Fix an impossible C syntax
333 Disable i18n under Windows for the moment
334 * win32/gst-register.vcproj:
335 Use this configuration
337 2004-07-12 Jan Schmidt <thaytan@mad.scientis.com>
338 * docs/manual/quotes.xml:
339 Keep the quotes file alive
340 * docs/random/ds/0.9-suggested-changes:
341 Add the suggestion of including a 'rowstride' as part of video
344 2004-07-12 Thomas Vander Stichele <thomas at apestaart dot org>
346 * gst/gstelement.c: (gst_element_set_state),
347 (gst_element_change_state):
348 d'oh. Set PENDING state correctly before forcing bin to change.
349 * gst/gststructure.c: (gst_structure_value_get_generic_type),
350 (gst_structure_parse_fixed_list):
351 * gst/schedulers/gstoptimalscheduler.c:
352 (gst_opt_scheduler_state_transition):
353 * testsuite/states/parent.c: (main):
354 remove comment now that it's fixed.
356 2004-07-11 Benjamin Otte <otte@gnome.org>
359 GST_SECOND shouldn't cause a conversion to unsigned.
360 * testsuite/clock/.cvsignore:
361 * testsuite/clock/Makefile.am:
362 * testsuite/clock/signedness.c: (main):
363 make sure it never will again
365 2004-07-11 Andy Wingo <wingo@pobox.com>
367 * gst/gstbin.c (gst_bin_add_func): If we're adding an element
368 whose state is higher than the bin state, raise the bin state to
369 ensure that bin state := highest child state.
371 2004-07-11 Andy Wingo <wingo@pobox.com>
373 * gst/gstbin.c (gst_bin_foreach): New static function. Calls a
374 procedure on the children of a bin. Assumes that the procedure can
375 change the set of children.
376 (set_kid_state_func): New static function.
377 (gst_bin_change_state): Use gst_bin_foreach to call
378 set_kid_state_func. Fixes a bug: if a child had a state-change
379 handler that removes it from the bin, there would be a segfault.
380 Hopefully it should also work in the case where the state-change
381 handler on one child adds or removes other children. In any case,
382 fixes should go to gst_bin_foreach.
384 2004-07-10 Thomas Vander Stichele <thomas at apestaart dot org>
386 * gst/gstelement.c: (gst_element_set_state):
387 compatibility fix for latest plugins release. Change loop back
390 2004-07-09 Wim Taymans <wim@fluendo.com>
392 * gst/gstbin.c: (gst_bin_remove), (gst_bin_dispose):
393 * gst/gstthread.c: (gst_thread_dispose), (gst_thread_catch),
394 (gst_thread_main_loop):
395 Since remove is virtual in GstBin we must not assume the
396 elements GList to have anothing useful.
397 Add some more logging to GstThread and be a bit more paranoid
398 when resetting the scheduler.
399 Set the state of the bin to NULL before removing the children.
401 2004-07-09 Zaheer Abbas Merali <zaheerabbas at merali dot org>
403 * testsuite/threads/Makefile.am:
404 * testsuite/threads/threadg.c:
405 added test to check if problem when removing all elements from a
406 GstThread before setting GstThread state to NULL
408 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
410 * docs/gst/tmpl/gstelement.sgml:
411 * docs/gst/tmpl/gsttypes.sgml:
412 * gst/gstbin.c: (gst_bin_change_state):
413 * gst/gstelement.c: (gst_element_set_state),
414 (gst_element_change_state):
415 rework so that for bins we try to set the state on all children
416 as well even if the bin is in the correct state already.
417 change while to do so at least one iteration is done.
418 For regular elements, we fall back to the previous behaviour for
419 now since we first need a new plugins release.
420 * testsuite/states/parent.c: (main):
424 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
426 * gst/gstqueue.c: (gst_queue_class_init), (gst_queue_finalize),
427 (gst_queue_chain), (gst_queue_get), (gst_queue_handle_src_event),
428 (gst_queue_release_locks), (gst_queue_change_state),
429 (gst_queue_set_property):
430 add proper lock debugging. Change dispose to finalize, since
431 we're freeing mutexes and other stuff which should happen only once.
433 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
435 * docs/gst/tmpl/gstelement.sgml:
436 * docs/gst/tmpl/gstplugin.sgml:
437 * docs/gst/tmpl/gsttypes.sgml:
438 * docs/pwg/building-state.xml:
439 * gst/elements/gstfakesrc.c: (gst_fakesrc_change_state):
440 * gst/gstelement.c: (gst_element_change_state):
441 * gst/gstthread.c: (gst_thread_change_state):
442 catch wrong state changes in element base class.
444 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
447 clean up layout a little.
449 2004-07-09 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
452 * testsuite/Makefile.am:
453 * testsuite/states/Makefile.am:
454 * testsuite/states/parent.c: (main):
455 re-enable states testsuite dir. Add test for state changes and
458 2004-07-09 Wim Taymans <wim@fluendo.com>
460 * gst/schedulers/gstoptimalscheduler.c:
461 (gst_opt_scheduler_pad_link), (group_elements_set_visited),
462 (element_get_reachables_func), (element_get_reachables),
463 (debug_element), (rechain_group), (group_migrate_connected),
464 (gst_opt_scheduler_pad_unlink):
465 Do not try to migrate decoupled elements to a new group since
466 they are not added to groups.
468 2004-07-08 Benjamin Otte <otte@gnome.org>
470 * gst/gstelement.c: (gst_element_error_func):
471 make reentrant (= allow removing elements in error handler)
473 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
475 * gst/gstpad.c: (gst_pad_event_default_dispatch),
476 (gst_pad_send_event), (gst_pad_call_chain_function):
477 events sent to elements below PAUSED cannot be handled, so
480 2004-07-08 Wim Taymans <wim@fluendo.com>
482 * gst/schedulers/gstoptimalscheduler.c:
483 (chain_recursively_migrate_group), (create_group),
484 (schedule_group), (gst_opt_scheduler_pad_link),
485 (group_elements_set_visited), (element_get_reachables_func),
486 (element_get_reachables), (group_can_reach_group), (debug_element),
487 (rechain_group), (group_migrate_connected),
488 (gst_opt_scheduler_pad_unlink):
489 * testsuite/schedulers/Makefile.am:
490 Implemented group splitting and rechaining.
491 Fixes 143777 and 143777-2 in the testsuite.
493 2004-07-08 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
495 * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
498 * gst/gstinfo.c: (gst_debug_log_default):
499 print time nicely. add thread pointer until someone figures out
500 a completely portable way of getting at thread id's.
501 * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_try),
502 (_invent_event), (gst_pad_pull), (gst_pad_event_default_dispatch),
503 (gst_pad_call_chain_function):
505 * gst/schedulers/gstoptimalscheduler.c:
506 (get_group_schedule_function), (loop_group_schedule_function),
507 (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
508 (pad_clear_queued), (gst_opt_scheduler_iterate):
509 rename BUFPEN and friends to DATAPEN since that's what they are.
511 2004-07-07 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
513 * gst/autoplug/gstspideridentity.c: (gst_spider_identity_chain):
516 cleanups and debugging
518 2004-07-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
521 * gst/gstvalue.c: (gst_value_compare_enum),
522 (gst_value_serialize_enum), (gst_value_deserialize_enum),
523 (gst_value_can_compare), (gst_value_compare):
524 * testsuite/Makefile.am:
525 * testsuite/enumcaps/Makefile.am:
526 * testsuite/enumcaps/enumcaps.c:
527 Fix enum serialization, deserialization, comparison in caps, add
528 a test to ensure that this continues working in the future.
530 2004-07-06 David Schleef <ds@schleef.org>
532 * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
535 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
537 * gst/gstplugin.c: (gst_plugin_check_file), (gst_plugin_load_file):
539 * gst/registries/gstxmlregistry.c:
540 (plugin_times_older_than_recurse), (plugin_times_older_than),
541 (gst_xml_registry_parse_padtemplate):
542 only rebuild registry when actual plugins have a newer time than
543 the registry. Fixes #145520
545 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
547 * docs/manual/manual.xml:
548 * docs/manual/win32.xml:
549 add chapter on win32 building. fixes #142422
551 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
553 patch by: Sebastien Cote <sc5 at hermes.usherb.ca>
555 * gst/autoplug/gstspider.c: (gst_spider_init),
556 (gst_spider_dispose):
557 fix spider memleaks. fixes #137863
559 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
561 patch by: Joe Marcus Clarke <marcus at freebsd dot org>
563 * gst/schedulers/gstoptimalscheduler.c:
564 (gst_opt_scheduler_pad_unlink):
565 fix SIGBUS error, fixes #145338
567 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
569 * gst/gstobject.c: (gst_object_replace):
570 * gst/gstscheduler.c: (gst_scheduler_get_clock):
571 * gst/gstsystemclock.c: (gst_system_clock_obtain):
572 clean up clock lifecycle. Fixes #109831
574 2004-07-06 Thomas Vander Stichele <thomas at apestaart dot org>
578 added Czech translation (Miloslav Trmac)
580 2004-07-04 David Schleef <ds@schleef.org>
583 * tools/gst-xmlinspect.1.in: Add man page. (bug #140219)
585 2004-07-04 David Schleef <ds@schleef.org>
587 * common/m4/gst-doc.m4: Check for docbook2html 0.6.10 (bug #139909)
589 2004-07-04 Thomas Vander Stichele <thomas at apestaart dot org>
591 * gst/gstbin.c: (gst_bin_restore_thyself):
592 chain to parent restore so the bins get restored correctly
595 2004-07-03 David Schleef <ds@schleef.org>
597 * gst/gstcaps.c: (gst_caps_save_thyself), (gst_caps_load_thyself):
598 Actually do something in these functions, like before the big
599 caps change. (bug #145137)
601 2004-07-03 Thomas Vander Stichele <thomas at apestaart dot org>
603 * gst/gstelement.c: (gst_element_get_compatible_pad_template),
604 (gst_element_get_compatible_pad_filtered):
605 * gst/gstthread.c: (gst_thread_main_loop):
608 2004-07-02 David Schleef <ds@schleef.org>
610 * gst/gstinfo.h: wrap #pragmas in #ifdefs for the correct compiler
616 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
618 * gst/gstpad.c: (gst_pad_check_schedulers),
619 (gst_pad_can_link_filtered), (gst_pad_link_filtered),
620 (gst_pad_link_prepare):
621 revert until testsuite is fixed
623 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
625 * testsuite/Makefile.am:
626 * testsuite/caps/filtercaps.c: (main):
627 * testsuite/clock/clock1.c: (main):
628 * testsuite/dynparams/dparamstest.c: (gst_dptest_chain), (main):
631 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
633 * testsuite/cleanup/cleanup1.c: (create_pipeline):
634 * testsuite/cleanup/cleanup2.c: (create_pipeline):
635 * testsuite/cleanup/cleanup4.c: (main):
638 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
640 * libs/gst/control/control.c:
641 * libs/gst/control/dparam.c:
642 * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_get_type):
643 * libs/gst/control/dparammanager.c:
644 * libs/gst/control/dparammanager.h:
645 * testsuite/dynparams/Makefile.am:
646 * testsuite/dynparams/dparamstest.c: (gst_dptest_base_init),
647 (gst_dptest_change_state), (gst_dptest_chain), (main):
648 fix testcase for dparams
649 add debugging category
651 2004-07-02 Thomas Vander Stichele <thomas at apestaart dot org>
656 2004-07-02 Benjamin Otte <otte@gnome.org>
660 * tests/mass_elements.c: (gst_get_current_time), (main):
661 add simple benchmark to test various speeds of fakesrc ! identity !
662 identity ! ... ! fakesink.
663 Usage: mass_elements [num_identities] [num_buffers]
664 If not specified they default to 1000.
666 2004-07-02 Benjamin Otte <otte@gnome.org>
668 * gst/gstpad.c: (gst_pad_check_schedulers),
669 (gst_pad_can_link_filtered), (gst_pad_link_filtered),
670 (gst_pad_link_prepare):
671 check that pads that get linked belong to the same manager. The old
672 code allowed linking elements before putting them into bins, so it
673 worked to link them and then put them in different threads, which
674 lead to weird behaviour.
675 Since this effectively disallows linking elements before putting
676 them in a bin, some applications might not work after this and error
677 out. If these applications are too critical, we might need to revert
678 that patch. Please test this before the next release...
680 2004-06-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
682 * gst/gstpad.c: (gst_pad_get_caps):
683 throw an error if the getcaps function does not return a subset of
685 * libs/gst/bytestream/filepad.c: (gst_file_pad_chain):
686 make disconts without position info an error in debugging
687 * tests/spidey_bench.c: (handoff), (main):
688 don't count first try when averaging
690 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
692 * gst/gstplugin.c: (gst_plugin_load_file):
693 figure out problem with dynamic test
695 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
697 * docs/gst/Makefile.am:
700 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
712 * tools/gst-register.c: (plugin_added_func), (main):
713 i18n-ize -register, fix plural
715 2004-06-26 Thomas Vander Stichele <thomas at apestaart dot org>
717 * gst/elements/gstidentity.c: (gst_identity_class_init),
718 (gst_identity_init), (gst_identity_chain),
719 (gst_identity_set_property), (gst_identity_get_property):
720 * gst/elements/gstidentity.h:
721 check for perfect stream
723 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
725 * gst/elements/gstidentity.c: (gst_identity_chain):
728 2004-06-25 Thomas Vander Stichele <thomas at apestaart dot org>
730 * docs/gst/Makefile.am:
731 * docs/gst/gstreamer-docs.sgml:
734 2004-06-24 David Schleef <ds@schleef.org>
736 * autogen.sh: Remove call to env, since the buildbot isn't
739 2004-06-24 Wim Taymans <wim@fluendo.com>
741 * gst/elements/Makefile.am:
742 * gst/elements/gstelements.c:
743 * gst/elements/gstmultifdsink.c: (gst_multifdsink_base_init),
744 (gst_multifdsink_class_init), (gst_multifdsink_init),
745 (gst_multifdsink_add), (gst_multifdsink_remove),
746 (gst_multifdsink_clear), (gst_multifdsink_chain),
747 (gst_multifdsink_set_property), (gst_multifdsink_get_property):
748 * gst/elements/gstmultifdsink.h:
749 Added an element that writes to multiple filedescriptors at once.
751 2004-06-24 Benjamin Otte <otte@gnome.org>
753 * gst/parse/grammar.y:
754 don't try to link elements before they have been added to bins
756 2004-06-24 Benjamin Otte <in7y118@public.uni-hamburg.de>
758 * libs/gst/bytestream/filepad.c: (gst_file_pad_available),
759 (gst_file_pad_get_length):
760 * libs/gst/bytestream/filepad.h:
763 2004-06-22 Zaheer Abbas Merali <zaheerabbas at merali.org>
765 * docs/gst/gstreamer-sections.txt:
766 remove from docs, the define that Benjamin removed from gstelement.h
768 2004-06-22 Benjamin Otte <otte@gnome.org>
771 remove define that referenced a nonexisting GstElement struct member
773 2004-06-20 Benjamin Otte <otte@gnome.org>
775 * gst/gstdata.c: (gst_data_is_writable):
776 whoops, return values were wrong, so writable data was marked as
777 non-writable and vice versa. (fixes #143953, spotted by Francis
779 Shows how rarely we need to copy data ;)
781 2004-06-20 Benjamin Otte <otte@gnome.org>
783 * testsuite/schedulers/.cvsignore:
784 * testsuite/schedulers/Makefile.am:
785 * testsuite/schedulers/143777-2.c: (main):
786 add test for opt breakage in bug #143777
788 2004-06-20 Benjamin Otte <otte@gnome.org>
790 * gst/gstpad.c: (gst_pad_call_chain_function):
791 check for if we were unlinked while inside the chainfunction (fixes
792 entrygthread having issues with #143777)
793 * testsuite/schedulers/143777.c: (main):
794 * testsuite/schedulers/Makefile.am:
795 add a test for that fix
797 2004-06-20 Benjamin Otte <otte@gnome.org>
799 * gst/gstvalue.c: (gst_value_set_int_range):
800 test that start is smaller then end
801 * libs/gst/bytestream/Makefile.am:
802 * libs/gst/bytestream/filepad.c:
803 * libs/gst/bytestream/filepad.h:
804 add GstFilePad - a pad that behaves like a FILE*
805 * testsuite/bytestream/.cvsignore:
806 * testsuite/bytestream/Makefile.am:
807 * testsuite/bytestream/filepadsink.c:
808 test for the GstFilePad
810 2004-06-18 Thomas Vander Stichele <thomas at apestaart dot org>
812 * gst/elements/gstidentity.c: (gst_identity_class_init),
813 (gst_identity_init), (gst_identity_set_clock),
814 (gst_identity_chain), (gst_identity_set_property),
815 (gst_identity_get_property):
816 * gst/elements/gstidentity.h:
817 * gst/gstclock.c: (gst_clock_id_wait):
818 add a "sync" property to sync to the clock
820 2004-06-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
822 * gst/gstelementfactory.c: (gst_element_factory_create):
823 make the freakin "elementfactory bla has no type" message more
824 useful. So we actually can do something when someone shows up
825 complaining about it.
827 2004-06-15 Johan Dahlin <johan@gnome.org>
829 * tools/gst-inspect.c (main): Fallback to plugin if no element is
830 found. This matches the old behavior better. Thanks to Thomas for
833 2004-06-14 David Schleef <ds@schleef.org>
835 * gst/gstcpu.c: (gst_cpuid_i386): Fix problem when using
836 -fomit-frame-pointer. Appears to generate correct code in
839 2004-06-14 Johan Dahlin <johan@gnome.org>
841 * tools/gst-inspect.c (main): Add two new command line options: -a
842 to print all elements and -n to print the name on each line. Also
843 fix some error reporting.
844 (main): Simplify, remove -n and always print names if -a is specified
846 2004-06-13 Steve Lhomme <steve.lhomme@free.fr>
849 * win32/GSTreamer.vcproj:
851 * gst/gstconfig.h.in:
858 * docs/gst/gstreamer-sections.txt:
859 * docs/gst/tmpl/gstconfig.sgml:
860 rename GSTREAMER_EXPORT(S) to GST_EXPORT(S)
862 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
863 * docs/gst/gstreamer-sections.txt:
864 * docs/gst/tmpl/gstconfig.sgml:
865 Add the GSTREAMER_EXPORT macro to the docs
867 2004-06-13 Jan Schmidt <thaytan@mad.scientist.com>
869 * tools/gst-compprep.c: (handle_xmlerror), (main):
870 Add a check for the version that introduced SetStructuredError to fix
873 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
877 prepare to compile the testsuite with MSVC
879 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
881 * docs/manual/win32.xml:
882 attempt to transform the Win32 README into an XML doc
884 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
893 * tools/gst-register.c:
894 * win32/gstreamer.def:
895 extern symbols are now exported for the Windows DLL
897 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
900 fix a problem to enable/disable DEBUG under MSVC
902 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
905 enable more debug code in DEBUG build
907 2004-06-12 Steve Lhomme <steve.lhomme@free.fr>
910 * gst/gst-i18n-app.h:
911 enable NLS under Windows
913 2004-06-12 Jan Schmidt <thaytan@mad.scientist.com>
914 * tools/gst-compprep.c: (handle_xmlerror), (main):
915 Make an error that baffled me a bit clearer
917 2004-06-12 Thomas Vander Stichele <thomas at apestaart dot org>
920 don't use g_queue_get_length () because it's 2.4, use ->length
922 2004-06-11 Steve Lhomme <steve.lhomme@free.fr>
924 reviewed by Benjamin Otte <in7y118@public.uni-hamburg.de>
926 * tools/gst-inspect.c: (print_signal_info):
927 don't free random data twice. (fixes #144185)
929 2004-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
933 fix removing from the wrong queue on event timeout
934 fix disposing of the event queue by casting correctly
935 add mutexes for handling the event queue
936 someone was sleeping when fixing queue last time around :)
938 2004-06-10 Johan Dahlin <johan@gnome.org>
940 * gst/gst.c (gst_init_check_with_popt_table): Do not fail on
941 errors, like gtk. It makes it more useful in bindings. Fixes #141692.
943 2004-06-09 Thomas Vander Stichele <thomas at apestaart dot org>
946 * libs/gst/dataprotocol/dataprotocol-test.c: (buffer_test):
947 * libs/gst/dataprotocol/dataprotocol.c:
948 (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
949 (gst_dp_buffer_from_header):
950 * libs/gst/dataprotocol/dataprotocol.h:
951 * libs/gst/dataprotocol/dp-private.h:
952 rev version to 0.1, add buffer flags and copy them
954 2004-06-09 Johan Dahlin <johan@gnome.org>
956 * gst/gstbuffer.c (gst_buffer_default_copy): Don't forget to merge
957 the flags from the buffer we're copying.
959 2004-06-09 Wim Taymans <wim@fluendo.com>
961 * gst/elements/gstfakesink.c: (gst_fakesink_chain):
962 * gst/elements/gstidentity.c: (gst_identity_init),
963 (gst_identity_chain):
964 Print more buffer info in fakesink.
965 Make identity output similar to fakesink.
967 2004-06-07 Daniel Gazard <dany42@free.fr>
969 reviewed by Benjamin Otte <otte@gnome.org>
972 fix cross compiling not working. (fixes #143741)
974 2004-06-07 Benjamin Otte <otte@gnome.org>
976 * gst/gstelement.c: (gst_element_set_time_delay):
979 put brackets around macro arguments of GST_TIME_ARGS, add note to
980 move it to correct header in 0.9
982 2004-06-07 Benjamin Otte <otte@gnome.org>
984 * gst/indexers/gstfileindex.c: (gst_file_index_get_writer_id),
985 (gst_file_index_load), (_file_index_id_save_entries),
986 (gst_file_index_commit), (gst_file_index_add_association),
987 (gst_file_index_add_entry), (gst_file_index_get_assoc_entry),
988 (gst_file_index_plugin_init):
989 make debugging use a default category
991 2004-06-06 David Moore <dcm@acm.org>
993 reviewed by Benjamin Otte <otte@gnome.org>
995 * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
996 (gst_fdsrc_change_state):
997 reset offset counter when going READY => PAUSED. (fixes #142903)
999 2004-06-06 ed@catmur.co.uk
1001 reviewed by Benjamin Otte <otte@gnome.org>
1003 * gst/registries/gstxmlregistry.c:
1004 (gst_xml_registry_rebuild_recurse):
1005 don't rely on g_dir_open to figure out if a file is a directory, use
1006 explicit G_TEST_IS_DIR. Reiserfs4 allows opening files as
1007 directories. (fixes #142850)
1009 2004-06-06 Benjamin Otte <otte@gnome.org>
1011 * gst/gstqueue.c: (gst_queue_dispose), (gst_queue_change_state):
1012 fix memory leaks (fixes #142795). Initial patch by Sebastien Cote
1013 * libs/gst/bytestream/adapter.c:
1014 * libs/gst/bytestream/adapter.h:
1015 fix copyright in header and typo in debugging category name
1017 2004-06-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
1022 === release 0.8.3 ===
1024 2004-06-05 Thomas Vander Stichele <thomas at apestaart dot org>
1027 update libtool versioning
1029 * docs/gst/tmpl/gstelement.sgml:
1030 * docs/gst/tmpl/gsttypes.sgml:
1031 * gst/gstinfo.c: (_gst_debug_init):
1032 put back GST_CAT_DATAFLOW to fix API breakage
1034 2004-06-04 David Schleef <ds@schleef.org>
1036 * autogen.sh: Add a temporary 'env' to test buildbot problems.
1038 2004-06-04 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
1043 === release 0.8.2 ===
1045 2004-06-03 Thomas Vander Stichele <thomas at apestaart dot org>
1047 * gst/gst.c: (parse_debug_list), (gst_init_check_with_popt_table):
1048 check GST_DEBUG environment variable which is parsed the same way
1051 2004-05-28 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1053 * gst/elements : gstaggregator.c gstfakesink.c gstfakesrc.c
1054 gstmd5sink.c gstshaper.c gsttee.c
1055 gsttypefindelement.c
1056 * gst/schedulers : gstbasicscheduler.c gstoptimalscheduler.c
1058 - removing trailing commas at end of enums
1059 it is correct C99 code but C90 compilers would complain
1061 ('should' fix #143290, at least partially)
1063 2004-05-27 Wim Taymans <wim@fluendo.com>
1065 * gst/schedulers/gstoptimalscheduler.c: (remove_from_chain),
1066 (chain_group_set_enabled), (create_group), (add_to_group),
1067 (merge_groups), (setup_group_scheduler), (group_elements),
1068 (gst_opt_scheduler_iterate), (gst_opt_scheduler_show):
1069 Don't try to follow the pad connections with other groups
1070 when a loop based element is added to the scheduler because
1071 the bin will inform the scheduler about the pad links a little
1074 2004-05-27 Wim Taymans <wim@fluendo.com>
1076 * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
1077 (remove_from_chain), (chain_group_set_enabled),
1078 (setup_group_scheduler), (group_element_set_enabled),
1079 (gst_opt_scheduler_state_transition), (gst_opt_scheduler_iterate),
1080 (gst_opt_scheduler_show):
1081 Elements without a group can do a state change as well, just wait
1082 with the setup of the scheduling function when it is added to a
1085 2004-05-27 Wim Taymans <wim@fluendo.com>
1087 * gst/schedulers/gstoptimalscheduler.c: (add_to_chain),
1088 (remove_from_chain), (chain_group_set_enabled), (add_to_group),
1089 (merge_groups), (setup_group_scheduler),
1090 (group_inc_links_for_element), (gst_opt_scheduler_iterate),
1091 (gst_opt_scheduler_show):
1092 Fixes to maintain internal consistency of the scheduler data
1094 - adding an enabled group to a chain should increment the
1095 number of enabled elements in that chain.
1096 - removing an enabled group from a chain could disable the
1098 - removing a disabled group from a chain could enable the
1100 - add g_assert when internal inconsistency is detected.
1101 - adding an element to a group could increase the number of
1102 links this group has with other groups.
1103 - merging two groups also merges the chains.
1104 - also show group links in the _show method.
1107 2004-05-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
1109 * gst/gstcaps.c: (gst_caps_structure_simplify):
1110 don't print error messages when there is no error
1111 * gst/gstvalue.c: (gst_value_compare_int_range):
1112 compare the second value, too
1113 * testsuite/caps/Makefile.am:
1114 * testsuite/caps/random.c: (assert_on_error), (main):
1115 add tests to make sure the two things above are checked for
1117 2004-05-24 Thomas Vander Stichele <thomas at apestaart dot org>
1120 * libs/gst/dataprotocol/Makefile.am:
1121 * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_packet_from_caps):
1122 * libs/gst/dataprotocol/dataprotocol.h:
1123 wrap header in GST_ENABLE_NEW. make code use it
1125 2004-05-23 Johan Dahlin <johan@gnome.org>
1127 * tools/gst-inspect.c (main): Cleanup most parts of it, don't be
1128 so verbose and print GstElement signal names all the time.
1130 2004-05-22 David Schleef <ds@schleef.org>
1132 * gst/registries/gstxmlregistry.c:
1133 (gst_xml_registry_parse_padtemplate): Fix warning on OS X.
1136 2004-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
1139 scrub cflags for glib2 so gcc doesn't complain when glib is in
1142 2004-05-21 Johan Dahlin <johan@gnome.org>
1144 * gst/gstcpu.c (gst_cpuid_i386): Protect some gcc asm stuff with
1145 __GNUC__, patch from Brian Cameron, fixes bug #142804
1147 2004-05-20 David Schleef <ds@schleef.org>
1149 * gst/gstindex.c: (gst_index_compare_func): Fix overflows in
1150 comparison code. (bug #142819)
1152 2004-05-20 Wim Taymans <wim@fluendo.com>
1154 * gst/gstbuffer.c: (gst_buffer_default_copy):
1156 Added Comment to a flag.
1157 copy relevant flags in _buffer_copy.
1159 2004-05-20 Thomas Vander Stichele <thomas at apestaart dot org>
1161 reviewed by: Wim Taymans <wim at fluendo dot com>
1164 add GST_BUFFER_IN_CAPS buffer flag
1165 * gst/gststructure.c: (gst_structure_value_get_generic_type),
1166 (gst_structure_parse_any_list), (gst_structure_parse_list),
1167 (gst_structure_parse_fixed_list), (gst_structure_parse_value):
1168 * gst/gstvalue.c: (gst_value_serialize_any_list),
1169 (gst_value_transform_any_list_string),
1170 (gst_value_list_prepend_value), (gst_value_list_append_value),
1171 (gst_value_list_get_size), (gst_value_list_get_value),
1172 (gst_value_transform_list_string),
1173 (gst_value_transform_fixed_list_string),
1174 (gst_value_serialize_list), (gst_value_serialize_fixed_list),
1175 (gst_value_deserialize_fixed_list), (gst_type_is_fixed),
1176 (_gst_value_initialize):
1178 add a GST_TYPE_FIXED_LIST which is fixed by definition and uses
1180 * testsuite/caps/string-conversions.c: (main):
1181 add regression tests for < >
1183 2004-05-20 Johan Dahlin <johan@gnome.org>
1185 * docs/gst/Makefile.am (all-local): Re-add
1187 2004-05-20 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
1189 * docs/gst/Makefile.am:
1190 * docs/gst/gstreamer-docs.sgml:
1191 * docs/libs/Makefile.am:
1192 * docs/libs/gstreamer-libs-docs.sgml:
1193 fix distcheck issues
1195 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
1197 * libs/gst/dataprotocol/Makefile.am:
1200 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
1202 * libs/gst/dataprotocol/Makefile.am:
1203 * libs/gst/dataprotocol/dataprotocol.c:
1204 (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
1205 (gst_dp_packet_from_event), (gst_dp_event_from_packet):
1206 * libs/gst/dataprotocol/dp-private.h:
1207 use GST macros to read/write fixed length ints
1208 add some more asserts
1210 2004-05-19 Thomas Vander Stichele <thomas at apestaart dot org>
1212 * docs/libs/gstreamer-libs-docs.sgml:
1213 * docs/libs/gstreamer-libs-sections.txt:
1214 remove idct and putbits
1216 * docs/libs/tmpl/gstdataprotocol.sgml:
1217 * libs/gst/Makefile.am:
1218 * libs/gst/dataprotocol/Makefile.am:
1219 * libs/gst/dataprotocol/dataprotocol-test.c: (conversion_test),
1220 (buffer_test), (caps_test), (event_test), (main):
1221 * libs/gst/dataprotocol/dataprotocol.c: (gst_dp_crc),
1222 (gst_dp_dump_byte_array), (gst_dp_init),
1223 (gst_dp_header_payload_length), (gst_dp_header_payload_type),
1224 (gst_dp_header_from_buffer), (gst_dp_packet_from_caps),
1225 (gst_dp_packet_from_event), (gst_dp_buffer_from_header),
1226 (gst_dp_caps_from_packet), (gst_dp_event_from_packet),
1227 (gst_dp_validate_header), (gst_dp_validate_payload),
1228 (gst_dp_validate_packet), (plugin_init):
1229 * libs/gst/dataprotocol/dataprotocol.h:
1230 * libs/gst/dataprotocol/dp-private.h:
1233 2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
1235 * gst/gstvalue.c: (gst_value_deserialize_int_helper):
1236 fix int variable deserialization and add a helper so we can actually
1239 2004-05-18 David Schleef <ds@schleef.org>
1241 * testsuite/debug/commandline.c: (main): Call ./commandline, not
1242 argv[0]. Calling yourself is probably not the best way to
1243 construct a test like this, btw.
1245 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
1247 * gst/gstbin.c: (gst_bin_iterate_func), (gst_bin_iterate):
1248 don't claim to be more intelligent than a scheduler when the
1249 scheduler claims the pipeline is stopped
1250 * gst/schedulers/entryscheduler.c: (safe_cothread_switch),
1251 (safe_cothread_destroy),
1252 (gst_entry_scheduler_remove_all_cothreads),
1253 (gst_entry_scheduler_reset), (_remove_cothread),
1254 (gst_entry_scheduler_state_transition):
1255 hold off cothread destruction if we're not in main cothread
1257 * testsuite/Makefile.am:
1259 * testsuite/schedulers/.cvsignore:
1260 * testsuite/schedulers/Makefile.am:
1262 * testsuite/schedulers/relink.c: (cb_handoff), (main):
1263 check relinking and adding/removing elements from a running pipeline
1264 * testsuite/schedulers/unlink.c: (cb_handoff), (main):
1265 check unlinking in a running pipeline
1266 * testsuite/schedulers/unref.c: (cb_handoff), (main):
1267 check unreffing a running pipeline
1268 * testsuite/schedulers/useless_iteration.c: (main):
1269 check iterating a pipeline that contains running threads works
1271 2004-05-18 David Schleef <ds@schleef.org>
1273 * docs/gst/Makefile.am: Add all-local target for when HAVE_GTK_DOC
1276 2004-05-18 Wim Taymans <wim@fluendo.com>
1278 * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
1279 (setup_group_scheduler), (gst_opt_scheduler_pad_link):
1280 Fixed an error introduced with patch for 1.63. When setting
1281 a get based element as the entry point in a group, make sure
1282 to mark the group as GET based.
1284 2004-05-18 Wim Taymans <wim@fluendo.com>
1286 * gst/schedulers/gstoptimalscheduler.c: (create_group),
1287 (setup_group_scheduler), (loop_group_schedule_function),
1288 (gst_opt_scheduler_pad_link):
1289 Added some more debug info and fixed a bug where the group
1290 type was set to LOOP but it was in fact unknown.
1292 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
1294 * gst/schedulers/entryscheduler.c: (gst_entry_scheduler_reset):
1295 make resetting scheduler work twice in a row
1297 2004-05-18 Benjamin Otte <in7y118@public.uni-hamburg.de>
1299 * gst/gstvalue.c: (gst_strtoll), (CREATE_SERIALIZATION),
1300 (CREATE_USERIALIZATION), (_gst_value_initialize),
1301 (gst_value_compare_float), (gst_value_serialize_float),
1302 (gst_value_deserialize_float), (gst_value_compare_enum),
1303 (gst_value_serialize_enum), (gst_value_deserialize_enum):
1304 add serialization and comparison functions for long, int64, enum and
1306 * gst/gstvalue.c: (gst_value_serialize), (gst_value_deserialize):
1307 use best serialization function in type hierarchy instead of only a
1308 matching one. This is required for enums to work.
1309 * gst/parse/grammar.y:
1310 use gst_caps_deserialize
1311 * testsuite/parse/Makefile.am:
1313 * testsuite/parse/parse1.c: (main):
1314 remove aggregator check, aggregator is broken, this test works now
1315 but fails because of bug #138012
1316 * testsuite/parse/parse2.c: (main):
1317 s/xvideosink/xvimagesink - this test looks a lot like we should
1320 2004-05-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
1322 * gst/gstelement.c: (gst_element_class_init):
1323 whoops, store the signal id correctly
1324 * gst/schedulers/gstbasicscheduler.c:
1325 (gst_basic_scheduler_chain_wrapper):
1326 detect infinfinfinfinfinf^Cinite loops in chain wrapper when the
1327 chain function isn't linked
1329 2004-05-13 Jan Schmidt <thaytan@mad.scientist.com>
1331 Add $GST_PKG_CFLAGS back into GST_INT_CFLAGS so I have large file
1332 support until we decide where the flags should be used
1333 * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_query):
1334 Use GST_FORMAT_BYTES when GST_FORMAT_DEFAULT is passed
1335 * gst/gstpad.c: (gst_pad_link_call_link_functions):
1336 Output refused caps in the debug info
1338 2004-05-13 Thomas Vander Stichele <thomas at apestaart dot org>
1340 * gst/elements/gstidentity.c: (gst_identity_chain):
1342 * gst/gstinfo.c: (gst_debug_log_default):
1345 2004-05-13 Benjamin Otte <otte@gnome.org>
1347 * gst/gstpipeline.c: (gst_pipeline_dispose),
1348 (gst_pipeline_change_state):
1349 call gst_scheduler_reset on dispose (fixes #141416)
1351 2004-05-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
1353 * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
1354 compute mapsize correctly
1355 * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap):
1356 use correct datatypes when calling a varargs function
1357 * gst/elements/gsttypefindelement.c: (stop_typefinding):
1358 push a DISCONT event as first thing
1359 * gst/gst_private.h:
1360 * gst/gstinfo.c: (_gst_debug_init):
1361 remove GST_DATAFLOW debugging category
1362 * gst/gstbin.c: (gst_bin_iterate):
1363 use GST_SCHEDULING category
1364 * gst/gstpad.c: (gst_pad_get_type), (_invent_event),
1365 (gst_pad_push), (gst_pad_pull), (gst_pad_call_chain_function),
1366 (gst_pad_call_get_function):
1367 add GST_DATAFLOW to easily track flow of buffers or events.
1368 * gst/gstqueue.c: (gst_queue_get_type),
1369 (gst_queue_handle_pending_events), (gst_queue_chain),
1370 (gst_queue_get), (gst_queue_handle_src_event):
1371 use own static debugging category GST_DATAFLOW for dataflow,
1372 use DEBUG category for showing which path events go, use LOG
1373 category for buffers.
1375 2004-05-10 David Schleef <ds@schleef.org>
1377 * docs/gst/gstreamer-sections.txt: Add gst_element_no_more_pads.
1379 2004-05-10 David Schleef <ds@schleef.org>
1381 * docs/gst/Makefile.am: Dear gtk-doc, please print out the unused
1382 symbols, because otherwise we don't know what they are. Thanks,
1384 * gst/registries/gstxmlregistry.c: (make_dir): Remove a spurious ;
1386 2004-05-10 David Schleef <ds@schleef.org>
1389 * win32/Makefile: When using make clean the MS Visual Studio makefiles
1391 * win32/Makefile.inspect:
1392 * win32/Makefile.launch:
1393 * win32/Makefile.register:
1395 2004-05-10 David Schleef <ds@schleef.org>
1397 * gst/gstinfo.h: Add missing inline function.
1398 * gst/gsttrace.c: add include
1399 * gst/parse/grammar.y: remove unused code
1400 * gst/registries/gstxmlregistry.c: (make_dir): make mkdir call
1402 * tools/gst-register.c: wrap unistd.h
1404 More additions/fixes from Steve for the MSVC build.
1405 * win32/GStreamer.vcproj:
1407 * win32/Makefile.inspect:
1408 * win32/Makefile.launch:
1409 * win32/Makefile.register:
1411 * win32/gst-inspect.vcproj:
1412 * win32/gst-launch.vcproj:
1413 * win32/gst-register.vcproj:
1414 * win32/gstbytestream.def:
1415 * win32/gstbytestream.vcproj:
1416 * win32/gstconfig.h:
1417 * win32/gstelements.def:
1418 * win32/gstelements.vcproj:
1419 * win32/gstenumtypes.c:
1420 * win32/gstenumtypes.h:
1421 * win32/gstoptimalscheduler.def:
1422 * win32/gstoptimalscheduler.vcproj:
1423 * win32/gstreamer.def:
1424 * win32/gstspider.def:
1425 * win32/gstspider.vcproj:
1426 * win32/gstversion.h:
1429 2004-05-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
1431 * gst/gstelement.c: (gst_element_class_init),
1432 (gst_element_no_more_pads):
1434 add gst_element_no_more_pads and the "no-more-pads" signal
1436 2004-05-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
1438 * gst/gstregistry.c: (gst_registry_add_plugin):
1439 refuse to add plugins when a plugin with same name is already
1440 registered. Fixes a bunch of "How to remove plugins?" issues.
1441 May lead to other problems though, let's test
1443 2004-05-10 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1445 * testsuite/caps/caps_strings : audio/ac3 => audio/x-ac3
1446 * docs/manual/pads-api.xml : audio/wav => audio/x-wav
1447 * docs/random/uraeus/gstreamer_and_midi.txt : audio/wav => audio/x-wav
1449 2004-05-09 Thomas Vander Stichele <thomas at apestaart dot org>
1451 * tests/Makefile.am: fix am16 issue
1453 2004-05-09 Benjamin Otte <otte@gnome.org>
1455 * libs/gst/bytestream/Makefile.am:
1456 we should indeed add .c files to makefiles or they won't be built
1459 2004-05-08 Benjamin Otte <otte@gnome.org>
1461 * gst/gstpad.c: (gst_pad_proxy_fixate):
1462 really reduce the set of caps
1464 2004-05-08 Benjamin Otte <otte@gnome.org>
1466 * tests/Makefile.am:
1467 * tests/spidey_bench.c: (handoff), (main):
1468 add benchmark to test how long spider needs to create a pipeline
1470 2004-05-08 Benjamin Otte <otte@gnome.org>
1472 * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_unnegotiate):
1473 mark links as unengaged when unnegotiating instead of deactivating.
1474 This way pads aren't marked as unengaged when going PLAYING=>PAUSED
1476 2004-05-08 Benjamin Otte <otte@gnome.org>
1478 * docs/manual/helloworld.xml:
1479 s/audiosink/osssink (patch by Patrick Guimond)
1481 2004-05-07 David Schleef <ds@schleef.org>
1483 * configure.ac: Make sure GST_INT_CFLAGS is not clobbered,
1484 since it contains important stuff.
1486 2004-05-07 David Schleef <ds@schleef.org>
1488 * testsuite/caps/caps.c: (test3), (main): A check for appending
1491 2004-05-07 David Schleef <ds@schleef.org>
1493 * common/m4/as-compiler-flag.m4: Properly quote arguments,
1494 which may contain commas. Fixes detection of -Wa,-mregnames
1496 2004-05-06 David Schleef <ds@schleef.org>
1498 Changes to handle compilers that don't have variadic macro
1499 support. In particular, glib headers define some inlines
1500 that need G_LOG_DOMAIN defined. Additional fixes for MSVC
1504 * gst/elements/gstfdsink.c:
1505 * gst/elements/gstfdsrc.c:
1506 * gst/elements/gstfilesink.c:
1507 * gst/elements/gstfilesrc.c:
1508 * gst/gst_private.h:
1510 * gst/gstcaps.c: (gst_caps_append):
1511 * gst/gstcpu.c: (gst_cpuid_i386):
1518 * gst/gstregistry.c:
1519 * gst/gststructure.c:
1520 * gst/gsttaginterface.c:
1521 * gst/gsttrace.c: (gst_trace_new):
1522 * gst/gsttrashstack.c:
1525 * gst/parse/grammar.y:
1526 * gst/parse/parse.l:
1527 * tools/gst-inspect.c: (main):
1528 * tools/gst-launch.c: (main):
1529 * tools/gst-xmlinspect.c: (PUT_STRING):
1531 2004-05-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
1533 * gst/elements/gstfilesrc.c: (gst_filesrc_get),
1534 (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
1535 * gst/elements/gstfilesrc.h:
1536 send NEW_MEDIA events correctly
1537 * gst/elements/gsttypefindelement.c: (start_typefinding),
1538 (gst_type_find_element_handle_event):
1539 restart typefinding when we get a NEW_MEDIA event
1540 * gst/gstbin.c: (gst_bin_remove_func), (gst_bin_change_state),
1542 don't die when someone removes elements in callbacks
1543 * gst/gstelement.c: (gst_element_change_state):
1545 * gst/gstpad.c: (gst_pad_pull), (gst_pad_call_chain_function):
1546 we need a NEW_MEDIA event to engage a link
1547 * gst/gsttrace.c: (gst_trace_new), (gst_alloc_trace_set_flags_all):
1548 don't g_print debugging stuff
1549 * testsuite/caps/simplify.c: (check_caps):
1551 2004-05-04 Benjamin Otte <otte@gnome.org>
1553 * gst/parse/grammar.y:
1554 use GST_ERROR instead of g_warning, and always throw a GST_ERROR
1556 2004-05-04 Benjamin Otte <otte@gnome.org>
1558 * testsuite/caps/renegotiate.c: (main):
1559 improve output in error case
1561 2004-05-04 Benjamin Otte <otte@gnome.org>
1563 * gst/parse/grammar.y:
1564 fix assert to not trigger when there's no error argument
1565 * gst/parse/parse.l:
1566 fix definition of caps to allow more than two structures
1567 * testsuite/caps/Makefile.am:
1568 * testsuite/caps/renegotiate.c: (main):
1569 it's sinesrc and works in that case
1571 2004-05-04 Wim Taymans <wim@fluendo.com>
1573 * gst/schedulers/gstoptimalscheduler.c: (remove_from_group),
1574 (group_dec_link), (gst_opt_scheduler_pad_unlink):
1575 when removing an element from a group, we always need to
1576 decrement the link count that this group had with other
1577 groups through the element.
1578 added an extra assert to catch inconsistencies when decrementing
1581 2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
1584 * docs/gst/Makefile.am:
1585 * docs/gst/gstreamer-sections.txt:
1586 * docs/gst/tmpl/gstcompat.sgml:
1587 * examples/appreader/Makefile.am:
1588 * examples/cutter/Makefile.am:
1589 * examples/events/Makefile.am:
1590 * examples/helloworld/Makefile.am:
1591 * examples/helloworld2/Makefile.am:
1592 * examples/launch/Makefile.am:
1593 * examples/manual/Makefile.am:
1594 * examples/mixer/Makefile.am:
1595 * examples/pingpong/Makefile.am:
1596 * examples/plugins/Makefile.am:
1597 * examples/queue/Makefile.am:
1598 * examples/queue2/Makefile.am:
1599 * examples/queue3/Makefile.am:
1600 * examples/queue4/Makefile.am:
1601 * examples/retag/Makefile.am:
1602 * examples/thread/Makefile.am:
1603 * examples/typefind/Makefile.am:
1604 * examples/xml/Makefile.am:
1606 * gst/autoplug/Makefile.am:
1607 * gst/elements/Makefile.am:
1609 * gst/indexers/Makefile.am:
1610 * gst/parse/Makefile.am:
1611 * gst/registries/Makefile.am:
1612 * gst/schedulers/Makefile.am:
1613 * libs/gst/bytestream/Makefile.am:
1614 * libs/gst/control/Makefile.am:
1615 * libs/gst/getbits/Makefile.am:
1625 * tests/Makefile.am:
1626 * tests/bufspeed/Makefile.am:
1627 * tests/instantiate/Makefile.am:
1628 * tests/memchunk/Makefile.am:
1629 * tests/muxing/Makefile.am:
1630 * tests/negotiation/Makefile.am:
1631 * tests/probes/Makefile.am:
1632 * tests/sched/Makefile.am:
1633 * tests/seeking/Makefile.am:
1634 * tests/threadstate/Makefile.am:
1635 * testsuite/caps/Makefile.am:
1636 * testsuite/cleanup/Makefile.am:
1637 * testsuite/dlopen/Makefile.am:
1638 * testsuite/dynparams/Makefile.am:
1639 * testsuite/plugin/Makefile.am:
1640 * testsuite/states/Makefile.am:
1641 * tools/Makefile.am:
1642 reorganize compile/link flags to be consistent
1643 put gst_info in gstcompat.h and actually use GST_DISABLE_DEPRECATED
1645 2004-05-04 David Schleef <ds@schleef.org>
1647 The "once more, with feeling" check-in.
1648 * testsuite/caps/Makefile.am: dist caps_strings
1649 * testsuite/caps/renegotiate.c: (main): This test triggers a
1650 segfault in the core. Marking as failing.
1652 2004-05-03 David Schleef <ds@schleef.org>
1654 * testsuite/caps/deserialize.c: (main): Fix problems noticed
1656 * testsuite/caps/renegotiate.c: (main): Same.
1658 2004-05-03 David Schleef <ds@schleef.org>
1660 * testsuite/caps/renegotiate.c: (my_fixate), (main): Another test.
1662 2004-05-03 David Schleef <ds@schleef.org>
1664 * testsuite/caps/deserialize.c: (main): Use the srcdir environment
1665 variable to find our source file.
1667 2004-05-03 David Schleef <ds@schleef.org>
1669 * configure.ac: Link plugins with libgstreamer and dependent
1671 * testsuite/caps/Makefile.am:
1672 * testsuite/caps/caps_strings:
1673 * testsuite/caps/deserialize.c: (main): Add a little test to slog
1674 through a file of caps strings and test each one
1676 2004-05-04 Benjamin Otte <otte@gnome.org>
1678 * libs/gst/bytestream/Makefile.am:
1679 * libs/gst/bytestream/adapter.c:
1680 * libs/gst/bytestream/adapter.h:
1681 add GstAdapter, similar to bytestream, but doesn't require ugly event
1682 handling or uglier loopbased elements
1684 2004-05-03 David Schleef <ds@schleef.org>
1686 * testsuite/caps/Makefile.am: Fix spelling of Ηρατοσθενες
1687 * testsuite/caps/erathostenes.c:
1688 * testsuite/caps/eratosthenes.c: (eratosthenes), (main):
1690 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
1693 remove hardcoded stylesheet path (duh)
1694 * docs/random/release:
1695 * docs/gst/gstreamer-sections.txt:
1698 * gst/gst_private.h:
1704 * gst/gstinterface.c:
1705 * gst/gstmemchunk.c:
1708 * gst/gstregistry.c:
1709 * gst/gstregistrypool.c:
1710 * gst/gststructure.c:
1711 * gst/gsttaginterface.c:
1714 * gst/gsttypefind.c: (gst_type_find_factory_get_type):
1717 deprecate gst_info; remove gstlog.h
1720 2004-05-03 Thomas Vander Stichele <thomas at apestaart dot org>
1726 updated translations
1728 2004-05-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
1730 * gst/gstbin.c: (gst_bin_dispose):
1733 2004-05-03 Johan Dahlin <johan@gnome.org>
1735 * gst/schedulers/gstoptimalscheduler.c
1736 (gst_opt_scheduler_pad_unlink): Check if element is non-NULL and
1737 really is a GstElement. Avoids critical when running gst-launch -v
1738 and a oggdemux/decoding pipeline.
1740 2004-05-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1742 * docs/gst/tmpl/gstpipeline.sgml :
1743 * docs/manual/elements-api.xml :
1744 doc fix by Patrick Guimond (Protector) from devel ML
1747 2004-05-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1749 * docs/gst/Makefile.am :
1750 * docs/libs/Makefile.am :
1751 apply a patch from Arwed v. Merkatz so that gtk-doc
1752 generated docs install (same for .devhelp file)
1753 (fixes part 1 of #138836)
1755 2004-04-30 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1757 * docs/faq/dependencies.xml: typo
1758 * docs/faq/getting.xml :
1759 - fix download URL for new gstreamer site
1760 - hide sf.net download page as latest version aren't there
1762 - fill "get via CVS" paragraph (link to dev page on the site)
1763 * docs/faq/general.xml:
1764 hide status tables as they no more exists
1765 change case on plugins license file to reflect reality
1766 * docs/faq/troubleshooting.xml:
1767 remove the wiki question/answer as there is no more wiki
1769 2004-04-30 Thomas Vander Stichele <thomas at apestaart dot org>
1772 include the headers needed for declarations used in this header
1774 2004-04-30 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1776 * docs/random/uraeus/gstreamer_and_midi.txt :
1777 add .kar (midi + karaoke/lyrics 'track') doc to midi doc.
1780 2004-04-30 Sebastien Cote <sc5@hermes.usherb.ca>
1782 reviewed by Benjamin Otte <otte@gnome.org>
1784 * gst/schedulers/gthread-cothreads.h:
1785 free allocated data for main cothread, too when destroying context
1788 2004-04-29 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
1790 * docs/manual/goals.xml : remove duplicated paragraph at end
1791 of doc page (fixes #141448)
1793 2004-04-29 David Schleef <ds@schleef.org>
1795 * gst/elements/gstfilesink.c: (gst_filesink_handle_event):
1796 Patch from Sebastien Cote to fix leakage of events. (bug #141414)
1798 2004-04-29 Thomas Vander Stichele <thomas at apestaart dot org>
1800 * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
1805 rename typefind source file
1807 2004-04-28 David Schleef <ds@schleef.org>
1809 Several new files from Steve Lhomme's MSVC patch (bug #141317):
1810 * win32/GStreamer.vcproj:
1813 * win32/dirent.c: (_topendir), (_treaddir), (_tclosedir),
1814 (_trewinddir), (_ttelldir), (_tseekdir):
1816 * win32/gst-inspect.vcproj:
1817 * win32/gst-launch.vcproj:
1818 * win32/gst-register.vcproj:
1819 * win32/gstbytestream.vcproj:
1820 * win32/gstelements.vcproj:
1821 * win32/gstoptimalscheduler.vcproj:
1822 * win32/gstspider.vcproj:
1824 * win32/mman.c: (mmap), (mprotect), (msync), (munmap):
1829 2004-04-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
1831 * gst/gst.c: (init_post):
1833 remove useless _gst_progname stuff
1834 * tools/gst-inspect.c: (print_field), (print_caps):
1837 2004-04-28 David Schleef <ds@schleef.org>
1839 Disable parsing of a lot of files that aren't part of the
1840 exported API. Move corresponding template files to old/,
1841 waiting for removal when they don't contain anything
1843 * docs/gst/Makefile.am:
1844 * docs/gst/gstreamer-sections.txt:
1845 * docs/gst/tmpl/cothreads.sgml:
1846 * docs/gst/tmpl/cothreads_compat.sgml:
1847 * docs/gst/tmpl/gettext.sgml:
1848 * docs/gst/tmpl/gobject2gtk.sgml:
1849 * docs/gst/tmpl/grammar.tab.sgml:
1850 * docs/gst/tmpl/gst-i18n-app.sgml:
1851 * docs/gst/tmpl/gst-i18n-lib.sgml:
1852 * docs/gst/tmpl/gst_private.sgml:
1853 * docs/gst/tmpl/gstaggregator.sgml:
1854 * docs/gst/tmpl/gstarch.sgml:
1855 * docs/gst/tmpl/gstatomic_impl.sgml:
1856 * docs/gst/tmpl/gstbufferstore.sgml:
1857 * docs/gst/tmpl/gstdata_private.sgml:
1858 * docs/gst/tmpl/gstdisksink.sgml:
1859 * docs/gst/tmpl/gstdisksrc.sgml:
1860 * docs/gst/tmpl/gstelementfactory.sgml:
1861 * docs/gst/tmpl/gstextratypes.sgml:
1862 * docs/gst/tmpl/gstfakesink.sgml:
1863 * docs/gst/tmpl/gstfakesrc.sgml:
1864 * docs/gst/tmpl/gstfdsink.sgml:
1865 * docs/gst/tmpl/gstfdsrc.sgml:
1866 * docs/gst/tmpl/gstfilesink.sgml:
1867 * docs/gst/tmpl/gstfilesrc.sgml:
1868 * docs/gst/tmpl/gsthttpsrc.sgml:
1869 * docs/gst/tmpl/gstidentity.sgml:
1870 * docs/gst/tmpl/gstindexfactory.sgml:
1871 * docs/gst/tmpl/gstmarshal.sgml:
1872 * docs/gst/tmpl/gstmd5sink.sgml:
1873 * docs/gst/tmpl/gstmultidisksrc.sgml:
1874 * docs/gst/tmpl/gstmultifilesrc.sgml:
1875 * docs/gst/tmpl/gstpadtemplate.sgml:
1876 * docs/gst/tmpl/gstpipefilter.sgml:
1877 * docs/gst/tmpl/gstschedulerfactory.sgml:
1878 * docs/gst/tmpl/gstsearchfuncs.sgml:
1879 * docs/gst/tmpl/gstshaper.sgml:
1880 * docs/gst/tmpl/gstspider.sgml:
1881 * docs/gst/tmpl/gstspideridentity.sgml:
1882 * docs/gst/tmpl/gststatistics.sgml:
1883 * docs/gst/tmpl/gsttee.sgml:
1884 * docs/gst/tmpl/gsttimecache.sgml:
1885 * docs/gst/tmpl/gsttypefind.sgml:
1886 * docs/gst/tmpl/gsttypefindfactory.sgml:
1887 * docs/gst/tmpl/gstxmlregistry.sgml:
1888 * docs/gst/tmpl/gthread-cothreads.sgml:
1889 * docs/gst/tmpl/old/cothreads.sgml:
1890 * docs/gst/tmpl/old/cothreads_compat.sgml:
1891 * docs/gst/tmpl/old/gettext.sgml:
1892 * docs/gst/tmpl/old/gobject2gtk.sgml:
1893 * docs/gst/tmpl/old/grammar.tab.sgml:
1894 * docs/gst/tmpl/old/gst-i18n-app.sgml:
1895 * docs/gst/tmpl/old/gst-i18n-lib.sgml:
1896 * docs/gst/tmpl/old/gst_private.sgml:
1897 * docs/gst/tmpl/old/gstaggregator.sgml:
1898 * docs/gst/tmpl/old/gstarch.sgml:
1899 * docs/gst/tmpl/old/gstatomic_impl.sgml:
1900 * docs/gst/tmpl/old/gstbufferstore.sgml:
1901 * docs/gst/tmpl/old/gstdata_private.sgml:
1902 * docs/gst/tmpl/old/gstdisksink.sgml:
1903 * docs/gst/tmpl/old/gstdisksrc.sgml:
1904 * docs/gst/tmpl/old/gstelementfactory.sgml:
1905 * docs/gst/tmpl/old/gstextratypes.sgml:
1906 * docs/gst/tmpl/old/gstfakesink.sgml:
1907 * docs/gst/tmpl/old/gstfakesrc.sgml:
1908 * docs/gst/tmpl/old/gstfdsink.sgml:
1909 * docs/gst/tmpl/old/gstfdsrc.sgml:
1910 * docs/gst/tmpl/old/gstfilesink.sgml:
1911 * docs/gst/tmpl/old/gstfilesrc.sgml:
1912 * docs/gst/tmpl/old/gsthttpsrc.sgml:
1913 * docs/gst/tmpl/old/gstidentity.sgml:
1914 * docs/gst/tmpl/old/gstindexfactory.sgml:
1915 * docs/gst/tmpl/old/gstmarshal.sgml:
1916 * docs/gst/tmpl/old/gstmd5sink.sgml:
1917 * docs/gst/tmpl/old/gstmultidisksrc.sgml:
1918 * docs/gst/tmpl/old/gstmultifilesrc.sgml:
1919 * docs/gst/tmpl/old/gstpadtemplate.sgml:
1920 * docs/gst/tmpl/old/gstpipefilter.sgml:
1921 * docs/gst/tmpl/old/gstschedulerfactory.sgml:
1922 * docs/gst/tmpl/old/gstsearchfuncs.sgml:
1923 * docs/gst/tmpl/old/gstshaper.sgml:
1924 * docs/gst/tmpl/old/gstspider.sgml:
1925 * docs/gst/tmpl/old/gstspideridentity.sgml:
1926 * docs/gst/tmpl/old/gststatistics.sgml:
1927 * docs/gst/tmpl/old/gsttee.sgml:
1928 * docs/gst/tmpl/old/gsttimecache.sgml:
1929 * docs/gst/tmpl/old/gsttypefindfactory.sgml:
1930 * docs/gst/tmpl/old/gstxmlregistry.sgml:
1931 * docs/gst/tmpl/old/gthread-cothreads.sgml:
1932 * docs/gst/tmpl/old/types.sgml:
1933 * docs/gst/tmpl/types.sgml:
1935 Rename gsttypefind.[ch] back to gsttypefindelement.[ch], since
1936 gtkdoc-scan doesn't like files with the same name in different
1938 * gst/elements/Makefile.am:
1939 * gst/elements/gstelements.c:
1940 * gst/elements/gsttypefind.c:
1941 * gst/elements/gsttypefind.h:
1942 * gst/elements/gsttypefindelement.c:
1943 * gst/elements/gsttypefindelement.h:
1945 2004-04-28 David Schleef <ds@schleef.org>
1947 A bunch of portability fixes, derived from Steve Lhomme's MSVC
1948 patch (bug #141317):
1949 * gst/gst-i18n-lib.h: Allow disabling gettext.
1950 * gst/gstatomic_impl.h: disable warning when it's dumb.
1951 * gst/gstclock.c: fix include
1952 * gst/gstcompat.h: fix variadic macro
1953 * gst/gstinfo.c: fix include
1954 * gst/gstmacros.h: add defines for inlines on MSVC
1955 * gst/gstplugin.c: fix includes
1956 * gst/gstregistry.c: fix includes
1957 * gst/gstregistry.h: use S_IREAD, etc., if S_IRUSR isn't defined
1958 * gst/gstsystemclock.c: fix include
1959 * gst/gsttrace.c: (gst_trace_new), (gst_trace_text_flush): use
1960 S_IREAD if S_IRUSR isn't defined. fix use of non-portable functions
1961 * gst/registries/gstxmlregistry.c:
1962 (gst_xml_registry_parse_element_factory): fix use of non-portable
1964 * libs/gst/control/dparam.h: Remove trailing comma in enum definition
1965 * libs/gst/control/dparammanager.h: same
1967 2004-04-28 David Schleef <ds@schleef.org>
1969 Move a bunch of unused files to old/ with names that are
1970 not case-insensitive-unique. These files still contain some
1971 useful information that needs to be merged into gstbin.sgml,
1972 etc., so they shouldn't be deleted yet.
1973 * docs/gst/tmpl/GstBin.sgml:
1974 * docs/gst/tmpl/GstBuffer.sgml:
1975 * docs/gst/tmpl/GstCaps.sgml:
1976 * docs/gst/tmpl/GstClock.sgml:
1977 * docs/gst/tmpl/GstCompat.sgml:
1978 * docs/gst/tmpl/GstData.sgml:
1979 * docs/gst/tmpl/GstElement.sgml:
1980 * docs/gst/tmpl/GstEvent.sgml:
1981 * docs/gst/tmpl/GstIndex.sgml:
1982 * docs/gst/tmpl/GstStructure.sgml:
1983 * docs/gst/tmpl/GstTag.sgml:
1984 * docs/gst/tmpl/old/GstBin.sgml:
1985 * docs/gst/tmpl/old/GstBuffer.sgml:
1986 * docs/gst/tmpl/old/GstCaps.sgml:
1987 * docs/gst/tmpl/old/GstClock.sgml:
1988 * docs/gst/tmpl/old/GstCompat.sgml:
1989 * docs/gst/tmpl/old/GstData.sgml:
1990 * docs/gst/tmpl/old/GstElement.sgml:
1991 * docs/gst/tmpl/old/GstEvent.sgml:
1992 * docs/gst/tmpl/old/GstIndex.sgml:
1993 * docs/gst/tmpl/old/GstStructure.sgml:
1994 * docs/gst/tmpl/old/GstTag.sgml:
1996 2004-04-28 David Schleef <ds@schleef.org>
1998 * gst/gstcaps.c: (gst_caps_copy), (gst_caps_free),
1999 (gst_caps_append), (gst_caps_append_structure),
2000 (gst_caps_get_size), (gst_caps_get_structure), (gst_caps_copy_1),
2001 (gst_caps_set_simple), (gst_caps_set_simple_valist),
2002 (gst_caps_is_any), (gst_caps_is_empty), (gst_caps_is_chained),
2003 (gst_caps_is_fixed), (gst_caps_is_always_compatible),
2004 (gst_caps_intersect), (gst_caps_normalize),
2005 (gst_caps_transform_to_string): Patch from Tim-Philipp Müller
2006 to fix GST_CAPS() and GST_IS_CAPS(). (bug #141304)
2007 * gst/gstcaps.h: use GST_IS_CAPS().
2009 2004-04-26 David Schleef <ds@schleef.org>
2011 * gst/gstcpu.c: (gst_cpuid_i386): Don't clobber ebx in inline
2012 assembly. gcc doesn't handle it correctly. (bug #141083)
2013 * gst/gsttrashstack.h: same
2015 2004-04-25 Benjamin Otte <otte@gnome.org>
2017 * gst/gstelement.c: (gst_element_change_state):
2018 fix assertion to do an int comparison
2020 2004-04-25 Benjamin Otte <otte@gnome.org>
2022 * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
2023 better debugging output on error
2025 2004-04-25 Benjamin Otte <otte@gnome.org>
2027 * gst/gstcaps.c: (gst_caps_subtract):
2030 2004-04-23 Benjamin Otte <otte@gnome.org>
2032 * gst/gstvalue.c: (gst_value_compare_buffer),
2033 (_gst_value_initialize):
2034 add comparison function for buffers
2036 2004-04-22 Ronald Bultje <rbultje@ronald.bitfreak.net>
2039 Just found out that this so-called "ima-wav" format is really
2040 just "dvi adpcm" (according to the MS WAV documentation). So
2041 renaming it. We didn't use it yet anyway.
2043 2004-04-23 Benjamin Otte <otte@gnome.org>
2045 * gst/gstcaps.c: (gst_caps_is_always_compatible):
2046 call gst_caps_is_subset
2048 2004-04-23 Benjamin Otte <otte@gnome.org>
2050 * gst/gstcaps.c: (gst_caps_subtract), (gst_caps_is_equal),
2051 (gst_caps_is_subset):
2054 2004-04-23 Benjamin Otte <otte@gnome.org>
2056 * gst/gstcaps.c: (gst_caps_structure_subtract_field),
2057 (gst_caps_structure_subtract), (gst_caps_subtract),
2058 (gst_caps_structure_figure_out_union),
2059 (gst_caps_structure_simplify), (gst_caps_do_simplify):
2060 fix simplifying and subtracting not working correctly with optional
2062 solve assorted problems that make it now simplify ebven more
2063 * docs/gst/tmpl/gstcaps.sgml:
2065 make gst_caps_do_simplify return a bool to indicate if it simplified
2066 * testsuite/caps/simplify.c: (main):
2067 add more checks. The tests is quite a bit useless right now because
2068 the core is heavily simplifying itself.
2069 * testsuite/caps/caps.h:
2070 fix caps to contain all optional properties
2072 2004-04-22 Benjamin Otte <otte@gnome.org>
2074 * docs/gst/tmpl/gstcaps.sgml:
2075 * docs/gst/tmpl/gstfilesrc.sgml:
2076 * docs/gst/tmpl/gststructure.sgml:
2077 * docs/gst/tmpl/gstvalue.sgml:
2078 update for recent API changes
2079 * gst/gstcaps.c: (gst_caps_do_simplify):
2080 fix to stop trying with a freed structure
2081 * gst/gstpad.c: (gst_pad_link_fixate):
2083 * gst/gstpad.c: (gst_pad_template_get_caps_by_name):
2086 deprecate gst_pad_template_get_caps_by_name, it doesn't work anyway
2087 * gst/gststructure.c: (gst_structure_value_get_generic_type),
2088 (gst_structure_to_string):
2089 keep the correct type when using lists of ranges
2090 * gst/gstvalue.c: (gst_value_list_prepend_value),
2091 (gst_value_list_append_value):
2092 copy the value before adding to the list (d'oh)
2093 * gst/gstvalue.c: (gst_value_subtract_int_range_int),
2094 (gst_value_subtract_int_range_int_range):
2095 handle overflows correctly
2096 * gst/gstvalue.c: (gst_value_subtract_from_list):
2098 * testsuite/caps/caps.h:
2099 add a caps that caused segfaults
2101 2004-04-22 Benjamin Otte <otte@gnome.org>
2103 * testsuite/refcounting/pad.c: (main):
2106 2004-04-22 Benjamin Otte <otte@gnome.org>
2108 * gst/gstcaps.c: (gst_caps_subtract):
2109 allow subtracting ANY and EMPTY from ANY caps
2111 2004-04-22 Benjamin Otte <otte@gnome.org>
2113 * gst/gstcaps.c: (gst_caps_append), (gst_caps_intersect),
2115 only simplify in functions that create new caps. Simplifying in
2116 gst_caps_append breaks tests.
2118 2004-04-22 Benjamin Otte <otte@gnome.org>
2120 * gst/gstcaps.c: (gst_caps_structure_simplify):
2121 unset GValue after use
2122 * gst/gstcaps.c: (gst_caps_append),
2123 * gst/gstpad.c: (gst_pad_link_fixate), (gst_pad_template_new):
2124 use gst_caps_simplify (reduces registry size by 30%)
2125 * gst/gstpad.c: (gst_pad_template_new):
2126 don't allow NULL caps
2128 2004-04-22 Benjamin Otte <otte@gnome.org>
2130 * docs/gst/gstreamer-sections.txt:
2131 add gst_caps_do_simplify
2133 add documentation for gst_caps_do_simplify
2135 fix typo in gst_value_register_subtract_func declaration for gst-doc
2137 2004-04-22 Benjamin Otte <otte@gnome.org>
2139 * gst/gstcaps.c: (gst_caps_from_string_inplace):
2140 fix bug when converting from empty string.
2141 * gst/gstcaps.c: (gst_caps_new_any), (gst_caps_new_simple),
2142 (gst_caps_new_full_valist), (gst_caps_copy), (gst_caps_copy_1):
2143 use gst_caps_new_empty to allocate a new caps. Only that function
2144 allocates memory for caps now.
2145 * gst/gstcaps.c: (gst_caps_remove_and_get_structure),
2146 (gst_caps_remove_structure):
2147 add ability to remove one structure (but not to header yet)
2148 * gst/gstcaps.c: (gst_caps_compare_structures),
2149 (gst_caps_simplify), (gst_caps_structure_figure_out_union),
2150 (gst_caps_structure_simplify), (gst_caps_do_simplify),
2152 add gst_caps_do_simplify that tries to simplify a caps in place.
2153 Deprecate old gst_caps_simplify function.
2154 * testsuite/caps/caps.h:
2155 add caps.h containing a common set of caps to test against.
2156 * testsuite/caps/sets.c: (check_caps), (main):
2158 * testsuite/caps/.cvsignore:
2159 * testsuite/caps/Makefile.am:
2160 * testsuite/caps/simplify.c: (check_caps), (main):
2161 add test to check correctness and efficency of caps simplification.
2163 2004-04-22 Sebastien Cote <sc5@hermes.usherb.ca>
2165 reviewed by Benjamin Otte <otte@gnome.org>
2167 * gst/gstparse.c: (_gst_parse_escape):
2168 Free the GString used in _gst_parse_escape()
2170 2004-04-21 Benjamin Otte <in7y118@public.uni-hamburg.de>
2172 * gst/gstpad.c: (gst_pad_link_negotiate):
2173 refuse to link if the link is not possible
2175 * testsuite/Makefile.am:
2176 * testsuite/negotiation/.cvsignore:
2177 * testsuite/negotiation/Makefile.am:
2178 * testsuite/negotiation/pad_link.c: (main):
2179 add test that checks the above behaviour
2181 2004-04-21 Thomas Vander Stichele <thomas at apestaart dot org>
2183 * docs/gst/gstreamer-sections.txt:
2186 2004-04-21 Thomas Vander Stichele <thomas at apestaart dot org>
2188 * gst/elements/gstfilesrc.c: (gst_filesrc_init),
2189 (gst_filesrc_get_mmap), (gst_filesrc_get_read), (gst_filesrc_get),
2190 (gst_filesrc_open_file), (gst_filesrc_close_file),
2191 (gst_filesrc_srcpad_query), (gst_filesrc_srcpad_event):
2192 * gst/elements/gstfilesrc.h:
2193 add support for non-regular files (#140734)
2195 2004-04-21 Benjamin Otte <otte@gnome.org>
2197 * gst/gstpad.c: (gst_pad_link_fixate):
2198 add sophisticated error checking code to see if fixation functions
2199 did their fixation right
2201 2004-04-21 Benjamin Otte <otte@gnome.org>
2203 * gst/gstcaps.c: (gst_caps_append), (gst_caps_union):
2204 check for ANY caps before appending/unioning
2205 * gst/gstcaps.c: (gst_caps_is_subset),
2206 (gst_caps_is_equal), (gst_caps_structure_subtract_field),
2207 (gst_caps_structure_subtract), (gst_caps_subtract):
2209 add gst_caps_is_equal, gst_caps_is_subset and gst_caps_subtract to
2210 the API. deprecate gst_caps_is_equal_fixed
2211 * gst/gstpad.c: (gst_pad_try_set_caps):
2212 * gst/gstqueue.c: (gst_queue_link):
2213 s/gst_caps_is_equal_fixed/gst_caps_is_equal/
2214 * gst/gststructure.c: (gst_structure_get_name_id):
2215 * gst/gststructure.h:
2216 add function gst_structure_get_name_id
2217 * gst/gstvalue.c: (gst_value_subtract_int_int_range),
2218 (gst_value_create_new_range), (gst_value_subtract_int_range_int),
2219 (gst_value_subtract_int_range_int_range),
2220 (gst_value_subtract_double_double_range),
2221 (gst_value_subtract_double_range_double),
2222 (gst_value_subtract_double_range_double_range),
2223 (gst_value_subtract_from_list), (gst_value_subtract_list),
2224 (gst_value_can_intersect), (gst_value_subtract),
2225 (gst_value_can_subtract), (gst_value_register_subtract_func),
2226 (_gst_value_initialize):
2228 add support for subtracting values from each other. Note that
2229 subtracting means subtracting as in set theory. Required for caps
2231 * testsuite/caps/.cvsignore:
2232 * testsuite/caps/Makefile.am:
2233 * testsuite/caps/erathostenes.c: (erathostenes), (main):
2234 * testsuite/caps/sets.c: (check_caps), (main):
2235 * testsuite/caps/subtract.c: (check_caps), (main):
2236 add tests for subtraction and equality code.
2238 2004-04-20 David Schleef <ds@schleef.org>
2240 * gst/autoplug/Makefile.am: Fix some little buglets in last checkin.
2241 * gst/indexers/Makefile.am:
2242 * gst/schedulers/Makefile.am:
2243 * libs/gst/bytestream/Makefile.am:
2244 * libs/gst/control/Makefile.am:
2245 * libs/gst/getbits/Makefile.am:
2247 2004-04-20 David Schleef <ds@schleef.org>
2249 * common/as-libtool.mak: Fine-tune DLL building.
2250 * configure.ac: Link plugins against libgstreamer. Define plugindir
2252 * examples/plugins/Makefile.am: remove plugindir
2253 * gst/autoplug/Makefile.am: DLL building fixes
2254 * gst/elements/Makefile.am: DLL building fixes. Disable pipefilter on
2256 * gst/elements/gstelements.c: Conditionally disable pipefilter.
2257 * gst/indexers/Makefile.am: DLL building fixes
2258 * gst/schedulers/Makefile.am: DLL building fixes.
2259 * libs/gst/bytestream/Makefile.am: DLL building fixes.
2260 * libs/gst/control/Makefile.am: same
2261 * libs/gst/getbits/Makefile.am: same
2262 * testsuite/Makefile.am: New dlopen directory
2263 * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works
2265 * testsuite/dlopen/dlopen_gst.c: (main): same
2266 * testsuite/dlopen/loadgst.c: (do_test): same
2268 2004-04-20 David Schleef <ds@schleef.org>
2270 * gst/parse/grammar.y: Apply patch from Sebastien Cote
2271 <sc5@hermes.usherb.ca> to fix a memleak. (bug #140594)
2273 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
2275 * gst/gstelement.c: (gst_element_wait),
2276 (gst_element_set_time_delay), (gst_element_change_state):
2279 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
2281 * gst/autoplug/gstspider.c: (gst_spider_link_sometimes),
2282 (gst_spider_identity_plug):
2283 improve debugging messages
2284 * gst/gstbin.c: (gst_bin_remove_func):
2285 make sure the state_change function is only called with simple state
2288 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
2290 * gst/elements/gstfakesink.c: (gst_fakesink_state_error_get_type),
2291 (gst_fakesink_set_property), (gst_fakesink_chain):
2292 * gst/elements/gstfakesrc.c: (gst_fakesrc_set_property):
2293 * gst/elements/gstfdsrc.c: (gst_fdsrc_set_property):
2294 * gst/elements/gstfilesrc.c: (gst_filesrc_set_property):
2295 * gst/elements/gstidentity.c: (gst_identity_chain),
2296 (gst_identity_set_property):
2297 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_set_property):
2298 * gst/elements/gstpipefilter.c: (gst_pipefilter_set_property):
2299 add warnings to _set_property for unknown arguments
2300 use GST_TIME_FORMAT/GST_TIME_ARGS for timestamp printing
2302 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
2306 add .po file download snippet
2307 fix a bug in the doc makefile
2309 2004-04-20 Thomas Vander Stichele <thomas at apestaart dot org>
2314 Added en_GB translation (Gareth Owen)
2316 2004-04-20 Johan Dahlin <johan@gnome.org>
2318 * gst/gstpad.c (_invent_event): Clean up
2320 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
2322 * testsuite/caps/filtercaps.c: (main):
2323 fix test to test things correctly (caps are complicated)
2325 2004-04-20 Benjamin Otte <in7y118@public.uni-hamburg.de>
2327 * testsuite/caps/Makefile.am:
2328 * testsuite/caps/filtercaps.c: (main):
2329 add test (that doesn't work right now, but should)
2331 2004-04-19 David Schleef <ds@schleef.org>
2333 * configure.ac: Add test for allowing unaligned access. Add define
2334 to put in gstconfig.h.
2335 * docs/gst/gstreamer-sections.txt: New symbols
2336 * docs/gst/tmpl/gstcompat.sgml: Check in changes made by gtkdoc
2337 * docs/gst/tmpl/gstfilesrc.sgml:
2338 * docs/gst/tmpl/gstparse.sgml:
2339 * docs/gst/tmpl/gsttypes.sgml:
2340 * docs/gst/tmpl/gstutils.sgml:
2341 * docs/gst/tmpl/gstvalue.sgml:
2342 * gst/gstconfig.h.in: Add GST_HAVE_UNALIGNED_ACCESS
2343 * gst/gstutils.h: Add macros for unaligned memory access. Useful
2344 on most !i386/!powerpc architectures. From Daniel Gazard
2345 <daniel.gazard@free.fr>. (bug #140156)
2346 * po/af.po: Check in changes made by gettext.
2353 2004-04-20 Benjamin Otte <otte@gnome.org>
2355 * gst/schedulers/entryscheduler.c:
2356 (gst_entry_scheduler_yield):
2357 refuse to yield when decoupled elements insist on doing that.
2358 At least it's better than crashing
2360 2004-04-19 David Schleef <ds@schleef.org>
2362 * docs/libs/Makefile.am: Change sinclude to include
2363 * docs/gst/Makefile.am: same
2364 * pkgconfig/Makefile.am: Remove GNU-ism from makefile target
2366 2004-04-19 Thomas Vander Stichele <thomas at apestaart dot org>
2370 Added Ukrainian translation (Maxim V. Dziumanenko)
2372 2004-04-19 Johan Dahlin <johan@gnome.org>
2374 * gst/parse/grammar.y (__gst_parse_chain_free): Don't do null
2375 checking here, do it before calling the function.
2376 Clean up, use for loops instead of while loops while iterating
2379 * gst/autoplug/gstspider.c (gst_spider_request_new_pad): Fix typo
2381 (gst_spider_create_and_plug): Improve debug message.
2382 General: Replace while loops which iterates over GLists with for
2383 loops. Which are much cleaner, improves readability, especially
2384 for gst_spider_identity_plug
2386 * gst/gstpad.c (_invent_event): Fix parameters to warning macros,
2389 2004-04-18 Thomas Vander Stichele <thomas at apestaart dot org>
2393 Added Turkish translation (Baris Cicek)
2395 2004-04-18 Ronald Bultje <rbultje@ronald.bitfreak.net>
2397 * docs/faq/troubleshooting.xml:
2398 Mention gst-register in the FAQ (fixes 139045).
2400 2004-04-17 Thomas Vander Stichele <thomas at apestaart dot org>
2402 * docs/gst/gstreamer-sections.txt:
2404 2004-04-17 Benjamin Otte <otte@gnome.org>
2406 * gst/gstelement.c: (gst_element_dispose):
2408 * gst/gstpad.c: (gst_pad_call_chain_function):
2409 don't create loads of events due to bad macro usage
2411 2004-04-16 David Schleef <ds@schleef.org>
2413 * gst/gstcaps.c: (gst_caps_is_fixed_foreach):
2414 * gst/gstpad.c: (_gst_pad_default_fixate_foreach):
2415 * gst/gstvalue.c: (gst_value_serialize_buffer),
2416 (gst_value_deserialize_buffer), (gst_type_is_fixed),
2417 (_gst_value_initialize): Create a new function gst_type_is_fixed()
2418 to indicate types that are fixed wrt caps or not. Switching to
2419 this function fixes (bug #140298).
2422 2004-04-16 David Schleef <ds@schleef.org>
2424 * common/m4/gst-arch.m4: Implmenent a whitelist and blacklist
2425 for GST_UNALIGNED_ACESS, since we essentially know which archs
2428 2004-04-17 Benjamin Otte <otte@gnome.org>
2430 * docs/gst/Makefile.am:
2431 ignore gst/parse directory when building docs (fixes #140205)
2433 2004-04-16 Thomas Vander Stichele <thomas at apestaart dot org>
2435 * testsuite/refcounting/mem.c: (vmsize):
2438 2004-04-16 Johan Dahlin <johan@gnome.org>
2440 * docs/gst/gstreamer-sections.txt: Add gst_pad_call_chain_function
2441 and gst_pad_call_get_function.
2443 2004-04-15 David Schleef <ds@schleef.org>
2445 * common/m4/gst-arch.m4: Add GST_UNALIGNED_ACCESS() macro that
2446 checks if we can access unaligned memory.
2447 * configure.ac: Use it.
2449 2004-04-16 Benjamin Otte <otte@gnome.org>
2451 * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get),
2452 (gst_filesrc_change_state), (gst_filesrc_srcpad_event):
2453 * gst/elements/gstfilesrc.h:
2454 s/seek_happened/need_discont/ and require discont before sending any
2457 2004-04-15 David Schleef <ds@schleef.org>
2459 * gst/gstvalue.c: (gst_value_serialize_buffer),
2460 (gst_value_deserialize_buffer), (_gst_value_initialize):
2461 Register these types as fundamental types. (bug #140015)
2463 2004-04-16 Benjamin Otte <otte@gnome.org>
2465 * gst/gstpad.c: (gst_pad_set_active), (gst_pad_link_new),
2466 (gst_pad_link_free), (gst_pad_link_try), (_invent_event),
2468 implement enforcing discont events before buffers are passed. This
2469 allows state changes of only some elements and later correctly going
2470 on where they left off (or in short: you can now set audio sinks to
2471 NULL to release the device when the pipeline is paused)
2472 * gst/gstpad.c: (gst_pad_call_chain_function),
2473 (gst_pad_call_get_function):
2475 add gst_pad_call_chain_function and gst_pad_call_get_function for
2476 scheduler interaction. They are required because of the changes
2478 * gst/schedulers/entryscheduler.c: (get_buffer),
2479 (gst_entry_scheduler_chain_wrapper),
2480 (gst_entry_scheduler_get_wrapper),
2481 (gst_entry_scheduler_state_transition),
2482 (gst_entry_scheduler_pad_link):
2483 * gst/schedulers/gstbasicscheduler.c:
2484 (gst_basic_scheduler_chain_wrapper),
2485 (gst_basic_scheduler_src_wrapper),
2486 (gst_basic_scheduler_chainhandler_proxy),
2487 (gst_basic_scheduler_gethandler_proxy),
2488 (gst_basic_scheduler_cothreaded_chain),
2489 (gst_basic_scheduler_chain_elements):
2490 * gst/schedulers/gstoptimalscheduler.c:
2491 (get_group_schedule_function), (pad_clear_queued),
2492 (gst_opt_scheduler_pad_link):
2493 use the new functions instead of calling get/chain-functions
2496 2004-04-15 David Schleef <ds@schleef.org>
2498 * docs/gst/gstreamer-sections.txt: Remove deprecated symbols.
2499 * docs/gst/tmpl/gstinfo.sgml: same
2500 * docs/gst/tmpl/gstutils.sgml: Remove a bunch of bogus crap that
2502 * gst/gstutils.h: Remove the \ that was confusing gtk-doc.
2503 * examples/queue/queue.c: (main): We iterate pipelines, not
2506 2004-04-15 Ronald Bultje <rbultje@ronald.bitfreak.net>
2508 * docs/pwg/advanced-types.xml:
2509 Add MS RLE support. Also document Qt RLE although I have no sample
2510 files for that yet. And document an extra property for ADPCM.
2512 2004-04-15 David Schleef <ds@schleef.org>
2514 * gst/gstplugin.c: (_gst_plugin_fault_handler_restore),
2515 (_gst_plugin_fault_handler_setup): Disable more stuff on
2518 2004-04-15 David Schleef <ds@schleef.org>
2520 * gst/gstinfo.c: (_gst_debug_init): Change some internal
2521 symbol names to not conflict with new gstinfo.h symbols.
2522 * gst/gstinfo.h: Add inline functions for all those crazy
2523 compilers that don't know how to handle variadic macros (MSVC).
2525 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
2527 * configure.ac: bump nano to 1
2529 === release 0.8.1 ===
2531 2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org>
2536 releasing 0.8.1, "Snow Brigade"
2538 2004-04-14 David Schleef <ds@schleef.org>
2540 * testsuite/Makefile.am: define tests_ignore
2541 * testsuite/Rules: Added new tests_ignore, which get compiled,
2542 but not run (generally because they're inconsistent or have
2543 heisenbugs). Now we can ensure all the .c files compile in
2545 * testsuite/bins/Makefile.am: define tests_ignore
2546 * testsuite/bytestream/Makefile.am:
2547 * testsuite/caps/Makefile.am:
2548 * testsuite/clock/Makefile.am:
2549 * testsuite/debug/Makefile.am:
2550 * testsuite/debug/global.c: (gst_debug_log_one),
2551 (gst_debug_log_two): Fix compilation problem.
2552 * testsuite/dynparams/Makefile.am:
2553 * testsuite/elements/Makefile.am:
2554 * testsuite/ghostpads/Makefile.am:
2555 * testsuite/indexers/Makefile.am:
2556 * testsuite/parse/Makefile.am:
2557 * testsuite/plugin/Makefile.am:
2558 * testsuite/refcounting/Makefile.am:
2559 * testsuite/refcounting/element_pad.c: (main): Don't return leak
2560 results, because it's not calculated correctly.
2561 * testsuite/refcounting/pad.c: (main): same
2562 * testsuite/states/Makefile.am:
2563 * testsuite/tags/Makefile.am:
2564 * testsuite/threads/Makefile.am:
2566 2004-04-14 David Schleef <ds@schleef.org>
2568 * gst/gstcpu.c: (gst_cpuid_i386): Add workaround for gcc-3.2
2569 generating bad code around the cpu detection asm code.
2571 2004-04-14 Thomas Vander Stichele <thomas at apestaart dot org>
2573 * tools/gst-inspect.c: (print_element_info):
2574 print numeric version of rank as well, since we added some - 1
2575 rank values to elements
2577 2004-04-13 David Schleef <ds@schleef.org>
2579 * configure.ac: Disable various code when compiling for MinGW.
2580 * gst/elements/Makefile.am:
2581 * gst/elements/gstelements.c:
2582 * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
2583 * gst/elements/gstfilesrc.c: (gst_filesrc_init), (gst_filesrc_get):
2584 * gst/registries/gstxmlregistry.c: (make_dir):
2586 2004-04-13 David Schleef <ds@schleef.org>
2589 * gst/gstcpu.c: (gst_cpuid_i386): Convert asm source into inline
2591 * gst/gstcpuid_i386.s: remove
2593 2004-04-13 David Schleef <ds@schleef.org>
2595 * docs/gst/tmpl/gstaggregator.sgml: Random checkin because gtk-doc
2596 seems to think it needs to be done.
2597 * docs/gst/tmpl/gstfakesink.sgml:
2598 * docs/gst/tmpl/gstfakesrc.sgml:
2599 * docs/gst/tmpl/gstfdsink.sgml:
2600 * docs/gst/tmpl/gstfdsrc.sgml:
2601 * docs/gst/tmpl/gstfilesink.sgml:
2602 * docs/gst/tmpl/gstfilesrc.sgml:
2603 * docs/gst/tmpl/gstidentity.sgml:
2604 * docs/gst/tmpl/gstmd5sink.sgml:
2605 * docs/gst/tmpl/gstmultifilesrc.sgml:
2606 * docs/gst/tmpl/gstpipefilter.sgml:
2607 * docs/gst/tmpl/gstshaper.sgml:
2608 * docs/gst/tmpl/gstspider.sgml:
2609 * docs/gst/tmpl/gstspideridentity.sgml:
2610 * docs/gst/tmpl/gststatistics.sgml:
2611 * docs/gst/tmpl/gsttee.sgml:
2612 * docs/gst/tmpl/gsttypefind.sgml:
2613 * docs/gst/tmpl/gstutils.sgml:
2615 2004-04-13 David Schleef <ds@schleef.org>
2617 * configure.ac: Changes to remove POSIXisms (mmap in this case)
2618 and to build DLLs on Windows.
2620 * gst/elements/gstfilesrc.c: (gst_filesrc_get),
2621 (gst_filesrc_open_file):
2622 * gst/schedulers/Makefile.am:
2624 2004-04-13 David Schleef <ds@schleef.org>
2626 * gst/gstcaps.c: (gst_caps_structure_fixate_field_nearest_int),
2627 (gst_caps_structure_fixate_field_nearest_double): Fix bug in
2630 2004-04-12 David Schleef <ds@schleef.org>
2632 * gst/gstbuffer.c: (_gst_buffer_initialize), (gst_buffer_get_type),
2633 (gst_buffer_free_chunk): Added gst_buffer_get_type() and changed
2635 * gst/gstbuffer.h: Changed GST_BUFFER_TYPE to gst_buffer_get_type()
2636 * gst/gstcaps.c: (gst_caps_is_fixed_foreach): Buffer is a fixed type
2637 * gst/gstpad.c: (_gst_pad_default_fixate_foreach): same
2638 * gst/gststructure.c: (gst_structure_set_valist),
2639 (gst_structure_from_abbr), (gst_structure_to_abbr): Add vararg
2640 support for buffers.
2641 * gst/gsttag.c: (gst_tag_register): Constify a prototype that was
2642 intended to be const.
2643 * gst/gsttag.h: same
2644 * gst/gstvalue.c: (gst_value_serialize_buffer),
2645 (gst_value_deserialize_buffer), (_gst_value_initialize): Add code
2646 to (de)serialize buffers.
2647 * testsuite/caps/Makefile.am: Add a bit of buffer testing
2648 * testsuite/caps/string-conversions.c: (main):
2649 * testsuite/caps/value_serialize.c: add new test
2651 2004-04-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
2653 * docs/pwg/advanced-types.xml:
2654 Document MS video 1 (video/x-msvideocodec) mimetype/format.
2656 2004-04-11 Benjamin Otte <otte@gnome.org>
2658 * gst/schedulers/gstbasicscheduler.c: (plugin_init):
2659 rename categories to basic_*
2660 * gst/schedulers/gstbasicscheduler.c:
2661 (gst_basic_scheduler_chain_wrapper),
2662 (gst_basic_scheduler_chainhandler_proxy),
2663 (gst_basic_scheduler_gethandler_proxy),
2664 (gst_basic_scheduler_eventhandler_proxy):
2665 debugging category fixes - put common stuff in log category
2666 * gst/schedulers/gstbasicscheduler.c:
2667 (gst_basic_scheduler_chain_elements):
2668 dirty fix: call gst_basic_scheduler_cothreaded_chain when already
2669 active and linking two active chains
2671 2004-04-10 Benjamin Otte <otte@gnome.org>
2673 * docs/pwg/intro-preface.xml:
2674 fix dead links and remove reference to Wiki
2676 2004-04-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
2678 * gst/schedulers/gstbasicscheduler.c:
2679 make sure we can switch back to the main function if we're still in
2680 the main function (supposed to fix #139617)
2681 * gst/schedulers/gthread-cothreads.h:
2682 don't throw an error when switching to the same cothread
2684 2004-04-09 Benjamin Otte <otte@gnome.org>
2686 * gst/gstbin.c: (gst_bin_get_type):
2687 * gst/gstclock.c: (gst_clock_get_type):
2688 * gst/gstindex.c: (gst_index_get_type):
2689 * gst/gstobject.c: (gst_object_get_type),
2690 (gst_signal_object_get_type):
2691 * gst/gstpad.c: (gst_pad_get_type), (gst_real_pad_get_type),
2692 (gst_pad_template_get_type), (gst_ghost_pad_get_type):
2693 * gst/gstpluginfeature.c: (gst_plugin_feature_get_type):
2694 * gst/gstqueue.c: (gst_queue_get_type):
2695 * gst/gstregistry.c: (gst_registry_get_type):
2696 * gst/gstsystemclock.c: (gst_system_clock_get_type):
2697 * gst/gstthread.c: (gst_thread_get_type):
2698 don't use memchunks for these objects, use malloc instead
2700 2004-04-08 Thomas Vander Stichele <thomas at apestaart dot org>
2702 * docs/gst/.cvsignore:
2703 * docs/gst/Makefile.am:
2704 * docs/gst/gstreamer-sections.txt:
2705 * docs/gst/tmpl/gstaggregator.sgml:
2706 * docs/gst/tmpl/gstbuffer.sgml:
2707 * docs/gst/tmpl/gstclock.sgml:
2708 * docs/gst/tmpl/gstelement.sgml:
2709 * docs/gst/tmpl/gstfakesink.sgml:
2710 * docs/gst/tmpl/gstfakesrc.sgml:
2711 * docs/gst/tmpl/gstfdsink.sgml:
2712 * docs/gst/tmpl/gstfdsrc.sgml:
2713 * docs/gst/tmpl/gstfilesink.sgml:
2714 * docs/gst/tmpl/gstfilesrc.sgml:
2715 * docs/gst/tmpl/gstidentity.sgml:
2716 * docs/gst/tmpl/gstindex.sgml:
2717 * docs/gst/tmpl/gstinfo.sgml:
2718 * docs/gst/tmpl/gstmd5sink.sgml:
2719 * docs/gst/tmpl/gstmultifilesrc.sgml:
2720 * docs/gst/tmpl/gstpad.sgml:
2721 * docs/gst/tmpl/gstpipefilter.sgml:
2722 * docs/gst/tmpl/gstpipeline.sgml:
2723 * docs/gst/tmpl/gstpluginfeature.sgml:
2724 * docs/gst/tmpl/gstqueue.sgml:
2725 * docs/gst/tmpl/gstregistry.sgml:
2726 * docs/gst/tmpl/gstscheduler.sgml:
2727 * docs/gst/tmpl/gstshaper.sgml:
2728 * docs/gst/tmpl/gstspider.sgml:
2729 * docs/gst/tmpl/gstspideridentity.sgml:
2730 * docs/gst/tmpl/gststatistics.sgml:
2731 * docs/gst/tmpl/gstsystemclock.sgml:
2732 * docs/gst/tmpl/gsttee.sgml:
2733 * docs/gst/tmpl/gstthread.sgml:
2734 * docs/gst/tmpl/gsttypefind.sgml:
2735 * docs/gst/tmpl/gstutils.sgml:
2736 further doc build fixes
2738 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
2740 * docs/gst/Makefile.am:
2741 make docs exit on scanning problems
2742 fix nonsrcdir build issues
2743 * docs/gst/gstreamer-sections.txt:
2744 adding stuff from -unused
2747 * gst/schedulers/cothreads_compat.h:
2748 fix cothread warnings
2750 2004-04-07 Thomas Vander Stichele <thomas at apestaart dot org>
2752 * docs/gst/gstreamer-sections.txt:
2753 remove defines deprecated by Benjamin
2755 2004-04-07 Benjamin Otte <otte@gnome.org>
2757 * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
2758 when the buffer is complete, don't check if other buffers are needed
2759 * gst/elements/gstfilesrc.c: (gst_filesrc_srcpad_event):
2760 check that the offset is >0 so we don't try to read before the
2761 beginning of the file
2762 * gst/gstpad.c: (gst_pad_set_pad_template):
2763 sink the template, so we don't end up with 130k pad templates
2765 2004-04-06 Benjamin Otte <otte@gnome.org>
2767 * gst/autoplug/gstspider.c: (gst_spider_link_add):
2768 don't ref the element, adding already reffed it. And we didn't unref
2769 it later anyway... (huge memleak when you used many spider elements)
2770 * gst/gstelement.c: (gst_element_base_class_finalize):
2771 * gst/gstelementfactory.c: (gst_element_factory_cleanup),
2772 (gst_element_register):
2773 * gst/gsturi.c: (gst_element_make_from_uri):
2774 use gst_object_(un)ref instead of g_object(un)ref
2776 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
2779 remove macro that wouldn't work anymore because struct member has
2781 * gst/schedulers/entryscheduler.c: (schedule_forward):
2782 fix segfault for unconnected pads
2784 2004-04-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
2786 reviewed by David Schleef <ds@schleef.org>
2789 *_FORMAT modifiers should require putting a % in front of them for
2790 consistency reasons.
2792 2004-04-05 Colin Walters <walters@redhat.com>
2794 * configure.ac (VALGRIND_CFLAGS, VALGRIND_LIBS): Remove spurious
2797 2004-04-05 Benjamin Otte <otte@gnome.org>
2801 * gst/gst_private.h:
2802 * gst/gstinfo.c: (__gst_in_valgrind), (_gst_debug_init):
2803 add support for detecting if GStreamer runs inside valgrind.
2804 requires valgrind (d'oh) and --enable-debug for correct cdetection.
2805 print a big message in valgrind that GStreamer has detected it's
2806 running inside and might now use different code.
2807 * gst/gstmemchunk.c: (populate), (free_area),
2808 (gst_mem_chunk_destroy), (gst_mem_chunk_alloc),
2809 (gst_mem_chunk_free):
2810 flag memchunks for valgrind, so it can detect leaking of chunks.
2811 This allows detecting leaks of GstBuffer and GstEvent correctly
2814 2004-04-05 David Schleef <ds@schleef.org>
2816 * gst/gsttrace.h: Fix #ifdef nesting (bug #139109) Patch from
2817 jensgr@gmx.net (Jens Granseuer)
2819 2004-04-05 David Schleef <ds@schleef.org>
2821 * gst/gstbuffer.c: (_gst_buffer_sub_free),
2822 (gst_buffer_default_free), (gst_buffer_default_copy),
2823 (gst_buffer_alloc_chunk), (gst_buffer_free_chunk),
2824 (gst_buffer_new), (gst_buffer_create_sub): Allocate GstBuffer
2825 structures in one place.
2827 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
2829 * gst/gstinfo.h: adding Ronald's timestamp debugging defines
2830 (GST_TIME_FORMAT, GST_TIME_ARGS)
2832 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
2834 * testsuite/elements/Makefile.am:
2835 disable test until it stops breaking make distcheck
2837 2004-04-05 Johan Dahlin <johan@gnome.org>
2839 * po/sv.po: Updated translation
2841 2004-04-05 Thomas Vander Stichele <thomas at apestaart dot org>
2843 * gst/gstplugin.c: (gst_plugin_load_file):
2844 fix segfault for when original plugin was loaded statically
2846 2004-04-05 Benjamin Otte <otte@gnome.org>
2848 * testsuite/debug/category.c: (main):
2849 * testsuite/debug/commandline.c: (main):
2850 * testsuite/debug/output.c: (main):
2851 fix tests to work again with debugging enabled
2853 2004-04-05 Benjamin Otte <otte@gnome.org>
2855 * gst/schedulers/gstbasicscheduler.c:
2856 (gst_basic_scheduler_pad_link):
2857 fix to work with recent scheduling changes
2859 2004-04-05 Benjamin Otte <otte@gnome.org>
2861 * gst/schedulers/entryscheduler.c: (some functions, dunno which,
2862 prepareChangeLog doesn't work when cvs indents):
2863 don't throw an error when no element can be scheduled, there's too
2864 many weird reasons why it doesn't work. Return STOPPED instead.
2865 decoupled elemts' schedulability doesn't depend on bufpens.
2867 2004-04-04 Benjamin Otte <otte@gnome.org>
2869 * gst/schedulers/gstbasicscheduler.c:
2870 (gst_basic_scheduler_pad_select):
2871 fix uninitialized variable warnings
2873 2004-04-04 Benjamin Otte <otte@gnome.org>
2875 * gst/gstpad.c: (gst_pad_collect_valist):
2876 fix uninitialized variable warning
2877 * gst/schedulers/entryscheduler.c: (schedule_forward):
2878 fix shadowed variable
2880 2004-04-04 Benjamin Otte <otte@gnome.org>
2882 * gst/gstpad.c: (gst_pad_collect_array), (gst_pad_collectv),
2883 (gst_pad_collect), (gst_pad_collect_valist), (gst_pad_selectv),
2886 * gst/gstscheduler.c: (gst_scheduler_pad_select),
2887 (gst_scheduler_lock_element), (gst_scheduler_unlock_element):
2888 * gst/gstscheduler.h:
2889 implement gst_pad_collect as replacement for gst_pad_select.
2890 deprecate gst_pad_select and gst_scheduler_(un)lock_element
2891 add new flag GST_SCHEDULER_FLAG_NEW_API for API that implements the
2892 new pad_select, lock and unlock calls.
2893 * gst/cothreads.c: (cothread_destroy), (cothread_switch):
2895 * gst/schedulers/cothreads_compat.h:
2896 * gst/schedulers/gthread-cothreads.h:
2897 remove unused cothread_lock and cothread_unlock calls
2898 * gst/schedulers/entryscheduler.c:
2899 (gst_entry_scheduler_class_init), (gst_entry_scheduler_init),
2900 (_can_schedule_loop), (gst_entry_scheduler_get_handler),
2901 (gst_entry_scheduler_pad_select):
2903 * gst/schedulers/gstbasicscheduler.c:
2904 (gst_basic_scheduler_class_init), (gst_basic_scheduler_init),
2905 (gst_basic_scheduler_pad_select):
2906 remove useless lock and unlock calls, update pad_select to new API
2908 * gst/schedulers/gstoptimalscheduler.c:
2909 (gst_opt_scheduler_class_init):
2910 remove useless select, lock and unlock function calls
2911 * gst/elements/gstaggregator.c: (gst_aggregator_loop):
2912 use gst_pad_collect instead of gst_pad_select
2914 2004-04-04 Benjamin Otte <otte@gnome.org>
2916 * gst/schedulers/entryscheduler.c: (_can_schedule_get),
2917 (can_schedule_pad), (can_schedule), (schedule), (schedule_forward),
2918 (schedule_next_element), (print_entry):
2919 add can_schedule_pad to handle element states.
2920 add schedule_forward to select the correct entry to schedule next
2922 2004-04-03 Benjamin Otte <otte@gnome.org>
2924 * gst/schedulers/entryscheduler.c:
2925 remove unused variable, fix error inside Rb, fix compile warning in
2928 2004-04-03 Benjamin Otte <otte@gnome.org>
2930 * gst/schedulers/entryscheduler.c:
2931 completely revamp the inner workings, so it's a lot easier to
2932 understand and extend
2934 2004-04-03 Andy Wingo <wingo@pobox.com>
2936 * gst/schedulers/gstoptimalscheduler.c (GstOptSchedulerGroupLink):
2937 Rename ->group1 and ->group2 to ->src and ->sink, respectively.
2938 This allows better introspection of pipeline topology.
2939 (add_to_chain): Don't do trickery to put loop elements first;
2940 rather, queue a chain sort by marking the chain as dirty.
2941 (remove_from_chain): Mark the chain dirty.
2942 (sort_chain): New function. Sorts the group list so that terminal
2943 sinks are first. This means elements on the sink side will be
2944 preferentially sscheduled before elements on the src side of the
2946 (chain_recursively_migrate_group): Use OTHER_GROUP_LINK.
2947 (schedule_chain): If the chain is marked DIRTY, call sort_chain.
2948 (gst_opt_scheduler_pad_link, gst_opt_scheduler_pad_unlink)
2949 (group_inc_link): Change argument and variable names to match the
2950 new link structure member names (src and sink).
2951 (group_dec_link): Add some description
2953 2004-04-03 Benjamin Otte <otte@gnome.org>
2955 * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
2957 * testsuite/debug/category.c: (main):
2958 * testsuite/debug/commandline.c: (main):
2959 * testsuite/debug/output.c: (main):
2960 * testsuite/debug/printf_extension.c: (main):
2961 fix to successfully build and test with --disable-gst-debug
2962 configure switch (fixes #138705)
2964 2004-04-03 Benjamin Otte <otte@gnome.org>
2966 * docs/pwg/building-boiler.xml:
2967 add cvs login line and s/anonymous/anoncvs/
2969 2004-04-03 Tim-Phillip Müller <t.i.m@zen.co.uk>
2971 reviewed by Benjamin Otte <otte@gnome.org>
2973 * gst/gststructure.c: (gst_structure_free):
2974 memleak fix: free fields array (partial fix for #134839)
2976 2004-04-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
2978 * docs/random/ds/0.9-suggested-changes:
2979 Add a note to change handoff use in fakesrc to be usable in
2980 a more generic way (fakesrc should be renamed to appsrc or so).
2981 * gst/elements/gstfakesrc.c: (gst_fakesrc_class_init):
2982 Change signal type to scope, so we can fill the buffer in the
2983 handoff handler (that's the whole use of this signal...).
2985 2004-04-01 Ronald Bultje <rbultje@ronald.bitfreak.net>
2987 * docs/pwg/other-ntoone.xml:
2988 Document muxers and n-to-1 elements.
2990 2004-04-01 Martin Soto <martinsoto@users.sourceforge.net>
2992 * gst/registries/gstxmlregistry.c
2993 (gst_xml_registry_rebuild_recurse): Fix the algorithm to
2994 determine if a file is a G_MODULE. The old one discards paths
2995 containing "so" somewhere in the middle. My home directory is
2996 called "soto". Go figure...
2998 2004-03-31 David Schleef <ds@schleef.org>
3000 * gst/gstbuffer.c: (gst_buffer_join): Add function gst_buffer_join()
3001 to eventually deprecate gst_buffer_merge(). (bug: #136408)
3004 2004-03-31 David Schleef <ds@schleef.org>
3006 * gst/gstvalue.c: (gst_value_union_int_int_range),
3007 (gst_value_union_int_range_int_range), (gst_value_can_union),
3008 (gst_value_union), (_gst_value_initialize): Add some union
3009 implementations. We didn't have any previously.
3010 * testsuite/caps/Makefile.am:
3011 * testsuite/caps/audioscale.c: (gst_audioscale_expand_value),
3012 (gst_audioscale_getcaps), (test_caps), (main): A little test
3013 that is the same as the caps manipulation in audioscale.
3015 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
3017 * docs/faq/general.xml:
3018 add entry about "does gst support format X?"
3020 2004-03-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
3025 fix GST_BOILERPLATE_FULL to not throw casting errors on C++
3027 2004-03-30 Benjamin Otte <otte@gnome.org>
3029 * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
3030 set the offset of the buffer to the requested offset
3031 * gst/elements/gsttypefind.c: (stop_typefinding):
3032 revert patch 1.18 (which I unfortunately don't know the reason for).
3033 This is needed to allow downstream elements to seek. Otherwise
3034 typefind might overwrite a previous seek by downstream elements.
3035 This lead to errors with id3tag and typefind on some mp3s.
3036 * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
3037 (gst_entry_scheduler_iterate):
3038 be more verbose when debugging
3040 2004-03-30 Thomas Vander Stichele <thomas at apestaart dot org>
3042 * gst/gstcaps.c: (gst_caps_from_string_inplace):
3043 make sure we don't get NULL strings
3045 2004-03-30 Thomas Vander Stichele <thomas at apestaart dot org>
3049 * gst/gstelementfactory.c: (gst_element_factory_get_type):
3050 * gst/gstindex.c: (gst_index_resolver_get_type),
3051 (gst_index_get_type), (gst_index_factory_get_type):
3055 * gst/gsturi.c: (gst_uri_handler_get_type):
3057 first batch of documentation fixes
3059 2004-03-29 David Schleef <ds@schleef.org>
3061 * docs/gst/Makefile.am: Disable a bunch of headers from being scanned
3062 * docs/gst/gstreamer-docs.sgml: More hacking
3063 * docs/gst/gstreamer-sections.txt:
3064 * docs/gst/tmpl/cothreads_compat.sgml:
3065 * docs/gst/tmpl/gstcaps.sgml:
3066 * docs/gst/tmpl/gstclock.sgml:
3067 * docs/gst/tmpl/gstelement.sgml:
3068 * docs/gst/tmpl/gstevent.sgml:
3069 * docs/gst/tmpl/gstpad.sgml:
3070 * docs/gst/tmpl/gstutils.sgml:
3071 * docs/gst/tmpl/gstxml.sgml:
3072 * docs/gst/tmpl/gthread-cothreads.sgml:
3073 * docs/random/ds/0.9-suggested-changes:
3074 * gst/elements/gstfakesink.h: doc fixes
3075 * gst/elements/gstfakesrc.h: doc fixes
3076 * gst/gstcaps.c: doc fixes
3077 * gst/gstcaps.h: doc fixes
3078 * gst/gstelement.c: doc fixes
3079 * gst/gstelement.h: doc fixes
3080 * gst/gstindex.c: doc fixes
3081 * gst/gstinfo.c: doc fixes
3082 * gst/gstpad.c: doc fixes
3083 * gst/gstpad.h: doc fixes
3084 * gst/gstplugin.c: doc fixes
3085 * gst/gsttypefind.h: doc fixes
3086 * gst/gsturi.c: doc fixes
3087 * gst/gstvalue.c: doc fixes
3089 2004-03-29 Colin Walters <walters@redhat.com>
3091 * gst/registries/gstxmlregistry.c (get_time)
3092 (plugin_times_older_than_recurse):
3093 Use the result of stat to determine whether a path is a file,
3094 so we don't attempt to opendir() files.
3096 2004-03-29 Benjamin Otte <otte@gnome.org>
3098 * gst/gstpad.c: (gst_pad_set_explicit_caps):
3099 print caps in debugging output when setting caps failed
3100 * gst/schedulers/entryscheduler.c: (COTHREADS_TYPE),
3101 (schedule_next_element), (get_buffer), (run_chainhandler),
3102 (element_may_start), (gst_entry_scheduler_chain_handler),
3103 (gst_entry_scheduler_get_handler),
3104 (gst_entry_scheduler_state_transition),
3105 (gst_entry_scheduler_pad_link):
3106 make this scheduler a testcase for mandatory
3107 discont-before-first-buffer which is needed if we want to allow apps
3108 to release the sound device.
3109 add SCHED_ASSERT macro to print scheduler state before an assertion
3112 2004-03-29 Benjamin Otte <otte@gnome.org>
3115 replace by LGPL (former COPYING.LIB). The core is completely
3120 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
3124 updated Afrikaans and Swedish
3126 2004-03-29 Thomas Vander Stichele <thomas at apestaart dot org>
3130 adding Azerbaijani (Mətin Əmirov)
3132 2004-03-28 Martin Soto <martinsoto@users.sourceforge.net>
3135 * gst/gstelement.c (gst_element_set_time_delay): New function for
3136 setting element time taking into account a hardware buffering
3138 (gst_element_set_time): Now just an invocation of
3139 gst_element_set_time_delay.
3141 * gst/gstclock.c (gst_clock_get_event_time_delay): New function
3142 allowing to set event times in the future.
3143 (gst_clock_get_event_time): Now just an invocation of
3144 gst_clock_get_event_time_delay.
3146 2004-03-28 Benjamin Otte <otte@gnome.org>
3148 * gst/gstbin.c: (gst_bin_set_element_sched),
3149 (gst_bin_unset_element_sched):
3150 don't add decoupled elements to schedulers - otherwise it's
3151 impossible to control if a link to a decoupled element was already
3152 removed from a scheduler or not.
3153 * gst/schedulers/cothreads_compat.h:
3154 * gst/schedulers/gthread-cothreads.h:
3155 add COTHREADS_TYPE macro. Make do_cothread_set_func a macro so there
3156 is no "unused" warning.
3157 * gst/schedulers/Makefile.am:
3158 * gst/schedulers/entryscheduler.c:
3159 add new scheduler, based on ideas from talking to David and Martin.
3160 It's supposed to be small and correct. Currently it's also slow (but
3162 * examples/retag/retag.c: (main):
3163 * testsuite/bytestream/test1.c: (main):
3164 fix missing NULLs at end of variadic functions
3165 * testsuite/elements/.cvsignore:
3168 2004-03-28 Jan Schmidt <thaytan@mad.scientist.com>
3171 Added GST_EVENT_ANY for GstEvents that pass a GstStructure
3173 2004-03-25 David Schleef <ds@schleef.org>
3175 * docs/gst/gstreamer-sections.txt: More doc hacking.
3176 * docs/gst/tmpl/gstaggregator.sgml:
3177 * docs/gst/tmpl/gstautoplugfactory.sgml:
3178 * docs/gst/tmpl/gstbin.sgml:
3179 * docs/gst/tmpl/gstbuffer.sgml:
3180 * docs/gst/tmpl/gstbufferstore.sgml:
3181 * docs/gst/tmpl/gstfakesink.sgml:
3182 * docs/gst/tmpl/gstfakesrc.sgml:
3183 * docs/gst/tmpl/gstmd5sink.sgml:
3184 * docs/gst/tmpl/gstreamer-unused.sgml:
3185 * docs/gst/tmpl/gstsearchfuncs.sgml:
3186 * docs/gst/tmpl/gstshaper.sgml:
3187 * docs/gst/tmpl/gstspider.sgml:
3188 * docs/gst/tmpl/gsttee.sgml:
3189 * docs/gst/tmpl/gstutils.sgml:
3190 * docs/gst/tmpl/gstvalue.sgml:
3191 * docs/gst/tmpl/gstxml.sgml:
3192 * gst/Makefile.am: Remove gstthreaddummy.c. It never worked,
3193 and we don't support it.
3194 * gst/gst.c: (gst_init_get_popt_table), (init_pre), (init_post),
3195 (gst_use_threads), (gst_has_threads): same
3196 * gst/gstthreaddummy.c: same
3197 * gst/autoplug/gstspider.c: Make gst_spider_details static.
3198 * gst/autoplug/gstspider.h: same
3199 * gst/elements/gstaggregator.h: Remove bogus function from header
3200 * gst/elements/gstfakesink.h: same
3201 * gst/elements/gstfakesrc.h: same
3202 * gst/elements/gstmd5sink.h: same
3203 * gst/elements/gstshaper.h: same
3204 * gst/elements/gsttee.h: same
3205 * gst/gstbin.c: doc fixes
3206 * gst/gstbin.h: Remove unused definition.
3207 * gst/gstbuffer.c: doc fixes
3208 * gst/gstcaps.c: (gst_caps_is_always_compatible): doc fixes
3209 * gst/gstfilter.c: doc fixes
3210 * gst/gsttag.c: doc fixes
3211 * gst/gstvalue.c: doc fixes
3213 2004-03-25 Ronald Bultje <rbultje@ronald.bitfreak.net>
3215 * docs/pwg/advanced-types.xml:
3216 Document typefinding.
3217 * docs/pwg/other-oneton.xml:
3218 Document one-to-n elements, demuxers and parsers.
3220 2004-03-25 Tim-Philipp Müller <t.i.m@zen.co.uk>
3222 reviewed by: David Schleef <ds@schleef.org>
3224 * configure.ac: Check bison version (bug #127838)
3226 2004-03-25 David Schleef <ds@schleef.org>
3228 * docs/gst/gstreamer-docs.sgml: More fine tuning.
3229 * docs/gst/gstreamer-sections.txt:
3230 * docs/gst/tmpl/gstautoplug.sgml:
3231 * docs/gst/tmpl/gststaticautoplug.sgml:
3232 * docs/gst/tmpl/gststaticautoplugrender.sgml:
3233 * docs/gst/tmpl/gstutils.sgml:
3234 * docs/gst/tmpl/gstxml.sgml:
3236 2004-03-24 David Schleef <ds@schleef.org>
3238 * docs/gst/gstreamer-docs.sgml: I got tired of the reference
3239 manual being such complete crap, that I decided to do major
3240 hacking of it. This checkin replaces any fine tuning that
3241 may have been done previously, with the benefit of actually
3242 being complete for much of the API that was changed since
3243 0.6. Further fine tuning will occur shortly. (bug #134721)
3244 * docs/gst/gstreamer-sections.txt:
3245 * docs/gst/tmpl/GstBin.sgml:
3246 * docs/gst/tmpl/GstBuffer.sgml:
3247 * docs/gst/tmpl/GstCaps.sgml:
3248 * docs/gst/tmpl/GstClock.sgml:
3249 * docs/gst/tmpl/GstCompat.sgml:
3250 * docs/gst/tmpl/GstData.sgml:
3251 * docs/gst/tmpl/GstElement.sgml:
3252 * docs/gst/tmpl/GstEvent.sgml:
3253 * docs/gst/tmpl/GstIndex.sgml:
3254 * docs/gst/tmpl/GstStructure.sgml:
3255 * docs/gst/tmpl/GstTag.sgml:
3256 * docs/gst/tmpl/cothreads.sgml:
3257 * docs/gst/tmpl/cothreads_compat.sgml:
3258 * docs/gst/tmpl/gettext.sgml:
3259 * docs/gst/tmpl/grammar.tab.sgml:
3260 * docs/gst/tmpl/gst-i18n-app.sgml:
3261 * docs/gst/tmpl/gst-i18n-lib.sgml:
3262 * docs/gst/tmpl/gst.sgml:
3263 * docs/gst/tmpl/gst_private.sgml:
3264 * docs/gst/tmpl/gstaggregator.sgml:
3265 * docs/gst/tmpl/gstarch.sgml:
3266 * docs/gst/tmpl/gstatomic.sgml:
3267 * docs/gst/tmpl/gstatomic_impl.sgml:
3268 * docs/gst/tmpl/gstbin.sgml:
3269 * docs/gst/tmpl/gstbuffer.sgml:
3270 * docs/gst/tmpl/gstbufferstore.sgml:
3271 * docs/gst/tmpl/gstcaps.sgml:
3272 * docs/gst/tmpl/gstclock.sgml:
3273 * docs/gst/tmpl/gstcompat.sgml:
3274 * docs/gst/tmpl/gstconfig.sgml:
3275 * docs/gst/tmpl/gstcpu.sgml:
3276 * docs/gst/tmpl/gstdata.sgml:
3277 * docs/gst/tmpl/gstdata_private.sgml:
3278 * docs/gst/tmpl/gstelement.sgml:
3279 * docs/gst/tmpl/gstenumtypes.sgml:
3280 * docs/gst/tmpl/gsterror.sgml:
3281 * docs/gst/tmpl/gstevent.sgml:
3282 * docs/gst/tmpl/gstfakesink.sgml:
3283 * docs/gst/tmpl/gstfakesrc.sgml:
3284 * docs/gst/tmpl/gstfilesink.sgml:
3285 * docs/gst/tmpl/gstfilter.sgml:
3286 * docs/gst/tmpl/gstindex.sgml:
3287 * docs/gst/tmpl/gstinfo.sgml:
3288 * docs/gst/tmpl/gstinterface.sgml:
3289 * docs/gst/tmpl/gstlog.sgml:
3290 * docs/gst/tmpl/gstmacros.sgml:
3291 * docs/gst/tmpl/gstmarshal.sgml:
3292 * docs/gst/tmpl/gstmd5sink.sgml:
3293 * docs/gst/tmpl/gstmultifilesrc.sgml:
3294 * docs/gst/tmpl/gstobject.sgml:
3295 * docs/gst/tmpl/gstpad.sgml:
3296 * docs/gst/tmpl/gstparse.sgml:
3297 * docs/gst/tmpl/gstpipeline.sgml:
3298 * docs/gst/tmpl/gstplugin.sgml:
3299 * docs/gst/tmpl/gstpluginfeature.sgml:
3300 * docs/gst/tmpl/gstqueue.sgml:
3301 * docs/gst/tmpl/gstreamer-unused.sgml:
3302 * docs/gst/tmpl/gstregistry.sgml:
3303 * docs/gst/tmpl/gstregistrypool.sgml:
3304 * docs/gst/tmpl/gstscheduler.sgml:
3305 * docs/gst/tmpl/gstsearchfuncs.sgml:
3306 * docs/gst/tmpl/gstshaper.sgml:
3307 * docs/gst/tmpl/gstspider.sgml:
3308 * docs/gst/tmpl/gstspideridentity.sgml:
3309 * docs/gst/tmpl/gststructure.sgml:
3310 * docs/gst/tmpl/gstsystemclock.sgml:
3311 * docs/gst/tmpl/gsttag.sgml:
3312 * docs/gst/tmpl/gsttaginterface.sgml:
3313 * docs/gst/tmpl/gsttee.sgml:
3314 * docs/gst/tmpl/gstthread.sgml:
3315 * docs/gst/tmpl/gsttrace.sgml:
3316 * docs/gst/tmpl/gsttrashstack.sgml:
3317 * docs/gst/tmpl/gsttypefind.sgml:
3318 * docs/gst/tmpl/gsttypes.sgml:
3319 * docs/gst/tmpl/gsturi.sgml:
3320 * docs/gst/tmpl/gsturitype.sgml:
3321 * docs/gst/tmpl/gstutils.sgml:
3322 * docs/gst/tmpl/gstvalue.sgml:
3323 * docs/gst/tmpl/gstversion.sgml:
3324 * docs/gst/tmpl/gstxml.sgml:
3325 * docs/gst/tmpl/gstxmlregistry.sgml:
3326 * docs/gst/tmpl/gthread-cothreads.sgml:
3327 * docs/gst/tmpl/types.sgml:
3329 2004-03-24 Ronald Bultje <rbultje@ronald.bitfreak.net>
3331 * docs/pwg/other-sink.xml:
3332 * docs/pwg/other-source.xml:
3333 Documentation on how to write source and sink elements. Other
3334 stuff in chapter 4 (1-to-n/demuxer, n-to-1/muxer, n-to-n,
3335 manager, autoplugger) are all still pending.
3337 2004-03-25 Benjamin Otte <otte@gnome.org>
3339 * testsuite/elements/Makefile.am:
3340 * testsuite/elements/gst-compprep-check:
3341 add check to make sure gst-compprep works
3342 * testsuite/elements/gst-inspect-check.in:
3343 improve initialization output
3344 * testsuite/Makefile.am:
3345 * testsuite/gst-inspect-check:
3348 2004-03-24 David Schleef <ds@schleef.org>
3350 * testsuite/elements/Makefile.am:
3351 * testsuite/elements/gst-inspect-check.in: Add gst-inspect-check
3354 2004-03-24 Benjamin Otte <otte@gnome.org>
3356 * libs/gst/control/dparam.c: (gst_dparam_attach),
3357 (gst_dparam_detach):
3358 * libs/gst/control/dparammanager.c: (gst_dpman_init):
3359 fix lvalue casts for real
3361 2004-03-24 Benjamin Otte <otte@gnome.org>
3363 * gst/schedulers/gstbasicscheduler.c:
3364 (gst_basic_scheduler_src_wrapper):
3365 * gst/schedulers/gstoptimalscheduler.c:
3366 (gst_opt_scheduler_loop_wrapper), (gst_opt_scheduler_get_wrapper),
3367 (pad_clear_queued), (gst_opt_scheduler_add_element),
3368 (gst_opt_scheduler_remove_element):
3369 fix GStreamer to not have issues with lvalue casts anymore (fixes
3372 2004-03-24 Benjamin Otte <otte@gnome.org>
3375 add documentation about a gobject quirk where the object hasn't the
3376 correct class pointer set on initialization
3377 * gst/schedulers/gstbasicscheduler.c:
3378 (gst_basic_scheduler_src_wrapper):
3379 make sure to not run into an infinite loop
3381 2004-03-22 Benjamin Otte <otte@gnome.org>
3383 * gst/gstutils.c: (gst_util_dump_mem):
3385 first argument of gst_util_dump_mem should be const
3387 2004-03-22 Johan Dahlin <johan@gnome.org>
3389 * gst/gstvalue.h: Clean up a little bit.
3391 2004-03-21 Tim-Philipp Müller <t.i.m@zen.co.uk>
3393 reviewed by Benjamin Otte <otte@gnome.org>
3395 * gst/autoplug/gstspider.c: (gst_spider_dispose):
3396 * gst/elements/gstaggregator.c: (gst_aggregator_finalize),
3397 (gst_aggregator_class_init), (gst_aggregator_init):
3398 * gst/elements/gstfilesrc.c: (gst_filesrc_init),
3399 (gst_filesrc_dispose), (gst_filesrc_set_location):
3400 * gst/elements/gstidentity.c: (gst_identity_finalize),
3401 (gst_identity_class_init), (gst_identity_chain):
3402 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
3403 * gst/elements/gststatistics.c: (gst_statistics_finalize),
3404 (gst_statistics_class_init):
3405 * gst/elements/gsttee.c: (gst_tee_finalize), (gst_tee_class_init),
3406 (gst_tee_get_property):
3407 clean up used memory in this elements correctly on teardown (closes
3410 2004-03-20 Colin Walters <walters@redhat.com>
3412 * gst/registries/gstxmlregistry.c:
3413 (gst_xml_registry_open_func, gst_xml_registry_close_func): Make
3414 registry saving atomic.
3416 2004-03-20 Colin Walters <walters@redhat.com>
3418 * gst/registries/gstxmlregistry.c (gst_xml_registry_get_perms_func):
3420 access() instead of actually creating and deleting files.
3422 2004-03-18 David Schleef <ds@schleef.org>
3424 * configure.ac: Remove HAVE_ATOMIC_H test, since it's unused.
3427 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
3429 * po/sv.po: updated translation (Christian Rose)
3431 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
3433 * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
3434 (gst_filesink_get_query_types), (_do_init),
3435 (gst_filesink_handle_event), (gst_filesink_uri_get_protocols):
3436 return FALSE silently
3437 * po/af.po: updated translation (Petri Jooste)
3439 2004-03-18 Thomas Vander Stichele <thomas at apestaart dot org>
3443 dist common properly
3449 refreshing translations
3451 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
3456 adding Swedish (Christian Rose) and Afrikaans (Petri Jooste)
3458 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
3460 * Makefile.am: use common/release.mak
3462 2004-03-17 Thomas Vander Stichele <thomas at apestaart dot org>
3464 * docs/faq/gst-uninstalled:
3465 adding gst-monkeysaudio to the list of possible plugin dirs
3467 2004-03-16 David Schleef <ds@schleef.org>
3469 * gst/gst.c: (gst_get_popt_options), (gst_init_get_popt_table),
3470 (gst_init_check_with_popt_table): Fix some gettext strings to
3471 make them easier to translate. Required making the strings
3474 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
3476 * configure.ac: bump nano to 1
3478 === release 0.8.0 ===
3480 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
3482 * configure.ac: release 0.8.0, "Executive Slacks"
3484 2004-03-16 Johan Dahlin <johan@gnome.org>
3486 * gst/schedulers/gstoptimalscheduler.c
3487 (gst_opt_scheduler_pad_unlink): Remove double ;,
3488 spotted by Scott Wheeler
3490 2004-03-16 Thomas Vander Stichele <thomas at apestaart dot org>
3492 * configure.ac: bump libtool version
3494 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
3497 * gst/gststructure.h:
3498 add reserved padding
3500 2004-03-15 Benjamin Otte <otte@gnome.org>
3502 * gst/elements/gstfdsrc.c: (gst_fdsrc_get):
3503 set the first parameter for select call correctly.
3506 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
3508 * *.c,*.h: don't mix tabs and spaces
3510 2004-03-15 Johan Dahlin <johan@gnome.org>
3512 * gst/schedulers/gstoptimalscheduler.c
3513 (gst_opt_scheduler_pad_unlink): Fix bug that causes totem to
3514 crash on MPEG playback. My boolean arithmetic is a bit rusty.
3516 * tools/Makefile.am (EXTRA_DIST): Add gst-indent
3518 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
3521 fix gst-register rules
3523 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
3526 use versioned gst-register
3528 2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
3530 * docs/libs/gstreamer-libs-sections.txt:
3531 remove </SUBSECTION>
3533 * gst/gstregistry.c: (gst_registry_add_plugin):
3534 * gst/registries/gstxmlregistry.c: (gst_xml_registry_get_type),
3535 (gst_xml_registry_open_func), (gst_xml_registry_close_func):
3536 add debugging and fix some comment blocks
3538 2004-03-15 Johan Dahlin <johan@gnome.org>
3540 * *.h: Revert indent changes.
3542 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
3544 * gst/registries/gstxmlregistry.c: (gst_xml_registry_load_plugin):
3545 g_error_free the g_error
3546 * tools/gst-feedback-m.m:
3547 check for other versions of gstreamer
3551 2004-03-14 Thomas Vander Stichele <thomas at apestaart dot org>
3553 * tools/gst-register.c: do not spill paths when registries are not
3554 writable, until we fix the "user running gst-register" case.
3556 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
3558 * *.c, *.h: commit of gst-indent run on core
3560 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
3563 * tools/Makefile.am:
3564 add our indentation style as a script
3566 2004-03-13 Thomas Vander Stichele <thomas at apestaart dot org>
3570 added Serbian translation
3572 2004-03-13 Benjamin Otte <otte@gnome.org>
3575 add documentation note about gst_element_found_tags_for_pad not
3576 being usable in getfunctions. (see #137042)
3578 2004-03-12 David Schleef <ds@schleef.org>
3580 * gst/gstcaps.h: jdahlin, what are you smoking? We can't just
3581 change API right now! Readd gst_caps_is_simple() macro.
3582 * gst/gstelement.c: (gst_element_base_class_finalize): Fix
3583 uninitialized variable. I'd bet this caused crashes.
3584 * gst/gstinfo.c: (gst_debug_print_object): Fix 64-bit cleanliness.
3586 2004-03-12 Johan Dahlin <johan@gnome.org>
3588 * gst/gstcaps.h (GST_CAPS_IS_SIMPLE): Capitalize macro
3589 * gst/gstcaps.h: Clean up
3591 * gst/gst.c (init_post): call gst_caps_get_type() instead of
3592 _gst_caps_initalize()
3594 * gst/gstcaps.c: Style fixes, stay closer to glib and friends
3595 (_gst_caps_initialize): Remove, in favor for gst_caps_get_type()
3597 * gst/gststructure.c (gst_structure_get_type): Ditto
3599 * gst/gststructure.h: Ditto
3601 2004-03-11 Ronald Bultje <rbultje@ronald.bitfreak.net>
3603 * gst/gstqueue.c: (gst_queue_init):
3604 Reset default max. values in queues. Reason is simply to avoid
3605 braindead use. If you want wider values, use the properties. The
3606 default is supposed to always work. Wider values would make this
3607 beast a memory hog by default (250 full-PAL RGB32 video frames?
3608 That's 440 MB! No thank you).
3610 2004-03-10 David Schleef <ds@schleef.org>
3612 * tools/gst-run.c: (main): Fix crash when no relevant tools
3613 were found. (bug #136793)
3615 2004-03-10 Johan Dahlin <johan@gnome.org>
3617 * gst/schedulers/gstoptimalscheduler.c
3618 (gst_opt_scheduler_pad_unlink): Implement unlink for elements with
3619 links to elements within the same group, so we can finally remove
3620 that annoying warning. Refactor the code a little bit
3621 (group_dec_links_for_element): Split out
3623 2004-03-09 David Schleef <ds@schleef.org>
3625 * docs/manual/dparams-app.xml: Fix to handle double dparams.
3628 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
3630 * configure.ac: first bug fix due to major/minor bump
3632 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
3634 * configure.ac: bump nano to 1
3636 === release 0.7.6 ===
3638 2004-03-09 Thomas Vander Stichele <thomas at apestaart dot org>
3643 releasing 0.7.6, "Almost"
3646 * tools/Makefile.am:
3647 * tools/gst-feedback-m.m:
3650 2004-03-09 Johan Dahlin <johan@gnome.org>
3652 Reviewed by: Thomas Vander Stichele
3654 * gst/gstelement.c (gst_element_class_init): register second
3655 parameter as GST_TYPE_G_ERROR instead of G_TYPE_POINTER, so
3656 language bindings can (de)marshall correctly.
3658 * gst/gsterror.h: Add GST_TYPE_G_ERROR and cleanup a little bit
3660 * gst/gsterror.c (gst_g_error_get_type): New function
3662 * gst/gstmarshal.list: Remove VOID:OBJECT,POINTER,STRING, replace
3663 with VOID:OBJECT,OBJECT,STRING
3665 2004-03-10 Jan Schmidt <thaytan@mad.scientist.com>
3667 * gst/registries/gstxmlregistry.c: (gst_xml_registry_load):
3668 Free a leaked g_timer on early returns.
3670 2004-03-08 Ronald Bultje <rbultje@ronald.bitfreak.net>
3672 * docs/pwg/advanced-types.xml:
3673 Add cinepak description.
3675 2004-03-07 David Schleef <ds@schleef.org>
3677 * docs/random/mimetypes: Added cinepak description
3679 2004-03-07 Andy Wingo <wingo@pobox.com>
3681 * gst/gstbin.c (gst_bin_remove): Debugging fixes.
3683 * gst/schedulers/gstoptimalscheduler.c (destroy_group): Assert
3684 there are no links to other groups when a group is destroyed.
3685 (gst_opt_scheduler_pad_unlink): If the unlink means an element is
3686 removed from a group, make sure the link count to elements linked
3687 to other pads is appropriately decremented. This really fixes
3690 The 1.60->1.61 patch has been reapplied in light of this fix.
3692 * gst/gstelement.c (gst_element_dispose): Really protect against
3693 multiple invocations this time.
3695 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
3697 * docs/gst/gstreamer-sections.txt:
3698 * docs/gst/tmpl/gsttag.sgml:
3699 remove some deprecated functions, document some existing ones
3700 * gst/gsttag.c: (gst_tag_get_flag):
3702 add accessor function
3704 2004-03-06 Thomas Vander Stichele <thomas at apestaart dot org>
3706 * docs/gst/gstreamer-sections.txt:
3707 * docs/gst/tmpl/gsttag.sgml:
3708 * docs/gst/tmpl/gstxml.sgml:
3709 * gst/gsttag.c: (gst_tag_get_flag):
3712 2004-03-06 Christophe Fergeau <teuf@gnome.org>
3714 * gst/autoplug/gstspider.c: (gst_spider_identity_plug): fixed caps
3717 2004-03-05 David Schleef <ds@schleef.org>
3719 * REQUIREMENTS: Add bison and flex.
3720 * configure.ac: Fix comment about bison.
3721 * docs/random/ds/0.9-suggested-changes: yer ma
3722 * tools/gst-inspect.c: (print_element_info): Fix warning.
3724 2004-03-05 Benjamin Otte <otte@gnome.org>
3726 * gst/gstelement.c: (gst_element_error_full):
3727 revert recent recursive state changing commit - messing with other
3728 elements' states is evil and should be done by apps only.
3730 2004-03-05 Benjamin Otte <otte@gnome.org>
3732 * gst/gstelement.c: (gst_element_get_compatible_pad_template):
3733 check for empty intersection instead of NULL caps
3734 (gst_element_get_compatible_pad_filtered):
3735 remove old workaround that is only a bug nowadays
3737 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
3739 * gst/gstelement.c: (gst_element_error_full):
3740 make elements try to recursively change state to PAUSED on all
3741 parents after an error to suppress ensuing warnings
3742 * gst/parse/grammar.y:
3743 make it check if it was able to sync the state, and throw an error
3744 if not, so stuff like
3745 oggdemux ! vorbisdec ! osssink gets caught
3747 2004-03-05 Thomas Vander Stichele <thomas at apestaart dot org>
3749 * configure.ac: use ${libdir} for PLUGINS_DIR since on 64bit
3750 it contains lib64; use AS_AC_EXPAND to handle it properly
3752 2004-03-05 David Schleef <ds@schleef.org>
3754 * gst/gstcpuid_i386.s: Remove unused code
3755 * libs/gst/getbits/getbits.c: (gst_getbits_init),
3756 (gst_getbits_newbuf): Remove MMX code
3757 * libs/gst/getbits/getbits.h: Remove MMX code
3759 2004-03-04 David I. Lehn <dlehn@users.sourceforge.net>
3761 * debian/.cvsignore:
3762 * debian/README.Debian:
3765 * debian/control.in:
3767 * debian/gstreamer-core-libs-dev.files:
3768 * debian/gstreamer-core-libs.files:
3769 * debian/gstreamer-core.files:
3770 * debian/gstreamer-core.postinst:
3771 * debian/gstreamer-core.postrm:
3772 * debian/gstreamer-doc.files:
3773 * debian/gstreamer-doc.links:
3774 * debian/gstreamer-doc.lintian:
3775 * debian/gstreamer-runtime.files:
3776 * debian/gstreamer-runtime.manpages:
3777 * debian/gstreamer-runtime.postinst:
3778 * debian/gstreamer-runtime.postrm:
3779 * debian/gstreamer-tools.files:
3780 * debian/gstreamer-tools.manpages:
3781 * debian/libgstreamer-dev.files:
3782 * debian/libgstreamer0.4.1.files:
3783 * debian/libgstreamerVERSION.files:
3785 Debian package info not maintained here.
3787 2004-03-04 Thomas Vander Stichele <thomas at apestaart dot org>
3789 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
3790 * gst/gstbin.c: (gst_bin_class_init):
3791 * gst/gstelement.c: (gst_element_class_init):
3792 * gst/gstindex.c: (gst_index_class_init):
3793 * gst/gstobject.c: (gst_object_class_init),
3794 (gst_signal_object_class_init):
3795 * gst/gstpad.c: (gst_pad_template_class_init):
3796 * gst/gstregistry.c: (gst_registry_class_init):
3797 * gst/gsturi.c: (gst_uri_handler_base_init):
3798 * gst/gstxml.c: (gst_xml_class_init):
3799 * libs/gst/control/dparam.c: (gst_dparam_class_init):
3800 * libs/gst/control/dparammanager.c: (gst_dpman_class_init):
3801 make all signal names use dashes instead of underscore
3803 2004-03-03 Thomas Vander Stichele <thomas at apestaart dot org>
3805 * configure.ac: AC_SUBST GLIB_ONLY CFLAGS and LIBS
3807 2004-03-03 Benjamin Otte <otte@gnome.org>
3809 * gst/schedulers/gstoptimalscheduler.c:
3810 revert last commit by Andy Wingo. It causes segfaults on unreffing
3811 in Rhythmbox. (see bug #135672)
3813 2004-03-02 Christophe Fergeau <teuf@gnome.org>
3815 * po/fr.po: fix typo
3817 2004-03-02 Christophe Fergeau <teuf@gnome.org>
3819 * tools/gst-inspect.c: (main):
3820 * tools/gst-launch.c: (main): add calls to bind_textdomain_codeset
3822 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
3825 get GLIB_ONLY and POPT flags for the nonversioned binaries
3826 * tools/Makefile.am:
3829 2004-03-02 Thomas Vander Stichele <thomas at apestaart dot org>
3831 * gst/gst.c: (init_post):
3832 change so that GST_REGISTRY now is where the global registry gets
3833 saved, since that is where plugins now get attached to first, and
3834 spilled over to the user registry. Note that in the case of using
3835 GST_REGISTRY env var, we don't want to affect any real registries
3836 beyond the one given by this var, and thus we don't set a user
3837 registry to spill to. So make sure GST_REGISTRY is writable.
3839 2004-03-01 David Schleef <ds@schleef.org>
3841 * AUTHORS: Added some names. Add yourself if you're missing.
3843 2004-03-01 David Schleef <ds@schleef.org>
3847 2004-03-01 Thomas Vander Stichele <thomas at apestaart dot org>
3851 * docs/gst/tmpl/gstbuffer.sgml:
3852 * docs/gst/tmpl/gstdata.sgml:
3853 * docs/gst/tmpl/gstreamer-unused.sgml:
3854 * docs/gst/tmpl/gstxml.sgml:
3858 * docs/pwg/intro-preface.xml:
3861 * gst/gst.c: (init_post):
3862 try GST_PLUGIN_PATH paths for the _global_registry first
3864 add the error message as well, otherwise (null) debug info doesn't
3866 * tools/gst-register.c: (main):
3867 spill paths to next registry if this registry is not writable
3872 2004-03-01 Johan Dahlin <johan@gnome.org>
3874 * gst/gstbuffer.c (_gst_buffer_initialize):
3875 * gst/gstdata.c (gst_data_get_type):
3876 * gst/gstevent.c (_gst_event_initialize): Use gst_data_copy,
3877 instead of ref, since some applications that uses GBoxed
3878 routines depends on a function that actually returns a copy.
3880 2004-02-27 Benjamin Otte <otte@gnome.org>
3883 remove gst_buffer_free, use gst_data_unref
3884 * gst/gstdata.c: (gst_data_get_type):
3885 use refcounting in GstData GBoxed registration
3887 remove gst_data_free, use gst_data_unref
3889 2004-02-27 Johan Dahlin <johan@gnome.org>
3891 * gst/gstdata.c (gst_data_get_type): New function, register
3892 GstData as a GBoxed type.
3894 * gst/gstdata.h (GST_TYPE_DATA): New macro
3896 2004-02-27 Thomas Vander Stichele <thomas at apestaart dot org>
3899 * gstreamer.spec.in:
3902 clean up non-disting of built files
3903 * testsuite/debug/commandline.c:
3904 test fix for option rename
3906 2004-02-26 David Schleef <ds@schleef.org>
3908 * configure.ac: We don't really need glib-2.3. Also remove
3909 some unneeded checks for library functions.
3910 * gst/Makefile.am: Instead, we need to not dist files created
3913 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
3916 bump glib required version to 2.3.0 for g_value_takes_boxed
3918 2004-02-25 Christian Fredrik Kalager Schaller <uraeus@gnome.org>
3920 * common/m4/gst-docs.m4
3921 change flavour text from enable to disable as enable is our default
3922 closes bug Bug 135304
3924 === release 0.7.5 ===
3926 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
3931 * gstreamer.spec.in:
3935 * docs/random/release:
3938 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
3940 * gst/gsttag.c: (_gst_tag_initialize):
3943 remove hyphen from codec tags
3945 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
3947 * gst/parse/Makefile.am:
3948 fix dependency so that a make from a clean build works the first
3951 2004-02-26 Thomas Vander Stichele <thomas at apestaart dot org>
3953 * docs/random/release:
3954 update release strategy
3958 update dutch translation
3960 2004-02-25 Thomas Vander Stichele <thomas at apestaart dot org>
3962 * docs/manual/debugging.xml:
3963 fix manual for new debugging system
3965 2004-02-25 Andy Wingo <wingo@pobox.com>
3967 * gst/gstpad.c (gst_pad_link_prepare): Re-add
3968 gst_pad_link_prepare. Please email the list with specific reasons
3971 2004-02-24 Andy Wingo <wingo@pobox.com>
3973 * gst/gstelement.c (gst_element_dispose): Protect against multiple
3976 * gst/schedulers/gstoptimalscheduler.c:
3977 I added a mess of prototypes at the top of the file by way of
3978 documentation. Some of the operations on chains and groups were
3981 (create_group): Added a type argument so if the group is enabled,
3982 the setup_group_scheduler knows what to do.
3983 (group_elements): Added a type argument here, too, to be passed on
3985 (group_element_set_enabled): If an unlinked PLAYING element is
3986 added to a bin, we have to create a new group to hold the element,
3987 and this function will be called before the group is added to the
3988 chain. Thus we have a valid case for group->chain==NULL. Instead
3989 of calling chain_group_set_enabled, just set the flag on the group
3990 (the chain's status will be set when the group is added to it).
3991 (gst_opt_scheduler_state_transition, chain_group_set_enabled):
3992 Setup the group scheduler when the group is enabled, not
3993 specifically when an element goes PAUSED->PLAYING. This means
3994 PLAYING elements can be added, linked, and scheduled into a
3995 PLAYING pipeline, as was intended.
3996 (add_to_group): Don't ref the group twice. I don't know when this
3997 double-ref got in here. Removing it has the potential to cause
3998 segfaults if other parts of the scheduler are buggy. If you find
3999 that the scheduler is segfaulting for you, put in an extra ref
4000 here and see if that hacks over the underlying issue. Of course,
4001 then find out what code is unreffing a group it doesn't own...
4002 (create_group): Make the extra refcount floating, and remove it
4003 after adding the element. This means that...
4004 (unref_group): Destroy when the refcount reaches 0, not 1, like
4005 every other refcounted object in the known universe.
4006 (remove_from_group): When a group becomes empty, set it to be not
4007 active, and remove it from its chain. Don't unref it again,
4008 there's no floating reference any more.
4009 (destroy_group): We have to remove the group from the chain in
4010 remove_from_group (rather than here) to break refcounting cycles
4011 (the chain always has a ref on the group). So assert that
4013 (ref_group_by_count): Removed, it was commented out anyway.
4014 (merge_chains): Use the remove_from_chain and add_to_chain
4015 primitives to do the reparenting, instead of rolling our own
4017 (add_to_chain): The first non-disabled group in the chain's group
4018 list will be the entry point for the chain. Because buffers can
4019 accumulate in loop elements' peer bufpens, we preferentially
4020 schedule loop groups before get groups to avoid unnecessary
4021 execution of get-based groups when the bufpens are already full.
4022 (gst_opt_scheduler_schedule_run_queue): Debug fixes.
4023 (get_group_schedule_function): Ditto.
4024 (loop_group_schedule_function): Ditto.
4025 (gst_opt_scheduler_loop_wrapper): Ditto.
4026 (gst_opt_scheduler_iterate): Ditto.
4028 I understand the opt scheduler now, yippee!
4030 * gst/gstpad.c: All throughout, added FIXMEs to look at for 0.9.
4031 (gst_pad_get_name, gst_pad_set_chain_function)
4032 (gst_pad_set_get_function, gst_pad_set_event_function)
4033 (gst_pad_set_event_mask_function, gst_pad_get_event_masks)
4034 (gst_pad_get_event_masks_default, gst_pad_set_convert_function)
4035 (gst_pad_set_query_function, gst_pad_get_query_types)
4036 (gst_pad_get_query_types_default)
4037 (gst_pad_set_internal_link_function)
4038 (gst_pad_set_formats_function, gst_pad_set_link_function)
4039 (gst_pad_set_fixate_function, gst_pad_set_getcaps_function)
4040 (gst_pad_set_bufferalloc_function, gst_pad_unlink)
4041 (gst_pad_renegotiate, gst_pad_set_parent, gst_pad_get_parent)
4042 (gst_pad_add_ghost_pad, gst_pad_proxy_getcaps)
4043 (gst_pad_proxy_pad_link, gst_pad_proxy_fixate)
4044 (gst_pad_get_pad_template_caps, gst_pad_check_compatibility)
4045 (gst_pad_get_peer, gst_pad_get_allowed_caps)
4046 (gst_pad_alloc_buffer, gst_pad_push, gst_pad_pull)
4047 (gst_pad_selectv, gst_pad_select, gst_pad_template_get_caps)
4048 (gst_pad_event_default_dispatch, gst_pad_event_default)
4049 (gst_pad_dispatcher, gst_pad_send_event, gst_pad_convert_default)
4050 (gst_pad_convert, gst_pad_query_default, gst_pad_query)
4051 (gst_pad_get_formats_default, gst_pad_get_formats): Better
4052 argument checks, and some doc fixes.
4054 (gst_pad_custom_new_from_template): Um, does anyone
4055 use these functions? Actually make a custom pad instead of a
4057 (gst_pad_try_set_caps): Transpose some checks.
4058 (gst_pad_try_set_caps_nonfixed): Same, and use a macro to check if
4059 the pad is in negotiation.
4060 (gst_pad_try_relink_filtered): Use pad_link_prepare.
4062 * gst/gstelement.c: Remove prototypes also defined in gstclock.h.
4065 * gst/gstclock.h: Un-deprecate the old clocking API, as discussed
4068 2004-02-24 Thomas Vander Stichele <thomas at apestaart dot org>
4070 * gst/gstbin.c: (gst_bin_add):
4071 add error for not being able to add elements
4073 2004-02-22 Julien MOUTTE <julien@moutte.net>
4075 * gst/gsttag.c: (_gst_tag_initialize): Registering 2 new tags,
4076 audio-codec and video-codec.
4078 2004-02-22 Benjamin Otte <otte@gnome.org>
4080 reported by: Padraig O'Briain <padraig.obriain@sun.com>
4083 replace test -e with test -x for mkinstalldirs to be more portable.
4086 2004-02-22 Benjamin Otte <otte@gnome.org>
4089 revert last patch from Andy, it makes gst_pad_can_link_filtered much
4091 * gst/gsttag.c: (_gst_tag_initialize):
4093 add GST_TAG_ALBUM_VOLUME_{COUNT,NUMBER}
4094 * libs/gst/control/dparam.c: (gst_dparam_attach):
4095 * libs/gst/control/dparammanager.c: (gst_dpman_attach_dparam):
4096 check that types for attached dparams match
4098 2004-02-22 Thomas Vander Stichele <thomas at apestaart dot org>
4100 * gst/elements/gstfilesink.c: (gst_filesink_open_file):
4101 * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
4102 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_open_file):
4105 2004-02-20 Andy Wingo <wingo@pobox.com>
4110 * gst/registries/gstxmlregistry.c:
4111 * gst/schedulers/gstoptimalscheduler.c: Debugging tweaks.
4113 * gst/gstelement.c (gst_element_set_scheduler): Debugging fixes.
4114 (gst_element_add_pad): DEBUG->INFO, some fixes.
4115 (gst_element_get_compatible_pad_template): Just see if the
4116 templates' caps intersect, not if one is a strict subset of the
4117 other. This conforms more to what gst_pad_link_intersect() does.
4118 (gst_element_class_add_pad_template): Don't memcpy the pad
4119 template, just ref it.
4120 (gst_element_get_compatible_pad_filtered): Clean up debug messages
4122 * gst/gstpad.c (gst_pad_can_link_filtered): Debug a true result.
4123 (gst_pad_link_filtered): Debug changes.
4124 (gst_pad_link_prepare): New function, consolidated from
4125 can_link_filtered and link_filtered.
4127 * gst/parse/grammar.y (gst_parse_perform_link): Made INFO output
4128 look more like that of the functions in gstelement.c
4130 * gst/gstinfo.c (gst_debug_print_object): Put a space before the
4131 object, and return the empty string if object is NULL.
4133 * gst/parse/parse.l: Remove trailing newlines when calling PRINT.
4134 * gst/parse/grammar.y (YYFPRINTF): Log bison debugging info via
4135 LOG, not DEBUG. We still get flex info on debug.
4137 * gst/registries/gstxmlregistry.c (gst_xml_registry_load): Make
4138 debug string more verbose.
4139 (plugin_times_older_than): DEBUG->LOG.
4141 2004-02-20 Julien MOUTTE <julien@moutte.net>
4143 * gst/gsttag.h: Adding video-codec and audio-codec for demuxers which
4144 will emit found_tag for each stream they demux with the codec.
4146 2004-02-20 Benjamin Otte <otte@gnome.org>
4148 * gst/gstevent.c: (_gst_event_copy), (_gst_event_free):
4149 copy navigation event correctly. Check freeing tag lists.
4150 * gst/gstthread.c: (gst_thread_change_state):
4151 don't abort() on state changing mess - it might happen because of
4153 * gst/gstvalue.c: (gst_value_set_caps), (gst_value_get_caps):
4156 fix GST_VALUE_HOLDS_CAPS
4158 2004-02-19 David Schleef <ds@schleef.org>
4160 * gst/gstinfo.h: Copy G_STRFUNC implementation from glib-2.4
4161 and use it for GST_FUNCTION. (bug #134750)
4163 2004-02-19 Thomas Vander Stichele <thomas at apestaart dot org>
4167 updating translations
4169 2004-02-19 Thomas Vander Stichele <thomas at apestaart dot org>
4171 * tools/gst-run.c: (get_candidates), (main): some fixes from jdahlin
4173 2004-02-18 kost@imn.htwk-leipzig.de
4175 reviewed by: David Schleef <ds@schleef.org>
4177 * docs/libs/gstreamer-libs-sections.txt: Add missing sections
4180 2004-02-18 David Schleef <ds@schleef.org>
4182 * libs/gst/control/dparam.c: (gst_dparam_class_init):
4183 * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
4184 (gst_dpsmooth_new): Additional fixes to get double dparams working.
4185 * tools/gst-inspect.c: (print_element_info): Support dumping of
4186 double dparam information.
4188 2004-02-17 David Schleef <ds@schleef.org>
4190 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_class_init):
4191 Use G_TYPE_STRING in signal prototype instead of G_TYPE_POINTER.
4192 * gst/elements/gsttypefind.c: (gst_type_find_element_class_init):
4193 Use GST_TYPE_CAPS in signal prototype.
4194 * gst/gstcaps.c: (_gst_caps_initialize), (gst_caps_copy_conditional):
4195 Convert GST_TYPE_CAPS to boxed.
4196 * gst/gstelement.c: (gst_element_class_init):
4197 Use GST_TYPE_TAG_LIST in signal prototype.
4198 * gst/gstindex.c: (gst_index_class_init):
4200 Add GST_TYPE_INDEX_ENTRY type.
4201 * gst/gstmarshal.list:
4202 Add necessary marshal types.
4203 * gst/gstpad.c: (gst_real_pad_class_init),
4204 (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
4205 (gst_pad_recover_caps_error):
4206 Use GST_TYPE_CAPS in signal prototypes. Fix some debugging strings.
4207 * gst/gststructure.c: (_gst_structure_initialize),
4208 (gst_structure_copy), (_gst_structure_copy_conditional):
4209 * gst/gststructure.h:
4210 Convert GST_TYPE_STRUCTURE to boxed.
4211 * gst/gsttag.c: (gst_tag_list_get_type):
4213 Add GST_TYPE_TAG_LIST type.
4215 2004-02-17 Julien MOUTTE <julien@moutte.net>
4217 * gst/gstpad.c: (gst_pad_try_set_caps): Reverting my change according
4218 to what we agreed with david.
4219 * gst/gstpad.h: adding GST_PAD_IS_NEGOTIATING macro.
4221 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
4223 * po/nl.po: update translation
4225 2004-02-17 Thomas Vander Stichele <thomas at apestaart dot org>
4227 * gst/autoplug/gstspider.c: (gst_spider_identity_plug):
4228 throw an error if spider is trying to play a mime type there is
4231 add gst/autoplug/gstspider.c for translation
4233 2004-02-17 Julien MOUTTE <julien@moutte.net>
4235 * gst/gstpad.c: (gst_pad_try_set_caps): We are nice people. Return
4236 silently when the pad is negotiating.
4238 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
4240 * docs/faq/Makefile.am:
4241 add script to run gstreamer uninstalled
4243 * docs/faq/developing.xml:
4244 * docs/faq/gst-uninstalled:
4245 extract script to run gstreamer uninstalled
4247 add EXTRA_SOURCES variable for Makefile.am's to set to
4248 use additional SOURCE files for the doc build
4250 2004-02-16 Thomas Vander Stichele <thomas at apestaart dot org>
4252 * gst/gstatomic_impl.h: Fedora 2 test package patch for S390
4254 2004-02-15 Julien MOUTTE <julien@moutte.net>
4256 * gst/gstbin.c: (gst_bin_change_state), (gst_bin_iterate): Fix a big
4257 bug that was breaking pipelines like sinesrc ! { queue ! osssink } when
4258 an error was thrown by osssink. Basically a state change failure for
4259 an element in a different scheduling group was considered as
4260 successful, which means that caps nego was going on and weird stuff
4261 happened. Like I wrote in the comment there, if someone wants to
4262 revert that please drop me a mail explaining why because I really see
4263 no point in keeping that broken behaviour there.
4264 * gst/gstqueue.c: (gst_queue_get): Add a safety check as the queue CAN
4265 be empty, we then return NULL which will trigger a nice error when
4266 pulling from the pad.
4268 2004-02-13 David Schleef <ds@schleef.org>
4270 * libs/gst/control/dparam.c: (gst_dparam_class_init),
4271 (gst_dparam_get_property), (gst_dparam_set_property),
4272 (gst_dparam_do_update_default):
4273 * libs/gst/control/dparam.h:
4274 * libs/gst/control/dparam_smooth.c: (gst_dpsmooth_class_init),
4275 (gst_dpsmooth_new), (gst_dpsmooth_set_property),
4276 (gst_dpsmooth_get_property), (gst_dpsmooth_value_changed_double),
4277 (gst_dpsmooth_do_update_double):
4278 * libs/gst/control/dparam_smooth.h:
4279 * libs/gst/control/dparammanager.c:
4280 (gst_dpman_inline_direct_update):
4281 Add support for double dparams.
4283 2004-02-13 David Schleef <ds@schleef.org>
4285 * gst/elements/gstfdsrc.c: (gst_fdsrc_get): Use GST_TIME_TO_TIMEVAL()
4286 * gst/gstclock.h: Avoid using 64-bit % operator (slow!)
4288 2004-02-13 Mattias Wadman <mattias@sudac.org>
4290 reviewed by: David Schleef <ds@schleef.org>
4292 * gst/elements/gstfdsrc.c: (gst_fdsrc_class_init),
4293 (gst_fdsrc_init), (gst_fdsrc_set_property),
4294 (gst_fdsrc_get_property), (gst_fdsrc_get):
4295 * gst/elements/gstfdsrc.h: Adds timeout property to fdsrc,
4296 and sends an EOS event if file descriptor reading times out.
4298 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
4301 add calls to AM_CONDITIONAL for subsystems for automake 1.6.x
4303 2004-02-13 Thomas Vander Stichele <thomas at apestaart dot org>
4305 * configure.ac: pass required libxml version as argument
4306 (bug reported by Christophe Fergeau)
4308 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4310 * docs/gst/gstreamer-docs.sgml:
4311 * docs/gst/tmpl/gstxml.sgml:
4312 * docs/libs/gstreamer-libs-docs.sgml:
4315 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4318 * gst/gstregistrypool.c: (gst_registry_pool_plugin_filter),
4319 (gst_registry_pool_feature_filter):
4320 * gst/gstthread.c: (gst_thread_class_init):
4322 add includes exposed by building without libxml
4323 * gst/indexers/Makefile.am:
4324 do not build fileindex when LOADSAVE disabled; we should have
4325 a better libxml check later since fileindex depends on xml, not
4326 LOADSAVE or REGISTRY
4327 * libs/gst/control/Makefile.am:
4329 * tools/Makefile.am:
4330 fix wrong source code for gst-xmlinspect
4332 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4335 fix gcov help output
4336 move calls to and use new GST_CHECK_DISABLE_SUBSYSTEM
4337 * docs/random/release:
4338 some updated releasing notes
4339 * gstreamer.spec.in:
4342 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4345 * docs/manual/manual.xml:
4347 * docs/pwg/titlepage.xml:
4348 put version in documentation
4350 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4352 * tools/Makefile.am: fix man page installation
4354 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4357 don't check for libxml when load/save and registry disabled (#105844)
4358 * gstreamer.spec.in:
4359 sync with fedora candidate spec
4361 2004-02-12 Thomas Vander Stichele <thomas at apestaart dot org>
4365 replace multidisksrc with multifilesrc
4367 2004-02-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
4370 update to multidisksrc => multifilesrc file renaming (#134145)
4372 2004-02-11 David Schleef <ds@schleef.org>
4374 * docs/gst/tmpl/gstcaps.sgml: Fix stuff that mentions GstProps
4375 * docs/gst/tmpl/gstpadtemplate.sgml: same
4376 * docs/gst/tmpl/gstreamer-unused.sgml: Remove GstProps
4377 * gst/gstobject.c: (gst_object_set_name_default): Do the memleak
4379 * gst/gstutils.c: Remove disabled code that uses GstProps.
4380 * gst/registries/gstxmlregistry.h: same
4381 * docs/random/ds/0.9-suggested-changes: random notes
4383 2004-02-11 kost@imn.htwk-leipzig.de
4385 reviewed by: David Schleef <ds@schleef.org>
4387 * gst/gstclock.c: (gst_clock_entry_new): fixes structure
4388 initialisation of clock (bug #134128)
4390 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
4393 * gst/elements/Makefile.am:
4394 * gst/elements/gstelements.c:
4395 * gst/elements/gstmultifilesrc.c: (gst_multifilesrc_base_init),
4396 (gst_multifilesrc_class_init), (gst_multifilesrc_init),
4397 (gst_multifilesrc_set_property), (gst_multifilesrc_get_property),
4398 (gst_multifilesrc_get), (gst_multifilesrc_open_file),
4399 (gst_multifilesrc_close_file), (gst_multifilesrc_change_state):
4400 * gst/elements/gstmultifilesrc.h:
4401 rename multidisksrc to multifilesrc (part of #122200)
4403 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
4406 fix automake complaints
4407 * gst-element-check.m4:
4410 2004-02-11 David Schleef <ds@schleef.org>
4412 * docs/gst/Makefile.am: Call gst_init() in built gstreamer-scan.
4413 * gst/gstatomic_impl.h: Disable sparc implementation.
4415 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
4417 * gst-element-check.m4:
4418 fix underquoted macros as reported by automake 1.8.x (#133800)
4420 require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
4421 by autopoint (fixes #132996)
4423 2004-02-10 Andy Wingo <wingo@pobox.com>
4425 * gst/gstpad.c (gst_pad_custom_new): Add a FIXME, this is a hacky
4426 way to do inheritance.
4427 (gst_pad_get_event_masks, gst_pad_get_event_masks_default)
4428 (gst_pad_get_query_types, gst_pad_get_query_types_default):
4430 (gst_pad_set_link_function, gst_pad_set_fixate_function)
4431 (gst_pad_set_getcaps_function): Doc from Dave's negotation random
4433 (gst_pad_unlink, gst_pad_is_linked): Docs.
4434 (gst_pad_renegotiate): A brief description of capsnego.
4435 (gst_pad_try_set_caps): Document.
4436 (gst_pad_try_set_caps_nonfixed): Document.
4437 (gst_pad_can_link_filtered, gst_pad_link_filtered): Doc fixes.
4438 (gst_pad_set_parent): Deprecated (although not out of the API).
4439 (gst_pad_get_parent): Deprecated, although many plugins use this.
4440 (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad): Doc that these
4441 are private and will go away in 0.9.
4442 (gst_pad_perform_negotiate): Doc.
4443 (gst_pad_link_unnegotiate): I think this is meant to be static.
4444 (gst_pad_get_negotiated_caps, gst_pad_get_pad_template_caps)
4445 (gst_pad_template_get_caps_by_name, gst_pad_check_compatibility)
4446 (gst_pad_get_peer): Doc updates.
4447 (gst_pad_caps_change_notify): Doc.
4448 (gst_pad_alloc_buffer, gst_pad_push, gst_static_pad_template_get)
4449 (gst_ghost_pad_new): Doc fixes.
4451 * gst/gstobject.c (gst_object_get_parent, gst_object_unparent)
4452 (gst_object_check_uniqueness):
4454 * gst/gstelement.c (gst_element_add_pad)
4455 (gst_element_add_ghost_pad, gst_element_remove_pad)
4456 (gst_element_remove_ghost_pad, gst_element_get_pad)
4457 (gst_element_get_static_pad, gst_element_get_pad_list)
4458 (gst_element_class_get_pad_template_list)
4459 (gst_element_class_get_pad_template): Work on the docs.
4460 (gst_element_get_pad_template_list): Uses the class method.
4461 (gst_element_get_compatible_pad_template): Docs, and consolidate
4462 some test conditions.
4463 (gst_element_get_pad_from_template): New static function.
4464 (gst_element_request_compatible_pad): Docs, and work with
4465 non-request compatible templates.
4466 (gst_element_get_compatible_pad_filtered): Docs and remove
4468 (gst_element_get_compatible_pad, gst_element_link_pads_filtered)
4469 (gst_element_link_filtered, gst_element_link_many)
4470 (gst_element_link, gst_element_link_pads)
4471 (gst_element_unlink_many): Docs.
4473 2004-02-05 Andy Wingo <wingo@pobox.com>
4475 * gst/gstpad.c (_gst_real_pad_fixate_accumulator):
4478 * gst/gstmarshal.list (VOID:BOXED, BOXED:BOXED): New marshallers.
4480 * gst/gstpad.c (gst_real_pad_class_init): Use a BOXED:BOXED
4481 marshaller for ::fixate, and VOID:BOXED for ::caps-nego-failed,
4482 with the type=GST_TYPE_CAPS. This allows language bindings to know
4483 what kind of data they're dealing with.
4485 * gst/gstcaps.c (_gst_caps_value_init): GBoxed values initialize
4486 to NULL when g_value_init is called. GstCaps, which rolls its own
4487 type implementation, now does the same instead of allocating empty
4489 (_gst_caps_initialize, _gst_caps_collect_value,
4490 _gst_caps_lcopy_value): Provide collect_value and lcopy_value type
4491 table methods. This allows G_VALUE_COLLECT to work.
4493 2004-02-05 Andy Wingo <wingo@pobox.com>
4496 * testsuite/Makefile.am (SUBDIRS):
4497 * testsuite/ghostpads/Makefile.am:
4498 * testsuite/ghostpads/ghostpads.c: A new test for ghost pads.
4500 * gst/gstpad.c (gst_pad_add_ghost_pad, gst_pad_remove_ghost_pad):
4501 These two routines are the only ones that set
4502 GST_GPAD_REALPAD(gpad), the ghost pad list, and the ghost pad's
4503 pad template. They should be made static, depending on ABI needs.
4504 (gst_real_pad_dispose): Handle the case of ghost pads without a
4505 parent. Assert after dealing with ghost pads that the ghost pad
4507 (gst_ghost_pad_class_init): New property added, ::real-pad. Can be
4509 (gst_ghost_pad_dispose): Set ::real-pad to NULL.
4510 (gst_ghost_pad_set_property, gst_ghost_pad_get_property): New
4511 functions. set_property will call add_ghost_pad/remove_ghost_pad
4513 (gst_ghost_pad_new): All the work is offloaded to g_object_new.
4515 * gst/gstelement.c (gst_element_add_pad): Handle ghost pads as well.
4516 (gst_element_add_ghost_pad): Remove code duplicated from _add_pad.
4517 (gst_element_remove_pad): Handle ghost pads as well.
4518 (gst_element_remove_ghost_pad): Deprecated (could be removed,
4519 depending on API-stability needs).
4521 2004-02-05 Andy Wingo <wingo@pobox.com>
4523 * gst/gstbin.[ch]: (gst_bin_get_by_interface): GTypes are scalars,
4524 of course they're const
4526 2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
4528 * tools/Makefile.am:
4529 * tools/gst-feedback:
4530 * tools/gst-feedback-0.7:
4531 make gst-feedback versioned too for consistency
4533 2004-02-11 David Schleef <ds@schleef.org>
4535 * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
4536 (gst_pad_try_set_caps): Fix format strings for GST_PTR_FORMAT.
4538 2004-02-10 Julien MOUTTE <julien@moutte.net>
4540 * gst/gstevent.c: (_gst_event_free): Sometimes a tag event arrives but
4541 the structure does not contain a valid tag list. Adding a safety check
4542 to remove a noisy warning in that case.
4544 2004-02-10 Thomas Vander Stichele <thomas at apestaart dot org>
4546 * gst/gst.c: fix name to be in line with others
4548 2004-02-09 Julien MOUTTE <julien@moutte.net>
4550 * libs/gst/bytestream/bytestream.c: (gst_bytestream_peek): We should
4551 not shout that loud when len is 0. Just return 0 silently.
4553 2004-02-09 Julien MOUTTE <julien@moutte.net>
4555 * gst/gstdata.c: (gst_data_ref): Adding a categorized debug on data_ref
4556 because data_unref has one and I prefer the debug to be symetric.
4557 * gst/gstqueue.c: (gst_queue_locked_flush): Fix a huge memleak. Buffers
4558 were refed when added to the queue and unrefed only once when the queue
4559 was flushed. Now the flush handler unref the buffers two times : first
4560 unref for the ref added when pushing in the queue's tail and second
4561 unref to destroy the flushed buffer.
4563 2004-02-08 Thomas Vander Stichele <thomas at apestaart dot org>
4565 * docs/pwg/building-boiler.xml: fix cvs checkout documentation
4567 2004-02-06 David Schleef <ds@schleef.org>
4569 * docs/random/ds/0.9-suggested-changes: Random ramblings
4570 * gst/elements/gstfilesrc.c: (gst_filesrc_get_mmap): Cast size_t
4571 to int before printing.
4572 * gst/parse/grammar.y: Fix gcc-2.95 style variadic macros.
4573 * gst/parse/parse.l: same. See bug #129600
4575 2004-02-06 David Schleef <ds@schleef.org>
4577 * gst/gstindex.c: (gst_index_add_format), (gst_index_add_id),
4578 (gst_index_add_entry), (gst_index_add_associationv),
4579 (gst_index_add_association): Add gst_index_add_associationv()
4580 and clean up gst_index_add_association(). #127133
4582 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
4584 * autogen.sh: check out common with right tag if CVS/Tag exists
4586 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
4588 * testsuite/ghostpads/ghostpads.c: (main):
4589 fix testsuite from segfaulting
4591 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
4593 * Makefile.am: add release target
4594 * configure.ac: bump nano to 1
4595 * docs/random/release:
4597 2004-02-06 Benjamin Otte <in7y118@public.uni-hamburg.de>
4600 * gst/gstelement.c: (gst_element_base_class_init),
4601 (gst_element_class_set_details), (gst_element_clear_pad_caps):
4602 * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
4603 (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
4604 (gst_real_pad_dispose):
4605 * gst/gststructure.c: (gst_structure_free),
4606 (gst_structure_from_string):
4607 put reverted patch back in
4608 * gst/gstelement.c: (gst_element_remove_pad):
4609 free explicit caps if they're set
4610 * gst/gstpad.c: (_gst_pad_default_fixate_func):
4611 copy the structure when fixating
4613 2004-02-05 David Schleef <ds@schleef.org>
4615 * gst/gstmarshal.list:
4616 * gst/gstpad.c: (gst_real_pad_class_init),
4617 (_gst_real_pad_fixate_accumulator):
4618 Revert POINTER->BOXED change in signal marshaller.
4620 === release 0.7.4 ===
4622 2004-02-06 Thomas Vander Stichele <thomas at apestaart dot org>
4624 * NEWS: GStreamer 0.7.4 "Wooden Eels" released
4625 * configure.ac: changed for release
4627 2004-02-05 Thomas Vander Stichele <thomas (at) apestaart (dot) org>
4629 * gstreamer.spec.in:
4630 bump required version of gtk-doc
4632 2004-02-05 Thomas Vander Stichele <thomas at apestaart dot org>
4635 * gst/gstelement.c: (gst_element_base_class_init),
4636 (gst_element_class_set_details), (gst_element_clear_pad_caps):
4637 * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
4638 (gst_pad_try_set_caps), (gst_pad_can_link_filtered),
4639 (gst_real_pad_dispose):
4640 * gst/gststructure.c: (gst_structure_free),
4641 (gst_structure_from_string):
4642 revert patch that breaks applications, reapply after release
4643 to get this fixed properly
4645 2004-02-05 Benjamin Otte <in7y118@public.uni-hamburg.de>
4647 * gst/gsttag.c: (_gst_tag_initialize):
4649 remove duplicated field GST_TAG_APPLICATION. It's GST_TAG_ENCODER
4651 2004-02-04 David Schleef <ds@schleef.org>
4654 * gst/autoplug/gstspider.c: (gst_spider_request_new_pad),
4655 (gst_spider_plug_from_srcpad):
4656 * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link):
4658 2004-02-04 David Schleef <ds@schleef.org>
4660 * gst/gstelement.c: (gst_element_clear_pad_caps): Make sure we have
4661 a GstRealPad before accessing its structure members.
4663 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
4665 * gst/gstclock.c: (gst_clock_init), (gst_clock_set_speed),
4666 (gst_clock_get_speed):
4668 reset padding, remove unused fields
4670 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
4672 * gst/autoplug/gstspideridentity.c:
4673 (gst_spider_identity_sink_loop_type_finding):
4674 use get_allowed_caps, not get_caps (fixes #132519)
4675 * gst/elements/gsttypefind.c: (stop_typefinding):
4676 use correct order when sending buffers and seeking
4678 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
4684 upgrade libtool CURRENT, reset padding
4686 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
4690 put back AM_PROG_LIBTOOL to make libtoolize stop complaining
4692 2004-02-04 David Schleef <ds@schleef.org>
4694 * docs/random/ds/0.9-suggested-changes: random notes
4695 * gst/elements/gstfakesrc.c: (gst_fakesrc_get_formats),
4696 (gst_fakesrc_get_query_types), (gst_fakesrc_get_event_mask):
4697 Replace GST_PAD_EVENT_MASK_FUNCTION() (et al.) with its
4699 * gst/elements/gstfilesink.c: (gst_filesink_get_formats),
4700 (gst_filesink_get_query_types): same
4701 * gst/elements/gstfilesrc.c: (gst_filesrc_get_event_mask),
4702 (gst_filesrc_get_query_types), (gst_filesrc_get_formats): same
4703 * gst/gstcaps.h: deprecate GST_DEBUG_CAPS(), and fix the macro
4704 to use new GST_PTR_FORMAT.
4705 * gst/gstelement.h: deprecate function factory macros
4706 GST_ELEMENT_QUERY_TYPE_FUNCTION(), GST_ELEMENT_EVENT_MASK_FUNCTION().
4707 These are our last variadic macros that can't be replaced with
4708 inlines. Celebrate! Also fix a typo in an #ifdef that was
4709 attempting to deprecate gst_element_clock_wait().
4710 * gst/gstevent.h: same
4711 * gst/gstpad.c: (gst_pad_link_intersect), (gst_pad_link_fixate),
4712 (gst_pad_try_set_caps): replace GST_DEBUG_CAPS() with GST_DEBUG()
4713 * gst/gstpad.h: deprecate function factory macros similar to above.
4715 2004-02-04 Thomas Vander Stichele <thomas at apestaart dot org>
4718 * tools/Makefile.am:
4719 * tools/gst-run.c: (popt_callback), (hash_print_key),
4720 (find_highest_version), (unmangle_libtool), (get_dir_of_binary),
4721 (get_candidates), (main):
4722 add new source file to generate non-versioned wrapper binaries
4725 2004-02-04 Benjamin Otte <in7y118@public.uni-hamburg.de>
4727 * gst/gstevent.c: (_gst_event_free):
4728 actually break; inside the switch statement
4729 * gst/parse/grammar.y:
4730 fix memleak where GValues weren't unset
4732 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
4734 * gst/gststructure.c: (gst_structure_from_string):
4736 * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
4737 (new_entry), (gst_type_find_element_chain):
4738 * gst/gstelement.c: (gst_element_base_class_init),
4739 (gst_element_class_set_details):
4740 * gst/gstpad.c: (gst_pad_can_link_filtered):
4741 fix smaller memleaks
4742 * gst/gstpad.c: (gst_real_pad_dispose):
4743 check that explicit caps are gone
4744 * gst/gststructure.c: (gst_structure_free):
4745 actually free the structure
4746 * gst/gstelement.c: (gst_element_clear_pad_caps):
4749 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
4751 * tools/Makefile.am:
4752 use AM_CFLAGS since all the CFLAGS are the same
4755 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
4757 * docs/manual/gnome.xml:
4758 expand example a little
4759 * gst/gst.c: (gst_init_with_popt_table),
4760 (gst_init_check_with_popt_table), (init_pre), (init_popt_callback):
4761 make sure popt option displays are done with right textdomain
4762 use GstPoptOption type
4764 create GstPoptOption type
4766 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
4768 * gst/gsterror.c: (_gst_stream_errors_init):
4770 adding error type for no codec
4774 update dutch translation
4775 * tools/gst-inspect.c: (print_element_list), (main):
4776 do proper internationalization
4777 * tools/gst-launch.c: (idle_func):
4778 remove commented out function call
4780 2004-02-03 Thomas Vander Stichele <thomas at apestaart dot org>
4783 add some error fixing notes
4784 * docs/gst/gstreamer-sections.txt:
4785 remove double entries
4786 * docs/gst/tmpl/gstbin.sgml:
4787 * docs/gst/tmpl/gstclock.sgml:
4789 * docs/gst/tmpl/gstelement.sgml:
4790 * docs/gst/tmpl/gstindex.sgml:
4791 * docs/gst/tmpl/gstobject.sgml:
4792 * docs/gst/tmpl/gstpadtemplate.sgml:
4793 * docs/gst/tmpl/gstreamer-unused.sgml:
4794 * docs/gst/tmpl/gsttag.sgml:
4795 * docs/gst/tmpl/gstthread.sgml:
4796 * docs/gst/tmpl/gstxml.sgml:
4798 sync header prototypes with c decls
4799 * gst/gsttaginterface.c:
4802 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
4804 * gst/parse/Makefile.am:
4806 get rid of gstmarshal.h dependency. It's not needed.
4808 * gst/elements/gstfakesink.c:
4809 * gst/elements/gstfakesrc.c:
4810 * gst/elements/gstidentity.c:
4818 * libs/gst/control/dparam.c:
4819 * libs/gst/control/dparammanager.c:
4820 include gstmarshal.h.
4823 2004-02-03 Benjamin Otte <in7y118@public.uni-hamburg.de>
4825 * gst/elements/gstfilesrc.c: (gst_filesrc_init),
4826 (gst_filesrc_dispose), (gst_filesrc_free_parent_mmap),
4827 (gst_filesrc_map_region), (gst_filesrc_get_mmap):
4828 * gst/elements/gstfilesrc.h:
4829 don't ref the filesrc when creating mmaped buffers. Don't keep a
4830 list of not-yet-destroyed buffers.
4832 Deprecated BST_BUFFER_FREE_FUNC and GST_BUFFER_COPY_FUNC
4834 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
4836 * gst/gst.c: (init_pre):
4839 2004-02-02 Ronald Bultje <rbultje@ronald.bitfreak.net>
4841 * docs/pwg/advanced-events.xml:
4842 * docs/pwg/advanced-scheduling.xml:
4843 * docs/pwg/intro-basics.xml:
4844 * docs/pwg/other-manager.xml:
4845 * docs/pwg/other-nton.xml:
4846 * docs/pwg/other-ntoone.xml:
4847 * docs/pwg/other-oneton.xml:
4849 All sort of documentation... Forgot what. Point is that I want this
4850 in before I leave. The 'other-*' will be the last section and will
4851 explain issues specific to these type of elements.
4853 2004-02-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
4855 * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
4856 (gst_filesrc_get_read):
4857 set all the values on buffers that we can
4859 2004-02-02 David Schleef <ds@schleef.org>
4861 Change usage of isblah() to g_ascii_isblah() to be more locale
4862 independent. (#133076)
4863 * gst/gsturi.c: (gst_uri_protocol_check_internal):
4865 * gst/parse/parse.l:
4867 2004-02-02 Jon Trowbridge <trow@gnu.org>
4869 reviewed by: David Schleef <ds@schleef.org>
4872 * gst/gstcaps.c: (gst_caps_to_string):
4873 * gst/registries/gstxmlregistry.c:
4874 (gst_xml_registry_add_path_list_func),
4875 (gst_xml_registry_parse_padtemplate):
4877 2004-02-02 Thomas Vander Stichele <thomas at apestaart dot org>
4879 * gst/gstelement.c: (gst_element_default_error):
4880 suffix error messages with period
4882 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
4884 * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
4885 * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
4886 * gst/gsterror.c: (gst_error_get_message):
4890 Update translation files
4892 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
4894 * gst/autoplug/gstspideridentity.c:
4895 (gst_spider_identity_sink_loop_type_finding):
4896 * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
4897 * gst/elements/gstfilesink.c: (gst_filesink_open_file),
4898 (gst_filesink_close_file), (gst_filesink_handle_event),
4899 (gst_filesink_chain):
4900 * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
4901 (gst_filesrc_get_read), (gst_filesrc_open_file):
4902 * gst/elements/gstidentity.c: (gst_identity_chain):
4903 * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
4904 * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
4905 (gst_pipefilter_chain), (gst_pipefilter_open_file):
4906 * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
4907 * gst/gsterror.c: (_gst_core_errors_init),
4908 (_gst_library_errors_init), (_gst_resource_errors_init),
4909 (_gst_stream_errors_init), (gst_error_get_message):
4910 * gst/gstpad.c: (gst_pad_set_explicit_caps),
4911 (gst_pad_recover_caps_error), (gst_pad_pull):
4912 * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
4913 * gst/schedulers/gstbasicscheduler.c:
4914 (gst_basic_scheduler_chainhandler_proxy),
4915 (gst_basic_scheduler_gethandler_proxy),
4916 (gst_basic_scheduler_cothreaded_chain):
4917 Suffix error messages with period.
4918 Use (NULL) instead of NULL
4920 2004-01-31 Thomas Vander Stichele <thomas at apestaart dot org>
4922 * docs/gst/tmpl/gstelement.sgml:
4923 * docs/gst/tmpl/gstxml.sgml:
4924 * gst/gstelement.c: (gst_element_error_full):
4925 add element path to error
4927 2004-01-31 Benjamin Otte <in7y118@public.uni-hamburg.de>
4929 * docs/random/mimetypes:
4930 update raw int/float info
4931 * gst/gsttag.c: (_gst_tag_initialize):
4935 2004-01-30 David Schleef <ds@schleef.org>
4937 * gst/cothreads.c: Add another fallback if MAP_ANONYMOUS is
4940 2004-01-30 Laurent Vivier <Laurent.Vivier@bull.net>
4942 reviewed by Benjamin Otte
4943 parts of the patch submitted in bug #113913
4946 use AC_C_INLINE. Use = instead of == with test
4947 * examples/plugins/example.c:
4948 * gst/autoplug/gstspideridentity.c:
4949 * gst/elements/gstfdsrc.c:
4950 * gst/elements/gstfilesrc.c:
4951 * gst/elements/gstidentity.c:
4952 * gst/elements/gstmultidisksrc.c:
4953 * gst/elements/gststatistics.c:
4957 * gst/gstpipeline.c:
4959 don't end enums with a comma
4960 * gst/gstindex.c: (gst_index_compare_func):
4961 do explicit casting to gint
4962 * gst/gsttrace.c: (gst_trace_text_flush):
4963 #define strsize as a macro
4965 2004-01-30 Thomas Vander Stichele <thomas at apestaart dot org>
4968 * docs/gst/gstreamer-docs.sgml:
4969 * docs/gst/gstreamer-sections.txt:
4970 * docs/gst/tmpl/gstelement.sgml:
4971 * docs/gst/tmpl/gsterror.sgml:
4972 * docs/gst/tmpl/gstinterface.sgml:
4973 * docs/gst/tmpl/gstreamer-unused.sgml:
4974 * docs/gst/tmpl/gststructure.sgml:
4975 * docs/gst/tmpl/gsttag.sgml:
4976 * docs/gst/tmpl/gsttaginterface.sgml:
4977 * docs/gst/tmpl/gstvalue.sgml:
4978 make sure all API ends up in the built docs
4979 * gst/gstinterface.c:
4980 * gst/gststructure.c: (gst_structure_id_set_value),
4981 (gst_structure_set_value), (gst_structure_id_get_value):
4982 * gst/gststructure.h:
4984 sync .h with .c declarations
4986 2004-01-30 Julien Moutte <julien@moutte.net>
4988 * libs/gst/bytestream/bytestream.c: Reverting my event handling patch.
4989 Ronald will fix riffread.
4991 2004-01-30 Ronald Bultje <rbultje@ronald.bitfreak.net>
4993 * docs/pwg/advanced-interfaces.xml:
4994 Added tuner interface docs.
4996 2004-01-30 Benjamin Otte <in7y118@public.uni-hamburg.de>
4998 * docs/random/mimetypes:
4999 correct Theora information
5001 make GST_ELEMENT_ERROR do a GST_ERROR_OBJECT
5003 2004-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
5005 * gst/gstelement.c: (gst_element_error_full):
5007 GST_ELEMENT_ERROR in enum -> _IN_ERROR
5009 2004-01-29 Julien MOUTTE <julien@moutte.net>
5011 * gst/elements/gstfilesrc.c: (gst_filesrc_get),
5012 (gst_filesrc_uri_handler_init): Fixing seeking by making FLUSH happen
5013 again and even before DISCONT.
5014 * gst/gstpad.c: (gst_pad_event_default): Remove a unused switch case.
5015 * libs/gst/bytestream/bytestream.c: (gst_bytestream_get_next_buf): Fix
5016 bytestream so that it's not stopping to fill the bytestream if events
5017 different than EOS or DISCONT are received. Instead it process them so
5018 that they go downstream.
5020 2004-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
5022 * docs/gst/tmpl/gstelement.sgml:
5023 * docs/gst/tmpl/gstreamer-unused.sgml:
5024 * docs/gst/tmpl/gstxml.sgml:
5025 * gst/autoplug/gstspideridentity.c:
5026 (gst_spider_identity_sink_loop_type_finding):
5027 * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
5028 * gst/elements/gstfilesink.c: (gst_filesink_open_file),
5029 (gst_filesink_close_file), (gst_filesink_handle_event),
5030 (gst_filesink_chain):
5031 * gst/elements/gstfilesrc.c: (gst_filesrc_map_region),
5032 (gst_filesrc_get_read), (gst_filesrc_open_file):
5033 * gst/elements/gstidentity.c: (gst_identity_chain):
5034 * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
5035 * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
5036 (gst_pipefilter_chain), (gst_pipefilter_open_file):
5037 * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
5039 * gst/gstpad.c: (gst_pad_set_explicit_caps),
5040 (gst_pad_recover_caps_error), (gst_pad_pull):
5041 * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
5042 * gst/schedulers/gstbasicscheduler.c:
5043 (gst_basic_scheduler_chainhandler_proxy),
5044 (gst_basic_scheduler_gethandler_proxy),
5045 (gst_basic_scheduler_cothreaded_chain):
5046 gst_element_error -> GST_ELEMENT_ERROR
5048 2004-01-29 Thomas Vander Stichele <thomas at apestaart dot org>
5051 * docs/gst/tmpl/gstelement.sgml:
5052 * docs/gst/tmpl/gstxml.sgml:
5054 * docs/pwg/advanced-request.xml:
5055 * docs/pwg/advanced-scheduling.xml:
5056 * docs/pwg/advanced-tagging.xml:
5057 fix non-validating docbook using CDATA
5058 make sure make check-local gets run first to check if it validates
5060 2004-01-29 Julien MOUTTE <julien@moutte.net>
5062 * docs/pwg/advanced-events.xml: Adding documentation on advanced event
5063 handling (up and downstream).
5064 * docs/pwg/advanced-interfaces.xml: Make it coherent with the
5067 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
5069 * docs/pwg/advanced-tagging.xml:
5070 Add docs about tag writing.
5072 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
5074 * docs/pwg/advanced-tagging.xml:
5075 Add a part about tag reading and application signalling... Tag
5076 writing still needs to be documented.
5077 * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
5078 We can set file locations in READY, too.
5080 2004-01-29 Julien MOUTTE <julien@moutte.net>
5082 * docs/random/ds/element-checklist: Adding some notes about src
5085 2004-01-29 Ronald Bultje <rbultje@ronald.bitfreak.net>
5087 * docs/random/mimetypes:
5088 Update docs to point to correct elements for various mimetypes, and
5089 some more errors pointed out by Stéphane LOEUILLET (aka LeRoutier)
5090 <stephane.loeuillet@tiscali.fr>.
5092 2004-01-28 David Schleef <ds@schleef.org>
5094 * docs/pwg/intro-basics.xml: rewrite bufferpool stuff.
5096 2004-01-29 Benjamin Otte <in7y118@public.uni-hamburg.de>
5098 * docs/random/mimetypes:
5099 update docs for audio/x-raw-float. Add "buffer-frames=0 means
5101 * gst/elements/gstfilesrc.c: (gst_filesrc_set_location):
5102 make it only work in NULL.
5104 don't posion NULL caps
5105 * gst/gstelement.c: (gst_element_set_time):
5106 add debugging statement
5107 * gst/gstelement.c: (gst_element_emit_found_tag),
5108 (gst_element_found_tag_func), (gst_element_found_tags):
5110 These functions take const taglists
5111 * gst/gstpad.c: (gst_pad_proxy_getcaps):
5113 * gst/gstpad.c: (gst_pad_event_default):
5114 make more effort on handling discont and clocks, g_warn if everything
5116 * gst/gststructure.c: (gst_structure_remove_fields),
5117 (gst_structure_remove_fields_valist):
5118 * gst/gststructure.h:
5119 add gst_structure_remove_fields(_valist)
5123 2004-01-28 David Schleef <ds@schleef.org>
5125 * docs/random/ds/element-checklist: Notes about gst_caps_to_string()
5126 * gst/registries/gstxmlregistry.c: (gst_xml_registry_save_caps):
5127 Fix memory leakage of gst_caps_to_string().
5129 Use GST_PTR_FORMAT instead of gst_caps_to_string():
5130 * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_sp):
5131 * gst/autoplug/gstspideridentity.c: (spider_find_suggest),
5132 (gst_spider_identity_sink_loop_type_finding):
5133 * gst/elements/gsttypefind.c: (gst_type_find_element_have_type),
5135 * gst/gstpad.c: (gst_pad_try_relink_filtered),
5136 (gst_pad_set_explicit_caps):
5137 * gst/parse/grammar.y:
5139 2004-01-28 David Schleef <ds@schleef.org>
5141 * configure.ac: Add detection for HAVE_PRINTF_EXTENSION and
5142 GST_PRINTF_EXTENSION_FORMAT_DEFINE.
5143 * docs/random/ds/0.9-suggested-changes: Notes from Company.
5144 * gst/gstcaps.c: (gst_caps_to_string): Add comment.
5145 * gst/gstconfig.h.in: Add define for GST_PTR_FORMAT
5146 * gst/gstinfo.c: (_gst_debug_init), (gst_debug_print_object),
5147 (gst_debug_log_default), (_gst_info_printf_extension),
5148 (_gst_info_printf_extension_arginfo): Add printf extension.
5149 * gst/gstinfo.h: remove G_GNUC_PRINTF, because it doesn't work with %P
5150 * gst/gststructure.c: (gst_structure_to_string),
5151 (_gst_structure_parse_value): Use gst_value_deserialize() and
5153 * gst/gstvalue.c: (gst_value_deserialize_fourcc),
5154 (gst_value_deserialize_boolean), (gst_strtoi),
5155 (gst_value_deserialize_int), (gst_value_deserialize_double),
5156 (gst_value_deserialize_string), (gst_value_deserialize): Implement
5157 a bunch of deserialize functions and gst_value_deserialize.
5158 * gst/gstvalue.h: er, _de_serialize, not unserialize
5159 * testsuite/caps/string-conversions.c: (main): We don't currently
5160 handle (float) in caps, so convert these to (double).
5161 * testsuite/debug/Makefile.am: Add new test for the printf extension
5162 * testsuite/debug/printf_extension.c: (main): same
5164 2004-01-28 Benjamin Otte <in7y118@public.uni-hamburg.de>
5166 * docs/random/company/time:
5167 Add some docs about clocking and time
5169 2004-01-28 Julien MOUTTE <julien@moutte.net>
5171 * docs/pwg/advanced-interfaces.xml: Adding XOverlay documentation.
5173 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5175 * docs/pwg/advanced-clock.xml:
5176 * docs/pwg/advanced-dparams.xml:
5177 * docs/pwg/advanced-events.xml:
5178 * docs/pwg/advanced-interfaces.xml:
5179 * docs/pwg/advanced-midi.xml:
5180 * docs/pwg/advanced-request.xml:
5181 * docs/pwg/advanced-scheduling.xml:
5182 * docs/pwg/advanced-tagging.xml:
5183 * docs/pwg/advanced-types.xml:
5184 * docs/pwg/appendix-checklist.xml:
5185 * docs/pwg/building-boiler.xml:
5186 * docs/pwg/building-chainfn.xml:
5187 * docs/pwg/building-filterfactory.xml:
5188 * docs/pwg/building-pads.xml:
5189 * docs/pwg/building-props.xml:
5190 * docs/pwg/building-signals.xml:
5191 * docs/pwg/building-state.xml:
5192 * docs/pwg/building-testapp.xml:
5193 * docs/pwg/intro-basics.xml:
5194 * docs/pwg/intro-preface.xml:
5195 * docs/pwg/other-autoplugger.xml:
5196 * docs/pwg/other-sink.xml:
5197 * docs/pwg/other-source.xml:
5198 * docs/pwg/titlepage.xml:
5201 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5206 * docs/building-the-docs-on-debian:
5207 collect relevant bits of doc info
5209 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5211 * docs/pwg/advanced_tagging.xml:
5212 Half-assed commit so Thomas can re-arrange document IDs here to be
5215 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5217 * docs/manual/autoplugging.xml:
5218 * docs/manual/bins-api.xml:
5219 * docs/manual/bins.xml:
5220 * docs/manual/buffers-api.xml:
5221 * docs/manual/buffers.xml:
5222 * docs/manual/clocks.xml:
5223 * docs/manual/components.xml:
5224 * docs/manual/cothreads.xml:
5225 * docs/manual/debugging.xml:
5226 * docs/manual/dparams-app.xml:
5227 * docs/manual/dynamic.xml:
5228 * docs/manual/elements-api.xml:
5229 * docs/manual/elements.xml:
5230 * docs/manual/factories.xml:
5231 * docs/manual/gnome.xml:
5232 * docs/manual/goals.xml:
5233 * docs/manual/helloworld.xml:
5234 * docs/manual/helloworld2.xml:
5235 * docs/manual/init-api.xml:
5236 * docs/manual/intro.xml:
5237 * docs/manual/links-api.xml:
5238 * docs/manual/links.xml:
5239 * docs/manual/manual.xml:
5240 * docs/manual/motivation.xml:
5241 * docs/manual/pads-api.xml:
5242 * docs/manual/pads.xml:
5243 * docs/manual/plugins-api.xml:
5244 * docs/manual/plugins.xml:
5245 * docs/manual/programs.xml:
5246 * docs/manual/queues.xml:
5247 * docs/manual/quotes.xml:
5248 * docs/manual/schedulers.xml:
5249 * docs/manual/states-api.xml:
5250 * docs/manual/states.xml:
5251 * docs/manual/threads.xml:
5252 * docs/manual/typedetection.xml:
5253 * docs/manual/xml.xml:
5254 use chapter, part, section or misc as id starts for all bits
5256 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5258 * docs/gst/gstreamer-sections.txt:
5259 Fix up TITLE of the sections
5261 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5263 * docs/pwg/advanced_interfaces.xml:
5264 Add documentation on propertyprobing.
5265 * docs/pwg/advanced_events.xml:
5266 * docs/pwg/advanced_tagging.xml:
5267 * docs/pwg/building_boiler.xml:
5268 * docs/pwg/building_filterfactory.xml:
5270 Move filterfactory and tagging into their own chapter, add a chapter
5271 on events. all these are empty placeholders that will be filled in
5274 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5276 * docs/pwg/advanced_interfaces.xml:
5277 Docs for mixer interface. Also a check for website uploading.
5279 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5283 * docs/faq/Makefile.am:
5284 * docs/gst/Makefile.am:
5285 * docs/gst/tmpl/gstelement.sgml:
5286 * docs/gst/tmpl/gstplugin.sgml:
5287 * docs/gst/tmpl/gstreamer-unused.sgml:
5288 * docs/libs/Makefile.am:
5289 * docs/manual/Makefile.am:
5291 * docs/pwg/Makefile.am:
5293 Separate out upload target and make it similar for
5294 both docbook and gtk-doc docs
5296 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5299 Fix upload target to work with freedesktop
5301 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5303 * docs/pwg/advanced_types.xml:
5304 Add notes on creating your own types.
5305 * docs/pwg/building_boiler.xml:
5306 * docs/pwg/building_pads.xml:
5307 * docs/pwg/building_state.xml:
5308 Add some stuff about how to retrieve values from structures, how
5309 that relates to types and change layout slightly again to be almost
5312 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5314 * docs/pwg/advanced_dparams.xml:
5315 * docs/pwg/advanced_scheduling.xml:
5316 Change index layout slightly.
5318 2004-01-28 Ronald Bultje <rbultje@ronald.bitfreak.net>
5320 * docs/pwg/advanced_clock.xml:
5321 * docs/pwg/advanced_interfaces.xml:
5322 * docs/pwg/advanced_midi.xml:
5323 General placeholders for now.
5324 * docs/pwg/advanced_request.xml:
5325 Explanation about sometimes and request pads.
5326 * docs/pwg/advanced_scheduling.xml:
5327 Concept of bytestream, loopfunctions and schedulers.
5328 * docs/pwg/building_boiler.xml:
5329 Add something about plugin-init.
5331 2004-01-28 Thomas Vander Stichele <thomas at apestaart dot org>
5333 * docs/pwg/building_pads.xml:
5336 2004-01-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
5338 * docs/pwg/advanced_interfaces.xml:
5340 Add as a placeholder for future filling-in.
5341 * docs/pwg/basics_autoplugging.xml:
5342 * docs/pwg/basics_buffers.xml:
5343 * docs/pwg/basics_elements.xml:
5344 * docs/pwg/basics_events.xml:
5345 * docs/pwg/basics_plugins.xml:
5346 * docs/pwg/basics_types.xml:
5347 Remove, because unused (this is all in intro_basics.xml).
5348 * docs/pwg/building_signals.xml:
5349 Short intro to signals + reference to GObject docs - we really
5350 shouldn't go into these sort of things to deply because we don't
5351 use them that extensively anyway.
5352 * docs/pwg/building_state.xml:
5353 Explanation of states. Benjamin, please check.
5354 * docs/pwg/building_testapp.xml:
5355 Put everything in one page - putting only a few lines of content
5356 per page doesn't really make sense.
5358 Time to get into the advanced topics. ;).
5360 2004-01-27 Ronald Bultje <rbultje@ronald.bitfreak.net>
5362 * docs/pwg/advanced_types.xml:
5363 Finish documenting the current state of mimetypes.
5364 * docs/pwg/building_boiler.xml:
5365 * docs/pwg/building_chainfn.xml:
5366 * docs/pwg/building_pads.xml:
5367 * docs/pwg/building_props.xml:
5368 * docs/pwg/building_testapp.xml:
5369 Start documenting the "how to build a simple audio filter" part
5370 of the PWG. Most stuff is ready by now. Stuff remaining: signals,
5371 states and (maybe?) a short introduction to capsnego in the chapter
5372 on pads (building_pads.xml). Capsnego should probably be explained
5373 fully in advanced_capsnego.xml or so.
5375 2004-01-26 David Schleef <ds@schleef.org>
5377 * gst/gstpad.c: (gst_pad_try_set_caps_nonfixed):
5378 * gst/gstpad.h: Add new function to allow element to (somewhat)
5379 specify non-fixed caps on a pad.
5380 * gst/gstqueue.c: (gst_queue_chain): Remove noisy g_object_notify()
5381 that I added a few weeks ago.
5383 2004-01-26 David Schleef <ds@schleef.org>
5385 * gst/gstpad.c: (gst_pad_try_set_caps): Revert last change
5386 making try_set_caps() work with non-fixed caps.
5388 2004-01-26 Ronald Bultje <rbultje@ronald.bitfreak.net>
5390 * docs/pwg/advanced_types.xml:
5391 * docs/pwg/intro_basics.xml:
5392 * docs/pwg/intro_preface.xml:
5394 * docs/pwg/titlepage.xml:
5395 First try to resurrect the PWG. I'm halfway integrating the mimetypes
5396 in here (docs/random/mimetypes), and will from there on work on both
5397 updating outdated parts and adding missing parts.
5398 That doesn't mean I'll fix it completely, but I'll try at least. ;).
5400 2004-01-26 Thomas Vander Stichele <thomas at apestaart dot org>
5402 * gst/gsterror.h: reinstate GST_LIBRARY_ERROR_ENCODE until
5405 2004-01-26 Benjamin Otte <in7y118@public.uni-hamburg.de>
5408 remove gst_element_factory_get_version. It doesn't exist anymore.
5411 remove gst_plugin_set_name and change gst_plugin_get_longname to
5412 gst_plugin_get_description to match code.
5414 remove GST_LIBRARY_ERROR_ENCODE. It's GST_STREAM_ERROR_ENCODE.
5415 * gst/gstpad.c: (gst_pad_try_set_caps):
5416 make it work with nonfixed caps.
5417 Note that even in the nonfixed case the link function of the pad
5418 that tries to set caps isn't called.
5420 2004-01-25 Benjamin Otte <in7y118@public.uni-hamburg.de>
5422 * gst/elements/gstbufferstore.c: (gst_buffer_store_get_buffer):
5423 fix bug where buffer was not assembled correctly
5424 * gst/elements/gsttee.c: (gst_tee_class_init), (gst_tee_init):
5426 * gst/elements/gsttypefind.c: (gst_type_find_element_chain):
5427 only seek if there's no more buffers that could work without seeking
5429 2004-01-23 Ronald Bultje <rbultje@ronald.bitfreak.net>
5431 * gst/gsttag.c: (_gst_tag_initialize):
5433 Add application tag (for encoding/muxing app).
5435 2004-01-23 Thomas Vander Stichele <thomas at apestaart dot org>
5438 make autopoint force, and libtoolize not copy
5439 * common/m4/as-docbook.m4:
5440 added docbook xml catalog setup check
5441 * common/m4/gst-doc.m4:
5444 2004-01-22 Thomas Vander Stichele <thomas at apestaart dot org>
5446 * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_register):
5450 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5452 * docs/gst/gstreamer-sections.txt:
5453 * docs/gst/tmpl/gst.sgml:
5454 * docs/gst/tmpl/gstbuffer.sgml:
5455 * docs/gst/tmpl/gstclock.sgml:
5456 * docs/gst/tmpl/gstelement.sgml:
5457 * docs/gst/tmpl/gstreamer-unused.sgml:
5458 * docs/gst/tmpl/gstxml.sgml:
5459 sync latest API changes to docs
5461 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5463 * gst/gstpluginfeature.c:
5465 * tools/gst-inspect.c: (print_element_list):
5466 fix output of typefind
5468 * tools/gst-launch.c:
5471 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5473 * gst/elements/Makefile.am:
5474 * gst/elements/gstelements.c:
5475 * gst/elements/gsttypefindelement.c:
5476 * gst/elements/gsttypefindelement.h:
5480 renamed gsttypefindelement to gsttypefind, conserving CVS history
5482 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5484 * gst/gsttag.c: (_gst_tag_initialize), (gst_tag_list_add_valist):
5486 add some tags used in ogg as well
5487 fix _ in replaygain tags
5489 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5492 fix wrong GST_LIBRARY_ERROR_ENCODE addition
5494 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5496 * gst/gstelement.c: (gst_element_error_full):
5498 change _extended to _full
5500 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5502 reviewed by: <delete if not using a buddy>
5504 * docs/gst/tmpl/gst.sgml:
5505 * docs/gst/tmpl/gstbuffer.sgml:
5506 * docs/gst/tmpl/gstclock.sgml:
5507 * docs/gst/tmpl/gstelement.sgml:
5508 * docs/gst/tmpl/gstreamer-unused.sgml:
5509 * docs/gst/tmpl/gstxml.sgml:
5510 * gst/gstelement.c: (gst_element_error_full):
5513 2004-01-20 Thomas Vander Stichele <thomas at apestaart dot org>
5515 * gst/gstelement.h: fix _gst_element_error_printf prototype
5517 2004-01-20 David Schleef <ds@schleef.org>
5519 * gst/gststructure.c: (gst_structure_to_string):
5520 Convert function to use gst_value_serialize().
5521 * gst/gstvalue.c: (gst_value_serialize_list),
5522 (gst_value_serialize_fourcc), (gst_value_serialize_int_range),
5523 (gst_value_serialize_double_range), (gst_value_serialize_boolean),
5524 (gst_value_serialize_int), (gst_value_serialize_double),
5525 (gst_string_wrap), (gst_value_serialize_string),
5526 (gst_value_serialize), (gst_value_deserialize):
5528 Add implementations for serialize.
5530 2004-01-20 Julien MOUTTE <julien@moutte.net>
5532 * gst/gsterror.h: xvidenc.c needs GST_LIBRARY_ERROR_ENCODE. Dunno if
5533 we want to keep that one in the future or change xvidenc.c to use
5536 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5538 * gst/gstelement.c: (_gst_element_error_printf):
5542 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5544 * docs/random/error:
5545 doc explaining error system
5546 * gst/elements/gstfilesrc.c: (gst_filesrc_open_file):
5549 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5551 * gst/gst-i18n-app.h:
5552 * gst/gst-i18n-lib.h:
5553 remove inclusion of config.h
5556 add gst/gstelement.c
5558 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5560 * po/nl.po: updated Dutch translation
5562 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5564 * gst/gsterror.c: (_gst_core_errors_init),
5565 (_gst_library_errors_init), (_gst_resource_errors_init),
5566 (_gst_stream_errors_init):
5567 remove ending punctuation dots
5569 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5571 * gst/elements/gstfilesink.c: (gst_filesink_open_file):
5572 * gst/elements/gstfilesrc.c: (gst_filesrc_get_read):
5573 * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
5574 * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
5575 (gst_pipefilter_chain), (gst_pipefilter_open_file):
5576 use GST_ERROR_SYSTEM
5578 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5580 * gst/gstelement.c: (gst_element_error_printf),
5581 (gst_element_error_extended):
5583 add a helper printf function so we can have NULL values passed.
5585 2004-01-19 Thomas Vander Stichele <thomas at apestaart dot org>
5588 add G_STMT macros to gst_element_error, which isn't strictly
5589 necessary but people tell me to anyway.
5591 2004-01-18 Thomas Vander Stichele <thomas at apestaart dot org>
5594 * gst/autoplug/gstspideridentity.c:
5595 (gst_spider_identity_sink_loop_type_finding):
5596 * gst/elements/gstfakesink.c: (gst_fakesink_change_state):
5597 * gst/elements/gstfilesink.c: (gst_filesink_open_file),
5598 (gst_filesink_close_file), (gst_filesink_handle_event),
5599 (gst_filesink_chain):
5600 * gst/elements/gstfilesrc.c: (gst_filesrc_set_property),
5601 (gst_filesrc_map_region), (gst_filesrc_get_read),
5602 (gst_filesrc_open_file):
5603 * gst/elements/gstidentity.c: (gst_identity_chain):
5604 * gst/elements/gstmultidisksrc.c: (gst_multidisksrc_open_file):
5605 * gst/elements/gstpipefilter.c: (gst_pipefilter_get),
5606 (gst_pipefilter_chain), (gst_pipefilter_open_file):
5607 * gst/elements/gsttypefindelement.c: (gst_type_find_element_chain):
5609 * gst/gst_private.h:
5610 * gst/gstelement.c: (gst_element_class_init),
5611 (gst_element_default_error), (gst_element_error_func),
5612 (gst_element_error_extended):
5614 * gst/gsterror.c: (_gst_core_errors_init),
5615 (_gst_library_errors_init), (_gst_resource_errors_init),
5616 (_gst_stream_errors_init), (gst_error_get_message):
5618 * gst/gstinfo.c: (_gst_debug_init):
5619 * gst/gstmarshal.list:
5620 * gst/gstpad.c: (gst_pad_set_explicit_caps),
5621 (gst_pad_recover_caps_error), (gst_pad_pull):
5622 * gst/gstqueue.c: (gst_queue_chain), (gst_queue_get):
5623 * gst/schedulers/gstbasicscheduler.c:
5624 (gst_basic_scheduler_chainhandler_proxy),
5625 (gst_basic_scheduler_gethandler_proxy),
5626 (gst_basic_scheduler_cothreaded_chain):
5631 add error categories
5633 2004-01-18 Jeremy Simon <jesimon@libertysurf.fr>
5635 * gst/gsttag.c: (_gst_tag_initialize):
5639 2004-01-18 Colin Walters <walters@verbum.org>
5641 * examples/retag/retag.c: Call gst_init before processing
5642 program args. Add g_assert to _link_many call.
5644 2004-01-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
5646 * gst/gstpad.c: (gst_pad_alloc_buffer):
5647 Return a newly allocated buffer when the pad has no peer.
5649 2004-01-16 Benjamin Otte <in7y118@public.uni-hamburg.de>
5651 * gst/gstclock.c: (gst_clock_get_time):
5652 make it compile with gcc 2.95 again.
5653 Patch by Scott Wheeler
5655 2004-01-15 David Schleef <ds@schleef.org>
5658 Added gst_caps_is_simple() macro.
5659 * testsuite/caps/caps.c: (test1):
5660 * testsuite/caps/intersect2.c: (main):
5661 * testsuite/caps/intersection.c: (main):
5662 Fixes to make 'make check' work again after removing
5663 gst_caps_is_chained().
5665 2004-01-15 Leif Johnson <leif@ambient.2y.net>
5667 * docs/random/uraeus/gstreamer_and_midi.txt: Rather large edits
5668 and additions to the MIDI document.
5670 2004-01-15 David Schleef <ds@schleef.org>
5672 * gst/gstelement.c: (gst_element_get_compatible_pad_filtered),
5673 (gst_element_link_pads_filtered): Use GST_PAD_ macros instead
5674 of GST_RPAD_, since we don't know if it's a real or ghost pad.
5676 2004-01-15 David Schleef <ds@schleef.org>
5680 Fix the spelling of "treshold" and make min_threshold actually
5683 2004-01-15 David Schleef <ds@schleef.org>
5686 Add lots of documentation.
5688 Deprecate a few functions.
5690 Removed use of deprecated functions.
5692 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
5694 * gst/gstpad.c: (gst_pad_is_linked):
5696 implement gst_pad_is_linked
5698 reserve space for initiate_state_change
5700 2004-01-15 Benjamin Otte <in7y118@public.uni-hamburg.de>
5702 * gst/autoplug/gstspideridentity.c:
5703 (gst_spider_identity_sink_loop_type_finding):
5704 break infinite loop by just returning instead of looping
5705 * gst/gstclock.c: (gst_clock_class_init), (gst_clock_set_property):
5706 set event time difference correctly. Set it to 1 second instead
5707 of 100ms to be more tolerant
5708 * gst/gstelement.c: (gst_element_set_time):
5709 add debugging output
5711 2004-01-14 Benjamin Otte <in7y118@public.uni-hamburg.de>
5713 * gst/gstqueue.c: (gst_queue_getcaps), (gst_queue_link):
5714 query if buffers are inside the pool, ignore events
5716 2004-01-13 Benjamin Otte <in7y118@public.uni-hamburg.de>
5718 * gst/gstclock.c: (gst_clock_class_init), (gst_clock_init),
5719 (gst_clock_set_speed), (gst_clock_set_active),
5720 (gst_clock_is_active), (gst_clock_reset),
5721 (gst_clock_handle_discont):
5723 deprecate old interface and disable functions that aren't in use
5726 * gst/gstelement.c: (gst_element_get_time), (gst_element_wait),
5727 (gst_element_set_time), (gst_element_adjust_time):
5728 add concept of "element time" and functions to get/set this time.
5729 * gst/gstelement.c: (gst_element_change_state):
5730 update element time correctly.
5731 * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
5732 This is a debug message, not a g_critical.
5733 * gst/gstpad.c: (gst_pad_event_default):
5734 handle discontinuous events right with element time.
5735 * gst/gstscheduler.c: (gst_scheduler_state_transition):
5736 update to clocking fixes.
5737 set clocks on elements in READY=>PAUSED. The old behaviour caused
5738 a wrong element time on the first element that started playing.
5739 * gst/schedulers/gstbasicscheduler.c:
5740 (gst_basic_scheduler_class_init):
5741 * gst/schedulers/gstoptimalscheduler.c:
5742 (gst_opt_scheduler_class_init):
5743 remove code that just implements the default behaviour.
5744 * gst/elements/gstfakesink.c: (gst_fakesink_chain):
5745 update to use new clocking functions
5746 * testsuite/clock/clock1.c: (gst_clock_debug), (main):
5747 * testsuite/clock/clock2.c: (gst_clock_debug), (main):
5748 update to test new element time.
5749 * gst/autoplug/gstspideridentity.c: (gst_spider_identity_getcaps):
5750 use _get_allowed_caps instead of _get_caps. This catches filtered
5752 * testsuite/debug/commandline.c:
5753 update for new GST_DEBUG syntax.
5754 * testsuite/threads/Makefile.am:
5755 disable a test that only works sometimes.
5757 2004-01-13 Julien MOUTTE <julien@moutte.net>
5759 * po/LINGUAS: Adding fr.
5760 * po/fr.po: Adding french translation.
5762 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5764 * gst/parse/grammar.y:
5767 * tools/gst-launch.c: (xmllaunch_parse_cmdline), (main):
5768 translate parsing error messages
5770 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5772 * po/POTFILES.in: adding gst-launch
5773 * po/nl.po: updated translation, all 99 strings translated
5774 * tools/gst-launch.c: (idle_func), (xmllaunch_parse_cmdline),
5775 (found_tag), (sigint_handler_sighandler), (play_handler), (main):
5776 fix strings for translation
5778 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5781 - capitalize beginnings of popt options
5782 - fix strings for translation
5783 - change gst-debug format from =N1=V1:N2=V2 to =N1:V1,N2:V2
5785 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5787 * po/README: add some notes on how to update translations
5789 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5791 * ABOUT-NLS: removed, is autogenerated from autopoint
5792 * autogen.sh: add autopoint stuff
5793 * configure.ac: fix up gettext stuff
5794 * gst/Makefile.am: add i18n headers to noinst_HEADERS
5795 * gst/elements/gsttypefindelement.c: add header include
5796 * gst/gettext.h: add header, copy from system-installed header
5797 * gst/gst-i18n-app.h: to be included by each app having translations
5798 * gst/gst-i18n-lib.h: to be included by each lib having translations
5799 * gst/gst.c: (init_pre): fix up gettext calls
5800 * gst/gst_private.h: remove i18n stuff, moving to separate headers
5801 * po/LINGUAS: the new way to specify translations present
5802 * po/Makefile.in.in: removed from cvs, autogenerated from autopoint
5803 * po/Makevars: the variables filled in for GStreamer
5804 * po/POTFILES.in: added new files with translations
5805 * po/de.po: has new strings
5806 * po/nl.po: readded, has new strings
5808 2004-01-13 Thomas Vander Stichele <thomas at apestaart dot org>
5810 * gst/gsttag.c: fix some strings marked for translation
5812 2004-01-13 Iain <iain@prettypeople.org>
5814 * gst/schedulers/gstoptimalscheduler.c (add_to_group): Reference the
5815 group when we add an element to it, cos we unref it when we remove one
5817 2004-01-12 Thomas Vander Stichele <thomas at apestaart dot org>
5819 * testsuite/debug/commandline.c: (debug_not_reached):
5820 * testsuite/debug/output.c: (check_message):
5823 2004-01-12 Benjamin Otte <in7y118@public.uni-hamburg.de>
5825 * examples/cutter/.cvsignore:
5826 * examples/helloworld/.cvsignore:
5827 * examples/launch/.cvsignore:
5828 * examples/manual/.cvsignore:
5829 * examples/mixer/.cvsignore:
5830 * examples/pingpong/.cvsignore:
5831 * examples/plugins/.cvsignore:
5832 * examples/queue/.cvsignore:
5833 * examples/queue2/.cvsignore:
5834 * examples/queue3/.cvsignore:
5835 * examples/queue4/.cvsignore:
5836 * examples/retag/.cvsignore:
5837 * examples/thread/.cvsignore:
5838 * examples/typefind/.cvsignore:
5839 * examples/xml/.cvsignore:
5841 * gst/autoplug/.cvsignore:
5842 * gst/elements/.cvsignore:
5843 * gst/indexers/.cvsignore:
5844 * gst/parse/.cvsignore:
5845 * gst/registries/.cvsignore:
5846 * gst/schedulers/.cvsignore:
5847 * libs/gst/bytestream/.cvsignore:
5848 * libs/gst/control/.cvsignore:
5849 * libs/gst/getbits/.cvsignore:
5851 * tests/bufspeed/.cvsignore:
5852 * tests/instantiate/.cvsignore:
5853 * tests/memchunk/.cvsignore:
5854 * tests/muxing/.cvsignore:
5855 * tests/sched/.cvsignore:
5856 * tests/seeking/.cvsignore:
5857 * tests/threadstate/.cvsignore:
5858 * testsuite/.cvsignore:
5859 * testsuite/caps/.cvsignore:
5860 * testsuite/cleanup/.cvsignore:
5861 * testsuite/dynparams/.cvsignore:
5862 * testsuite/plugin/.cvsignore:
5864 update - this is huge, because it includes *.bb, *.bbg and *.da files
5865 which are generated for gcov.
5867 2004-01-11 David Schleef <ds@schleef.org>
5869 * gst/gststructure.c: (gst_strtoi), (gst_value_from_string): Add
5870 a function to parse integers in ways that strto[u]l() does not.
5872 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
5874 * tools/gst-inspect.c: (print_caps):
5875 improve output of caps a bit
5877 2004-01-11 David Schleef <ds@schleef.org>
5879 * gst/gstbuffer.c: (gst_buffer_create_sub): Subbuffers should
5880 inherit correct flags (READONLY and DONTKEEP).
5882 2004-01-11 David Schleef <ds@schleef.org>
5884 * gst/elements/gstfilesrc.c: (gst_filesrc_free_parent_mmap),
5885 (gst_filesrc_map_region):
5886 * gst/gstbuffer.c: (_gst_buffer_initialize),
5887 (_gst_buffer_sub_free), (gst_buffer_default_copy),
5888 (gst_buffer_new), (gst_buffer_create_sub),
5889 (gst_buffer_is_span_fast), (gst_buffer_span):
5891 Change GstBuffer private structure element names. (all files)
5892 * gst/gstqueue.c: (gst_queue_init), (gst_queue_getcaps),
5895 Implement getcaps/pad_link functions that handle the case where
5896 there are data in the queue.
5898 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
5900 * gst/elements/gstbufferstore.c:
5901 initialize debugging structure correctly
5902 * gst/elements/gsttee.c: (gst_tee_set_property):
5903 g_object_notify when property was changed
5904 * gst/elements/gsttypefindelement.c:
5905 (gst_type_find_element_change_state):
5906 clear caps correctly
5908 2004-01-11 Benjamin Otte <in7y118@public.uni-hamburg.de>
5910 * gst/gstqueue.c: (gst_queue_init):
5911 Use better defaults for when a queue should block. This
5912 gets rid of jerky playback for quite a few files.
5913 It takes more memory.
5915 2004-01-10 Thomas Vander Stichele <thomas at apestaart dot org>
5917 (gst_xml_registry_parse_padtemplate):
5918 make critical message slightly more useful
5920 2004-01-10 Benjamin Otte <in7y118@public.uni-hamburg.de>
5922 * gst/gstinfo.c: (gst_debug_log), (gst_debug_log_valist),
5923 (gst_debug_message_get), (gst_debug_log_default):
5925 Change gst_debug_log(_valist) to take a const format string.
5926 Change prototype of log function and functions using those to
5927 take a GstDebugMessage instead of a string that requires using
5928 gst_debug_message_get.
5930 2004-01-08 David Schleef <ds@schleef.org>
5934 Add option --enable-gcov to build GStreamer with -fprofile-arcs
5935 and -ftest-coverage, which allows gcov to show information about
5938 2004-01-08 Benjamin Otte <in7y118@public.uni-hamburg.de>
5941 Add GST_BOILERPLATE(_FULL), GST_PARENT_CALL and
5942 GST_PARENT_CALL_WITH_DEFAULT
5943 * gst/elements/gstaggregator.c:
5944 * gst/elements/gstbufferstore.c:
5945 * gst/elements/gstfakesink.c:
5946 * gst/elements/gstfakesrc.c:
5947 * gst/elements/gstfdsink.c:
5948 * gst/elements/gstfdsrc.c:
5949 * gst/elements/gstfilesink.c:
5950 * gst/elements/gstfilesrc.c:
5951 * gst/elements/gstidentity.c:
5952 * gst/elements/gstmd5sink.c:
5953 * gst/elements/gstmultidisksrc.c:
5954 * gst/elements/gstpipefilter.c:
5955 * gst/elements/gstshaper.c:
5956 * gst/elements/gststatistics.c:
5957 * gst/elements/gsttee.c:
5958 * gst/elements/gsttypefindelement.c:
5961 2004-01-07 Thomas Vander Stichele <thomas at apestaart dot org>
5963 * docs/gst/gstreamer-docs.sgml: remove props
5964 * docs/gst/gstreamer-sections.txt: remove props
5965 * docs/gst/tmpl/gst.sgml:
5966 * docs/gst/tmpl/gstbin.sgml:
5967 * docs/gst/tmpl/gstbuffer.sgml:
5968 * docs/gst/tmpl/gstcaps.sgml:
5969 * docs/gst/tmpl/gstclock.sgml:
5970 * docs/gst/tmpl/gstelement.sgml:
5971 * docs/gst/tmpl/gstindex.sgml:
5972 * docs/gst/tmpl/gstobject.sgml:
5973 * docs/gst/tmpl/gstpad.sgml:
5974 * docs/gst/tmpl/gstpadtemplate.sgml:
5975 * docs/gst/tmpl/gstreamer-unused.sgml:
5976 * docs/gst/tmpl/gstthread.sgml:
5977 * docs/gst/tmpl/gstxml.sgml:
5978 sync with code reorganization
5980 2004-01-07 Jan Schmidt <thaytan@mad.scientist.com>
5982 * gst/gstelement.c: (gst_element_get_compatible_pad_filtered):
5983 Make the 'Could not find compatible pad' message more informative.
5985 2004-01-07 Ronald Bultje <rbultje@ronald.bitfreak.net>
5987 * gst/elements/gstfilesink.c: (gst_filesink_set_location):
5988 Fix for if we pass NULL as property to location.
5989 * gst/elements/gstpipefilter.c: (gst_pipefilter_init),
5990 (gst_pipefilter_handle_event), (gst_pipefilter_chain):
5991 Fix for instantiate-test (see below).
5992 * gst/gststructure.c: (_gst_structure_parse_value):
5993 Fix compile error on gcc-2.96.
5995 * tests/Makefile.am:
5996 * tests/instantiate/Makefile.am:
5997 * tests/instantiate/create.c: (create_all_elements), (main):
5998 Add a test that instantiates all elements. This makes it easy to
5999 track dead code for old API/design (like setting event functions
6000 on sink pads and so on).
6002 2004-01-06 Jan Schmidt <thaytan@mad.scientist.com>
6004 * gst/gstcaps.c: (gst_caps_append_structure):
6005 Move the poisoning to allow a NULL structure
6006 * gst/gstevent.c: (_gst_event_free):
6007 When freeing a navigation event, free the structure
6010 2004-01-04 David Schleef <ds@schleef.org>
6012 * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
6013 Remove usage of gst_pad_proxy_fixate.
6014 * gst/gstcaps.c: (gst_caps_append), (gst_caps_append_structure),
6015 (gst_caps_split_one), (gst_caps_replace):
6017 * gst/gstmarshal.list:
6018 Add pointer__pointer for fixate signal
6019 * gst/gstpad.c: (gst_real_pad_class_init),
6020 (_gst_real_pad_fixate_accumulator), (gst_pad_link_fixate),
6021 (_gst_pad_default_fixate_func), (gst_pad_proxy_fixate),
6022 (gst_pad_set_explicit_caps), (gst_pad_template_new):
6023 Add poisoning code. Add fixate signal on RealPad. Change
6024 set_explicit_caps() to take const GstCaps, like try_set_caps().
6026 * testsuite/caps/Makefile.am:
6027 * testsuite/caps/app_fixate.c: Add a test for the fixate signal
6029 2004-01-03 David Schleef <ds@schleef.org>
6031 * gst/elements/gsttypefindelement.c:
6032 (gst_type_find_element_have_type), (gst_type_find_element_init):
6033 Use gst_pad_use_explicit_caps for src pad.
6034 * gst/gstpad.c: (gst_pad_try_set_caps): Check that link exists
6037 2004-01-03 David Schleef <ds@schleef.org>
6039 * gst/gstelement.c: (gst_element_link_pads_filtered),
6040 (gst_element_negotiate_pads): Fix to allow DELAYED to indicate
6041 that linking was successful.
6042 * gst/gstpad.c: (gst_pad_link_free),
6043 (gst_pad_link_call_link_functions), (gst_pad_link_negotiate),
6044 (gst_pad_link_try), (gst_pad_link_unnegotiate),
6045 (gst_pad_unnegotiate), (gst_pad_set_explicit_caps): Pass
6046 GstPadLinkReturn correctly between functions, and don't fail
6047 when DELAYED is used (DELAYED is very important). Better
6048 cleanup on unlinking and unnegotiation. Should fix some spider
6051 2004-01-02 David Schleef <ds@schleef.org>
6053 * gst/gstelement.c: (gst_element_class_init),
6054 (gst_element_base_class_init): ->padtemplates should be cleared
6055 in base_init, since we need to have a fresh list for every
6056 class. (Alternately, we chould copy the list and share the
6057 actual pad templates (not the list), but that would require
6058 changing every plugin to move pad template registration from
6059 base_init to class_init.)
6061 2004-01-03 Ronald Bultje <rbultje@ronald.bitfreak.net>
6063 * gst/gstelement.c: (gst_element_class_add_pad_template):
6064 Refuse registering a pad template if another pad template
6065 with the same name already exists (#114715).
6067 2004-01-02 David Schleef <ds@schleef.org>
6069 * gst/gstcaps.c: (_gst_structure_is_equal_foreach),
6070 (gst_caps_is_equal_fixed): Add new function.
6071 * gst/gstcaps.h: ditto.
6072 * gst/gstpad.c: (gst_real_pad_class_init),
6073 (gst_pad_link_call_link_functions), (gst_pad_try_set_caps),
6074 (gst_pad_set_explicit_caps), (gst_pad_get_caps): In try_set_caps,
6075 check new caps against existing caps -- if they're the same, return
6076 OK without renegotiating. caps-nego-failed signal fixed so that
6077 the marshaller isn't VOID__OBJECT. Also changed to G_TYPE_POINTER
6078 to save an extra caps copy. Don't complete negotiation if a pad
6079 link function returns DELAYED.
6081 2004-01-02 Benjamin Otte <in7y118@public.uni-hamburg.de>
6083 * gst/gstpad.c: (gst_pad_try_relink_filtered):
6084 Fix wrong g_return_if_fail
6086 2004-01-03 Jan Schmidt <thaytan@mad.scientist.com>
6088 * gst/gstbin.c: (gst_bin_class_init):
6089 Change the marshalling of element_added/element_removed
6090 to use gst_marshal_VOID__OBJECT, since gst_marshal_VOID__POINTER
6091 complains that GST_TYPE_ELEMENT is not G_TYPE_POINTER
6093 2004-01-01 David Schleef <ds@schleef.org>
6095 * gst/gstpad.c: (gst_pad_set_explicit_caps),
6096 (gst_pad_explicit_getcaps), (gst_pad_explicit_link),
6097 (gst_pad_use_explicit_caps):
6099 Add new functions. gst_pad_use_explicit_caps() sets up a pad
6100 to use an internal getcaps and link fuction so that negotiation
6101 always results in the explicitly set caps.
6102 gst_pad_set_explicit_caps() sets the explicit caps. These functions
6103 are particularly useful for decoders.
6105 2003-12-31 David Schleef <ds@schleef.org>
6107 * gst/elements/gstidentity.c: (gst_identity_class_init),
6108 (gst_identity_init), (gst_identity_chain),
6109 (gst_identity_set_property), (gst_identity_get_property):
6110 * gst/elements/gstidentity.h:
6111 * gst/gstqueue.c: (gst_queue_init):
6114 2003-12-31 David Schleef <ds@schleef.org>
6116 * gst/gstcaps.c: (gst_caps_intersect),
6117 (_gst_caps_normalize_foreach), (gst_caps_normalize):
6118 Implement gst_caps_normalize().
6119 * testsuite/caps/normalisation.c: (main):
6120 Add an additional test
6122 2003-12-31 Ronald Bultje <rbultje@ronald.bitfreak.net>
6124 * gst/gstqueue.c: (gst_queue_init):
6125 use gst_pad_proxy_getcaps()
6127 2003-12-31 David Schleef <ds@schleef.org>
6129 * gst/elements/gstshaper.c: (gst_shaper_link):
6130 * gst/elements/gsttee.c: (gst_tee_init), (gst_tee_request_new_pad):
6131 * gst/gstqueue.c: (gst_queue_link):
6134 2003-12-31 David Schleef <ds@schleef.org>
6136 * gst/gstpad.c: (gst_pad_proxy_pad_link), (gst_pad_proxy_fixate):
6137 * gst/gstpad.h: Add functions that are useful as default pad
6138 link and fixate functions for elements.
6140 2003-12-30 David Schleef <ds@schleef.org>
6142 * gst/gstpad.c: (gst_pad_link_try):
6143 Fix segfault when attempting to return to old caps
6145 2003-12-29 David Schleef <ds@schleef.org>
6147 * gst/gstcaps.c: (gst_caps_normalize), (simplify_foreach),
6148 (gst_caps_structure_simplify), (gst_caps_simplify):
6150 Add simplify function
6151 * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
6152 (gst_pad_perform_negotiate), (gst_pad_is_negotiated):
6154 Copy over srcnotify, sinknotify when calling old pad_link
6155 functions. Add new is_negotiated() function.
6156 * gst/gststructure.c: (gst_structure_copy):
6157 Fix an incredibly stupid bug that should have been noticed
6158 weeks ago. _copy() returned the argument, not the new copy.
6160 2003-12-27 Benjamin Otte <in7y118@public.uni-hamburg.de>
6162 * gst/gstcaps.c: (gst_caps_append):
6164 * gst/gstcaps.h: (gst_caps_debug):
6165 remove, it doesn't exist anymore.
6166 * gst/gstelement.c: (gst_element_threadsafe_properties_pre_run),
6167 (gst_element_threadsafe_properties_post_run):
6168 make debugging messages not clutter up THREAD debug category
6169 (gst_element_negotiate_pads), (gst_element_clear_pad_caps),
6170 (gst_element_change_state):
6171 update to new caps API
6172 * gst/gstinterface.c: (gst_implements_interface_cast):
6173 don't put vital code in g_return_if_fail
6174 * gst/gstpad.c: (gst_pad_link_try), (gst_pad_try_set_caps),
6175 (gst_pad_link_filtered):
6176 add pst_pad_try_link and use it.
6177 (gst_pad_perform_negotiate), (gst_pad_renegotiate):
6178 implement correctly, deprecate first one.
6179 (gst_pad_link_unnegotiate), (gst_pad_unnegotiate):
6181 (gst_pad_try_relink_filtered), (gst_pad_relink_filtered):
6183 (gst_pad_get_negotiated_caps):
6184 add and implement. Make GST_PAD_CAPS call this function.
6186 remove unneeded check..
6187 (gst_pad_recover_caps_error):
6188 disable, always return FALSE.
6189 (gst_real_pad_dispose):
6190 don't free caps and appfilter anymore, they're unused.
6192 Reflect changes mentioned above.
6193 * gst/gstsystemclock.c: (gst_system_clock_wait):
6194 Make 'clock is way behind' a debugging message.
6195 * gst/gstthread.c: (gst_thread_change_state):
6196 Fix debugging message
6198 2003-12-25 Thomas Vander Stichele <thomas at apestaart dot org>
6201 fix GST_DEBUG_CATEGORY_INIT gtk-doc description
6202 * docs/gst/tmpl/gstreamer-unused.sgml:
6203 removed all traces of cvs conflicts
6205 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
6208 * gst/schedulers/cothreads_compat.h:
6210 remove last instances of wingo cothread usage
6212 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
6215 * gst/gstversion.h.in:
6216 * gst/parse/grammar.y:
6217 change comment block from /** to /* when not gtk-doc comments
6219 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
6221 * gst/gst.c: whitespace and doc style fixes
6223 2003-12-24 Thomas Vander Stichele <thomas at apestaart dot org>
6225 * gst/gstformat.h: remove trailing whitespace from enum for gtk-doc
6227 2003-12-24 Colin Walters <walters@verbum.org>
6229 * gst/elements/gsttypefindelement.c:
6230 gst/elements/gsttypefindelement.h: Make GstCaps parameter const.
6231 Copy caps parameter. Use _POINTER to marshal caps instead of _BOXED.
6232 Don't double-free caps.
6234 2003-12-23 David Schleef <ds@schleef.org>
6236 * gst/gstelement.c, gst/gstpad.c, gst/parse/grammar.y,
6237 gst/gstcaps.c, gst/autoplug/gstspideridentity.c:
6238 Many little fixes and additions of debug statements to
6239 get rhythmbox working.
6241 2003-12-23 Colin Walters <walters@verbum.org>
6243 * gst/autoplug/gstspideridentity.c (gst_spider_identity_sink_loop_type_finding):
6244 Use GST_PAD_LINK_SUCCESSFUL.
6246 2003-12-23 David Schleef <ds@schleef.org>
6248 * gst/elements/gstaggregator.c:
6249 * gst/elements/gsttee.c:
6250 Use gst_pad_proxy_getcaps().
6253 Add gst_pad_proxy_getcaps(), which filter elements can use
6254 as a generic getcaps implementation.
6255 Fix gst_pad_get_allowed_caps(). It just wasn't doing what
6258 2003-12-23 David Schleef <ds@schleef.org>
6261 Rearrange/rewrite much of the pad negotiation code, since it
6262 resembled pasta. This actually changes the way some
6263 negotiation works, since the previous code was inconsistent
6264 depending on how it was invoked. Add (internal) structure
6265 GstPadLink, which is used to hold some information (more in
6266 the future) about the link between two pads. Fixes a number
6267 of bugs, including random lossage of filter caps when the
6268 initial negotiation is delayed. A few functions are still
6271 Add GST_PAD_LINK_{SUCESSFUL|FAILED}() macros. Please use
6272 these when testing GstPadLinkReturn values instead of comparing
6275 2003-12-23 David Schleef <ds@schleef.org>
6279 Rearrange lots of code. Change registration of compare function
6280 into registration of compare/serialize/deserialize functions.
6281 Doesn't include implementation of gst_value_[de]serialize(),
6282 but that should be easy.
6284 2003-12-23 Thomas Vander Stichele <thomas at apestaart dot org>
6286 * docs/gst/gstreamer-sections.txt:
6287 * docs/gst/tmpl/gstprops.sgml: removed
6288 * docs/gst/tmpl/gstreamer-bufferpool.sgml: removed
6289 David removed props and caps code, so let's remove their docs as well.
6290 Removed all no longer existing symbols from gstreamer-sections.txt
6292 2003-12-22 Colin Walters <walters@verbum.org>
6294 * gst/gsttaginterface.c, gst/gsttaginterface.h,
6295 gst/gsttag.c, gst/gsttag.h: Add interface to setting GValues
6298 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
6300 * gst/elements/gstelements.c:
6301 Set ranks of elements to NONE, so the autoplugger doesn't use them.
6302 * gst/elements/gstshaper.c: (gst_shaper_getcaps):
6303 Fix proxying to new CAPS stuff. Don't call get_allowed_caps but
6306 2003-12-22 Benjamin Otte <in7y118@public.uni-hamburg.de>
6308 * gst/autoplug/gstsearchfuncs.c: (gst_autoplug_caps_intersect):
6309 * gst/autoplug/gstspideridentity.c: (gst_spider_identity_link),
6310 (gst_spider_identity_getcaps), (gst_spider_identity_change_state),
6311 (gst_spider_identity_sink_loop_type_finding):
6312 * gst/autoplug/gstspideridentity.h:
6313 Fix autoplugging in spider element, so it works with new caps.
6314 This was mainly caused by identifying empty caps incorrectly.
6316 2003-12-22 David Schleef <ds@schleef.org>
6318 * gststructure.c, gstvalue.c, gstvalue.h: Add
6319 gst_value_init_and_copy() and use it, to avoid silly mistakes in
6320 using g_value_copy()
6322 2003-12-21 David Schleef <ds@schleef.org>
6324 * many, many files: Merge CAPS branch. This includes:
6325 - implemention of GstValue and several GstValue types
6326 - implemention of GstStructure
6327 - entire rewrite of GstCaps
6328 - removal of GstProps
6329 - many changes to GstPad to compensate for new caps paradigm
6330 - removal of GstBufferpool
6331 * gst/Makefile.am, gst/gst.h, gst/gstpad.h, gst/gsttypefind.h,
6332 gstvalue.h, gst/gstcaps[2]*.[ch]:
6333 - rename gstcaps2.[ch] to gstcaps.[ch]
6335 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
6337 * gst/gstqueue.c: (gst_queue_handle_pending_events),
6338 (gst_queue_chain), (gst_queue_handle_src_event):
6339 implement timeout for sending events. Workaround for if the
6340 pipeline on this queue is not passing any data.
6342 2003-12-21 Ronald Bultje <rbultje@ronald.bitfreak.net>
6344 * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gstreamer
6345 * moved CVS to freedesktop.org