Blame NEWS

Packit f546b1
Packit f546b1
Packit f546b1
GSTREAMER 1.14 RELEASE NOTES
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer 1.14.0 was originally released on 19 March 2018.
Packit f546b1
Packit f546b1
The latest bug-fix release in the 1.14 series is 1.14.1 and was released
Packit f546b1
on 17 May 2018.
Packit f546b1
Packit f546b1
See https://gstreamer.freedesktop.org/releases/1.14/ for the latest
Packit f546b1
version of this document.
Packit f546b1
Packit f546b1
_Last updated: Thursday 17 May 2018, 12:00 UTC (log)_
Packit f546b1
Packit f546b1
Packit f546b1
Introduction
Packit f546b1
Packit f546b1
The GStreamer team is proud to announce a new major feature release in
Packit f546b1
the stable 1.x API series of your favourite cross-platform multimedia
Packit f546b1
framework!
Packit f546b1
Packit f546b1
As always, this release is again packed with new features, bug fixes and
Packit f546b1
other improvements.
Packit f546b1
Packit f546b1
Packit f546b1
Highlights
Packit f546b1
Packit f546b1
-   WebRTC support: real-time audio/video streaming to and from web
Packit f546b1
    browsers
Packit f546b1
Packit f546b1
-   Experimental support for the next-gen royalty-free AV1 video codec
Packit f546b1
Packit f546b1
-   Video4Linux: encoding support, stable element names and faster
Packit f546b1
    device probing
Packit f546b1
Packit f546b1
-   Support for the Secure Reliable Transport (SRT) video streaming
Packit f546b1
    protocol
Packit f546b1
Packit f546b1
-   RTP Forward Error Correction (FEC) support (ULPFEC)
Packit f546b1
Packit f546b1
-   RTSP 2.0 support in rtspsrc and gst-rtsp-server
Packit f546b1
Packit f546b1
-   ONVIF audio backchannel support in gst-rtsp-server and rtspsrc
Packit f546b1
Packit f546b1
-   playbin3 gapless playback and pre-buffering support
Packit f546b1
Packit f546b1
-   tee, our stream splitter/duplication element, now does allocation
Packit f546b1
    query aggregation which is important for efficient data handling and
Packit f546b1
    zero-copy
Packit f546b1
Packit f546b1
-   QuickTime muxer has a new prefill recording mode that allows file
Packit f546b1
    import in Adobe Premiere and FinalCut Pro while the file is still
Packit f546b1
    being written.
Packit f546b1
Packit f546b1
-   rtpjitterbuffer fast-start mode and timestamp offset adjustment
Packit f546b1
    smoothing
Packit f546b1
Packit f546b1
-   souphttpsrc connection sharing, which allows for connection reuse,
Packit f546b1
    cookie sharing, etc.
Packit f546b1
Packit f546b1
-   nvdec: new plugin for hardware-accelerated video decoding using the
Packit f546b1
    NVIDIA NVDEC API
Packit f546b1
Packit f546b1
-   Adaptive DASH trick play support
Packit f546b1
Packit f546b1
-   ipcpipeline: new plugin that allows splitting a pipeline across
Packit f546b1
    multiple processes
Packit f546b1
Packit f546b1
-   Major gobject-introspection annotation improvements for large parts
Packit f546b1
    of the library API
Packit f546b1
Packit f546b1
-   GStreamer C# bindings have been revived and seen many updates and
Packit f546b1
    fixes
Packit f546b1
Packit f546b1
-   The externally maintained GStreamer Rust bindings had many usability
Packit f546b1
    improvements and cover most of the API now. Coinciding with the 1.14
Packit f546b1
    release, a new release with the 1.14 API additions is happening.
Packit f546b1
Packit f546b1
Packit f546b1
Major new features and changes
Packit f546b1
Packit f546b1
WebRTC support
Packit f546b1
Packit f546b1
There is now basic support for WebRTC in GStreamer in form of a new
Packit f546b1
webrtcbin element and a webrtc support library. This allows you to build
Packit f546b1
applications that set up connections with and stream to and from other
Packit f546b1
WebRTC peers, whilst leveraging all of the usual GStreamer features such
Packit f546b1
as hardware-accelerated encoding and decoding, OpenGL integration,
Packit f546b1
zero-copy and embedded platform support. And it's easy to build and
Packit f546b1
integrate into your application too!
Packit f546b1
Packit f546b1
WebRTC enables real-time communication of audio, video and data with web
Packit f546b1
browsers and native apps, and it is supported or about to be support by
Packit f546b1
recent versions of all major browsers and operating systems.
Packit f546b1
Packit f546b1
GStreamer's new WebRTC implementation uses libnice for Interactive
Packit f546b1
Connectivity Establishment (ICE) to figure out the best way to
Packit f546b1
communicate with other peers, punch holes into firewalls, and traverse
Packit f546b1
NATs.
Packit f546b1
Packit f546b1
The implementation is not complete, but all the basics are there, and
Packit f546b1
the code sticks fairly close to the PeerConnection API. Where
Packit f546b1
functionality is missing it should be fairly obvious where it needs to
Packit f546b1
go.
Packit f546b1
Packit f546b1
For more details, background and example code, check out Nirbheek's blog
Packit f546b1
post _GStreamer has grown a WebRTC implementation_, as well as Matthew's
Packit f546b1
_GStreamer WebRTC_ talk from last year's GStreamer Conference in Prague.
Packit f546b1
Packit f546b1
New Elements
Packit f546b1
Packit f546b1
-   webrtcbin handles the transport aspects of webrtc connections (see
Packit f546b1
    WebRTC section above for more details)
Packit f546b1
Packit f546b1
-   New srtsink and srtsrc elements for the Secure Reliable Transport
Packit f546b1
    (SRT) video streaming protocol, which aims to be easy to use whilst
Packit f546b1
    striking a new balance between reliability and latency for low
Packit f546b1
    latency video streaming use cases. More details about SRT and the
Packit f546b1
    implementation in GStreamer in Olivier's blog post _SRT in
Packit f546b1
    GStreamer_.
Packit f546b1
Packit f546b1
-   av1enc and av1dec elements providing experimental support for the
Packit f546b1
    next-generation royalty free video AV1 codec, alongside Matroska
Packit f546b1
    support for it.
Packit f546b1
Packit f546b1
-   hlssink2 is a rewrite of the existing hlssink element, but unlike
Packit f546b1
    its predecessor hlssink2 takes elementary streams as input and
Packit f546b1
    handles the muxing to MPEG-TS internally. It also leverages
Packit f546b1
    splitmuxsink internally to do the splitting. This allows more
Packit f546b1
    control over the chunk splitting and sizing process and relies less
Packit f546b1
    on the co-operation of an upstream muxer. Different to the old
Packit f546b1
    hlssink it also works with pre-encoded streams and does not require
Packit f546b1
    close interaction with an upstream encoder element.
Packit f546b1
Packit f546b1
-   audiolatency is a new element for measuring audio latency end-to-end
Packit f546b1
    and is useful to measure roundtrip latency including both the
Packit f546b1
    GStreamer-internal latency as well as latency added by external
Packit f546b1
    components or circuits.
Packit f546b1
Packit f546b1
-   'fakevideosink is basically a null sink for video data and very
Packit f546b1
    similar to fakesink, only that it will answer allocation queries and
Packit f546b1
    will advertise support for various video-specific things such
Packit f546b1
    GstVideoMeta, GstVideoCropMeta and GstVideoOverlayCompositionMeta
Packit f546b1
    like a normal video sink would. This is useful for throughput
Packit f546b1
    testing and testing the zero-copy path when creating a new pipeline.
Packit f546b1
Packit f546b1
-   ipcpipeline: new plugin that allows the splitting of a pipeline into
Packit f546b1
    multiple processes. Usually a GStreamer pipeline runs in a single
Packit f546b1
    process and parallelism is achieved by distributing workloads using
Packit f546b1
    multiple threads. This means that all elements in the pipeline have
Packit f546b1
    access to all the other elements' memory space however, including
Packit f546b1
    that of any libraries used. For security reasons one might therefore
Packit f546b1
    want to put sensitive parts of a pipeline such as DRM and decryption
Packit f546b1
    handling into a separate process to isolate it from the rest of the
Packit f546b1
    pipeline. This can now be achieved with the new ipcpipeline plugin.
Packit f546b1
    Check out George's blog post _ipcpipeline: Splitting a GStreamer
Packit f546b1
    pipeline into multiple processes_ or his lightning talk from last
Packit f546b1
    year's GStreamer Conference in Prague for all the gory details.
Packit f546b1
Packit f546b1
-   proxysink and proxysrc are new elements to pass data from one
Packit f546b1
    pipeline to another within the same process, very similar to the
Packit f546b1
    existing inter elements, but not limited to raw audio and video
Packit f546b1
    data. These new proxy elements are very special in how they work
Packit f546b1
    under the hood, which makes them extremely powerful, but also
Packit f546b1
    dangerous if not used with care. The reason for this is that it's
Packit f546b1
    not just data that's passed from sink to src, but these elements
Packit f546b1
    basically establish a two-way wormhole that passes through queries
Packit f546b1
    and events in both directions, which means caps negotiation and
Packit f546b1
    allocation query driven zero-copy can work through this wormhole.
Packit f546b1
    There are scheduling considerations as well: proxysink forwards
Packit f546b1
    everything into the proxysrc pipeline directly from the proxysink
Packit f546b1
    streaming thread. There is a queue element inside proxysrc to
Packit f546b1
    decouple the source thread from the sink thread, but that queue is
Packit f546b1
    not unlimited, so it is entirely possible that the proxysink
Packit f546b1
    pipeline thread gets stuck in the proxysrc pipeline, e.g. when that
Packit f546b1
    pipeline is paused or stops consuming data for some other reason.
Packit f546b1
    This means that one should always shut down down the proxysrc
Packit f546b1
    pipeline before shutting down the proxysink pipeline, for example.
Packit f546b1
    Or at least take care when shutting down pipelines. Usually this is
Packit f546b1
    not a problem though, especially not in live pipelines. For more
Packit f546b1
    information see Nirbheek's blog post _Decoupling GStreamer
Packit f546b1
    Pipelines_, and also check out out the new ipcpipeline plugin for
Packit f546b1
    sending data from one process to another process (see above).
