From: Sebastian Dröge Date: Tue, 1 Mar 2016 16:15:43 +0000 (+0200) Subject: Release 1.7.90 X-Git-Tag: 1.19.3~509^2~2900 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3b47e2d99a5baf8ca7706802dbf10904dd69b11;p=platform%2Fupstream%2Fgstreamer.git Release 1.7.90 --- diff --git a/ChangeLog b/ChangeLog index 34a34d4..68441e8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,552 @@ +=== release 1.7.90 === + +2016-03-01 Sebastian Dröge + + * configure.ac: + releasing 1.7.90 + +2016-03-01 16:53:27 +0200 Sebastian Dröge + + * po/bg.po: + * po/cs.po: + * po/de.po: + * po/fr.po: + * po/nl.po: + * po/pl.po: + * po/ru.po: + * po/sv.po: + * po/uk.po: + * po/vi.po: + * po/zh_CN.po: + po: Update translations + +2016-03-01 14:14:02 +0000 Tim-Philipp Müller + + * gst/rtpmanager/gstrtpjitterbuffer.c: + rtpjitterbuffer: don't forget to unlock mutex in error code path in two cases + +2016-02-29 10:10:24 +0000 Luis de Bethencourt + + * gst/matroska/matroska-demux.c: + matroska-demux: remove impossible condition + It is impossible for a guint to have a negative value, no need to check for + this. Introduced in commit 6861d11c49ea0f30d2432cf4ebf6108bc89897f1 + CID 1354509 + +2016-02-28 10:12:36 +0100 Petr Viktorin + + * gst/alpha/gstalpha.c: + alpha: Fix sample pipeline + Use the zorder pad property to make sure the semitransparent + video is on top of the background. + https://bugzilla.gnome.org/show_bug.cgi?id=762809 + +2016-02-28 13:42:28 +0000 Tim-Philipp Müller + + * gst/replaygain/gstrgvolume.c: + * tests/check/elements/rgvolume.c: + rgvolume: make tag list writable before modifying it + Making the event itself writable is not enough, it won't make + the actual taglist in the event writable as well. Instead, just + make a copy of the taglist and then create a new tag event from + that if required, replacing the old one. Before we would + inadvertently modify taglists upstream elements might still + be holding on to. Add unit test for this as well. + https://bugzilla.gnome.org/show_bug.cgi?id=762793 + +2016-02-28 13:01:34 +0200 Sebastian Dröge + + * gst/rtsp/gstrtspsrc.c: + rtspsrc: Properly error out if binding the UDP sockets fails + udpsrc is not returning us a socket in that case. + +2016-02-27 20:33:32 +0200 Sebastian Dröge + + * gst/goom/gstgoom.c: + goom: Use goom_set_resolution() instead of recreating the goom instance when the resolution changes + https://bugzilla.gnome.org/show_bug.cgi?id=762765 + +2016-02-27 20:32:45 +0200 Sebastian Dröge + + * gst/goom/gstgoom.c: + Revert "goom: Initialize the goom struct only once we know width/height and recreate it if those change" + This reverts commit cc6e102643c1bae928316dca9f34db028fb9a67e. + +2016-02-27 20:31:15 +0200 Sebastian Dröge + + * gst/goom/gstgoom.c: + goom: Initialize the goom struct only once we know width/height and recreate it if those change + Fixes crash when the width and/or height is changing. + https://bugzilla.gnome.org/show_bug.cgi?id=762765 + +2016-02-26 12:41:07 +0200 Sebastian Dröge + + * common: + Automatic update of common submodule + From b64f03f to 6f2d209 + +2016-02-25 22:54:18 +0000 Tim-Philipp Müller + + * docs/plugins/gst-plugins-good-plugins-docs.sgml: + * docs/plugins/gst-plugins-good-plugins-sections.txt: + * docs/plugins/gst-plugins-good-plugins.hierarchy: + * docs/plugins/inspect/plugin-rtp.xml: + docs: add rtpopusdepay and rtpopuspay to documentation + +2016-02-17 15:15:11 +0000 Tim-Philipp Müller + + * gst/rtp/Makefile.am: + * gst/rtp/gstrtp.c: + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopusdepay.h: + * gst/rtp/gstrtpopuspay.c: + * gst/rtp/gstrtpopuspay.h: + rtp: opus: move Opus RTP payloader/depayloader from -bad to -good + https://bugzilla.gnome.org/show_bug.cgi?id=756282 + +2016-02-17 15:10:00 +0000 Tim-Philipp Müller + + Merge branch 'plugin-move-rtp-opus' + Move Opus RTP depayloader/payloader from -bad to -good. + https://bugzilla.gnome.org/show_bug.cgi?id=756282 + +2016-02-25 11:33:13 +0100 Philippe Normand + + * gst/isomp4/qtdemux.c: + qtdemux: cenc aux info parsing from mdat support in PULL mode + This is already supported for PUSH mode but was failing in PULL mode. + The aux info is sometimes stored in the mdat before the first sample, + so the loop task needs to pull data stored at that location and + perform the aux info cenc parsing. + https://bugzilla.gnome.org/show_bug.cgi?id=761700 + https://bugzilla.gnome.org/show_bug.cgi?id=762516 + +2016-02-24 11:28:09 +0100 Philippe Normand + + * gst/isomp4/qtdemux.c: + qtdemux: prevent buffer flow if any stream failed to be exposed + In some cases the stream configuration can fail, for instance if the + stream is protected and no decryptor was found. For those situations + the demuxer shouldn't emit any data on the corresponding source pad of + the stream and bail out. + https://bugzilla.gnome.org/show_bug.cgi?id=762516 + +2016-02-24 09:12:03 +0100 Philippe Normand + + * gst/isomp4/qtdemux.c: + qtdemux: don't push encrypted buffer without cenc metadata + When the cenc metadata is stored outside of the moof box and the + stream is exposed it is possible that the cenc metadata hasn't been + processed yet while the first buffer is being pushed. When this + happens the buffer can't possibly be decrypted downstream so don't + push it. + https://bugzilla.gnome.org/show_bug.cgi?id=762516 + +2015-10-21 16:21:45 +0200 Philippe Normand + + * gst/isomp4/qtdemux.c: + qtdemux: read saio aux_info_type as a FOURCC + https://bugzilla.gnome.org/show_bug.cgi?id=756897 + +2016-02-23 18:27:47 +0200 Sebastian Dröge + + * ext/dv/gstdvdec.c: + * ext/gdk_pixbuf/gstgdkpixbufdec.c: + * gst/deinterlace/gstdeinterlace.c: + * gst/smpte/gstsmpte.c: + gst: Handle gst_pad_get_current_caps() returning NULL gracefully + +2016-02-23 18:12:54 +0200 Dave Craig + + * gst/rtp/gstrtph265depay.c: + rtph265depay: Don't assume that get_current_caps() returns non-NULL caps after has_current_caps() + Remove calls to gst_pad_has_current_caps() which then go on to call + gst_pad_get_current_caps() as the caps can go to NULL in between. Instead just + use gst_pad_get_current_caps() and check for NULL. + https://bugzilla.gnome.org/show_bug.cgi?id=759539 + +2015-12-16 12:40:39 +0000 Dave Craig + + * ext/flac/gstflacenc.c: + * gst/flv/gstflvmux.c: + * gst/imagefreeze/gstimagefreeze.c: + * gst/rtp/gstrtph264depay.c: + * gst/shapewipe/gstshapewipe.c: + * gst/videocrop/gstaspectratiocrop.c: + gst: Don't assume that get_current_caps() returns non-NULL caps after has_current_caps() + Remove calls to gst_pad_has_current_caps() which then go on to call + gst_pad_get_current_caps() as the caps can go to NULL in between. Instead just + use gst_pad_get_current_caps() and check for NULL. + https://bugzilla.gnome.org/show_bug.cgi?id=759539 + +2015-12-16 10:54:17 +0000 Dave Craig + + * gst/audioparsers/gstaacparse.c: + aacparse: Handle gst_pad_get_current_caps() returning NULL gracefully + This can happen when the pipeline is currently shutting down. + https://bugzilla.gnome.org/show_bug.cgi?id=759539 + +2016-02-23 15:57:18 +0100 Linus Svensson + + * gst/matroska/matroska-demux.c: + matroska-demux: Don't handle seek until ready + https://bugzilla.gnome.org/show_bug.cgi?id=762542 + +2016-02-23 15:55:13 +0100 Linus Svensson + + * gst/matroska/matroska-demux.c: + matroska-demux: Unref seek event + https://bugzilla.gnome.org/show_bug.cgi?id=762542 + +2016-02-22 11:01:40 +0100 Aurélien Zanelli + + * gst/multifile/gstmultifilesink.c: + multifilesink: close file on write error with next-file mode is set to buffer + If we have an error during fwrite call, file stays open and thus next + incoming buffer will trigger an assert when trying to opening a new + file. + This happens if we do not restart element, file is closed at stop, and + if application handles the returned GST_FLOW_ERROR to keep bin alive. + https://bugzilla.gnome.org/show_bug.cgi?id=762434 + +2016-02-19 23:44:42 +0100 Matej Knopp + + * gst/matroska/matroska-mux.c: + matroskamux: don't output empty tags/tag elements + Such files will not play on Android, because of bug in libwebm matroska parsing, which is still present in 6.0.1 + https://bugzilla.gnome.org/show_bug.cgi?id=762349 + +2016-02-04 15:59:04 +0000 Vincent Penquerc'h + + * gst/matroska/matroska-demux.c: + matroska-demux: make up an OpusHead block if possible when missing + https://bugzilla.gnome.org/show_bug.cgi?id=761489 + +2016-02-04 10:43:15 +0000 Vincent Penquerc'h + + * gst/matroska/matroska-mux.c: + matroska-mux: make up an OpusHead block if possible when missing + This block is needed in the Matroska file, but data coming from + RTP may not have one. + https://bugzilla.gnome.org/show_bug.cgi?id=761489 + +2016-02-22 13:53:21 +0100 Mark Nauwelaerts + + * gst/matroska/matroska-demux.c: + matroskademux: make stream-id more readable and order-friendly + ... as streams are so ordered by id by e.g. decodebin + (and as typically already honoured by other demuxers). + +2016-02-22 13:25:51 +0100 Mark Nauwelaerts + + * gst/matroska/matroska-ids.h: + * gst/matroska/matroska-mux.c: + matroska: remove confusing duplicate track uid field + +2016-02-22 14:03:02 +0000 Luis de Bethencourt + + * gst/rtp/gstrtpvp9pay.c: + rtpvp9pay: add missing break + VP9_PAY_PICTURE_ID_7BITS and VP9_PAY_PICTURE_ID_15BITS are mutually + exclusive options of the picture-id-mode. We can break after the + first case. + 1 or 2 bytes need to be added to the header length depending on the + PictureID size. + https://tools.ietf.org/html/draft-uberti-payload-vp9-00#section-4.2 + CID 1353479 + +2016-02-22 09:09:01 +0900 Vineeth TM + + * gst/avi/gstavidemux.c: + avidemux: Fix buffer memory leak + buffer being mapped is not being unmapped in some cases + https://bugzilla.gnome.org/show_bug.cgi?id=762420 + +2015-11-04 10:19:03 +0100 Stian Selnes + + * gst/rtpmanager/gstrtpjitterbuffer.c: + rtpmanager: Don't warn for duplicate/reordered packets + This is a normal scenario and should not be a warning. + https://bugzilla.gnome.org/show_bug.cgi?id=762208 + +2016-02-21 09:47:43 +0000 Tim-Philipp Müller + + * gst/alpha/alpha.vcproj: + * gst/auparse/auparse.vcproj: + * gst/avi/avi.vcproj: + * gst/cutter/cutter.vcproj: + * gst/debugutils/debug.vcproj: + * gst/debugutils/navigationtest.vcproj: + * gst/effectv/effectv.vcproj: + * gst/flx/flxdec.vcproj: + * gst/goom/goom.vcproj: + * gst/goom2k1/goom.vcproj: + * gst/interleave/interleave.vcproj: + * gst/isomp4/qtdemux.vcproj: + * gst/law/alaw.vcproj: + * gst/law/mulaw.vcproj: + * gst/matroska/matroska.vcproj: + * gst/multipart/multipart.vcproj: + * gst/rtp/rtp.vcproj: + * gst/smpte/smpte.vcproj: + * gst/spectrum/spectrum.vcproj: + * gst/udp/udp.vcproj: + * gst/videobox/videobox.vcproj: + * gst/videocrop/videocrop.vcproj: + * gst/videofilter/gamma.vcproj: + * gst/videofilter/videobalance.vcproj: + * gst/videofilter/videofilter.vcproj: + * gst/videofilter/videoflip.vcproj: + * gst/videomixer/videomixer.vcproj: + * gst/wavenc/wavenc.vcproj: + * gst/wavparse/wavparse.vcproj: + * gst/y4m/y4menc.vcproj: + * win32/MANIFEST: + * win32/vs6/autogen.dsp: + * win32/vs6/gst_plugins_good.dsw: + * win32/vs6/libgstalaw.dsp: + * win32/vs6/libgstalpha.dsp: + * win32/vs6/libgstalphacolor.dsp: + * win32/vs6/libgstapetag.dsp: + * win32/vs6/libgstaudiofx.dsp: + * win32/vs6/libgstauparse.dsp: + * win32/vs6/libgstautodetect.dsp: + * win32/vs6/libgstavi.dsp: + * win32/vs6/libgstcutter.dsp: + * win32/vs6/libgstdirectsound.dsp: + * win32/vs6/libgsteffectv.dsp: + * win32/vs6/libgstflx.dsp: + * win32/vs6/libgstgoom.dsp: + * win32/vs6/libgsticydemux.dsp: + * win32/vs6/libgstid3demux.dsp: + * win32/vs6/libgstinterleave.dsp: + * win32/vs6/libgstjpeg.dsp: + * win32/vs6/libgstlevel.dsp: + * win32/vs6/libgstmatroska.dsp: + * win32/vs6/libgstmedian.dsp: + * win32/vs6/libgstmonoscope.dsp: + * win32/vs6/libgstmulaw.dsp: + * win32/vs6/libgstmultipart.dsp: + * win32/vs6/libgstpng.dsp: + * win32/vs6/libgstqtdemux.dsp: + * win32/vs6/libgstrtp.dsp: + * win32/vs6/libgstrtsp.dsp: + * win32/vs6/libgstsmpte.dsp: + * win32/vs6/libgstspeex.dsp: + * win32/vs6/libgstudp.dsp: + * win32/vs6/libgstvideobalance.dsp: + * win32/vs6/libgstvideobox.dsp: + * win32/vs6/libgstvideocrop.dsp: + * win32/vs6/libgstvideoflip.dsp: + * win32/vs6/libgstvideomixer.dsp: + * win32/vs6/libgstwaveform.dsp: + * win32/vs6/libgstwavenc.dsp: + * win32/vs6/libgstwavparse.dsp: + * win32/vs7/libgstdirectsound.vcproj: + * win32/vs8/gst-plugins-good.sln: + * win32/vs8/libgst1394.vcproj: + * win32/vs8/libgstaasink.vcproj: + * win32/vs8/libgstalaw.vcproj: + * win32/vs8/libgstalpha.vcproj: + * win32/vs8/libgstalphacolor.vcproj: + * win32/vs8/libgstannodex.vcproj: + * win32/vs8/libgstapetag.vcproj: + * win32/vs8/libgstaudiofx.vcproj: + * win32/vs8/libgstauparse.vcproj: + * win32/vs8/libgstautodetect.vcproj: + * win32/vs8/libgstavi.vcproj: + * win32/vs8/libgstcacasink.vcproj: + * win32/vs8/libgstcdio.vcproj: + * win32/vs8/libgstcutter.vcproj: + * win32/vs8/libgstdirectsound.vcproj: + * win32/vs8/libgstdv.vcproj: + * win32/vs8/libgsteffectv.vcproj: + * win32/vs8/libgstflac.vcproj: + * win32/vs8/libgstflxdec.vcproj: + * win32/vs8/libgstgoom.vcproj: + * win32/vs8/libgsticydemux.vcproj: + * win32/vs8/libgstid3demux.vcproj: + * win32/vs8/libgstjpeg.vcproj: + * win32/vs8/libgstladspa.vcproj: + * win32/vs8/libgstlevel.vcproj: + * win32/vs8/libgstmatroska.vcproj: + * win32/vs8/libgstmng.vcproj: + * win32/vs8/libgstmonoscope.vcproj: + * win32/vs8/libgstmulaw.vcproj: + * win32/vs8/libgstmultipart.vcproj: + * win32/vs8/libgstpng.vcproj: + * win32/vs8/libgstrtp.vcproj: + * win32/vs8/libgstrtsp.vcproj: + * win32/vs8/libgstshout2.vcproj: + * win32/vs8/libgstsmpte.vcproj: + * win32/vs8/libgstspeex.vcproj: + * win32/vs8/libgsttaglib.vcproj: + * win32/vs8/libgstudp.vcproj: + * win32/vs8/libgstvideobalance.vcproj: + * win32/vs8/libgstvideobox.vcproj: + * win32/vs8/libgstvideoflip.vcproj: + * win32/vs8/libgstvideomixer.vcproj: + * win32/vs8/libgstwavenc.vcproj: + * win32/vs8/libgstwavparse.vcproj: + win32: remove outdated build cruft + This hasn't been touched for generations, doesn't work, + and is just causing confusion. We also don't want to + maintain these files manually. + +2016-02-20 11:51:56 +0000 Tim-Philipp Müller + + * sys/v4l2/gstv4l2bufferpool.c: + v4l2: don't use undeclared core debug category symbols + +2016-02-06 14:39:05 +0100 Matej Knopp + + * gst/isomp4/qtdemux.c: + qtdemux: workaround for files with wrong color_table_id value + Instead of erroring out, just use the default color table. + https://bugzilla.gnome.org/show_bug.cgi?id=761637 + +2016-02-19 15:02:04 +0000 Tim-Philipp Müller + + * gst/flv/gstflvmux.c: + * gst/rtp/gstrtpvp9depay.c: + flvmux, rtpvp9depay: fix indentation + +2016-02-19 15:03:04 +0000 Tim-Philipp Müller + + * sys/v4l2/gstv4l2src.c: + * sys/v4l2/gstv4l2videodec.c: + v4l2src: fix indentation + +2015-12-04 00:46:34 +1100 Havard Graff + + * gst/flv/gstflvmux.c: + flvmux: plug leak(s) in error-scenario + https://bugzilla.gnome.org/show_bug.cgi?id=762210 + +2015-12-04 00:46:12 +1100 Havard Graff + + * gst/flv/gstflvdemux.c: + flvdemux: fix eos event leak + https://bugzilla.gnome.org/show_bug.cgi?id=762209 + +2016-02-19 14:41:07 +0000 Tim-Philipp Müller + + * tests/check/elements/flvdemux.c: + * tests/check/elements/flvmux.c: + * tests/check/elements/rtph263.c: + * tests/check/elements/rtpjitterbuffer.c: + tests: fix indentation + +2016-02-18 16:09:29 +0100 Havard Graff + + * tests/check/elements/rtpjitterbuffer.c: + tests: rtpjitterbuffer: port testharness to GstHarness and cleanup/improve + Probably found a bug as well, in that there are some timestamps in + there that are looking very wrong. (marked with FIXME) + https://bugzilla.gnome.org/show_bug.cgi?id=762267 + +2016-02-18 10:27:19 +0100 Havard Graff + + * tests/check/elements/rtpjitterbuffer.c: + tests: rtpjitterbuffer: test cleanups/improvements + Use fail_unless and friends instead of g_assert + Factor seq-num checking out to separate function + Check more return-values from push and crank and others + https://bugzilla.gnome.org/show_bug.cgi?id=762254 + +2015-12-03 11:07:05 +0100 Stian Selnes + + * tests/check/elements/rtpjitterbuffer.c: + tests: rtpjitterbuffer: fix leaks in unit test + https://bugzilla.gnome.org/show_bug.cgi?id=762214 + +2016-02-19 12:38:28 +0200 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.7.2 === -2016-02-19 Sebastian Dröge +2016-02-19 11:49:55 +0200 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.7.2 + * docs/plugins/gst-plugins-good-plugins.args: + * docs/plugins/gst-plugins-good-plugins.hierarchy: + * docs/plugins/gst-plugins-good-plugins.interfaces: + * docs/plugins/gst-plugins-good-plugins.prerequisites: + * docs/plugins/gst-plugins-good-plugins.signals: + * docs/plugins/inspect/plugin-1394.xml: + * docs/plugins/inspect/plugin-aasink.xml: + * docs/plugins/inspect/plugin-alaw.xml: + * docs/plugins/inspect/plugin-alpha.xml: + * docs/plugins/inspect/plugin-alphacolor.xml: + * docs/plugins/inspect/plugin-apetag.xml: + * docs/plugins/inspect/plugin-audiofx.xml: + * docs/plugins/inspect/plugin-audioparsers.xml: + * docs/plugins/inspect/plugin-auparse.xml: + * docs/plugins/inspect/plugin-autodetect.xml: + * docs/plugins/inspect/plugin-avi.xml: + * docs/plugins/inspect/plugin-cacasink.xml: + * docs/plugins/inspect/plugin-cairo.xml: + * docs/plugins/inspect/plugin-cutter.xml: + * docs/plugins/inspect/plugin-debug.xml: + * docs/plugins/inspect/plugin-deinterlace.xml: + * docs/plugins/inspect/plugin-dtmf.xml: + * docs/plugins/inspect/plugin-dv.xml: + * docs/plugins/inspect/plugin-effectv.xml: + * docs/plugins/inspect/plugin-equalizer.xml: + * docs/plugins/inspect/plugin-flac.xml: + * docs/plugins/inspect/plugin-flv.xml: + * docs/plugins/inspect/plugin-flxdec.xml: + * docs/plugins/inspect/plugin-gdkpixbuf.xml: + * docs/plugins/inspect/plugin-goom.xml: + * docs/plugins/inspect/plugin-goom2k1.xml: + * docs/plugins/inspect/plugin-icydemux.xml: + * docs/plugins/inspect/plugin-id3demux.xml: + * docs/plugins/inspect/plugin-imagefreeze.xml: + * docs/plugins/inspect/plugin-interleave.xml: + * docs/plugins/inspect/plugin-isomp4.xml: + * docs/plugins/inspect/plugin-jack.xml: + * docs/plugins/inspect/plugin-jpeg.xml: + * docs/plugins/inspect/plugin-level.xml: + * docs/plugins/inspect/plugin-matroska.xml: + * docs/plugins/inspect/plugin-mulaw.xml: + * docs/plugins/inspect/plugin-multifile.xml: + * docs/plugins/inspect/plugin-multipart.xml: + * docs/plugins/inspect/plugin-navigationtest.xml: + * docs/plugins/inspect/plugin-oss4.xml: + * docs/plugins/inspect/plugin-ossaudio.xml: + * docs/plugins/inspect/plugin-png.xml: + * docs/plugins/inspect/plugin-pulseaudio.xml: + * docs/plugins/inspect/plugin-replaygain.xml: + * docs/plugins/inspect/plugin-rtp.xml: + * docs/plugins/inspect/plugin-rtpmanager.xml: + * docs/plugins/inspect/plugin-rtsp.xml: + * docs/plugins/inspect/plugin-shapewipe.xml: + * docs/plugins/inspect/plugin-shout2send.xml: + * docs/plugins/inspect/plugin-smpte.xml: + * docs/plugins/inspect/plugin-soup.xml: + * docs/plugins/inspect/plugin-spectrum.xml: + * docs/plugins/inspect/plugin-speex.xml: + * docs/plugins/inspect/plugin-taglib.xml: + * docs/plugins/inspect/plugin-udp.xml: + * docs/plugins/inspect/plugin-video4linux2.xml: + * docs/plugins/inspect/plugin-videobox.xml: + * docs/plugins/inspect/plugin-videocrop.xml: + * docs/plugins/inspect/plugin-videofilter.xml: + * docs/plugins/inspect/plugin-videomixer.xml: + * docs/plugins/inspect/plugin-vpx.xml: + * docs/plugins/inspect/plugin-wavenc.xml: + * docs/plugins/inspect/plugin-wavpack.xml: + * docs/plugins/inspect/plugin-wavparse.xml: + * docs/plugins/inspect/plugin-ximagesrc.xml: + * docs/plugins/inspect/plugin-y4menc.xml: + * gst-plugins-good.doap: + * win32/common/config.h: + Release 1.7.2 2016-02-19 10:31:48 +0200 Sebastian Dröge @@ -108,6 +651,181 @@ changed once. https://bugzilla.gnome.org/show_bug.cgi?id=761769 +2015-11-03 14:50:53 +0200 Sebastian Dröge + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + opus: Add proper support for multichannel audio + https://bugzilla.gnome.org/show_bug.cgi?id=757152 + +2015-06-30 13:51:33 +0200 Sebastian Dröge + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + opus: Copy metadata in the (de)payloader, but only the relevant ones + The payloader didn't copy anything so far, the depayloader copied every + possible meta. Let's make it consistent and just copy all metas without tags or + with only the audio tag. + https://bugzilla.gnome.org/show_bug.cgi?id=751774 + +2015-05-04 11:23:16 +0200 Sebastian Dröge + + * gst/rtp/gstrtpopusdepay.c: + opusdepay: Set multistream=FALSE on the Opus caps + The RTP Opus mapping only allows mono/stereo, and not multistream Opus + streams. + +2015-03-24 13:57:54 -0400 Olivier Crête + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: Forward stereo preferences from caps upstream + https://bugzilla.gnome.org/show_bug.cgi?id=746617 + +2015-03-24 13:56:21 -0400 Olivier Crête + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: Set the number of channels to 2 as per RFC draft + https://bugzilla.gnome.org/show_bug.cgi?id=746617 + +2015-03-23 12:24:55 +0100 Sebastian Dröge + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + opus: Handle sprop-stereo and sprop-maxcapturerate RTP caps fields + https://bugzilla.gnome.org/show_bug.cgi?id=746617 + +2015-02-19 14:30:10 +0000 Vincent Penquerc'h + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: default encoding name to OPUS + https://bugzilla.gnome.org/show_bug.cgi?id=737810 + +2015-02-19 14:05:06 +0000 Vincent Penquerc'h + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: make caps writable before truncating them + https://bugzilla.gnome.org/show_bug.cgi?id=737810 + +2015-02-05 10:27:51 +0000 Vincent Penquerc'h + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: negotiate the encoding name + Chrome uses a different encoding name that gstreamer. + https://bugzilla.gnome.org/show_bug.cgi?id=737810 + +2014-11-01 10:10:27 -0400 Nicolas Dufresne + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + rtpopus: Use OPUS encoding name + Both Firefox and Chrome uses OPUS as the encoding in their SDP. + Adding this now defacto standard name remove the need for special + case in SDP parsing code. + https://bugzilla.gnome.org/show_bug.cgi?id=737810 + +2013-01-31 12:30:49 +0100 Wim Taymans + + * gst/rtp/gstrtpopuspay.c: + opuspay: fix timestamps + Copy timestamps to payloaded buffer. + Avoid input buffer memory leak. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=692929 + +2012-11-03 20:38:00 +0000 Tim-Philipp Müller + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopusdepay.h: + * gst/rtp/gstrtpopuspay.c: + * gst/rtp/gstrtpopuspay.h: + Fix FSF address + https://bugzilla.gnome.org/show_bug.cgi?id=687520 + +2012-10-22 12:08:41 +0200 Wim Taymans + + * gst/rtp/gstrtpopuspay.c: + opuspay: remove pointless caps serialization + Remove the caps serialization in the rtp caps. the spec nor the receiver + does anything with it. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=686547 + +2012-10-17 17:34:26 +0100 Tim-Philipp Müller + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + Use gst_element_class_set_static_metadata() + where possible. Avoids some string copies. Also re-indent + some stuff. Also some indent fixes here and there. + +2012-09-20 18:41:24 -0400 Olivier Crête + + * gst/rtp/gstrtpopuspay.c: + rtpopuspay: Allocate the rtp buffer correctly + Use the right functions to allocate the rtp buffer + +2012-09-14 17:08:49 +0200 Mark Nauwelaerts + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopuspay.c: + replace gst_element_class_set_details_simple with gst_element_class_set_metadata + +2012-03-07 17:14:29 +0100 Mark Nauwelaerts + + * gst/rtp/gstrtpopuspay.c: + opus: port to updated 0.11 + +2011-12-30 11:41:17 +0100 Edward Hervey + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopusdepay.h: + * gst/rtp/gstrtpopuspay.c: + * gst/rtp/gstrtpopuspay.h: + Merge remote-tracking branch 'origin/master' into 0.11-premerge + Conflicts: + docs/libs/Makefile.am + ext/kate/gstkatetiger.c + ext/opus/gstopusdec.c + ext/xvid/gstxvidenc.c + gst-libs/gst/basecamerabinsrc/Makefile.am + gst-libs/gst/basecamerabinsrc/gstbasecamerasrc.c + gst-libs/gst/basecamerabinsrc/gstbasecamerasrc.h + gst-libs/gst/video/gstbasevideocodec.c + gst-libs/gst/video/gstbasevideocodec.h + gst-libs/gst/video/gstbasevideodecoder.c + gst-libs/gst/video/gstbasevideoencoder.c + gst/asfmux/gstasfmux.c + gst/audiovisualizers/gstwavescope.c + gst/camerabin2/gstcamerabin2.c + gst/debugutils/gstcompare.c + gst/frei0r/gstfrei0rmixer.c + gst/mpegpsmux/mpegpsmux.c + gst/mpegtsmux/mpegtsmux.c + gst/mxf/mxfmux.c + gst/videomeasure/gstvideomeasure_ssim.c + gst/videoparsers/gsth264parse.c + gst/videoparsers/gstmpeg4videoparse.c + +2011-12-09 17:25:41 +0000 Vincent Penquerc'h + + * gst/rtp/gstrtpopuspay.c: + opusenc: add upstream negotiation for multistream ability + This will help elements that cannot deal with multistream, + such as the RTP payloader. + The caps now do not include a "streams" field anymore, but + a "multistream" boolean, since we have no real use for knowing + the exact amount of streams. + https://bugzilla.gnome.org/show_bug.cgi?id=665078 + +2011-12-07 15:13:11 -0200 Danilo Cesar Lemes de Paula + + * gst/rtp/gstrtpopusdepay.c: + * gst/rtp/gstrtpopusdepay.h: + * gst/rtp/gstrtpopuspay.c: + * gst/rtp/gstrtpopuspay.h: + Adding opus RTP payloader/depayloader element + Adding OPUS RTP module based on the current draft: + http://tools.ietf.org/id/draft-spittka-payload-rtp-opus-00.txt + https://bugzilla.gnome.org/show_bug.cgi?id=664817 + 2016-02-17 13:26:02 +0000 Luis de Bethencourt * gst/rtp/gstrtph264depay.c: diff --git a/NEWS b/NEWS index a4a5e76..8f11fc4 100644 --- a/NEWS +++ b/NEWS @@ -1,2 +1,2 @@ -This is GStreamer 1.7.2 +This is GStreamer 1.7.90 diff --git a/RELEASE b/RELEASE index 39375cd..e62cff7 100644 --- a/RELEASE +++ b/RELEASE @@ -1,16 +1,14 @@ -Release notes for GStreamer Good Plugins 1.7.2 +Release notes for GStreamer Good Plugins 1.7.90 -The GStreamer team is pleased to announce the second release of the unstable -1.7 release series. The 1.7 release series is adding new features on top of +The GStreamer team is pleased to announce the first release candidate of the stable +1.8 release series. The 1.8 release series is adding new features on top of the 1.0, 1.2, 1.4 and 1.6 series and is part of the API and ABI-stable 1.x release -series of the GStreamer multimedia framework. The unstable 1.7 release series -will lead to the stable 1.8 release series in the next weeks. Any newly added -API can still change until that point. +series of the GStreamer multimedia framework. Binaries for Android, iOS, Mac OS X and Windows will be provided separately -during the unstable 1.7 release series. +during the stable 1.8 release series. "Such ingratitude. After all the times I've saved your life." @@ -56,30 +54,23 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 617563 : matroskademux: pelicula.mkv doesn't preroll/play due to audio track without data - * 709839 : matroskademux: file with late audio stream start does not preroll - * 720388 : deinterlace: handle unsupported features caps in passthrough mode - * 735673 : interleave: the example in the documentation does not work - * 741280 : matroskademux: Send GAP events for non sparse streams - * 754773 : rtp: Implement VP9 payloader and depayloader - * 755736 : v4l2transform: configure output pool to use min_buffer - * 757290 : gdkpixbufoverlay crash - * 759293 : rtpbin: add " get-session " property - * 759780 : v4l2: deviceprovider: Add the device and sysfs paths to the GstDevice properties - * 760774 : qtdemux: fix framerate calculation for fragmented format - * 760779 : qtdemux: fix framerate calculation for fragmented format in push mode - * 760781 : qtdemux: handling zero segment-duration edit list - * 760905 : taginject: Unable to add tags with spaces using example pipeline from docs - * 760995 : deinterlace: Do passthrough if downstream only supports interlaced - * 761094 : unintialized variable warnings (gcc 5.1) - * 761144 : matroskamux: use A_AAC instead of A_AAC/MPEGx/y - * 761670 : jpegdec: Possible endless loop if file is corrupt - * 761705 : POTFILES.in is out of date - * 761769 : qtdemux: incorrectly sets caps of CENC encrypted streams - * 762057 : tests: rtpmux: Fix element memory leak - * 762117 : avidemux: Fix string memory leak - * 762185 : matroskademux: Simple implementation of GST_SEEK_FLAG_TRICKMODE_KEY_UNITS - * 762211 : rtpjitterbuffer: Don't drop packets after big gap + * 756897 : qtdemux: cenc aux_info_type endianness issue + * 761489 : matroskademux: fails to parse opus ('audio/x-unknown, codec-id=(string)A_OPUS') + * 761637 : qtmux: handle file with wrong color_table_id values + * 762208 : rtpmanager: Don't warn for duplicate/reordered packets + * 762209 : flvdemux: leaking eos event fix + * 762210 : flvmux: plug leak(s) in error-scenario + * 762214 : jitterbuffer: Fix leaks in test + * 762254 : rtpjitterbuffer: test cleanups/improvements + * 762267 : rtpjitterbuffer: port testharness to GstHarness and cleanup/improve + * 762349 : matroskamux: generated files sometimes don't open on android + * 762420 : avidemux: Fix buffer memory leak + * 762434 : multifilesink: close file on write error with next-file mode is set to buffer + * 762516 : qtdemux: cenc auxiliary info parsing crashes + * 762542 : matroskademux: CRITICAL when seeking on matroska files without buffers + * 762765 : goom: crashes on window resize + * 762793 : rgvolume: modifies upstream tags in place without making them writable first + * 762809 : alpha: Sample pipeline does not demonstrate functionality ==== Download ==== @@ -116,34 +107,18 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Aleix Conchillo Flaqué - * Alex Ashley - * Antonio Ospite - * George Kiagiadakis - * Hyunjun Ko - * Jan Schmidt + * Aurélien Zanelli + * Dave Craig + * Havard Graff + * Linus Svensson * Luis de Bethencourt + * Mark Nauwelaerts * Matej Knopp - * Miguel París Díaz - * Nicolas Dufresne - * Nirbheek Chauhan - * Ognyan Tonchev - * Pablo Anton + * Petr Viktorin * Philippe Normand - * Piotr Drąg - * Reynaldo H. Verdejo Pinochet * Sebastian Dröge - * Seungha Yang - * Stefan Sauer - * Steven Hoving * Stian Selnes - * Thiago Santos - * Thibault Saunier - * Thijs Vermeir - * Tim Sheridan * Tim-Philipp Müller + * Vincent Penquerc'h * Vineeth TM - * Vivia Nikolaidou - * Víctor Manuel Jáquez Leal - * Wim Taymans   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 36c2691..b542a70 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file dnl initialize autoconf dnl releases only do -Wall, git and prerelease does -Werror too dnl use a three digit version number for releases, and four for git/pre -AC_INIT([GStreamer Good Plug-ins],[1.7.2.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-good]) +AC_INIT([GStreamer Good Plug-ins],[1.7.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-good]) AG_GST_INIT @@ -43,11 +43,11 @@ AC_DEFINE_UNQUOTED(GST_API_VERSION, "$GST_API_VERSION", [GStreamer API Version]) AG_GST_LIBTOOL_PREPARE -AS_LIBTOOL(GST, 702, 0, 702) +AS_LIBTOOL(GST, 790, 0, 790) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.7.2.1 -GSTPB_REQ=1.7.2.1 +GST_REQ=1.7.90 +GSTPB_REQ=1.7.90 dnl *** autotools stuff **** diff --git a/docs/plugins/gst-plugins-good-plugins.args b/docs/plugins/gst-plugins-good-plugins.args index 6f5d7ae..f92151c 100644 --- a/docs/plugins/gst-plugins-good-plugins.args +++ b/docs/plugins/gst-plugins-good-plugins.args @@ -1005,7 +1005,7 @@ rw User Agent The User-Agent string to send to the server. -"GStreamer/1.7.2" +"GStreamer/1.7.90" diff --git a/docs/plugins/gst-plugins-good-plugins.hierarchy b/docs/plugins/gst-plugins-good-plugins.hierarchy index 3b87925..aa57409 100644 --- a/docs/plugins/gst-plugins-good-plugins.hierarchy +++ b/docs/plugins/gst-plugins-good-plugins.hierarchy @@ -33,7 +33,7 @@ GObject GstMuLawEnc GstSpeexEnc GstWavpackEnc - GstAudioVisualizer-BaseExtLibvisual + GstAudioVisualizer GstGoom GstGoom2k1 GstAviDemux @@ -177,7 +177,6 @@ GObject GstMatroskaMux GstWebMMux GstMatroskaParse - GstMonoscope GstMultipartDemux GstMultipartMux GstQTDemux @@ -330,6 +329,7 @@ GObject RTPSession SoupSession GInterface + GDatagramBased GIcon GInitable GLoadableIcon diff --git a/docs/plugins/inspect/plugin-1394.xml b/docs/plugins/inspect/plugin-1394.xml index 06b74f0..8717944 100644 --- a/docs/plugins/inspect/plugin-1394.xml +++ b/docs/plugins/inspect/plugin-1394.xml @@ -3,7 +3,7 @@ Source for video data via IEEE1394 interface ../../ext/raw1394/.libs/libgst1394.so libgst1394.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-aasink.xml b/docs/plugins/inspect/plugin-aasink.xml index 7b9587b..0bb5af6 100644 --- a/docs/plugins/inspect/plugin-aasink.xml +++ b/docs/plugins/inspect/plugin-aasink.xml @@ -3,7 +3,7 @@ ASCII Art video sink ../../ext/aalib/.libs/libgstaasink.so libgstaasink.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-alaw.xml b/docs/plugins/inspect/plugin-alaw.xml index 2b2c2d9..dd4ec84 100644 --- a/docs/plugins/inspect/plugin-alaw.xml +++ b/docs/plugins/inspect/plugin-alaw.xml @@ -3,7 +3,7 @@ ALaw audio conversion routines ../../gst/law/.libs/libgstalaw.so libgstalaw.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-alpha.xml b/docs/plugins/inspect/plugin-alpha.xml index 67ce407..bd12763 100644 --- a/docs/plugins/inspect/plugin-alpha.xml +++ b/docs/plugins/inspect/plugin-alpha.xml @@ -3,7 +3,7 @@ adds an alpha channel to video - constant or via chroma-keying ../../gst/alpha/.libs/libgstalpha.so libgstalpha.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-alphacolor.xml b/docs/plugins/inspect/plugin-alphacolor.xml index 45007fc..2b60819 100644 --- a/docs/plugins/inspect/plugin-alphacolor.xml +++ b/docs/plugins/inspect/plugin-alphacolor.xml @@ -3,7 +3,7 @@ RGBA from/to AYUV colorspace conversion preserving the alpha channel ../../gst/alpha/.libs/libgstalphacolor.so libgstalphacolor.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-apetag.xml b/docs/plugins/inspect/plugin-apetag.xml index 4746f9a..dcba157 100644 --- a/docs/plugins/inspect/plugin-apetag.xml +++ b/docs/plugins/inspect/plugin-apetag.xml @@ -3,7 +3,7 @@ APEv1/2 tag reader ../../gst/apetag/.libs/libgstapetag.so libgstapetag.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiofx.xml b/docs/plugins/inspect/plugin-audiofx.xml index ade2538..eb7c1cb 100644 --- a/docs/plugins/inspect/plugin-audiofx.xml +++ b/docs/plugins/inspect/plugin-audiofx.xml @@ -3,7 +3,7 @@ Audio effects plugin ../../gst/audiofx/.libs/libgstaudiofx.so libgstaudiofx.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audioparsers.xml b/docs/plugins/inspect/plugin-audioparsers.xml index 5edb6df..0b55583 100644 --- a/docs/plugins/inspect/plugin-audioparsers.xml +++ b/docs/plugins/inspect/plugin-audioparsers.xml @@ -3,7 +3,7 @@ Parsers for various audio formats ../../gst/audioparsers/.libs/libgstaudioparsers.so libgstaudioparsers.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-auparse.xml b/docs/plugins/inspect/plugin-auparse.xml index 16ba4aa..f7bf110 100644 --- a/docs/plugins/inspect/plugin-auparse.xml +++ b/docs/plugins/inspect/plugin-auparse.xml @@ -3,7 +3,7 @@ parses au streams ../../gst/auparse/.libs/libgstauparse.so libgstauparse.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-autodetect.xml b/docs/plugins/inspect/plugin-autodetect.xml index bde4ec6..eb087c3 100644 --- a/docs/plugins/inspect/plugin-autodetect.xml +++ b/docs/plugins/inspect/plugin-autodetect.xml @@ -3,7 +3,7 @@ Plugin contains auto-detection plugins for video/audio in- and outputs ../../gst/autodetect/.libs/libgstautodetect.so libgstautodetect.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-avi.xml b/docs/plugins/inspect/plugin-avi.xml index 4b8a961..707eda5 100644 --- a/docs/plugins/inspect/plugin-avi.xml +++ b/docs/plugins/inspect/plugin-avi.xml @@ -3,7 +3,7 @@ AVI stream handling ../../gst/avi/.libs/libgstavi.so libgstavi.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cacasink.xml b/docs/plugins/inspect/plugin-cacasink.xml index 895e7f6..3be4f04 100644 --- a/docs/plugins/inspect/plugin-cacasink.xml +++ b/docs/plugins/inspect/plugin-cacasink.xml @@ -3,7 +3,7 @@ Colored ASCII Art video sink ../../ext/libcaca/.libs/libgstcacasink.so libgstcacasink.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cairo.xml b/docs/plugins/inspect/plugin-cairo.xml index 12ecb36..41b759d 100644 --- a/docs/plugins/inspect/plugin-cairo.xml +++ b/docs/plugins/inspect/plugin-cairo.xml @@ -3,7 +3,7 @@ Cairo-based elements ../../ext/cairo/.libs/libgstcairo.so libgstcairo.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cutter.xml b/docs/plugins/inspect/plugin-cutter.xml index 0c89907..b6a32b8 100644 --- a/docs/plugins/inspect/plugin-cutter.xml +++ b/docs/plugins/inspect/plugin-cutter.xml @@ -3,7 +3,7 @@ Audio Cutter to split audio into non-silent bits ../../gst/cutter/.libs/libgstcutter.so libgstcutter.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-debug.xml b/docs/plugins/inspect/plugin-debug.xml index 3f16b3b..dd903b1 100644 --- a/docs/plugins/inspect/plugin-debug.xml +++ b/docs/plugins/inspect/plugin-debug.xml @@ -3,7 +3,7 @@ elements for testing and debugging ../../gst/debugutils/.libs/libgstdebug.so libgstdebug.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-deinterlace.xml b/docs/plugins/inspect/plugin-deinterlace.xml index 874a3c7..881af9e 100644 --- a/docs/plugins/inspect/plugin-deinterlace.xml +++ b/docs/plugins/inspect/plugin-deinterlace.xml @@ -3,7 +3,7 @@ Deinterlacer ../../gst/deinterlace/.libs/libgstdeinterlace.so libgstdeinterlace.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dtmf.xml b/docs/plugins/inspect/plugin-dtmf.xml index 708a23a..2a4fef7 100644 --- a/docs/plugins/inspect/plugin-dtmf.xml +++ b/docs/plugins/inspect/plugin-dtmf.xml @@ -3,7 +3,7 @@ DTMF plugins ../../gst/dtmf/.libs/libgstdtmf.so libgstdtmf.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-dv.xml b/docs/plugins/inspect/plugin-dv.xml index 27fec4c..3d99d25 100644 --- a/docs/plugins/inspect/plugin-dv.xml +++ b/docs/plugins/inspect/plugin-dv.xml @@ -3,7 +3,7 @@ DV demuxer and decoder based on libdv (libdv.sf.net) ../../ext/dv/.libs/libgstdv.so libgstdv.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-effectv.xml b/docs/plugins/inspect/plugin-effectv.xml index aa21a87..5cb875f 100644 --- a/docs/plugins/inspect/plugin-effectv.xml +++ b/docs/plugins/inspect/plugin-effectv.xml @@ -3,7 +3,7 @@ effect plugins from the effectv project ../../gst/effectv/.libs/libgsteffectv.so libgsteffectv.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-equalizer.xml b/docs/plugins/inspect/plugin-equalizer.xml index 5017579..dd8cd21 100644 --- a/docs/plugins/inspect/plugin-equalizer.xml +++ b/docs/plugins/inspect/plugin-equalizer.xml @@ -3,7 +3,7 @@ GStreamer audio equalizers ../../gst/equalizer/.libs/libgstequalizer.so libgstequalizer.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-flac.xml b/docs/plugins/inspect/plugin-flac.xml index c366e23..6ce3a92 100644 --- a/docs/plugins/inspect/plugin-flac.xml +++ b/docs/plugins/inspect/plugin-flac.xml @@ -3,7 +3,7 @@ The FLAC Lossless compressor Codec ../../ext/flac/.libs/libgstflac.so libgstflac.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-flv.xml b/docs/plugins/inspect/plugin-flv.xml index c4d18b7..0f30485 100644 --- a/docs/plugins/inspect/plugin-flv.xml +++ b/docs/plugins/inspect/plugin-flv.xml @@ -3,7 +3,7 @@ FLV muxing and demuxing plugin ../../gst/flv/.libs/libgstflv.so libgstflv.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-flxdec.xml b/docs/plugins/inspect/plugin-flxdec.xml index fe28d2b..decde38 100644 --- a/docs/plugins/inspect/plugin-flxdec.xml +++ b/docs/plugins/inspect/plugin-flxdec.xml @@ -3,7 +3,7 @@ FLC/FLI/FLX video decoder ../../gst/flx/.libs/libgstflxdec.so libgstflxdec.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gdkpixbuf.xml b/docs/plugins/inspect/plugin-gdkpixbuf.xml index b238d89..02de7aa 100644 --- a/docs/plugins/inspect/plugin-gdkpixbuf.xml +++ b/docs/plugins/inspect/plugin-gdkpixbuf.xml @@ -3,7 +3,7 @@ GdkPixbuf-based image decoder, overlay and sink ../../ext/gdk_pixbuf/.libs/libgstgdkpixbuf.so libgstgdkpixbuf.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-goom.xml b/docs/plugins/inspect/plugin-goom.xml index 0615030..c773fd4 100644 --- a/docs/plugins/inspect/plugin-goom.xml +++ b/docs/plugins/inspect/plugin-goom.xml @@ -3,7 +3,7 @@ GOOM visualization filter ../../gst/goom/.libs/libgstgoom.so libgstgoom.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-goom2k1.xml b/docs/plugins/inspect/plugin-goom2k1.xml index ef35c9b..8d2452c 100644 --- a/docs/plugins/inspect/plugin-goom2k1.xml +++ b/docs/plugins/inspect/plugin-goom2k1.xml @@ -3,7 +3,7 @@ GOOM 2k1 visualization filter ../../gst/goom2k1/.libs/libgstgoom2k1.so libgstgoom2k1.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-icydemux.xml b/docs/plugins/inspect/plugin-icydemux.xml index e4ab415..2bd853d 100644 --- a/docs/plugins/inspect/plugin-icydemux.xml +++ b/docs/plugins/inspect/plugin-icydemux.xml @@ -3,7 +3,7 @@ Demux ICY tags from a stream ../../gst/icydemux/.libs/libgsticydemux.so libgsticydemux.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-id3demux.xml b/docs/plugins/inspect/plugin-id3demux.xml index cbd8b20..963b262 100644 --- a/docs/plugins/inspect/plugin-id3demux.xml +++ b/docs/plugins/inspect/plugin-id3demux.xml @@ -3,7 +3,7 @@ Demux ID3v1 and ID3v2 tags from a file ../../gst/id3demux/.libs/libgstid3demux.so libgstid3demux.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-imagefreeze.xml b/docs/plugins/inspect/plugin-imagefreeze.xml index fad2fe8..e6e01e3 100644 --- a/docs/plugins/inspect/plugin-imagefreeze.xml +++ b/docs/plugins/inspect/plugin-imagefreeze.xml @@ -3,7 +3,7 @@ Still frame stream generator ../../gst/imagefreeze/.libs/libgstimagefreeze.so libgstimagefreeze.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-interleave.xml b/docs/plugins/inspect/plugin-interleave.xml index 18fe76b..a14f348 100644 --- a/docs/plugins/inspect/plugin-interleave.xml +++ b/docs/plugins/inspect/plugin-interleave.xml @@ -3,7 +3,7 @@ Audio interleaver/deinterleaver ../../gst/interleave/.libs/libgstinterleave.so libgstinterleave.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-isomp4.xml b/docs/plugins/inspect/plugin-isomp4.xml index 48f6e1d..1d0c189 100644 --- a/docs/plugins/inspect/plugin-isomp4.xml +++ b/docs/plugins/inspect/plugin-isomp4.xml @@ -3,7 +3,7 @@ ISO base media file format support (mp4, 3gpp, qt, mj2) ../../gst/isomp4/.libs/libgstisomp4.so libgstisomp4.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-jack.xml b/docs/plugins/inspect/plugin-jack.xml index 9e2ec02..6d77659 100644 --- a/docs/plugins/inspect/plugin-jack.xml +++ b/docs/plugins/inspect/plugin-jack.xml @@ -3,7 +3,7 @@ JACK audio elements ../../ext/jack/.libs/libgstjack.so libgstjack.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-jpeg.xml b/docs/plugins/inspect/plugin-jpeg.xml index df0a826..a486506 100644 --- a/docs/plugins/inspect/plugin-jpeg.xml +++ b/docs/plugins/inspect/plugin-jpeg.xml @@ -3,7 +3,7 @@ JPeg plugin library ../../ext/jpeg/.libs/libgstjpeg.so libgstjpeg.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-level.xml b/docs/plugins/inspect/plugin-level.xml index cb7d002..969dbd5 100644 --- a/docs/plugins/inspect/plugin-level.xml +++ b/docs/plugins/inspect/plugin-level.xml @@ -3,7 +3,7 @@ Audio level plugin ../../gst/level/.libs/libgstlevel.so libgstlevel.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-matroska.xml b/docs/plugins/inspect/plugin-matroska.xml index d5ad58a..3e2deca 100644 --- a/docs/plugins/inspect/plugin-matroska.xml +++ b/docs/plugins/inspect/plugin-matroska.xml @@ -3,7 +3,7 @@ Matroska and WebM stream handling ../../gst/matroska/.libs/libgstmatroska.so libgstmatroska.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-mulaw.xml b/docs/plugins/inspect/plugin-mulaw.xml index b07a27c..5076249 100644 --- a/docs/plugins/inspect/plugin-mulaw.xml +++ b/docs/plugins/inspect/plugin-mulaw.xml @@ -3,7 +3,7 @@ MuLaw audio conversion routines ../../gst/law/.libs/libgstmulaw.so libgstmulaw.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-multifile.xml b/docs/plugins/inspect/plugin-multifile.xml index 5ff3245..8bbddf9 100644 --- a/docs/plugins/inspect/plugin-multifile.xml +++ b/docs/plugins/inspect/plugin-multifile.xml @@ -3,7 +3,7 @@ Reads/Writes buffers from/to sequentially named files ../../gst/multifile/.libs/libgstmultifile.so libgstmultifile.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-multipart.xml b/docs/plugins/inspect/plugin-multipart.xml index 0990371..eb075bd 100644 --- a/docs/plugins/inspect/plugin-multipart.xml +++ b/docs/plugins/inspect/plugin-multipart.xml @@ -3,7 +3,7 @@ multipart stream manipulation ../../gst/multipart/.libs/libgstmultipart.so libgstmultipart.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-navigationtest.xml b/docs/plugins/inspect/plugin-navigationtest.xml index 9a9afe9..bed8dc6 100644 --- a/docs/plugins/inspect/plugin-navigationtest.xml +++ b/docs/plugins/inspect/plugin-navigationtest.xml @@ -3,7 +3,7 @@ Template for a video filter ../../gst/debugutils/.libs/libgstnavigationtest.so libgstnavigationtest.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-oss4.xml b/docs/plugins/inspect/plugin-oss4.xml index 0483a5b..2b4dcd7 100644 --- a/docs/plugins/inspect/plugin-oss4.xml +++ b/docs/plugins/inspect/plugin-oss4.xml @@ -3,7 +3,7 @@ Open Sound System (OSS) version 4 support for GStreamer ../../sys/oss4/.libs/libgstoss4audio.so libgstoss4audio.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ossaudio.xml b/docs/plugins/inspect/plugin-ossaudio.xml index 3ef3779..2b0239a 100644 --- a/docs/plugins/inspect/plugin-ossaudio.xml +++ b/docs/plugins/inspect/plugin-ossaudio.xml @@ -3,7 +3,7 @@ OSS (Open Sound System) support for GStreamer ../../sys/oss/.libs/libgstossaudio.so libgstossaudio.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-png.xml b/docs/plugins/inspect/plugin-png.xml index d6de4e3..6619b5f 100644 --- a/docs/plugins/inspect/plugin-png.xml +++ b/docs/plugins/inspect/plugin-png.xml @@ -3,7 +3,7 @@ PNG plugin library ../../ext/libpng/.libs/libgstpng.so libgstpng.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-pulseaudio.xml b/docs/plugins/inspect/plugin-pulseaudio.xml index 879b6e5..f6fc066 100644 --- a/docs/plugins/inspect/plugin-pulseaudio.xml +++ b/docs/plugins/inspect/plugin-pulseaudio.xml @@ -3,7 +3,7 @@ PulseAudio plugin library ../../ext/pulse/.libs/libgstpulse.so libgstpulse.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-replaygain.xml b/docs/plugins/inspect/plugin-replaygain.xml index d414d78..126edc8 100644 --- a/docs/plugins/inspect/plugin-replaygain.xml +++ b/docs/plugins/inspect/plugin-replaygain.xml @@ -3,7 +3,7 @@ ReplayGain volume normalization ../../gst/replaygain/.libs/libgstreplaygain.so libgstreplaygain.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rtp.xml b/docs/plugins/inspect/plugin-rtp.xml index 9b2e342..3cb1bf8 100644 --- a/docs/plugins/inspect/plugin-rtp.xml +++ b/docs/plugins/inspect/plugin-rtp.xml @@ -3,10 +3,10 @@ Real-time protocol plugins ../../gst/rtp/.libs/libgstrtp.so libgstrtp.so - 1.7.2.1 + 1.7.90 LGPL gst-plugins-good - GStreamer Good Plug-ins git + GStreamer Good Plug-ins source release Unknown package origin diff --git a/docs/plugins/inspect/plugin-rtpmanager.xml b/docs/plugins/inspect/plugin-rtpmanager.xml index 324117c..d976f80 100644 --- a/docs/plugins/inspect/plugin-rtpmanager.xml +++ b/docs/plugins/inspect/plugin-rtpmanager.xml @@ -3,7 +3,7 @@ RTP session management plugin library ../../gst/rtpmanager/.libs/libgstrtpmanager.so libgstrtpmanager.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rtsp.xml b/docs/plugins/inspect/plugin-rtsp.xml index 96fb197..56fe15f 100644 --- a/docs/plugins/inspect/plugin-rtsp.xml +++ b/docs/plugins/inspect/plugin-rtsp.xml @@ -3,7 +3,7 @@ transfer data via RTSP ../../gst/rtsp/.libs/libgstrtsp.so libgstrtsp.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-shapewipe.xml b/docs/plugins/inspect/plugin-shapewipe.xml index 9b89dca..e2f0470 100644 --- a/docs/plugins/inspect/plugin-shapewipe.xml +++ b/docs/plugins/inspect/plugin-shapewipe.xml @@ -3,7 +3,7 @@ Shape Wipe transition filter ../../gst/shapewipe/.libs/libgstshapewipe.so libgstshapewipe.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-shout2send.xml b/docs/plugins/inspect/plugin-shout2send.xml index 5ffec97..71a1e54 100644 --- a/docs/plugins/inspect/plugin-shout2send.xml +++ b/docs/plugins/inspect/plugin-shout2send.xml @@ -3,7 +3,7 @@ Sends data to an icecast server using libshout2 ../../ext/shout2/.libs/libgstshout2.so libgstshout2.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good libshout2 diff --git a/docs/plugins/inspect/plugin-smpte.xml b/docs/plugins/inspect/plugin-smpte.xml index 3614a21..5c94a65 100644 --- a/docs/plugins/inspect/plugin-smpte.xml +++ b/docs/plugins/inspect/plugin-smpte.xml @@ -3,7 +3,7 @@ Apply the standard SMPTE transitions on video images ../../gst/smpte/.libs/libgstsmpte.so libgstsmpte.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-soup.xml b/docs/plugins/inspect/plugin-soup.xml index f300592..21cd7ee 100644 --- a/docs/plugins/inspect/plugin-soup.xml +++ b/docs/plugins/inspect/plugin-soup.xml @@ -3,7 +3,7 @@ libsoup HTTP client src/sink ../../ext/soup/.libs/libgstsouphttpsrc.so libgstsouphttpsrc.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-spectrum.xml b/docs/plugins/inspect/plugin-spectrum.xml index 6091cca..4c62aef 100644 --- a/docs/plugins/inspect/plugin-spectrum.xml +++ b/docs/plugins/inspect/plugin-spectrum.xml @@ -3,7 +3,7 @@ Run an FFT on the audio signal, output spectrum data ../../gst/spectrum/.libs/libgstspectrum.so libgstspectrum.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-speex.xml b/docs/plugins/inspect/plugin-speex.xml index 655353d..2194e68 100644 --- a/docs/plugins/inspect/plugin-speex.xml +++ b/docs/plugins/inspect/plugin-speex.xml @@ -3,7 +3,7 @@ Speex plugin library ../../ext/speex/.libs/libgstspeex.so libgstspeex.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-taglib.xml b/docs/plugins/inspect/plugin-taglib.xml index 9640609..f72982f 100644 --- a/docs/plugins/inspect/plugin-taglib.xml +++ b/docs/plugins/inspect/plugin-taglib.xml @@ -3,7 +3,7 @@ Tag writing plug-in based on taglib ../../ext/taglib/.libs/libgsttaglib.so libgsttaglib.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-udp.xml b/docs/plugins/inspect/plugin-udp.xml index 95ac3c7..c08d81f 100644 --- a/docs/plugins/inspect/plugin-udp.xml +++ b/docs/plugins/inspect/plugin-udp.xml @@ -3,7 +3,7 @@ transfer data via UDP ../../gst/udp/.libs/libgstudp.so libgstudp.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-video4linux2.xml b/docs/plugins/inspect/plugin-video4linux2.xml index 7543486..d380dbf 100644 --- a/docs/plugins/inspect/plugin-video4linux2.xml +++ b/docs/plugins/inspect/plugin-video4linux2.xml @@ -3,7 +3,7 @@ elements for Video 4 Linux ../../sys/v4l2/.libs/libgstvideo4linux2.so libgstvideo4linux2.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videobox.xml b/docs/plugins/inspect/plugin-videobox.xml index 7bc22e8..c950bd1 100644 --- a/docs/plugins/inspect/plugin-videobox.xml +++ b/docs/plugins/inspect/plugin-videobox.xml @@ -3,7 +3,7 @@ resizes a video by adding borders or cropping ../../gst/videobox/.libs/libgstvideobox.so libgstvideobox.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videocrop.xml b/docs/plugins/inspect/plugin-videocrop.xml index 557a0d9..7dc1a6b 100644 --- a/docs/plugins/inspect/plugin-videocrop.xml +++ b/docs/plugins/inspect/plugin-videocrop.xml @@ -3,7 +3,7 @@ Crops video into a user-defined region ../../gst/videocrop/.libs/libgstvideocrop.so libgstvideocrop.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videofilter.xml b/docs/plugins/inspect/plugin-videofilter.xml index 8b2e423..bf90851 100644 --- a/docs/plugins/inspect/plugin-videofilter.xml +++ b/docs/plugins/inspect/plugin-videofilter.xml @@ -3,7 +3,7 @@ Video filters plugin ../../gst/videofilter/.libs/libgstvideofilter.so libgstvideofilter.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videomixer.xml b/docs/plugins/inspect/plugin-videomixer.xml index c91c6e7..ef225c0 100644 --- a/docs/plugins/inspect/plugin-videomixer.xml +++ b/docs/plugins/inspect/plugin-videomixer.xml @@ -3,7 +3,7 @@ Video mixer ../../gst/videomixer/.libs/libgstvideomixer.so libgstvideomixer.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-vpx.xml b/docs/plugins/inspect/plugin-vpx.xml index d1e24e9..5e709e7 100644 --- a/docs/plugins/inspect/plugin-vpx.xml +++ b/docs/plugins/inspect/plugin-vpx.xml @@ -3,7 +3,7 @@ VP8 plugin ../../ext/vpx/.libs/libgstvpx.so libgstvpx.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-wavenc.xml b/docs/plugins/inspect/plugin-wavenc.xml index 376c567..a5b7bec 100644 --- a/docs/plugins/inspect/plugin-wavenc.xml +++ b/docs/plugins/inspect/plugin-wavenc.xml @@ -3,7 +3,7 @@ Encode raw audio into WAV ../../gst/wavenc/.libs/libgstwavenc.so libgstwavenc.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-wavpack.xml b/docs/plugins/inspect/plugin-wavpack.xml index 2827113..a253aa3 100644 --- a/docs/plugins/inspect/plugin-wavpack.xml +++ b/docs/plugins/inspect/plugin-wavpack.xml @@ -3,7 +3,7 @@ Wavpack lossless/lossy audio format handling ../../ext/wavpack/.libs/libgstwavpack.so libgstwavpack.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-wavparse.xml b/docs/plugins/inspect/plugin-wavparse.xml index b53bb4e..3a00cf3 100644 --- a/docs/plugins/inspect/plugin-wavparse.xml +++ b/docs/plugins/inspect/plugin-wavparse.xml @@ -3,7 +3,7 @@ Parse a .wav file into raw audio ../../gst/wavparse/.libs/libgstwavparse.so libgstwavparse.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ximagesrc.xml b/docs/plugins/inspect/plugin-ximagesrc.xml index 4402cc4..a4e2ab9 100644 --- a/docs/plugins/inspect/plugin-ximagesrc.xml +++ b/docs/plugins/inspect/plugin-ximagesrc.xml @@ -3,7 +3,7 @@ X11 video input plugin using standard Xlib calls ../../sys/ximage/.libs/libgstximagesrc.so libgstximagesrc.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-y4menc.xml b/docs/plugins/inspect/plugin-y4menc.xml index 533b3fa..e254cdf 100644 --- a/docs/plugins/inspect/plugin-y4menc.xml +++ b/docs/plugins/inspect/plugin-y4menc.xml @@ -3,7 +3,7 @@ Encodes a YUV frame into the yuv4mpeg format (mjpegtools) ../../gst/y4m/.libs/libgsty4menc.so libgsty4menc.so - 1.7.2 + 1.7.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/gst-plugins-good.doap b/gst-plugins-good.doap index 6a3b268..78bda4e 100644 --- a/gst-plugins-good.doap +++ b/gst-plugins-good.doap @@ -34,6 +34,16 @@ the plug-in code, LGPL or LGPL-compatible for the supporting library). + 1.7.90 + master + + 2016-03-01 + + + + + + 1.7.2 master diff --git a/win32/common/config.h b/win32/common/config.h index 0f50aea..87cabcc 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -64,7 +64,7 @@ #define GST_PACKAGE_ORIGIN "Unknown package origin" /* GStreamer package release date/time for plugins as YYYY-MM-DD */ -#define GST_PACKAGE_RELEASE_DATETIME "2016-02-19" +#define GST_PACKAGE_RELEASE_DATETIME "2016-03-01" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -395,7 +395,7 @@ #define PACKAGE_NAME "GStreamer Good Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Good Plug-ins 1.7.2" +#define PACKAGE_STRING "GStreamer Good Plug-ins 1.7.90" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-good" @@ -404,7 +404,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.7.2" +#define PACKAGE_VERSION "1.7.90" /* directory where plugins are located */ #ifdef _DEBUG @@ -435,7 +435,7 @@ #undef TARGET_CPU /* Version number of package */ -#define VERSION "1.7.2" +#define VERSION "1.7.90" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */