mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
Release 1.17.90
This commit is contained in:
parent
995a135df6
commit
bb76cbd5ae
5 changed files with 143 additions and 42 deletions
122
ChangeLog
122
ChangeLog
|
@ -1,3 +1,125 @@
|
|||
=== release 1.17.90 ===
|
||||
|
||||
2020-08-20 16:12:23 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* ChangeLog:
|
||||
* NEWS:
|
||||
* RELEASE:
|
||||
* gst-plugins-ugly.doap:
|
||||
* meson.build:
|
||||
Release 1.17.90
|
||||
|
||||
2020-07-15 10:49:03 +0300 Jordan Petridis <jordan@centricular.com>
|
||||
|
||||
* tests/check/elements/amrnbenc.c:
|
||||
amrnbenc: remove global variables
|
||||
gstcheck is declaring its own buffers glist which ends up
|
||||
overwritten, loks like the code meant to use that already
|
||||
gcc 10 is also complaining about this, but only on static
|
||||
builds for some reason
|
||||
```
|
||||
FAILED: subprojects/gst-plugins-ugly/tests/check/elements_amrnbenc
|
||||
/usr/bin/ld: subprojects/gstreamer/libs/gst/check/libgstcheck-1.0.a(gstcheck.c.o):(.bss+0x38): multiple definition of `buffers'; subprojects/gst-plugins-ugly/tests/check/708af1f@@elements_amrnbenc@exe/elements_amrnbenc.c.o:(.bss+0x18): first defined here
|
||||
collect2: error: ld returned 1 exit status
|
||||
```
|
||||
also remove unused var `current_buf`
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/62>
|
||||
|
||||
2020-04-02 03:27:26 +1100 Jan Schmidt <jan@centricular.com>
|
||||
|
||||
* gst/realmedia/rmdemux.c:
|
||||
rmdemux: Don't ignore the return value of gst_segment_do_seek()
|
||||
If gst_segment_do_seek() fails, fail the seek.
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/45>
|
||||
|
||||
2020-04-01 19:34:30 +1100 Jan Schmidt <jan@centricular.com>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c:
|
||||
asfdemux: Don't ignore the return result of gst_segment_do_seek()
|
||||
gst_segment_do_seek() can fail, and our seek should fail
|
||||
accordingly.
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/45>
|
||||
|
||||
2020-04-17 11:34:16 -0500 Derek Lesho <dlesho@codeweavers.com>
|
||||
|
||||
* gst/asfdemux/gstasfdemux.c:
|
||||
asfdemux: Only forward SEEK event when in push mode.
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/48>
|
||||
|
||||
2020-07-25 21:19:20 +0100 Stéphane Cerveau <scerveau@collabora.com>
|
||||
|
||||
* meson.build:
|
||||
meson: add a plugin summary
|
||||
This summary displays a list of plugins which
|
||||
have been enabled.
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/65>
|
||||
|
||||
2018-10-03 13:32:11 +0200 Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* ext/x264/GstX264Enc.prs:
|
||||
x264enc: Add a 'Zero Latency' profile
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/42>
|
||||
|
||||
2020-07-22 17:31:37 +0200 Mathieu Duponchelle <mathieu@centricular.com>
|
||||
|
||||
* tests/check/elements/x264enc.c:
|
||||
tests/x264enc: Don't declare variables inside the for loop header
|
||||
This is a C99 feature
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/64>
|
||||
|
||||
2020-07-21 15:40:26 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
|
||||
|
||||
* tests/check/elements/x264enc.c:
|
||||
tests: x264enc: Test formats are compatible with profile
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
|
||||
|
||||
2020-07-01 16:11:09 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
|
||||
|
||||
* ext/x264/gstx264enc.c:
|
||||
x264enc: Separate high-10 video formats from 8-bit formats
|
||||
If downstream is constrained to an 8-bit profile, caps queries would
|
||||
still allow I420_10LE as input. If upstream actually sends such a caps
|
||||
event, downstream would fail to accept the high-10 profile.
|
||||
The following pipeline now fails earlier, during the negotiation phase
|
||||
instead of the stream start:
|
||||
gst-launch-1.0 videotestsrc ! video/x-raw,format=I420_10LE \
|
||||
! x264enc ! video/x-h264,profile=constrained-baseline \
|
||||
! fakesink
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
|
||||
|
||||
2020-07-21 15:39:31 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
|
||||
|
||||
* tests/check/elements/x264enc.c:
|
||||
tests: x264enc: Test 10-bit formats
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
|
||||
|
||||
2020-07-21 15:33:57 +0200 Jan Alexander Steffens (heftig) <jan.steffens@ltnglobal.com>
|
||||
|
||||
* tests/check/elements/x264enc.c:
|
||||
tests: x264enc: Test all (8-bit) video formats
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/59>
|
||||
|
||||
2020-07-06 22:13:55 -0400 Thibault Saunier <tsaunier@igalia.com>
|
||||
|
||||
* ext/x264/gstx264enc.c:
|
||||
x264enc: Forward downstream colorimetry and chroma-site upstream
|
||||
So that the value can be used by upstream converters when necessary.
|
||||
This whole logic has been copied from `__gst_video_element_proxy_caps`
|
||||
but those 2 fields were missing.
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/60>
|
||||
|
||||
2020-07-08 17:07:35 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* meson.build:
|
||||
* scripts/extract-release-date-from-doap-file.py:
|
||||
meson: set release date from .doap file for releases
|
||||
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-ugly/-/merge_requests/61>
|
||||
|
||||
2020-07-03 02:03:37 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* meson.build:
|
||||
Back to development
|
||||
|
||||
=== release 1.17.2 ===
|
||||
|
||||
2020-07-03 00:29:25 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
|
49
NEWS
49
NEWS
|
@ -1,22 +1,14 @@
|
|||
GStreamer 1.18 Release Notes
|
||||
|
||||
|
||||
GSTREAMER 1.18 RELEASE NOTES
|
||||
|
||||
|
||||
THESE RELEASE NOTES ARE A PLACEHOLDER, PLEASE BEAR WITH US WHILE WE
|
||||
FINISH WRITING UP THE REAL THING.
|
||||
These release notes are a placeholder, please bear with us while we
|
||||
finish writing up the real thing.
|
||||
|
||||
GStreamer 1.18.0 has not yet been released. It is scheduled for release
|
||||
in summer 2020 now.
|
||||
in late August / early September 2020.
|
||||
|
||||
1.17.x is the unstable development series that is currently being
|
||||
developed in the git master branch and which will eventually result in
|
||||
1.18, and 1.17.2 is the current development release in that series.
|
||||
|
||||
The schedule for the 1.18 development cycle is yet to be confirmed, but
|
||||
it is expected that feature freeze will be in June/July 2020, followed
|
||||
by several 1.17 pre-releases and then a new 1.18 stable release in
|
||||
July/August 2020.
|
||||
1.18, and 1.17.90 is the current 1.18 pre-release in that series.
|
||||
|
||||
1.18 will be backwards-compatible to the stable 1.16, 1.14, 1.12, 1.10,
|
||||
1.8, 1.6, 1.4, 1.2 and 1.0 release series.
|
||||
|
@ -24,8 +16,7 @@ July/August 2020.
|
|||
See https://gstreamer.freedesktop.org/releases/1.18/ for the latest
|
||||
version of this document.
|
||||
|
||||
_Last updated: Wednesday 1 July 2020, 23:50 UTC (log)_
|
||||
|
||||
Last updated: Wednesday 20 August 2020, 11:00 UTC (log)
|
||||
|
||||
Introduction
|
||||
|
||||
|
@ -36,12 +27,10 @@ framework!
|
|||
As always, this release is again packed with many new features, bug
|
||||
fixes and other improvements.
|
||||
|
||||
|
||||
Highlights
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
Major new features and changes
|
||||
|
||||
Noteworthy new API
|
||||
|
@ -66,12 +55,10 @@ The following plugins have been removed from gst-plugins-bad:
|
|||
|
||||
- FIXME
|
||||
|
||||
|
||||
Miscellaneous API additions
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
Miscellaneous performance and memory optimisations
|
||||
|
||||
As always there have been many performance and memory usage improvements
|
||||
|
@ -88,7 +75,6 @@ GstPlayer
|
|||
|
||||
- FIXME
|
||||
|
||||
|
||||
Miscellaneous changes
|
||||
|
||||
- FIXME
|
||||
|
@ -97,62 +83,50 @@ OpenGL integration
|
|||
|
||||
- FIXME
|
||||
|
||||
|
||||
Tracing framework and debugging improvements
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
Tools
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer RTSP server
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer VAAPI
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer OMX
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer Editing Services and NLE
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer validate
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer Python Bindings
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer C# Bindings
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer Rust Bindings
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
GStreamer Rust Plugins
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
Build and Dependencies
|
||||
|
||||
- The Autotools build system has finally been removed in favour of the
|
||||
|
@ -177,7 +151,6 @@ Cerbero has seen a number of improvements:
|
|||
|
||||
- FIXME
|
||||
|
||||
|
||||
Platform-specific changes and improvements
|
||||
|
||||
Android
|
||||
|
@ -194,7 +167,6 @@ Windows
|
|||
|
||||
- FIXME
|
||||
|
||||
|
||||
Contributors
|
||||
|
||||
- FIXME
|
||||
|
@ -202,7 +174,6 @@ Contributors
|
|||
… and many others who have contributed bug reports, translations, sent
|
||||
suggestions or helped testing.
|
||||
|
||||
|
||||
Stable 1.18 branch
|
||||
|
||||
After the 1.18.0 release there will be several 1.18.x bug-fix releases
|
||||
|
@ -215,12 +186,10 @@ the git 1.18 branch, which will be a stable branch.
|
|||
|
||||
1.18.0 has not been released yet.
|
||||
|
||||
|
||||
Known Issues
|
||||
|
||||
- FIXME
|
||||
|
||||
|
||||
Schedule for 1.20
|
||||
|
||||
Our next major feature release will be 1.20, and 1.19 will be the
|
||||
|
@ -234,7 +203,7 @@ The plan for the 1.20 development cycle is yet to be confirmed.
|
|||
|
||||
------------------------------------------------------------------------
|
||||
|
||||
_These release notes have been prepared by Tim-Philipp Müller with_
|
||||
_contributions from … (FIXME)_
|
||||
These release notes have been prepared by Tim-Philipp Müller with
|
||||
contributions from … (FIXME)
|
||||
|
||||
_License: CC BY-SA 4.0_
|
||||
License: CC BY-SA 4.0
|
||||
|
|
2
RELEASE
2
RELEASE
|
@ -1,4 +1,4 @@
|
|||
This is GStreamer gst-plugins-ugly 1.17.2.
|
||||
This is GStreamer gst-plugins-ugly 1.17.90.
|
||||
|
||||
GStreamer 1.17 is the development branch leading up to the next major
|
||||
stable version which will be 1.18.
|
||||
|
|
|
@ -33,6 +33,16 @@ might be widely known to present patent problems.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.17.90</revision>
|
||||
<branch>master</branch>
|
||||
<name></name>
|
||||
<created>2020-08-20</created>
|
||||
<file-release rdf:resource="https://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.17.90.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.17.2</revision>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
project('gst-plugins-ugly', 'c',
|
||||
version : '1.17.2.1',
|
||||
version : '1.17.90',
|
||||
meson_version : '>= 0.48',
|
||||
default_options : [ 'warning_level=1',
|
||||
'buildtype=debugoptimized' ])
|
||||
|
|
Loading…
Reference in a new issue