Packit f546b1
Packit f546b1
-   lcms is a new LCMS-based ICC color profile correction element
Packit f546b1
Packit f546b1
-   openmptdec is a new OpenMPT-based decoder for module music formats,
Packit f546b1
    such as S3M, MOD, XM, IT. It is built on top of a new
Packit f546b1
    GstNonstreamAudioDecoder base class which aims to unify handling of
Packit f546b1
    files which do not operate a streaming model. The wildmidi plugin
Packit f546b1
    has also been revived and is also implemented on top of this new
Packit f546b1
    base class.
Packit f546b1
Packit f546b1
-   The curl plugin has gained a new curlhttpsrc element, which is
Packit f546b1
    useful for testing HTTP protocol version 2.0 amongst other things.
Packit f546b1
Packit f546b1
-   The msdk plugin has gained a MPEG-2 video decoder(msdkmpeg2dec), VP8
Packit f546b1
    decoder(msdkvp8dec) and a VC1/WMV decoder(msdkvc1dec)
Packit f546b1
Packit f546b1
Noteworthy new API
Packit f546b1
Packit f546b1
-   GstPromise provides future/promise-like functionality. This is used
Packit f546b1
    in the GStreamer WebRTC implementation.
Packit f546b1
Packit f546b1
-   GstReferenceTimestampMeta is a new meta that allows you to attach
Packit f546b1
    additional reference timestamps to a buffer. These timestamps don't
Packit f546b1
    have to relate to the pipeline clock in any way. Examples of this
Packit f546b1
    could be an NTP timestamp when the media was captured, a frame
Packit f546b1
    counter on the capture side or the (local) UNIX timestamp when the
Packit f546b1
    media was captured. The decklink elements make use of this.
Packit f546b1
Packit f546b1
-   GstVideoRegionOfInterestMeta: it's now possible to attach generic
Packit f546b1
    free-form element-specific parameters to a region of interest meta,
Packit f546b1
    for example to tell a downstream encoder to use certain codec
Packit f546b1
    parameters for a certain region.
Packit f546b1
Packit f546b1
-   gst_bus_get_pollfd can be used to obtain a file descriptor for the
Packit f546b1
    bus that can be poll()-ed on for new messages. This is useful for
Packit f546b1
    integration with non-GLib event loops.
Packit f546b1
Packit f546b1
-   gst_get_main_executable_path() can be used by wrapper plugins that
Packit f546b1
    need to find things in the directory where the application
Packit f546b1
    executable is located. In the same vein,
Packit f546b1
    GST_PLUGIN_DEPENDENCY_FLAG_PATHS_ARE_RELATIVE_TO_EXE can be used to
Packit f546b1
    signal that plugin dependency paths are relative to the main
Packit f546b1
    executable.
Packit f546b1
Packit f546b1
-   pad templates can be told about the GType of the pad subclass of the
Packit f546b1
    pad via newly-added GstPadTemplate API API or the
Packit f546b1
    gst_element_class_add_static_pad_template_with_gtype() convenience
Packit f546b1
    function. gst-inspect-1.0 will use this information to print pad
Packit f546b1
    properties.
Packit f546b1
Packit f546b1
-   new convenience functions to iterate over element pads without using
Packit f546b1
    the GstIterator API: gst_element_foreach_pad(),
Packit f546b1
    gst_element_foreach_src_pad(), and gst_element_foreach_sink_pad().
Packit f546b1
Packit f546b1
-   GstBaseSrc and appsrc have gained support for buffer lists:
Packit f546b1
    GstBaseSrc subclasses can use gst_base_src_submit_buffer_list(), and
Packit f546b1
    applications can use gst_app_src_push_buffer_list() to push a buffer
Packit f546b1
    list into appsrc.
Packit f546b1
Packit f546b1
-   The GstHarness unit test harness has a couple of new convenience
Packit f546b1
    functions to retrieve all pending data in the harness in form of a
Packit f546b1
    single chunk of memory.
Packit f546b1
Packit f546b1
-   GstAudioStreamAlign is a new helper object for audio elements that
Packit f546b1
    handles discontinuity detection and sample alignment. It will align
Packit f546b1
    samples after the previous buffer's samples, but keep track of the
Packit f546b1
    divergence between buffer timestamps and sample position (jitter).
Packit f546b1
    If it exceeds a configurable threshold the alignment will be reset.
Packit f546b1
    This simply factors out code that was duplicated in a number of
Packit f546b1
    elements into a common helper API.
Packit f546b1
Packit f546b1
-   The GstVideoEncoder base class implements Quality of Service (QoS)
Packit f546b1
    now. This is disabled by default and must be opted in by setting the
Packit f546b1
    "qos" property, which will make the base class gather statistics
Packit f546b1
    about the real-time performance of the pipeline from downstream
Packit f546b1
    elements (usually sinks that sync the pipeline clock). Subclasses
Packit f546b1
    can then make use of this by checking whether input frames are late
Packit f546b1
    already using gst_video_encoder_get_max_encode_time() If late, they
Packit f546b1
    can just drop them and skip encoding in the hope that the pipeline
Packit f546b1
    will catch up.
Packit f546b1
Packit f546b1
-   The GstVideoOverlay interface gained a few helper functions for
Packit f546b1
    installing and handling a "render-rectangle" property on elements
Packit f546b1
    that implement this interface, so that this functionality can also
Packit f546b1
    be used from the command line for testing and debugging purposes.
Packit f546b1
    The property wasn't added to the interface itself as that would
Packit f546b1
    require all implementors to provide it which would not be
Packit f546b1
    backwards-compatible.
Packit f546b1
Packit f546b1
-   A new base class, GstNonstreamAudioDecoder for non-stream audio
Packit f546b1
    decoders was added to gst-plugins-bad. This base-class is meant to
Packit f546b1
    be used for audio decoders that require the whole stream to be
Packit f546b1
    loaded first before decoding can start. Examples of this are module
Packit f546b1
    formats (MOD/S3M/XM/IT/etc), C64 SID tunes, video console music
Packit f546b1
    files (GYM/VGM/etc), MIDI files and others. The new openmptdec
Packit f546b1
    element is based on this.
Packit f546b1
Packit f546b1
-   Full list of API new in 1.14:
Packit f546b1
-   GStreamer core API new in 1.14
Packit f546b1
-   GStreamer base library API new in 1.14
Packit f546b1
-   gst-plugins-base libraries API new in 1.14
Packit f546b1
-   gst-plugins-bad: no list, mostly GstWebRTC library and new
Packit f546b1
    non-stream audio decoder base class.
Packit f546b1
Packit f546b1
New RTP features and improvements
Packit f546b1
Packit f546b1
-   rtpulpfecenc and rtpulpfecdec are new elements that implement
Packit f546b1
    Generic Forward Error Correction (FEC) using Uneven Level Protection
Packit f546b1
    (ULP) as described in RFC 5109. This can be used to protect against
Packit f546b1
    certain types of (non-bursty) packet loss, and important packets
Packit f546b1
    such as those containing codec configuration data or key frames can
Packit f546b1
    be protected with higher redundancy. Equally, packets that are not
Packit f546b1
    particularly important can be given low priority or not be protected
Packit f546b1
    at all. If packets are lost, the receiver can then hopefully restore
Packit f546b1
    the lost packet(s) from the surrounding packets which were received.
Packit f546b1
    This is an alternative to, or rather complementary to, dealing with
Packit f546b1
    packet loss using _retransmission (rtx)_. GStreamer has had
Packit f546b1
    retransmission support for a long time, but Forward Error Correction
Packit f546b1
    allows for different trade-offs: The advantage of Forward Error
Packit f546b1
    Correction is that it doesn't add latency, whereas retransmission
Packit f546b1
    requires at least one more roundtrip to request and hopefully
Packit f546b1
    receive lost packets; Forward Error Correction increases the
Packit f546b1
    required bandwidth however, even in situations where there is no
Packit f546b1
    packet loss at all, so one will typically want to fine-tune the
Packit f546b1
    overhead and mechanisms used based on the characteristics of the
Packit f546b1
    link at the time.
Packit f546b1
Packit f546b1
-   New _Redundant Audio Data (RED)_ encoders and decoders for RTP as
Packit f546b1
    per RFC 2198 are also provided (rtpredenc and rtpreddec), mostly for
Packit f546b1
    chrome webrtc compatibility, as chrome will wrap ULPFEC-protected
Packit f546b1
    streams in RED packets, and such streams need to be wrapped and
Packit f546b1
    unwrapped in order to use ULPFEC with chrome.
Packit f546b1
Packit f546b1
-   a few new buffer flags for FEC support:
Packit f546b1
    GST_BUFFER_FLAG_NON_DROPPABLE can be used to mark important buffers,
Packit f546b1
    e.g. to flag RTP packets carrying keyframes or codec setup data for
Packit f546b1
    RTP Forward Error Correction purposes, or to prevent still video
Packit f546b1
    frames from being dropped by elements due to QoS. There already is a
Packit f546b1
    GST_BUFFER_FLAG_DROPPABLE. GST_RTP_BUFFER_FLAG_REDUNDANT is used to
Packit f546b1
    signal internally that a packet represents a redundant RTP packet
Packit f546b1
    and used in rtpstorage to hold back the packet and use it only for
Packit f546b1
    recovery from packet loss. Further work is still needed in
Packit f546b1
    payloaders to make use of these.
Packit f546b1
Packit f546b1
-   rtpbin now has an option for increasing timestamp offsets gradually:
Packit f546b1
    Sudden large changes to the internal ts_offset may cause timestamps
Packit f546b1
    to move backwards and may also cause visible glitches in media
Packit f546b1
    playback. The new "max-ts-offset-adjustment" and "max-ts-offset"
Packit f546b1
    properties let the application control the rate to apply changes to
Packit f546b1
    ts_offset. There have also been some EOS/BYE handling improvements
Packit f546b1
    in rtpbin.
Packit f546b1
Packit f546b1
-   rtpjitterbuffer has a new fast start mode: in many scenarios the
Packit f546b1
    jitter buffer will have to wait for the full configured latency
Packit f546b1
    before it can start outputting packets. The reason for that is that
Packit f546b1
    it often can't know what the sequence number of the first expected
Packit f546b1
    RTP packet is, so it can't know whether a packet earlier than the
Packit f546b1
    earliest packet received will still arrive in future. This behaviour
Packit f546b1
    can now be bypassed by setting the "faststart-min-packets" property
Packit f546b1
    to the number of consecutive packets needed to start, and the jitter
Packit f546b1
    buffer will start output packets as soon as it has N consecutive
Packit f546b1
    packets queued internally. This is particularly useful to get a
Packit f546b1
    first video frame decoded and rendered as quickly as possible.
Packit f546b1
Packit f546b1
-   rtpL8pay and rtpL8depay provide RTP payloading and depayloading for
Packit f546b1
    8-bit raw audio
Packit f546b1
Packit f546b1
New element features
Packit f546b1
Packit f546b1
-   playbin3 has gained support or gapless playback via the
Packit f546b1
    "about-to-finish" signal where users can set the uri for the next
Packit f546b1
    item to play. For non-live streams this will be emitted as soon as
Packit f546b1
    the first uri has finished downloading, so with sufficiently large
Packit f546b1
    buffers it is now possible to pre-buffer the next item well ahead of
Packit f546b1
    time (unlike playbin where there would not be a lot of time between
Packit f546b1
    "about-to-finish" emission and the end of the stream). If the stream
Packit f546b1
    format of the next stream is the same as that of the previous
Packit f546b1
    stream, the data will be concatenated via the concat element.
Packit f546b1
    Whether this will result in true gaplessness depends on the
Packit f546b1
    container format and codecs used, there might still be codec-related
Packit f546b1
    gaps between streams with some codecs.
Packit f546b1
Packit f546b1
-   tee now does allocation query aggregation, which is important for
Packit f546b1
    zero-copy and efficient data handling, especially for video. Those
Packit f546b1
    who want to drop allocation queries on purpose can use the identity
Packit f546b1
    element's new "drop-allocation" property for that instead.
Packit f546b1
Packit f546b1
-   audioconvert now has a "mix-matrix" property, which obsoletes the
Packit f546b1
    audiomixmatrix element. There's also mix matrix support in the audio
Packit f546b1
    conversion and channel mixing API.
Packit f546b1
Packit f546b1
-   x264enc: new "insert-vui" property to disable VUI (Video Usability
Packit f546b1
    Information) parameter insertion into the stream, which allows
Packit f546b1
    creation of streams that are compatible with certain legacy hardware
Packit f546b1
    decoders that will refuse to decode in certain combinations of
Packit f546b1
    resolution and VUI parameters; the max. allowed number of B-frames
Packit f546b1
    was also increased from 4 to 16.
Packit f546b1
Packit f546b1
-   dvdlpcmdec: has gained support for Blu-Ray audio LPCM.
Packit f546b1
Packit f546b1
-   appsrc has gained support for buffer lists (see above) and also seen
Packit f546b1
    some other performance improvements.
Packit f546b1
Packit f546b1
-   flvmux has been ported to the GstAggregator base class which means
Packit f546b1
    it can work in defined-latency mode with live input sources and
Packit f546b1
    continue streaming if one of the inputs stops producing data.
Packit f546b1
Packit f546b1
-   jpegenc has gained a "snapshot" property just like pngenc to make it
Packit f546b1
    easier to output just a single encoded frame.
Packit f546b1
Packit f546b1
-   jpegdec will now handle interlaced MJPEG streams properly and also
Packit f546b1
    handles frames without an End of Image marker better.
Packit f546b1
Packit f546b1
-   v4l2: There are now video encoders for VP8, VP9, MPEG4, and H263.
Packit f546b1
    The v4l2 video decoder handles dynamic resolution changes, and the
Packit f546b1
    video4linux device provider now does much faster device probing. The
Packit f546b1
    plugin also no longer uses the libv4l2 library by default, as it has
Packit f546b1
    prevented a lot of interesting use cases like CREATE_BUFS, DMABuf,
Packit f546b1
    usage of TRY_FMT. As the libv4l2 library is totally inactive and not
Packit f546b1
    really maintained, we decided to disable it. This might affect a
Packit f546b1
    small number of cheap/old webcams with custom vendor formats for
Packit f546b1
    which we do not provide conversion in GStreamer. It is possible to
Packit f546b1
    re-enable support for libv4l2 at run-time however, by setting the
Packit f546b1
    environment variable GST_V4L2_USE_LIBV4L2=1.
Packit f546b1
Packit f546b1
-   rtspsrc now has support for RTSP protocol version 2.0 as well as
Packit f546b1
    ONVIF audio backchannels (see below for more details). It also
Packit f546b1
    sports a new "accept-certificate" signal for "manually" checking a
Packit f546b1
    TLS certificate for validity. It now also prints RTSP/SDP messages
Packit f546b1
    to the gstreamer debug log instead of stdout.
Packit f546b1
Packit f546b1
-   shout2send now uses non-blocking I/O and has a configurable network
Packit f546b1
    operations timeout.
Packit f546b1
Packit f546b1
-   splitmuxsink has gained a "split-now" action signal and new
Packit f546b1
    "alignment-threshold" and "use-robust-muxing" properties. If robust
Packit f546b1
    muxing is enabled, it will check and set the muxer's reserved space
Packit f546b1
    properties if present. This is primarily for use with mp4mux's
Packit f546b1
    robust muxing mode.
Packit f546b1
Packit f546b1
-   qtmux has a new _prefill recording mode_ which sets up a moov header
Packit f546b1
    with the correct sample positions beforehand, which then allows
Packit f546b1
    software like Adobe Premiere and FinalCut Pro to import the files
Packit f546b1
    while they are still being written to. This only works with constant
Packit f546b1
    framerate I-frame only streams, and for now only support for ProRes
Packit f546b1
    video and raw audio is implemented. Adding support for additional
Packit f546b1
    codecs is just a matter of defining appropriate maximum frame sizes
Packit f546b1
    though.
Packit f546b1
Packit f546b1
-   qtmux also supports writing of svmi atoms with stereoscopic video
Packit f546b1
    information now. Trak timescales can be configured on a per-stream
Packit f546b1
    basis using the "trak-timescale" property on the sink pads. Various
Packit f546b1
    new formats can be muxed: MPEG layer 1 and 2, AC3 and Opus, as well
Packit f546b1
    as PNG and VP9.
Packit f546b1
Packit f546b1
-   souphttpsrc now does connection sharing by default: it shares its
Packit f546b1
    SoupSession with other elements in the same pipeline via a
Packit f546b1
    GstContext if possible (session-wide settings are all the defaults).
Packit f546b1
    This allows for connection reuse, cookie sharing, etc. Applications
Packit f546b1
    can also force a context to use. In other news, HTTP headers
Packit f546b1
    received from the server are posted as element messages on the bus
Packit f546b1
    now for easier diagnostics, and it's also possible now to use other
Packit f546b1
    types of proxy servers such as SOCKS4 or SOCKS5 proxies, support for
Packit f546b1
    which is implemented directly in gio. Before only HTTP proxies were
Packit f546b1
    allowed.
Packit f546b1
Packit f546b1
-   qtmux, mp4mux and matroskamux will now refuse caps changes of input
Packit f546b1
    streams at runtime. This isn't really supported with these
Packit f546b1
    containers (or would have to be implemented differently with a
Packit f546b1
    considerable effort) and doesn't produce valid and spec-compliant
Packit f546b1
    files that will play everywhere. So if you can't guarantee that the
Packit f546b1
    input caps won't change, use a container format that does support on
Packit f546b1
    the fly caps changes for a stream such as MPEG-TS or use
Packit f546b1
    splitmuxsink which can start a new file when the caps change. What
Packit f546b1
    would happen before is that e.g. rtph264depay or rtph265depay would
Packit f546b1
    simply send new SPS/PPS inband even for AVC format, which would then
Packit f546b1
    get muxed into the container as if nothing changed. Some decoders
Packit f546b1
    will handle this just fine, but that's often more luck than by
Packit f546b1
    design. In any case, it's not right, so we disallow it now.
Packit f546b1
Packit f546b1
-   matroskamux has Table of Content (TOC) support now (chapters etc.)
Packit f546b1
    and matroskademux TOC support has been improved. matroskademux has
Packit f546b1
    also seen seeking improvements searching for the right cluster and
Packit f546b1
    position.
Packit f546b1
Packit f546b1
-   videocrop now uses GstVideoCropMeta if downstream supports it, which
Packit f546b1
    means cropping can be handled more efficiently without any copying.
Packit f546b1
Packit f546b1
-   compositor now has support for _crossfade blending_, which can be
Packit f546b1
    used via the new "crossfade-ratio" property on the sink pads.
Packit f546b1
Packit f546b1
-   The avwait element has a new "end-timecode" property and posts
Packit f546b1
    "avwait-status" element messages now whenever avwait starts or stops
Packit f546b1
    passing through data (e.g. because target-timecode and end-timecode
Packit f546b1
    respectively have been reached).
Packit f546b1
Packit f546b1
-   'alsamidisrc' element has been broken for many many years and has
Packit f546b1
    now been repaired allowing live capture from your MIDI HW.
Packit f546b1
Packit f546b1
-   h265parse and h265parse will try harder to make upstream output the
Packit f546b1
    same caps as downstream requires or prefers, thus avoiding
Packit f546b1
    unnecessary conversion. The parsers also expose chroma format and
Packit f546b1
    bit depth in the caps now.
Packit f546b1
Packit f546b1
-   The dtls elements now longer rely on or require the application to
Packit f546b1
    run a GLib main loop that iterates the default main context
Packit f546b1
    (GStreamer plugins should never rely on the application running a
Packit f546b1
    GLib main loop).
Packit f546b1
Packit f546b1
-   openh264enc allows to change the encoding bitrate dynamically at
Packit f546b1
    runtime now
Packit f546b1
Packit f546b1
-   nvdec is a new plugin for hardware-accelerated video decoding using
Packit f546b1
    the NVIDIA NVDEC API (which replaces the old VDPAU API which is no
Packit f546b1
    longer supported by NVIDIA)
Packit f546b1
Packit f546b1
-   The NVIDIA NVENC hardware-accelerated video encoders now support
Packit f546b1
    dynamic bitrate and preset reconfiguration and support the I420
Packit f546b1
    4:2:0 video format. It's also possible to configure the gop size via
Packit f546b1
    the new "gop-size" property.
Packit f546b1
Packit f546b1
-   The MPEG-TS muxer and demuxer (tsmux, tsdemux) now have support for
Packit f546b1
    JPEG2000
