mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-08 23:42:28 +00:00
Release 1.6.1
This commit is contained in:
parent
a8535aca8c
commit
ce147f81dd
8 changed files with 258 additions and 88 deletions
197
ChangeLog
197
ChangeLog
|
@ -1,9 +1,200 @@
|
||||||
=== release 1.6.0 ===
|
=== release 1.6.1 ===
|
||||||
|
|
||||||
2015-09-25 Sebastian Dröge <slomo@coaxion.net>
|
2015-10-30 Sebastian Dröge <slomo@coaxion.net>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
releasing 1.6.0
|
releasing 1.6.1
|
||||||
|
|
||||||
|
2015-10-30 14:09:00 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* po/cs.po:
|
||||||
|
* po/de.po:
|
||||||
|
* po/nl.po:
|
||||||
|
* po/pl.po:
|
||||||
|
* po/ru.po:
|
||||||
|
* po/uk.po:
|
||||||
|
* po/vi.po:
|
||||||
|
* po/zh_CN.po:
|
||||||
|
po: Update translations
|
||||||
|
|
||||||
|
2015-10-28 18:04:46 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* gst/gstpad.c:
|
||||||
|
pad: Unblock blocking pad probes when receiving FLUSH_START in send_event() too
|
||||||
|
Without this, flushing might not unblock the streaming thread and cause deadlocks.
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=757257
|
||||||
|
|
||||||
|
2015-10-24 16:43:59 +0100 Florin Apostol <florin.apostol@oregan.net>
|
||||||
|
|
||||||
|
* tests/check/gst/gsturi.c:
|
||||||
|
uri: tests: added unit test for streams ending in .. without following /
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=757065
|
||||||
|
|
||||||
|
2015-10-19 16:50:51 +0300 Vivia Nikolaidou <vivia@ahiru.eu>
|
||||||
|
|
||||||
|
* gst/gstsegment.c:
|
||||||
|
* tests/check/gst/gstsegment.c:
|
||||||
|
segment: Correct stream_time calc for negative applied rate
|
||||||
|
Updated gst_segment_position_from_stream_time and gst_segment_to_stream_time to reflect correct calculations for the case when the applied rate is negative.
|
||||||
|
Pasting from design docs:
|
||||||
|
===============================
|
||||||
|
Stream time is calculated using the buffer times and the preceding SEGMENT
|
||||||
|
event as follows:
|
||||||
|
stream_time = (B.timestamp - S.start) * ABS (S.applied_rate) + S.time
|
||||||
|
For negative rates, B.timestamp will go backwards from S.stop to S.start,
|
||||||
|
making the stream time go backwards.
|
||||||
|
===============================
|
||||||
|
Therefore, the calculation for applied_rate < 0 should be:
|
||||||
|
stream_time = (S.stop - B.timestamp) * ABS (S.applied_rate) + S.time
|
||||||
|
and the reverse:
|
||||||
|
B.timestamp = S.stop - (stream_time - S.time) / ABS (S.applied_rate)
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756810
|
||||||
|
|
||||||
|
2015-09-25 15:57:16 +0300 Vivia Nikolaidou <vivia@toolsonair.com>
|
||||||
|
|
||||||
|
* gst/gstsegment.c:
|
||||||
|
segment: gst_segment_to_stream_time: Renamed 'result' to 'stream_time'
|
||||||
|
Renamed the "result" variable to "stream_time" for better readability.
|
||||||
|
|
||||||
|
2015-10-24 16:52:44 +0100 Florin Apostol <florin.apostol@oregan.net>
|
||||||
|
|
||||||
|
* gst/gsturi.c:
|
||||||
|
uri: fix behaviour for merging uris ending in .. without following /
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=757065
|
||||||
|
|
||||||
|
2015-10-21 14:49:49 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* gst/gstpad.c:
|
||||||
|
pad: Fix docs/annotation of gst_pad_probe_info_get_buffer_list()
|
||||||
|
It's not get_bufferlist(). Because of that it was ignored by the docs and
|
||||||
|
G-I, leading to crashes because of broken ownership transfer.
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756898
|
||||||
|
|
||||||
|
2015-10-17 22:13:08 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* gst/gstbin.c:
|
||||||
|
bin: Make sure to free all cached messages when going to NULL
|
||||||
|
An ASYNC READY->PAUSED might have failed without the bin code noticing during
|
||||||
|
the state change, in which case we will never get PAUSED->READY and would leak
|
||||||
|
messages.
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756611
|
||||||
|
|
||||||
|
2015-10-15 16:32:42 +0200 Edward Hervey <edward@centricular.com>
|
||||||
|
|
||||||
|
* plugins/elements/gstmultiqueue.c:
|
||||||
|
multiqueue: Improve incoming SEGMENT handling
|
||||||
|
Previously this code was just blindly setting the cached flow return
|
||||||
|
of downstream to GST_FLOW_OK when we get a SEGMENT.
|
||||||
|
The problem is that this can not be done blindly. If downstream was
|
||||||
|
not linked, the corresponding sinqlequeue source pad thread might be
|
||||||
|
waiting for the next ID to be woken up upon.
|
||||||
|
By blindly setting the cached return value to GST_FLOW_OK, and if that
|
||||||
|
stream was the only one that was NOT_LINKED, then the next time we
|
||||||
|
check (from any other thread) to see if we need to wake up a source pad
|
||||||
|
thread ... we won't even try, because none of the cached flow return
|
||||||
|
are equal to GST_FLOW_NOT_LINKED.
|
||||||
|
This would result in that thread never being woken up
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756645
|
||||||
|
|
||||||
|
2015-10-12 17:29:26 +0200 Edward Hervey <edward@centricular.com>
|
||||||
|
|
||||||
|
* libs/gst/base/gstbaseparse.c:
|
||||||
|
baseparse: Update internal position even if not linked
|
||||||
|
Our current position has nothing to do with being linked or not.
|
||||||
|
Avoids having stray segment updates fired every 2s
|
||||||
|
|
||||||
|
2015-10-05 21:29:49 +0200 Stefan Sauer <ensonic@users.sf.net>
|
||||||
|
|
||||||
|
* tests/check/gst/gsttag.c:
|
||||||
|
tests: fix the tag test
|
||||||
|
The previous change (see bgo #756069) was causing us to free the same pointer
|
||||||
|
multiple times. If we actually get a sample back, the test fails, no need to
|
||||||
|
free anything in that case.
|
||||||
|
|
||||||
|
2015-10-05 11:12:47 +0900 Vineeth TM <vineeth.tm@samsung.com>
|
||||||
|
|
||||||
|
* tests/check/gst/gsttag.c:
|
||||||
|
* tools/gst-launch.c:
|
||||||
|
tests/gst-launch: Fix sample memory leak
|
||||||
|
When sample is got using gst_tag_list_get_sample_index, it should
|
||||||
|
be free'd.
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756069
|
||||||
|
|
||||||
|
2015-10-07 11:25:52 +0100 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* libs/gst/helpers/gst-ptp-helper.c:
|
||||||
|
gst-ptp-helper: #include <sys/socket.h> to fix net/if.h include on OSX 10.6
|
||||||
|
In file included from gst-ptp-helper.c:40:0:
|
||||||
|
/usr/include/net/if.h:265:19: error: field 'ifru_addr' has incomplete type
|
||||||
|
struct sockaddr ifru_addr;
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=756136
|
||||||
|
|
||||||
|
2015-09-28 16:01:55 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||||
|
|
||||||
|
* libs/gst/check/gstcheck.c:
|
||||||
|
check: fix 'format string is not a string literal' warning with clang
|
||||||
|
Broke this when I removed the G_GNUC_PRINTF in a previous
|
||||||
|
commit to fix indentation, since it was not really needed.
|
||||||
|
Turns out unlike gcc clang warns though if a non-literal
|
||||||
|
format string is passed then. Fix indentation differently.
|
||||||
|
http://clang.llvm.org/docs/AttributeReference.html#format-gnu-format
|
||||||
|
|
||||||
|
=== release 1.6.0 ===
|
||||||
|
|
||||||
|
2015-09-25 23:14:33 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* ChangeLog:
|
||||||
|
* NEWS:
|
||||||
|
* RELEASE:
|
||||||
|
* configure.ac:
|
||||||
|
* docs/plugins/inspect/plugin-coreelements.xml:
|
||||||
|
* gstreamer.doap:
|
||||||
|
* win32/common/config.h:
|
||||||
|
* win32/common/gstversion.h:
|
||||||
|
Release 1.6.0
|
||||||
|
|
||||||
|
2015-09-25 22:41:16 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||||
|
|
||||||
|
* po/af.po:
|
||||||
|
* po/az.po:
|
||||||
|
* po/be.po:
|
||||||
|
* po/bg.po:
|
||||||
|
* po/ca.po:
|
||||||
|
* po/cs.po:
|
||||||
|
* po/da.po:
|
||||||
|
* po/de.po:
|
||||||
|
* po/el.po:
|
||||||
|
* po/en_GB.po:
|
||||||
|
* po/eo.po:
|
||||||
|
* po/es.po:
|
||||||
|
* po/eu.po:
|
||||||
|
* po/fi.po:
|
||||||
|
* po/fr.po:
|
||||||
|
* po/gl.po:
|
||||||
|
* po/hr.po:
|
||||||
|
* po/hu.po:
|
||||||
|
* po/id.po:
|
||||||
|
* po/it.po:
|
||||||
|
* po/ja.po:
|
||||||
|
* po/lt.po:
|
||||||
|
* po/nb.po:
|
||||||
|
* po/nl.po:
|
||||||
|
* po/pl.po:
|
||||||
|
* po/pt_BR.po:
|
||||||
|
* po/ro.po:
|
||||||
|
* po/ru.po:
|
||||||
|
* po/rw.po:
|
||||||
|
* po/sk.po:
|
||||||
|
* po/sl.po:
|
||||||
|
* po/sq.po:
|
||||||
|
* po/sr.po:
|
||||||
|
* po/sv.po:
|
||||||
|
* po/tr.po:
|
||||||
|
* po/uk.po:
|
||||||
|
* po/vi.po:
|
||||||
|
* po/zh_CN.po:
|
||||||
|
* po/zh_TW.po:
|
||||||
|
Update .po files
|
||||||
|
|
||||||
2015-09-25 10:18:07 +0900 Vineeth TM <vineeth.tm@samsung.com>
|
2015-09-25 10:18:07 +0900 Vineeth TM <vineeth.tm@samsung.com>
|
||||||
|
|
||||||
|
|
82
NEWS
82
NEWS
|
@ -1,64 +1,30 @@
|
||||||
This is GStreamer 1.6.0
|
This is GStreamer 1.6.1
|
||||||
|
|
||||||
The GStreamer team is proud to announce a new major feature release in the
|
The GStreamer team is proud to announce the first bugfix release in the stable
|
||||||
stable 1.x API series of your favourite cross-platform multimedia framework!
|
1.6 release series of your favourite cross-platform multimedia framework!
|
||||||
|
|
||||||
This release has been in the works for more than a year and is packed with new
|
This release only contains bugfixes and it is safe to update from 1.6.0. For a
|
||||||
features, bug fixes and other improvements.
|
full list of bugfixes see Bugzilla:
|
||||||
|
https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&limit=0&list_id=73005&order=bug_id&product=GStreamer&resolution=FIXED&target_milestone=1.6.1
|
||||||
|
|
||||||
See http://gstreamer.freedesktop.org/releases/1.6/ for the full list of
|
See http://gstreamer.freedesktop.org/releases/1.6/ for the latest version of this document.
|
||||||
changes.
|
|
||||||
|
|
||||||
Highlights
|
Major bugfixes
|
||||||
|
|
||||||
|
- Crashes in the gst-libav encoders were fixed
|
||||||
|
- More DASH-IF test streams are working now
|
||||||
|
- Live DASH, HLS and MS SmoothStreaming streams work more reliable and other
|
||||||
|
fixes for the adaptive streaming protocols
|
||||||
|
- Reverse playback works with scaletempo to keep the audio pitch
|
||||||
|
- Correct stream-time is reported for negative applied_rate
|
||||||
|
- SRTP packet validation during decoding does not reject valid packets anymore
|
||||||
|
- Fixes for audioaggregator and aggregator to start producing output at the
|
||||||
|
right time, and e.g. not outputting lots of silence in the beginning
|
||||||
|
- gst-libav's internal ffmpeg snapshot was updated to 2.8.1
|
||||||
|
- cerbero has support for Mac OS X 10.11 (El Capitan)
|
||||||
|
- Various memory leaks were fixed, including major leaks in playbin, playsink
|
||||||
|
and decodebin
|
||||||
|
- Various GObject-Introspection annotation fixes for bindings
|
||||||
|
- and many, many more: https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&limit=0&list_id=73005&order=bug_id&product=GStreamer&resolution=FIXED&target_milestone=1.6.1
|
||||||
|
|
||||||
- Stereoscopic 3D and multiview video support
|
|
||||||
- Trick mode API for key-frame only fast-forward/fast-reverse playback etc.
|
|
||||||
- Improved DTS (decoding timestamp) vs. PTS (presentation timestamp) handling
|
|
||||||
to account for negative DTS
|
|
||||||
- New GstVideoConverter API for more optimised and more correct conversion of
|
|
||||||
raw video frames between all supported formats, with rescaling
|
|
||||||
- v4l2src now supports renegotiation
|
|
||||||
- v4l2transform can now do scaling
|
|
||||||
- V4L2 Element now report Colorimetry properly
|
|
||||||
- Easier chunked recording of MP4, Matroska, Ogg, MPEG-TS: new splitmuxsink
|
|
||||||
and multifilesink improvements
|
|
||||||
- Content Protection signalling API and Common Encryption (CENC) support for
|
|
||||||
DASH/MP4
|
|
||||||
- Many adaptive streaming (DASH, HLS and MSS) improvements
|
|
||||||
- New PTP and NTP network client clocks and better remote clock tracking
|
|
||||||
stability
|
|
||||||
- High-quality text subtitle overlay at display resolutions with glimagesink
|
|
||||||
or gtkglsink
|
|
||||||
- RECORD support for the GStreamer RTSP Server
|
|
||||||
- Retransmissions (RTX) support in RTSP server and client
|
|
||||||
- RTSP seeking support in client and server has been fixed
|
|
||||||
- RTCP scheduling improvements and reduced size RTCP support
|
|
||||||
- MP4/MOV muxer acquired a new "robust" mode of operation which attempts to
|
|
||||||
keep the output file in a valid state at all times
|
|
||||||
- Live mixing support in aggregator, audiomixer and compositor was improved a
|
|
||||||
lot
|
|
||||||
- compositor now supports rescaling and converting inputs streams on the fly
|
|
||||||
- New audiointerleave element with proper input synchronisation and live input
|
|
||||||
support
|
|
||||||
- Blackmagic Design DeckLink capture and playback card support was rewritten
|
|
||||||
from scratch; 2k/4k support; mode sensing
|
|
||||||
- KLV metadata support in RTP and MPEG-TS
|
|
||||||
- H.265 video encoder (x265), decoders (libav, libde265) and RTP payloader and
|
|
||||||
depayloaders
|
|
||||||
- New DTLS plugin and SRTP/DTLS support
|
|
||||||
- OpenGL3 support, multiple contexts and context propagation, 3D video,
|
|
||||||
transfer/conversion separation, subtitle blending
|
|
||||||
- New OpenGL-based QML video sink, Gtk GL video sink, CoreAnimation
|
|
||||||
CAOpenGLLayerSink video sink
|
|
||||||
- gst-libav switched to ffmpeg as libav-provider, gains support for
|
|
||||||
3D/multiview video, trick modes, and the CAVS codec
|
|
||||||
- GstHarness API for unit tests
|
|
||||||
- gst-editing-services got a completely new ges-launch-1.0 interface, improved
|
|
||||||
mixing support and integration into gst-validate
|
|
||||||
- gnonlin has been deprecated in favor of nle (Non Linear Engine) in
|
|
||||||
gst-editing-services
|
|
||||||
- gst-validate has a new plugin system, an extensive default testsuite,
|
|
||||||
support for concurrent test runs and valgrind support
|
|
||||||
- cerbero build tool for SDK binary packages gains new 'bundle-source' command
|
|
||||||
- Various improvements to the Android, iOS, OS X and Windows platform support
|
|
||||||
|
|
||||||
|
|
41
RELEASE
41
RELEASE
|
@ -1,18 +1,19 @@
|
||||||
|
|
||||||
Release notes for GStreamer 1.6.0
|
Release notes for GStreamer 1.6.1
|
||||||
|
|
||||||
|
|
||||||
The GStreamer team is proud to announce a new major feature release in the
|
The GStreamer team is proud to announce the first bugfix release in the stable
|
||||||
stable 1.x API series of your favourite cross-platform multimedia framework!
|
1.6 release series of your favourite cross-platform multimedia framework!
|
||||||
|
|
||||||
|
|
||||||
This release has been in the works for more than a year and is packed with new
|
|
||||||
features, bug fixes and other improvements.
|
This release only contains bugfixes and it is safe to update from 1.6.0. For a
|
||||||
|
full list of bugfixes see Bugzilla.
|
||||||
|
|
||||||
|
|
||||||
See
|
|
||||||
http://gstreamer.freedesktop.org/releases/1.6/
|
See http://gstreamer.freedesktop.org/releases/1.6/
|
||||||
for the full list of changes.
|
for the full release notes.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -39,13 +40,14 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg)
|
||||||
|
|
||||||
Bugs fixed in this release
|
Bugs fixed in this release
|
||||||
|
|
||||||
* 753887 : queue2: " Process SEEKING query " ok, but should handle SEEK events too (regression with non-seekable sources)
|
* 747612 : Valgrind 3.7.0 chokes on match-leak-kinds in gst.supp
|
||||||
* 755141 : inputselector: fix buffer leak
|
* 756069 : Gstreamer: Fix sample memory leaks
|
||||||
* 755257 : Minor documentation typo in gstpad & gstcaps APIs
|
* 756136 : gstreamer-1.6.0 doesn't compile on OS X 10.6: header file issue in gst-ptp-helper.c
|
||||||
* 755342 : element: state_change may fail because of release_request_pad (racy)
|
* 756645 : multiqueue: Improve incoming SEGMENT handling
|
||||||
* 755343 : funnel: Fix racy state change
|
* 756810 : segment_to_stream_time and position_from_stream_time miscalculate when applied_rate < 0
|
||||||
* 755511 : gstharness: don't crash when adding a sink-harness without h- > sinkpad
|
* 756898 : pad: gst_pad_probe_info_get_buffer_list() has wrong ownership transfer
|
||||||
* 755607 : ptpclock: Fix error leak during failures
|
* 757065 : uri: incorrect behavior when merging uris ending in ..
|
||||||
|
* 757257 : pad: Unblock blocking pad probes when receiving FLUSH_START in send_event() too
|
||||||
|
|
||||||
==== Download ====
|
==== Download ====
|
||||||
|
|
||||||
|
@ -82,10 +84,11 @@ subscribe to the gstreamer-devel list.
|
||||||
|
|
||||||
Contributors to this release
|
Contributors to this release
|
||||||
|
|
||||||
* Eunhae Choi
|
* Edward Hervey
|
||||||
* Havard Graff
|
* Florin Apostol
|
||||||
* Sebastian Dröge
|
* Sebastian Dröge
|
||||||
* Stian Selnes
|
* Stefan Sauer
|
||||||
* Vikram Fugro
|
* Tim-Philipp Müller
|
||||||
* Vineeth TM
|
* Vineeth TM
|
||||||
|
* Vivia Nikolaidou
|
||||||
|
|
|
@ -4,7 +4,7 @@ dnl initialize autoconf
|
||||||
dnl when going to/from release please set the nano (fourth number) right !
|
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 releases only do Wall, git and prerelease does Werror too
|
||||||
dnl
|
dnl
|
||||||
AC_INIT([GStreamer],[1.6.0],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
|
AC_INIT([GStreamer],[1.6.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gstreamer])
|
||||||
AG_GST_INIT
|
AG_GST_INIT
|
||||||
|
|
||||||
dnl initialize automake (we require GNU make)
|
dnl initialize automake (we require GNU make)
|
||||||
|
@ -62,7 +62,7 @@ dnl 1.2.5 => 205
|
||||||
dnl 1.10.9 (who knows) => 1009
|
dnl 1.10.9 (who knows) => 1009
|
||||||
dnl
|
dnl
|
||||||
dnl sets GST_LT_LDFLAGS
|
dnl sets GST_LT_LDFLAGS
|
||||||
AS_LIBTOOL(GST, 600, 0, 600)
|
AS_LIBTOOL(GST, 601, 0, 601)
|
||||||
|
|
||||||
dnl *** autotools stuff ****
|
dnl *** autotools stuff ****
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<description>GStreamer core elements</description>
|
<description>GStreamer core elements</description>
|
||||||
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
<filename>../../plugins/elements/.libs/libgstcoreelements.so</filename>
|
||||||
<basename>libgstcoreelements.so</basename>
|
<basename>libgstcoreelements.so</basename>
|
||||||
<version>1.6.0</version>
|
<version>1.6.1</version>
|
||||||
<license>LGPL</license>
|
<license>LGPL</license>
|
||||||
<source>gstreamer</source>
|
<source>gstreamer</source>
|
||||||
<package>GStreamer source release</package>
|
<package>GStreamer source release</package>
|
||||||
|
|
|
@ -38,6 +38,16 @@ hierarchy, and a set of media-agnostic core elements.
|
||||||
</GitRepository>
|
</GitRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>1.6.1</revision>
|
||||||
|
<branch>1.6</branch>
|
||||||
|
<name></name>
|
||||||
|
<created>2015-10-30</created>
|
||||||
|
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.6.1.tar.xz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>1.6.0</revision>
|
<revision>1.6.0</revision>
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||||
|
|
||||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||||
#define GST_PACKAGE_RELEASE_DATETIME "2015-09-25"
|
#define GST_PACKAGE_RELEASE_DATETIME "2015-10-30"
|
||||||
|
|
||||||
/* Define if static plugins should be built */
|
/* Define if static plugins should be built */
|
||||||
#undef GST_PLUGIN_BUILD_STATIC
|
#undef GST_PLUGIN_BUILD_STATIC
|
||||||
|
@ -454,7 +454,7 @@
|
||||||
#define PACKAGE_NAME "GStreamer"
|
#define PACKAGE_NAME "GStreamer"
|
||||||
|
|
||||||
/* Define to the full name and version of this package. */
|
/* Define to the full name and version of this package. */
|
||||||
#define PACKAGE_STRING "GStreamer 1.6.0"
|
#define PACKAGE_STRING "GStreamer 1.6.1"
|
||||||
|
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#define PACKAGE_TARNAME "gstreamer"
|
#define PACKAGE_TARNAME "gstreamer"
|
||||||
|
@ -463,7 +463,7 @@
|
||||||
#undef PACKAGE_URL
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#define PACKAGE_VERSION "1.6.0"
|
#define PACKAGE_VERSION "1.6.1"
|
||||||
|
|
||||||
/* directory where plugins are located */
|
/* directory where plugins are located */
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
|
@ -507,7 +507,7 @@
|
||||||
#undef USE_POISONING
|
#undef USE_POISONING
|
||||||
|
|
||||||
/* Version number of package */
|
/* Version number of package */
|
||||||
#define VERSION "1.6.0"
|
#define VERSION "1.6.1"
|
||||||
|
|
||||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||||
|
|
|
@ -60,7 +60,7 @@ G_BEGIN_DECLS
|
||||||
*
|
*
|
||||||
* The micro version of GStreamer at compile time:
|
* The micro version of GStreamer at compile time:
|
||||||
*/
|
*/
|
||||||
#define GST_VERSION_MICRO (0)
|
#define GST_VERSION_MICRO (1)
|
||||||
/**
|
/**
|
||||||
* GST_VERSION_NANO:
|
* GST_VERSION_NANO:
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue