Release 1.13.91

This commit is contained in:
Tim-Philipp Müller 2018-03-13 19:32:39 +00:00
parent 75ac839391
commit 7626b73e19
6 changed files with 955 additions and 40 deletions

View file

@ -1,7 +1,58 @@
=== release 1.13.91 ===
2018-03-13 19:32:39 +0000 Tim-Philipp Müller <tim@centricular.com>
* NEWS:
* RELEASE:
* configure.ac:
* gst-omx.doap:
* meson.build:
Release 1.13.91
2018-03-09 12:02:29 +0000 Tim-Philipp Müller <tim@centricular.com>
* meson.build:
meson: fix typo in package name define
2018-02-27 15:42:53 +0100 Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
* omx/gstomxh265enc.c:
* omx/gstomxh265utils.c:
omxh265: update 422 profile names
h265parse is gaining support for the format range extension profile
(bgo#793876).
Use the profile names defined in h265parse.
https://bugzilla.gnome.org/show_bug.cgi?id=793928
2018-03-05 13:49:18 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* omx/gstomxvideoenc.c:
omxvideoenc: Don't drop the frame on empty payload
This otherwise may lead to "No reference frame found" warning.
2018-03-01 15:16:55 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* omx/gstomxvideodec.c:
omxvideodec: Don't drop the frame on empty payload
This otherwise may lead to "No reference frame found" warning.
2018-03-02 15:36:06 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* omx/gstomx.c:
omx: Free empty buffers list in use_dynamic_buffers
To indicate we are doing dynamic buffers importation, we pass
a list of NULL pointers, but we forgot to free that list.
2018-03-01 15:16:32 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
* omx/gstomxvideodec.c:
omxvideodec: Fix CodecState leak
=== release 1.13.90 ===
2018-03-03 23:00:59 +0000 Tim-Philipp Müller <tim@centricular.com>
* ChangeLog:
* NEWS:
* RELEASE:
* configure.ac:

924
NEWS

File diff suppressed because it is too large Load diff

View file

@ -1,4 +1,4 @@
This is GStreamer gst-omx 1.13.90.
This is GStreamer gst-omx 1.13.91.
The GStreamer team is pleased to announce the first release candidate for the
upcoming stable 1.14 release series.

View file

@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf
dnl releases only do -Wall, git and prerelease does -Werror too
dnl use a three digit version number for releases, and four for git/prerelease
AC_INIT(GStreamer OpenMAX Plug-ins, 1.13.90,
AC_INIT(GStreamer OpenMAX Plug-ins, 1.13.91,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-omx)
@ -45,10 +45,10 @@ AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION",
[GStreamer API Version])
AG_GST_LIBTOOL_PREPARE
AS_LIBTOOL(GST, 1390, 0, 1390)
AS_LIBTOOL(GST, 1391, 0, 1391)
dnl *** required versions of GStreamer stuff ***
GST_REQ=1.13.90
GST_REQ=1.13.91
dnl *** autotools stuff ****

View file

@ -31,6 +31,16 @@ a basic collection of elements
</GitRepository>
</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-omx/gst-omx-1.13.91.tar.xz" />
</Version>
</release>
<release>
<Version>
<revision>1.13.90</revision>

View file

@ -1,5 +1,5 @@
project('gst-omx', 'c',
version : '1.13.90',
version : '1.13.91',
meson_version : '>= 0.36.0',
default_options : [ 'warning_level=1',
'buildtype=debugoptimized' ])