Packit f546b1
Packit f546b1
-   openjpegdec and jpeg2000parse support 2-component images now (gray
Packit f546b1
    with alpha), and jpeg2000parse has gained limited support for
Packit f546b1
    conversion between JPEG2000 stream-formats. (JP2, J2C, JPC) and also
Packit f546b1
    extracts more details such as colorimetry, interlace-mode,
Packit f546b1
    field-order, multiview-mode and chroma siting.
Packit f546b1
Packit f546b1
-   The decklink plugin for Blackmagic capture and playback cards have
Packit f546b1
    seen numerous improvements:
Packit f546b1
Packit f546b1
-   decklinkaudiosrc and decklinkvideosrc now put hardware reference
Packit f546b1
    timestamp on buffers in form of GstReferenceTimestampMetas.
Packit f546b1
    This can be useful to know on multi-channel cards which frames from
Packit f546b1
    different channels were captured at the same time.
Packit f546b1
Packit f546b1
-   decklinkvideosink has gained support for Decklink hardware keying
Packit f546b1
    with two new properties ("keyer-mode" and "keyer-level") to control
Packit f546b1
    the built-in hardware keyer of Decklink cards.
Packit f546b1
Packit f546b1
-   decklinkaudiosink has been re-implemented around GstBaseSink instead
Packit f546b1
    of the GstAudioBaseSink base class, since the Decklink APIs don't
Packit f546b1
    fit very well with the GstAudioBaseSink APIs, which used to cause
Packit f546b1
    various problems due to inaccuracies in the clock calculations.
Packit f546b1
    Problems were audio drop-outs and A/V sync going wrong after
Packit f546b1
    pausing/seeking.
Packit f546b1
Packit f546b1
-   support for more than 16 devices, without any artificial limit
Packit f546b1
Packit f546b1
-   work continued on the msdk plugin for Intel's Media SDK which
Packit f546b1
    enables hardware-accelerated video encoding and decoding on Intel
Packit f546b1
    graphics hardware on Windows or Linux. Added the video memory,
Packit f546b1
    buffer pool, and context/session sharing support which helps to
Packit f546b1
    improve the performance and resource utilization. Rendernode support
Packit f546b1
    is in place which helps to avoid the constraint of having a running
Packit f546b1
    graphics server as DRM-Master. Encoders are exposing a number rate
Packit f546b1
    control algorithms now. More encoder tuning options like
Packit f546b1
    trellis-quantiztion (h264), slice size control (h264), B-pyramid
Packit f546b1
    prediction(h264), MB-level bitrate control, frame partitioning and
Packit f546b1
    adaptive I/B frame insertion were added, and more pixel formats and
Packit f546b1
    video codecs are supported now. The encoder now also handles
Packit f546b1
    force-key-unit events and can insert frame-packing SEIs for
Packit f546b1
    side-by-side and top-bottom stereoscopic 3D video.
Packit f546b1
Packit f546b1
-   dashdemux can now do adaptive trick play of certain types of DASH
Packit f546b1
    streams, meaning it can do fast-forward/fast-rewind of normal (non-I
Packit f546b1
    frame only) streams even at high speeds without saturating network
Packit f546b1
    bandwidth or exceeding decoder capabilities. It will keep statistics
Packit f546b1
    and skip keyframes or fragments as needed. See Sebastian's blog post
Packit f546b1
    _DASH trick-mode playback in GStreamer_ for more details. It also
Packit f546b1
    supports webvtt subtitle streams now and has seen improvements when
Packit f546b1
    seeking in live streams.
Packit f546b1
Packit f546b1
-   kmssink has seen lots of fixes and improvements in this cycle,
Packit f546b1
    including:
Packit f546b1
Packit f546b1
-   Raspberry Pi (vc4) and Xilinx DRM driver support
Packit f546b1
Packit f546b1
-   new "render-rectangle" property that can be used from the command
Packit f546b1
    line as well as "display-width" and "display-height", and
Packit f546b1
    "can-scale" properties
Packit f546b1
Packit f546b1
-   GstVideoCropMeta support
Packit f546b1
Packit f546b1
Plugin and library moves
Packit f546b1
Packit f546b1
MPEG-1 audio (mp1, mp2, mp3) decoders and encoders moved to -good
Packit f546b1
Packit f546b1
Following the expiration of the last remaining mp3 patents in most
Packit f546b1
jurisdictions, and the termination of the mp3 licensing program, as well
Packit f546b1
as the decision by certain distros to officially start shipping full mp3
Packit f546b1
decoding and encoding support, these plugins should now no longer be
Packit f546b1
problematic for most distributors and have therefore been moved from
Packit f546b1
-ugly and -bad to gst-plugins-good. Distributors can still disable these
Packit f546b1
plugins if desired.
Packit f546b1
Packit f546b1
In particular these are:
Packit f546b1
Packit f546b1
-   mpg123audiodec: an mp1/mp2/mp3 audio decoder using libmpg123
Packit f546b1
-   lamemp3enc: an mp3 encoder using LAME
Packit f546b1
-   twolamemp2enc: an mp2 encoder using TwoLAME
Packit f546b1
Packit f546b1
GstAggregator moved from -bad to core
Packit f546b1
Packit f546b1
GstAggregator has been moved from gst-plugins-bad to the base library in
Packit f546b1
GStreamer and is now stable API.
Packit f546b1
Packit f546b1
GstAggregator is a new base class for mixers and muxers that have to
Packit f546b1
handle multiple input pads and aggregate streams into one output stream.
Packit f546b1
It improves upon the existing GstCollectPads API in that it is a proper
Packit f546b1
base class which was also designed with live streaming in mind.
Packit f546b1
GstAggregator subclasses will operate in a mode with defined latency if
Packit f546b1
any of the inputs are live streams. This ensures that the pipeline won't
Packit f546b1
stall if any of the inputs stop producing data, and that the configured
Packit f546b1
maximum latency is never exceeded.
Packit f546b1
Packit f546b1
GstAudioAggregator, audiomixer and audiointerleave moved from -bad to -base
Packit f546b1
Packit f546b1
GstAudioAggregator is a new base class for raw audio mixers and muxers
Packit f546b1
and is based on GstAggregator (see above). It provides defined-latency
Packit f546b1
mixing of raw audio inputs and ensures that the pipeline won't stall
Packit f546b1
even if one of the input streams stops producing data.
Packit f546b1
Packit f546b1
As part of the move to stabilise the API there were some last-minute API
Packit f546b1
changes and clean-ups, but those should mostly affect internal elements.
Packit f546b1
Packit f546b1
It is used by the audiomixer element, which is a replacement for
Packit f546b1
'adder', which did not handle live inputs very well and did not align
Packit f546b1
input streams according to running time. audiomixer should behave much
Packit f546b1
better in that respect and generally behave as one would expected in
Packit f546b1
most scenarios.
Packit f546b1
Packit f546b1
Similarly, audiointerleave replaces the 'interleave' element which did
Packit f546b1
not handle live inputs or non-aligned inputs very robustly.
Packit f546b1
Packit f546b1
GstAudioAggregator and its subclases have gained support for input
Packit f546b1
format conversion, which does not include sample rate conversion though
Packit f546b1
as that would add additional latency. Furthermore, GAP events are now
Packit f546b1
handled correctly.
Packit f546b1
Packit f546b1
We hope to move the video equivalents (GstVideoAggregator and
Packit f546b1
compositor) to -base in the next cycle, i.e. for 1.16.
Packit f546b1
Packit f546b1
GStreamer OpenGL integration library and plugin moved from -bad to -base
Packit f546b1
Packit f546b1
The GStreamer OpenGL integration library and opengl plugin have moved
Packit f546b1
from gst-plugins-bad to -base and are now part of the stable API canon.
Packit f546b1
Not all OpenGL elements have been moved; a few had to be left behind in
Packit f546b1
gst-plugins-bad in the new openglmixers plugin, because they depend on
Packit f546b1
the GstVideoAggregator base class which we were not able to move in this
Packit f546b1
cycle. We hope to reunite these elements with the rest of their family
Packit f546b1
for 1.16 though.
Packit f546b1
Packit f546b1
This is quite a milestone, thanks to everyone who worked to make this
Packit f546b1
happen!
Packit f546b1
Packit f546b1
Qt QML and GTK plugins moved from -bad to -good
Packit f546b1
Packit f546b1
The Qt QML-based qmlgl plugin has moved to -good and provides a
Packit f546b1
qmlglsink video sink element as well as a qmlglsrc element. qmlglsink
Packit f546b1
renders video into a QQuickItem, and qmlglsrc captures a window from a
Packit f546b1
QML view and feeds it as video into a pipeline for further processing.
Packit f546b1
Both elements leverage GStreamer's OpenGL integration. In addition to
Packit f546b1
the move to -good the following features were added:
Packit f546b1
Packit f546b1
-   A proxy object is now used for thread-safe access to the QML widget
Packit f546b1
    which prevents crashes in corner case scenarios: QML can destroy the
Packit f546b1
    video widget at any time, so without this we might be left with a
Packit f546b1
    dangling pointer.
Packit f546b1
Packit f546b1
-   EGL is now supported with the X11 backend, which works e.g. on
Packit f546b1
    Freescale imx6
Packit f546b1
Packit f546b1
The GTK+ plugin has also moved from -bad to -good. It includes gtksink
Packit f546b1
and gtkglsink which both render video into a GtkWidget. gtksink uses
Packit f546b1
Cairo for rendering the video, which will work everywhere in all
Packit f546b1
scenarios but involves an extra memory copy, whereas gtkglsink fully
Packit f546b1
leverages GStreamer's OpenGL integration, but might not work properly in
Packit f546b1
all scenarios, e.g. where the OpenGL driver does not properly support
Packit f546b1
multiple sharing contexts in different threads; on Linux Nouveau is
Packit f546b1
known to be broken in this respect, whilst NVIDIA's proprietary drivers
Packit f546b1
and most other drivers generally work fine, and the experience with
Packit f546b1
Intel's driver seems to be mixed; some proprietary embedded Linux
Packit f546b1
drivers don't work; macOS works.
Packit f546b1
Packit f546b1
GstPhysMemoryAllocator interface moved from -bad to -base
Packit f546b1
Packit f546b1
GstPhysMemoryAllocator is a marker interface for allocators with
Packit f546b1
physical address backed memory.
Packit f546b1
Packit f546b1
Plugin removals
Packit f546b1
Packit f546b1
-   the sunaudio plugin was removed, since it couldn't ever have been
Packit f546b1
    built or used with GStreamer 1.0, but no one even noticed in all
Packit f546b1
    these years.
Packit f546b1
Packit f546b1
-   the schroedinger-based Dirac encoder/decoder plugin has been
Packit f546b1
    removed, as there is no longer any upstream or anyone else
Packit f546b1
    maintaining it. Seeing that it's quite a fringe codec it seemed best
Packit f546b1
    to simply remove it.
Packit f546b1
Packit f546b1
API removals
Packit f546b1
Packit f546b1
-   some MPEG video parser API in the API unstable codecutils library in
Packit f546b1
    gst-plugins-bad was removed after having been deprecated for 5
Packit f546b1
    years.
Packit f546b1
Packit f546b1
Packit f546b1
Miscellaneous changes
Packit f546b1
Packit f546b1
-   The video support library has gained support for a few new pixel
Packit f546b1
    formats:
Packit f546b1
-   NV16_10LE32: 10-bit variant of NV16, packed into 32bit words (plus 2
Packit f546b1
    bits padding)
Packit f546b1
-   NV12_10LE32: 10-bit variant of NV12, packed into 32bit words (plus 2
Packit f546b1
    bits padding)
Packit f546b1
-   GRAY10_LE32: 10-bit grayscale, packed in 32bit words (plus 2 bits
Packit f546b1
    padding)
Packit f546b1
Packit f546b1
-   decodebin, playbin and GstDiscoverer have seen stability
Packit f546b1
    improvements in corner cases such as shutdown while still starting
Packit f546b1
    up or shutdown in error cases (hat tip to the oss-fuzz project).
Packit f546b1
Packit f546b1
-   floating reference handling was inconsistent and has been cleaned up
Packit f546b1
    across the board, including annotations. This solves various
Packit f546b1
    long-standing memory leaks in language bindings, which e.g. often
Packit f546b1
    caused elements and pads to be leaked.
Packit f546b1
Packit f546b1
-   major gobject-introspection annotation improvements for large parts
Packit f546b1
    of the library API, including nullability of return types and
Packit f546b1
    function parameters, correct types (e.g. strings vs. filenames),
Packit f546b1
    ownership transfer, array length parameters, etc. This allows to use
Packit f546b1
    bigger parts of the GStreamer API to be safely used from dynamic
Packit f546b1
    language bindings (e.g. Python, Javascript) and allows static
