mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-29 21:21:12 +00:00
Release 1.13.91
This commit is contained in:
parent
6761a03fed
commit
5328250745
6 changed files with 937 additions and 41 deletions
32
ChangeLog
32
ChangeLog
|
@ -1,7 +1,39 @@
|
||||||
|
=== release 1.13.91 ===
|
||||||
|
|
||||||
|
2018-03-13 19:26:51 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||||
|
|
||||||
|
* NEWS:
|
||||||
|
* RELEASE:
|
||||||
|
* configure.ac:
|
||||||
|
* gst-libav.doap:
|
||||||
|
* meson.build:
|
||||||
|
Release 1.13.91
|
||||||
|
|
||||||
|
2018-03-13 19:26:51 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||||
|
|
||||||
|
* docs/plugins/inspect/plugin-libav.xml:
|
||||||
|
Update docs
|
||||||
|
|
||||||
|
2018-03-08 11:22:29 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
|
||||||
|
|
||||||
|
* configure.ac:
|
||||||
|
configure.ac: enable largefile support if possible
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=793103
|
||||||
|
|
||||||
|
2018-03-06 14:40:20 +1100 Matthew Waters <matthew@centricular.com>
|
||||||
|
|
||||||
|
* gst-libs/ext/Makefile.am:
|
||||||
|
build: prefer using *.la references when creating our own libtool files
|
||||||
|
Otherwise we will reference the dependant libraries with -lfoo rather than
|
||||||
|
/path/to/libfoo.la which breaks with the Android-based .la parser which
|
||||||
|
simply passes through all -l libraries.
|
||||||
|
https://bugzilla.gnome.org/show_bug.cgi?id=786403
|
||||||
|
|
||||||
=== release 1.13.90 ===
|
=== release 1.13.90 ===
|
||||||
|
|
||||||
2018-03-03 22:44:19 +0000 Tim-Philipp Müller <tim@centricular.com>
|
2018-03-03 22:44:19 +0000 Tim-Philipp Müller <tim@centricular.com>
|
||||||
|
|
||||||
|
* ChangeLog:
|
||||||
* NEWS:
|
* NEWS:
|
||||||
* RELEASE:
|
* RELEASE:
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
2
RELEASE
2
RELEASE
|
@ -1,4 +1,4 @@
|
||||||
This is GStreamer gst-libav 1.13.90.
|
This is GStreamer gst-libav 1.13.91.
|
||||||
|
|
||||||
The GStreamer team is pleased to announce the first release candidate for the
|
The GStreamer team is pleased to announce the first release candidate for the
|
||||||
upcoming stable 1.14 release series.
|
upcoming stable 1.14 release series.
|
||||||
|
|
|
@ -3,7 +3,7 @@ AC_PREREQ(2.69)
|
||||||
dnl initialize autoconf
|
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, cvs and prerelease does Werror too
|
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||||
AC_INIT(GStreamer libav, 1.13.90,
|
AC_INIT(GStreamer libav, 1.13.91,
|
||||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||||
gst-libav)
|
gst-libav)
|
||||||
|
|
||||||
|
@ -42,11 +42,11 @@ AC_SUBST(GST_API_VERSION)
|
||||||
dnl *** Check for external $AS vs detected by AS_LIBTOOL
|
dnl *** Check for external $AS vs detected by AS_LIBTOOL
|
||||||
user_AS="$AS"
|
user_AS="$AS"
|
||||||
AG_GST_LIBTOOL_PREPARE
|
AG_GST_LIBTOOL_PREPARE
|
||||||
AS_LIBTOOL(GST, 1390, 0, 1390)
|
AS_LIBTOOL(GST, 1391, 0, 1391)
|
||||||
|
|
||||||
dnl *** required versions of GStreamer stuff ***
|
dnl *** required versions of GStreamer stuff ***
|
||||||
GST_REQ=1.13.90
|
GST_REQ=1.13.91
|
||||||
GST_PBREQ=1.13.90
|
GST_PBREQ=1.13.91
|
||||||
|
|
||||||
ORC_REQ=0.4.16
|
ORC_REQ=0.4.16
|
||||||
ORC_CHECK([$ORC_REQ])
|
ORC_CHECK([$ORC_REQ])
|
||||||
|
|
|
@ -32,6 +32,16 @@ colorspace conversion elements.
|
||||||
</GitRepository>
|
</GitRepository>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
|
<release>
|
||||||
|
<Version>
|
||||||
|
<revision>1.13.91</revision>
|
||||||
|
<branch>master</branch>
|
||||||
|
<name></name>
|
||||||
|
<created>2018-03-13</created>
|
||||||
|
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.13.91.tar.xz" />
|
||||||
|
</Version>
|
||||||
|
</release>
|
||||||
|
|
||||||
<release>
|
<release>
|
||||||
<Version>
|
<Version>
|
||||||
<revision>1.13.90</revision>
|
<revision>1.13.90</revision>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
project('gst-libav', 'c', 'cpp',
|
project('gst-libav', 'c', 'cpp',
|
||||||
version : '1.13.90',
|
version : '1.13.91',
|
||||||
meson_version : '>= 0.36.0',
|
meson_version : '>= 0.36.0',
|
||||||
default_options : [ 'warning_level=1',
|
default_options : [ 'warning_level=1',
|
||||||
'buildtype=debugoptimized' ])
|
'buildtype=debugoptimized' ])
|
||||||
|
|
Loading…
Reference in a new issue