mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
Release 1.11.2
This commit is contained in:
parent
e4c1d43b4e
commit
e4a7200c63
7 changed files with 463 additions and 72 deletions
429
ChangeLog
429
ChangeLog
|
@ -1,9 +1,432 @@
|
|||
=== release 1.11.1 ===
|
||||
=== release 1.11.2 ===
|
||||
|
||||
2017-01-12 Sebastian Dröge <slomo@coaxion.net>
|
||||
2017-02-24 Sebastian Dröge <slomo@coaxion.net>
|
||||
|
||||
* configure.ac:
|
||||
releasing 1.11.1
|
||||
releasing 1.11.2
|
||||
|
||||
2017-02-23 20:52:39 +0200 Vivia Nikolaidou <vivia@toolsonair.com>
|
||||
|
||||
* gst/gstvalue.c:
|
||||
* tests/check/gst/gstvalue.c:
|
||||
value: Add deserialization for arrays/lists outside GstStructures
|
||||
This is mostly useful for properties of those types when used in
|
||||
gst-launch or similar.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777375
|
||||
|
||||
2017-02-23 20:50:38 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* gst/gstvalue.c:
|
||||
value: Add a type abbreviation for GstFlagSet in serialization
|
||||
|
||||
2017-02-23 20:47:30 +0200 Vivia Nikolaidou <vivia@toolsonair.com>
|
||||
|
||||
* gst/gst_private.h:
|
||||
* gst/gststructure.c:
|
||||
* gst/gstvalue.c:
|
||||
value: Always add the type name to elements when serializing arrays/lists
|
||||
But only when serializing outside of GstStructures, because in case of
|
||||
GstStructure the type is already preprended to the array/list and the
|
||||
GstStructure API makes sure that they have the same "generic" type so
|
||||
deserialization works properly.
|
||||
This keeps serialization of GstStructures the same as before, and the
|
||||
GstCaps unit tests already test for that. However when serializing
|
||||
standalone arrays/lists get the types added now.
|
||||
|
||||
2017-02-23 20:22:03 +0200 Vivia Nikolaidou <vivia@toolsonair.com>
|
||||
|
||||
* gst/gst_private.h:
|
||||
* gst/gststructure.c:
|
||||
* gst/gstvalue.c:
|
||||
value: Move list/array serialization/deserialization functions from GstStructure to GstValue
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777375
|
||||
|
||||
2017-02-23 20:16:17 +0200 Vivia Nikolaidou <vivia@toolsonair.com>
|
||||
|
||||
* gst/gstparamspecs.c:
|
||||
* gst/gstparamspecs.h:
|
||||
* win32/common/libgstreamer.def:
|
||||
paramspecs: Add GstParamSpecArray for GST_TYPE_ARRAY typed properties
|
||||
These are mostly useful to get our automatic
|
||||
serialization/deserialization from strings and simple usage from
|
||||
gst-launch or similar.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777375
|
||||
|
||||
2017-02-21 20:23:51 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* libs/gst/base/gstbytereader.c:
|
||||
* tests/check/libs/bytereader.c:
|
||||
bytereader: fix peek value when scanning for 00 00 01 with non-0 offset
|
||||
We would add the offset a second time in _scan_for_start_code()
|
||||
when we found a result, but it's already been added to the data
|
||||
pointer at the beginning of _masked_scan_uint32_peek(), so the
|
||||
peeked value would be wrong if the initial offset was >0, and
|
||||
we would potentially read memory out-of-bounds.
|
||||
Add unit test for all of this.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=778365
|
||||
|
||||
2017-02-20 12:16:32 +0100 Wim Taymans <wtaymans@redhat.com>
|
||||
|
||||
* gst/gstinfo.h:
|
||||
info: put () around macro arguments
|
||||
Put braces around macro arguments or else we might run into problems
|
||||
with operater precedence.
|
||||
|
||||
2017-02-20 10:45:57 +0100 Wim Taymans <wtaymans@redhat.com>
|
||||
|
||||
* gst/gstdeviceproviderfactory.c:
|
||||
deviceproviderfactory: ignore empty classes
|
||||
|
||||
2017-02-20 10:25:50 +0100 Wim Taymans <wtaymans@redhat.com>
|
||||
|
||||
* gst/gstdeviceproviderfactory.c:
|
||||
deviceproviderfactory: compare class against NULL
|
||||
gstdeviceproviderfactory.c:501:20: error: comparison between pointer and zero character constant [-Werror=pointer-compare]
|
||||
if (classes[0] == '\0')
|
||||
|
||||
2017-02-18 16:49:40 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
|
||||
|
||||
* gst/meson.build:
|
||||
meson: Fix build with latest upstream git
|
||||
Trivial incorrect include_directories() call
|
||||
|
||||
2017-02-18 10:03:24 +0100 Peter Korsgaard <peter@korsgaard.com>
|
||||
|
||||
* gst/gstconfig.h.in:
|
||||
gstconfig: Fix unaligned access support for the openrisc architecture
|
||||
Teach gstconfig.h.in about the openrisc (or1k) architecture. Fixes
|
||||
buildroot autobuild failure:
|
||||
http://autobuild.buildroot.net/results/717/717d78ce0935749f477bdf3133b6f20057a28c01/build-end.log
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=778866
|
||||
|
||||
2017-02-15 21:37:31 +0100 Stefan Sauer <ensonic@users.sf.net>
|
||||
|
||||
* libs/gst/base/gstbasesink.c:
|
||||
gstbasesink: xref symbol in docs
|
||||
|
||||
2017-02-15 20:58:49 +0100 Stefan Sauer <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstpad.h:
|
||||
pad: revert the content changes from previous commit
|
||||
The default behaviour when returning GST_PAD_PROBE_OK is unrelated to
|
||||
the other return code.
|
||||
|
||||
2017-02-15 20:37:40 +0100 Stefan Sauer <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstpad.h:
|
||||
pad: fix docs for GstPadProbeReturn
|
||||
There is no 'block' value, but we have 'drop'. Also fix the markup; it
|
||||
is '%' to link to constants (and enum values).
|
||||
|
||||
2016-10-24 22:47:29 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* Makefile.am:
|
||||
meson: dist meson build files
|
||||
Ship meson build files in tarballs, so people who use tarballs
|
||||
in their builds can start playing with meson already.
|
||||
|
||||
2017-01-31 09:55:59 +0000 Julien Isorce <jisorce@oblong.com>
|
||||
|
||||
* tests/check/pipelines/seek.c:
|
||||
tests: add 2 unit tests for non-flush seek with gstbaseparse
|
||||
The unit test defines a test parse element that inherit from GstBaseParse.
|
||||
The test pipeline is: fakesrc ! testparse ! fakesink sync=1
|
||||
Before the fix b2c05cac8 the first new test would have fail because the
|
||||
pipeline would have wait doing nothing just after proceeded the seek event.
|
||||
The second new test would have fail because the pipeline would have
|
||||
played the media instantly just after proceeded the seek event
|
||||
(like if sync was FALSE on the sink).
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777780
|
||||
|
||||
2017-01-31 21:19:18 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* gst/parse/grammar.y:
|
||||
parse: Don't translate the "bin" element name
|
||||
Otherwise we won't be able to create bins, there is no element called
|
||||
"Behälter" if you're using a German locale.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777998
|
||||
|
||||
2016-04-15 20:54:42 +0900 Seungha Yang <sh.yang@lge.com>
|
||||
|
||||
* gst/gstsegment.c:
|
||||
* tests/check/gst/gstsegment.c:
|
||||
segment: Modifiy inside segment condition
|
||||
There is a special case that segment_start == segment_stop == start.
|
||||
It's inside of segment
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=764707
|
||||
|
||||
2017-01-26 16:35:27 +0000 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* gst/gstinfo.c:
|
||||
info: Check libunwind return codes
|
||||
|
||||
2017-01-18 18:16:26 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* libs/gst/controller/meson.build:
|
||||
* libs/gst/net/meson.build:
|
||||
meson: libs: Add gir to the source list of the dependency
|
||||
|
||||
2017-01-16 11:26:16 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* gst/gst.c:
|
||||
* gst/gstallocator.c:
|
||||
* gst/gstbin.c:
|
||||
* gst/gstbuffer.c:
|
||||
* gst/gstbufferlist.c:
|
||||
* gst/gstbufferpool.c:
|
||||
* gst/gstbufferpool.h:
|
||||
* gst/gstbus.c:
|
||||
* gst/gstcaps.c:
|
||||
* gst/gstcapsfeatures.c:
|
||||
* gst/gstchildproxy.c:
|
||||
* gst/gstclock.c:
|
||||
* gst/gstclock.h:
|
||||
* gst/gstcompat.h:
|
||||
* gst/gstcontext.c:
|
||||
* gst/gstcontrolbinding.c:
|
||||
* gst/gstcontrolsource.c:
|
||||
* gst/gstdebugutils.h:
|
||||
* gst/gstdevice.c:
|
||||
* gst/gstdevicemonitor.c:
|
||||
* gst/gstdeviceprovider.c:
|
||||
* gst/gstdeviceproviderfactory.c:
|
||||
* gst/gstdynamictypefactory.c:
|
||||
* gst/gstelement.c:
|
||||
* gst/gstelement.h:
|
||||
* gst/gstelementfactory.c:
|
||||
* gst/gsterror.c:
|
||||
* gst/gstevent.c:
|
||||
* gst/gstformat.c:
|
||||
* gst/gstghostpad.c:
|
||||
* gst/gstinfo.c:
|
||||
* gst/gstinfo.h:
|
||||
* gst/gstiterator.c:
|
||||
* gst/gstmemory.c:
|
||||
* gst/gstmessage.c:
|
||||
* gst/gstmeta.c:
|
||||
* gst/gstminiobject.c:
|
||||
* gst/gstobject.c:
|
||||
* gst/gstpad.c:
|
||||
* gst/gstpad.h:
|
||||
* gst/gstpadtemplate.c:
|
||||
* gst/gstparamspecs.c:
|
||||
* gst/gstparse.c:
|
||||
* gst/gstpipeline.c:
|
||||
* gst/gstplugin.c:
|
||||
* gst/gstpluginfeature.c:
|
||||
* gst/gstpoll.c:
|
||||
* gst/gstpreset.c:
|
||||
* gst/gstprotection.c:
|
||||
* gst/gstquery.c:
|
||||
* gst/gstregistry.c:
|
||||
* gst/gstsample.c:
|
||||
* gst/gstsegment.c:
|
||||
* gst/gststreamcollection.c:
|
||||
* gst/gststreams.c:
|
||||
* gst/gststructure.c:
|
||||
* gst/gstsystemclock.c:
|
||||
* gst/gsttaglist.c:
|
||||
* gst/gsttagsetter.c:
|
||||
* gst/gsttask.c:
|
||||
* gst/gsttaskpool.c:
|
||||
* gst/gsttoc.c:
|
||||
* gst/gsttocsetter.c:
|
||||
* gst/gsttracer.c:
|
||||
* gst/gsttracerfactory.c:
|
||||
* gst/gsttracerrecord.c:
|
||||
* gst/gsttypefind.c:
|
||||
* gst/gsttypefindfactory.c:
|
||||
* gst/gsturi.c:
|
||||
* gst/gstutils.c:
|
||||
* gst/gstvalue.c:
|
||||
* gst/gstvalue.h:
|
||||
* libs/gst/base/gstadapter.c:
|
||||
* libs/gst/base/gstbaseparse.c:
|
||||
* libs/gst/base/gstbasesink.c:
|
||||
* libs/gst/base/gstbasesrc.c:
|
||||
* libs/gst/base/gstbasetransform.c:
|
||||
* libs/gst/base/gstbasetransform.h:
|
||||
* libs/gst/base/gstbitreader.c:
|
||||
* libs/gst/base/gstbytereader.c:
|
||||
* libs/gst/base/gstbytewriter.c:
|
||||
* libs/gst/base/gstcollectpads.c:
|
||||
* libs/gst/base/gstdataqueue.c:
|
||||
* libs/gst/base/gstdataqueue.h:
|
||||
* libs/gst/base/gstflowcombiner.c:
|
||||
* libs/gst/base/gstindex.c:
|
||||
* libs/gst/base/gstpushsrc.c:
|
||||
* libs/gst/base/gstqueuearray.c:
|
||||
* libs/gst/base/gsttypefindhelper.c:
|
||||
* libs/gst/check/gstbufferstraw.c:
|
||||
* libs/gst/check/gstcheck.c:
|
||||
* libs/gst/check/gstconsistencychecker.c:
|
||||
* libs/gst/check/gstharness.c:
|
||||
* libs/gst/check/gsttestclock.c:
|
||||
* libs/gst/controller/gstargbcontrolbinding.c:
|
||||
* libs/gst/controller/gstdirectcontrolbinding.c:
|
||||
* libs/gst/controller/gstinterpolationcontrolsource.c:
|
||||
* libs/gst/controller/gstlfocontrolsource.c:
|
||||
* libs/gst/controller/gstproxycontrolbinding.c:
|
||||
* libs/gst/controller/gsttimedvaluecontrolsource.c:
|
||||
* libs/gst/controller/gsttriggercontrolsource.c:
|
||||
* libs/gst/net/gstnetaddressmeta.c:
|
||||
* libs/gst/net/gstnetclientclock.c:
|
||||
* libs/gst/net/gstnetcontrolmessagemeta.c:
|
||||
* libs/gst/net/gstnettimepacket.c:
|
||||
* libs/gst/net/gstnettimeprovider.c:
|
||||
* libs/gst/net/gstptpclock.c:
|
||||
* plugins/elements/gstcapsfilter.c:
|
||||
* plugins/elements/gstconcat.c:
|
||||
* plugins/elements/gstdataurisrc.c:
|
||||
* plugins/elements/gstdownloadbuffer.c:
|
||||
* plugins/elements/gstfakesink.c:
|
||||
* plugins/elements/gstfakesrc.c:
|
||||
* plugins/elements/gstfakesrc.h:
|
||||
* plugins/elements/gstfdsink.c:
|
||||
* plugins/elements/gstfdsrc.c:
|
||||
* plugins/elements/gstfilesink.c:
|
||||
* plugins/elements/gstfilesrc.c:
|
||||
* plugins/elements/gstfunnel.c:
|
||||
* plugins/elements/gstidentity.c:
|
||||
* plugins/elements/gstinputselector.c:
|
||||
* plugins/elements/gstmultiqueue.c:
|
||||
* plugins/elements/gstoutputselector.c:
|
||||
* plugins/elements/gstqueue.c:
|
||||
* plugins/elements/gstqueue2.c:
|
||||
* plugins/elements/gststreamiddemux.c:
|
||||
* plugins/elements/gsttee.c:
|
||||
* plugins/elements/gsttypefindelement.c:
|
||||
* plugins/elements/gstvalve.c:
|
||||
Port gtk-doc comments to their equivalent markdown syntax
|
||||
Modernizing our documentation and preparing a possible move to hotdoc.
|
||||
This commits also adds missing @title metadatas to all SECTIONs
|
||||
|
||||
2017-01-11 17:25:08 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* gst/gstbuffer.h:
|
||||
* gst/gstcontrolbinding.h:
|
||||
* gst/gstelement.h:
|
||||
* gst/gstevent.h:
|
||||
* gst/gstmemory.h:
|
||||
* gst/gstmessage.h:
|
||||
* gst/gstmeta.h:
|
||||
* gst/gstquery.h:
|
||||
* gst/gststreamcollection.h:
|
||||
* gst/gststreams.h:
|
||||
* gst/gsttracer.h:
|
||||
* gst/gsturi.h:
|
||||
gst: Fix includes so that files can be built separately
|
||||
It used to work but it has broke in the 1.10 cycle.
|
||||
|
||||
2017-01-18 10:56:38 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* gst/gstpoll.c:
|
||||
gstpoll: Encode in utf-8
|
||||
|
||||
2017-01-26 15:32:31 -0800 Brendan Shanks <brendan.shanks@teradek.com>
|
||||
|
||||
* gst/gststreamcollection.h:
|
||||
* gst/gststreams.h:
|
||||
GstStream/GstStreamCollection: add g_autoptr() support
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777810
|
||||
|
||||
2017-01-26 16:51:21 +0000 Julien Isorce <jisorce@oblong.com>
|
||||
|
||||
* libs/gst/base/gstbaseparse.c:
|
||||
baseparse: correctly handle non-flush seek
|
||||
Otherwise when seeking/looping to the start when reaching the end,
|
||||
the sink waits for the duration of the stream. So the user hears
|
||||
nothing for the duration of the stream before it actually loop again.
|
||||
See example attached to the bug for that.
|
||||
Existing test:
|
||||
gst-plugins-good/tests/icles/test-segment-seeks foo.flac
|
||||
Without the patch the user hears a crack/cut at each seek.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777780
|
||||
|
||||
2016-05-24 14:57:54 +0200 Stian Selnes <stian@pexip.com>
|
||||
|
||||
* libs/gst/check/Makefile.am:
|
||||
* libs/gst/check/gstcheck.c:
|
||||
* libs/gst/check/gstcheck.h:
|
||||
check: Add API to filter g_warning/g_critical etc
|
||||
New API functions to filter log messages before they are processed by
|
||||
GstCheck. This can be used to discard specific messages that are
|
||||
accepted by the test or to add callbacks that test specific messages.
|
||||
Default bevavior when no callback is given to a filter is to discard the
|
||||
message, because it does not makes sense to have a filter with no
|
||||
callback which does not discard; that would be a noop.
|
||||
Discarded messages will in addition to bypass the GstCheck handling also
|
||||
return to GLib that the message is not fatal if it occurs.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=773091
|
||||
|
||||
2017-01-18 22:39:33 +0100 Stefan Sauer <ensonic@users.sf.net>
|
||||
|
||||
* gst/gstbin.c:
|
||||
bin: update the docs for the event forwarding
|
||||
First this sends the events not only to the sources and 2nd this is not only
|
||||
for seek events.
|
||||
|
||||
2017-01-18 15:07:58 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* gst/parse/grammar.y:
|
||||
parse: Don't hold element's object lock while querying element pads' caps
|
||||
This can easily deadlock if the element uses the object lock for
|
||||
something internally, like posting an error message. Use an GstIterator
|
||||
for iterating over the pads instead.
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777449
|
||||
|
||||
2017-01-16 09:41:19 +1100 Jan Schmidt <jan@centricular.com>
|
||||
|
||||
* gst/gstbin.c:
|
||||
gstbin: Quieten a noisy FIXME about duration caching
|
||||
Only print this FIXME once per run, at it's pretty annoying in
|
||||
lots of logs otherwise.
|
||||
|
||||
2015-07-14 13:11:11 +0000 Jan Schmidt <jan@centricular.com>
|
||||
|
||||
* plugins/elements/gstidentity.c:
|
||||
* plugins/elements/gstidentity.h:
|
||||
identity: Add ts-offset property.
|
||||
Add a property to delay or advance sync time
|
||||
when sync=true, with the same behaviour as
|
||||
the ts-offset property in basesink
|
||||
|
||||
2017-01-15 11:52:44 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* gst/gstdatetime.c:
|
||||
* tests/check/gst/gstdatetime.c:
|
||||
datetime: fix potential out-of-bound read on malformed datetime string
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=777263
|
||||
|
||||
2017-01-13 12:34:43 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* meson.build:
|
||||
meson: bump version
|
||||
|
||||
2017-01-12 16:32:38 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* configure.ac:
|
||||
Back to development
|
||||
|
||||
=== release 1.11.1 ===
|
||||
|
||||
2017-01-12 15:29:15 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* configure.ac:
|
||||
* docs/plugins/inspect/plugin-coreelements.xml:
|
||||
* gstreamer.doap:
|
||||
Release 1.11.1
|
||||
|
||||
2017-01-12 14:35:22 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* po/hr.po:
|
||||
* po/id.po:
|
||||
* po/pl.po:
|
||||
* po/zh_CN.po:
|
||||
Update .po files
|
||||
|
||||
2017-01-12 14:34:18 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
|
|
2
NEWS
2
NEWS
|
@ -1 +1 @@
|
|||
This is GStreamer 1.11.1.
|
||||
This is GStreamer 1.11.2.
|
||||
|
|
78
RELEASE
78
RELEASE
|
@ -1,7 +1,7 @@
|
|||
|
||||
Release notes for GStreamer 1.11.1
|
||||
Release notes for GStreamer 1.11.2
|
||||
|
||||
The GStreamer team is pleased to announce the first release of the unstable
|
||||
The GStreamer team is pleased to announce the second release of the unstable
|
||||
1.11 release series. The 1.11 release series is adding new features on top of
|
||||
the 1.0, 1.2, 1.4, 1.6, 1.8 and 1.10 series and is part of the API and ABI-stable 1.x release
|
||||
series of the GStreamer multimedia framework. The unstable 1.11 release series
|
||||
|
@ -40,44 +40,13 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg)
|
|||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 772921 : debug log categories registered later can not be filtered for
|
||||
* 599546 : Faster GST_WRITE_* macros
|
||||
* 748626 : gst-uninstalled: export gio extra modules
|
||||
* 750079 : registry: add factory for automatic dynamic caps enum/flags types loading
|
||||
* 751450 : parse/grammar.y: Allow multiple links to happen.
|
||||
* 760550 : parse-launch: improve possibly misleading error message when linking two elements with filter caps
|
||||
* 761225 : pad: Allow multiple conversion specifiers for request pads and don't require it at the very end
|
||||
* 761918 : gstvalue: Make GValueArray serializable
|
||||
* 765734 : fakesink: Property to not drop out-of-segment buffers
|
||||
* 766470 : Add gst_print(), gst_println(), gst_printerr(), gst_printerrln(), etc
|
||||
* 768526 : funnel: Always push all sticky events whenever we forward a serialized event
|
||||
* 769220 : info: add GstStream and GstStreamCollection support to gst_debug_print_object()
|
||||
* 769775 : basesrc: Support PROTECTION event from application
|
||||
* 770498 : multiqueue: decodebin, decodebin3 mpegts pipeline hangs
|
||||
* 772468 : basesink: Don't nest prepare/render calls
|
||||
* 772555 : debug: Implement gst_debug_print_stack_trace with libunwind/backtrace when avalaible
|
||||
* 773089 : gstreamer: set env GST_REGISTRY_DISABLE=yes to disable registry
|
||||
* 773092 : gstinfo: Replace %p and %r in GST_DEBUG_FILE
|
||||
* 773568 : meson: don't add_global_arguments when being built as a subproject
|
||||
* 773907 : gst-launch: fix minor memory leak when failing to parse options
|
||||
* 773912 : fdsink: Returns flushing on PLAYING- > PAUSED if it can block in - > render
|
||||
* 774332 : Latency tracer fails when asserting on GST_IS_EVENT (event)
|
||||
* 774424 : meson: Fails to build on FreeBSD because -lexecinfo is not used
|
||||
* 774623 : basetransform: Ensure to set the RECONFIGURE flag again if reconfiguration failed
|
||||
* 774656 : meson: change add_global_arguments to add_project_arguments
|
||||
* 774657 : add proxy control binding
|
||||
* 774830 : uri: Add new uri API to get URI fragment as table
|
||||
* 774916 : utils: Export linear regression calculation as public function
|
||||
* 775110 : create-uninstalled-setup.sh script should use https: instead of git: and --depth=1
|
||||
* 775365 : info: Properly start and end dwfl sessions when getting stack traces
|
||||
* 775423 : info: Add a 'flags' parameter to gst_debug_get_stack_trace
|
||||
* 775540 : check: Allow listing unit tests names
|
||||
* 775541 : leaks: Implement ref/unref tracing in the leaks tracer
|
||||
* 775727 : buffer: add gst_buffer_iterate_meta_filtered() convenience function
|
||||
* 775796 : value: add intersection/union/is_subset/fixate implementations
|
||||
* 775944 : Wrong introspection data for gst_event_new_select_streams and gst_event_parse_select_streams
|
||||
* 776077 : gstpad: issue performance penalty warning only on actual cascading caps query cases
|
||||
* 776392 : gst-inspect: Add a '--types' option to filter elements by types to print
|
||||
* 764707 : segment: Modifiy inside segment condition
|
||||
* 773091 : check: Add API to filter g_warning/g_critical etc
|
||||
* 777375 : paramspec: Add gst_param_spec_array_list for GST_TYPE_ARRAY
|
||||
* 777449 : parse: Deadlock when trying to link an element that takes its object lock while querying caps
|
||||
* 777780 : GstBaseParse incorrectly handles non-flush seek
|
||||
* 777810 : GstStream and GstStreamCollection missing g_autoptr() support
|
||||
* 778866 : gstconfig.h.in: Fix unaligned access support for the openrisc architecture
|
||||
|
||||
==== Download ====
|
||||
|
||||
|
@ -114,38 +83,17 @@ subscribe to the gstreamer-devel list.
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Antonio Ospite
|
||||
* Edward Hervey
|
||||
* Fabrice Bellet
|
||||
* Guillaume Desmottes
|
||||
* Hanno Boeck
|
||||
* Iñaki García Etxebarria
|
||||
* Brendan Shanks
|
||||
* Jan Schmidt
|
||||
* Josep Torra
|
||||
* Julien Isorce
|
||||
* Luis de Bethencourt
|
||||
* Marcin Kolny
|
||||
* Mark Nauwelaerts
|
||||
* Matthew Waters
|
||||
* Nicola Murino
|
||||
* Nicolas Dechesne
|
||||
* Nicolas Dufresne
|
||||
* Nicolas Huet
|
||||
* Nirbheek Chauhan
|
||||
* Olivier Crête
|
||||
* Peter Seiderer
|
||||
* Reynaldo H. Verdejo Pinochet
|
||||
* Ricardo Ribalda Delgado
|
||||
* Scott D Phillips
|
||||
* Peter Korsgaard
|
||||
* Sebastian Dröge
|
||||
* Seungha Yang
|
||||
* Stefan Sauer
|
||||
* Stian Selnes
|
||||
* Thiago Santos
|
||||
* Thibault Saunier
|
||||
* Tim-Philipp Müller
|
||||
* Ting-Wei Lan
|
||||
* Victor Toso
|
||||
* Vincent Penquerc'h
|
||||
* Wonchul Lee
|
||||
* Vivia Nikolaidou
|
||||
* Wim Taymans
|
||||
|
|
@ -4,7 +4,7 @@ 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
|
||||
dnl
|
||||
AC_INIT([GStreamer],[1.11.1.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
|
||||
AC_INIT([GStreamer],[1.11.2],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
|
||||
AG_GST_INIT
|
||||
|
||||
dnl initialize automake (we require GNU make)
|
||||
|
@ -62,7 +62,7 @@ dnl 1.2.5 => 205
|
|||
dnl 1.10.9 (who knows) => 1009
|
||||
dnl
|
||||
dnl sets GST_LT_LDFLAGS
|
||||
AS_LIBTOOL(GST, 1101, 0, 1101)
|
||||
AS_LIBTOOL(GST, 1102, 0, 1102)
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -758,6 +758,16 @@
|
|||
<DEFAULT></DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstIdentity::ts-offset</NAME>
|
||||
<TYPE>gint64</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Timestamp offset for synchronisation</NICK>
|
||||
<BLURB>Timestamp offset in nanoseconds for synchronisation, negative for earlier sync.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstFileSrc::location</NAME>
|
||||
<TYPE>gchar*</TYPE>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GStreamer core elements</description>
|
||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||
<basename>libgstcoreelements.so</basename>
|
||||
<version>1.11.1</version>
|
||||
<version>1.11.2</version>
|
||||
<license>LGPL</license>
|
||||
<source>gstreamer</source>
|
||||
<package>GStreamer source release</package>
|
||||
|
|
|
@ -38,6 +38,16 @@ hierarchy, and a set of media-agnostic core elements.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.11.2</revision>
|
||||
<branch>master</branch>
|
||||
<name></name>
|
||||
<created>2017-02-24</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.11.2.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.11.1</revision>
|
||||
|
|
Loading…
Reference in a new issue