mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
Release 1.9.90
This commit is contained in:
parent
7ee8d3237a
commit
45a04f9d8b
34 changed files with 412 additions and 82 deletions
336
ChangeLog
336
ChangeLog
|
@ -1,9 +1,339 @@
|
|||
=== release 1.9.2 ===
|
||||
=== release 1.9.90 ===
|
||||
|
||||
2016-09-01 Sebastian Dröge <slomo@coaxion.net>
|
||||
2016-09-30 Sebastian Dröge <slomo@coaxion.net>
|
||||
|
||||
* configure.ac:
|
||||
releasing 1.9.2
|
||||
releasing 1.9.90
|
||||
|
||||
2016-09-30 11:42:21 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* po/de.po:
|
||||
po: Update translations
|
||||
|
||||
2016-09-29 19:54:52 +0530 Arun Raghavan <arun@osg.samsung.com>
|
||||
|
||||
* gst-libs/gst/audio/Makefile.am:
|
||||
audio-resampler: Add a missing header to noinst_HEADERS
|
||||
|
||||
2016-09-29 19:45:16 +0530 Arun Raghavan <arun@osg.samsung.com>
|
||||
|
||||
* 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 <arun@osg.samsung.com>
|
||||
|
||||
* 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 <arun@osg.samsung.com>
|
||||
|
||||
* gst-libs/gst/audio/audio-resampler.c:
|
||||
audioresample: Fix some gobject introspection warnings
|
||||
|
||||
2016-09-26 10:01:08 +0200 Edward Hervey <edward@centricular.com>
|
||||
|
||||
* 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 <tim@centricular.com>
|
||||
|
||||
* tests/check/meson.build:
|
||||
tests: playbin-complex test needs oggdemux
|
||||
|
||||
2016-09-24 21:11:32 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* 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 <tim@centricular.com>
|
||||
|
||||
* 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 <wtaymans@redhat.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* 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 <tim@centricular.com>
|
||||
|
||||
* 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 <nicolas.dufresne@collabora.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* gst/audiotestsrc/gstaudiotestsrc.c:
|
||||
audiotestsrc: Fix segment boundary checking for reverse playback
|
||||
|
||||
2016-09-14 16:51:30 +0200 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* configure.ac:
|
||||
configure: Depend on gstreamer 1.9.2.1
|
||||
|
||||
2016-09-14 10:14:18 +0200 Víctor Manuel Jáquez Leal <vjaquez@igalia.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* 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 <jan@centricular.com>
|
||||
|
||||
* autogen.sh:
|
||||
* common:
|
||||
Automatic update of common submodule
|
||||
From b18d820 to f980fd9
|
||||
|
||||
2016-09-10 10:05:28 +0100 Tim-Philipp Müller <tim@centricular.com>
|
||||
|
||||
* 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 <jan@centricular.com>
|
||||
|
||||
* autogen.sh:
|
||||
* common:
|
||||
Automatic update of common submodule
|
||||
From f49c55e to b18d820
|
||||
|
||||
2016-09-07 17:02:23 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* 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 <nicolas.dufresne@collabora.com>
|
||||
|
||||
* tests/check/libs/video.c:
|
||||
video/test: Coding style fix
|
||||
|
||||
2016-09-05 19:55:58 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* 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 <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* tests/examples/overlay/meson.build:
|
||||
meson: tests: Do not pull qt5 as a hard dependency
|
||||
|
||||
2016-09-05 17:43:13 -0300 Thibault Saunier <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* 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 <thibault.saunier@osg.samsung.com>
|
||||
|
||||
* meson.build:
|
||||
meson: Bump version to 1.9.2
|
||||
|
||||
2016-08-26 11:30:16 +0100 Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
|
||||
|
||||
* 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 <vincent.penquerch@collabora.co.uk>
|
||||
|
||||
* 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 <tim@centricular.com>
|
||||
|
||||
* tests/examples/seek/meson.build:
|
||||
meson: fix joystick header check for jseek example
|
||||
|
||||
2016-09-03 11:57:22 +1000 Jonathan Matthew <jonathan@d14n.org>
|
||||
|
||||
* 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 <tim@centricular.com>
|
||||
|
||||
* tools/gst-play.c:
|
||||
tools: gst-play: cycle between video tracks without disabling video
|
||||
|
||||
2016-09-01 17:56:24 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* win32/common/libgstrtp.def:
|
||||
win32: Update exports
|
||||
|
||||
2016-09-01 22:48:40 +1000 Jan Schmidt <jan@centricular.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* gst/playback/gstplaybackutils.h:
|
||||
playback: Mark internal functions as G_GNUC_INTERNAL
|
||||
|
||||
2016-09-01 14:47:02 +0900 Wonchul Lee <wonchul.lee@collabora.com>
|
||||
|
||||
* 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 <havard.graff@gmail.com>
|
||||
|
||||
* 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 <havard.graff@gmail.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
* configure.ac:
|
||||
Back to development
|
||||
|
||||
=== release 1.9.2 ===
|
||||
|
||||
2016-09-01 12:26:20 +0300 Sebastian Dröge <sebastian@centricular.com>
|
||||
|
||||
* 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 <sebastian@centricular.com>
|
||||
|
||||
|
|
2
NEWS
2
NEWS
|
@ -1 +1 @@
|
|||
This is GStreamer 1.9.2
|
||||
This is GStreamer 1.9.90
|
||||
|
|
57
RELEASE
57
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
|
||||
|
|
@ -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 ****
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adds multiple streams</description>
|
||||
<filename>../../gst/adder/.libs/libgstadder.so</filename>
|
||||
<basename>libgstadder.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ALSA plugin library</description>
|
||||
<filename>../../ext/alsa/.libs/libgstalsa.so</filename>
|
||||
<basename>libgstalsa.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Elements used to communicate with applications</description>
|
||||
<filename>../../gst/app/.libs/libgstapp.so</filename>
|
||||
<basename>libgstapp.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Convert audio to different formats</description>
|
||||
<filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename>
|
||||
<basename>libgstaudioconvert.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adjusts audio frames</description>
|
||||
<filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename>
|
||||
<basename>libgstaudiorate.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Resamples audio</description>
|
||||
<filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename>
|
||||
<basename>libgstaudioresample.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Creates audio test signals of given frequency and volume</description>
|
||||
<filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename>
|
||||
<basename>libgstaudiotestsrc.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Read audio from CD in paranoid mode</description>
|
||||
<filename>../../ext/cdparanoia/.libs/libgstcdparanoia.so</filename>
|
||||
<basename>libgstcdparanoia.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>various encoding-related elements</description>
|
||||
<filename>../../gst/encoding/.libs/libgstencodebin.so</filename>
|
||||
<basename>libgstencodebin.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GIO elements</description>
|
||||
<filename>../../gst/gio/.libs/libgstgio.so</filename>
|
||||
<basename>libgstgio.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>libvisual visualization plugins</description>
|
||||
<filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename>
|
||||
<basename>libgstlibvisual.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ogg stream manipulation (info about ogg: http://xiph.org)</description>
|
||||
<filename>../../ext/ogg/.libs/libgstogg.so</filename>
|
||||
<basename>libgstogg.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>OPUS plugin library</description>
|
||||
<filename>../../ext/opus/.libs/libgstopus.so</filename>
|
||||
<basename>libgstopus.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Pango-based text rendering and overlay</description>
|
||||
<filename>../../ext/pango/.libs/libgstpango.so</filename>
|
||||
<basename>libgstpango.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>various playback elements</description>
|
||||
<filename>../../gst/playback/.libs/libgstplayback.so</filename>
|
||||
<basename>libgstplayback.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Subtitle parsing</description>
|
||||
<filename>../../gst/subparse/.libs/libgstsubparse.so</filename>
|
||||
<basename>libgstsubparse.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>transfer data over the network via TCP</description>
|
||||
<filename>../../gst/tcp/.libs/libgsttcp.so</filename>
|
||||
<basename>libgsttcp.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Theora plugin library</description>
|
||||
<filename>../../ext/theora/.libs/libgsttheora.so</filename>
|
||||
<basename>libgsttheora.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>default typefind functions</description>
|
||||
<filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename>
|
||||
<basename>libgsttypefindfunctions.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Colorspace conversion</description>
|
||||
<filename>../../gst/videoconvert/.libs/libgstvideoconvert.so</filename>
|
||||
<basename>libgstvideoconvert.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adjusts video frames</description>
|
||||
<filename>../../gst/videorate/.libs/libgstvideorate.so</filename>
|
||||
<basename>libgstvideorate.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Resizes video</description>
|
||||
<filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename>
|
||||
<basename>libgstvideoscale.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Creates a test video stream</description>
|
||||
<filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename>
|
||||
<basename>libgstvideotestsrc.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>plugin for controlling audio volume</description>
|
||||
<filename>../../gst/volume/.libs/libgstvolume.so</filename>
|
||||
<basename>libgstvolume.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Vorbis plugin library</description>
|
||||
<filename>../../ext/vorbis/.libs/libgstvorbis.so</filename>
|
||||
<basename>libgstvorbis.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>X11 video output element based on standard Xlib calls</description>
|
||||
<filename>../../sys/ximage/.libs/libgstximagesink.so</filename>
|
||||
<basename>libgstximagesink.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>XFree86 video output plugin using Xv extension</description>
|
||||
<filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename>
|
||||
<basename>libgstxvimagesink.so</basename>
|
||||
<version>1.9.2</version>
|
||||
<version>1.9.90</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
|
|
|
@ -34,6 +34,16 @@ A wide range of video and audio decoders, encoders, and filters are included.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.9.90</revision>
|
||||
<branch>master</branch>
|
||||
<name></name>
|
||||
<created>2016-09-30</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.9.90.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.9.2</revision>
|
||||
|
|
|
@ -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 <stdint.h>
|
||||
#endif
|
||||
|
|
|
@ -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 <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
|
@ -260,6 +268,15 @@
|
|||
/* Define to 1 if you have the <smmintrin.h> 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 <stdint.h> 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). */
|
||||
|
|
Loading…
Reference in a new issue