Commit graph

8 commits

Author SHA1 Message Date
wiz
448ba282dd Update to 0.10.14:
Changes since 0.10.13:

      * State change handling improvements
      * New improved GstController API
      * Multi-queue fixes and enhancements
      * Fewer dynamic library relocations
      * Various other fixes and improvements
      * Parallel installability with 0.8.x series
      * Threadsafe design and API

Bugs fixed since 0.10.13:

      * 457322 : registry is read twice on startup
      * 406632 : pkgconfigify the check for Check in configure.ac
      * 423700 : [multiqueue] leaks memory when flushing
      * 437457 : saving relocations for GstElementDetails
      * 444648 : [API] add GstParamSpecFraction
      * 444820 : build error with grammar.tab.c
      * 448794 : state changes are racy with decodebin after rewrite for 0...
      * 449197 : [capsfilter] Should set src pad caps on buffer
      * 449226 : Incomplete ghostpads in xml session save
      * 449493 : minor quoting fix in gst-feature.m4 macro
      * 450711 : [GstController] Improve extensibility by providing a GstC...
      * 451939 : [API] add GST_TAG_LICENSE_URI and GST_TAG_COPYRIGHT_URI
      * 459501 : gst_registry_lookup_feature_locked is slow
      * 462558 : Regression in async state change handling
      * 462752 : make gst_element_class_set_details_simple args const
      * 430682 : multiqueue doesn't output data on unlinked pads properly
      * 462085 : registry feature hash can access invalid memory
      * 357959 : buffer_alloc is not proxied through tee
      * 374639 : GstTee doesn't handle pad list resyncs properly
      * 449414 : [capsfilter] Copy of passed GstCaps taken instead of refe...
      * 453732 : [PATCH] multiqueue returns wrong internally linked pads
2007-08-30 12:21:51 +00:00
wiz
c81adac84d Update to 0.10.13:
Changes since 0.10.12:

      * Latency handling infrastructure for live playback scenarios
      * State change handling changes
      * GstController property handling improved
      * Various bug fixes and improvements
      * Parallel installability with 0.8.x series
      * Threadsafe design and API

API additions since 0.10.12:

      * gst_element_change_state()
      * GST_STATE_TARGET
      * GST_BASE_TRANSFORM_LOCK/UNLOCK
      * GstClock::gst_clock_unadjust_unlocked()
      * fakesink::num-buffers property
      * GST_CORE_ERROR_DISABLED
      * basesrc::prepare_seek_segment vmethod
      * gst_buffer_try_new_and_alloc()
      * gst_buffer_copy_metadata()
      * GstBufferCopyFlags enum
      * GST_BUFFER_COPY_ALL flag
      * gst_uri_protocol_is_supported()
      * gst_base_src_query_latency()
      * GstQueue::pushing
      * gst_controller_suggest_next_sync()
      * gst_object_suggest_next_sync()
      * basesrc::unlock_stop
      * basesink::unlock_stop
      * GstBin::async-handling property
      * gst_message_new_async_start()
      * gst_message_parse_async_start()
      * gst_message_new_async_done()
      * GST_MESSAGE_ASYNC_START
      * GST_MESSAGE_ASYNC_DONE
2007-06-08 12:57:00 +00:00
drochner
f8e351cd93 add a "gstcheck" option which makes that the "check" library is pulled in
and an additional library library gets built which can be used for
selftests of gstreamer and plugins
not enabled per default
2007-02-08 21:27:14 +00:00
drochner
90b70a2b68 update to 0.10.11
changes:
-many bugfixes
-API additions
2006-12-11 12:38:18 +00:00
drochner
f323e16aff update to 0.10.8
changes:
-many bugfixes
-API functions added
-gcc-4.1 fixes
-New version of data protocol now serializes events
-Registry cache updating is now done in a fork, so no plugins are left
 opened
2006-06-14 11:16:31 +00:00
jlam
ea5f9f80b6 Strip ${PKGLOCALEDIR} from PLISTs of packages that already obey
PKGLOCALEDIR and which install their locale files directly under
${PREFIX}/${PKGLOCALEDIR} and sort the PLIST file entries.  From now
on, pkgsrc/mk/plist/plist-locale.awk will automatically handle
transforming the PLIST to refer to the correct locale directory.
2006-04-17 07:07:11 +00:00
wiz
7c5e6e393d Update to 0.10.2, ok jmmv@:
Changes since 0.10.1:

      * documentation updates
      * bug fixes

Bugs fixed since 0.10.1:

      * 325429 : GST_BOILERPLATE_FULL can't be used when compiling with -W...
      * 316086 : MinGW compilation: fileindexer depends on mmap
2006-01-25 19:51:19 +00:00
jmmv
486bbb836e Initial import of gstreamer0.10, version 0.10.1. This is an update of
gstreamer0.8 to the 0.10 series.  Changes:

Changes since 0.10.0:

      * element factory leak fixes
      * tests cleanup
      * BaseSrc seeking in other format than BYTES
      * collectpad fixes

Bugs fixed since 0.10.0:

      * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac...
      * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for...
      * 323870 : [tools] gst-feedback needs updating for 0.9/0.10
      * 323882 : gst-launch manpage needs updates
      * 323905 : use return val of g_list_append

API added since 0.10.0:

      * GST_TYPE_STATIC_CAPS
      * GST_TYPE_STATIC_PAD_TEMPLATE
      * GstNetTimeProvider::active
      * gst_base_src_set_format

Changes from the 0.8 series to 0.10 series:

      * Refcounting and API revised for thread safety, see rules in
        docs/design/part-MT-refcounting.txt

      * Scheduling is now done by the elements, they start/stop
        processing threads themselves. This removes the need for
        a separate scheduler.

      * State changes now happen from sink to source. This makes sure
        that downstream elements are ready to process data when upstream
        starts producing.

      * EOS/ERROR/... does not change the state of elements anymore. This
        means that when the application sets the state on an element, it
        remains in this state.

      * GMainLoop integration. Information on the state of the pipeline
        is now received in the mainloop via the GstBus.

      * Events move separate from the datastream, this allows for both
        in and out of sync delivery of events.

      * Generic _pull() replaced by _pull_region() so that random access
        can be made faster.

      * data passing happens from PAUSED, called the preroll phase. In this
        state no data is rendered but it is queued in the sinks.

      * negotiation simplified. Caps are now attached to buffers and travel
        along with the datastream.

      * GstBuffer is now subclassable.

      * Ghostpads now look and feel like real pads.

      * New Seeking/flushing policy.

      * Addition of base classes and helper functions in the core to abstract
        away the harder parts of plugin development.
2006-01-18 15:35:48 +00:00