mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
Release 0.10.31
This commit is contained in:
parent
5cac987148
commit
0dec58311f
9 changed files with 2967 additions and 124 deletions
230
NEWS
230
NEWS
|
@ -1,4 +1,232 @@
|
|||
This is GStreamer 0.10.30 "Safety First"
|
||||
This is GStreamer 0.10.31 "Safety Pins"
|
||||
|
||||
Changes since 0.10.30:
|
||||
|
||||
* bin: add "message-forward" property to force forwarding of messages that would usually be filtered such as ASYNC_DONE or EOS
|
||||
* bin: improve tracking of source elements for more efficient event dispatch
|
||||
* bufferlist: add function to add a list of buffers
|
||||
* clock: fix racy shutdown clock id leak
|
||||
* element: add support for arbitrary element class / factory details
|
||||
* element: link_many should activate pads if needed
|
||||
* gst: add math-compat.h header
|
||||
* datetime: add GstDateTime API
|
||||
* elementfactory: add utility functions to filter features by type
|
||||
* plugin: load the gst-python plugin loader with G_MODULE_BIND_LAZY
|
||||
* query: add buffering ranges API to retrieve informations about the areas of the stream currently buffered
|
||||
* value: add int64 range type
|
||||
* info: write debugging output to file if GST_DEBUG_FILE environment variable is set
|
||||
* pad: use more efficient g_object_notify_by_pspec() for caps notifies if compiling against new-enough GLib
|
||||
* pipeline: If the currently used clock gets lost update it the next time when going from PAUSED to playing
|
||||
* plugin: add release datetime field to GstPluginDesc and set it if GST_PACKAGE_RELEASE_DATETIME is defined
|
||||
* utils: speed up pad linking utility functions by not trying pads that will never work
|
||||
* adapter: add function to get a list of buffers; support 0-sized buffers
|
||||
* adapter: optimize gst_adapter_take() and gst_adapter_peek() a little
|
||||
* basesink: only answer the SEGMENT query in pull mode
|
||||
* basesrc: return values in stream time for the POSITION query
|
||||
* basetransform: allow the subclass to add new fields to caps when getting new caps from downstream
|
||||
* basetransform: avoid useless memcpy
|
||||
* basetransform: upstream caps-renegotiation fixes
|
||||
* bitreader: add inlined and unchecked versions of the most important functions
|
||||
* bytewriter: add inline and unchecked variants of all important functions
|
||||
* bytewriter: fix possible infinite loop caused by an overflow
|
||||
* queue: add "silent" property to suppress signal emission (for better performance)
|
||||
* queue: avoid unnecessary g_cond_signal() (for better performance)
|
||||
* queue: push newsegment event when linking in PLAYING
|
||||
* queue2: extend ring buffer to support RAM mode
|
||||
* queue2: in download mode, prevent range corruption due to race
|
||||
* queue2: don't send seeks beyond the end of the file upstream in pull mode (fixes apple trailers and youtube/html5 playback in webkit)
|
||||
* multiqueue: flush the data queue if downstream return WRONG_STATE too
|
||||
* gst-inspect: print GST_PARAM_MUTABLE_* property flags
|
||||
|
||||
Bugs fixed since 0.10.30:
|
||||
|
||||
* 396774 : Make GstElementDetails extensible
|
||||
* 482147 : [queue] Issue with current time level if source task is not started
|
||||
* 579127 : gst-launch: disable CLOCK_LOST message handling
|
||||
* 594504 : Need a GType of " Date AND Time AND Timezone "
|
||||
* 600004 : underrun signal emits when i tested queue overrun test case from file /gstreamerXXXX/tests/check/element/queue.c
|
||||
* 610366 : [gstcollectpads][doc] Add a reminder for 'data' doc
|
||||
* 611918 : leaky queue might not push newsegment event
|
||||
* 618919 : Registry/Plugin Loading Memory Leak
|
||||
* 619522 : basetransform fix for upstream caps-renegotiation
|
||||
* 621299 : make simple queues faster
|
||||
* 621332 : BaseTransform should disable proxy alloc if downstream changes caps
|
||||
* 622740 : GstPad: Do not call gst_pad_accept_caps() when caps change
|
||||
* 623040 : Add release_datetime field to GstPluginDesc
|
||||
* 623121 : [queue2] downloaded areas of the media are not exposed
|
||||
* 623491 : make *_get_type() thread safe
|
||||
* 623541 : [basetransform] Implement POSITION query
|
||||
* 623622 : [basesink/basesrc] Should return values in stream time for POSITION query
|
||||
* 623806 : [pipeline] Doesn't update the clock if the currently used one gets lost and the start time did not change
|
||||
* 623875 : gstregistrybinary.c compatibility with glib > = 2.25.0
|
||||
* 624203 : gstutils: Make gst_pad_proxy_getcaps() return empty caps if it's what the other side has
|
||||
* 625239 : FTBFS: ./gstreamer-decl.txt:9461: warning: GstTagList has multiple definitions.
|
||||
* 625295 : [info] regression: doesn't flush output stream after every debug print any longer
|
||||
* 625368 : gstdatetime.c doesn't compile in VS 2008
|
||||
* 625862 : [docs] unused symbol GST_CAT_LEVEL_LOG_valist breaks the build
|
||||
* 626027 : [tag] Add GST_TAG_APPLICATION_NAME
|
||||
* 626181 : GstElementFactory: add listing/filtering API
|
||||
* 626651 : [tag] Photography/capture settings tags
|
||||
* 626784 : element: link_many might assert elements are in paused or playing
|
||||
* 627438 : gst: Add a gst_is_initialized() API
|
||||
* 627826 : GstInt64Range type
|
||||
* 627910 : Warnings emitted when -Wcast-qual used
|
||||
* 627959 : [queue2] on-disk buffering failing for AVI container
|
||||
* 628014 : Deprecate GST_FLOW_IS_FATAL/GST_FLOW_IS_SUCCESS
|
||||
* 628174 : New gstvalue checks cause trouble in thoggen
|
||||
* 628176 : [basetransform] Problems with buffer handling in inplace mode
|
||||
* 628408 : Use GDateTime that has been released
|
||||
* 629241 : Build broken with introspection using gobject-introspection from master
|
||||
* 629410 : GstBaseTransform: position query refers to sink pad, not source pad
|
||||
* 629494 : Latest gst-launch.c doesn't build in Visual Studio 2008
|
||||
* 629553 : GstAdapter: timestamp not updated when empty buffer is pushed
|
||||
* 629831 : [API] add gst_structure_take_value() and gst_structure_id_take_value()
|
||||
* 629946 : Enumerations have incorrect names of enum values (GEnumValue.value_name)
|
||||
* 630257 : GST_DEBUG_DUMP_DOT_DIR not working anymore
|
||||
* 630436 : basesink: renderdelay needs to be subtracted in adjust_time()
|
||||
* 630437 : basetransform: Make a WARNING into a DEBUG statement
|
||||
* 630439 : clock: fix racy shutdown clock id leak
|
||||
* 631755 : Fix build with glib 2.21.3
|
||||
* 631853 : [queue2] deadlock when using temp-location and dispatch-properties
|
||||
* 632236 : [gst-inspect] unhelpful uri handler output
|
||||
* 632433 : [basesink] hangs/drops going to PLAYING following flushing step in PAUSED
|
||||
* 632977 : [queue2] qtdemux causes soup to request seeks past the end of the range
|
||||
* 633147 : Simple reverse negotiation pipeline is broken.
|
||||
* 633886 : Visual Studio emits warnings about double defined _USE_MATH_DEFINES
|
||||
* 635031 : [datetime] Fix unix epoch handling
|
||||
* 635389 : Include information on exported packages in GIRs
|
||||
* 635869 : GST_BOILERPLATE_FULL causes warnings in user C++ code
|
||||
* 633176 : recent multiqueue changes break DVD playback
|
||||
|
||||
API additions since 0.10.30:
|
||||
|
||||
* gst_is_initialized
|
||||
* gst_buffer_list_iterator_add_list
|
||||
* GstBin:message-forward
|
||||
* GST_TYPE_DATE_TIME
|
||||
* gst_date_time_get_day
|
||||
* gst_date_time_get_hour
|
||||
* gst_date_time_get_microsecond
|
||||
* gst_date_time_get_minute
|
||||
* gst_date_time_get_month
|
||||
* gst_date_time_get_second
|
||||
* gst_date_time_get_time_zone_offset
|
||||
* gst_date_time_get_type
|
||||
* gst_date_time_get_year
|
||||
* gst_date_time_new
|
||||
* gst_date_time_new_from_unix_epoch_local_time
|
||||
* gst_date_time_new_from_unix_epoch_utc
|
||||
* gst_date_time_new_local_time
|
||||
* gst_date_time_new_now_local_time
|
||||
* gst_date_time_new_now_utc
|
||||
* gst_date_time_ref
|
||||
* gst_date_time_unref
|
||||
* gst_tag_list_get_date_time
|
||||
* gst_tag_list_get_date_time_index
|
||||
* GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR
|
||||
* GST_TAG_APPLICATION_DATA
|
||||
* GST_TAG_APPLICATION_NAME
|
||||
* GST_TAG_DATE_TIME
|
||||
* GST_ELEMENT_IS_SOURCE
|
||||
* gst_element_class_set_documentation_uri
|
||||
* gst_element_class_set_icon_name
|
||||
* gst_element_factory_get_documentation_uri
|
||||
* gst_element_factory_get_icon_name
|
||||
* gst_element_factory_list_filter
|
||||
* gst_element_factory_list_get_elements
|
||||
* gst_element_factory_list_is_type
|
||||
* GstElementFactoryListType
|
||||
* GST_ELEMENT_FACTORY_TYPE_ANY
|
||||
* GST_ELEMENT_FACTORY_TYPE_AUDIOVIDEO_SINKS
|
||||
* GST_ELEMENT_FACTORY_TYPE_AUDIO_ENCODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DECODABLE
|
||||
* GST_ELEMENT_FACTORY_TYPE_DECODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DEMUXER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER
|
||||
* GST_ELEMENT_FACTORY_TYPE_ENCODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_FORMATTER
|
||||
* GST_ELEMENT_FACTORY_TYPE_MAX_ELEMENTS
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY
|
||||
* GST_ELEMENT_FACTORY_TYPE_MUXER
|
||||
* GST_ELEMENT_FACTORY_TYPE_PARSER
|
||||
* GST_ELEMENT_FACTORY_TYPE_PAYLOADER
|
||||
* GST_ELEMENT_FACTORY_TYPE_SINK
|
||||
* GST_ELEMENT_FACTORY_TYPE_SRC
|
||||
* GST_ELEMENT_FACTORY_TYPE_VIDEO_ENCODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DECODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_ENCODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_SINK
|
||||
* GST_ELEMENT_FACTORY_KLASS_SRC
|
||||
* GST_ELEMENT_FACTORY_KLASS_MUXER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DEMUXER
|
||||
* GST_ELEMENT_FACTORY_KLASS_PARSER
|
||||
* GST_ELEMENT_FACTORY_KLASS_PAYLOADER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DEPAYLOADER
|
||||
* GST_ELEMENT_FACTORY_KLASS_FORMATTER
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_VIDEO
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_AUDIO
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_IMAGE
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_SUBTITLE
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_METADATA
|
||||
* gst_plugin_feature_list_debug
|
||||
* gst_plugin_feature_rank_compare_func
|
||||
* gst_query_add_buffering_range
|
||||
* gst_query_get_n_buffering_ranges
|
||||
* gst_query_parse_nth_buffering_range
|
||||
* gst_structure_get_date_time
|
||||
* gst_structure_id_take_value
|
||||
* gst_structure_take_value
|
||||
* GST_TYPE_INT64_RANGE
|
||||
* gst_int64_range_get_type
|
||||
* gst_util_fraction_compare
|
||||
* gst_value_get_int64_range_max
|
||||
* gst_value_get_int64_range_min
|
||||
* gst_value_set_int64_range
|
||||
* GST_VALUE_HOLDS_DATE_TIME
|
||||
* gst_adapter_take_list
|
||||
* gst_bit_reader_skip_unchecked
|
||||
* gst_bit_reader_skip_to_byte_unchecked
|
||||
* gst_bit_reader_get_bits_uint16_unchecked
|
||||
* gst_bit_reader_get_bits_uint32_unchecked
|
||||
* gst_bit_reader_get_bits_uint64_unchecked
|
||||
* gst_bit_reader_get_bits_uint8_unchecked
|
||||
* gst_bit_reader_peek_bits_uint16_unchecked
|
||||
* gst_bit_reader_peek_bits_uint32_unchecked
|
||||
* gst_bit_reader_peek_bits_uint64_unchecked
|
||||
* gst_bit_reader_peek_bits_uint8_unchecked
|
||||
* gst_byte_writer_put_int8_unchecked
|
||||
* gst_byte_writer_put_int16_be_unchecked
|
||||
* gst_byte_writer_put_int16_le_unchecked
|
||||
* gst_byte_writer_put_int24_be_unchecked
|
||||
* gst_byte_writer_put_int32_be_unchecked
|
||||
* gst_byte_writer_put_int32_le_unchecked
|
||||
* gst_byte_writer_put_int64_be_unchecked
|
||||
* gst_byte_writer_put_int64_le_unchecked
|
||||
* gst_byte_writer_put_uint8_unchecked
|
||||
* gst_byte_writer_put_uint16_be_unchecked
|
||||
* gst_byte_writer_put_uint16_le_unchecked
|
||||
* gst_byte_writer_put_uint24_be_unchecked
|
||||
* gst_byte_writer_put_uint24_le_unchecked
|
||||
* gst_byte_writer_put_uint32_be_unchecked
|
||||
* gst_byte_writer_put_uint32_le_unchecked
|
||||
* gst_byte_writer_put_uint64_be_unchecked
|
||||
* gst_byte_writer_put_uint64_le_unchecked
|
||||
* gst_byte_writer_put_float32_be_unchecked
|
||||
* gst_byte_writer_put_float32_le_unchecked
|
||||
* gst_byte_writer_put_float64_be_unchecked
|
||||
* gst_byte_writer_put_float64_le_unchecked
|
||||
* gst_byte_writer_put_data_unchecked
|
||||
* gst_byte_writer_fill_unchecked
|
||||
|
||||
API deprecated since 0.10.30:
|
||||
|
||||
* GST_FLOW_IS_FATAL
|
||||
* GST_FLOW_IS_SUCCESS
|
||||
|
||||
Changes since 0.10.29:
|
||||
|
||||
|
|
344
RELEASE
344
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
Release notes for GStreamer 0.10.30 "Safety First"
|
||||
Release notes for GStreamer 0.10.31 "Safety Pins"
|
||||
|
||||
|
||||
|
||||
|
@ -37,115 +37,233 @@ contains a set of less supported plug-ins that haven't passed the
|
|||
|
||||
Features of this release
|
||||
|
||||
* GLib requirement was bumped to 2.20, automake requirement to 1.10
|
||||
* bin: unlock gst_element_get_state() on error, instead of hanging forever if no timeout is given
|
||||
* clock: fix refcounting bug in gst_clock_set_master
|
||||
* caps: make sure _normalize() is applied on all structures
|
||||
* info: add new TRACE log level and move refcounting there from LOG level
|
||||
* pad: don't check twice for changed caps per push
|
||||
* pad: fix iterator aggregation of all pads in the internal links fallback
|
||||
* tagsetter: protect tagsetter operations with a lock
|
||||
* value: support short fourccs (esp. serialisation/deserialisation)
|
||||
* adapter: fix _try_to_merge_up(); optimize progressive masked scans
|
||||
* basesink: implement percentage position and duration queries
|
||||
* basesink: fix segment query return value
|
||||
* basetransform: add accept_caps vmethod
|
||||
* basetransform: re-evaluate proxy_alloc when reconfigured
|
||||
* basetransform: assume in_size equals out_size if there's no transform_size/get_unit_size vfunc
|
||||
* fdsink, filesink: make sync property work correctly
|
||||
* typefind: make sure buffers' metadata is writable before setting caps on them
|
||||
* queue2: fix merging of ranges
|
||||
* queue2: don't wait for data when EOS
|
||||
* queue2: don't ignore failure to open the temporary file location
|
||||
* tools: make gst-launch print things correctly to stderr/stdout and make --quiet work correctly
|
||||
* introspection: add many more gobject-introspection annotations
|
||||
* xml: serialisation/deserialisation to/from XML has been deprecated, since it's always been broken
|
||||
for all but the most trivial pipelines, and will likely never be fixed
|
||||
* bin: add "message-forward" property to force forwarding of messages that would usually be filtered such as ASYNC_DONE or EOS
|
||||
* bin: improve tracking of source elements for more efficient event dispatch
|
||||
* bufferlist: add function to add a list of buffers
|
||||
* clock: fix racy shutdown clock id leak
|
||||
* element: add support for arbitrary element class / factory details
|
||||
* element: link_many should activate pads if needed
|
||||
* gst: add math-compat.h header
|
||||
* datetime: add GstDateTime API
|
||||
* elementfactory: add utility functions to filter features by type
|
||||
* plugin: load the gst-python plugin loader with G_MODULE_BIND_LAZY
|
||||
* query: add buffering ranges API to retrieve informations about the areas of the stream currently buffered
|
||||
* value: add int64 range type
|
||||
* info: write debugging output to file if GST_DEBUG_FILE environment variable is set
|
||||
* pad: use more efficient g_object_notify_by_pspec() for caps notifies if compiling against new-enough GLib
|
||||
* pipeline: If the currently used clock gets lost update it the next time when going from PAUSED to playing
|
||||
* plugin: add release datetime field to GstPluginDesc and set it if GST_PACKAGE_RELEASE_DATETIME is defined
|
||||
* utils: speed up pad linking utility functions by not trying pads that will never work
|
||||
* adapter: add function to get a list of buffers; support 0-sized buffers
|
||||
* adapter: optimize gst_adapter_take() and gst_adapter_peek() a little
|
||||
* basesink: only answer the SEGMENT query in pull mode
|
||||
* basesrc: return values in stream time for the POSITION query
|
||||
* basetransform: allow the subclass to add new fields to caps when getting new caps from downstream
|
||||
* basetransform: avoid useless memcpy
|
||||
* basetransform: upstream caps-renegotiation fixes
|
||||
* bitreader: add inlined and unchecked versions of the most important functions
|
||||
* bytewriter: add inline and unchecked variants of all important functions
|
||||
* bytewriter: fix possible infinite loop caused by an overflow
|
||||
* queue: add "silent" property to suppress signal emission (for better performance)
|
||||
* queue: avoid unnecessary g_cond_signal() (for better performance)
|
||||
* queue: push newsegment event when linking in PLAYING
|
||||
* queue2: extend ring buffer to support RAM mode
|
||||
* queue2: in download mode, prevent range corruption due to race
|
||||
* queue2: don't send seeks beyond the end of the file upstream in pull mode (fixes apple trailers and youtube/html5 playback in webkit)
|
||||
* multiqueue: flush the data queue if downstream return WRONG_STATE too
|
||||
* gst-inspect: print GST_PARAM_MUTABLE_* property flags
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 623586 : gst/tagsetter check fails
|
||||
* 463435 : Skip #include < libxml/parser.h > in gstconfig.h.in when not needed
|
||||
* 505770 : gst_element_get_state() should unblock if element posts an error
|
||||
* 615820 : implement percentage position and duration queries
|
||||
* 615941 : [tags] Add GST_TAG_DEVICE_MANUFACTURER and GST_TAG_DEVICE_MODEL
|
||||
* 616586 : Use GObject's boxed type for GError
|
||||
* 617223 : [tags] Add tags for direction of capture and movement
|
||||
* 617625 : Commandline utility wrappers (gst-run) don't work on Windows
|
||||
* 618644 : gst_pad_get_caps() Return pad template if parent element is in GST_STATE_NULL
|
||||
* 619508 : [tag] Add image orientation tag
|
||||
* 619815 : GST_PLUGIN_LOADING_WHITELIST env var for unit tests
|
||||
* 619828 : [API] adapter: add masked_scan_uint32_peek
|
||||
* 620460 : info: add new TRACE log level and move refcounting there from LOG level
|
||||
* 620490 : [basesink] segment query unconditionally returns FALSE
|
||||
* 621006 : Deprecate unused gst_object_{get|set}_name_prefix()
|
||||
* 621282 : Display of short fourccs is in hex instead of text
|
||||
* 396774 : Make GstElementDetails extensible
|
||||
* 482147 : [queue] Issue with current time level if source task is not started
|
||||
* 579127 : gst-launch: disable CLOCK_LOST message handling
|
||||
* 594504 : Need a GType of " Date AND Time AND Timezone "
|
||||
* 600004 : underrun signal emits when i tested queue overrun test case from file /gstreamerXXXX/tests/check/element/queue.c
|
||||
* 610366 : [gstcollectpads][doc] Add a reminder for 'data' doc
|
||||
* 611918 : leaky queue might not push newsegment event
|
||||
* 618919 : Registry/Plugin Loading Memory Leak
|
||||
* 619522 : basetransform fix for upstream caps-renegotiation
|
||||
* 621299 : make simple queues faster
|
||||
* 621332 : BaseTransform should disable proxy alloc if downstream changes caps
|
||||
* 621334 : GstBaseTransform should not require a transform_size function
|
||||
* 621505 : Disable memory poisoning by default for releases
|
||||
* 621527 : gstcaps: New gst_caps_steal_structure() method
|
||||
* 621530 : filesink ignores sync=true
|
||||
* 621595 : --quiet doesnt make gst-launch be completely quiet, also messages should not go to stdout
|
||||
* 621773 : Add introspection annotations
|
||||
* 621867 : gst-launch: rename new --no-play command line option
|
||||
* 621896 : [API][taglist] Add gst_tag_list_peek_string_index
|
||||
* 622504 : [GstPad] Provide more fine-grained linking methods
|
||||
* 622546 : distcheck fails in docs/plugins/
|
||||
* 622685 : [GstXml] Deprecate GstXml
|
||||
* 622967 : [queue2] Problems with progressive downloading
|
||||
* 623301 : gst_caps_normalize : doesn't normalize completely
|
||||
* 623589 : Fix races/refcounting bugs with slave clocks
|
||||
* 624113 : [tags] wrong behaviour in merge function for strings
|
||||
* 622025 : Can't build gstreamer due to Gst-0.10.gir: error: Can't resolve type 'PadIntLinkFunction' for field Gst.Pad.intlinkfunc
|
||||
* 622740 : GstPad: Do not call gst_pad_accept_caps() when caps change
|
||||
* 623040 : Add release_datetime field to GstPluginDesc
|
||||
* 623121 : [queue2] downloaded areas of the media are not exposed
|
||||
* 623491 : make *_get_type() thread safe
|
||||
* 623541 : [basetransform] Implement POSITION query
|
||||
* 623622 : [basesink/basesrc] Should return values in stream time for POSITION query
|
||||
* 623806 : [pipeline] Doesn't update the clock if the currently used one gets lost and the start time did not change
|
||||
* 623875 : gstregistrybinary.c compatibility with glib > = 2.25.0
|
||||
* 624203 : gstutils: Make gst_pad_proxy_getcaps() return empty caps if it's what the other side has
|
||||
* 625239 : FTBFS: ./gstreamer-decl.txt:9461: warning: GstTagList has multiple definitions.
|
||||
* 625295 : [info] regression: doesn't flush output stream after every debug print any longer
|
||||
* 625368 : gstdatetime.c doesn't compile in VS 2008
|
||||
* 625862 : [docs] unused symbol GST_CAT_LEVEL_LOG_valist breaks the build
|
||||
* 626027 : [tag] Add GST_TAG_APPLICATION_NAME
|
||||
* 626181 : GstElementFactory: add listing/filtering API
|
||||
* 626651 : [tag] Photography/capture settings tags
|
||||
* 626784 : element: link_many might assert elements are in paused or playing
|
||||
* 627438 : gst: Add a gst_is_initialized() API
|
||||
* 627826 : GstInt64Range type
|
||||
* 627910 : Warnings emitted when -Wcast-qual used
|
||||
* 627959 : [queue2] on-disk buffering failing for AVI container
|
||||
* 628014 : Deprecate GST_FLOW_IS_FATAL/GST_FLOW_IS_SUCCESS
|
||||
* 628174 : New gstvalue checks cause trouble in thoggen
|
||||
* 628176 : [basetransform] Problems with buffer handling in inplace mode
|
||||
* 628408 : Use GDateTime that has been released
|
||||
* 629241 : Build broken with introspection using gobject-introspection from master
|
||||
* 629410 : GstBaseTransform: position query refers to sink pad, not source pad
|
||||
* 629494 : Latest gst-launch.c doesn't build in Visual Studio 2008
|
||||
* 629553 : GstAdapter: timestamp not updated when empty buffer is pushed
|
||||
* 629831 : [API] add gst_structure_take_value() and gst_structure_id_take_value()
|
||||
* 629946 : Enumerations have incorrect names of enum values (GEnumValue.value_name)
|
||||
* 630257 : GST_DEBUG_DUMP_DOT_DIR not working anymore
|
||||
* 630436 : basesink: renderdelay needs to be subtracted in adjust_time()
|
||||
* 630437 : basetransform: Make a WARNING into a DEBUG statement
|
||||
* 630439 : clock: fix racy shutdown clock id leak
|
||||
* 631755 : Fix build with glib 2.21.3
|
||||
* 631853 : [queue2] deadlock when using temp-location and dispatch-properties
|
||||
* 632236 : [gst-inspect] unhelpful uri handler output
|
||||
* 632433 : [basesink] hangs/drops going to PLAYING following flushing step in PAUSED
|
||||
* 632977 : [queue2] qtdemux causes soup to request seeks past the end of the range
|
||||
* 633147 : Simple reverse negotiation pipeline is broken.
|
||||
* 633886 : Visual Studio emits warnings about double defined _USE_MATH_DEFINES
|
||||
* 635031 : [datetime] Fix unix epoch handling
|
||||
* 635389 : Include information on exported packages in GIRs
|
||||
* 635869 : GST_BOILERPLATE_FULL causes warnings in user C++ code
|
||||
* 633176 : recent multiqueue changes break DVD playback
|
||||
|
||||
API changed in this release
|
||||
|
||||
- API additions:
|
||||
|
||||
* gst_caps_steal_structure()
|
||||
* gst_clock_id_wait_async_full()
|
||||
* gst_element_link_pads_full()
|
||||
* GstPadLinkCheck
|
||||
* gst_pad_link_check_get_type()
|
||||
* gst_pad_link_full()
|
||||
* gst_structure_fixate_field_string()
|
||||
* GST_TAG_DEVICE_MANUFACTURER
|
||||
* GST_TAG_DEVICE_MODEL
|
||||
* GST_TAG_IMAGE_ORIENTATION
|
||||
* GST_TAG_GEO_LOCATION_CAPTURE_DIRECTION
|
||||
* GST_TAG_GEO_LOCATION_MOVEMENT_DIRECTION
|
||||
* GST_TAG_GEO_LOCATION_MOVEMENT_SPEED
|
||||
* gst_tag_list_peek_string_index()
|
||||
* GST_TRACE
|
||||
* GST_TRACE_OBJECT
|
||||
* GST_CAT_TRACE
|
||||
* GST_CAT_TRACE_OBJECT
|
||||
* GST_LEVEL_TRACE
|
||||
* gst_adapter_masked_scan_uint32_peek
|
||||
* GstBaseSink::enable-last-buffer
|
||||
* gst_base_sink_is_last_buffer_enabled()
|
||||
* gst_base_sink_set_last_buffer_enabled()
|
||||
* GstBaseTransform::accept_caps()
|
||||
* gst_is_initialized
|
||||
* gst_buffer_list_iterator_add_list
|
||||
* GstBin:message-forward
|
||||
* GST_TYPE_DATE_TIME
|
||||
* gst_date_time_get_day
|
||||
* gst_date_time_get_hour
|
||||
* gst_date_time_get_microsecond
|
||||
* gst_date_time_get_minute
|
||||
* gst_date_time_get_month
|
||||
* gst_date_time_get_second
|
||||
* gst_date_time_get_time_zone_offset
|
||||
* gst_date_time_get_type
|
||||
* gst_date_time_get_year
|
||||
* gst_date_time_new
|
||||
* gst_date_time_new_from_unix_epoch_local_time
|
||||
* gst_date_time_new_from_unix_epoch_utc
|
||||
* gst_date_time_new_local_time
|
||||
* gst_date_time_new_now_local_time
|
||||
* gst_date_time_new_now_utc
|
||||
* gst_date_time_ref
|
||||
* gst_date_time_unref
|
||||
* gst_tag_list_get_date_time
|
||||
* gst_tag_list_get_date_time_index
|
||||
* GST_TAG_GEO_LOCATION_HORIZONTAL_ERROR
|
||||
* GST_TAG_APPLICATION_DATA
|
||||
* GST_TAG_APPLICATION_NAME
|
||||
* GST_TAG_DATE_TIME
|
||||
* GST_ELEMENT_IS_SOURCE
|
||||
* gst_element_class_set_documentation_uri
|
||||
* gst_element_class_set_icon_name
|
||||
* gst_element_factory_get_documentation_uri
|
||||
* gst_element_factory_get_icon_name
|
||||
* gst_element_factory_list_filter
|
||||
* gst_element_factory_list_get_elements
|
||||
* gst_element_factory_list_is_type
|
||||
* GstElementFactoryListType
|
||||
* GST_ELEMENT_FACTORY_TYPE_ANY
|
||||
* GST_ELEMENT_FACTORY_TYPE_AUDIOVIDEO_SINKS
|
||||
* GST_ELEMENT_FACTORY_TYPE_AUDIO_ENCODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DECODABLE
|
||||
* GST_ELEMENT_FACTORY_TYPE_DECODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DEMUXER
|
||||
* GST_ELEMENT_FACTORY_TYPE_DEPAYLOADER
|
||||
* GST_ELEMENT_FACTORY_TYPE_ENCODER
|
||||
* GST_ELEMENT_FACTORY_TYPE_FORMATTER
|
||||
* GST_ELEMENT_FACTORY_TYPE_MAX_ELEMENTS
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_AUDIO
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_IMAGE
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_METADATA
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_SUBTITLE
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_VIDEO
|
||||
* GST_ELEMENT_FACTORY_TYPE_MEDIA_ANY
|
||||
* GST_ELEMENT_FACTORY_TYPE_MUXER
|
||||
* GST_ELEMENT_FACTORY_TYPE_PARSER
|
||||
* GST_ELEMENT_FACTORY_TYPE_PAYLOADER
|
||||
* GST_ELEMENT_FACTORY_TYPE_SINK
|
||||
* GST_ELEMENT_FACTORY_TYPE_SRC
|
||||
* GST_ELEMENT_FACTORY_TYPE_VIDEO_ENCODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DECODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_ENCODER
|
||||
* GST_ELEMENT_FACTORY_KLASS_SINK
|
||||
* GST_ELEMENT_FACTORY_KLASS_SRC
|
||||
* GST_ELEMENT_FACTORY_KLASS_MUXER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DEMUXER
|
||||
* GST_ELEMENT_FACTORY_KLASS_PARSER
|
||||
* GST_ELEMENT_FACTORY_KLASS_PAYLOADER
|
||||
* GST_ELEMENT_FACTORY_KLASS_DEPAYLOADER
|
||||
* GST_ELEMENT_FACTORY_KLASS_FORMATTER
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_VIDEO
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_AUDIO
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_IMAGE
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_SUBTITLE
|
||||
* GST_ELEMENT_FACTORY_KLASS_MEDIA_METADATA
|
||||
* gst_plugin_feature_list_debug
|
||||
* gst_plugin_feature_rank_compare_func
|
||||
* gst_query_add_buffering_range
|
||||
* gst_query_get_n_buffering_ranges
|
||||
* gst_query_parse_nth_buffering_range
|
||||
* gst_structure_get_date_time
|
||||
* gst_structure_id_take_value
|
||||
* gst_structure_take_value
|
||||
* GST_TYPE_INT64_RANGE
|
||||
* gst_int64_range_get_type
|
||||
* gst_util_fraction_compare
|
||||
* gst_value_get_int64_range_max
|
||||
* gst_value_get_int64_range_min
|
||||
* gst_value_set_int64_range
|
||||
* GST_VALUE_HOLDS_DATE_TIME
|
||||
* gst_adapter_take_list
|
||||
* gst_bit_reader_skip_unchecked
|
||||
* gst_bit_reader_skip_to_byte_unchecked
|
||||
* gst_bit_reader_get_bits_uint16_unchecked
|
||||
* gst_bit_reader_get_bits_uint32_unchecked
|
||||
* gst_bit_reader_get_bits_uint64_unchecked
|
||||
* gst_bit_reader_get_bits_uint8_unchecked
|
||||
* gst_bit_reader_peek_bits_uint16_unchecked
|
||||
* gst_bit_reader_peek_bits_uint32_unchecked
|
||||
* gst_bit_reader_peek_bits_uint64_unchecked
|
||||
* gst_bit_reader_peek_bits_uint8_unchecked
|
||||
* gst_byte_writer_put_int8_unchecked
|
||||
* gst_byte_writer_put_int16_be_unchecked
|
||||
* gst_byte_writer_put_int16_le_unchecked
|
||||
* gst_byte_writer_put_int24_be_unchecked
|
||||
* gst_byte_writer_put_int24_le_unchecked
|
||||
* gst_byte_writer_put_int32_be_unchecked
|
||||
* gst_byte_writer_put_int32_le_unchecked
|
||||
* gst_byte_writer_put_int64_be_unchecked
|
||||
* gst_byte_writer_put_int64_le_unchecked
|
||||
* gst_byte_writer_put_uint8_unchecked
|
||||
* gst_byte_writer_put_uint16_be_unchecked
|
||||
* gst_byte_writer_put_uint16_le_unchecked
|
||||
* gst_byte_writer_put_uint24_be_unchecked
|
||||
* gst_byte_writer_put_uint24_le_unchecked
|
||||
* gst_byte_writer_put_uint32_be_unchecked
|
||||
* gst_byte_writer_put_uint32_le_unchecked
|
||||
* gst_byte_writer_put_uint64_be_unchecked
|
||||
* gst_byte_writer_put_uint64_le_unchecked
|
||||
* gst_byte_writer_put_float32_be_unchecked
|
||||
* gst_byte_writer_put_float32_le_unchecked
|
||||
* gst_byte_writer_put_float64_be_unchecked
|
||||
* gst_byte_writer_put_float64_le_unchecked
|
||||
* gst_byte_writer_put_data_unchecked
|
||||
* gst_byte_writer_fill_unchecked
|
||||
- API deprecations:
|
||||
|
||||
* gst_object_get_name_prefix()
|
||||
* gst_object_set_name_prefix()
|
||||
* gst_caps_load_thyself()
|
||||
* gst_caps_save_thyself()
|
||||
* gst_class_signal_emit_by_name()
|
||||
* gst_object_save_thyself()
|
||||
* gst_object_restore_thyself()
|
||||
* gst_pad_load_and_link()
|
||||
* gst_xml_get_element()
|
||||
* gst_xml_get_topelements()
|
||||
* gst_xml_get_type()
|
||||
* gst_xml_make_element()
|
||||
* gst_xml_new()
|
||||
* gst_xml_parse_doc()
|
||||
* gst_xml_parse_file()
|
||||
* gst_xml_parse_memory()
|
||||
* gst_xml_write()
|
||||
* gst_xml_write_file()
|
||||
* GST_FLOW_IS_FATAL
|
||||
* GST_FLOW_IS_SUCCESS
|
||||
|
||||
Download
|
||||
|
||||
|
@ -180,23 +298,33 @@ Let us know if you want to be added to this list.
|
|||
Contributors to this release
|
||||
|
||||
* Alessandro Decina
|
||||
* Alexander Saprykin
|
||||
* Benjamin Gaignard
|
||||
* Benjamin Otte
|
||||
* Arun Raghavan
|
||||
* Colin Walters
|
||||
* David Hoyt
|
||||
* David Schleef
|
||||
* Eduardo Dobay
|
||||
* Edward Hervey
|
||||
* Johan Dahlin
|
||||
* Evan Nemerson
|
||||
* Havard Graff
|
||||
* Jan Schmidt
|
||||
* Jeffrey S. Smith
|
||||
* Jonas Holmberg
|
||||
* Jonathan Matthew
|
||||
* Mark Nauwelaerts
|
||||
* Martin Bisson
|
||||
* Michael Bunk
|
||||
* Ognyan Tonchev
|
||||
* Olivier Crête
|
||||
* Philippe Normand
|
||||
* Rob Clark
|
||||
* Robert Swain
|
||||
* Sebastian Dröge
|
||||
* Shixin Zeng
|
||||
* Stefan Kost
|
||||
* Thiago Santos
|
||||
* Thijs Vermeir
|
||||
* Tim-Philipp Müller
|
||||
* Tristan Matthews
|
||||
* Trond Andersen
|
||||
* Vincent Penquerc'h
|
||||
* Vladimir Eremeev
|
||||
* Wim Taymans
|
||||
* Zaheer Abbas Merali
|
||||
* Руслан Ижбулатов
|
||||
* reynaldo
|
||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.60)
|
|||
dnl initialize autoconf
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, git and prerelease does Werror too
|
||||
AC_INIT(GStreamer, 0.10.30.5,
|
||||
AC_INIT(GStreamer, 0.10.31,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gstreamer)
|
||||
AG_GST_INIT
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>standard GStreamer elements</description>
|
||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||
<basename>libgstcoreelements.so</basename>
|
||||
<version>0.10.30.1</version>
|
||||
<version>0.10.31</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer git</package>
|
||||
<package>GStreamer source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>GStreamer core indexers</description>
|
||||
<filename>../../plugins/indexers/.libs/libgstcoreindexers.so</filename>
|
||||
<basename>libgstcoreindexers.so</basename>
|
||||
<version>0.10.30.1</version>
|
||||
<version>0.10.31</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer git</package>
|
||||
<package>GStreamer source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
</elements>
|
||||
|
|
|
@ -38,6 +38,17 @@ hierarchy, and a set of media-agnostic core elements.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.31</revision>
|
||||
<branch>0.10</branch>
|
||||
<name>Safety Pins</name>
|
||||
<created>2010-11-30</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.31.tar.bz2" />
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.31.tar.gz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>0.10.30</revision>
|
||||
|
|
|
@ -59,13 +59,13 @@
|
|||
#define GST_MAJORMINOR "0.10"
|
||||
|
||||
/* package name in plugins */
|
||||
#define GST_PACKAGE_NAME "GStreamer prerelease"
|
||||
#define GST_PACKAGE_NAME "GStreamer source release"
|
||||
|
||||
/* package origin */
|
||||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2010-11-17T23:50Z"
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2010-11-30"
|
||||
|
||||
/* location of the installed gst-plugin-scanner */
|
||||
#define GST_PLUGIN_SCANNER_INSTALLED LIBDIR "\\gst-plugin-scanner"
|
||||
|
@ -340,7 +340,7 @@
|
|||
#define PACKAGE_NAME "GStreamer"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "GStreamer 0.10.30.5"
|
||||
#define PACKAGE_STRING "GStreamer 0.10.31"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gstreamer"
|
||||
|
@ -349,7 +349,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "0.10.30.5"
|
||||
#define PACKAGE_VERSION "0.10.31"
|
||||
|
||||
/* directory where plugins are located */
|
||||
#ifdef _DEBUG
|
||||
|
@ -380,7 +380,7 @@
|
|||
#undef USE_POISONING
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.10.30.5"
|
||||
#define VERSION "0.10.31"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
|
|
|
@ -57,14 +57,14 @@ G_BEGIN_DECLS
|
|||
*
|
||||
* The micro version of GStreamer at compile time:
|
||||
*/
|
||||
#define GST_VERSION_MICRO (30)
|
||||
#define GST_VERSION_MICRO (31)
|
||||
/**
|
||||
* GST_VERSION_NANO:
|
||||
*
|
||||
* The nano version of GStreamer at compile time:
|
||||
* Actual releases have 0, GIT versions have 1, prerelease versions have 2-...
|
||||
*/
|
||||
#define GST_VERSION_NANO (5)
|
||||
#define GST_VERSION_NANO (0)
|
||||
|
||||
/**
|
||||
* GST_CHECK_VERSION:
|
||||
|
|
Loading…
Reference in a new issue