3 GSTREAMER 1.16 RELEASE NOTES
6 GStreamer 1.16.0 was originally released on 19 April 2019.
8 See https://gstreamer.freedesktop.org/releases/1.16/ for the latest
9 version of this document.
11 _Last updated: Friday 19 April 2019, 00:00 UTC (log)_
16 The GStreamer team is proud to announce a new major feature release in
17 the stable 1.x API series of your favourite cross-platform multimedia
20 As always, this release is again packed with many new features, bug
21 fixes and other improvements.
26 - GStreamer WebRTC stack gained support for data channels for
27 peer-to-peer communication based on SCTP, BUNDLE support, as well as
28 support for multiple TURN servers.
30 - AV1 video codec support for Matroska and QuickTime/MP4 containers
31 and more configuration options and supported input formats for the
34 - Support for Closed Captions and other Ancillary Data in video
36 - Support for planar (non-interleaved) raw audio
38 - GstVideoAggregator, compositor and OpenGL mixer elements are now in
41 - New alternate fields interlace mode where each buffer carries a
44 - WebM and Matroska ContentEncryption support in the Matroska demuxer
46 - new WebKit WPE-based web browser source element
48 - Video4Linux: HEVC encoding and decoding, JPEG encoding, and improved
51 - Hardware-accelerated Nvidia video decoder gained support for VP8/VP9
52 decoding, whilst the encoder gained support for H.265/HEVC encoding.
54 - Many improvements to the Intel Media SDK based hardware-accelerated
55 video decoder and encoder plugin (msdk): dmabuf import/export for
56 zero-copy integration with other components; VP9 decoding; 10-bit
57 HEVC encoding; video post-processing (vpp) support including
58 deinterlacing; and the video decoder now handles dynamic resolution
61 - The ASS/SSA subtitle overlay renderer can now handle multiple
62 subtitles that overlap in time and will show them on screen
65 - The Meson build is now feature-complete (*) and it is now the
66 recommended build system on all platforms. The Autotools build is
67 scheduled to be removed in the next cycle.
69 - The GStreamer Rust bindings and Rust plugins module are now
70 officially part of upstream GStreamer.
72 - The GStreamer Editing Services gained a gesdemux element that allows
73 directly playing back serialized edit list with playbin or
76 - Many performance improvements
79 Major new features and changes
83 - GstAggregator has a new "min-upstream-latency" property that forces
84 a minimum aggregate latency for the input branches of an aggregator.
85 This is useful for dynamic pipelines where branches with a higher
86 latency might be added later after the pipeline is already up and
87 running and where a change in the latency would be disruptive. This
88 only applies to the case where at least one of the input branches is
89 live though, it won’t force the aggregator into live mode in the
90 absence of any live inputs.
92 - GstBaseSink gained a "processing-deadline" property and
93 setter/getter API to configure a processing deadline for live
94 pipelines. The processing deadline is the acceptable amount of time
95 to process the media in a live pipeline before it reaches the sink.
96 This is on top of the systemic latency that is normally reported by
97 the latency query. This defaults to 20ms and should make pipelines
98 such as v4l2src ! xvimagesink not claim that all frames are late in
99 the QoS events. Ideally, this should replace the "max-lateness"
100 property for most applications.
102 - RTCP Extended Reports (XR) parsing according to RFC 3611:
103 Loss/Duplicate RLE, Packet Receipt Times, Receiver Reference Time,
104 Delay since the last Receiver (DLRR), Statistics Summary, and VoIP
105 Metrics reports. This only provides the ability to parse such
106 packets, generation of XR packets is not supported yet and XR
107 packets are not automatically parsed by rtpbin / rtpsession but must
108 be actively handled by the application.
110 - a new mode for interlaced video was added where each buffer carries
111 a single field of interlaced video, with buffer flags indicating
112 whether the field is the top field or bottom field. Top and bottom
113 fields are expected to alternate in this mode. Caps for this
114 interlace mode must also carry a format:Interlaced caps feature to
115 ensure backwards compatibility.
117 - The video library has gained support for three new raw pixel
120 - Y410: packed 4:4:4 YUV, 10 bits per channel
121 - Y210: packed 4:2:2 YUV, 10 bits per channel
122 - NV12_10LE40: fully-packed 10-bit variant of NV12_10LE32,
123 i.e. without the padding bits
125 - GstRTPSourceMeta is a new meta that can be used to transport
126 information about the origin of depayloaded or decoded RTP buffers,
127 e.g. when mixing audio from multiple sources into a single stream. A
128 new "source-info" property on the RTP depayloader base class
129 determines whether depayloaders should put this meta on outgoing
130 buffers. Similarly, the same property on RTP payloaders determines
131 whether they should use the information from this meta to construct
132 the CSRCs list on outgoing RTP buffers.
134 - gst_sdp_message_from_text() is a convenience constructor to parse
135 SDPs from a string which is particularly useful for language
138 Support for Planar (Non-Interleaved) Raw Audio
140 Raw audio samples are usually passed around in interleaved form in
141 GStreamer, which means that if there are multiple audio channels the
142 samples for each channel are interleaved in memory, e.g.
143 |LEFT|RIGHT|LEFT|RIGHT|LEFT|RIGHT| for stereo audio. A non-interleaved
144 or planar arrangement in memory would look like
145 |LEFT|LEFT|LEFT|RIGHT|RIGHT|RIGHT| instead, possibly with
146 |LEFT|LEFT|LEFT| and |RIGHT|RIGHT|RIGHT| residing in separate memory
147 chunks or separated by some padding.
149 GStreamer has always had signalling for non-interleaved audio since
150 version 1.0, but it was never actually properly implemented in any
151 elements. audioconvert would advertise support for it, but wasn’t
152 actually able to handle it correctly.
154 With this release we now have full support for non-interleaved audio as
155 well, which means more efficient integration with external APIs that
156 handle audio this way, but also more efficient processing of certain
157 operations like interleaving multiple 1-channel streams into a
158 multi-channel stream which can be done without memory copies now.
160 New API to support this has been added to the GStreamer Audio support
161 library: There is now a new GstAudioMeta which describes how data is
162 laid out inside the buffer, and buffers with non-interleaved audio must
163 always carry this meta. To access the non-interleaved audio samples you
164 must map such buffers with gst_audio_buffer_map() which works much like
165 gst_buffer_map() or gst_video_frame_map() in that it will populate a
166 little GstAudioBuffer helper structure passed to it with the number of
167 samples, the number of planes and pointers to the start of each plane in
168 memory. This function can also be used to map interleaved audio buffers
169 in which case there will be only one plane of interleaved samples.
171 Of course support for this has also been implemented in the various
172 audio helper and conversion APIs, base classes, and in elements such as
173 audioconvert, audioresample, audiotestsrc, audiorate.
175 Support for Closed Captions and Other Ancillary Data in Video
177 The video support library has gained support for detecting and
178 extracting Ancillary Data from videos as per the SMPTE S291M
179 specification, including:
181 - a VBI (Vertical Blanking Interval) parser that can detect and
182 extract Ancillary Data from Vertical Blanking Interval lines of
183 component signals. This is currently supported for videos in v210
186 - a new GstMeta for closed captions: GstVideoCaptionMeta. This
187 supports the two types of closed captions, CEA-608 and CEA-708,
188 along with the four different ways they can be transported (other
189 systems are a superset of those).
191 - a VBI (Vertical Blanking Interval) encoder for writing ancillary
192 data to the Vertical Blanking Interval lines of component signals.
194 The new closedcaption plugin in gst-plugins-bad then makes use of all
195 this new infrastructure and provides the following elements:
197 - cccombiner: a closed caption combiner that takes a closed captions
198 stream and another stream and adds the closed captions as
199 GstVideoCaptionMeta to the buffers of the other stream.
201 - ccextractor: a closed caption extractor which will take
202 GstVideoCaptionMeta from input buffers and output them as a separate
203 closed captions stream.
205 - ccconverter: a closed caption converter that can convert between
208 - line21encoder, line21decoder: inject/extract line21 closed captions
209 to/from SD video streams
211 - cc708overlay: decodes CEA 608/708 captions and overlays them on
214 Additionally, the following elements have also gained Closed Caption
217 - qtdemux and qtmux support CEA 608/708 Closed Caption tracks
219 - mpegvideoparse, h264parse extracts Closed Captions from MPEG-2/H.264
222 - avviddec, avvidenc, x264enc got support for extracting/injecting
225 - decklinkvideosink can output closed captions and decklinkvideosrc
226 can extract closed captions
228 - playbin and playbin3 learned how to autoplug CEA 608/708 CC overlay
231 - the externally maintained ajavideosrc element for AJA capture cards
232 has support for extracting closed captions
234 The rsclosedcaption plugin in the Rust plugins collection includes a
235 MacCaption (MCC) file parser and encoder.
239 - overlaycomposition: New element that allows applications to draw
240 GstVideoOverlayCompositions on a stream. The element will emit the
241 "draw" signal for each video buffer, and the application then
242 generates an overlay for that frame (or not). This is much more
243 performant than e.g. cairooverlay for many use cases, e.g. because
244 pixel format conversions can be avoided or the blitting of the
245 overlay can be delegated to downstream elements (such as
246 gloverlaycompositor). It’s particularly useful for cases where only
247 a small section of the video frame should be drawn on.
249 - gloverlaycompositor: New OpenGL-based compositor element that
250 flattens any overlays from GstVideoOverlayCompositionMetas into the
251 video stream. This element is also always part of glimagesink.
253 - glalpha: New element that adds an alpha channel to a video stream.
254 The values of the alpha channel can either be set to a constant or
255 can be dynamically calculated via chroma keying. It is similar to
256 the existing alpha element but based on OpenGL. Calculations are
257 done in floating point so results may not be identical to the output
258 of the existing alpha element.
260 - rtpfunnel funnels together RTP streams into a single session. Use
261 cases include multiplexing and bundle. webrtcbin uses it to
262 implement BUNDLE support.
264 - testsrcbin is a source element that provides an audio and/or video
265 stream and also announces them using the recently-introduced
266 GstStream API. This is useful for testing elements such as playbin3
267 or uridecodebin3 etc.
269 - New closed caption elements: cccombiner, ccextractor, ccconverter,
270 line21encoder, line21decoder and cc708overlay (see above)
272 - wpesrc: new source element acting as a Web Browser based on WebKit
275 - Two new OpenCV-based elements: cameracalibrate and cameraundistort
276 that can communicate to figure out distortion correction parameters
277 for a camera and correct for the distortion.
279 - New sctp plugin based on usrsctp with sctpenc and sctpdec elements.
280 These elements are used inside webrtcbin for implementing data
283 New element features and additions
285 - playbin3, playbin and playsink have gained a new "text-offset"
286 property to adjust the positioning of the selected subtitle stream
287 vis-a-vis the audio and video streams. This uses subtitleoverlay’s
288 new "subtitle-ts-offset" property. GstPlayer has gained matching API
289 for this, namely gst_player_get_text_video_offset().
291 - playbin3 buffering improvements: in network playback scenarios there
292 may be multiple inputs to decodebin3, and buffering will be done
293 before decodebin3 using queue2 or downloadbuffer elements inside
294 urisourcebin. Since this is before any parsers or demuxers there may
295 not be any bitrate information available for the various streams, so
296 it was difficult to configure the buffering there smartly within
297 global constraints. This was improved now: The queue2 elements
298 inside urisourcebin will now use the new bitrate query to figure out
299 a bitrate estimate for the stream if no bitrate was provided by
300 upstream, and urisourcebin will use the bitrates of the individual
301 queues to distribute the globally-set "buffer-size" budget in bytes
302 to the various queues. urisourcebin also gained "low-watermark" and
303 "high-watermark" properties which will be proxied to the internal
304 queues, as well as a read-only "statistics" property which allows
305 querying of the minimum/maximum/average byte and time levels of the
306 queues inside the urisourcebin in question.
308 - splitmuxsink has gained a couple of new features:
310 - new "async-finalize" mode: This mode is useful for muxers or
311 outputs that can take a long time to finalize a file. Instead of
312 blocking the whole upstream pipeline while the muxer is doing
313 its stuff, we can unlink it and spawn a new muxer + sink
314 combination to continue running normally. This requires us to
315 receive the muxer and sink (if needed) as factories via the new
316 "muxer-factory" and "sink-factory" properties, optionally
317 accompanied by their respective properties structures (set via
318 the new "muxer-properties" and "sink-properties" properties).
319 There are also new "muxer-added" and "sink-added" signals in
320 case custom code has to be called for them to configure them.
322 - "split-at-running-time" action signal: When called by the user,
323 this action signal ends the current file (and starts a new one)
324 as soon as the given running time is reached. If called multiple
325 times, running times are queued up and processed in the order
328 - "split-after" action signal to finish outputting the current GOP
329 to the current file and then start a new file as soon as the GOP
330 is finished and a new GOP is opened (unlike the existing
331 "split-now" which immediately finishes the current file and
332 writes the current GOP into the next newly-started file).
334 - "reset-muxer" property: when unset, the muxer is reset using
335 flush events instead of setting its state to NULL and back. This
336 means the muxer can keep state across resets, e.g. mpegtsmux
337 will keep the continuity counter continuous across segments as
338 required by hlssink2.
340 - qtdemux gained PIFF track encryption box support in addition to the
341 already-existing PIFF sample encryption support, and also allows
342 applications to select which encryption system to use via a
343 "drm-preferred-decryption-system-id" context in case there are
346 - qtmux: the "start-gap-threshold" property determines now whether an
347 edit list will be created to account for small gaps or offsets at
348 the beginning of a stream in case the start timestamps of tracks
349 don’t line up perfectly. Previously the threshold was hard-coded to
350 1% of the (video) frame duration, now it is 0 by default (so edit
351 list will be created even for small differences), but fully
354 - rtpjitterbuffer has improved end-of-stream handling
356 - rtpmp4vpay will be preferred over rtpmp4gpay for MPEG-4 video in
357 autoplugging scenarios now
359 - rtspsrc now allows applications to send RTSP SET_PARAMETER and
360 GET_PARAMETER requests using action signals.
362 - rtspsrc has a small (100ms) configurable teardown delay by default
363 to try and make sure an RTSP TEARDOWN request gets sent out when the
364 source element shuts down. This will block the downward PAUSED to
365 READY state change for a short time, but can be disabled where it’s
366 a problem. Some servers only allow a limited number of concurrent
367 clients, so if no proper TEARDOWN is sent new clients may have
368 problems connecting to the server for a while.
370 - souphttpsrc behaves better with low bitrate streams now. Before it
371 would increase the read block size too quickly which could lead to
372 it not reading any data from the socket for a very long time with
373 low bitrate streams that are output live downstream. This could lead
374 to servers kicking off the client.
376 - filesink: do internal buffering to avoid performance regression with
377 small writes since we bypass libc buffering by using writev()
380 - identity: add "eos-after" property and fix "error-after" property
381 when the element is reused
383 - input-selector: lets context queries pass through, so that
384 e.g. upstream OpenGL elements can use contexts and displays
385 advertised by downstream elements
387 - queue2: avoid ping-pong between 0% and 100% buffering messages if
388 upstream is pushing buffers larger than one of its limits, plus
389 performance optimisations
391 - opusdec: new "phase-inversion" property to control phase inversion.
392 When enabled, this will slightly increase stereo quality, but
393 produces a stream that when downmixed to mono will suffer audio
396 - The x265enc HEVC encoder also exposes a "key-int-max" property to
397 configure the maximum allowed GOP size now.
399 - decklinkvideosink has seen stability improvements for long-running
400 pipelines (potential crash due to overflow of leaked clock refcount)
401 and clock-slaving improvements when performing flushing seeks
402 (causing stalls in the output timeline), pausing and/or buffering.
404 - srtpdec, srtpenc: add support for MKIs which allow multiple keys to
405 be used with a single SRTP stream
407 - srtpdec, srtpenc: add support for AES-GCM and also add support for
408 it in gst-rtsp-server and rtspsrc.
410 - The srt Secure Reliable Transport plugin has integrated server and
411 client elements srt{client,server}{src,sink} into one (srtsrc and
412 srtsink), since SRT connection mode can be changed by uri
415 - h264parse and h265parse will handle SEI recovery point messages and
416 mark recovery points as keyframes as well (in addition to IDR
419 - webrtcbin: "add-turn-server" action signal to pass multiple ICE
420 relays (TURN servers).
422 - The removesilence element has received various new features and
423 properties, such as a "threshold" property, detecting silence only
424 after minimum silence time/buffers, a "silent" property to control
425 bus message notifications as well as a "squash" property.
427 - AOMedia AV1 decoder gained support for 10/12bit decoding whilst the
428 AV1 encoder supports more image formats and subsamplings now and
429 acquired support for rate control and profile related configuration.
431 - The Fraunhofer fdkaac plugin can now be built against the 2.0.0
432 version API and has improved multichannel support
434 - kmssink now supports unpadded 24-bit RGB and can configure mode
435 setting from video info, which enables display of multi-planar
436 formats such as I420 or NV12 with modesetting. It has also gained a
437 number of new properties: The "restore-crtc" property does what it
438 says on the tin and is enabled by default. "plane-properties" and
439 "connector-properties" can be used to pass custom properties to the
442 - waylandsink has a "fullscreen" property now and supports the
445 - decklinkvideosink, decklinkvideosrc support selecting between
448 - The vulkan plugin gained support for macOS and iOS via MoltenVK in
449 addition to the existing support for X11 and Wayland
451 - imagefreeze has a new num-buffers property to limit the number of
452 buffers that are produced and to send an EOS event afterwards
454 - webrtcbin has a new, introspectable get-transceiver signal in
455 addition to the old get-transceivers signal that couldn’t be used
458 - Support for per-element latency information was added to the latency
461 Plugin and library moves
463 - The stereo element was moved from -bad into the existing audiofx
464 plugin in -good. If you get duplicate type registration warnings
465 when upgrading, check that you don’t have a stale stereoplugin lying
468 GstVideoAggregator, compositor, and OpenGL mixer elements moved from -bad to -base
470 GstVideoAggregator is a new base class for raw video mixers and muxers
471 and is based on GstAggregator. It provides defined-latency mixing of raw
472 video inputs and ensures that the pipeline won’t stall even if one of
473 the input streams stops producing data.
475 As part of the move to stabilise the API there were some last-minute API
476 changes and clean-ups, but those should mostly affect internal elements.
477 Most notably, the "ignore-eos" pad property was renamed to
478 "repeat-after-eos" and the conversion code was moved to a
479 GstVideoAggregatorConvertPad subclass to avoid code duplication, make
480 things less awkward for subclasses like the OpenGL-based video mixer,
481 and make the API more consistent with the audio aggregator API.
483 It is used by the compositor element, which is a replacement for
484 ‘videomixer’ which did not handle live inputs very well. compositor
485 should behave much better in that respect and generally behave as one
486 would expected in most scenarios.
488 The compositor element has gained support for per-pad blending mode
489 operators (SOURCE, OVER, ADD) which determines what operator to use for
490 blending this pad over the previous ones. This can be used to implement
491 crossfading and the available operators can be extended in the future as
494 A number of OpenGL-based video mixer elements (glvideomixer, glmixerbin,
495 glvideomixerelement, glstereomix, glmosaic) which are built on top of
496 GstVideoAggregator have also been moved from -bad to -base now. These
497 elements have been merged into the existing OpenGL plugin, so if you get
498 duplicate type registration warnings when upgrading, check that you
499 don’t have a stale openglmixers plugin lying about somewhere.
503 The following plugins have been removed from gst-plugins-bad:
505 - The experimental daala plugin has been removed, since it’s not so
506 useful now that all effort is focused on AV1 instead, and it had to
507 be enabled explicitly with --enable-experimental anyway.
509 - The spc plugin has been removed. It has been replaced by the gme
512 - The acmmp3dec and acmenc plugins for Windows have been removed. ACM
513 is an ancient legacy API and there was no point in keeping the
514 plugins around for a licensed MP3 decoder now that the MP3 patents
515 have expired and we have a decoder in -good. We also didn’t ship
516 these in our cerbero-built Windows packages, so it’s unlikely that
520 Miscellaneous API additions
522 - GstBitwriter: new generic bit writer API to complement the existing
525 - gst_buffer_new_wrapped_bytes() creates a wrap buffer from a GBytes
527 - gst_caps_set_features_simple() sets a caps feature on all the
528 structures of a GstCaps
530 - New GST_QUERY_BITRATE query: This allows determining from downstream
531 what the expected bitrate of a stream may be which is useful in
532 queue2 for setting time based limits when upstream does not provide
533 timing information. tsdemux, qtdemux and matroskademux have basic
534 support for this query on their sink pads.
536 - elements: there is a new “Hardware” class specifier. Elements
537 interacting with hardware devices should specify this classifier in
538 their element factory class metadata. This is useful to advertise as
539 one might need to put such elements into READY state to test if the
540 hardware is present in the system for example.
542 - protection: Add a new definition for unspecified system protection,
543 GST_PROTECTION_UNSPECIFIED_SYSTEM_ID
545 - take functions for various mini objects that didn’t have them yet:
546 gst_query_take(), gst_message_take(), gst_tag_list_take(),
547 gst_buffer_list_take(). Unlike the various _replace() functions
548 _take() does not increase the reference count but takes ownership of
549 the mini object passed.
551 - clear functions for various mini object types and GstObject which
552 unrefs the object or mini object (if non-NULL) and sets the variable
553 pointed to to NULL: gst_clear_structure(), gst_clear_tag_list(),
554 gst_clear_query(), gst_clear_message(), gst_clear_event(),
555 gst_clear_caps(), gst_clear_buffer_list(), gst_clear_buffer(),
556 gst_clear_mini_object(), gst_clear_object()
558 - miniobject: new API gst_mini_object_add_parent() and
559 gst_mini_object_remove_parent() to set parent pointers on mini
560 objects to ensure correct writability: Every container of
561 miniobjects now needs to store itself as parent in the child object,
562 and remove itself again later. A mini object is then only writable
563 if there is at most one parent, that parent is writable itself, and
564 the reference count of the mini object is 1. GstBuffer (for
565 memories), GstBufferList (for buffers), GstSample (for caps, buffer,
566 bufferlist), and GstVideoOverlayComposition were updated
567 accordingly. Without this it was possible to have e.g. a buffer list
568 with a refcount of 2 used in two places at once that both modify the
569 same buffer with refcount 1 at the same time wrongly thinking it is
570 writable even though it’s really not.
572 - poll: add API to watch for POLLPRI and stop treating POLLPRI as a
573 read. This is useful to wait for video4linux events which are
574 signalled via POLLPRI.
576 - sample: new API to update the contents of a GstSample and make it
577 writable: gst_sample_set_buffer(), gst_sample_set_caps(),
578 gst_sample_set_segment(), gst_sample_set_info(), plus
579 gst_sample_is_writable() and gst_sample_make_writable(). This makes
580 it possible to reuse a sample object and avoid unnecessary memory
581 allocations, for example in appsink.
583 - ClockIDs now keep a weak reference to underlying clock to avoid
584 crashes in basesink in corner cases where a clock goes away while
585 the ClockID is still in use, plus some new API
586 (gst_clock_id_get_clock(), gst_clock_id_uses_clock()) to check the
587 clock a ClockID is linked to.
589 - The GstCheck unit test library gained a
590 fail_unless_equals_clocktime() convenience macro as well as some new
591 GstHarness API for for proposing meta APIs from the allocation
592 query: gst_harness_add_propose_allocation_meta(). ASSERT_CRITICAL()
593 checks in unit tests are now skipped if GStreamer was compiled with
594 GST_DISABLE_GLIB_CHECKS.
596 - gst_audio_buffer_truncate() convenience function to truncate a raw
599 - GstDiscoverer has support for caching the results of discovery in
600 the default cache directory. This can be enabled with the use-cache
601 property and is disabled by default.
603 - GstMeta that are attached to GstBuffers are now always stored in the
604 order in which they were added.
606 - Additional support for signalling ONVIF specific features were
607 added: the SEEK event can store a trickmode-interval now and support
608 for the Rate-Control and Frames RTSP headers was added to the RTSP
612 Miscellaneous performance and memory optimisations
614 As always there have been many performance and memory usage improvements
615 across all components and modules. Some of them (such as dmabuf
616 import/export) have already been mentioned elsewhere so won’t be
619 The following list is only a small snapshot of some of the more
620 interesting optimisations that haven’t been mentioned in other contexts
623 - The GstVideoEncoder and GstVideoDecoder base classes now release the
624 STREAM_LOCK when pushing out buffers, which means (multi-threaded)
625 encoders and decoders can now receive and continue to process input
626 buffers whilst waiting for downstream elements in the pipeline to
627 process the buffer that was pushed out. This increases throughput
628 and reduces processing latency, also and especially for
629 hardware-accelerated encoder/decoder elements.
631 - GstQueueArray has seen a few API additions
632 (gst_queue_array_peek_nth(), gst_queue_array_set_clear_func(),
633 gst_queue_array_clear()) so that it can be used in other places like
634 GstAdapter instead of a GList, which reduces allocations and
635 improves performance.
637 - appsink now reuses the sample object in pull_sample() if possible
639 - rtpsession only starts the RTCP thread when it’s actually needed now
641 - udpsrc uses a buffer pool now and the GstUdpSrc object structure was
642 optimised for better cache performance
646 - API was added to fine-tune the synchronisation offset between
650 Miscellaneous changes
652 - As a result of moving to newer FFmpeg APIs, encoder and decoder
653 elements exposed by the GStreamer FFmpeg wrapper plugin (gst-libav)
654 may have seen possibly incompatible changes to property names and/or
655 types, and not all properties exposed might be functional. We are
656 still reviewing the new properties and aim to minimise breaking
657 changes at least for the most commonly-used properties, so please
658 report any issues you run into!
662 - The OpenGL mixer elements have been moved from -bad to
663 gst-plugins-base (see above)
665 - The Mesa GBM backend now supports headless mode
667 - gloverlaycompositor: New OpenGL-based compositor element that
668 flattens any overlays from GstVideoOverlayCompositionMetas into the
671 - glalpha: New element that adds an alpha channel to a video stream.
672 The values of the alpha channel can either be set to a constant or
673 can be dynamically calculated via chroma keying. It is similar to
674 the existing alpha element but based on OpenGL. Calculations are
675 done in floating point so results may not be identical to the output
676 of the existing alpha element.
678 - glupload: Implement direct dmabuf uploader, the idea being that some
679 GPUs (like the Vivante series) can actually perform the YUV->RGB
680 conversion internally, so no custom conversion shaders are needed.
681 To make use of this feature, we need an additional uploader that can
682 import DMABUF FDs and also directly pass the pixel format, relying
683 on the GPU to do the conversion.
685 - The OpenGL library no longer restores the OpenGL viewport. This is a
686 performance optimization to not require performing multiple
687 expensive glGet*() function calls per frame. This affects any
688 application or plugin use of the following functions and objects:
689 - glcolorconvert library object (not the element)
690 - glviewconvert library object (not the element)
691 - gst_gl_framebuffer_draw_to_texture()
692 - custom GstGLWindow implementations
695 Tracing framework and debugging improvements
697 - There is now a GDB PRETTY PRINTER FOR VARIOUS GSTREAMER TYPES: For
698 GstObject pointers the type and name is added, e.g.
699 0x5555557e4110 [GstDecodeBin|decodebin0]. For GstMiniObject pointers
700 the object type is added, e.g. 0x7fffe001fc50 [GstBuffer]. For
701 GstClockTime and GstClockTimeDiff the time is also printed in human
702 readable form, e.g. 150116219955 [+0:02:30.116219955].
704 - GDB EXTENSION WITH TWO CUSTOM GDB COMMANDS gst-dot AND gst-print:
706 - gst-dot creates dot files that a very close to what
707 GST_DEBUG_BIN_TO_DOT_FILE() produces, but object properties and
708 buffer contents such as codec-data in caps are not available.
710 - gst-print produces high-level information about a GStreamer
711 object. This is currently limited to pads for GstElements and
712 events for the pads. The output may look like this:
714 - gst_structure_to_string() now serialises the actual value of
715 pointers when serialising GstStructures instead of claiming they’re
716 NULL. This makes debug logging in various places less confusing,
717 because it’s clear now that structure fields actually hold valid
718 objects. Such object pointer values will never be deserialised
724 - gst-inspect-1.0 has coloured output now and will automatically use a
725 pager if the output does not fit on a page. This only works in a
726 UNIX environment and if the output is not piped, and on Windows 10
727 build 16257 or newer. If you don’t like the colours you can disable
728 them by setting the GST_INSPECT_NO_COLORS=1 environment variable or
729 passing the --no-color command line option.
732 GStreamer RTSP server
734 - Improved backlog handling when using TCP interleaved for data
735 transport. Before there was a fixed maximum size for backlog
736 messages, which was prone to deadlocks and made it difficult to
737 control memory usage with the watch backlog. The RTSP server now
738 limits queued TCP data messages to one per stream, moving queuing of
739 the data into the pipeline and leaving the RTSP connection
740 responsive to RTSP messages in both directions, preventing all those
743 - Initial ULP Forward Error Correction support in rtspclientsink and
744 for RECORD mode in the server.
746 - API to explicitly enable retransmission requests (RTX)
748 - Lots of multicast-related fixes
750 - rtsp-auth: Add support for parsing .htdigest files
755 - Support Wayland’s display for context sharing, so the application
756 can pass its own wl_display in order to be used for the VAAPI
759 - A lot of work to support new Intel hardware using media-driver as VA
762 - For non-x86 devices, VAAPI display can instantiate, through DRM,
763 with no PCI bus. This enables the usage of libva-v4l2-request
766 - Added support for XDG-shell protocol as wl_shell replacement which
767 is currently deprecated. This change add as dependency
770 - GstVaapiFilter, GstVaapiWindow, and GstVaapiDecoder classes now
771 inherit from GstObject, gaining all the GStreamer’s instrumentation
774 - The metadata now specifies the plugin as Hardware class.
776 - H264 decoder is more stable with problematic streams.
778 - In H265 decoder added support for profiles main-422-10 (P010_10LE),
779 main-444 (AYUV) and main-444-10 (Y410)
781 - JPEG decoder handles dynamic resolution changes.
783 - More specification adherence in H264 and H265 encoders.
788 - Add support of NV16 format to video encoders input.
790 - Video decoders now handle the ALLOCATION query to tell upstream
791 about the number of buffers they require. Video encoders will also
792 use this query to adjust their number of allocated buffers
793 preventing starvation when using dynamic buffer mode.
795 - The OMX_PERFORMANCE debug category has been renamed to OMX_API_TRACE
796 and can now be used to track a widder variety of interactions
797 between OMX and GStreamer.
799 - Video encoders will now detect frame rate only changes and will
800 inform OMX about it rather than doing a full format reset.
802 - Various Zynq UltraScale+ specific improvements:
803 - Video encoders are now able to import dmabuf from upstream.
804 - Support for HEVC range extension profiles and more AVC profiles.
805 - We can now request video encoders to generate an IDR using the
806 force key unit event.
809 GStreamer Editing Services and NLE
811 - Added a gesdemux element, it is an auto pluggable element that
812 allows decoding edit list like files supported by GES
814 - Added gessrc which wraps a GESTimeline as a standard source element
815 (implementing the ges protocol handler)
817 - Added basic support for videorate::rate property potentially
818 allowing changing playback speed
820 - Layer priority is now fully automatic and they should be moved with
821 the new ges_timeline_move_layer method, ges_layer_set_priority is
824 - Added a ges_timeline_element_get_layer_priority so we can simply get
825 all information about GESTimelineElement position in the timeline
827 - GESVideoSource now auto orientates the images if it is defined in a
830 - Added some PyGObject overrides to make the API more pythonic
832 - The threading model has been made more explicit with safe guard to
833 make sure not thread safe APIs are not used from the wrong threads.
834 It is also now possible to properly handle in what thread the API
837 - Optimized GESClip and GESTrackElement creation
839 - Added a way to compile out the old, unused and deprecated
842 - Re implemented the timeline editing API making it faster and making
843 the code much more maintainable
845 - Simplified usage of nlecomposition outside GES by removing quirks in
846 it API usage and removing the need to treat it specially from an
847 application perspective.
851 - Added support to add titles to the timeline
852 - Enhance the help auto generating it from the code
854 - Deprecate ges_timeline_load_from_uri as loading the timeline should
855 be done through a project now
857 - MANY leaks have been plugged and the unit testsuite is now “leak
863 - Added an action type to verify the checksum of the sink last-sample
865 - Added an include keyword to validate scenarios
867 - Added the notion of variable in scenarios, with the set-vars keyword
869 - Started adding support for “performance” like tests by allowing to
870 define the number of dropped buffers or the minimum buffer frequency
873 - Added a validateflow plugin which allows defining the data flow to
874 be seen on a particular pad and verifying that following runs match
877 - Added support for appsrc based test definition so we can instrument
878 the data pushed into the pipeline from scenarios
880 - Added a mockdecryptor allowing adding tests with on encrypted files,
881 the element will potentially be instrumented with a validate
884 - gst-validate-launcher:
888 - Changed the default for “muting” tests as user doesn’t expect
889 hundreds of windows to show up when running the testsuite
891 - Fixed the outputted xunit files to be compatible with GitLab
893 - Added support to run tests on media files in push mode (using
896 - Added support for running inside gst-build
898 - Added support for running ssim tests on rendered files
900 - Added a way to simply define tests on pipelines through a simple
903 - Added a python app to easily run python testsuite reusing all
904 the launcher features
906 - Added flatpak knowledge so we can print backtrace even when
907 running from within flatpak
909 - Added a way to automatically generated “known issues”
912 - Added a way to rerun tests to check if they are flaky and added
913 a way to tolerate tests known to be flaky
915 - Add a way to output html log files
918 GStreamer Python Bindings
920 - add binding for gst_pad_set_caps()
922 - pygobject dependency requirement was bumped to >= 3.8
924 - new audiotestsrc, audioplot, and mixer plugin examples, and a
925 dynamic pipeline example
928 GStreamer C# Bindings
930 - bindings for the GstWebRTC library
933 GStreamer Rust Bindings
935 The GStreamer Rust bindings are now officially part of the GStreamer
936 project and are also maintained in the GStreamer GitLab.
938 The releases will generally not be synchronized with the releases of
939 other GStreamer parts due to dependencies on other projects.
941 Also unlike the other GStreamer libraries, the bindings will not commit
942 to full API stability but instead will follow the approach that is
943 generally taken by Rust projects, e.g.:
945 1) 0.12.X will be completely API compatible with all other 0.12.Y
947 2) 0.12.X+1 will contain bugfixes and compatible new feature additions.
948 3) 0.13.0 will _not_ be backwards compatible with 0.12.X but projects
949 will be able to stay at 0.12.X without any problems as long as they
950 don’t need newer features.
952 The current stable release is 0.12.2 and the next release series will be
953 0.13, probably around March 2019.
955 At this point the bindings cover most of GStreamer core (except for most
956 notably GstAllocator and GstMemory), and most parts of the app, audio,
957 base, check, editing-services, gl, net. pbutils, player, rtsp,
958 rtsp-server, sdp, video and webrtc libraries.
960 Also included is support for creating subclasses of the following types
961 and writing GStreamer plugins:
964 - gst::Bin and gst::Pipeline
965 - gst::URIHandler and gst::ChildProxy
966 - gst::Pad, gst::GhostPad
967 - gst_base::Aggregator and gst_base::AggregatorPad
968 - gst_base::BaseSrc and gst_base::BaseSink
969 - gst_base::BaseTransform
971 Changes to 0.12.X since 0.12.0
975 - PTP clock constructor actually creates a PTP instead of NTP clock
979 - Bindings for GStreamer Editing Services
980 - Bindings for GStreamer Check testing library
981 - Bindings for the encoding profile API (encodebin)
983 - VideoFrame, VideoInfo, AudioInfo, StructureRef implements Send and
985 - VideoFrame has a function to get the raw FFI pointer
986 - From impls from the Error/Success enums to the combined enums like
988 - Bin-to-dot file functions were added to the Bin trait
989 - gst_base::Adapter implements SendUnique now
990 - More complete bindings for the gst_video::VideoOverlay interface,
992 gst_video::is_video_overlay_prepare_window_handle_message()
996 - All references were updated from GitHub to freedesktop.org GitLab
997 - Fix various links in the README.md
998 - Link to the correct location for the documentation
999 - Remove GitLab badge as that only works with gitlab.com currently
1001 Changes in git master for 0.13
1005 - gst::tag::Album is the album tag now instead of artist sortname
1009 - Subclassing infrastructure was moved directly into the bindings,
1010 making the gst-plugin crate deprecated. This involves many API
1011 changes but generally cleans up code and makes it more flexible.
1012 Take a look at the gst-plugins-rs crate for various examples.
1014 - Bindings for CapsFeatures and Meta
1016 ParentBufferMeta,VideoMetaandVideoOverlayCompositionMeta`
1017 - Bindings for VideoOverlayComposition and VideoOverlayRectangle
1018 - Bindings for VideoTimeCode
1020 - UniqueFlowCombiner and UniqueAdapter wrappers that make use of the
1021 Rust compile-time mutability checks and expose more API in a safe
1022 way, and as a side-effect implement Sync and Send now
1024 - More complete bindings for Allocation Query
1025 - pbutils functions for codec descriptions
1026 - TagList::iter() for iterating over all tags while getting a single
1027 value per tag. The old ::iter_tag_list() function was renamed to
1028 ::iter_generic() and still provides access to each value for a tag
1029 - Bus::iter() and Bus::iter_timed() iterators around the corresponding
1032 - serde serialization of Value can also handle Buffer now
1034 - Extensive comments to all examples with explanations
1035 - Transmuxing example showing how to use typefind, multiqueue and
1037 - basic-tutorial-12 was ported and added
1041 - Rust 1.31 is the minimum supported Rust version now
1042 - Update to latest gir code generator and glib bindings
1044 - Functions returning e.g. gst::FlowReturn or other “combined” enums
1045 were changed to return split enums like
1046 Result<gst::FlowSuccess, gst::FlowError> to allow usage of the
1047 standard Rust error handling.
1049 - MiniObject subclasses are now newtype wrappers around the underlying
1050 GstRc<FooRef> wrapper. This does not change the API in any breaking
1051 way for the current usages, but allows MiniObjects to also be
1052 implemented in other crates and makes sure rustdoc places the
1053 documentation in the right places.
1055 - BinExt extension trait was renamed to GstBinExt to prevent conflicts
1056 with gtk::Bin if both are imported
1058 - Buffer::from_slice() can’t possible return None
1060 - Various clippy warnings
1063 GStreamer Rust Plugins
1065 Like the GStreamer Rust bindings, the Rust plugins are now officially
1066 part of the GStreamer project and are also maintained in the GStreamer
1069 In the 0.3.x versions this contained infrastructure for writing
1070 GStreamer plugins in Rust, and a set of plugins.
1072 In git master that infrastructure was moved to the GLib and GStreamer
1073 bindings directly, together with many other improvements that were made
1074 possible by this, so the gst-plugins-rs repository only contains
1075 GStreamer elements now.
1077 Elements included are:
1079 - Tutorials plugin: identity, rgb2gray and sinesrc with extensive
1082 - rsaudioecho, a port of the audiofx element
1084 - rsfilesrc, rsfilesink
1086 - rsflvdemux, a FLV demuxer. Not feature-equivalent with flvdemux yet
1088 - threadshare plugin: ts-appsrc, ts-proxysrc/sink, ts-queue, ts-udpsrc
1089 and ts-tcpclientsrc elements that use a fixed number of threads and
1090 share them between instances. For more background about these
1091 elements see Sebastian’s talk “When adding more threads adds more
1092 problems - Thread-sharing between elements in GStreamer” at the
1093 GStreamer Conference 2017.
1095 - rshttpsrc, a HTTP source around the hyper/reqwest Rust libraries.
1096 Not feature-equivalent with souphttpsrc yet.
1098 - togglerecord, an element that allows to start/stop recording at any
1099 time and keeps all audio/video streams in sync.
1101 - mccparse and mccenc, parsers and encoders for the MCC closed caption
1104 Changes to 0.3.X since 0.3.0
1106 - All references were updated from GitHub to freedesktop.org GitLab
1107 - Fix various links in the README.md
1108 - Link to the correct location for the documentation
1110 Changes in git master for 0.4
1112 - togglerecord: Switch to parking_lot crate for mutexes/condition
1113 variables for lower overhead
1114 - Merge threadshare plugin here
1115 - New closedcaption plugin with mccparse and mccenc elements
1116 - New identity element for the tutorials plugin
1118 - Register plugins statically in tests instead of relying on the
1119 plugin loader to find the shared library in a specific place
1121 - Update to the latest API changes in the GLib and GStreamer bindings
1122 - Update to the latest versions of all crates
1125 Build and Dependencies
1127 - The MESON BUILD SYSTEM BUILD IS NOW FEATURE-COMPLETE (*) and it is
1128 now the recommended build system on all platforms and also used by
1129 Cerbero to build GStreamer on all platforms. The Autotools build is
1130 scheduled to be removed in the next cycle. Developers who currently
1131 use gst-uninstalled should move to gst-build. The build option
1132 naming has been cleaned up and made consistent and there are now
1133 feature options to enable/disable plugins and various other features
1134 on a case-by-case basis. (*) with the exception of plugin docs which
1135 will be handled differently in future
1137 - Symbol export in libraries is now controlled via explicit exports
1138 using symbol visibility or export defines where supported, to ensure
1139 consistency across all platforms. This also allows libraries to have
1140 exports that vary based on detected platform features and configure
1141 options as is the case with the GStreamer OpenGL integration library
1142 for example. A few symbols that had been exported by accident in
1143 earlier versions may no longer be exported. These symbols will not
1144 have had declarations in any public header files then though and
1145 would not have been usable.
1147 - The GStreamer FFmpeg wrapper plugin (gst-libav) now depends on
1148 FFmpeg 4.x and uses the new FFmpeg 4.x API and stopped relying on
1149 ancient API that was removed with the FFmpeg 4.x release. This means
1150 that it is no longer possible to build this module against an older
1151 system-provided FFmpeg 3.x version. Use the internal FFmpeg 4.x copy
1152 instead if you build using autotools, or use gst-libav 1.14.x
1153 instead which targets the FFmpeg 3.x API and _should_ work fine in
1154 combination with a newer GStreamer. It’s difficult for us to support
1155 both old and new FFmpeg APIs at the same time, apologies for any
1156 inconvenience caused.
1158 - Hardware-accelerated Nvidia video encoder/decoder plugins nvdec and
1159 nvenc can be built against CUDA Toolkit versions 9 and 10.0 now. The
1160 dynlink interface has been dropped since it’s deprecated in 10.0.
1162 - The (optional) OpenCV requirement has been bumped to >= 3.0.0 and
1163 the plugin can also be built against OpenCV 4.x now.
1165 - New sctp plugin based on usrsctp (for WebRTC data channels)
1169 Cerbero is a meta build system used to build GStreamer plus dependencies
1170 on platforms where dependencies are not readily available, such as
1171 Windows, Android, iOS and macOS.
1173 Cerbero has seen a number of improvements:
1175 - Cerbero has been ported to Python 3 and requires Python 3.5 or newer
1178 - Source tarballs are now protected by checksums in the recipes to
1179 guard against download errors and malicious takeover of projects or
1180 websites. In addition, downloads are only allowed via secure
1181 transports now and plain HTTP, FTP and git:// transports are not
1184 - There is now a new fetch-bootstrap command which downloads sources
1185 required for bootstrapping, with an optional --build-tools-only
1186 argument to match the bootstrap --build-tools-only command.
1188 - The bootstrap, build, package and bundle-source commands gained a
1189 new --offline switch that ensures that only sources from the cache
1190 are used and never downloaded via the network. This is useful in
1191 combination with the fetch and fetch-bootstrap commands that acquire
1192 sources ahead of time before any build steps are executed. This
1193 allows more control over the sources used and when sources are
1194 updated, and is particularly useful for build environments that
1195 don’t have network access.
1197 - bootstrap --assume-yes will automatically say ‘yes’ to any
1198 interactive prompts during the bootstrap stage, such as those from
1201 - bootstrap --system-only will only bootstrap the system without build
1204 - Manifest support: The build manifest can be used in continuous
1205 integration (CI) systems to fixate the Git revision of certain
1206 projects so that all builds of a pipeline are on the same reference.
1207 This is used in GStreamer’s gitlab CI for example. It can also be
1208 used in order to re-produce a specific build. To set a manifest, you
1209 can set manifest = 'my_manifest.xml' in your configuration file, or
1210 use the --manifest command line option. The command line option will
1211 take precedence over anything specific in the configuration file.
1213 - The new build-deps command can be used to build only the
1214 dependencies of a recipe, without the recipe itself.
1216 - new --list-variants command to list available variants
1218 - variants can now be set on the command line via the -v option as a
1219 comma-separated list. This overrides any variants set in any
1220 configuration files.
1222 - new qt5, intelmsdk and nvidia variants for enabling Qt5 and hardware
1223 codec support. See the Enabling Optional Features with Variants
1224 section in the Cerbero documentation for more details how to enable
1225 and use these variants.
1227 - A new -t / --timestamp command line switch makes commands print
1231 Platform-specific changes and improvements
1235 - toolchain: update compiler to clang and NDKr18. NDK r18 removed the
1236 armv5 target and only has Android platforms that target at least
1237 armv7 so the armv5 target is not useful anymore.
1239 - The way that GIO modules are named has changed due to upstream GLib
1240 natively adding support for loading static GIO modules. This means
1241 that any GStreamer application using gnutls for SSL/TLS on the
1242 Android or iOS platforms (or any other setup using static libraries)
1243 will fail to link looking for the g_io_module_gnutls_load_static()
1244 function. The new function name is now
1245 g_io_gnutls_load(gpointer data). data can be NULL for a static
1246 library. Look at this commit for the necessary change in the
1249 - various build issues on Android have been fixed.
1253 - various build issues on iOS have been fixed.
1255 - the minimum required iOS version is now 9.0. The difference in
1256 adoption between 8.0 and 9.0 is 0.1% and the bump to 9.0 fixes some
1259 - The way that GIO modules are named has changed due to upstream GLib
1260 natively adding support for loading static GIO modules. This means
1261 that any GStreamer application using gnutls for SSL/TLS on the
1262 Android or iOS platforms (or any other setup using static libraries)
1263 will fail to link looking for the g_io_module_gnutls_load_static()
1264 function. The new function name is now
1265 g_io_gnutls_load(gpointer data). data can be NULL for a static
1266 library. Look at this commit for the necessary change in the
1271 - The webrtcdsp element is shipped again as part of the Windows binary
1272 packages, the build system issue has been resolved.
1274 - ‘Inconsistent DLL linkage’ warnings when building with MSVC have
1277 - Hardware-accelerated Nvidia video encoder/decoder plugins nvdec and
1278 nvenc build on Windows now, also with MSVC and using Meson.
1280 - The ksvideosrc camera capture plugin supports 16-bit grayscale video
1283 - The wasapisrc audio capture element implements loopback recording
1284 from another output device or sink
1286 - wasapisink recover from low buffer levels in shared mode and some
1287 exclusive mode fixes
1289 - dshowsrc now implements the GstDeviceMonitor interface
1294 Aaron Boxer, Aleix Conchillo Flaqué, Alessandro Decina, Alexandru Băluț,
1295 Alex Ashley, Alexey Chernov, Alicia Boya García, Amit Pandya, Andoni
1296 Morales Alastruey, Andreas Frisch, Andre McCurdy, Andy Green, Anthony
1297 Violo, Antoine Jacoutot, Antonio Ospite, Arun Raghavan, Aurelien Jarno,
1298 Aurélien Zanelli, ayaka, Bananahemic, Bastian Köcher, Branko Subasic,
1299 Brendan Shanks, Carlos Rafael Giani, Charlie Turner, Christoph Reiter,
1300 Corentin Noël, Daeseok Youn, Damian Vicino, Dan Kegel, Daniel Drake,
1301 Daniel Klamt, Danilo Spinella, Dardo D Kleiner, David Ing, David
1302 Svensson Fors, Devarsh Thakkar, Dimitrios Katsaros, Edward Hervey,
1303 Emilio Pozuelo Monfort, Enrique Ocaña González, Erlend Eriksen, Ezequiel
1304 Garcia, Fabien Dessenne, Fabrizio Gennari, Florent Thiéry, Francisco
1305 Velazquez, Freyr666, Garima Gaur, Gary Bisson, George Kiagiadakis, Georg
1306 Lippitsch, Georg Ottinger, Geunsik Lim, Göran Jönsson, Guillaume
1307 Desmottes, H1Gdev, Haihao Xiang, Haihua Hu, Harshad Khedkar, Havard
1308 Graff, He Junyan, Hoonhee Lee, Hosang Lee, Hyunjun Ko, Ilya Smelykh,
1309 Ingo Randolf, Iñigo Huguet, Jakub Adam, James Stevenson, Jan Alexander
1310 Steffens, Jan Schmidt, Jerome Laheurte, Jimmy Ohn, Joakim Johansson,
1311 Jochen Henneberg, Johan Bjäreholt, John-Mark Bell, John Bassett, John
1312 Nikolaides, Jonathan Karlsson, Jonny Lamb, Jordan Petridis, Josep Torra,
1313 Joshua M. Doe, Jos van Egmond, Juan Navarro, Julian Bouzas, Jun Xie,
1314 Junyan He, Justin Kim, Kai Kang, Kim Tae Soo, Kirill Marinushkin, Kyrylo
1315 Polezhaiev, Lars Petter Endresen, Linus Svensson, Louis-Francis
1316 Ratté-Boulianne, Lucas Stach, Luis de Bethencourt, Luz Paz, Lyon Wang,
1317 Maciej Wolny, Marc-André Lureau, Marc Leeman, Marco Trevisan (Treviño),
1318 Marcos Kintschner, Marian Mihailescu, Marinus Schraal, Mark Nauwelaerts,
1319 Marouen Ghodhbane, Martin Kelly, Matej Knopp, Mathieu Duponchelle,
1320 Matteo Valdina, Matthew Waters, Matthias Fend, memeka, Michael Drake,
1321 Michael Gruner, Michael Olbrich, Michael Tretter, Miguel Paris, Mike
1322 Wey, Mikhail Fludkov, Naveen Cherukuri, Nicola Murino, Nicolas Dufresne,
1323 Niels De Graef, Nirbheek Chauhan, Norbert Wesp, Ognyan Tonchev, Olivier
1324 Crête, Omar Akkila, Pat DeSantis, Patricia Muscalu, Patrick Radizi,
1325 Patrik Nilsson, Paul Kocialkowski, Per Forlin, Peter Körner, Peter
1326 Seiderer, Petr Kulhavy, Philippe Normand, Philippe Renon, Philipp Zabel,
1327 Pierre Labastie, Piotr Drąg, Roland Jon, Roman Sivriver, Roman Shpuntov,
1328 Rosen Penev, Russel Winder, Sam Gigliotti, Santiago Carot-Nemesio,
1329 Sean-Der, Sebastian Dröge, Seungha Yang, Shi Yan, Sjoerd Simons, Snir
1330 Sheriber, Song Bing, Soon, Thean Siew, Sreerenj Balachandran, Stefan
1331 Ringel, Stephane Cerveau, Stian Selnes, Suhas Nayak, Takeshi Sato,
1332 Thiago Santos, Thibault Saunier, Thomas Bluemel, Tianhao Liu,
1333 Tim-Philipp Müller, Tobias Ronge, Tomasz Andrzejak, Tomislav Tustonić,
1334 U. Artie Eoff, Ulf Olsson, Varunkumar Allagadapa, Víctor Guzmán, Víctor
1335 Manuel Jáquez Leal, Vincenzo Bono, Vineeth T M, Vivia Nikolaidou, Wang
1336 Fei, wangzq, Whoopie, Wim Taymans, Wind Yuan, Wonchul Lee, Xabier
1337 Rodriguez Calvar, Xavier Claessens, Haihao Xiang, Yacine Bandou,
1338 Yeongjin Jeong, Yuji Kuwabara, Zeeshan Ali,
1340 … and many others who have contributed bug reports, translations, sent
1341 suggestions or helped testing.
1346 After the 1.16.0 release there will be several 1.16.x bug-fix releases
1347 which will contain bug fixes which have been deemed suitable for a
1348 stable branch, but no new features or intrusive changes will be added to
1349 a bug-fix release usually. The 1.16.x bug-fix releases will be made from
1350 the git 1.16 branch, which is a stable branch.
1354 1.16.0 was released on 19 April 2019.
1359 - possibly breaking/incompatible changes to properties of wrapped
1360 FFmpeg decoders and encoders (see above).
1362 - The way that GIO modules are named has changed due to upstream GLib
1363 natively adding support for loading static GIO modules. This means
1364 that any GStreamer application using gnutls for SSL/TLS on the
1365 Android or iOS platforms (or any other setup using static libraries)
1366 will fail to link looking for the g_io_module_gnutls_load_static()
1367 function. The new function name is now
1368 g_io_gnutls_load(gpointer data). See Android/iOS sections above for
1374 Our next major feature release will be 1.18, and 1.17 will be the
1375 unstable development version leading up to the stable 1.18 release. The
1376 development of 1.17/1.18 will happen in the git master branch.
1378 The plan for the 1.18 development cycle is yet to be confirmed, but it
1379 is possible that the next cycle will be a short one in which case
1380 feature freeze would be perhaps around August 2019 with a new 1.18
1381 stable release in September.
1383 1.18 will be backwards-compatible to the stable 1.16, 1.14, 1.12, 1.10,
1384 1.8, 1.6, 1.4, 1.2 and 1.0 release series.
1386 ------------------------------------------------------------------------
1388 _These release notes have been prepared by Tim-Philipp Müller with_
1389 _contributions from Sebastian Dröge, Guillaume Desmottes, Matthew
1390 Waters, _ _Thibault Saunier, and Víctor Manuel Jáquez Leal._
1392 _License: CC BY-SA 4.0_