Packit f546b1
    bindings (e.g. C#, Rust, Vala) to autogenerate more API bindings
Packit f546b1
    without manual intervention.
Packit f546b1
Packit f546b1
OpenGL integration
Packit f546b1
Packit f546b1
-   The GStreamer OpenGL integration library has moved to
Packit f546b1
    gst-plugins-base and is now part of our stable API.
Packit f546b1
Packit f546b1
-   new MESA3D GBM BACKEND. On devices with working libdrm support, it
Packit f546b1
    is possible to use Mesa3D's GBM library to set up an EGL context
Packit f546b1
    directly on top of KMS. This makes it possible to use the GStreamer
Packit f546b1
    OpenGL elements without a windowing system if a libdrm- and
Packit f546b1
    Mesa3D-supported GPU is present.
Packit f546b1
Packit f546b1
-   Prefer wayland display over X11: As most Wayland compositors support
Packit f546b1
    XWayland, the X11 backend would get selected.
Packit f546b1
Packit f546b1
-   gldownload can export dmabufs now, and glupload will advertise
Packit f546b1
    dmabuf as caps feature.
Packit f546b1
Packit f546b1
Packit f546b1
Tracing framework and debugging improvements
Packit f546b1
Packit f546b1
-   NEW MEMORY RINGBUFFER BASED DEBUG LOGGER, useful for long-running
Packit f546b1
    applications or to retrieve diagnostics when encountering an error.
Packit f546b1
    The GStreamer debug logging system provides in-depth debug logging
Packit f546b1
    about what is going on inside a pipeline. When enabled, debug logs
Packit f546b1
    are usually written into a file, printed to the terminal, or handed
Packit f546b1
    off to a log handler installed by the application. However, at
Packit f546b1
    higher debug levels the volume of debug output quickly becomes
Packit f546b1
    unmanageable, which poses a problem in disk-space or bandwidth
Packit f546b1
    restricted environments or with long-running pipelines where a
Packit f546b1
    problem might only manifest itself after multiple days. In those
Packit f546b1
    situations, developers are usually only interested in the most
Packit f546b1
    recent debug log output. The new in-memory ringbuffer logger makes
Packit f546b1
    this easy: just installed it with gst_debug_add_ring_buffer_logger()
Packit f546b1
    and retrieve logs with gst_debug_ring_buffer_logger_get_logs() when
Packit f546b1
    needed. It is possible to limit the memory usage per thread and set
Packit f546b1
    a timeout to determine how long messages are kept around. It was
Packit f546b1
    always possible to implement this in the application with a custom
Packit f546b1
    log handler of course, this just provides this functionality as part
Packit f546b1
    of GStreamer.
Packit f546b1
Packit f546b1
-   'fakevideosink is a null sink for video data that advertises
Packit f546b1
    video-specific metas and behaves like a video sink. See above for
Packit f546b1
    more details.
Packit f546b1
Packit f546b1
-   gst_util_dump_buffer() prints the content of a buffer to stdout.
Packit f546b1
Packit f546b1
-   gst_pad_link_get_name() and gst_state_change_get_name() print pad
Packit f546b1
    link return values and state change transition values as strings.
Packit f546b1
Packit f546b1
-   The LATENCY TRACER has seen a few improvements: trace records now
Packit f546b1
    contain timestamps which is useful to plot things over time, and
Packit f546b1
    downstream synchronisation time is now excluded from the measured
Packit f546b1
    values.
Packit f546b1
Packit f546b1
-   Miniobject refcount tracing and logging was not entirley
Packit f546b1
    thread-safe, there were duplicates or missing entries at times. This
Packit f546b1
    has now been made reliable.
Packit f546b1
Packit f546b1
-   The netsim element, which can be used to simulate network jitter,
Packit f546b1
    packet reordering and packet loss, received new features and
Packit f546b1
    improvements: it can now also simulate network congestion using a
Packit f546b1
    token bucket algorithm. This can be enabled via the "max-kbps"
Packit f546b1
    property. Packet reordering can be disabled now via the
Packit f546b1
    "allow-reordering" property: Reordering of packets is not very
Packit f546b1
    common in networks, and the delay functions will always introduce
Packit f546b1
    reordering if delay > packet-spacing, so by setting
Packit f546b1
    "allow-reordering" to FALSE you guarantee that the packets are in
Packit f546b1
    order, while at the same time introducing delay/jitter to them. By
Packit f546b1
    using the new "delay-distribution" property the user can control how
Packit f546b1
    the delay applied to delayed packets is distributed: This is either
Packit f546b1
    the uniform distribution (as before) or the normal distribution; in
Packit f546b1
    addition there is also the gamma distribution which simulates the
Packit f546b1
    delay on wifi networks better.
Packit f546b1
Packit f546b1
Packit f546b1
Tools
Packit f546b1
Packit f546b1
-   gst-inspect-1.0 now prints pad properties for elements that have pad
Packit f546b1
    subclasses with special properties, such as compositor or
Packit f546b1
    audiomixer. This only works for elements that use the newly-added
Packit f546b1
    GstPadTemplate API API or the
Packit f546b1
    gst_element_class_add_static_pad_template_with_gtype() convenience
Packit f546b1
    function to tell GStreamer about the special pad subclass.
Packit f546b1
Packit f546b1
-   gst-launch-1.0 now generates a gstreamer pipeline diagram (.dot
Packit f546b1
    file) whenever SIGHUP is sent to it on Linux/*nix systems.
Packit f546b1
Packit f546b1
-   gst-discoverer-1.0 can now analyse live streams such as rtsp:// URIs
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer RTSP server
Packit f546b1
Packit f546b1
-   Initial support for RTSP protocol version 2.0 was added, which is to
Packit f546b1
    the best of our knowledge the first RTSP 2.0 implementation ever!
Packit f546b1
Packit f546b1
-   ONVIF audio backchannel support. This is an extension specified by
Packit f546b1
    ONVIF that allows RTSP clients (e.g. a control room operator) to
Packit f546b1
    send audio back to the RTSP server (e.g. an IP camera).
Packit f546b1
    Theoretically this could have been done also by using the RECORD
Packit f546b1
    method of the RTSP protocol, but ONVIF chose not to do that, so the
Packit f546b1
    backchannel is set up alongside the other streams. Format
Packit f546b1
    negotiation needs to be done out of band, if needed. Use the new
Packit f546b1
    ONVIF-specific subclasses GstRTSPOnvifServer and
Packit f546b1
    GstRTSPOnvifMediaFactory to enable this functionality.
Packit f546b1
Packit f546b1
-   The internal server streaming pipeline is now dynamically
Packit f546b1
    reconfigured on PLAY based on the transports needed. This means that
Packit f546b1
    the server no longer adds the pipeline plumbing for all possible
Packit f546b1
    transports from the start, but only if needed as needed. This
Packit f546b1
    improves performance and memory footprint.
Packit f546b1
Packit f546b1
-   rtspclientsink has gained an "accept-certificate" signal for
Packit f546b1
    manually checking a TLS certificate for validity.
Packit f546b1
Packit f546b1
-   Fix keep-alive/timeout issue for certain clients using TCP
Packit f546b1
    interleave as transport who don't do keep-alive via some other
Packit f546b1
    method such as periodic RTSP OPTION requests. We now put netaddress
Packit f546b1
    metas on the packets from the TCP interleaved stream, so can map
Packit f546b1
    RTCP packets to the right stream in the server and can handle them
Packit f546b1
    properly.
Packit f546b1
Packit f546b1
-   Language bindings improvements: in general there were quite a few
Packit f546b1
    improvements in the gobject-introspection annotations, but we also
Packit f546b1
    extended the permissions API which was not usable from bindings
Packit f546b1
    before.
Packit f546b1
Packit f546b1
-   Fix corner case issue where the wrong mount point was found when
Packit f546b1
    there were multiple mount points with a common prefix.
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer VAAPI
Packit f546b1
Packit f546b1
-   Improve DMABuf's usage, both upstream and dowstream, and
Packit f546b1
    memory:DMABuf caps feature is also negotiated when the dmabuf-based
Packit f546b1
    buffer cannot be mapped onto user-space.
Packit f546b1
Packit f546b1
-   VA initialization was fixed when it is used in headless systems.
Packit f546b1
Packit f546b1
-   VA display sharing, through GstContext, among the pipeline, has been
Packit f546b1
    improved, adding the possibility to the application share its VA
Packit f546b1
    display (external display) via gst.vaapi.app.Display context.
Packit f546b1
Packit f546b1
-   VA display cache was removed.
Packit f546b1
Packit f546b1
-   libva's log messages are now redirected into the GStreamer log
Packit f546b1
    handler.
Packit f546b1
Packit f546b1
-   Decoders improved their upstream re-negotiation by avoiding to
Packit f546b1
    re-instantiate the internal decoder if stream caps are compatible
Packit f546b1
    with the previous one.
Packit f546b1
Packit f546b1
-   When downstream doesn't support GstVideoMeta and the decoded frames
Packit f546b1
    don't have standard strides, they are copied onto system
Packit f546b1
    memory-based buffers.
Packit f546b1
Packit f546b1
-   H.264 decoder has a low-latency property, for live streams which
Packit f546b1
    doesn't conform the H.264 specification but still it is required to
Packit f546b1
    push the frames to downstream as soon as possible.
Packit f546b1
Packit f546b1
-   As part of the Google Summer of Code 2017 the H.264 decoder drops
Packit f546b1
    MVC and SVC frames when base-only property is enabled.
Packit f546b1
Packit f546b1
-   Added support for libva-2.0 (VA-API 1.0).
Packit f546b1
Packit f546b1
-   H.264 and H.265 encoders handle Region-Of-Interest metas by adding a
Packit f546b1
    delta-qp for every rectangle within the frame specified by those
Packit f546b1
    metas.
Packit f546b1
Packit f546b1
-   Encoders for H.264 and H.265 set the media profile by the downstream
Packit f546b1
    caps.
Packit f546b1
Packit f546b1
-   H.264 encoder inserts an AU delimiter for each encoded frame when
Packit f546b1
    aud property is enabled (it is only available for certain drivers
Packit f546b1
    and platforms).
Packit f546b1
Packit f546b1
-   H.264 encoder supports for P and B hierarchical prediction modes.
Packit f546b1
Packit f546b1
-   All encoders handles a quality-level property, which is a number
Packit f546b1
    from 1 to 8, where a lower number means higher quality, but slower
Packit f546b1
    processing, and vice-versa.
Packit f546b1
Packit f546b1
-   VP8 and VP9 encoders support constant bit-rate mode (CBR).
Packit f546b1
Packit f546b1
-   VP8, VP9 and H.265 encoders support variable bit-rate mode (VBR).
Packit f546b1
Packit f546b1
-   Resurrected GstGLUploadTextureMeta handling for EGL backends.
Packit f546b1
Packit f546b1
-   H.265 encoder can configure its number of reference frames via the
Packit f546b1
    refs property.
Packit f546b1
Packit f546b1
-   Add H.264 encoder mbbrc property, which controls the macro-block
Packit f546b1
    bitrate as auto, on or off.
Packit f546b1
Packit f546b1
-   Add H.264 encoder temporal-levels property, to select the number of
Packit f546b1
    temporal levels to be included.
Packit f546b1
Packit f546b1
-   Add to H.264 and H.265 encoders the properties qp-ip and qp-ib, to
Packit f546b1
    handle the QP (quality parameter) difference between the I and P
Packit f546b1
    frames, and the I and B frames, respectively.
Packit f546b1
Packit f546b1
-   vaapisink was demoted to marginal rank on Wayland because COGL
Packit f546b1
    cannot display YUV surfaces.
Packit f546b1
Packit f546b1
More details in Víctor's blog post _GStreamer VA-API 1.14: what’s new?_.
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer Editing Services and NLE
Packit f546b1
Packit f546b1
-   Handle crossfade in complex scenarios by using the new
Packit f546b1
    compositorpad::crossfade-ratio property
Packit f546b1
Packit f546b1
-   Add API allowing to stop using proxies for clips in the timeline
Packit f546b1
Packit f546b1
-   Allow management of none square pixel aspect ratios by allowing
Packit f546b1
    application to deal with them in the way they want
Packit f546b1
Packit f546b1
-   Misc fixes around the timeline editing API
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer validate
Packit f546b1
Packit f546b1
-   Handle running scenarios on live pipelines (in the "content sense",
Packit f546b1
    not the GStreamer one)
Packit f546b1
Packit f546b1
-   Implement RTSP support with a basic server based on gst-rtsp-server,
Packit f546b1
    and add RTSP 1.0 and 2.0 integration tests
Packit f546b1
Packit f546b1
-   Implement a plugin that allows users to implement configurable
Packit f546b1
    tests. It currently can check if a particular element is added a
Packit f546b1
    configurable number of time in the pipeline. In the future that
Packit f546b1
    plugin should allow us to implement specific tests of any kind in a
Packit f546b1
    descriptive way
Packit f546b1
Packit f546b1
-   Add a verbosity configuration which behaves in a similare way as the
Packit f546b1
    gst-launch-1.0 verbose flags allowing the informations to be
Packit f546b1
    outputed on any running pipeline when enabling GstValidate.
Packit f546b1
Packit f546b1
-   Misc optimization in the launcher, making the tests run much faster.
Packit f546b1
Packit f546b1
Packit f546b1
GStreamer C# bindings
Packit f546b1
Packit f546b1
-   Port to the meson build system, autotools support has been removed
Packit f546b1
Packit f546b1
-   Use a new GlibSharp version, set as a meson subproject
Packit f546b1
Packit f546b1
-   Update wrapped API to GStreamer 1.14
Packit f546b1
Packit f546b1
-   Removed the need for "glue" code
Packit f546b1
Packit f546b1
-   Provide a nuget
Packit f546b1
Packit f546b1
-   Misc API fixes
Packit f546b1
Packit f546b1
Packit f546b1
Build and Dependencies
Packit f546b1
Packit f546b1
-   the new WebRTC support in gst-plugins-bad depends on the GStreamer
Packit f546b1
    elements that ship as part of libnice, and libnice version 1.1.14 is
Packit f546b1
    required. Also the dtls and srtp plugins.
Packit f546b1
Packit f546b1
-   gst-plugins-bad no longer depends on the libschroedinger Dirac codec
Packit f546b1
    library.
Packit f546b1
Packit f546b1
-   The srtp plugin can now also be built against libsrtp2.
Packit f546b1
Packit f546b1
-   some plugins and libraries have moved between modules, see the
Packit f546b1
    _Plugin and_ _library moves_ section above, and their respective
Packit f546b1
    dependencies have moved with them of course, e.g. the GStreamer
Packit f546b1
    OpenGL integration support library and plugin is now in
Packit f546b1
    gst-plugins-base, and mpg123, LAME and twoLAME based audio decoder
Packit f546b1
    and encoder plugins are now in gst-plugins-good.
Packit f546b1
Packit f546b1
-   Unify static and dynamic plugin interface and remove plugin specific
Packit f546b1
    static build option: Static and dynamic plugins now have the same
Packit f546b1
    interface. The standard --enable-static/--enable-shared toggle is
Packit f546b1
    sufficient. This allows building static and shared plugins from the
Packit f546b1
    same object files, instead of having to build everything twice.
Packit f546b1
Packit f546b1
-   The default plugin entry point has changed. This will only affect
Packit f546b1
    plugins that are recompiled against new GStreamer headers. Binary
Packit f546b1
    plugins using the old entry point will continue to work. However,
Packit f546b1
    plugins that are recompiled must have matching plugin names in
Packit f546b1
    GST_PLUGIN_DEFINE and filenames, as the plugin entry point for
Packit f546b1
    shared plugins is now deduced from the plugin filename. This means
Packit f546b1
    you can no longer have a plugin called foo living in a file called
Packit f546b1
    libfoobar.so or such, the plugin filename needs to match. This might
Packit f546b1
    cause problems with some external third party plugin modules when
Packit f546b1
    they get rebuilt against GStreamer 1.14.
Packit f546b1
Packit f546b1
Packit f546b1
Note to packagers and distributors
Packit f546b1
Packit f546b1
A number of libraries, APIs and plugins moved between modules and/or
Packit f546b1
libraries in different modules between version 1.12.x and 1.14.x, see
Packit f546b1
the _Plugin and_ _library moves_ section above. Some APIs have seen
Packit f546b1
minor ABI changes in the course of moving them into the stable APIs
Packit f546b1
section.
Packit f546b1
Packit f546b1
This means that you should try to ensure that all major GStreamer
Packit f546b1
modules are synced to the same major version (1.12 or 1.13/1.14) and can
Packit f546b1
only be upgraded in lockstep, so that your users never end up with a mix
Packit f546b1
of major versions on their system at the same time, as this may cause
Packit f546b1
breakages.
Packit f546b1
Packit f546b1
Also, plugins compiled against >= 1.14 headers will not load with
Packit f546b1
GStreamer <= 1.12 owing to a new plugin entry point (but plugin binaries
Packit f546b1
built against older GStreamer versions will continue to load with newer
Packit f546b1
versions of GStreamer of course).
Packit f546b1
Packit f546b1
There is also a small structure size related ABI breakage introduced in
Packit f546b1
the gst-plugins-bad codecparsers library between version 1.13.90 and
Packit f546b1
1.13.91. This should "only" affect gstreamer-vaapi, so anyone who ships
Packit f546b1
the release candidates is advised to upgrade those two modules at the
Packit f546b1
same time.
Packit f546b1
Packit f546b1
Packit f546b1
Platform-specific improvements
Packit f546b1
Packit f546b1
Android
Packit f546b1
Packit f546b1
-   ahcsrc (Android camera source) does autofocus now
Packit f546b1
Packit f546b1
macOS and iOS
Packit f546b1
Packit f546b1
-   no major changes in macOS and iOS support, only bugfixes
Packit f546b1
Packit f546b1
Windows
Packit f546b1
Packit f546b1
-   The GStreamer wasapi plugin was rewritten and should not only be
Packit f546b1
    usable now, but in top shape and suitable for low-latency use cases.
Packit f546b1
    The Windows Audio Session API (WASAPI) is Microsoft's most modern
Packit f546b1
    method for talking with audio devices, and now that the wasapi
Packit f546b1
    plugin is up to scratch it is preferred over the directsound plugin.
Packit f546b1
    The ranks of the wasapisink and wasapisrc elements have been updated
Packit f546b1
    to reflect this. Further improvements include:
Packit f546b1
Packit f546b1
-   support for more than 2 channels
Packit f546b1
Packit f546b1
-   a new "low-latency" property to enable low-latency operation (which
Packit f546b1
    should always be safe to enable)
Packit f546b1
Packit f546b1
-   support for the AudioClient3 API which is only available on Windows
Packit f546b1
    10: in wasapisink this will be used automatically if available; in
Packit f546b1
    wasapisrc it will have to be enabled explicitly via the
Packit f546b1
    "use-audioclient3" property, as capturing audio with low latency and
Packit f546b1
    without glitches seems to require setting the realtime priority of
Packit f546b1
    the entire pipeline to "critical", which cannot be done from inside
Packit f546b1
    the element, but has to be done in the application.
Packit f546b1
Packit f546b1
-   set realtime thread priority to avoid glitches
Packit f546b1
Packit f546b1
-   allow opening devices in exclusive mode, which provides much lower
Packit f546b1
    latency compared to shared mode where WASAPI's engine period is
Packit f546b1
    10ms. This can be activated via the "exclusive" property.
Packit f546b1
Packit f546b1
-   Also see Nirbheek's blog post _Low Latency Audio on Windows with
Packit f546b1
    GStreamer_.
Packit f546b1
Packit f546b1
-   There are now GstDeviceProvider implementations for the wasapi and
Packit f546b1
    directsound plugins, so it's now possible to discover both audio
Packit f546b1
    sources and audio sinks on Windows via the GstDeviceMonitor API
Packit f546b1
Packit f546b1
-   debug log timestamps are now higher granularity owing to
Packit f546b1
    g_get_monotonic_time() now being used as fallback in
Packit f546b1
    gst_utils_get_timestamp(). Before that, there would sometimes be
Packit f546b1
    10-20 lines of debug log output sporting the same timestamp.
Packit f546b1
Packit f546b1
Packit f546b1
Contributors
Packit f546b1
Packit f546b1
Aaron Boxer, Adrián Pardini, Adrien SCH, Akinobu Mita, Alban Bedel,
Packit f546b1
Alessandro Decina, Alex Ashley, Alicia Boya García, Alistair Buxton,
Packit f546b1
Alvaro Margulis, Anders Jonsson, Andreas Frisch, Andrejs Vasiljevs,
Packit f546b1
Andrew Bott, Antoine Jacoutot, Antonio Ospite, Antoni Silvestre, Anton
Packit f546b1
Obzhirov, Anuj Jaiswal, Arjen Veenhuizen, Arnaud Bonatti, Arun Raghavan,
Packit f546b1
Ashish Kumar, Aurélien Zanelli, Ayaka, Branislav Katreniak, Branko
Packit f546b1
Subasic, Brion Vibber, Carlos Rafael Giani, Cassandra Rommel, Chris
Packit f546b1
Bass, Chris Paulson-Ellis, Christoph Reiter, Claudio Saavedra, Clemens
Packit f546b1
Lang, Cyril Lashkevich, Daniel van Vugt, Dave Craig, Dave Johnstone,
Packit f546b1
David Evans, David Schleef, Deepak Srivastava, Dimitrios Katsaros,
Packit f546b1
Dmitry Zhadinets, Dongil Park, Dustin Spicuzza, Eduard Sinelnikov,
Packit f546b1
Edward Hervey, Enrico Jorns, Eunhae Choi, Ezequiel Garcia, fengalin,
Packit f546b1
Filippo Argiolas, Florent Thiéry, Florian Zwoch, Francisco Velazquez,
Packit f546b1
François Laignel, fvanzile, George Kiagiadakis, Georg Lippitsch, Graham
Packit f546b1
Leggett, Guillaume Desmottes, Gurkirpal Singh, Gwang Yoon Hwang, Gwenole
Packit f546b1
Beauchesne, Haakon Sporsheim, Haihua Hu, Håvard Graff, Heekyoung Seo,
Packit f546b1
Heinrich Fink, Holger Kaelberer, Hoonhee Lee, Hosang Lee, Hyunjun Ko,
Packit f546b1
Ian Jamison, James Stevenson, Jan Alexander Steffens (heftig), Jan
Packit f546b1
Schmidt, Jason Lin, Jens Georg, Jeremy Hiatt, Jérôme Laheurte, Jimmy
Packit f546b1
Ohn, Jochen Henneberg, John Ludwig, John Nikolaides, Jonathan Karlsson,
Packit f546b1
Josep Torra, Juan Navarro, Juan Pablo Ugarte, Julien Isorce, Jun Xie,
Packit f546b1
Jussi Kukkonen, Justin Kim, Lasse Laursen, Lubosz Sarnecki, Luc
Packit f546b1
Deschenaux, Luis de Bethencourt, Marcin Lewandowski, Mario Alfredo
Packit f546b1
Carrillo Arevalo, Mark Nauwelaerts, Martin Kelly, Matej Knopp, Mathieu
Packit f546b1
Duponchelle, Matteo Valdina, Matt Fischer, Matthew Waters, Matthieu
Packit f546b1
Bouron, Matthieu Crapet, Matt Staples, Michael Catanzaro, Michael
Packit f546b1
Olbrich, Michael Shigorin, Michael Tretter, Michał Dębski, Michał Górny,
Packit f546b1
Michele Dionisio, Miguel París, Mikhail Fludkov, Munez, Nael Ouedraogo,
Packit f546b1
Neos3452, Nicholas Panayis, Nick Kallen, Nicola Murino, Nicolas
Packit f546b1
Dechesne, Nicolas Dufresne, Nirbheek Chauhan, Ognyan Tonchev, Ole André
Packit f546b1
Vadla Ravnås, Oleksij Rempel, Olivier Crête, Omar Akkila, Orestis
Packit f546b1
Floros, Patricia Muscalu, Patrick Radizi, Paul Kim, Per-Erik Brodin,
Packit f546b1
Peter Seiderer, Philip Craig, Philippe Normand, Philippe Renon, Philipp
Packit f546b1
Zabel, Pierre Pouzol, Piotr Drąg, Ponnam Srinivas, Pratheesh Gangadhar,
Packit f546b1
Raimo Järvi, Ramprakash Jelari, Ravi Kiran K N, Reynaldo H. Verdejo
Packit f546b1
Pinochet, Rico Tzschichholz, Robert Rosengren, Roland Peffer, Руслан
Packit f546b1
Ижбулатов, Sam Hurst, Sam Thursfield, Sangkyu Park, Sanjay NM, Satya
Packit f546b1
Prakash Gupta, Scott D Phillips, Sean DuBois, Sebastian Cote, Sebastian
Packit f546b1
Dröge, Sebastian Rasmussen, Sejun Park, Sergey Borovkov, Seungha Yang,
Packit f546b1
Shakin Chou, Shinya Saito, Simon Himmelbauer, Sky Juan, Song Bing,
Packit f546b1
Sreerenj Balachandran, Stefan Kost, Stefan Popa, Stefan Sauer, Stian
Packit f546b1
Selnes, Thiago Santos, Thibault Saunier, Thijs Vermeir, Tim Allen,
Packit f546b1
Tim-Philipp Müller, Ting-Wei Lan, Tomas Rataj, Tom Bailey, Tonu Jaansoo,
Packit f546b1
U. Artie Eoff, Umang Jain, Ursula Maplehurst, VaL Doroshchuk, Vasilis
Packit f546b1
Liaskovitis, Víctor Manuel Jáquez Leal, vijay, Vincent Penquerc'h,
Packit f546b1
Vineeth T M, Vivia Nikolaidou, Wang Xin-yu (王昕宇), Wei Feng, Wim
Packit f546b1
Taymans, Wonchul Lee, Xabier Rodriguez Calvar, Xavier Claessens,
Packit f546b1
XuGuangxin, Yasushi SHOJI, Yi A Wang, Youness Alaoui,
Packit f546b1
Packit f546b1
... and many others who have contributed bug reports, translations, sent
Packit f546b1
suggestions or helped testing.
Packit f546b1
Packit f546b1
Packit f546b1
Bugs fixed in 1.14
Packit f546b1
Packit f546b1
More than 800 bugs have been fixed during the development of 1.14.
Packit f546b1
Packit f546b1
This list does not include issues that have been cherry-picked into the
Packit f546b1
stable 1.12 branch and fixed there as well, all fixes that ended up in
Packit f546b1
the 1.12 branch are also included in 1.14.
Packit f546b1
Packit f546b1
This list also does not include issues that have been fixed without a
Packit f546b1
bug report in bugzilla, so the actual number of fixes is much higher.
Packit f546b1
Packit f546b1
Packit f546b1
Stable 1.14 branch
Packit f546b1
Packit f546b1
After the 1.14.0 release there will be several 1.14.x bug-fix releases
Packit f546b1
which will contain bug fixes which have been deemed suitable for a
Packit f546b1
stable branch, but no new features or intrusive changes will be added to
Packit f546b1
a bug-fix release usually. The 1.14.x bug-fix releases will be made from
Packit f546b1
the git 1.14 branch, which is a stable branch.
Packit f546b1
Packit f546b1
1.14.0
Packit f546b1
Packit f546b1
1.14.0 was released on 19 March 2018.
Packit f546b1
Packit f546b1
1.14.1
Packit f546b1
Packit f546b1
The first 1.14 bug-fix release (1.14.1) was released on 17 May 2018.
Packit f546b1
Packit f546b1
This release only contains bugfixes and it should be safe to update from
Packit f546b1
1.14.0.
Packit f546b1
Packit f546b1
Noteworthy bugfixes in 1.14.1
Packit f546b1
Packit f546b1
-   GstPad: Fix race condition causing the same probe to be called
Packit f546b1
    multiple times
Packit f546b1
-   Fix occasional deadlocks on windows when outputting debug logging
Packit f546b1
-   Fix debug levels being applied in the wrong order
Packit f546b1
-   GIR annotation fixes for bindings
Packit f546b1
-   audiomixer, audioaggregator: fix some negotiation issues
Packit f546b1
-   gst-play-1.0: fix leaving stdin in non-blocking mode after exit
Packit f546b1
-   flvmux: wait for caps on all input pads before writing header even
Packit f546b1
    if source is live
Packit f546b1
-   flvmux: don't wake up the muxer unless there is data, fixes busy
Packit f546b1
    looping if there's no input data
Packit f546b1
-   flvmux: fix major leak of input buffers
Packit f546b1
-   rtspsrc, rtsp-server: revert to RTSP RFC handling of
Packit f546b1
    sendonly/recvonly attributes
Packit f546b1
-   rtpvrawpay: fix payloading with very large mtu sizes where
Packit f546b1
    everything fits into a single RTP packet
Packit f546b1
-   v4l2: Fix hard-coded enabled v4l2 probe on Linux/ARM
Packit f546b1
-   v4l2: Disable DMABuf for emulated formats when using libv4l2
Packit f546b1
-   v4l2: Always set colorimetry in S_FMT
Packit f546b1
-   asfdemux: Set stream-format field for H264 streams and handle H.264
Packit f546b1
    in bytestream format
Packit f546b1
-   x265enc: Fix tagging of keyframes on output buffers
Packit f546b1
-   ladspa: Fix critical during plugin load on Windows
Packit f546b1
-   decklink: Fix COM initialisation on Windows
Packit f546b1
-   h264parse: fix re-use across pipeline stop/restart
Packit f546b1
-   mpegtsmux: fix force-keyframe event handling and PCR/PMT changes
Packit f546b1
    that would confuse some players with generated HLS streams
Packit f546b1
-   adaptivedemux: Support period change in live playlist
Packit f546b1
-   rfbsrc: Fix support for applevncserver and support NULL pool in
Packit f546b1
    decide_allocation
Packit f546b1
-   jpegparse: Fix APP1 marker segment parsing
Packit f546b1
-   h265parse: Make caps writable before modifying them, fixes criticals
Packit f546b1
-   fakevideosink: request an extra buffer if enable-last-sample is
Packit f546b1
    enabled
Packit f546b1
-   wasapisrc: Don't provide a clock based on WASAPI's clock
Packit f546b1
-   wasapi: Only use audioclient3 when low-latency, as it might
Packit f546b1
    otherwise glitch with slow CPUs or VMs
Packit f546b1
-   wasapi: Don't derive device period from latency time, should make it
Packit f546b1
    more robust against glitches
Packit f546b1
-   audiolatency: Fix wave detection in buffers and avoid bogus pts
Packit f546b1
    values while starting
Packit f546b1
-   msdk: fix plugin load on implementations with only HW support
Packit f546b1
-   msdk: dec: set framerate to the driver only if provided, not in 0/1
Packit f546b1
    case
Packit f546b1
-   msdk: Don't set extended coding options for JPEG encode
Packit f546b1
-   rtponviftimestamp: fix state change function init/reset causing
Packit f546b1
    races/crashes on shutdown
Packit f546b1
-   decklink: fix initialization failure in windows binary
Packit f546b1
-   ladspa: Fix critical warnings during plugin load on Windows and fix
Packit f546b1
    dependencies in meson build
Packit f546b1
-   gl: fix cross-compilation error with viv-fb
Packit f546b1
-   qmlglsink: make work with eglfs_kms
Packit f546b1
-   rtspclientsink: Don't deadlock in preroll on early close
Packit f546b1
-   rtspclientsink: Fix client ports for the RTCP backchannel
Packit f546b1
-   rtsp-server: Fix session timeout when streaming data to client over
Packit f546b1
    TCP
Packit f546b1
-   vaapiencode: h264: find best profile in those available, fixing
Packit f546b1
    negotiation errors
Packit f546b1
-   vaapi: remove custom GstGL context handling, use GstGL instead.
Packit f546b1
    Fixes GL Context sharing with WebkitGtk on wayland
Packit f546b1
-   gst-editing-services: various fixes
Packit f546b1
-   gst-python: bump pygobject req to 3.8; fix
Packit f546b1
    GstPad.set_query_function(); dist autogen.sh and configure.ac in
Packit f546b1
    tarball
Packit f546b1
-   g-i: pick up GstVideo-1.0.gir from local build directory in GstGL
Packit f546b1
    build
Packit f546b1
-   g-i: update constant values for bindings
Packit f546b1
-   avoid duplicate symbols in plugins across modules in static builds
Packit f546b1
-   ... and many, many more!
Packit f546b1
Packit f546b1
Cerbero build tool and packaging changes in 1.14.1
Packit f546b1
Packit f546b1
Toolchain updates on iOS and Android necessitated a fairly large number
Packit f546b1
of changes in our cerbero build tool used to create our binary packages
Packit f546b1
for the various platforms we support:
Packit f546b1
Packit f546b1
-   Add support for Ubuntu 18.04 in cerbero
Packit f546b1
-   Fix generation of fat shared libraries on macOS
Packit f546b1
-   gnutls: also rename assembly functions on macos/ios to fix link
Packit f546b1
    errors
Packit f546b1
-   gnutls: fix assembly symbol names for windows x86
Packit f546b1
-   openssl: fix linking on android/armv7
Packit f546b1
-   openssl: fix linker issue with Android NDK's r16 binutils
Packit f546b1
-   ffmpeg: disable asm for android x86 to fix issues when linking with
Packit f546b1
    apps
Packit f546b1
-   x264: disable asm for android x86 to fix issues when linking with
Packit f546b1
    apps
Packit f546b1
-   gnutls: rename private symbols for armv8, x86 to not conflict with
Packit f546b1
    openssl
Packit f546b1
-   mpg123: disable assembly on android/x86 to fix linker problems with
Packit f546b1
    relocations
Packit f546b1
-   Check built version while loading recipe and rebuild if needed
Packit f546b1
-   Fix packaging of libgcc_s_sjlj which was missing in Windows packages
Packit f546b1
-   Make not-found in library search fatal so we don't accidentally ship
Packit f546b1
    broken packages
Packit f546b1
-   ship the proxy plugin which was new in 1.14
Packit f546b1
-   Fix git commands accidentally pulling in locally built libraries and
Packit f546b1
    failing
Packit f546b1
Packit f546b1
Contributors to 1.14.1
Packit f546b1
Packit f546b1
Antonio Ospite, Aurélien Zanelli, Brendan Shanks, Carlos Rafael Giani,
Packit f546b1
Edward Hervey, Emilio Pozuelo Monfort, Enrique Ocaña González, Garima
Packit f546b1
Gaur, Georg Lippitsch, Guillaume Desmottes, Havard Graff, Hoonhee Lee,
Packit f546b1
Hyunjun Ko, James Stevenson, Jan Alexander Steffens (heftig), Jan
Packit f546b1
Schmidt, Joakim Johansson, Jun Xie, Kai Kang, Kirill Marinushkin, Mark
Packit f546b1
Nauwelaerts, Matej Knopp, Mathieu Duponchelle, Matthew Waters, Matthias
Packit f546b1
Fend, Michael Olbrich, Mikhail Fludkov, Nicolas Dufresne, Nirbheek
Packit f546b1
Chauhan, Olivier Crête, Omar Akkila, Patrik Nilsson, Philippe Normand,
Packit f546b1
Pierre Labastie, Sebastian Dröge, Seungha Yang, Sreerenj Balachandran,
Packit f546b1
Stian Selnes, Takeshi Sato, Thibault Saunier, Tim-Philipp Müller, U.
Packit f546b1
Artie Eoff, Víctor Manuel Jáquez Leal, Vivia Nikolaidou, Whoopie, Xabier
Packit f546b1
Rodriguez Calvar, Xavier Claessens, Zeeshan Ali, and countless others.
Packit f546b1
Packit f546b1
List of bugs fixed in 1.14.1
Packit f546b1
Packit f546b1
For a full list of bugfixes see Bugzilla. Note that this is not the full
Packit f546b1
list of changes. For the full list of changes please refer to the GIT
Packit f546b1
logs or ChangeLogs of the particular modules.
Packit f546b1
Packit f546b1
1.14.2
Packit f546b1
Packit f546b1
The second 1.14 bug-fix release (1.14.2) is scheduled to be released
Packit f546b1
around mid-June 2018.
Packit f546b1
Packit f546b1
This release only contains bugfixes and it should be safe to update from
Packit f546b1
1.14.x.
Packit f546b1
Packit f546b1
Packit f546b1
Known Issues
Packit f546b1
Packit f546b1
-   The webrtcdsp element (which is unrelated to the newly-landed
Packit f546b1
    GStreamer webrtc support) is currently not shipped as part of the
Packit f546b1
    Windows binary packages due to a build system issue.
Packit f546b1
Packit f546b1
-   The gst-libav module currently won't build against the
Packit f546b1
    newly-released ffmpeg 4.0 (as in F28). Use the internal ffmpeg copy
Packit f546b1
    instead, if you build using autotools.
Packit f546b1
Packit f546b1
Packit f546b1
Schedule for 1.16
Packit f546b1
Packit f546b1
Our next major feature release will be 1.16, and 1.15 will be the
Packit f546b1
unstable development version leading up to the stable 1.16 release. The
Packit f546b1
development of 1.15/1.16 will happen in the git master branch.
Packit f546b1
Packit f546b1
The plan for the 1.16 development cycle is yet to be confirmed, but it
Packit f546b1
is expected that feature freeze will be around August 2018 followed by
Packit f546b1
several 1.15 pre-releases and the new 1.16 stable release in September.
Packit f546b1
Packit f546b1
1.16 will be backwards-compatible to the stable 1.14, 1.12, 1.10, 1.8,
Packit f546b1
1.6, 1.4, 1.2 and 1.0 release series.
Packit f546b1
Packit f546b1
------------------------------------------------------------------------
Packit f546b1
Packit f546b1
_These release notes have been prepared by Tim-Philipp Müller with_
Packit f546b1
_contributions from Sebastian Dröge, Sreerenj Balachandran, Thibault
Packit f546b1
Saunier_ _and Víctor Manuel Jáquez Leal._
Packit f546b1
Packit f546b1
_License: CC BY-SA 4.0_