From: Sebastian Dröge Date: Fri, 7 Apr 2017 13:31:56 +0000 (+0300) Subject: Release 1.11.90 X-Git-Tag: 1.19.3~509^2~2144 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4da670a1a287a8b82d701b62c3808a26cc53098;p=platform%2Fupstream%2Fgstreamer.git Release 1.11.90 --- diff --git a/ChangeLog b/ChangeLog index feb21f5..55eebdc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,816 @@ +=== release 1.11.90 === + +2017-04-07 Sebastian Dröge + + * configure.ac: + releasing 1.11.90 + +2017-04-07 15:06:30 +0300 Sebastian Dröge + + * po/el.po: + po: Update translations + +2017-04-06 12:01:00 +0200 Edward Hervey + + * gst/audioparsers/gstaacparse.c: + aacparse: streamline and improve AudioSpecificConfig parsing + AudioSpecifigConfig is used in a variety of AAC streams but was + being parsed differently. Instead, make everyone use the same parsing. + * Remove unused 'bits' field (it was always set to 0 if present) + * Add proper GAConfig parsing (to know the number of samples per frame + if present). + Fixes wrong rate/channels configuration in streams coming from qtdemux + https://bugzilla.gnome.org/show_bug.cgi?id=780966 + +2017-04-05 09:46:31 -0400 Nicolas Dufresne + + * sys/v4l2/gstv4l2videodec.c: + v4l2videodec: Fix 32bit only printf format + The previous patch was using %llu for 64bits printf, which is 32bit + specific. We also trace the latency in time human readable form now. + +2016-03-16 16:22:48 +0100 Philipp Zabel + + * sys/v4l2/gstv4l2object.c: + v4l2object: set streamparm for outputs that support it + Without a specified framerate from the sink, the decoder frame interval + should be set using the framerate of the encoded video stream. + Therefore, the v4l2object should be able to change the framerate on the + output if the V4L2 device accepts it. + This is also necessary for mem2mem encoders so that their bitrate + calculation code may work correctly and they may report the correct + frame duration on the capture queue. + https://bugzilla.gnome.org/show_bug.cgi?id=779466 + +2016-03-16 16:24:55 +0100 Philipp Zabel + + * sys/v4l2/gstv4l2videodec.c: + v4l2videodec: only set latency if the frame duration is valid + If the duration of the v4l2object is GST_CLOCK_TIME_NONE, because the + sink did not specify a framerate in the caps and the driver accepts the + framerate, the decoder element uses GST_CLOCK_TIME_NONE to calculate and + set the element latency. + While this is a bug of the capture driver, the decoder element should + not use the invalid duration to calculate a latency, but print a warning + instead. + https://bugzilla.gnome.org/show_bug.cgi?id=779466 + +2016-11-23 12:17:55 -0500 Olivier Crête + + * sys/v4l2/gstv4l2sink.c: + v4l2sink: Block in preroll_wait on unlock + The correct behaviour of anything stuck in the ->render() function + between ->unlock() and ->unlock_stop() is to call + gst_base_sink_wait_preroll() and only return an error if this returns an + error, otherwise, it must continue where it left off! + https://bugzilla.gnome.org/show_bug.cgi?id=774945 + +2017-04-05 15:55:20 +1000 Jan Schmidt + + * ext/vpx/gstvp9dec.c: + vp9dec: Add warnings for unsupported frame formats + At least output an element warning on the bus when we + encounter a frame format GStreamer doesn't currently support. + +2017-04-04 17:55:13 +0200 Edward Hervey + + * gst/audioparsers/gstaacparse.c: + aacparse: Handle Parametric Stereo with HE-AAC(v2) + According to ISO/IEC:14496-2:2009 , in the case of HE-AACv2 (audioObjecType + 29) parametric stereo is used (a single mono track is used and then + transformations are applied to it to provide a stereo output). + We therefore report two channels in the case where there is one reported + in the audioChannelConfiguration. + Fixes the various issues where a demuxer would report two channels, but + then the parser would say there's only one channel, and then the decoder + would output two channels. + +2017-04-04 15:22:25 +0300 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Simplify buffer refcounting in add_buffer() and remove unneeded NULL checks + +2017-04-04 15:08:33 +0300 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Select the best pad based on the cached last_buf if any + last_buf is the one we're going to write next, not buf. As such we + should check timestamps against that one if there is one to select the + earliest pad. + Also remember the currently selected pad in the very beginning when + storing the first last_buf. + This both solves some edge cases where not the correct next pad was + selected corresponding to the target interleave. + +2017-04-04 15:07:40 +0300 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Error out immediately if a timecode is to be written but downstream return not-OK + +2017-04-03 11:34:49 +0200 Edward Hervey + + * gst/isomp4/qtdemux.c: + qtdemux: Update variables before early exit + This is an update of d78d5896272d78df41e696fac929e7dfb3bb3dfa + We still exit as early as possible in case of non-ok/non-unlinked combined + flow, but we first make sure that we update the internal position variables. + This ensures that if upstreams "ignores" the flow return (and carries on pushing), + we don't end up processing data with completely bogus variables/positions. + +2017-03-24 00:11:13 +1300 Douglas Bagnall + + * gst/interleave/interleave.c: + * gst/interleave/interleave.h: + interleave: avoid using uninitialised ordering_map + If self->channel_positions == NULL (which seems unlikely), + self->default_channels_ordering_map will be used unintialised. + We avoid that by keeping track of the channel_mask, which is set when + the ordering map is initialised. + https://bugzilla.gnome.org/show_bug.cgi?id=780331 + +2017-03-23 23:56:31 +1300 Douglas Bagnall + + * gst/interleave/interleave.c: + interleave: don't overflow channel map with >64 channels + When there are more than 64 channels, we don't want to exceed the + bounds of the ordering_map buffer, and in these cases we don't want to + rempa at all. Here we avoid doing that. + https://bugzilla.gnome.org/show_bug.cgi?id=780331 + +2017-03-28 14:23:16 -0300 Thibault Saunier + + * tests/check/meson.build: + meson: Use get_pkgconfig_variable instead of calling pkg-config ourself + It is avalaible in meson 0.36 which is now are requirement + +2017-03-28 14:22:41 -0300 Thibault Saunier + + * pkgconfig/gstreamer-plugins-good.pc.in: + * pkgconfig/meson.build: + pkgconfig: Do not ever build an installed .pc file + +2017-03-28 11:15:53 -0300 Thibault Saunier + + * tests/check/meson.build: + meson: test: Fix environment object usage + +2017-03-28 11:14:47 -0300 Thibault Saunier + + * meson.build: + * pkgconfig/gstreamer-plugins-good.pc.in: + * pkgconfig/meson.build: + pkgconfig: Generate the pkg-config with meson too + +2017-03-27 21:52:00 +0300 Sebastian Dröge + + * gst/isomp4/qtdemux.c: + qtdemux: In gap mode, consider the mdat offset when calculating the remaining mdat size + The mdat generally does not start at offset 0, we have to include the + size of the moof and whatever else was in front of the mdat. + +2017-03-27 11:43:31 +0300 Sebastian Dröge + + * gst/isomp4/atomsrecovery.c: + atomsrecovery: Error out when fseek() fails instead of silently ignoring + CID 1403262 + +2017-03-23 22:13:05 +0100 Carlos Rafael Giani + + * sys/v4l2/gstv4l2object.c: + v4l2object: Also add videometa if there is padding to the right and bottom + https://bugzilla.gnome.org/show_bug.cgi?id=780478 + +2017-03-21 12:54:27 +0200 George Kiagiadakis + + * gst/rtpmanager/gstrtpmux.c: + rtpmux: fix output segment and buffer DTS to correspond to the flattened PTS + https://bugzilla.gnome.org/show_bug.cgi?id=780347 + +2017-03-23 17:53:19 +0200 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + * gst/isomp4/gstqtmux.h: + qtmux: Remove some unused variables + +2017-03-23 15:01:16 +0200 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Remove a couple of unneeded levels of indentation + +2017-03-22 18:18:40 +0000 Enrique Ocaña González + + * gst/isomp4/qtdemux.c: + qtdemux: distinguish TFDT with value 0 from no TFDT at all + TFDTs with time 0 are being ignored since commit 1fc3d42f. They're + mistaken with the case of not having TFDT, but those two cases + must be distinguished in some way. + This patch passes an extra boolean flag when the TFDT is present. + This is now the condition being evaluated, instead of checking for + 0 time. + https://bugzilla.gnome.org/show_bug.cgi?id=780410 + +2017-03-22 19:15:09 +0200 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Reset current chunk after writing out timecode + If we have multiple tracks with timecodes, or it's not the first track + that has timecodes, or not the first buffer, we already started a chunk + for media data. We now need to "close" that chunk because we wrote data + for the timecode track and a new chunk has to be started for the + original track the next time it has data. + +2017-03-22 18:52:51 +0200 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + * gst/isomp4/gstqtmux.h: + qtmux: Do timecode handling per track, not per muxer instance + There could be multiple video tracks with timecodes. + +2017-03-22 00:38:51 +1100 Jan Schmidt + + * gst/isomp4/qtdemux.c: + * gst/matroska/matroska-demux.c: + qtdemux: matroskademux: Ignore repeated seek events + Similar to what was done in adaptivedemux, ignore seek + events we've already handled - such as when they are received + on every srcpad of files with lots of streams. + +2017-03-21 14:55:32 +0200 Sebastian Dröge + + * gst/isomp4/qtdemux.c: + * gst/isomp4/qtdemux.h: + dashdemux: Update mdatleft from overall mdatsize and offset when observing a gap + Otherwise mdatleft will have a value calculated from the initial + mdatsize minus the parts of the stream that we saw, which is not + including all the parts of the stream that might've been skipped. + +2017-03-20 17:03:32 +0000 Tim-Philipp Müller + + * ext/soup/gstsouphttpsrc.c: + * gst/audioparsers/gstmpegaudioparse.c: + docs: update two references to the removed 'mad' plugin + https://bugzilla.gnome.org/show_bug.cgi?id=776140 + +2017-03-20 12:03:29 +0200 George Kiagiadakis + + * gst/rtpmanager/gstrtprtxqueue.c: + rtprtxqueue: add basic documentation and example pipelines + Mostly explaining the difference between rtprtxqueue and rtprtxsend. + +2017-03-17 20:58:28 -0400 Nicolas Dufresne + + * sys/v4l2/meson.build: + v4l2: Fix meson plugin shared object name + It didn't match between AutoMake and Meson, and the Meson name + didn't math the plugin name (video4linux2). + +2017-03-16 18:20:54 +0200 George Kiagiadakis + + * gst/rtpmanager/gstrtprtxreceive.c: + rtprtxreceive: fix example pipelines and improve the documentation + https://bugzilla.gnome.org/show_bug.cgi?id=771383 + +2017-03-17 14:10:40 +0000 Vincent Penquerc'h + + * gst/audioparsers/gstflacparse.c: + * gst/audioparsers/gstflacparse.h: + flacparse: fix playback if sample number does not start at 0 + This reverts commit 29b807685d3c962bbe8afe351c5dca97d59eb5e0, while + fixing the original breaking tests/check/pipelines/flacdec. + +2017-03-17 11:30:04 +0000 Vincent Penquerc'h + + * gst/audioparsers/gstflacparse.c: + * gst/audioparsers/gstflacparse.h: + Revert "flacparse: fix playback if sample number does not start at 0" + This breaks gst-validate on the build server (though not locally), + and a unit test, and I can't run unit tests right now for some + unrelated reason. + This reverts commit 0747b56f8e7f4731d67f8d13a4bdc453dde0fdf7. + +2017-03-16 17:44:41 +0200 George Kiagiadakis + + * gst/rtpmanager/rtpsession.c: + rtpsession: print the correct variable in debug statement + This debug statement is meant to print the time since the last (early) + RTCP transmission, not the last regular RTCP transmission (which also + happens to be set a few lines above to current_time, so the debug output + is just confusing) + +2017-03-16 17:42:27 +0200 George Kiagiadakis + + * gst/rtpmanager/gstrtprtxsend.c: + rtprtxsend: convert LOG message to TRACE + This is printed too often (for every chained buffer!) and just clutters the logs. + +2017-03-16 14:58:45 +0100 Miguel París Díaz + + * gst/rtpmanager/rtpsource.c: + rtpsource: fix warning message + https://bugzilla.gnome.org/show_bug.cgi?id=780105 + +2017-03-16 13:54:54 +0000 Vincent Penquerc'h + + * gst/audioparsers/gstflacparse.c: + * gst/audioparsers/gstflacparse.h: + flacparse: fix playback if sample number does not start at 0 + https://bugzilla.gnome.org/show_bug.cgi?id=777738 + +2017-03-15 18:58:55 +0100 Miguel París Díaz + + * gst/rtpmanager/rtpsource.c: + * gst/rtpmanager/rtpsource.h: + rtpsource: get clock-rate from pt if needed to generate SR + https://bugzilla.gnome.org/show_bug.cgi?id=780105 + +2017-03-16 13:52:48 +0200 Sebastian Dröge + + * ext/soup/gstsouphttpsrc.c: + souphttpsrc: Include GStreamer souphttpsrc version in default User-Agent string + +2017-03-16 00:41:44 +0000 Tim-Philipp Müller + + * gst/rtp/gstrtph264depay.c: + rtph264depay: fix crash with empty sprops-parameters + https://bugzilla.gnome.org/show_bug.cgi?id=780040 + +2017-03-11 21:20:40 -0800 Thiago Santos + + * gst/isomp4/atomsrecovery.c: + * gst/isomp4/atomsrecovery.h: + atomsrecovery: also handle extra atoms after 'mdia' in a 'trak' + Take into account the atoms at the end of the 'trak' atom when + recovering it. So that its size (already computed and added in the trak + size) isn't making offsets wrong. + https://bugzilla.gnome.org/show_bug.cgi?id=771478 + +2017-03-11 12:56:33 -0800 Thiago Santos + + * gst/isomp4/gstqtmux.c: + qtmux: avoid fallthrough to moovrecovery failure section + Return before that to preserve our successfull results, otherwise no + moov recovery information would be written + https://bugzilla.gnome.org/show_bug.cgi?id=771478 + +2017-03-11 12:27:28 -0800 Thiago Santos + + * gst/isomp4/atomsrecovery.c: + atomsrecovery: expect more atom types at the headers + Skip more atoms at the header until it finds the 'mdat' to continue the + moov recovery + https://bugzilla.gnome.org/show_bug.cgi?id=771478 + +2017-03-14 16:42:25 -0400 Olivier Crête + + * Makefile.am: + * configure.ac: + * tests/examples/Makefile.am: + * tests/examples/pulse/.gitignore: + * tests/examples/pulse/Makefile.am: + * tests/examples/pulse/pulse.c: + pulse example: Remove + That example only tested the property probe interface, which has been removed. + The same kind of thing can now be done with the generic gst-device-monitor tool. + +2017-03-14 16:38:02 -0400 Olivier Crête + + * sys/v4l2/gstv4l2object.h: + v4l2: Remove unused macro + +2017-03-14 16:35:25 -0400 Olivier Crête + + * sys/v4l2/gstv4l2object.c: + * sys/v4l2/gstv4l2object.h: + v4l2: Remove unused definitions + +2017-03-14 10:10:19 +0100 Emeric Grange + + * gst/isomp4/fourcc.h: + * gst/isomp4/gstqtmux.c: + * gst/isomp4/gstqtmuxmap.c: + * gst/isomp4/qtdemux.c: + * gst/isomp4/qtdemux_types.c: + qtmux: add CineForm support + https://bugzilla.gnome.org/show_bug.cgi?id=780024 + +2017-03-14 15:09:44 +0200 Sebastian Dröge + + * gst/isomp4/gstqtmux.c: + qtmux: Only create new chunks if we have more than a single stream + There's no point in creating multiple chunks otherwise, it only wastes + some bytes for storing the chunk offsets. + +2017-03-14 10:09:46 +0100 Emeric Grange + + * gst/isomp4/qtdemux.c: + qtdemux: add S16L support + https://bugzilla.gnome.org/show_bug.cgi?id=780022 + +2017-03-14 15:48:08 +1100 Jan Schmidt + + * tests/check/elements/splitmux.c: + splitmux test: Use passed first/last timestamps + Don't hard-code the expected timestamp range, use the + values the caller is passing in. + +2017-03-12 11:42:25 -0400 Nicolas Dufresne + + * Makefile.am: + * docs/plugins/inspect/plugin-soup.xml: + Add old plugin names to cruft list + This will help fixing uninstalled setup. Also fix missing path + correction in one of the plugin xml. + https://bugzilla.gnome.org/show_bug.cgi?id=779344 + +2016-12-15 12:38:40 +0100 Michael Dutka + + * gst/rtp/gstrtph264depay.c: + * gst/rtp/gstrtph265depay.c: + rtph264depay, rtph265depay: remove stray g_debug() + https://bugzilla.gnome.org/show_bug.cgi?id=779858 + +2017-03-10 11:24:14 +0100 Wim Taymans + + * gst/isomp4/gstqtmux.c: + qtmux: init fourcc + Initialize the fourcc to 0 so that we can detect failure later. + +2017-03-08 22:50:52 -0500 Nicolas Dufresne + + * tests/check/Makefile.am: + * tests/check/elements/level.c: + * tests/check/elements/rglimiter.c: + tests: Add missing LDADD for libm in tests using math.h + Also, remove the math.h include for the one that just prentend to need + it. + +2017-03-08 22:15:46 -0500 Nicolas Dufresne + + * Makefile.am: + * docs/plugins/gst-plugins-good-plugins-docs.sgml: + Fix shout2 plugin doc generation + In the previous patch, we also renamed shout2send to shout2, so it does + not clash with it's feature. Though we forgot to rename it in the doc + reference. This patch also add a cruft detection on the xml that made me + miss this error. + https://bugzilla.gnome.org/show_bug.cgi?id=779344 + +2017-03-04 10:52:47 -0500 Nicolas Dufresne + + * docs/plugins/inspect/plugin-oss4.xml: + * docs/plugins/inspect/plugin-pulseaudio.xml: + * docs/plugins/inspect/plugin-shout2.xml: + * ext/pulse/Makefile.am: + * ext/pulse/meson.build: + * ext/shout2/gstshout2.c: + * ext/soup/Makefile.am: + * ext/soup/meson.build: + * sys/oss4/Makefile.am: + Fix plugin filenames to match plugin names + - libgstpulse.so becomes libgstpulseaudio.so + - libgstsouphttpsrc.so becomes libgstsoup.so + - libgstoss4audio.so becomes libgstoss4.so + https://bugzilla.gnome.org/show_bug.cgi?id=779344 + +2017-03-08 16:01:02 +0200 Sebastian Dröge + + * gst/isomp4/atoms.c: + qtmux: Free EDTS instead of just clearing it and setting it to NULL + +2017-03-08 15:27:32 +0200 Sebastian Dröge + + * gst/isomp4/atoms.c: + * gst/isomp4/gstqtmux.c: + qtmux: Fix some memory leaks related to timecode tracks + +2017-03-04 00:34:44 +1100 Jan Schmidt + + * tests/check/elements/splitmux.c: + splitmux: Add unit test for reverse playback + Ensure that reverse playback works and generates the range + of timestamps (0-3s) we expect, in monotonically descending order. + +2017-02-28 11:50:45 +1100 Jan Schmidt + + * gst/multifile/gstsplitmuxsrc.c: + splitmuxsrc: Fix reverse playback + Fix the check for whether the start time of the segment has + been reached when playing in reverse. Otherwise, playback + stops after reaching the start of any file part, instead of + continuing until all parts within the segment have played + +2017-02-22 03:01:31 +1100 Jan Schmidt + + * gst/isomp4/qtdemux.c: + qtdemux: Don't lose crypto info on a new moof + We parse the next moof in advance of having pushed + all samples from the previous one in some cases, and + we'll still need the crypto info from the previous + fragment so keep around any unused crypto info entries + when adding new ones + +2017-02-27 13:55:58 +0200 Sebastian Dröge + + * gst/isomp4/atoms.c: + * gst/isomp4/atoms.h: + * gst/isomp4/gstqtmux.c: + qtmux: Update modification times when sending the moov + https://bugzilla.gnome.org/show_bug.cgi?id=779422 + +2017-03-01 16:11:47 -0800 Michael Smith + + * gst/audioparsers/gstsbcparse.h: + sbcparse: Fix up values for allocation enumeration. + https://bugzilla.gnome.org/show_bug.cgi?id=779389 + +2017-02-28 13:10:50 +0200 George Kiagiadakis + + * gst/rtpmanager/gstrtprtxreceive.c: + rtprtxreceive: fix potential leak of old, unassociated, association requests + https://bugzilla.gnome.org/show_bug.cgi?id=722560 + +2017-02-28 15:47:23 +0200 Sebastian Dröge + + * gst/avi/gstavidemux.c: + avidemux: Don't increment -1 / unset indices + CID 1398545 + +2017-02-28 15:20:31 +0200 Sebastian Dröge + + * gst/isomp4/qtdemux.c: + qtdemux: Protect against NULL pointer dereference for streams without caps + CID 1363332 + +2017-02-28 12:57:02 +0200 Sebastian Dröge + + * gst/rtp/gstrtph263pay.c: + rtph263pay: Free mac on errors + CID 1212149 + +2017-02-28 12:45:24 +0200 Sebastian Dröge + + * gst/rtp/gstrtpvorbispay.c: + rtpvorbispay: Add missing break to for loop + +2017-02-28 11:02:54 +0100 Edward Hervey + + * tests/check/Makefile.am: + check: Fix splitmux test CFLAGS + Needs to know where the gstapp headers are + +2017-02-27 21:02:51 +0200 Sebastian Dröge + + * gst/isomp4/qtdemux.c: + qtdemux: Fix compilation with gcc 7 + qtdemux.c: In function ‘qtdemux_parse_samples’: + qtdemux.c:8450:39: error: ‘*’ in boolean context, suggest ‘&&’ instead [-Werror=int-in-bool-context] + if (stream->samples_per_frame * stream->bytes_per_frame) { + ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~ + +2017-02-27 21:01:23 +0200 Sebastian Dröge + + * gst/audioparsers/gstmpegaudioparse.c: + mpegaudioparse: Fix compilation with gcc 7 + gstmpegaudioparse.c: In function ‘gst_mpeg_audio_parse_reset’: + gstmpegaudioparse.c:209:3: error: ‘memset’ used with length equal to number of elements without multiplication by element size [-Werror=memset-elt-size] + memset (mp3parse->xing_seek_table_inverse, 0, 256); + ^~~~~~ + gstmpegaudioparse.c: In function ‘gst_mpeg_audio_parse_handle_first_frame’: + gstmpegaudioparse.c:951:7: error: ‘memset’ used with length equal to number of elements without multiplication by element size [-Werror=memset-elt-size] + memset (mp3parse->xing_seek_table_inverse, 0, 256); + ^~~~~~ + +2017-02-27 19:31:39 +0200 Sebastian Dröge + + * gst/rtp/gstrtpvorbispay.c: + rtpvorbispay: When getting new headers, replace the old version of them + This prevents storing an infinite amount of e.g. comment headers if they + come without a new initialization header in front of them. There can + only be one header of each type. + +2017-02-27 19:25:35 +0200 Sebastian Dröge + + * tests/check/Makefile.am: + * tests/check/elements/rtp-payloading.c: + rtp-payloading: Add new test for Vorbis renegotiation + Check if encoding, payloading, depayloading and decoding works if the + stream configuration (and thus the headers) change. + +2017-02-27 19:24:07 +0200 Sebastian Dröge + + * gst/rtp/gstrtpvorbispay.c: + vorbispay: Only replace headers when receiving a new config header + If we also replace all headers when receiving any possibly following + comments header, we would throw away the config header before being able + to make use of it. + +2017-02-23 12:11:15 +0200 George Kiagiadakis + + * tests/check/Makefile.am: + * tests/check/elements/splitmux.c: + tests: splitmux: add unit test for content with sparse streams + https://bugzilla.gnome.org/show_bug.cgi?id=761086 + +2017-02-22 11:23:19 +0200 George Kiagiadakis + + * gst/multifile/gstsplitmuxpartreader.c: + splitmuxpartreader: ignore sparse streams when calculating the end offset of a part + A sparse stream's ending timestamp can be considerably smaller + than the ending timestamps of the other streams, which can lead + to skipping considerable time from the next part. + https://bugzilla.gnome.org/show_bug.cgi?id=761086 + +2017-02-22 11:21:06 +0200 George Kiagiadakis + + * gst/multifile/gstsplitmuxpartreader.c: + splitmuxpartreader: identify sparse streams + +2017-02-25 21:47:03 -0300 Edgard Lima + + * docs/plugins/inspect/plugin-rtp.xml: + * docs/plugins/inspect/plugin-video4linux2.xml: + * gst/audioparsers/gstamrparse.c: + * gst/rtp/gstrtpg726depay.c: + * gst/rtp/gstrtpg726depay.h: + * gst/rtp/gstrtpg726pay.c: + * gst/rtp/gstrtpg726pay.h: + * gst/rtp/gstrtppcmadepay.c: + * gst/rtp/gstrtppcmadepay.h: + * gst/rtp/gstrtppcmapay.c: + * gst/rtp/gstrtppcmapay.h: + * gst/rtp/gstrtppcmudepay.c: + * gst/rtp/gstrtppcmudepay.h: + * gst/rtp/gstrtppcmupay.c: + * gst/rtp/gstrtppcmupay.h: + * gst/rtp/gstrtpspeexdepay.c: + * gst/rtp/gstrtpspeexdepay.h: + * gst/rtp/gstrtpspeexpay.c: + * gst/rtp/gstrtpspeexpay.h: + * sys/v4l2/gstv4l2.c: + * sys/v4l2/gstv4l2bufferpool.c: + * sys/v4l2/gstv4l2bufferpool.h: + * sys/v4l2/gstv4l2colorbalance.c: + * sys/v4l2/gstv4l2colorbalance.h: + * sys/v4l2/gstv4l2object.c: + * sys/v4l2/gstv4l2object.h: + * sys/v4l2/gstv4l2src.c: + * sys/v4l2/gstv4l2src.h: + * sys/v4l2/gstv4l2tuner.c: + * sys/v4l2/gstv4l2tuner.h: + * sys/v4l2/gstv4l2vidorient.c: + * sys/v4l2/gstv4l2vidorient.h: + * sys/v4l2/v4l2_calls.c: + * sys/v4l2/v4l2_calls.h: + Update Edgard Lima's email + https://bugzilla.gnome.org/show_bug.cgi?id=779230 + +2017-02-08 13:36:00 +0000 Andrew + + * gst/rtpmanager/gstrtpjitterbuffer.c: + * gst/rtpmanager/rtpjitterbuffer.c: + * gst/rtpmanager/rtpjitterbuffer.h: + rtpjitterbuffer: Don't always reset PTS to 0 after a gap + In function rtp_jitter_buffer_calculate_pts: If gap in incoming RTP + timestamps is more than (3 * jbuf->clock_rate) we call + rtp_jitter_buffer_reset_skew which resets pts to 0. So components down + the pipeline (playes, mixers) just skip frames/samples until pts becomes + equal to pts before gap. + In version 1.10.2 and before this checking was bypassed for packets with + "estimated dts", and gaps were handled correctly. + https://bugzilla.gnome.org/show_bug.cgi?id=778341 + +2017-02-24 15:59:41 +0200 Sebastian Dröge + + * meson.build: + meson: Update version + +2017-02-24 15:37:36 +0200 Sebastian Dröge + + * configure.ac: + Back to development + === release 1.11.2 === -2017-02-24 Sebastian Dröge +2017-02-24 15:07:23 +0200 Sebastian Dröge + * ChangeLog: + * NEWS: + * RELEASE: * configure.ac: - releasing 1.11.2 + * docs/plugins/gst-plugins-good-plugins.args: + * 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: + Release 1.11.2 + +2017-02-24 12:50:21 +0200 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/gl.po: + * po/hr.po: + * po/hu.po: + * po/id.po: + * po/it.po: + * po/ja.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: + * po/zh_HK.po: + * po/zh_TW.po: + Update .po files 2017-02-24 12:44:58 +0200 Sebastian Dröge diff --git a/NEWS b/NEWS index ba794a2..8e8dc3f 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -This is GStreamer 1.11.2. +This is GStreamer 1.11.90. diff --git a/RELEASE b/RELEASE index 7d1dc97..2504e05 100644 --- a/RELEASE +++ b/RELEASE @@ -1,17 +1,15 @@ -Release notes for GStreamer Good Plugins 1.11.2 +Release notes for GStreamer Good Plugins 1.11.90 -The GStreamer team is pleased to announce the second release of the unstable -1.11 release series. The 1.11 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 unstable 1.11 release series -will lead to the stable 1.12 release series in the next weeks. Any newly added -API can still change until that point. +The GStreamer team is pleased to announce the first release candidate of 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. -Full release notes will be provided at some point during the 1.11 release -cycle, highlighting all the new features, bugfixes, performance optimizations -and other important changes. +Full release notes will be provided with the 1.12.0 release, highlighting all +the new features, bugfixes, performance optimizations and other important +changes. Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. @@ -60,26 +58,20 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 778690 : qtdemux: Possible bug on gst-1.11 gst_element_seek - * 736752 : mp4mux/qtmux: Add HEVC support - * 761761 : splitmuxsink: Caps changes not handled - * 766177 : qtdemux: Critical errors reported playing mp4 file with only xmp tags - * 768762 : tests: qtmux and matroskamux reported as leaking by the leaks tracer - * 774209 : splitmuxsink: Add option for timecode-based split - * 775440 : qtdemux: Use upstream's StreamFlags if there are - * 775817 : rtph265pay: fix config-interval handling - * 776714 : rtpmanager: enhance RTP statistics by recording nacks sent/received per source too - * 776715 : qtdemux: Skip seeking query if upstream format is time - * 776899 : v4l2: Remove usage and definition of LOG_CAPS macro - * 777100 : qtmux: Write tapt atom for MOV files if PAR not 1/1 - * 777182 : rtxqueue: Expose basic statistics as properties. - * 777330 : v4l2bufferpool: remove duplicated line of code - * 777331 : qtmux: Don't write Sync Sample Atom for ProRes - * 777540 : isomp4: Unable to create streams playable with MSE - * 778013 : rtpsession: relate received FIRs and PLIs to source - * 778330 : qtmux: Creates two edit lists with reserved-* options enabled - * 778389 : imagefreeze can return erroneous results for an accept caps query - * 776962 : flacenc: Conversion from m4a encapsuled alac to flac fail with: Could not initialize supporting library. + * 773218 : rtpbin: pipeline gets an EOS when any rtpsources byes + * 722560 : rtprtxreceive: cleanup orphan retransmission requests + * 761086 : splitmuxsrc: use the max ts of all streams as the offset to align the next stream with + * 771478 : qtmux moov-recovery-file option fails by gst-launch-1.0 + * 777738 : flacparse: fix FLAC streaming for non-0 start sample + * 779230 : Update plugins description + * 779389 : sbcparse parses allocation mode incorrectly + * 779422 : qtmux: Update modification times when sending the moov + * 780022 : qtdemux: add support for S16L PCM audio + * 780024 : qtmux: add support for CineForm + * 780105 : rtpsource: " no clock-rate, cannot interpolate rtp " forever + * 780331 : interleave segfaults with more than 64 channels + * 780347 : rtpmux output PTS are not in line with the DTS and the segment + * 780966 : aacparse: streamline and improve AudioSpecificConfig parsing ==== Download ==== @@ -116,34 +108,25 @@ subscribe to the gstreamer-devel list. Contributors to this release - * Arnaud Vrac - * Aurélien Zanelli - * Brendan Shanks - * David Warman + * Andrew + * Carlos Rafael Giani + * Douglas Bagnall + * Edgard Lima * Edward Hervey - * Enrico Jorns - * Georg Lippitsch - * Guillaume Desmottes + * Emeric Grange + * Enrique Ocaña González + * George Kiagiadakis * Jan Schmidt - * Jean-Christophe Trotin - * Jochen Henneberg - * Jonas Holmberg - * Juan Pablo Ugarte - * Mark Nauwelaerts - * Mathieu Duponchelle - * Matt Staples + * Michael Dutka + * Michael Smith * Miguel París Díaz - * Nick Kallen * Nicolas Dufresne * Olivier Crête - * Rahul Bedarkar - * Reynaldo H. Verdejo Pinochet - * Santiago Carot-Nemesio + * Philipp Zabel * Sebastian Dröge - * Seungha Yang - * Søren Juul * Thiago Santos * Thibault Saunier * Tim-Philipp Müller - * Vivia Nikolaidou + * Vincent Penquerc'h + * Wim Taymans   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 964aa02..8c5e495 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.11.2.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-good]) +AC_INIT([GStreamer Good Plug-ins],[1.11.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, 1102, 0, 1102) +AS_LIBTOOL(GST, 1190, 0, 1190) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.11.2.1 -GSTPB_REQ=1.11.2.1 +GST_REQ=1.11.90 +GSTPB_REQ=1.11.90 dnl *** autotools stuff **** diff --git a/docs/plugins/gst-plugins-good-plugins.args b/docs/plugins/gst-plugins-good-plugins.args index bad39bc..20905ff 100644 --- a/docs/plugins/gst-plugins-good-plugins.args +++ b/docs/plugins/gst-plugins-good-plugins.args @@ -1015,7 +1015,7 @@ rw User Agent The User-Agent string to send to the server. -"GStreamer/1.11.2" +"GStreamer/1.11.90" @@ -3455,7 +3455,7 @@ rw User-Agent Value of the User-Agent HTTP request header field. -"GStreamer souphttpsrc " +"GStreamer souphttpsrc 1.11.90 " diff --git a/docs/plugins/inspect/plugin-1394.xml b/docs/plugins/inspect/plugin-1394.xml index bfd8cc8..7d08be0 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.11.2 + 1.11.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 c80c54f..233dc5e 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.11.2 + 1.11.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 de527e7..a713463 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.11.2 + 1.11.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 5abfc43..e66f008 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.11.2 + 1.11.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 deacf15..0b1bc2b 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.11.2 + 1.11.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 68ada9a..b75828d 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.11.2 + 1.11.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 2acd3e2..4feca3f 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.11.2 + 1.11.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 f0fb3b8..35a154c 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.11.2 + 1.11.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 373ee21..ac40656 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.11.2 + 1.11.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 fe75e16..c1235be 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.11.2 + 1.11.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 7f556cd..c12c18e 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.11.2 + 1.11.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 64300f5..1e76e57 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.11.2 + 1.11.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 ff323b7..84d5ce4 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.11.2 + 1.11.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 b95654e..1384e57 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.11.2 + 1.11.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 5d88755..5dd0396 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.11.2 + 1.11.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 3c9d1d4..5452257 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.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release @@ -20,13 +20,13 @@ sink sink always -
video/x-raw, format=(string){ AYUV, ARGB, ABGR, RGBA, BGRA, Y444, xRGB, xBGR, RGBx, BGRx, RGB, BGR, YUY2, YVYU, UYVY, Y42B, I420, YV12, Y41B, NV12, NV21 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(ANY), format=(string){ I420, YV12, YUY2, UYVY, VYUY, AYUV, RGBx, BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, Y41B, Y42B, YVYU, Y444, v210, v216, NV12, NV21, NV16, NV61, NV24, GRAY8, GRAY16_BE, GRAY16_LE, v308, IYU2, RGB16, BGR16, RGB15, BGR15, UYVP, A420, RGB8P, YUV9, YVU9, IYU1, ARGB64, AYUV64, r210, I420_10LE, I420_10BE, I422_10LE, I422_10BE, Y444_10LE, Y444_10BE, GBR, GBR_10LE, GBR_10BE, NV12_64Z32, A420_10LE, A420_10BE, A422_10LE, A422_10BE, A444_10LE, A444_10BE, P010_10LE, P010_10BE }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
+
video/x-raw, format=(string){ AYUV, ARGB, ABGR, RGBA, BGRA, Y444, xRGB, xBGR, RGBx, BGRx, RGB, BGR, YUY2, YVYU, UYVY, Y42B, I420, YV12, Y41B, NV12, NV21 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(ANY), format=(string){ I420, YV12, YUY2, UYVY, AYUV, RGBx, BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, Y41B, Y42B, YVYU, Y444, v210, v216, NV12, NV21, GRAY8, GRAY16_BE, GRAY16_LE, v308, RGB16, BGR16, RGB15, BGR15, UYVP, A420, RGB8P, YUV9, YVU9, IYU1, ARGB64, AYUV64, r210, I420_10BE, I420_10LE, I422_10BE, I422_10LE, Y444_10BE, Y444_10LE, GBR, GBR_10BE, GBR_10LE, NV16, NV24, NV12_64Z32, A420_10BE, A420_10LE, A422_10BE, A422_10LE, A444_10BE, A444_10LE, NV61, P010_10BE, P010_10LE, IYU2, VYUY, GBRA, GBRA_10BE, GBRA_10LE, GBR_12BE, GBR_12LE, GBRA_12BE, GBRA_12LE, I420_12BE, I420_12LE, I422_12BE, I422_12LE, Y444_12BE, Y444_12LE }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
src source always -
video/x-raw, format=(string){ AYUV, ARGB, ABGR, RGBA, BGRA, Y444, xRGB, xBGR, RGBx, BGRx, RGB, BGR, YUY2, YVYU, UYVY, Y42B, I420, YV12, Y41B, NV12, NV21 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(ANY), format=(string){ I420, YV12, YUY2, UYVY, VYUY, AYUV, RGBx, BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, Y41B, Y42B, YVYU, Y444, v210, v216, NV12, NV21, NV16, NV61, NV24, GRAY8, GRAY16_BE, GRAY16_LE, v308, IYU2, RGB16, BGR16, RGB15, BGR15, UYVP, A420, RGB8P, YUV9, YVU9, IYU1, ARGB64, AYUV64, r210, I420_10LE, I420_10BE, I422_10LE, I422_10BE, Y444_10LE, Y444_10BE, GBR, GBR_10LE, GBR_10BE, NV12_64Z32, A420_10LE, A420_10BE, A422_10LE, A422_10BE, A444_10LE, A444_10BE, P010_10LE, P010_10BE }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
+
video/x-raw, format=(string){ AYUV, ARGB, ABGR, RGBA, BGRA, Y444, xRGB, xBGR, RGBx, BGRx, RGB, BGR, YUY2, YVYU, UYVY, Y42B, I420, YV12, Y41B, NV12, NV21 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]; video/x-raw(ANY), format=(string){ I420, YV12, YUY2, UYVY, AYUV, RGBx, BGRx, xRGB, xBGR, RGBA, BGRA, ARGB, ABGR, RGB, BGR, Y41B, Y42B, YVYU, Y444, v210, v216, NV12, NV21, GRAY8, GRAY16_BE, GRAY16_LE, v308, RGB16, BGR16, RGB15, BGR15, UYVP, A420, RGB8P, YUV9, YVU9, IYU1, ARGB64, AYUV64, r210, I420_10BE, I420_10LE, I422_10BE, I422_10LE, Y444_10BE, Y444_10LE, GBR, GBR_10BE, GBR_10LE, NV16, NV24, NV12_64Z32, A420_10BE, A420_10LE, A422_10BE, A422_10LE, A444_10BE, A444_10LE, NV61, P010_10BE, P010_10LE, IYU2, VYUY, GBRA, GBRA_10BE, GBRA_10LE, GBR_12BE, GBR_12LE, GBRA_12BE, GBRA_12LE, I420_12BE, I420_12LE, I422_12BE, I422_12LE, Y444_12BE, Y444_12LE }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]
diff --git a/docs/plugins/inspect/plugin-dtmf.xml b/docs/plugins/inspect/plugin-dtmf.xml index 3f32f69..514a961 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.11.2 + 1.11.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 fb11d39..96e008a 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.11.2 + 1.11.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 feaad45..3a79787 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.11.2 + 1.11.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 2b678b8..a93340a 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.11.2 + 1.11.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 0a1eb85..2bdc990 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.11.2 + 1.11.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 456bffb..137d37b 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.11.2 + 1.11.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 638f24b..d31f26f 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.11.2 + 1.11.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 32ef2ac..f95b115 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.11.2 + 1.11.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 8fb6091..3f58dde 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.11.2 + 1.11.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 a921705..e61c936 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.11.2 + 1.11.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 fe78933..a7524b7 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.11.2 + 1.11.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 4e3c7f0..9fdccca 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.11.2 + 1.11.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 23fab81..b2a4b01 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.11.2 + 1.11.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 5b96e85..c9ca3aa 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.11.2 + 1.11.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 4c31412..f324868 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.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release @@ -194,7 +194,7 @@ video_%u sink request -
video/x-raw, format=(string){ RGB, UYVY, v210 }, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-divx, divxversion=(int)5, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-prores, variant=(string){ standard, lt, hq, proxy, 4444, 4444xq }, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h263, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h264, stream-format=(string)avc, alignment=(string)au, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h265, stream-format=(string){ hvc1, hev1 }, alignment=(string)au, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-svq, svqversion=(int)3, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-dv, systemstream=(boolean)false, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; image/jpeg, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-vp8, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-dirac, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-qt-part, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]
+
video/x-raw, format=(string){ RGB, UYVY, v210 }, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/mpeg, mpegversion=(int)4, systemstream=(boolean)false, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-divx, divxversion=(int)5, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-prores, variant=(string){ standard, lt, hq, proxy, 4444, 4444xq }, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-cineform, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h263, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h264, stream-format=(string)avc, alignment=(string)au, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-h265, stream-format=(string){ hvc1, hev1 }, alignment=(string)au, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-svq, svqversion=(int)3, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-dv, systemstream=(boolean)false, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; image/jpeg, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-vp8, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-dirac, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]; video/x-qt-part, width=(int)[ 16, 2147483647 ], height=(int)[ 16, 2147483647 ]
src diff --git a/docs/plugins/inspect/plugin-jack.xml b/docs/plugins/inspect/plugin-jack.xml index b65f5c1..7781efa 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.11.2 + 1.11.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 e11c752..c33594c 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.11.2 + 1.11.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 f981b44..79c59ac 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.11.2 + 1.11.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 be09cc9..12fba33 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.11.2 + 1.11.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 d446584..4e81a2c 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.11.2 + 1.11.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 b5390b7..4486ee9 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.11.2 + 1.11.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 80df5f1..50a650a 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.11.2 + 1.11.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 3535358..5a1ef77 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.11.2 + 1.11.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 ab073b7..4aaef0c 100644 --- a/docs/plugins/inspect/plugin-oss4.xml +++ b/docs/plugins/inspect/plugin-oss4.xml @@ -3,10 +3,10 @@ Open Sound System (OSS) version 4 support for GStreamer ../../sys/oss4/.libs/libgstoss4.so libgstoss4.so - 1.11.2.1 + 1.11.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-ossaudio.xml b/docs/plugins/inspect/plugin-ossaudio.xml index 2e78dda..da3f985 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.11.2 + 1.11.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 9d7e7f8..4eb3c04 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.11.2 + 1.11.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 e98e1f9..018a563 100644 --- a/docs/plugins/inspect/plugin-pulseaudio.xml +++ b/docs/plugins/inspect/plugin-pulseaudio.xml @@ -3,10 +3,10 @@ PulseAudio plugin library ../../ext/pulse/.libs/libgstpulseaudio.so libgstpulseaudio.so - 1.11.2.1 + 1.11.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-replaygain.xml b/docs/plugins/inspect/plugin-replaygain.xml index 14f6435..3452727 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.11.2 + 1.11.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 cc650e9..28c49b2 100644 --- a/docs/plugins/inspect/plugin-rtp.xml +++ b/docs/plugins/inspect/plugin-rtp.xml @@ -3,7 +3,7 @@ Real-time protocol plugins ../../gst/rtp/.libs/libgstrtp.so libgstrtp.so - 1.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-rtpmanager.xml b/docs/plugins/inspect/plugin-rtpmanager.xml index ce0bbef..aaf0989 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.11.2 + 1.11.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 2ae69bc..8c02388 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.11.2 + 1.11.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 70124ae..af976c3 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.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/docs/plugins/inspect/plugin-shout2.xml b/docs/plugins/inspect/plugin-shout2.xml index 6bfafb8..5b181ee 100644 --- a/docs/plugins/inspect/plugin-shout2.xml +++ b/docs/plugins/inspect/plugin-shout2.xml @@ -3,7 +3,7 @@ Sends data to an icecast server using libshout2 ../../ext/shout2/.libs/libgstshout2.so libgstshout2.so - 1.11.2.1 + 1.11.90 LGPL gst-plugins-good libshout2 @@ -20,9 +20,9 @@ sink sink always -
application/ogg; audio/ogg; video/ogg; audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ]
+
application/ogg; audio/ogg; video/ogg; audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ]; video/webm; audio/webm
- + \ No newline at end of file diff --git a/docs/plugins/inspect/plugin-smpte.xml b/docs/plugins/inspect/plugin-smpte.xml index 4a98cf7..af63f75 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.11.2 + 1.11.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 15e51e7..20e4e82 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/libgstsoup.so libgstsoup.so - 1.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release @@ -40,4 +40,4 @@ - + \ No newline at end of file diff --git a/docs/plugins/inspect/plugin-spectrum.xml b/docs/plugins/inspect/plugin-spectrum.xml index 202d0f9..c7af1a2 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.11.2 + 1.11.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 8c6a24c..aa4049d 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.11.2 + 1.11.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 d28d40a..bafd7b1 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.11.2 + 1.11.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 1eb45e5..182b7bb 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.11.2 + 1.11.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 761489b..ab007e0 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.11.2 + 1.11.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 0a5f5ff..67a9e46 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.11.2 + 1.11.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 3bb9c65..5169208 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.11.2 + 1.11.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 c20d052..c58246f 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.11.2 + 1.11.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 71653bd..2825ca5 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.11.2 + 1.11.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 1b24f4d..4128c47 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.11.2 + 1.11.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 9cd1a95..09669db 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.11.2 + 1.11.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 c970369..d4b583c 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.11.2 + 1.11.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 5509c58..7d94269 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.11.2 + 1.11.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 105ba63..e34c051 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.11.2 + 1.11.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 33b6608..e605142 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.11.2 + 1.11.90 LGPL gst-plugins-good GStreamer Good Plug-ins source release diff --git a/gst-plugins-good.doap b/gst-plugins-good.doap index 8d15e41..5ee7cf6 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.11.90 + master + + 2017-04-07 + + + + + + 1.11.2 master diff --git a/meson.build b/meson.build index fbfd7b4..f8e3ebe 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('gst-plugins-good', 'c', 'cpp', - version : '1.11.2.1', + version : '1.11.90', meson_version : '>= 0.36.0', default_options : [ 'warning_level=1', 'buildtype=debugoptimized' ])