From: Sebastian Dröge Date: Tue, 20 Jun 2017 09:06:59 +0000 (+0300) Subject: Release 1.12.1 X-Git-Tag: 1.12.2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30f004de7fa9fd83b32b1f9be0f35e660e546f8f;p=platform%2Fupstream%2Fgst-plugins-bad.git Release 1.12.1 --- diff --git a/ChangeLog b/ChangeLog index 7cf0256d2..00b9d3218 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,562 @@ +=== release 1.12.1 === + +2017-06-20 Sebastian Dröge + + * configure.ac: + releasing 1.12.1 + +2017-06-20 11:09:34 +0300 Sebastian Dröge + + * po/bg.po: + * po/hr.po: + * po/ky.po: + * po/sv.po: + * po/tr.po: + po: Update translations + +2017-06-16 09:43:35 -0700 Reynaldo H. Verdejo Pinochet + + * sys/dvb/gstdvbsrc.c: + dvb: src: fix use of wrong array index for tune signal + Erroneous value made "TUNE" overwrite "TUNNING_FAIL" .... + +2017-06-15 14:13:14 -0400 Thibault Saunier + + * gst/mxf/mxfdemux.c: + mxfdemux: Do not try to serialize unresolved metadatas + When retrieving the `mxfdemux.structure` property, it leads to an + assertion as metadatas need to be resolved for the call to + mxf_metadata_base_to_structure to be valid. + +2017-06-12 22:29:01 +0300 Sebastian Dröge + + * gst-libs/gst/gl/gstglupload.c: + glupload: Fix DirectVIV uploader for formats with a single plane + We have to pass the "height" as height = vmeta->offset[1] / width to the + API, which of course does not work well for formats with only a single + plane. Use the whole memory size instead of the offset in that case. + +2017-06-04 20:23:36 +0900 Seungha Yang + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: Clear "cancelled" on uridownloader before processing manifest + Previous commit let demux call gst_uri_downloader_cancel() on _demux_reset(). + Note that, _demux_reset() called during PAUSED_TO_READY and READY_TO_PAUSED. + And, it will set "cancelled" on uridownloader which blocks the use of + uridownloader. The issue is that, subclass can use the uridownloader not only + live streaming for manifest update, but also for fetching another manifests + such as variant and rendition m3u8 of hls streaming. So to unblock it, + demux should clear "cancelled" before processing initial manifest. + https://bugzilla.gnome.org/show_bug.cgi?id=783401 + +2017-05-31 02:46:01 +0200 Mathieu Duponchelle + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: release the manifest lock ... + before broadcasting preroll. + The deadlock was as follows: + -> The subclass pushes a buffer on a newly-created stream in T1 + -> We take the preroll lock in T1, to handle_preroll + -> The demuxer is stopped in T2, we take the MANIFEST_LOCK + -> T1 starts blocking because it received a reconfigure event + and needs to take the MANIFEST_LOCK + -> T2 deadlocks because it now wants the preroll_lock. + https://bugzilla.gnome.org/show_bug.cgi?id=783255 + +2017-05-29 22:28:21 -0700 Thiago Santos + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: do not erase data while updates-loop is running + Make sure the manifest update loop is stopped before proceeding with the + resetting of the manifest data. Otherwise, the updates loop will try to + use it and it leads to a segfault + https://bugzilla.gnome.org/show_bug.cgi?id=783028 + +2017-05-29 22:26:09 -0700 Thiago Santos + + * ext/dash/gstmpdparser.c: + mpdparser: remove duplicate free of client data + https://bugzilla.gnome.org/show_bug.cgi?id=783028 + +2017-05-31 03:14:04 +0200 Mathieu Duponchelle + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: make sure to free all "old streams" + As we release the MANIFEST_LOCK in stop_tasks, + demux->priv->old_streams can be set, we need to free these + otherwise we may end up trying to dispose elements in the + READY state. + https://bugzilla.gnome.org/show_bug.cgi?id=783256 + +2017-05-31 10:58:39 +0200 Edward Hervey + + * ext/dash/gstdashdemux.c: + dashdemux: Remove wrong assertion + This is wrong because: + * If the rate is negative we should check for the *previous* period + * adaptivedemux already does the proper checks before calling this + method + +2017-05-26 17:30:10 +0200 Edward Hervey + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: Fix debugging message + GstSegment position is a guint64 and not a gint64 + CID #1409910 + +2017-05-25 09:48:53 +0200 Edward Hervey + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: Check live seeking range more often + The live seeking range was only checked when doing actual seeks. This was + assuming that the rate would always be 1.0 (i.e. the playback would + advance in realtime, and therefore fragments would always be available + since the seeking window moves at the same rate). + With non-1.0 rates, this no longer becomes valid, and therefore we need + to check whether we are still within the live seeking range when advancing. + https://bugzilla.gnome.org/show_bug.cgi?id=783075 + +2017-05-16 23:20:44 +0900 Seungha Yang + + * ext/dash/gstdashdemux.c: + dashdemux: Initialize sidx_position to GST_CLOCK_TIME_NONE + If a manifest has non-zero presentation time offset + (i.e., earliest presentation time specified by sidx box is not zero), + the initial sidx position shouldn't be zero. Since we cannot define + exact sidx position until parsing sidx box, set the value to unknown. + https://bugzilla.gnome.org/show_bug.cgi?id=782693 + +2017-06-10 07:56:48 -0400 Aaron Boxer + + * ext/openjpeg/gstopenjpegdec.c: + openjpegdec: fix display artifacts for RGB 8-bit + https://bugzilla.gnome.org/show_bug.cgi?id=783626 + +2017-06-05 15:31:52 +0100 Vincent Penquerc'h + + * gst-libs/gst/codecparsers/gstjpeg2000sampling.c: + jpeg2000sampling: fix critical when sampling is missing from caps + This can happen with real files + +2017-06-07 16:17:50 +0100 Vincent Penquerc'h + + * ext/openjpeg/gstopenjpegdec.c: + openjpeg: guard against invalid memory access on crafted files + +2017-05-18 10:58:20 +0100 Tim-Philipp Müller + + * ext/openh264/gstopenh264plugin.c: + * ext/resindvd/plugin.c: + * ext/srtp/gstsrtp.c: + * ext/teletextdec/gstteletextdec.c: + * ext/ttml/gstttmlplugin.c: + * ext/webrtcdsp/gstwebrtcdsp.cpp: + * gst/fieldanalysis/gstfieldanalysis.c: + * gst/gaudieffects/gstplugin.c: + * gst/pcapparse/plugin.c: + * sys/acmenc/acmenc.c: + * sys/applemedia/plugin.m: + * sys/msdk/gstmsdk.c: + * sys/vdpau/gstvdpau.c: + * sys/winks/gstksvideosrc.c: + Fix up package name and origin in some plugins + +2017-05-18 10:36:50 -0700 Scott D Phillips + + * sys/msdk/gstmsdkenc.c: + msdk: enc: set pts and dts, fix inverted sync_point flag + Set the pts and dts on the frame that we receive from the msdk. + Also fix the inverted logic in setting sync points, previously we + were marking all frames as sync points except IDRs. + https://bugzilla.gnome.org/show_bug.cgi?id=782801 + +2017-06-01 01:15:05 +0000 Jeremy Hiatt + + * gst-libs/gst/gl/gstglutils.c: + glutils: Fix GValue leak in gst_gl_value_set_texture_target_from_mask() + +2017-06-06 14:58:55 -0400 Thibault Saunier + + * gst/rawparse/gstvideoparse.c: + videoparse: Fix property handling + Usage of GstValueArray was wrong and frame-stride does not exist in + rawvideoparse + +2017-06-01 16:00:50 +0200 Wim Taymans + + * gst/pcapparse/gstpcapparse.c: + pcapparse: endianness fix + Also swap the linktype after we detected that we need to do + byteswapping. Fixes a problem with reading pcap files generated + on a machine with different endianness. + +2017-05-25 11:05:47 +0800 Haihua Hu + + * gst-libs/gst/gl/gstglformat.c: + * gst-libs/gst/gl/gstglmemory.c: + * gst-libs/gst/gl/gstglmemorypbo.c: + * gst-libs/gst/gl/gstglrenderbuffer.c: + glformat: fix the usage of GST_GL_RGB565 + GL_RGB565 is sized internal glformat, the corresponding glformat + should be GL_RGB and type is GL_UNSIGNED_SHORT_565. Otherwise will + return GL_INVALID_ENUM when creating texture. + https://bugzilla.gnome.org/show_bug.cgi?id=783066 + +2017-05-25 16:42:03 +0200 Edward Hervey + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: Don't create invalid event + tags could potentially be NULL + +2016-12-02 17:51:57 +1100 Matthew Waters + + * gst-libs/gst/adaptivedemux/gstadaptivedemux.c: + adaptivedemux: retry download MAX_DOWNLOAD_RETRY_COUNT times before erroring + What we want is to retry downloading the fragment on 4xx/5xx errors + however returning EOS will cause waiting for a manifest update for live + (which may be a really long time) or stop everything for non-live. + Change that to only return EOS/ERROR once we've reached the error limit. + https://bugzilla.gnome.org/show_bug.cgi?id=776609 + +2017-02-23 15:42:08 -0800 fvanzile + + * gst-libs/gst/gl/gstglcontext.c: + glcontext: keep a ref to the active thread + With the macOS/iOS implementations, the active thread can change + multiple times over the life of a pipeline which would expose a race in + the thread tracking. + Fix by taking a ref on the active thread while the context is active. + https://bugzilla.gnome.org/show_bug.cgi?id=779202 + +2017-05-18 15:23:14 +0300 Simon Himmelbauer + + * ext/qt/gstqtglutility.cc: + qt: Use GST_GL_HAVE_PLATFORM_CGL instead of GST_GL_HAVE_PLATFORM_COCOA + The latter is not used/available anymore since years. Also fix a typo + in the include path for the Cocoa GL display header. + +2017-05-18 14:34:04 +0300 Sebastian Dröge + + * sys/androidmedia/gstamcvideodec.c: + amcvideodec: Unref downstream caps after usage + https://bugzilla.gnome.org/show_bug.cgi?id=782771 + +2017-05-18 11:42:17 +0300 Sebastian Dröge + + * gst/videoparsers/gsth265parse.c: + h265parse: Fix calculation of codec_data buffer size + +2017-05-17 16:26:38 +0800 Haihua Hu + + * gst-libs/gst/gl/gstglformat.c: + glformat: Add missing GST_GL_RGB565 in some switch statement + https://bugzilla.gnome.org/show_bug.cgi?id=782736 + +2017-05-10 15:59:42 +0200 Sebastian Dröge + + * sys/decklink/gstdecklink.cpp: + decklink: Always use the video stream time for audio too + The audio packet times can be completely unrelated to the video stream + time, depending on the card. While this looks like a bug in the driver, + just always using the video stream time (which is correct) works as a + workaround for now. + +2017-05-17 17:38:01 +0300 Sebastian Dröge + + * gst-libs/gst/gl/cocoa/Makefile.am: + cocoa: Install gstgldisplay_cocoa.h + It's needed by e.g. qmlglsink. + +2017-05-09 23:59:04 +0200 Carlos Rafael Giani + + * gst-libs/gst/gl/gstgldisplay.c: + * gst-libs/gst/gl/gstglwindow.c: + gl/viv-fb: Fix user-choice string comparisons + https://bugzilla.gnome.org/show_bug.cgi?id=782921 + +2017-05-15 16:37:14 +0300 Sebastian Dröge + + * sys/decklink/gstdecklinkvideosink.cpp: + decklinkvideosink: Copy min(gstreamer_stride, decklink_stride) per line + Instead of just bpp * width, which might be more than we can copy. + +2017-05-12 10:01:10 +0100 Vincent Penquerc'h + + * gst/videoparsers/gsth264parse.c: + h264parse: fix caps leak in renegotiation + +2017-05-12 10:00:56 +0100 Vincent Penquerc'h + + * gst/videoparsers/gsth265parse.c: + h265parse: fix caps leak in renegotiation + +2017-05-09 10:32:05 +0100 Vincent Penquerc'h + + * gst/videoparsers/gstjpeg2000parse.c: + jpeg2000parse: fix negotiation with j2c and jpc both allowed upstream + If upstream supports both, but downstream supports only jpc, j2c + would have been selected as the first in the caps. + https://bugzilla.gnome.org/show_bug.cgi?id=782221 + +2017-05-09 16:06:10 +0530 Nirbheek Chauhan + + * sys/directsound/gstdirectsoundsrc.c: + * sys/directsound/gstdirectsoundsrc.h: + directsoundsrc: Use a GstClockID to wait instead of Sleep() + The main advantage is that our sleeps can be interrupted in case of + an src_reset(). Earlier, we would need to wait for a read to complete + before we could do a reset, which could take a long time. + https://bugzilla.gnome.org/show_bug.cgi?id=781249 + +2017-05-09 11:25:20 +0200 Sebastian Dröge + + * gst-libs/gst/gl/gstglmemory.c: + glmemory: Only use glDrawBuffer if available + Otherwise fall back to glDrawBuffers. Also check if glReadBuffer exists + before using it. + glDrawBuffer does not exist for GLES, only glDrawBuffers does. + https://bugzilla.gnome.org/show_bug.cgi?id=782376 + +2017-05-08 11:01:39 -0700 Scott D Phillips + + * meson.build: + meson: Ignore msvc warnings in C++ as well + We were only ignoring the listed msvc warnings for C language + files and not C++. This was working by the coincidence that we did + not have any instances of these warnings in C++ files. Lately the + build of decklink has been fixed on windows, and it has an + instance of one of these warnings in a C++ file. + https://bugzilla.gnome.org/show_bug.cgi?id=782345 + +2017-05-05 04:30:59 +0530 Nirbheek Chauhan + + * sys/decklink/gstdecklink.cpp: + * sys/decklink/gstdecklink.h: + * sys/decklink/meson.build: + decklink: Fix linking on MinGW + MinGW does not provide comsupp.lib, so there's no implementation of + _com_util::ConvertBSTRToString. Use a fallback implementation that + uses wcstombs() instead. + On MinGW we also truncate the name to 100 chars which should be fine. + +2017-05-05 04:02:29 +0530 Nirbheek Chauhan + + * sys/decklink/gstdecklink.h: + decklink: Fix building on Windows + BSTR is already a pointer to a string + +2017-05-05 04:01:38 +0530 Nirbheek Chauhan + + * sys/decklink/meson.build: + meson: Fix decklink building on Windows + Needs comsuppw, and does not need libdl or pthread. + +2017-05-03 22:50:27 +0530 Nirbheek Chauhan + + * sys/directsound/gstdirectsoundsrc.c: + * sys/directsound/gstdirectsoundsrc.h: + directsoundsrc: Use latency-time and buffer-time settings + Earlier, the plugin was ignoring those settings and blindly setting + buffer-time to 2 seconds and latency-time to 200ms, which forced all + pipelines to have a minimum latency of 200ms + sink latency. + The values of segsize and segtotal were also not derived correctly. + Now we obey these values, and you can get close to the previous + behaviour by setting buffer-time and latency-time manually. Note that + they are set in microseconds. + As a consequence, when we haven't received enough data from the + device, we now sleep for a time proportional to the data remaining. + However, Directsound is a deprecated API so it maintains its own + software ringbuffer which updates at arbitrary intervals. Hence we + might have to wait a full segsize to get the last 10% of data. To + avoid tight loops, we clamp our sleep floor at 10ms. + In my testing, this keeps the wakeups not-too-high (proportional to + the latency-time set on the source). Further improvements should be + made by fixing the WASAPI audio source plugin instead of this. + Directsound is deprecated and as the comments explain, it is + impossible to get low latency, decent quality, or good performance + from it. + Based on a patch by Sebastian Dröge + https://bugzilla.gnome.org/show_bug.cgi?id=781249 + +2017-04-20 20:18:30 -0700 Scott D Phillips + + * sys/msdk/dummy.cpp: + * sys/msdk/meson.build: + msdk: use a dummy.cpp file to force c++ linking + Add a dummy.cpp file to force c++ linking as required by libmfx.a. + I'm certain that the meson build worked for me in the past, but I + have no idea how it could have, looking at it now. + https://bugzilla.gnome.org/show_bug.cgi?id=781561 + === release 1.12.0 === -2017-05-04 Sebastian Dröge +2017-05-04 15:39:05 +0300 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.12.0 + * docs/plugins/gst-plugins-bad-plugins.args: + * docs/plugins/inspect/plugin-accurip.xml: + * docs/plugins/inspect/plugin-adpcmdec.xml: + * docs/plugins/inspect/plugin-adpcmenc.xml: + * docs/plugins/inspect/plugin-aiff.xml: + * docs/plugins/inspect/plugin-asfmux.xml: + * docs/plugins/inspect/plugin-assrender.xml: + * docs/plugins/inspect/plugin-audiofxbad.xml: + * docs/plugins/inspect/plugin-audiomixer.xml: + * docs/plugins/inspect/plugin-audiovisualizers.xml: + * docs/plugins/inspect/plugin-autoconvert.xml: + * docs/plugins/inspect/plugin-bayer.xml: + * docs/plugins/inspect/plugin-bluez.xml: + * docs/plugins/inspect/plugin-bs2b.xml: + * docs/plugins/inspect/plugin-bz2.xml: + * docs/plugins/inspect/plugin-camerabin.xml: + * docs/plugins/inspect/plugin-chromaprint.xml: + * docs/plugins/inspect/plugin-coloreffects.xml: + * docs/plugins/inspect/plugin-compositor.xml: + * docs/plugins/inspect/plugin-curl.xml: + * docs/plugins/inspect/plugin-dashdemux.xml: + * docs/plugins/inspect/plugin-debugutilsbad.xml: + * docs/plugins/inspect/plugin-decklink.xml: + * docs/plugins/inspect/plugin-dtls.xml: + * docs/plugins/inspect/plugin-dtsdec.xml: + * docs/plugins/inspect/plugin-dvb.xml: + * docs/plugins/inspect/plugin-dvbsuboverlay.xml: + * docs/plugins/inspect/plugin-dvdspu.xml: + * docs/plugins/inspect/plugin-faac.xml: + * docs/plugins/inspect/plugin-faad.xml: + * docs/plugins/inspect/plugin-fbdevsink.xml: + * docs/plugins/inspect/plugin-festival.xml: + * docs/plugins/inspect/plugin-fieldanalysis.xml: + * docs/plugins/inspect/plugin-flite.xml: + * docs/plugins/inspect/plugin-fluidsynthmidi.xml: + * docs/plugins/inspect/plugin-freeverb.xml: + * docs/plugins/inspect/plugin-frei0r.xml: + * docs/plugins/inspect/plugin-gaudieffects.xml: + * docs/plugins/inspect/plugin-gdp.xml: + * docs/plugins/inspect/plugin-geometrictransform.xml: + * docs/plugins/inspect/plugin-gmedec.xml: + * docs/plugins/inspect/plugin-gsm.xml: + * docs/plugins/inspect/plugin-gtk.xml: + * docs/plugins/inspect/plugin-hls.xml: + * docs/plugins/inspect/plugin-id3tag.xml: + * docs/plugins/inspect/plugin-inter.xml: + * docs/plugins/inspect/plugin-interlace.xml: + * docs/plugins/inspect/plugin-ivfparse.xml: + * docs/plugins/inspect/plugin-ivtc.xml: + * docs/plugins/inspect/plugin-jp2kdecimator.xml: + * docs/plugins/inspect/plugin-jpegformat.xml: + * docs/plugins/inspect/plugin-kate.xml: + * docs/plugins/inspect/plugin-kms.xml: + * docs/plugins/inspect/plugin-ladspa.xml: + * docs/plugins/inspect/plugin-midi.xml: + * docs/plugins/inspect/plugin-mms.xml: + * docs/plugins/inspect/plugin-modplug.xml: + * docs/plugins/inspect/plugin-mpeg2enc.xml: + * docs/plugins/inspect/plugin-mpegpsdemux.xml: + * docs/plugins/inspect/plugin-mpegpsmux.xml: + * docs/plugins/inspect/plugin-mpegtsdemux.xml: + * docs/plugins/inspect/plugin-mpegtsmux.xml: + * docs/plugins/inspect/plugin-mplex.xml: + * docs/plugins/inspect/plugin-mxf.xml: + * docs/plugins/inspect/plugin-netsim.xml: + * docs/plugins/inspect/plugin-ofa.xml: + * docs/plugins/inspect/plugin-openal.xml: + * docs/plugins/inspect/plugin-opencv.xml: + * docs/plugins/inspect/plugin-openexr.xml: + * docs/plugins/inspect/plugin-opengl.xml: + * docs/plugins/inspect/plugin-openjpeg.xml: + * docs/plugins/inspect/plugin-opusparse.xml: + * docs/plugins/inspect/plugin-pcapparse.xml: + * docs/plugins/inspect/plugin-pnm.xml: + * docs/plugins/inspect/plugin-qt.xml: + * docs/plugins/inspect/plugin-removesilence.xml: + * docs/plugins/inspect/plugin-resindvd.xml: + * docs/plugins/inspect/plugin-rfbsrc.xml: + * docs/plugins/inspect/plugin-rsvg.xml: + * docs/plugins/inspect/plugin-rtmp.xml: + * docs/plugins/inspect/plugin-rtponvif.xml: + * docs/plugins/inspect/plugin-schro.xml: + * docs/plugins/inspect/plugin-sdpelem.xml: + * docs/plugins/inspect/plugin-segmentclip.xml: + * docs/plugins/inspect/plugin-shm.xml: + * docs/plugins/inspect/plugin-smooth.xml: + * docs/plugins/inspect/plugin-smoothstreaming.xml: + * docs/plugins/inspect/plugin-sndfile.xml: + * docs/plugins/inspect/plugin-soundtouch.xml: + * docs/plugins/inspect/plugin-spandsp.xml: + * docs/plugins/inspect/plugin-speed.xml: + * docs/plugins/inspect/plugin-srtp.xml: + * docs/plugins/inspect/plugin-stereo.xml: + * docs/plugins/inspect/plugin-subenc.xml: + * docs/plugins/inspect/plugin-teletext.xml: + * docs/plugins/inspect/plugin-ttmlsubs.xml: + * docs/plugins/inspect/plugin-uvch264.xml: + * docs/plugins/inspect/plugin-vcdsrc.xml: + * docs/plugins/inspect/plugin-videofiltersbad.xml: + * docs/plugins/inspect/plugin-videoframe_audiolevel.xml: + * docs/plugins/inspect/plugin-videoparsersbad.xml: + * docs/plugins/inspect/plugin-videosignal.xml: + * docs/plugins/inspect/plugin-vmnc.xml: + * docs/plugins/inspect/plugin-voaacenc.xml: + * docs/plugins/inspect/plugin-voamrwbenc.xml: + * docs/plugins/inspect/plugin-waylandsink.xml: + * docs/plugins/inspect/plugin-webp.xml: + * docs/plugins/inspect/plugin-webrtcdsp.xml: + * docs/plugins/inspect/plugin-wildmidi.xml: + * docs/plugins/inspect/plugin-x265.xml: + * docs/plugins/inspect/plugin-y4mdec.xml: + * docs/plugins/inspect/plugin-yadif.xml: + * docs/plugins/inspect/plugin-zbar.xml: + * gst-plugins-bad.doap: + * meson.build: + Release 1.12.0 + +2017-05-04 15:10:52 +0300 Sebastian Dröge + + * po/af.po: + * po/az.po: + * po/bg.po: + * po/ca.po: + * po/cs.po: + * po/da.po: + * po/de.po: + * po/el.po: + * po/en_GB.po: + * po/eo.po: + * po/es.po: + * po/eu.po: + * po/fi.po: + * po/fr.po: + * po/fur.po: + * po/gl.po: + * po/hr.po: + * po/hu.po: + * po/id.po: + * po/it.po: + * po/ja.po: + * po/ky.po: + * po/lt.po: + * po/lv.po: + * po/mt.po: + * po/nb.po: + * po/nl.po: + * po/or.po: + * po/pl.po: + * po/pt_BR.po: + * po/ro.po: + * po/ru.po: + * po/sk.po: + * po/sl.po: + * po/sq.po: + * po/sr.po: + * po/sv.po: + * po/tr.po: + * po/uk.po: + * po/vi.po: + * po/zh_CN.po: + Update .po files 2017-05-04 13:47:37 +0300 Sebastian Dröge diff --git a/NEWS b/NEWS index 74fb1eaeb..ef19baca2 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ # GStreamer 1.12 Release Notes GStreamer 1.12.0 was originally released on 4th May 2017. +The latest bug-fix release in the 1.12 series is [1.12.1](#1.12.1) and was +released on 20 June 2017. The GStreamer team is proud to announce a new major feature release in the stable 1.x API series of your favourite cross-platform multimedia framework! @@ -11,7 +13,7 @@ improvements. See [https://gstreamer.freedesktop.org/releases/1.12/][latest] for the latest version of this document. -*Last updated: Thursday 4 May 2017, 11:00 UTC [(log)][gitlog]* +*Last updated: Tuesday 20 June 2017, 07:30 UTC [(log)][gitlog]* [latest]: https://gstreamer.freedesktop.org/releases/1.12/ [gitlog]: https://cgit.freedesktop.org/gstreamer/www/log/src/htdocs/releases/1.12/release-notes-1.12.md @@ -228,7 +230,8 @@ improvements. - `waylandsink` can now take DMAbuf buffers as input in the presence of a compatible Wayland compositor. This enables zero-copy transfer - from a decoder or source that outputs DMAbuf. + from a decoder or source that outputs DMAbuf. It will also set surface + opacity hint to allow better rendering optimization in the compositor. - `udpsrc` can be bound to more than one interface when joining a multicast group, this is done by giving a comma separate list of @@ -453,6 +456,11 @@ New API has been added to: - `interleave` now supports > 64 channels. +- OpenCV elements, `grabcut` and `retinex` has been ported to use + `GstOpencvVideoFilter` base class, increasing code reuse and fixing buffer + map/unmap issues. Redundant copie of images has been removed in `edgedetect`, + `cvlaplace` and `cvsobel`. This comes with various cleanup and Meson support. + ### OpenGL integration - As usual the GStreamer OpenGL integration library has seen numerous @@ -586,6 +594,12 @@ New API has been added to: - New testsuite for running various test scenarios on the DASH-IF test vectors +## GStreamer Python Bindings + +- Overrides has been added for IntRange, Int64Range, DoubleRange, + FractionRange, Array and List. This finally enables Python programmers + to fully read and write GstCaps objects. + ## Build and Dependencies - Meson build files are now disted in tarballs, for jhbuild and so distro @@ -595,7 +609,7 @@ New API has been added to: - Some plugin filenames have been changed to match the plugin names: for example the file name of the `encoding` plugin in gst-plugins-base containing the `encodebin` element was `libgstencodebin.so` and has been changed to - `libgstencodebin.so`. This affects only a handful of plugins across modules. + `libgstencoding.so`. This affects only a handful of plugins across modules. **Developers who install GStreamer from source and just do `make install`** **after updating the source code, without doing `make uninstall` first, will** @@ -705,6 +719,38 @@ is a stable branch. 1.12.0 was released on 4th May 2017. + + +### 1.12.1 + +The first 1.10 bug-fix release (1.12.1) was released on 20 June 2017. +This release only contains bugfixes and it should be safe to update from 1.12.x. + +#### Major bugfixes in 1.12.1 + + - Various fixes for crashes, assertions, deadlocks and memory leaks + - Fix for regression when seeking to the end of ASF files + - Fix for regression in (raw)videoparse that caused it to omit video metadata + - Fix for regression in discoverer that made it show more streams than + actually available + - Numerous bugfixes to the adaptive demuxer base class and the DASH demuxer + - Various playbin3/urisourcebin related bugfixes + - Vivante DirectVIV (imx6) texture uploader works with single-plane (e.g. + RGB) video formats now + - Intel Media SDK encoder now outputs valid PTS and keyframe flags + - OpenJPEG2000 plugin can be loaded again on MacOS and correctly displays + 8 bit RGB images now + - Fixes to DirectSound source/sink for high CPU usage and wrong + latency/buffer size calculations + - gst-libav was updated to ffmpeg n3.3.2 + - ... and many, many more! + +For a full list of bugfixes see [Bugzilla][buglist-1.12.1]. Note that this is +not the full list of changes. For the full list of changes please refer to the +GIT logs or ChangeLogs of the particular modules. + +[buglist-1.12.1]: https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&classification=Platform&limit=0&list_id=225693&order=bug_id&product=GStreamer&query_format=advanced&resolution=FIXED&target_milestone=1.12.1 + ## Known Issues - The `webrtcdsp` element is currently not shipped as part of the Windows @@ -714,8 +760,8 @@ is a stable branch. ## Schedule for 1.14 -Our next major feature release will be 1.14, and 1.11 will be the unstable -development version leading up to the stable 1.12 release. The development +Our next major feature release will be 1.14, and 1.13 will be the unstable +development version leading up to the stable 1.14 release. The development of 1.13/1.14 will happen in the git master branch. The plan for the 1.14 development cycle is yet to be confirmed, but it is diff --git a/RELEASE b/RELEASE index 88240d91f..866cc48cf 100644 --- a/RELEASE +++ b/RELEASE @@ -1,16 +1,15 @@ -Release notes for GStreamer Bad Plugins 1.12.0 +Release notes for GStreamer Bad Plugins 1.12.1 -The GStreamer team is pleased to announce the first release in the stable 1.12 -release series. The 1.12 release series is adding new features on top of the -1.0, 1.2, 1.4, 1.6, 1.8 and 1.10 series and is part of the API and ABI-stable -1.x release series of the GStreamer multimedia framework. +The GStreamer team is proud to announce the first bugfix release in the stable +1.12 release series of your favourite cross-platform multimedia framework! -Full release notes can be found here +This release only contains bugfixes and it is safe to update from 1.12.x. For a +full list of bugfixes see Bugzilla. -Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. +See /releases/1.12/ for the full release notes. "That an accusation?" @@ -61,12 +60,28 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release + * 783028 : gstmpdparser : Crash when playing some of the Dash LIVE URL's with Gstreamer v1.12 * 773681 : directsoundsink: High cpu usage on windows x86 - * 764947 : autodetect: bring element down to NULL on a successful choice - * 780976 : webrtcdsp: do not fail to start if webrtcechoprobe is not found - * 782046 : glupload: passthrough composition caps features in directviv upload - * 782119 : meson: ext/hls/libgsthls.so needs -lm - * 782078 : qtkitvideosrc: Removed in order to avoid obsolete APIs + * 776609 : adaptivedemux: actually retry on download errors + * 779202 : ref counting issue fix for Context in gst-libs/gst/gl/gstglcontext.c + * 781249 : directsoundsrc: Correctly calculate segsize and segtotal + * 781561 : msdk: meson build fails + * 782221 : jpeg2000parse does not play nice with rtpj2kpay + * 782352 : openjpeg: macOS dependencies not found / plugin is not loading + * 782376 : glmemory: Only use glDrawBuffer if available + * 782693 : dashdemux: Initialize sidx_position to GST_CLOCK_TIME_NONE + * 782697 : h265parse: Trailing zeroes in generated codec_data + * 782736 : glformat: Add missing GST_GL_RGB565 in some switch statement + * 782771 : gstamcvideodec: Memory leak on video decoder format set + * 782801 : msdk: enc: pts from the encoder are bogus, sync_point flag is bogus + * 782921 : gl: Fix viv-fb user_choice check + * 783066 : glformat: fix the usage of GST_GL_RGB565 + * 783075 : adaptivedemux: Check live seeking range more often + * 783255 : adaptivedemux: release the manifest lock ... + * 783256 : adaptivedemux: make sure to free all " old streams " + * 783401 : adaptivedemux: Clear " cancelled " on uridownloader before processing manifest + * 783626 : openjpegdec: artifacts when displaying RGB 8 bit images + * 781204 : rawvideoparse: Looses GstVideoMeta while doing memory alignment ==== Download ==== @@ -103,10 +118,23 @@ subscribe to the gstreamer-devel list. Contributors to this release - * George Kiagiadakis + * Aaron Boxer + * Carlos Rafael Giani + * Edward Hervey * Haihua Hu - * Josep Torra + * Jeremy Hiatt + * Mathieu Duponchelle + * Matthew Waters + * Nirbheek Chauhan + * Reynaldo H. Verdejo Pinochet + * Scott D Phillips * Sebastian Dröge + * Seungha Yang + * Simon Himmelbauer + * Thiago Santos + * Thibault Saunier * Tim-Philipp Müller - * Ting-Wei Lan + * Vincent Penquerc'h + * Wim Taymans + * fvanzile   \ No newline at end of file diff --git a/configure.ac b/configure.ac index b0a5b2a4f..c5719aaa0 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.69]) dnl initialize autoconf dnl when going to/from release please set the nano (fourth number) right ! dnl releases only do Wall, git and prerelease does Werror too -AC_INIT([GStreamer Bad Plug-ins],[1.12.0],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad]) +AC_INIT([GStreamer Bad Plug-ins],[1.12.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad]) AG_GST_INIT @@ -51,7 +51,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0 dnl - interfaces added -> increment AGE dnl - interfaces removed -> AGE = 0 dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 1200, 0, 1200) +AS_LIBTOOL(GST, 1201, 0, 1201) dnl *** required versions of GStreamer stuff *** GST_REQ=1.12.0 diff --git a/docs/plugins/inspect/plugin-accurip.xml b/docs/plugins/inspect/plugin-accurip.xml index c1529323a..84d8935e0 100644 --- a/docs/plugins/inspect/plugin-accurip.xml +++ b/docs/plugins/inspect/plugin-accurip.xml @@ -3,7 +3,7 @@ Computes an AccurateRip CRC ../../gst/accurip/.libs/libgstaccurip.so libgstaccurip.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-adpcmdec.xml b/docs/plugins/inspect/plugin-adpcmdec.xml index b590bd828..0456f0beb 100644 --- a/docs/plugins/inspect/plugin-adpcmdec.xml +++ b/docs/plugins/inspect/plugin-adpcmdec.xml @@ -3,7 +3,7 @@ ADPCM decoder ../../gst/adpcmdec/.libs/libgstadpcmdec.so libgstadpcmdec.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-adpcmenc.xml b/docs/plugins/inspect/plugin-adpcmenc.xml index 2b7ebb8a2..97e505a57 100644 --- a/docs/plugins/inspect/plugin-adpcmenc.xml +++ b/docs/plugins/inspect/plugin-adpcmenc.xml @@ -3,7 +3,7 @@ ADPCM encoder ../../gst/adpcmenc/.libs/libgstadpcmenc.so libgstadpcmenc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-aiff.xml b/docs/plugins/inspect/plugin-aiff.xml index 745abf198..fbe7446d6 100644 --- a/docs/plugins/inspect/plugin-aiff.xml +++ b/docs/plugins/inspect/plugin-aiff.xml @@ -3,7 +3,7 @@ Create and parse Audio Interchange File Format (AIFF) files ../../gst/aiff/.libs/libgstaiff.so libgstaiff.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-asfmux.xml b/docs/plugins/inspect/plugin-asfmux.xml index ced68343d..bdd18e3a7 100644 --- a/docs/plugins/inspect/plugin-asfmux.xml +++ b/docs/plugins/inspect/plugin-asfmux.xml @@ -3,7 +3,7 @@ ASF Muxer Plugin ../../gst/asfmux/.libs/libgstasfmux.so libgstasfmux.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-assrender.xml b/docs/plugins/inspect/plugin-assrender.xml index a051705e1..6d6851a33 100644 --- a/docs/plugins/inspect/plugin-assrender.xml +++ b/docs/plugins/inspect/plugin-assrender.xml @@ -3,7 +3,7 @@ ASS/SSA subtitle renderer ../../ext/assrender/.libs/libgstassrender.so libgstassrender.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiofxbad.xml b/docs/plugins/inspect/plugin-audiofxbad.xml index b6c8cba3d..11ba8a3ff 100644 --- a/docs/plugins/inspect/plugin-audiofxbad.xml +++ b/docs/plugins/inspect/plugin-audiofxbad.xml @@ -3,7 +3,7 @@ Audio filters from gst-plugins-bad ../../gst/audiofxbad/.libs/libgstaudiofxbad.so libgstaudiofxbad.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-audiomixer.xml b/docs/plugins/inspect/plugin-audiomixer.xml index 611bf7429..7a6995e84 100644 --- a/docs/plugins/inspect/plugin-audiomixer.xml +++ b/docs/plugins/inspect/plugin-audiomixer.xml @@ -3,7 +3,7 @@ Mixes multiple audio streams ../../gst/audiomixer/.libs/libgstaudiomixer.so libgstaudiomixer.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiovisualizers.xml b/docs/plugins/inspect/plugin-audiovisualizers.xml index fc8acbf87..29a8b7d4a 100644 --- a/docs/plugins/inspect/plugin-audiovisualizers.xml +++ b/docs/plugins/inspect/plugin-audiovisualizers.xml @@ -3,7 +3,7 @@ Creates video visualizations of audio input ../../gst/audiovisualizers/.libs/libgstaudiovisualizers.so libgstaudiovisualizers.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-autoconvert.xml b/docs/plugins/inspect/plugin-autoconvert.xml index 9900d0210..6568b3ed9 100644 --- a/docs/plugins/inspect/plugin-autoconvert.xml +++ b/docs/plugins/inspect/plugin-autoconvert.xml @@ -3,7 +3,7 @@ Selects convertor element based on caps ../../gst/autoconvert/.libs/libgstautoconvert.so libgstautoconvert.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-bayer.xml b/docs/plugins/inspect/plugin-bayer.xml index 3cbd0a364..ae7ea309d 100644 --- a/docs/plugins/inspect/plugin-bayer.xml +++ b/docs/plugins/inspect/plugin-bayer.xml @@ -3,7 +3,7 @@ Elements to convert Bayer images ../../gst/bayer/.libs/libgstbayer.so libgstbayer.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-bluez.xml b/docs/plugins/inspect/plugin-bluez.xml index 0ee0186eb..c07205709 100644 --- a/docs/plugins/inspect/plugin-bluez.xml +++ b/docs/plugins/inspect/plugin-bluez.xml @@ -3,7 +3,7 @@ Bluez-based bluetooth support ../../sys/bluez/.libs/libgstbluez.so libgstbluez.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-bs2b.xml b/docs/plugins/inspect/plugin-bs2b.xml index a2abe69ea..86482bf46 100644 --- a/docs/plugins/inspect/plugin-bs2b.xml +++ b/docs/plugins/inspect/plugin-bs2b.xml @@ -3,7 +3,7 @@ Improve headphone listening of stereo audio recordsusing the bs2b library. ../../ext/bs2b/.libs/libgstbs2b.so libgstbs2b.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-bz2.xml b/docs/plugins/inspect/plugin-bz2.xml index a50508d4e..b160cc017 100644 --- a/docs/plugins/inspect/plugin-bz2.xml +++ b/docs/plugins/inspect/plugin-bz2.xml @@ -3,7 +3,7 @@ Compress or decompress streams ../../ext/bz2/.libs/libgstbz2.so libgstbz2.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-camerabin.xml b/docs/plugins/inspect/plugin-camerabin.xml index c45fb5b55..c5377a0f1 100644 --- a/docs/plugins/inspect/plugin-camerabin.xml +++ b/docs/plugins/inspect/plugin-camerabin.xml @@ -3,7 +3,7 @@ Take image snapshots and record movies from camera ../../gst/camerabin2/.libs/libgstcamerabin.so libgstcamerabin.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-chromaprint.xml b/docs/plugins/inspect/plugin-chromaprint.xml index d2ef2cad5..8a57c80db 100644 --- a/docs/plugins/inspect/plugin-chromaprint.xml +++ b/docs/plugins/inspect/plugin-chromaprint.xml @@ -3,7 +3,7 @@ Calculate Chromaprint fingerprint from audio files ../../ext/chromaprint/.libs/libgstchromaprint.so libgstchromaprint.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-coloreffects.xml b/docs/plugins/inspect/plugin-coloreffects.xml index 3df3f34f5..0ae1821bd 100644 --- a/docs/plugins/inspect/plugin-coloreffects.xml +++ b/docs/plugins/inspect/plugin-coloreffects.xml @@ -3,7 +3,7 @@ Color Look-up Table filters ../../gst/coloreffects/.libs/libgstcoloreffects.so libgstcoloreffects.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-compositor.xml b/docs/plugins/inspect/plugin-compositor.xml index 3738fda26..075415dcb 100644 --- a/docs/plugins/inspect/plugin-compositor.xml +++ b/docs/plugins/inspect/plugin-compositor.xml @@ -3,7 +3,7 @@ Compositor ../../gst/compositor/.libs/libgstcompositor.so libgstcompositor.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-curl.xml b/docs/plugins/inspect/plugin-curl.xml index d65fcf2ac..a72fef0cb 100644 --- a/docs/plugins/inspect/plugin-curl.xml +++ b/docs/plugins/inspect/plugin-curl.xml @@ -3,7 +3,7 @@ libcurl-based elements ../../ext/curl/.libs/libgstcurl.so libgstcurl.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dashdemux.xml b/docs/plugins/inspect/plugin-dashdemux.xml index e89ed1d4c..ba9ad2c23 100644 --- a/docs/plugins/inspect/plugin-dashdemux.xml +++ b/docs/plugins/inspect/plugin-dashdemux.xml @@ -3,7 +3,7 @@ DASH demuxer plugin ../../ext/dash/.libs/libgstdashdemux.so libgstdashdemux.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-debugutilsbad.xml b/docs/plugins/inspect/plugin-debugutilsbad.xml index bbb1059aa..5e0c1953d 100644 --- a/docs/plugins/inspect/plugin-debugutilsbad.xml +++ b/docs/plugins/inspect/plugin-debugutilsbad.xml @@ -3,7 +3,7 @@ Collection of elements that may or may not be useful for debugging ../../gst/debugutils/.libs/libgstdebugutilsbad.so libgstdebugutilsbad.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-decklink.xml b/docs/plugins/inspect/plugin-decklink.xml index 281842294..b27981927 100644 --- a/docs/plugins/inspect/plugin-decklink.xml +++ b/docs/plugins/inspect/plugin-decklink.xml @@ -3,7 +3,7 @@ Blackmagic Decklink plugin ../../sys/decklink/.libs/libgstdecklink.so libgstdecklink.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-dtls.xml b/docs/plugins/inspect/plugin-dtls.xml index 6b22155c6..d4c68245a 100644 --- a/docs/plugins/inspect/plugin-dtls.xml +++ b/docs/plugins/inspect/plugin-dtls.xml @@ -3,7 +3,7 @@ DTLS decoder and encoder plugins ../../ext/dtls/.libs/libgstdtls.so libgstdtls.so - 1.12.0 + 1.12.1 BSD gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dtsdec.xml b/docs/plugins/inspect/plugin-dtsdec.xml index 619be0528..5899a30d1 100644 --- a/docs/plugins/inspect/plugin-dtsdec.xml +++ b/docs/plugins/inspect/plugin-dtsdec.xml @@ -3,7 +3,7 @@ Decodes DTS audio streams ../../ext/dts/.libs/libgstdtsdec.so libgstdtsdec.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvb.xml b/docs/plugins/inspect/plugin-dvb.xml index 9b51f5319..912afac03 100644 --- a/docs/plugins/inspect/plugin-dvb.xml +++ b/docs/plugins/inspect/plugin-dvb.xml @@ -3,7 +3,7 @@ DVB elements ../../sys/dvb/.libs/libgstdvb.so libgstdvb.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvbsuboverlay.xml b/docs/plugins/inspect/plugin-dvbsuboverlay.xml index 7a471c677..a9d17d2dc 100644 --- a/docs/plugins/inspect/plugin-dvbsuboverlay.xml +++ b/docs/plugins/inspect/plugin-dvbsuboverlay.xml @@ -3,7 +3,7 @@ DVB subtitle renderer ../../gst/dvbsuboverlay/.libs/libgstdvbsuboverlay.so libgstdvbsuboverlay.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dvdspu.xml b/docs/plugins/inspect/plugin-dvdspu.xml index 165f9bd10..421189949 100644 --- a/docs/plugins/inspect/plugin-dvdspu.xml +++ b/docs/plugins/inspect/plugin-dvdspu.xml @@ -3,7 +3,7 @@ DVD Sub-picture Overlay element ../../gst/dvdspu/.libs/libgstdvdspu.so libgstdvdspu.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-faac.xml b/docs/plugins/inspect/plugin-faac.xml index 63441564a..512a80ee8 100644 --- a/docs/plugins/inspect/plugin-faac.xml +++ b/docs/plugins/inspect/plugin-faac.xml @@ -3,7 +3,7 @@ Free AAC Encoder (FAAC) ../../ext/faac/.libs/libgstfaac.so libgstfaac.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-faad.xml b/docs/plugins/inspect/plugin-faad.xml index a8607d305..6ef82a5e5 100644 --- a/docs/plugins/inspect/plugin-faad.xml +++ b/docs/plugins/inspect/plugin-faad.xml @@ -3,7 +3,7 @@ Free AAC Decoder (FAAD) ../../ext/faad/.libs/libgstfaad.so libgstfaad.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-fbdevsink.xml b/docs/plugins/inspect/plugin-fbdevsink.xml index 94a8f5f2b..238341cfe 100644 --- a/docs/plugins/inspect/plugin-fbdevsink.xml +++ b/docs/plugins/inspect/plugin-fbdevsink.xml @@ -3,7 +3,7 @@ Linux framebuffer video sink ../../sys/fbdev/.libs/libgstfbdevsink.so libgstfbdevsink.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-festival.xml b/docs/plugins/inspect/plugin-festival.xml index 6e36febf1..ca51ad4f9 100644 --- a/docs/plugins/inspect/plugin-festival.xml +++ b/docs/plugins/inspect/plugin-festival.xml @@ -3,7 +3,7 @@ Synthesizes plain text into audio ../../gst/festival/.libs/libgstfestival.so libgstfestival.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-fieldanalysis.xml b/docs/plugins/inspect/plugin-fieldanalysis.xml index 8b006bc9e..eb9bd3aa4 100644 --- a/docs/plugins/inspect/plugin-fieldanalysis.xml +++ b/docs/plugins/inspect/plugin-fieldanalysis.xml @@ -3,11 +3,11 @@ Video field analysis ../../gst/fieldanalysis/.libs/libgstfieldanalysis.so libgstfieldanalysis.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin fieldanalysis diff --git a/docs/plugins/inspect/plugin-flite.xml b/docs/plugins/inspect/plugin-flite.xml index 41a71057c..1f3388702 100644 --- a/docs/plugins/inspect/plugin-flite.xml +++ b/docs/plugins/inspect/plugin-flite.xml @@ -3,7 +3,7 @@ Flite speech synthesizer plugin ../../ext/flite/.libs/libgstflite.so libgstflite.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-fluidsynthmidi.xml b/docs/plugins/inspect/plugin-fluidsynthmidi.xml index 47e685685..9f4432418 100644 --- a/docs/plugins/inspect/plugin-fluidsynthmidi.xml +++ b/docs/plugins/inspect/plugin-fluidsynthmidi.xml @@ -3,7 +3,7 @@ Fluidsynth MIDI Plugin ../../ext/fluidsynth/.libs/libgstfluidsynthmidi.so libgstfluidsynthmidi.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-freeverb.xml b/docs/plugins/inspect/plugin-freeverb.xml index b1de53436..da35197ca 100644 --- a/docs/plugins/inspect/plugin-freeverb.xml +++ b/docs/plugins/inspect/plugin-freeverb.xml @@ -3,7 +3,7 @@ Reverberation/room effect ../../gst/freeverb/.libs/libgstfreeverb.so libgstfreeverb.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-frei0r.xml b/docs/plugins/inspect/plugin-frei0r.xml index 3cd0da84c..da370e2e0 100644 --- a/docs/plugins/inspect/plugin-frei0r.xml +++ b/docs/plugins/inspect/plugin-frei0r.xml @@ -3,7 +3,7 @@ frei0r plugin library ../../gst/frei0r/.libs/libgstfrei0r.so libgstfrei0r.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gaudieffects.xml b/docs/plugins/inspect/plugin-gaudieffects.xml index a698c736e..ef6c979b2 100644 --- a/docs/plugins/inspect/plugin-gaudieffects.xml +++ b/docs/plugins/inspect/plugin-gaudieffects.xml @@ -3,11 +3,11 @@ Gaudi video effects. ../../gst/gaudieffects/.libs/libgstgaudieffects.so libgstgaudieffects.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin burn diff --git a/docs/plugins/inspect/plugin-gdp.xml b/docs/plugins/inspect/plugin-gdp.xml index 97f1bc4bc..ba430a64b 100644 --- a/docs/plugins/inspect/plugin-gdp.xml +++ b/docs/plugins/inspect/plugin-gdp.xml @@ -3,7 +3,7 @@ Payload/depayload GDP packets ../../gst/gdp/.libs/libgstgdp.so libgstgdp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-geometrictransform.xml b/docs/plugins/inspect/plugin-geometrictransform.xml index 094d626a4..3282f9b33 100644 --- a/docs/plugins/inspect/plugin-geometrictransform.xml +++ b/docs/plugins/inspect/plugin-geometrictransform.xml @@ -3,7 +3,7 @@ Various geometric image transform elements ../../gst/geometrictransform/.libs/libgstgeometrictransform.so libgstgeometrictransform.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gmedec.xml b/docs/plugins/inspect/plugin-gmedec.xml index 627141bd0..cf5e6a746 100644 --- a/docs/plugins/inspect/plugin-gmedec.xml +++ b/docs/plugins/inspect/plugin-gmedec.xml @@ -3,7 +3,7 @@ GME Audio Decoder ../../ext/gme/.libs/libgstgme.so libgstgme.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gsm.xml b/docs/plugins/inspect/plugin-gsm.xml index 48b054243..6b909f746 100644 --- a/docs/plugins/inspect/plugin-gsm.xml +++ b/docs/plugins/inspect/plugin-gsm.xml @@ -3,7 +3,7 @@ GSM encoder/decoder ../../ext/gsm/.libs/libgstgsm.so libgstgsm.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gtk.xml b/docs/plugins/inspect/plugin-gtk.xml index a0cbe8075..3556961db 100644 --- a/docs/plugins/inspect/plugin-gtk.xml +++ b/docs/plugins/inspect/plugin-gtk.xml @@ -3,7 +3,7 @@ Gtk+ sink ../../ext/gtk/.libs/libgstgtk.so libgstgtk.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-hls.xml b/docs/plugins/inspect/plugin-hls.xml index c1441f61c..566223da6 100644 --- a/docs/plugins/inspect/plugin-hls.xml +++ b/docs/plugins/inspect/plugin-hls.xml @@ -3,7 +3,7 @@ HTTP Live Streaming (HLS) ../../ext/hls/.libs/libgsthls.so libgsthls.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-id3tag.xml b/docs/plugins/inspect/plugin-id3tag.xml index 46426a05c..9726504c8 100644 --- a/docs/plugins/inspect/plugin-id3tag.xml +++ b/docs/plugins/inspect/plugin-id3tag.xml @@ -3,7 +3,7 @@ ID3 v1 and v2 muxing plugin ../../gst/id3tag/.libs/libgstid3tag.so libgstid3tag.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-inter.xml b/docs/plugins/inspect/plugin-inter.xml index b629ef1c5..01b243be6 100644 --- a/docs/plugins/inspect/plugin-inter.xml +++ b/docs/plugins/inspect/plugin-inter.xml @@ -3,7 +3,7 @@ plugin for inter-pipeline communication ../../gst/inter/.libs/libgstinter.so libgstinter.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-interlace.xml b/docs/plugins/inspect/plugin-interlace.xml index 7dac73d7b..90b480d82 100644 --- a/docs/plugins/inspect/plugin-interlace.xml +++ b/docs/plugins/inspect/plugin-interlace.xml @@ -3,7 +3,7 @@ Create an interlaced video stream ../../gst/interlace/.libs/libgstinterlace.so libgstinterlace.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ivfparse.xml b/docs/plugins/inspect/plugin-ivfparse.xml index 791fd8ebc..f068509d2 100644 --- a/docs/plugins/inspect/plugin-ivfparse.xml +++ b/docs/plugins/inspect/plugin-ivfparse.xml @@ -3,7 +3,7 @@ IVF parser ../../gst/ivfparse/.libs/libgstivfparse.so libgstivfparse.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ivtc.xml b/docs/plugins/inspect/plugin-ivtc.xml index ec84247ba..f33245af8 100644 --- a/docs/plugins/inspect/plugin-ivtc.xml +++ b/docs/plugins/inspect/plugin-ivtc.xml @@ -3,7 +3,7 @@ Inverse Telecine ../../gst/ivtc/.libs/libgstivtc.so libgstivtc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-jp2kdecimator.xml b/docs/plugins/inspect/plugin-jp2kdecimator.xml index 9f14747d2..70d56126d 100644 --- a/docs/plugins/inspect/plugin-jp2kdecimator.xml +++ b/docs/plugins/inspect/plugin-jp2kdecimator.xml @@ -3,7 +3,7 @@ JPEG2000 decimator ../../gst/jp2kdecimator/.libs/libgstjp2kdecimator.so libgstjp2kdecimator.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-jpegformat.xml b/docs/plugins/inspect/plugin-jpegformat.xml index bc9ec4fbf..be0c6f8ca 100644 --- a/docs/plugins/inspect/plugin-jpegformat.xml +++ b/docs/plugins/inspect/plugin-jpegformat.xml @@ -3,7 +3,7 @@ JPEG interchange format plugin ../../gst/jpegformat/.libs/libgstjpegformat.so libgstjpegformat.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-kate.xml b/docs/plugins/inspect/plugin-kate.xml index 6ddf6c779..f3a746edd 100644 --- a/docs/plugins/inspect/plugin-kate.xml +++ b/docs/plugins/inspect/plugin-kate.xml @@ -3,7 +3,7 @@ Kate plugin ../../ext/kate/.libs/libgstkate.so libgstkate.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-kms.xml b/docs/plugins/inspect/plugin-kms.xml index de8e1ed60..11d7eb81b 100644 --- a/docs/plugins/inspect/plugin-kms.xml +++ b/docs/plugins/inspect/plugin-kms.xml @@ -3,7 +3,7 @@ Video sink using the Linux kernel mode setting API ../../sys/kms/.libs/libgstkms.so libgstkms.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ladspa.xml b/docs/plugins/inspect/plugin-ladspa.xml index e12112e13..60870d43b 100644 --- a/docs/plugins/inspect/plugin-ladspa.xml +++ b/docs/plugins/inspect/plugin-ladspa.xml @@ -3,7 +3,7 @@ LADSPA plugin ../../ext/ladspa/.libs/libgstladspa.so libgstladspa.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-midi.xml b/docs/plugins/inspect/plugin-midi.xml index e5ab21107..60373d626 100644 --- a/docs/plugins/inspect/plugin-midi.xml +++ b/docs/plugins/inspect/plugin-midi.xml @@ -3,7 +3,7 @@ Parse MIDI files ../../gst/midi/.libs/libgstmidi.so libgstmidi.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mms.xml b/docs/plugins/inspect/plugin-mms.xml index b3153242a..82d45f80f 100644 --- a/docs/plugins/inspect/plugin-mms.xml +++ b/docs/plugins/inspect/plugin-mms.xml @@ -3,7 +3,7 @@ Microsoft Multi Media Server streaming protocol support ../../ext/libmms/.libs/libgstmms.so libgstmms.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-modplug.xml b/docs/plugins/inspect/plugin-modplug.xml index f0ea416d1..e6fa9bd96 100644 --- a/docs/plugins/inspect/plugin-modplug.xml +++ b/docs/plugins/inspect/plugin-modplug.xml @@ -3,7 +3,7 @@ .MOD audio decoding ../../ext/modplug/.libs/libgstmodplug.so libgstmodplug.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpeg2enc.xml b/docs/plugins/inspect/plugin-mpeg2enc.xml index f9d327b8b..70405c427 100644 --- a/docs/plugins/inspect/plugin-mpeg2enc.xml +++ b/docs/plugins/inspect/plugin-mpeg2enc.xml @@ -3,7 +3,7 @@ High-quality MPEG-1/2 video encoder ../../ext/mpeg2enc/.libs/libgstmpeg2enc.so libgstmpeg2enc.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpegpsdemux.xml b/docs/plugins/inspect/plugin-mpegpsdemux.xml index 727b6822b..fe6b2d723 100644 --- a/docs/plugins/inspect/plugin-mpegpsdemux.xml +++ b/docs/plugins/inspect/plugin-mpegpsdemux.xml @@ -3,7 +3,7 @@ MPEG-PS demuxer ../../gst/mpegdemux/.libs/libgstmpegpsdemux.so libgstmpegpsdemux.so - 1.12.0 + 1.12.1 unknown gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpegpsmux.xml b/docs/plugins/inspect/plugin-mpegpsmux.xml index d82c3fc4e..ddc3e6c6e 100644 --- a/docs/plugins/inspect/plugin-mpegpsmux.xml +++ b/docs/plugins/inspect/plugin-mpegpsmux.xml @@ -3,7 +3,7 @@ MPEG-PS muxer ../../gst/mpegpsmux/.libs/libgstmpegpsmux.so libgstmpegpsmux.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpegtsdemux.xml b/docs/plugins/inspect/plugin-mpegtsdemux.xml index 3dc54f1b4..81c7acfdc 100644 --- a/docs/plugins/inspect/plugin-mpegtsdemux.xml +++ b/docs/plugins/inspect/plugin-mpegtsdemux.xml @@ -3,7 +3,7 @@ MPEG TS demuxer ../../gst/mpegtsdemux/.libs/libgstmpegtsdemux.so libgstmpegtsdemux.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mpegtsmux.xml b/docs/plugins/inspect/plugin-mpegtsmux.xml index bc207fa5d..a3760fa1d 100644 --- a/docs/plugins/inspect/plugin-mpegtsmux.xml +++ b/docs/plugins/inspect/plugin-mpegtsmux.xml @@ -3,7 +3,7 @@ MPEG-TS muxer ../../gst/mpegtsmux/.libs/libgstmpegtsmux.so libgstmpegtsmux.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mplex.xml b/docs/plugins/inspect/plugin-mplex.xml index 13e9893a2..a81cb379c 100644 --- a/docs/plugins/inspect/plugin-mplex.xml +++ b/docs/plugins/inspect/plugin-mplex.xml @@ -3,7 +3,7 @@ High-quality MPEG/DVD/SVCD/VCD video/audio multiplexer ../../ext/mplex/.libs/libgstmplex.so libgstmplex.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mxf.xml b/docs/plugins/inspect/plugin-mxf.xml index 34f2830bb..16c319b2d 100644 --- a/docs/plugins/inspect/plugin-mxf.xml +++ b/docs/plugins/inspect/plugin-mxf.xml @@ -3,7 +3,7 @@ MXF plugin library ../../gst/mxf/.libs/libgstmxf.so libgstmxf.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-netsim.xml b/docs/plugins/inspect/plugin-netsim.xml index 2efa46ba4..8e3969158 100644 --- a/docs/plugins/inspect/plugin-netsim.xml +++ b/docs/plugins/inspect/plugin-netsim.xml @@ -3,7 +3,7 @@ Network Simulator ../../gst/netsim/.libs/libgstnetsim.so libgstnetsim.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ofa.xml b/docs/plugins/inspect/plugin-ofa.xml index 4c7245f43..0db904e24 100644 --- a/docs/plugins/inspect/plugin-ofa.xml +++ b/docs/plugins/inspect/plugin-ofa.xml @@ -3,7 +3,7 @@ Calculate MusicIP fingerprint from audio files ../../ext/ofa/.libs/libgstofa.so libgstofa.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-openal.xml b/docs/plugins/inspect/plugin-openal.xml index e64b91e67..feefe1f27 100644 --- a/docs/plugins/inspect/plugin-openal.xml +++ b/docs/plugins/inspect/plugin-openal.xml @@ -3,7 +3,7 @@ OpenAL plugin library ../../ext/openal/.libs/libgstopenal.so libgstopenal.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-opencv.xml b/docs/plugins/inspect/plugin-opencv.xml index 475b43f6b..a66b9d184 100644 --- a/docs/plugins/inspect/plugin-opencv.xml +++ b/docs/plugins/inspect/plugin-opencv.xml @@ -3,7 +3,7 @@ GStreamer OpenCV Plugins ../../ext/opencv/.libs/libgstopencv.so libgstopencv.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-openexr.xml b/docs/plugins/inspect/plugin-openexr.xml index 357a7631e..69bc5669c 100644 --- a/docs/plugins/inspect/plugin-openexr.xml +++ b/docs/plugins/inspect/plugin-openexr.xml @@ -3,7 +3,7 @@ OpenEXR image plugin ../../ext/openexr/.libs/libgstopenexr.so libgstopenexr.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-opengl.xml b/docs/plugins/inspect/plugin-opengl.xml index c80080a26..3e564feac 100644 --- a/docs/plugins/inspect/plugin-opengl.xml +++ b/docs/plugins/inspect/plugin-opengl.xml @@ -3,7 +3,7 @@ OpenGL plugin ../../ext/gl/.libs/libgstopengl.so libgstopengl.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-openjpeg.xml b/docs/plugins/inspect/plugin-openjpeg.xml index 824d33710..e50fec42a 100644 --- a/docs/plugins/inspect/plugin-openjpeg.xml +++ b/docs/plugins/inspect/plugin-openjpeg.xml @@ -3,7 +3,7 @@ OpenJPEG-based JPEG2000 image decoder/encoder ../../ext/openjpeg/.libs/libgstopenjpeg.so libgstopenjpeg.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-opusparse.xml b/docs/plugins/inspect/plugin-opusparse.xml index 2510b37be..ad0ceafc2 100644 --- a/docs/plugins/inspect/plugin-opusparse.xml +++ b/docs/plugins/inspect/plugin-opusparse.xml @@ -3,7 +3,7 @@ OPUS parse plugin ../../ext/opus/.libs/libgstopusparse.so libgstopusparse.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-pcapparse.xml b/docs/plugins/inspect/plugin-pcapparse.xml index d1cd36c99..7bb603e89 100644 --- a/docs/plugins/inspect/plugin-pcapparse.xml +++ b/docs/plugins/inspect/plugin-pcapparse.xml @@ -3,11 +3,11 @@ Element parsing raw pcap streams ../../gst/pcapparse/.libs/libgstpcapparse.so libgstpcapparse.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin irtspparse diff --git a/docs/plugins/inspect/plugin-pnm.xml b/docs/plugins/inspect/plugin-pnm.xml index 906d70a69..2a29dea4b 100644 --- a/docs/plugins/inspect/plugin-pnm.xml +++ b/docs/plugins/inspect/plugin-pnm.xml @@ -3,7 +3,7 @@ PNM plugin ../../gst/pnm/.libs/libgstpnm.so libgstpnm.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-qt.xml b/docs/plugins/inspect/plugin-qt.xml index e85a1f2dc..8bac82892 100644 --- a/docs/plugins/inspect/plugin-qt.xml +++ b/docs/plugins/inspect/plugin-qt.xml @@ -3,7 +3,7 @@ Qt gl plugin ../../ext/qt/.libs/libgstqmlgl.so libgstqmlgl.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-removesilence.xml b/docs/plugins/inspect/plugin-removesilence.xml index 2d5415701..1143deccc 100644 --- a/docs/plugins/inspect/plugin-removesilence.xml +++ b/docs/plugins/inspect/plugin-removesilence.xml @@ -3,7 +3,7 @@ Removes silence from an audio stream ../../gst/removesilence/.libs/libgstremovesilence.so libgstremovesilence.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-resindvd.xml b/docs/plugins/inspect/plugin-resindvd.xml index 4571bb629..8455eb0a8 100644 --- a/docs/plugins/inspect/plugin-resindvd.xml +++ b/docs/plugins/inspect/plugin-resindvd.xml @@ -3,11 +3,11 @@ Resin DVD playback elements ../../ext/resindvd/.libs/libgstresindvd.so libgstresindvd.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin rsndvdbin diff --git a/docs/plugins/inspect/plugin-rfbsrc.xml b/docs/plugins/inspect/plugin-rfbsrc.xml index 12fe15b03..69173ba2f 100644 --- a/docs/plugins/inspect/plugin-rfbsrc.xml +++ b/docs/plugins/inspect/plugin-rfbsrc.xml @@ -3,7 +3,7 @@ Connects to a VNC server and decodes RFB stream ../../gst/librfb/.libs/libgstrfbsrc.so libgstrfbsrc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rsvg.xml b/docs/plugins/inspect/plugin-rsvg.xml index 17a349150..ea6565d41 100644 --- a/docs/plugins/inspect/plugin-rsvg.xml +++ b/docs/plugins/inspect/plugin-rsvg.xml @@ -3,7 +3,7 @@ RSVG plugin library ../../ext/rsvg/.libs/libgstrsvg.so libgstrsvg.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rtmp.xml b/docs/plugins/inspect/plugin-rtmp.xml index f67a8380f..1a5451160 100644 --- a/docs/plugins/inspect/plugin-rtmp.xml +++ b/docs/plugins/inspect/plugin-rtmp.xml @@ -3,7 +3,7 @@ RTMP source and sink ../../ext/rtmp/.libs/libgstrtmp.so libgstrtmp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rtponvif.xml b/docs/plugins/inspect/plugin-rtponvif.xml index 09dafef98..f6005a9af 100644 --- a/docs/plugins/inspect/plugin-rtponvif.xml +++ b/docs/plugins/inspect/plugin-rtponvif.xml @@ -3,7 +3,7 @@ ONVIF Streaming features ../../gst/onvif/.libs/libgstrtponvif.so libgstrtponvif.so - 1.12.0 + 1.12.1 unknown gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-schro.xml b/docs/plugins/inspect/plugin-schro.xml index 7423602ef..4a9d9b9ad 100644 --- a/docs/plugins/inspect/plugin-schro.xml +++ b/docs/plugins/inspect/plugin-schro.xml @@ -3,7 +3,7 @@ Schroedinger plugin ../../ext/schroedinger/.libs/libgstschro.so libgstschro.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-sdpelem.xml b/docs/plugins/inspect/plugin-sdpelem.xml index a698de867..f44699c8a 100644 --- a/docs/plugins/inspect/plugin-sdpelem.xml +++ b/docs/plugins/inspect/plugin-sdpelem.xml @@ -3,7 +3,7 @@ configure streaming sessions using SDP ../../gst/sdp/.libs/libgstsdpelem.so libgstsdpelem.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-segmentclip.xml b/docs/plugins/inspect/plugin-segmentclip.xml index 6acecdda1..16255ba9a 100644 --- a/docs/plugins/inspect/plugin-segmentclip.xml +++ b/docs/plugins/inspect/plugin-segmentclip.xml @@ -3,7 +3,7 @@ Segment clip elements ../../gst/segmentclip/.libs/libgstsegmentclip.so libgstsegmentclip.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-shm.xml b/docs/plugins/inspect/plugin-shm.xml index efa01c673..32ee95264 100644 --- a/docs/plugins/inspect/plugin-shm.xml +++ b/docs/plugins/inspect/plugin-shm.xml @@ -3,7 +3,7 @@ shared memory sink source ../../sys/shm/.libs/libgstshm.so libgstshm.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-smooth.xml b/docs/plugins/inspect/plugin-smooth.xml index 5a3f12824..afec78891 100644 --- a/docs/plugins/inspect/plugin-smooth.xml +++ b/docs/plugins/inspect/plugin-smooth.xml @@ -3,7 +3,7 @@ Apply a smooth filter to an image ../../gst/smooth/.libs/libgstsmooth.so libgstsmooth.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-smoothstreaming.xml b/docs/plugins/inspect/plugin-smoothstreaming.xml index e1fcadcaa..4135f30c9 100644 --- a/docs/plugins/inspect/plugin-smoothstreaming.xml +++ b/docs/plugins/inspect/plugin-smoothstreaming.xml @@ -3,7 +3,7 @@ Microsoft's Smooth Streaming format support ../../ext/smoothstreaming/.libs/libgstsmoothstreaming.so libgstsmoothstreaming.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-sndfile.xml b/docs/plugins/inspect/plugin-sndfile.xml index c44ad628d..6c9d43350 100644 --- a/docs/plugins/inspect/plugin-sndfile.xml +++ b/docs/plugins/inspect/plugin-sndfile.xml @@ -3,7 +3,7 @@ use libsndfile to read and write various audio formats ../../ext/sndfile/.libs/libgstsndfile.so libgstsndfile.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-soundtouch.xml b/docs/plugins/inspect/plugin-soundtouch.xml index 654fe04ec..4cee8fb22 100644 --- a/docs/plugins/inspect/plugin-soundtouch.xml +++ b/docs/plugins/inspect/plugin-soundtouch.xml @@ -3,7 +3,7 @@ Audio Pitch Controller & BPM Detection ../../ext/soundtouch/.libs/libgstsoundtouch.so libgstsoundtouch.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-spandsp.xml b/docs/plugins/inspect/plugin-spandsp.xml index 79f977b97..9a1c1cb64 100644 --- a/docs/plugins/inspect/plugin-spandsp.xml +++ b/docs/plugins/inspect/plugin-spandsp.xml @@ -3,7 +3,7 @@ libspandsp plugin ../../ext/spandsp/.libs/libgstspandsp.so libgstspandsp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-speed.xml b/docs/plugins/inspect/plugin-speed.xml index 7f4e9963e..34de5ae69 100644 --- a/docs/plugins/inspect/plugin-speed.xml +++ b/docs/plugins/inspect/plugin-speed.xml @@ -3,7 +3,7 @@ Set speed/pitch on audio/raw streams (resampler) ../../gst/speed/.libs/libgstspeed.so libgstspeed.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-srtp.xml b/docs/plugins/inspect/plugin-srtp.xml index acb00a658..a1db228ca 100644 --- a/docs/plugins/inspect/plugin-srtp.xml +++ b/docs/plugins/inspect/plugin-srtp.xml @@ -3,11 +3,11 @@ GStreamer SRTP ../../ext/srtp/.libs/libgstsrtp.so libgstsrtp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin srtpdec diff --git a/docs/plugins/inspect/plugin-stereo.xml b/docs/plugins/inspect/plugin-stereo.xml index c0e3e41ff..936ed4def 100644 --- a/docs/plugins/inspect/plugin-stereo.xml +++ b/docs/plugins/inspect/plugin-stereo.xml @@ -3,7 +3,7 @@ Muck with the stereo signal, enhance it's 'stereo-ness' ../../gst/stereo/.libs/libgststereo.so libgststereo.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-subenc.xml b/docs/plugins/inspect/plugin-subenc.xml index e13b759c8..8e2b9c7fa 100644 --- a/docs/plugins/inspect/plugin-subenc.xml +++ b/docs/plugins/inspect/plugin-subenc.xml @@ -3,7 +3,7 @@ subtitle encoders ../../gst/subenc/.libs/libgstsubenc.so libgstsubenc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-teletext.xml b/docs/plugins/inspect/plugin-teletext.xml index f09f2c42d..f75338648 100644 --- a/docs/plugins/inspect/plugin-teletext.xml +++ b/docs/plugins/inspect/plugin-teletext.xml @@ -3,11 +3,11 @@ Teletext plugin ../../ext/teletextdec/.libs/libgstteletext.so libgstteletext.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - GStreamer - http://gstreamer.net/ + GStreamer Bad Plug-ins source release + Unknown package origin teletextdec diff --git a/docs/plugins/inspect/plugin-ttmlsubs.xml b/docs/plugins/inspect/plugin-ttmlsubs.xml index b49e032b6..9bfc53322 100644 --- a/docs/plugins/inspect/plugin-ttmlsubs.xml +++ b/docs/plugins/inspect/plugin-ttmlsubs.xml @@ -3,11 +3,11 @@ TTML subtitle handling ../../ext/ttml/.libs/libgstttmlsubs.so libgstttmlsubs.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - gst-ttml - http://www.bbc.co.uk/rd + GStreamer Bad Plug-ins source release + Unknown package origin ttmlparse diff --git a/docs/plugins/inspect/plugin-uvch264.xml b/docs/plugins/inspect/plugin-uvch264.xml index 9f1eb55e1..950c9c101 100644 --- a/docs/plugins/inspect/plugin-uvch264.xml +++ b/docs/plugins/inspect/plugin-uvch264.xml @@ -3,7 +3,7 @@ UVC compliant H264 encoding cameras plugin ../../sys/uvch264/.libs/libgstuvch264.so libgstuvch264.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-vcdsrc.xml b/docs/plugins/inspect/plugin-vcdsrc.xml index 67b0af27b..a6c867000 100644 --- a/docs/plugins/inspect/plugin-vcdsrc.xml +++ b/docs/plugins/inspect/plugin-vcdsrc.xml @@ -3,7 +3,7 @@ Asynchronous read from VCD disk ../../sys/vcd/.libs/libgstvcdsrc.so libgstvcdsrc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videofiltersbad.xml b/docs/plugins/inspect/plugin-videofiltersbad.xml index e77404977..35b1fad06 100644 --- a/docs/plugins/inspect/plugin-videofiltersbad.xml +++ b/docs/plugins/inspect/plugin-videofiltersbad.xml @@ -3,7 +3,7 @@ Video filters in gst-plugins-bad ../../gst/videofilters/.libs/libgstvideofiltersbad.so libgstvideofiltersbad.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-videoframe_audiolevel.xml b/docs/plugins/inspect/plugin-videoframe_audiolevel.xml index 10b1daf93..1f60913c0 100644 --- a/docs/plugins/inspect/plugin-videoframe_audiolevel.xml +++ b/docs/plugins/inspect/plugin-videoframe_audiolevel.xml @@ -3,7 +3,7 @@ Video frame-synchronized audio level ../../gst/videoframe_audiolevel/.libs/libgstvideoframe_audiolevel.so libgstvideoframe_audiolevel.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videoparsersbad.xml b/docs/plugins/inspect/plugin-videoparsersbad.xml index d96707165..9b362704b 100644 --- a/docs/plugins/inspect/plugin-videoparsersbad.xml +++ b/docs/plugins/inspect/plugin-videoparsersbad.xml @@ -3,7 +3,7 @@ videoparsers ../../gst/videoparsers/.libs/libgstvideoparsersbad.so libgstvideoparsersbad.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videosignal.xml b/docs/plugins/inspect/plugin-videosignal.xml index 21a84ea00..14cfe9659 100644 --- a/docs/plugins/inspect/plugin-videosignal.xml +++ b/docs/plugins/inspect/plugin-videosignal.xml @@ -3,7 +3,7 @@ Various video signal analysers ../../gst/videosignal/.libs/libgstvideosignal.so libgstvideosignal.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-vmnc.xml b/docs/plugins/inspect/plugin-vmnc.xml index a9267c9c9..ab4cae75e 100644 --- a/docs/plugins/inspect/plugin-vmnc.xml +++ b/docs/plugins/inspect/plugin-vmnc.xml @@ -3,7 +3,7 @@ VmWare Video Codec plugins ../../gst/vmnc/.libs/libgstvmnc.so libgstvmnc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-voaacenc.xml b/docs/plugins/inspect/plugin-voaacenc.xml index fb08b6add..6e7b0def6 100644 --- a/docs/plugins/inspect/plugin-voaacenc.xml +++ b/docs/plugins/inspect/plugin-voaacenc.xml @@ -3,7 +3,7 @@ AAC audio encoder ../../ext/voaacenc/.libs/libgstvoaacenc.so libgstvoaacenc.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-voamrwbenc.xml b/docs/plugins/inspect/plugin-voamrwbenc.xml index f7c447778..f5cd24a6f 100644 --- a/docs/plugins/inspect/plugin-voamrwbenc.xml +++ b/docs/plugins/inspect/plugin-voamrwbenc.xml @@ -3,7 +3,7 @@ Adaptive Multi-Rate Wide-Band Encoder ../../ext/voamrwbenc/.libs/libgstvoamrwbenc.so libgstvoamrwbenc.so - 1.12.0 + 1.12.1 unknown gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-waylandsink.xml b/docs/plugins/inspect/plugin-waylandsink.xml index 42e939c89..2bb52201c 100644 --- a/docs/plugins/inspect/plugin-waylandsink.xml +++ b/docs/plugins/inspect/plugin-waylandsink.xml @@ -3,7 +3,7 @@ Wayland Video Sink ../../ext/wayland/.libs/libgstwaylandsink.so libgstwaylandsink.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-webp.xml b/docs/plugins/inspect/plugin-webp.xml index e5190eff0..cdf65254a 100644 --- a/docs/plugins/inspect/plugin-webp.xml +++ b/docs/plugins/inspect/plugin-webp.xml @@ -3,7 +3,7 @@ WebP plugin ../../ext/webp/.libs/libgstwebp.so libgstwebp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-webrtcdsp.xml b/docs/plugins/inspect/plugin-webrtcdsp.xml index 683f0fdaa..ec77212b9 100644 --- a/docs/plugins/inspect/plugin-webrtcdsp.xml +++ b/docs/plugins/inspect/plugin-webrtcdsp.xml @@ -3,11 +3,11 @@ Voice pre-processing using WebRTC Audio Processing Library ../../ext/webrtcdsp/.libs/libgstwebrtcdsp.so libgstwebrtcdsp.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad - WebRTCDsp - http://git.collabora.com + GStreamer Bad Plug-ins source release + Unknown package origin webrtcdsp diff --git a/docs/plugins/inspect/plugin-wildmidi.xml b/docs/plugins/inspect/plugin-wildmidi.xml index b315a402e..a60a13fd1 100644 --- a/docs/plugins/inspect/plugin-wildmidi.xml +++ b/docs/plugins/inspect/plugin-wildmidi.xml @@ -3,7 +3,7 @@ Wildmidi Plugin ../../ext/wildmidi/.libs/libgstwildmidi.so libgstwildmidi.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-x265.xml b/docs/plugins/inspect/plugin-x265.xml index 87da9880b..6d824e761 100644 --- a/docs/plugins/inspect/plugin-x265.xml +++ b/docs/plugins/inspect/plugin-x265.xml @@ -3,7 +3,7 @@ x265-based H265 plugins ../../ext/x265/.libs/libgstx265.so libgstx265.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/docs/plugins/inspect/plugin-y4mdec.xml b/docs/plugins/inspect/plugin-y4mdec.xml index 3da6c3120..057caa8a2 100644 --- a/docs/plugins/inspect/plugin-y4mdec.xml +++ b/docs/plugins/inspect/plugin-y4mdec.xml @@ -3,7 +3,7 @@ Demuxes/decodes YUV4MPEG streams ../../gst/y4m/.libs/libgsty4mdec.so libgsty4mdec.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-yadif.xml b/docs/plugins/inspect/plugin-yadif.xml index c5bcf8e54..3c9f8bc80 100644 --- a/docs/plugins/inspect/plugin-yadif.xml +++ b/docs/plugins/inspect/plugin-yadif.xml @@ -3,7 +3,7 @@ YADIF deinterlacing filter ../../gst/yadif/.libs/libgstyadif.so libgstyadif.so - 1.12.0 + 1.12.1 GPL gst-plugins-bad GStreamer Bad Plug-ins diff --git a/docs/plugins/inspect/plugin-zbar.xml b/docs/plugins/inspect/plugin-zbar.xml index 54eacfe11..61fea642f 100644 --- a/docs/plugins/inspect/plugin-zbar.xml +++ b/docs/plugins/inspect/plugin-zbar.xml @@ -3,7 +3,7 @@ zbar barcode scanner ../../ext/zbar/.libs/libgstzbar.so libgstzbar.so - 1.12.0 + 1.12.1 LGPL gst-plugins-bad GStreamer Bad Plug-ins source release diff --git a/gst-plugins-bad.doap b/gst-plugins-bad.doap index 6150b2af4..ba044559e 100644 --- a/gst-plugins-bad.doap +++ b/gst-plugins-bad.doap @@ -33,6 +33,16 @@ real live maintainer, or some actual wide use. + + + 1.12.1 + 1.12 + + 2017-06-20 + + + + 1.12.0 diff --git a/meson.build b/meson.build index a7bb42b36..8a42b016c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('gst-plugins-bad', 'c', 'cpp', - version : '1.12.0', + version : '1.12.1', meson_version : '>= 0.36.0', default_options : [ 'warning_level=1', 'buildtype=debugoptimized' ])