From 45a04f9d8b1d95f54f88d22ed514676c15ab1b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Fri, 30 Sep 2016 13:01:53 +0300 Subject: [PATCH] Release 1.9.90 --- ChangeLog | 336 +++++++++++++++++- NEWS | 2 +- RELEASE | 57 +-- configure.ac | 6 +- docs/plugins/inspect/plugin-adder.xml | 2 +- docs/plugins/inspect/plugin-alsa.xml | 2 +- docs/plugins/inspect/plugin-app.xml | 2 +- docs/plugins/inspect/plugin-audioconvert.xml | 2 +- docs/plugins/inspect/plugin-audiorate.xml | 2 +- docs/plugins/inspect/plugin-audioresample.xml | 2 +- docs/plugins/inspect/plugin-audiotestsrc.xml | 2 +- docs/plugins/inspect/plugin-cdparanoia.xml | 2 +- docs/plugins/inspect/plugin-encoding.xml | 2 +- docs/plugins/inspect/plugin-gio.xml | 2 +- docs/plugins/inspect/plugin-libvisual.xml | 2 +- docs/plugins/inspect/plugin-ogg.xml | 2 +- docs/plugins/inspect/plugin-opus.xml | 2 +- docs/plugins/inspect/plugin-pango.xml | 2 +- docs/plugins/inspect/plugin-playback.xml | 2 +- docs/plugins/inspect/plugin-subparse.xml | 2 +- docs/plugins/inspect/plugin-tcp.xml | 2 +- docs/plugins/inspect/plugin-theora.xml | 2 +- .../inspect/plugin-typefindfunctions.xml | 2 +- docs/plugins/inspect/plugin-videoconvert.xml | 2 +- docs/plugins/inspect/plugin-videorate.xml | 2 +- docs/plugins/inspect/plugin-videoscale.xml | 2 +- docs/plugins/inspect/plugin-videotestsrc.xml | 2 +- docs/plugins/inspect/plugin-volume.xml | 2 +- docs/plugins/inspect/plugin-vorbis.xml | 2 +- docs/plugins/inspect/plugin-ximagesink.xml | 2 +- docs/plugins/inspect/plugin-xvimagesink.xml | 2 +- gst-plugins-base.doap | 10 + win32/common/_stdint.h | 4 +- win32/common/config.h | 25 +- 34 files changed, 412 insertions(+), 82 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2a64354d31..c6f423a243 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,339 @@ -=== release 1.9.2 === +=== release 1.9.90 === -2016-09-01 Sebastian Dröge +2016-09-30 Sebastian Dröge * configure.ac: - releasing 1.9.2 + releasing 1.9.90 + +2016-09-30 11:42:21 +0300 Sebastian Dröge + + * po/de.po: + po: Update translations + +2016-09-29 19:54:52 +0530 Arun Raghavan + + * gst-libs/gst/audio/Makefile.am: + audio-resampler: Add a missing header to noinst_HEADERS + +2016-09-29 19:45:16 +0530 Arun Raghavan + + * gst-libs/gst/audio/audio-resampler-x86-sse41.c: + * gst-libs/gst/audio/audio-resampler-x86.h: + audiorsample: Fix build on 32-bit x86 + Turns out _mm_cvtsi128_si64() isn't available on 32-bit, so only build + SSE 4.1 optimisations on x86-64 for now. + +2016-09-28 17:37:38 +0530 Arun Raghavan + + * configure.ac: + * gst-libs/gst/audio/Makefile.am: + * gst-libs/gst/audio/audio-resampler-macros.h: + * gst-libs/gst/audio/audio-resampler-neon.h: + * gst-libs/gst/audio/audio-resampler-private.h: + * gst-libs/gst/audio/audio-resampler-x86-sse.c: + * gst-libs/gst/audio/audio-resampler-x86-sse.h: + * gst-libs/gst/audio/audio-resampler-x86-sse2.c: + * gst-libs/gst/audio/audio-resampler-x86-sse2.h: + * gst-libs/gst/audio/audio-resampler-x86-sse41.c: + * gst-libs/gst/audio/audio-resampler-x86-sse41.h: + * gst-libs/gst/audio/audio-resampler-x86.h: + * gst-libs/gst/audio/audio-resampler.c: + audioresample: Separate out CFLAGS used for SSE* code + This makes sure that we only build files that need explicit SIMD support + with the relevant CFLAGS. This allows the rest of the code to be built + without, and specific SSE* code is only called after runtime checks for + CPU features. + https://bugzilla.gnome.org/show_bug.cgi?id=729276 + +2016-09-28 19:08:52 +0530 Arun Raghavan + + * gst-libs/gst/audio/audio-resampler.c: + audioresample: Fix some gobject introspection warnings + +2016-09-26 10:01:08 +0200 Edward Hervey + + * gst/playback/gstplaybin3.c: + playbin3: Remove fallback properties/signals + These can all be used via the GstStream API + https://bugzilla.gnome.org/show_bug.cgi?id=769079 + +2016-09-25 22:02:22 +0100 Tim-Philipp Müller + + * tests/check/meson.build: + tests: playbin-complex test needs oggdemux + +2016-09-24 21:11:32 +0100 Tim-Philipp Müller + + * tests/check/libs/videotimecode.c: + tests: videotimecode: fix floating point comparisons + Comparing floats for equality is not necessarily going to + work reliably, so use fail_unless_equals_float() for this. + Test would fail on x86 (Intel Atom x5-Z8300). + +2016-09-25 16:22:16 +0100 Tim-Philipp Müller + + * tests/check/elements/adder.c: + tests: adder: disable racy flush_start_flush_stop test + It's been broken for years, and it's unlikely it will ever + be fixed for collectpads/adder now that there's audiomixer + which works fine. So let's disable it, since all it does + is that it creates noise that distracts from other failures. + https://bugzilla.gnome.org/show_bug.cgi?id=708891 + +2016-09-22 16:15:54 +0200 Wim Taymans + + * gst-libs/gst/video/video-scaler.c: + video-scaler: take number of bits into account when copying + Copy twice the amount of pixels for 16 bits formats. + Fixes https://bugzilla.gnome.org/show_bug.cgi?id=747225 + +2016-09-20 15:12:22 -0400 Sebastian Dröge + + * gst/playback/gststreamsynchronizer.c: + streamsynchronizer: Correctly calculate group start times in reverse playback mode + We have to calculate from the segment.stop, not the segment.start, as + playback goes from stop to start. This fix works around another race + condition in streamsynchronizer in my testcase. + See https://bugzilla.gnome.org/show_bug.cgi?id=771479 + +2016-09-20 17:31:55 +0100 Tim-Philipp Müller + + * tests/examples/seek/stepping.c: + * tests/examples/seek/stepping2.c: + examples: seek: fix build with MSVC + Use G_PI instead of M_PI. Could also have defined + _USE_MATH_DEFINES or included gst/math-compat.h but + this seems simplest. + +2016-09-19 11:27:10 -0400 Nicolas Dufresne + + * gst-libs/gst/video/video-frame.c: + doc: Add missing map flag to gst_video_frame_map() + Add missing map flag, and also add unmap call. + +2016-09-17 12:42:46 +0200 Sebastian Dröge + + * gst/audiotestsrc/gstaudiotestsrc.c: + audiotestsrc: Fix segment boundary checking for reverse playback + +2016-09-14 16:51:30 +0200 Sebastian Dröge + + * gst/audiotestsrc/gstaudiotestsrc.c: + audiotestsrc: Don't adjust segment time in seek handler + basesrc already did that very well for us, adjusting it again on top of + that just breaks various non-standard seeks. + +2016-09-14 11:29:59 +0200 Sebastian Dröge + + * configure.ac: + configure: Depend on gstreamer 1.9.2.1 + +2016-09-14 10:14:18 +0200 Víctor Manuel Jáquez Leal + + * gst-libs/gst/video/video-overlay-composition.c: + videooverlaycomposition: document required map flags + Fix documentation for gst_video_overlay_composition_blend(). The video frame + needs to be mapped with GST_MAP_READWRITE flag. + https://bugzilla.gnome.org/show_bug.cgi?id=771382 + +2016-09-12 18:37:21 +0200 Sebastian Dröge + + * gst/playback/gstplaysink.c: + * gst/playback/gsturidecodebin.c: + * gst/playback/gsturisourcebin.c: + playback: Use new gst_bin_set_suppressed_flags() API instead of worrying about the flags in multiple places + +2016-09-10 20:50:56 +1000 Jan Schmidt + + * autogen.sh: + * common: + Automatic update of common submodule + From b18d820 to f980fd9 + +2016-09-10 10:05:28 +0100 Tim-Philipp Müller + + * tests/check/Makefile.am: + * tests/check/elements/.gitignore: + * tests/check/elements/videoscale.c: + * tests/check/meson.build: + tests: videoscale: split test into multiple ones + The videoscale test takes eternities to run, that's not + great. Split the test into multiple ones. That way they + can be run in parallel. Reduces time to run all tests in + -base from 29 secs to 12 secs when using meson/ninja. + +2016-09-10 09:53:49 +1000 Jan Schmidt + + * autogen.sh: + * common: + Automatic update of common submodule + From f49c55e to b18d820 + +2016-09-07 17:02:23 -0300 Thibault Saunier + + * tests/check/meson.build: + meson: Raise test timeout to 3 minutes + The videoscale testsuite (with 50 tests) last almost 2 minutes here + +2016-09-07 14:24:54 -0400 Nicolas Dufresne + + * tests/check/libs/video.c: + video/test: Coding style fix + +2016-09-05 19:55:58 -0300 Thibault Saunier + + * tests/examples/overlay/meson.build: + meson: Workaround the qt5 module not letting us now the preprocessor is not avalaible + If moc-qt5 is not avalaible, meson breaks: + https://github.com/mesonbuild/meson/issues/758 + +2016-09-05 18:40:19 -0300 Thibault Saunier + + * tests/examples/overlay/meson.build: + meson: tests: Do not pull qt5 as a hard dependency + +2016-09-05 17:43:13 -0300 Thibault Saunier + + * meson.build: + * tests/check/getpluginsdir: + * tests/check/meson.build: + meson: Properly find where GStreamer plugins are when using subprojects + And fix building with meson 0.34 + +2016-09-05 12:22:36 -0300 Thibault Saunier + + * meson.build: + meson: Bump version to 1.9.2 + +2016-08-26 11:30:16 +0100 Vincent Penquerc'h + + * ext/ogg/gstoggdemux.c: + oggdemux: safety for failing to determine time length in push mode + If we can't find a valid granule near the end of the file, we + disable seeking. This guards against the whole file being then + read and never going to PLAYING. + https://bugzilla.gnome.org/show_bug.cgi?id=770314 + +2016-08-26 11:27:17 +0100 Vincent Penquerc'h + + * ext/ogg/gstoggdemux.c: + oggdemux: increase EOS granpos detection chunk size + This can be too small on some files to find a valid granule. + https://bugzilla.gnome.org/show_bug.cgi?id=770314 + +2016-09-04 21:41:04 +0100 Tim-Philipp Müller + + * tests/examples/seek/meson.build: + meson: fix joystick header check for jseek example + +2016-09-03 11:57:22 +1000 Jonathan Matthew + + * gst-libs/gst/pbutils/gstdiscoverer.c: + pbutils: store missing-plugin structure in current_info->misc again + This allows gst_discoverer_info_get_misc to work again, until it + finally gets removed. + https://bugzilla.gnome.org/show_bug.cgi?id=770643 + +2016-09-04 16:04:00 +0100 Tim-Philipp Müller + + * tools/gst-play.c: + tools: gst-play: cycle between video tracks without disabling video + +2016-09-01 17:56:24 +0300 Sebastian Dröge + + * win32/common/libgstrtp.def: + win32: Update exports + +2016-09-01 22:48:40 +1000 Jan Schmidt + + * gst-libs/gst/video/video-frame.h: + video-frame: Expand the range of caps for extended buffer flags + The video buffer flags can be applied to encoded video streams, + such as video/x-h264 marked up by a demuxer or parser. + +2016-09-01 13:07:07 +0300 Sebastian Dröge + + * gst/playback/gstplaybackutils.h: + playback: Mark internal functions as G_GNUC_INTERNAL + +2016-09-01 14:47:02 +0900 Wonchul Lee + + * gst/playback/gstdecodebin2.c: + * gst/playback/gstplaybackutils.c: + * gst/playback/gstplaybackutils.h: + * gst/playback/gsturidecodebin.c: + * gst/playback/gsturisourcebin.c: + playbackutils: Move compare_factories_func + Move _decode_bin_compare_factories_func function to playbackutils + https://bugzilla.gnome.org/show_bug.cgi?id=770692 + +2016-09-01 09:59:06 +0200 Havard Graff + + * gst-libs/gst/video/video-frame.h: + video-frame: GST_VIDEO_BUFFER_FLAG are only valid for video/x-raw caps + https://bugzilla.gnome.org/show_bug.cgi?id=769771 + +2016-09-01 09:57:33 +0200 Havard Graff + + * gst-libs/gst/rtp/gstrtpbuffer.h: + rtpbuffer: Add buffer flag RETRANSMISSION + Useful for elements to know if a buffer is a retransmitted RTP packet. + https://bugzilla.gnome.org/show_bug.cgi?id=769771 + +2016-09-01 12:38:14 +0300 Sebastian Dröge + + * configure.ac: + configure: Require orc >= 0.4.24 + Needed for being able to compile video.orc + https://bugzilla.gnome.org/show_bug.cgi?id=770698 + +2016-09-01 12:26:40 +0300 Sebastian Dröge + + * configure.ac: + Back to development + +=== release 1.9.2 === + +2016-09-01 12:26:20 +0300 Sebastian Dröge + + * ChangeLog: + * NEWS: + * RELEASE: + * configure.ac: + * docs/plugins/gst-plugins-base-plugins.signals: + * docs/plugins/inspect/plugin-adder.xml: + * docs/plugins/inspect/plugin-alsa.xml: + * docs/plugins/inspect/plugin-app.xml: + * docs/plugins/inspect/plugin-audioconvert.xml: + * docs/plugins/inspect/plugin-audiorate.xml: + * docs/plugins/inspect/plugin-audioresample.xml: + * docs/plugins/inspect/plugin-audiotestsrc.xml: + * docs/plugins/inspect/plugin-cdparanoia.xml: + * docs/plugins/inspect/plugin-encoding.xml: + * docs/plugins/inspect/plugin-gio.xml: + * docs/plugins/inspect/plugin-libvisual.xml: + * docs/plugins/inspect/plugin-ogg.xml: + * docs/plugins/inspect/plugin-opus.xml: + * docs/plugins/inspect/plugin-pango.xml: + * docs/plugins/inspect/plugin-playback.xml: + * docs/plugins/inspect/plugin-subparse.xml: + * docs/plugins/inspect/plugin-tcp.xml: + * docs/plugins/inspect/plugin-theora.xml: + * docs/plugins/inspect/plugin-typefindfunctions.xml: + * docs/plugins/inspect/plugin-videoconvert.xml: + * docs/plugins/inspect/plugin-videorate.xml: + * docs/plugins/inspect/plugin-videoscale.xml: + * docs/plugins/inspect/plugin-videotestsrc.xml: + * docs/plugins/inspect/plugin-volume.xml: + * docs/plugins/inspect/plugin-vorbis.xml: + * docs/plugins/inspect/plugin-ximagesink.xml: + * docs/plugins/inspect/plugin-xvimagesink.xml: + * gst-plugins-base.doap: + * win32/common/_stdint.h: + * win32/common/config.h: + * win32/common/video-enumtypes.c: + * win32/common/video-enumtypes.h: + Release 1.9.2 2016-09-01 11:23:10 +0300 Sebastian Dröge diff --git a/NEWS b/NEWS index 027c01804e..072b2dfb35 100644 --- a/NEWS +++ b/NEWS @@ -1 +1 @@ -This is GStreamer 1.9.2 +This is GStreamer 1.9.90 diff --git a/RELEASE b/RELEASE index c655d196da..32a0af3ea3 100644 --- a/RELEASE +++ b/RELEASE @@ -1,13 +1,10 @@ -Release notes for GStreamer Base Plugins 1.9.2 +Release notes for GStreamer Base Plugins 1.9.90 -The GStreamer team is pleased to announce the second release of the unstable -1.9 release series, which marks the feature freeze for 1.10. The 1.9 release -series is adding new features on top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series -and is part of the API and ABI-stable 1.x release series of the GStreamer -multimedia framework. The unstable 1.9 release series will lead to the stable -1.10 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.10 release series. The 1.10 release series is adding new features on +top of the 1.0, 1.2, 1.4, 1.6 and 1.8 series and is part of the API and +ABI-stable 1.x release series of the GStreamer multimedia framework. Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days. @@ -59,23 +56,12 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg) Bugs fixed in this release - * 761514 : riff: remove limits for sample rate and channel count - * 766419 : videotimecode: Added support for SMPTE time code metadata - * 767816 : Comparison of constant 64 with expression of type 'GstVideoFormat' is always false in Mac OS X - * 768495 : POTFILES.in is out of date - * 768525 : subparse: don't reset allowed tags - * 768687 : Rework video orientation - * 768718 : videoscale: fix leak in test - * 768811 : decodebin3/playbin3: fix leaks - * 768852 : appsink: add _try_pull_{sample,preroll} with timeout parameter - * 768990 : audioclock: use GST_STIME_FORMAT for the correct argument - * 769080 : decodebin3: fix collection refcounting - * 769270 : decodebin3/playbin3: fix ref handling - * 769298 : decodebin3: handle full removal of streams - * 769299 : ogg: check return values in gst_ogg_parse_new_stream - * 769303 : pbutils: Add more h264 scalable profiles - * 769624 : videorate: Does not support reverse playback - * 770053 : parsebin: sometimes sets global tags to stream + * 729276 : audioresample: Misdetected and/or misused intrinsics headers + * 769771 : rtpbuffer: Add buffer flag RETRANSMISSION + * 770314 : oggdemux: Does not go back to beginning point on EOS when determining stream length + * 770446 : pulsesrc, audiosrc: No audio captured with new GStreamer 1.8.2 + * 770692 : playbackutils: Move compare_factories_func + * 770698 : video-orc.orc doesn't compile with orc 0.4.23 ==== Download ==== @@ -113,29 +99,16 @@ subscribe to the gstreamer-devel list. Contributors to this release * Arun Raghavan - * Carlos Rafael Giani - * Duncan Palmer * Edward Hervey - * Guillaume Desmottes + * Havard Graff * Jan Schmidt - * Joan Pau Beltran - * Josep Torra - * Luis de Bethencourt - * Matej Knopp - * Michael Olbrich - * Nirbheek Chauhan - * Piotr Drąg + * Jonathan Matthew + * Nicolas Dufresne * Sebastian Dröge - * Sergio Torres Soldado - * Seungha Yang - * Sreerenj Balachandran - * Stefan Sauer * Thibault Saunier - * Thijs Vermeir * Tim-Philipp Müller * Vincent Penquerc'h - * Vivia Nikolaidou * Víctor Manuel Jáquez Leal * Wim Taymans - * Xabier Rodriguez Calvar + * Wonchul Lee   \ No newline at end of file diff --git a/configure.ac b/configure.ac index 0c13ee8569..6e9dc528a0 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/prerelease -AC_INIT([GStreamer Base Plug-ins],[1.9.2.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) +AC_INIT([GStreamer Base Plug-ins],[1.9.90],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-base]) AG_GST_INIT @@ -56,10 +56,10 @@ dnl 1.2.5 => 205 dnl 1.10.9 (who knows) => 1009 dnl dnl sets GST_LT_LDFLAGS -AS_LIBTOOL(GST, 902, 0, 902) +AS_LIBTOOL(GST, 990, 0, 990) dnl *** required versions of GStreamer stuff *** -GST_REQ=1.9.2.1 +GST_REQ=1.9.90 dnl *** autotools stuff **** diff --git a/docs/plugins/inspect/plugin-adder.xml b/docs/plugins/inspect/plugin-adder.xml index d8012c6ff4..4b33951ad9 100644 --- a/docs/plugins/inspect/plugin-adder.xml +++ b/docs/plugins/inspect/plugin-adder.xml @@ -3,7 +3,7 @@ Adds multiple streams ../../gst/adder/.libs/libgstadder.so libgstadder.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-alsa.xml b/docs/plugins/inspect/plugin-alsa.xml index cf61e626da..93639ed834 100644 --- a/docs/plugins/inspect/plugin-alsa.xml +++ b/docs/plugins/inspect/plugin-alsa.xml @@ -3,7 +3,7 @@ ALSA plugin library ../../ext/alsa/.libs/libgstalsa.so libgstalsa.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-app.xml b/docs/plugins/inspect/plugin-app.xml index ca8109cbc0..5f00d1944e 100644 --- a/docs/plugins/inspect/plugin-app.xml +++ b/docs/plugins/inspect/plugin-app.xml @@ -3,7 +3,7 @@ Elements used to communicate with applications ../../gst/app/.libs/libgstapp.so libgstapp.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audioconvert.xml b/docs/plugins/inspect/plugin-audioconvert.xml index 7f01b2d993..d4482f78b5 100644 --- a/docs/plugins/inspect/plugin-audioconvert.xml +++ b/docs/plugins/inspect/plugin-audioconvert.xml @@ -3,7 +3,7 @@ Convert audio to different formats ../../gst/audioconvert/.libs/libgstaudioconvert.so libgstaudioconvert.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiorate.xml b/docs/plugins/inspect/plugin-audiorate.xml index 34b7636b1e..1ed6e56232 100644 --- a/docs/plugins/inspect/plugin-audiorate.xml +++ b/docs/plugins/inspect/plugin-audiorate.xml @@ -3,7 +3,7 @@ Adjusts audio frames ../../gst/audiorate/.libs/libgstaudiorate.so libgstaudiorate.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audioresample.xml b/docs/plugins/inspect/plugin-audioresample.xml index 8ba114d56c..fe9634e6fa 100644 --- a/docs/plugins/inspect/plugin-audioresample.xml +++ b/docs/plugins/inspect/plugin-audioresample.xml @@ -3,7 +3,7 @@ Resamples audio ../../gst/audioresample/.libs/libgstaudioresample.so libgstaudioresample.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-audiotestsrc.xml b/docs/plugins/inspect/plugin-audiotestsrc.xml index d42239cc10..ac1f95e6bf 100644 --- a/docs/plugins/inspect/plugin-audiotestsrc.xml +++ b/docs/plugins/inspect/plugin-audiotestsrc.xml @@ -3,7 +3,7 @@ Creates audio test signals of given frequency and volume ../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so libgstaudiotestsrc.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-cdparanoia.xml b/docs/plugins/inspect/plugin-cdparanoia.xml index c498c18e9c..874ebc8994 100644 --- a/docs/plugins/inspect/plugin-cdparanoia.xml +++ b/docs/plugins/inspect/plugin-cdparanoia.xml @@ -3,7 +3,7 @@ Read audio from CD in paranoid mode ../../ext/cdparanoia/.libs/libgstcdparanoia.so libgstcdparanoia.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-encoding.xml b/docs/plugins/inspect/plugin-encoding.xml index c1bcfec87c..30a693ee29 100644 --- a/docs/plugins/inspect/plugin-encoding.xml +++ b/docs/plugins/inspect/plugin-encoding.xml @@ -3,7 +3,7 @@ various encoding-related elements ../../gst/encoding/.libs/libgstencodebin.so libgstencodebin.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-gio.xml b/docs/plugins/inspect/plugin-gio.xml index 50c7fee37f..bf7049b51a 100644 --- a/docs/plugins/inspect/plugin-gio.xml +++ b/docs/plugins/inspect/plugin-gio.xml @@ -3,7 +3,7 @@ GIO elements ../../gst/gio/.libs/libgstgio.so libgstgio.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-libvisual.xml b/docs/plugins/inspect/plugin-libvisual.xml index e4b68ab882..d16008a407 100644 --- a/docs/plugins/inspect/plugin-libvisual.xml +++ b/docs/plugins/inspect/plugin-libvisual.xml @@ -3,7 +3,7 @@ libvisual visualization plugins ../../ext/libvisual/.libs/libgstlibvisual.so libgstlibvisual.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ogg.xml b/docs/plugins/inspect/plugin-ogg.xml index cae7aeb290..e7eb52b3aa 100644 --- a/docs/plugins/inspect/plugin-ogg.xml +++ b/docs/plugins/inspect/plugin-ogg.xml @@ -3,7 +3,7 @@ ogg stream manipulation (info about ogg: http://xiph.org) ../../ext/ogg/.libs/libgstogg.so libgstogg.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-opus.xml b/docs/plugins/inspect/plugin-opus.xml index 04d4e4cb57..2ede8a1ba3 100644 --- a/docs/plugins/inspect/plugin-opus.xml +++ b/docs/plugins/inspect/plugin-opus.xml @@ -3,7 +3,7 @@ OPUS plugin library ../../ext/opus/.libs/libgstopus.so libgstopus.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-pango.xml b/docs/plugins/inspect/plugin-pango.xml index 355dc4e043..5179d85fa7 100644 --- a/docs/plugins/inspect/plugin-pango.xml +++ b/docs/plugins/inspect/plugin-pango.xml @@ -3,7 +3,7 @@ Pango-based text rendering and overlay ../../ext/pango/.libs/libgstpango.so libgstpango.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-playback.xml b/docs/plugins/inspect/plugin-playback.xml index a1f862775a..65ad797230 100644 --- a/docs/plugins/inspect/plugin-playback.xml +++ b/docs/plugins/inspect/plugin-playback.xml @@ -3,7 +3,7 @@ various playback elements ../../gst/playback/.libs/libgstplayback.so libgstplayback.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-subparse.xml b/docs/plugins/inspect/plugin-subparse.xml index 48b86fe03c..b237508406 100644 --- a/docs/plugins/inspect/plugin-subparse.xml +++ b/docs/plugins/inspect/plugin-subparse.xml @@ -3,7 +3,7 @@ Subtitle parsing ../../gst/subparse/.libs/libgstsubparse.so libgstsubparse.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-tcp.xml b/docs/plugins/inspect/plugin-tcp.xml index 900a19aa6c..9ff7b1dc94 100644 --- a/docs/plugins/inspect/plugin-tcp.xml +++ b/docs/plugins/inspect/plugin-tcp.xml @@ -3,7 +3,7 @@ transfer data over the network via TCP ../../gst/tcp/.libs/libgsttcp.so libgsttcp.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-theora.xml b/docs/plugins/inspect/plugin-theora.xml index 184ad552f4..135ec2e9e4 100644 --- a/docs/plugins/inspect/plugin-theora.xml +++ b/docs/plugins/inspect/plugin-theora.xml @@ -3,7 +3,7 @@ Theora plugin library ../../ext/theora/.libs/libgsttheora.so libgsttheora.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-typefindfunctions.xml b/docs/plugins/inspect/plugin-typefindfunctions.xml index 7b1eac9dda..5a8ee77699 100644 --- a/docs/plugins/inspect/plugin-typefindfunctions.xml +++ b/docs/plugins/inspect/plugin-typefindfunctions.xml @@ -3,7 +3,7 @@ default typefind functions ../../gst/typefind/.libs/libgsttypefindfunctions.so libgsttypefindfunctions.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videoconvert.xml b/docs/plugins/inspect/plugin-videoconvert.xml index 7c544afbcb..a90b0846cd 100644 --- a/docs/plugins/inspect/plugin-videoconvert.xml +++ b/docs/plugins/inspect/plugin-videoconvert.xml @@ -3,7 +3,7 @@ Colorspace conversion ../../gst/videoconvert/.libs/libgstvideoconvert.so libgstvideoconvert.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videorate.xml b/docs/plugins/inspect/plugin-videorate.xml index 55ebd6dedb..3ebf6f6f16 100644 --- a/docs/plugins/inspect/plugin-videorate.xml +++ b/docs/plugins/inspect/plugin-videorate.xml @@ -3,7 +3,7 @@ Adjusts video frames ../../gst/videorate/.libs/libgstvideorate.so libgstvideorate.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videoscale.xml b/docs/plugins/inspect/plugin-videoscale.xml index f8fe61d531..32de3e6298 100644 --- a/docs/plugins/inspect/plugin-videoscale.xml +++ b/docs/plugins/inspect/plugin-videoscale.xml @@ -3,7 +3,7 @@ Resizes video ../../gst/videoscale/.libs/libgstvideoscale.so libgstvideoscale.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-videotestsrc.xml b/docs/plugins/inspect/plugin-videotestsrc.xml index 8b97d83b24..4db9ddc773 100644 --- a/docs/plugins/inspect/plugin-videotestsrc.xml +++ b/docs/plugins/inspect/plugin-videotestsrc.xml @@ -3,7 +3,7 @@ Creates a test video stream ../../gst/videotestsrc/.libs/libgstvideotestsrc.so libgstvideotestsrc.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-volume.xml b/docs/plugins/inspect/plugin-volume.xml index e3ffd316d5..31353a63ac 100644 --- a/docs/plugins/inspect/plugin-volume.xml +++ b/docs/plugins/inspect/plugin-volume.xml @@ -3,7 +3,7 @@ plugin for controlling audio volume ../../gst/volume/.libs/libgstvolume.so libgstvolume.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-vorbis.xml b/docs/plugins/inspect/plugin-vorbis.xml index 91001d499a..3782b02b0b 100644 --- a/docs/plugins/inspect/plugin-vorbis.xml +++ b/docs/plugins/inspect/plugin-vorbis.xml @@ -3,7 +3,7 @@ Vorbis plugin library ../../ext/vorbis/.libs/libgstvorbis.so libgstvorbis.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-ximagesink.xml b/docs/plugins/inspect/plugin-ximagesink.xml index 5438bc34cc..88d80783db 100644 --- a/docs/plugins/inspect/plugin-ximagesink.xml +++ b/docs/plugins/inspect/plugin-ximagesink.xml @@ -3,7 +3,7 @@ X11 video output element based on standard Xlib calls ../../sys/ximage/.libs/libgstximagesink.so libgstximagesink.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/docs/plugins/inspect/plugin-xvimagesink.xml b/docs/plugins/inspect/plugin-xvimagesink.xml index 7a42f42157..5e92856513 100644 --- a/docs/plugins/inspect/plugin-xvimagesink.xml +++ b/docs/plugins/inspect/plugin-xvimagesink.xml @@ -3,7 +3,7 @@ XFree86 video output plugin using Xv extension ../../sys/xvimage/.libs/libgstxvimagesink.so libgstxvimagesink.so - 1.9.2 + 1.9.90 LGPL gst-plugins-base GStreamer Base Plug-ins source release diff --git a/gst-plugins-base.doap b/gst-plugins-base.doap index 905b3086a6..16ada23537 100644 --- a/gst-plugins-base.doap +++ b/gst-plugins-base.doap @@ -34,6 +34,16 @@ A wide range of video and audio decoders, encoders, and filters are included. + + + 1.9.90 + master + + 2016-09-30 + + + + 1.9.2 diff --git a/win32/common/_stdint.h b/win32/common/_stdint.h index df4837ae19..8d3885524e 100644 --- a/win32/common/_stdint.h +++ b/win32/common/_stdint.h @@ -1,8 +1,8 @@ #ifndef _GST_PLUGINS_BASE__STDINT_H #define _GST_PLUGINS_BASE__STDINT_H 1 #ifndef _GENERATED_STDINT_H -#define _GENERATED_STDINT_H "gst-plugins-base 1.9.2" -/* generated using gnu compiler gcc-6 (Debian 6.2.0-2) 6.2.0 20160830 */ +#define _GENERATED_STDINT_H "gst-plugins-base 1.9.90" +/* generated using gnu compiler gcc-6 (Debian 6.2.0-5) 6.2.0 20160927 */ #define _STDINT_HAVE_STDINT_H 1 #include #endif diff --git a/win32/common/config.h b/win32/common/config.h index de3c76410f..790115d1cb 100644 --- a/win32/common/config.h +++ b/win32/common/config.h @@ -90,7 +90,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-09-01" +#define GST_PACKAGE_RELEASE_DATETIME "2016-09-30" /* Define if static plugins should be built */ #undef GST_PLUGIN_BUILD_STATIC @@ -164,6 +164,14 @@ */ #undef HAVE_DCGETTEXT +/* Define to 1 if you have the declaration of `__i386__', and to 0 if you + don't. */ +#undef HAVE_DECL___I386__ + +/* Define to 1 if you have the declaration of `__x86_64__', and to 0 if you + don't. */ +#undef HAVE_DECL___X86_64__ + /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H @@ -260,6 +268,15 @@ /* Define to 1 if you have the header file. */ #undef HAVE_SMMINTRIN_H +/* SSE support is enabled */ +#undef HAVE_SSE + +/* SSE2 support is enabled */ +#undef HAVE_SSE2 + +/* SSE4.1 support is enabled */ +#undef HAVE_SSE41 + /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H @@ -348,7 +365,7 @@ #define PACKAGE_NAME "GStreamer Base Plug-ins" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GStreamer Base Plug-ins 1.9.2" +#define PACKAGE_STRING "GStreamer Base Plug-ins 1.9.90" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "gst-plugins-base" @@ -357,7 +374,7 @@ #undef PACKAGE_URL /* Define to the version of this package. */ -#define PACKAGE_VERSION "1.9.2" +#define PACKAGE_VERSION "1.9.90" /* directory where plugins are located */ #ifdef _DEBUG @@ -395,7 +412,7 @@ #undef USE_TREMOLO /* Version number of package */ -#define VERSION "1.9.2" +#define VERSION "1.9.90" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */