mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
Release 1.9.1
This commit is contained in:
parent
c2bb1c0b59
commit
e06dd97007
121 changed files with 5628 additions and 3886 deletions
787
NEWS
787
NEWS
|
@ -1,786 +1 @@
|
|||
# GStreamer 1.8 Release Notes
|
||||
|
||||
**GStreamer 1.8.0 was released on 24 March 2016.**
|
||||
|
||||
The GStreamer team is proud to announce a new major feature release in the
|
||||
stable 1.x API series of your favourite cross-platform multimedia framework!
|
||||
|
||||
As always, this release is again packed with new features, bug fixes and other
|
||||
improvements.
|
||||
|
||||
See [https://gstreamer.freedesktop.org/releases/1.8/][latest] for the latest
|
||||
version of this document.
|
||||
|
||||
*Last updated: Thursday 24 March 2016, 10:00 UTC [(log)][gitlog]*
|
||||
|
||||
[latest]: https://gstreamer.freedesktop.org/releases/1.8/
|
||||
[gitlog]: https://cgit.freedesktop.org/gstreamer/www/log/src/htdocs/releases/1.8/release-notes-1.8.md
|
||||
|
||||
## Highlights
|
||||
|
||||
- **Hardware-accelerated zero-copy video decoding on Android**
|
||||
|
||||
- **New video capture source for Android using the android.hardware.Camera API**
|
||||
|
||||
- **Windows Media reverse playback** support (ASF/WMV/WMA)
|
||||
|
||||
- **New tracing system** provides support for more sophisticated debugging tools
|
||||
|
||||
- **New high-level GstPlayer playback convenience API**
|
||||
|
||||
- **Initial support for the new [Vulkan][vulkan] API**, see
|
||||
[Matthew Waters' blog post][vulkan-in-gstreamer] for more details
|
||||
|
||||
- **Improved Opus audio codec support**: Support for more than two channels; MPEG-TS demuxer/muxer can now handle Opus;
|
||||
[sample-accurate][opus-sample-accurate] encoding/decoding/transmuxing with
|
||||
Ogg, Matroska, ISOBMFF (Quicktime/MP4), and MPEG-TS as container;
|
||||
[new codec utility functions for Opus header and caps handling][opus-codec-utils]
|
||||
in pbutils library. The Opus encoder/decoder elements were also moved to
|
||||
gst-plugins-base (from -bad), and the opus RTP depayloader/payloader to -good.
|
||||
|
||||
[opus-sample-accurate]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstaudiometa.html#GstAudioClippingMeta
|
||||
[opus-codec-utils]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstpbutilscodecutils.html
|
||||
|
||||
- **GStreamer VAAPI module now released and maintained as part of the GStreamer project**
|
||||
|
||||
[vulkan]: https://www.khronos.org/vulkan
|
||||
[vulkan-in-gstreamer]: http://ystreet00.blogspot.co.uk/2016/02/vulkan-in-gstreamer.html
|
||||
|
||||
## Major new features and changes
|
||||
|
||||
### Noteworthy new API, features and other changes
|
||||
|
||||
- New GstVideoAffineTransformationMeta meta for adding a simple 4x4 affine
|
||||
transformation matrix to video buffers
|
||||
|
||||
- [g\_autoptr()](https://developer.gnome.org/glib/stable/glib-Miscellaneous-Macros.html#g-autoptr)
|
||||
support for all types is exposed in GStreamer headers now, in combination
|
||||
with a sufficiently-new GLib version (i.e. 2.44 or later). This is primarily
|
||||
for the benefit of application developers who would like to make use of
|
||||
this, the GStreamer codebase itself will not be using g_autoptr() for
|
||||
the time being due to portability issues.
|
||||
|
||||
- GstContexts are now automatically propagated to elements added to a bin
|
||||
or pipeline, and elements now maintain a list of contexts set on them.
|
||||
The list of contexts set on an element can now be queried using the new functions
|
||||
[gst\_element\_get\_context()](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstElement.html#gst-element-get-context)
|
||||
and [gst\_element\_get\_contexts()](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstElement.html#gst-element-get-contexts). GstContexts are used to share context-specific configuration objects
|
||||
between elements and can also be used by applications to set context-specific
|
||||
configuration objects on elements, e.g. for OpenGL or Hardware-accelerated
|
||||
video decoding.
|
||||
|
||||
- New [GST\_BUFFER\_DTS\_OR\_PTS()](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstBuffer.html#GST-BUFFER-DTS-OR-PTS:CAPS)
|
||||
convenience macro that returns the decode timestamp if one is set and
|
||||
otherwise returns the presentation timestamp
|
||||
|
||||
- New GstPadEventFullFunc that returns a GstFlowReturn instead of a gboolean.
|
||||
This new API is mostly for internal use and was added to fix a race condition
|
||||
where occasionally internal flow error messages were posted on the bus when
|
||||
sticky events were propagated at just the wrong moment whilst the pipeline
|
||||
was shutting down. This happened primarily when the pipeline was shut down
|
||||
immediately after starting it up. GStreamer would not know that the reason
|
||||
the events could not be propagated was because the pipeline was shutting down
|
||||
and not some other problem, and now the flow error allows GStreamer to know
|
||||
the reason for the failure (and that there's no reason to post an error
|
||||
message). This is particularly useful for queue-like elements which may need
|
||||
to asynchronously propagate a previous flow return from downstream.
|
||||
|
||||
- Pipeline dumps in form of "dot files" now also show pad properties that
|
||||
differ from their default value, the same as it does for elements. This is
|
||||
useful for elements with pad subclasses that provide additional properties,
|
||||
e.g. videomixer or compositor.
|
||||
|
||||
- Pad probes are now guaranteed to be called in the order they were added
|
||||
(before they were called in reverse order, but no particular order was
|
||||
documented or guaranteed)
|
||||
|
||||
- Plugins can now have dependencies on device nodes (not just regular files)
|
||||
and also have a prefix filter. This is useful for plugins that expose
|
||||
features (elements) based on available devices, such as the video4linux
|
||||
plugin does with video decoders on certain embedded systems.
|
||||
|
||||
- gst\_segment\_to\_position() has been deprecated and been replaced by the
|
||||
better-named gst\_segment\_position\_from\_running\_time(). At the same time
|
||||
gst\_segment\_position\_from\_stream\_time() was added, as well as \_full()
|
||||
variants of both to deal with negative stream time.
|
||||
|
||||
- GstController: the interpolation control source gained a new monotonic cubic
|
||||
interpolation mode that, unlike the existing cubic mode, will never overshoot
|
||||
the min/max y values set.
|
||||
|
||||
- GstNetAddressMeta: can now be read from buffers in language bindings as well,
|
||||
via the new gst\_buffer\_get\_net\_address\_meta() function
|
||||
|
||||
- ID3 tag PRIV frames are now extraced into a new GST\_TAG\_PRIVATE\_DATA tag
|
||||
|
||||
- gst-launch-1.0 and gst\_parse\_launch() now warn in the most common case if
|
||||
a dynamic pad link could not be resolved, instead of just silently
|
||||
waiting to see if a suitable pad appears later, which is often perceived
|
||||
by users as hanging -- they are now notified when this happens and can check
|
||||
their pipeline.
|
||||
|
||||
- GstRTSPConnection now also parses custom RTSP message headers and retains
|
||||
them for the application instead of just ignoring them
|
||||
|
||||
- rtspsrc handling of authentication over tunneled connections (e.g. RTSP over HTTP)
|
||||
was fixed
|
||||
|
||||
- gst\_video\_convert\_sample() now crops if there is a crop meta on the input buffer
|
||||
|
||||
- The debugging system printf functions are now exposed for general use, which
|
||||
supports special printf format specifiers such as GST\_PTR\_FORMAT and
|
||||
GST\_SEGMENT\_FORMAT to print GStreamer-related objects. This is handy for
|
||||
systems that want to prepare some debug log information to be output at a
|
||||
later point in time. The GStreamer-OpenGL subsystem is making use of these
|
||||
new functions, which are [gst\_info\_vasprintf()][gst_info_vasprintf],
|
||||
[gst\_info\_strdup\_vprintf()][gst_info_strdup_vprintf] and
|
||||
[gst\_info\_strdup\_printf()][gst_info_strdup_printf].
|
||||
|
||||
- videoparse: "strides", "offsets" and "framesize" properties have been added to
|
||||
allow parsing raw data with strides and padding that do not match GStreamer
|
||||
defaults.
|
||||
|
||||
- GstPreset reads presets from the directories given in GST\_PRESET\_PATH now.
|
||||
Presets are read from there after presets in the system path, but before
|
||||
application and user paths.
|
||||
|
||||
[gst_info_vasprintf]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#gst-info-vasprintf
|
||||
[gst_info_strdup_vprintf]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#gst-info-strdup-vprintf
|
||||
[gst_info_strdup_printf]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/gstreamer-GstInfo.html#gst-info-strdup-printf
|
||||
|
||||
### New Elements
|
||||
|
||||
- [netsim](): a new (resurrected) element to simulate network jitter and
|
||||
packet dropping / duplication.
|
||||
|
||||
- New VP9 RTP payloader/depayloader elements: rtpvp9pay/rtpvp9depay
|
||||
|
||||
- New [videoframe_audiolevel]() element, a video frame synchronized audio level element
|
||||
|
||||
- New spandsp-based tone generator source
|
||||
|
||||
- New NVIDIA NVENC-based H.264 encoder for GPU-accelerated video encoding on
|
||||
suitable NVIDIA hardware
|
||||
|
||||
- [rtspclientsink](), a new RTSP RECORD sink element, was added to gst-rtsp-server
|
||||
|
||||
- [alsamidisrc](), a new ALSA MIDI sequencer source element
|
||||
|
||||
### Noteworthy element features and additions
|
||||
|
||||
- *identity*: new ["drop-buffer-flags"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-identity.html#GstIdentity--drop-buffer-flags)
|
||||
property to drop buffers based on buffer flags. This can be used to drop all
|
||||
non-keyframe buffers, for example.
|
||||
|
||||
- *multiqueue*: various fixes and improvements, in particular special handling
|
||||
for sparse streams such as substitle streams, to make sure we don't overread
|
||||
them any more. For sparse streams it can be normal that there's no buffer for
|
||||
a long period of time, so having no buffer queued is perfectly normal. Before
|
||||
we would often unnecessarily try to fill the subtitle stream queue, which
|
||||
could lead to much more data being queued in multiqueue than necessary.
|
||||
|
||||
- *multiqueue*/*queue*: When dealing with time limits, these elements now use the
|
||||
new ["GST_BUFFER_DTS_OR_PTS"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstBuffer.html#GST-BUFFER-DTS-OR-PTS:CAPS)
|
||||
and ["gst_segment_to_running_time_full()"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstSegment.html#gst-segment-to-running-time-full)
|
||||
API, resulting in more accurate levels, especially when dealing with non-raw
|
||||
streams (where reordering happens, and we want to use the increasing DTS as
|
||||
opposed to the non-continuously increasing PTS) and out-of-segment input/output.
|
||||
Previously all encoded buffers before the segment start, which can happen when
|
||||
doing ACCURATE seeks, were not taken into account in the queue level calculation.
|
||||
|
||||
- *multiqueue*: New ["use-interleave"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-multiqueue.html#GstMultiQueue--use-interleave)
|
||||
property which allows the size of the queues to be optimized based on the input
|
||||
streams interleave. This should only be used with input streams which are properly
|
||||
timestamped. It will be used in the future decodebin3 element.
|
||||
|
||||
- *queue2*: new ["avg-in-rate"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-plugins/html/gstreamer-plugins-queue2.html#GstQueue2--avg-in-rate)
|
||||
property that returns the average input rate in bytes per second
|
||||
|
||||
- audiotestsrc now supports all audio formats and is no longer artificially
|
||||
limited with regard to the number of channels or sample rate
|
||||
|
||||
- gst-libav (ffmpeg codec wrapper): map and enable JPEG2000 decoder
|
||||
|
||||
- multisocketsink can, on request, send a custom GstNetworkMessage event
|
||||
upstream whenever data is received from a client on a socket. Similarly,
|
||||
socketsrc will, on request, pick up GstNetworkMessage events from downstream
|
||||
and send any data contained within them via the socket. This allows for
|
||||
simple bidirectional communication.
|
||||
|
||||
- matroska muxer and demuxer now support the ProRes video format
|
||||
|
||||
- Improved VP8/VP9 decoding performance on multi-core systems by enabling
|
||||
multi-threaded decoding in the libvpx-based decoders on such systems
|
||||
|
||||
- appsink has a new ["wait-on-eos"](https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-plugins/html/gst-plugins-base-plugins-appsink.html#GstAppSink--wait-on-eos)
|
||||
property, so in cases where it is uncertain if an appsink will have a consumer for
|
||||
its buffers when it receives an EOS this can be set to FALSE to ensure that the
|
||||
appsink will not hang.
|
||||
|
||||
- rtph264pay and rtph265pay have a new "config-interval" mode -1 that will
|
||||
re-send the setup data (SPS/PPS/VPS) before every keyframe to ensure
|
||||
optimal coverage and the shortest possibly start-up time for a new client
|
||||
|
||||
- mpegtsmux can now mux H.265/HEVC video as well
|
||||
|
||||
- The MXF muxer was ported to 1.x and produces more standard conformant files now
|
||||
that can be handled by more other software; The MXF demuxer got improved
|
||||
support for seek tables (IndexTableSegments).
|
||||
|
||||
### Plugin moves
|
||||
|
||||
- The rtph265pay/depay RTP payloader/depayloader elements for H.265/HEVC video
|
||||
from the rtph265 plugin in -bad have been moved into the existing rtp plugin
|
||||
in gst-plugins-good.
|
||||
|
||||
- The mpg123 plugin containing a libmpg123 based audio decoder element has
|
||||
been moved from -bad to -ugly.
|
||||
|
||||
- The Opus encoder/decoder elements have been moved to gst-plugins-base and
|
||||
the RTP payloader to gst-plugins-good, both coming from gst-plugins-bad.
|
||||
|
||||
### New tracing tools for developers
|
||||
|
||||
A new tracing subsystem API has been added to GStreamer, which provides
|
||||
external tracers with the possibility to strategically hook into GStreamer
|
||||
internals and collect data that can be evaluated later. These tracers are a
|
||||
new type of plugin features, and GStreamer core ships with a few example
|
||||
tracers (latency, stats, rusage, log) to start with. Tracers can be loaded
|
||||
and configured at start-up via an environment variable (GST\_TRACER\_PLUGINS).
|
||||
|
||||
Background: While GStreamer provides plenty of data on what's going on in a
|
||||
pipeline via its debug log, that data is not necessarily structured enough to
|
||||
be generally useful, and the overhead to enable logging output for all data
|
||||
required might be too high in many cases. The new tracing system allows tracers
|
||||
to just obtain the data needed at the right spot with as little overhead as
|
||||
possible, which will be particularly useful on embedded systems.
|
||||
|
||||
Of course it has always been possible to do performance benchmarks and debug
|
||||
memory leaks, memory consumption and invalid memory access using standard
|
||||
operating system tools, but there are some things that are difficult to track
|
||||
with the standard tools, and the new tracing system helps with that. Examples
|
||||
are things such as latency handling, buffer flow, ownership transfer of
|
||||
events and buffers from element to element, caps negotiation, etc.
|
||||
|
||||
For some background on the new tracing system, watch Stefan Sauer's
|
||||
GStreamer Conference talk ["A new tracing subsystem for GStreamer"][tracer-0]
|
||||
and for a more specific example how it can be useful have a look at
|
||||
Thiago Santos's lightning talk ["Analyzing caps negotiation using GstTracer"][tracer-1]
|
||||
and his ["GstTracer experiments"][tracer-2] blog post. There was also a Google
|
||||
Summer of Code project in 2015 that used tracing system for a graphical
|
||||
GStreamer debugging tool ["gst-debugger"][tracer-3].
|
||||
|
||||
This is all still very much work in progress, but we hope this will provide the
|
||||
foundation for a whole suite of new debugging tools for GStreamer pipelines.
|
||||
|
||||
[tracer-0]: https://gstconf.ubicast.tv/videos/a-new-tracing-subsystem-for-gstreamer/
|
||||
[tracer-1]: https://gstconf.ubicast.tv/videos/analyzing-caps-negotiation-using-gsttracer/
|
||||
[tracer-2]: http://blog.thiagoss.com/2015/07/23/gsttracer-experiments/
|
||||
[tracer-3]: https://git.gnome.org/browse/gst-debugger
|
||||
|
||||
### GstPlayer: a new high-level API for cross-platform multimedia playback
|
||||
|
||||
GStreamer has had reasonably high-level API for multimedia playback
|
||||
in the form of the playbin element for a long time. This allowed application
|
||||
developers to just configure a URI to play, and playbin would take care of
|
||||
everything else. This works well, but there is still way too much to do on
|
||||
the application-side to implement a fully-featured playback application, and
|
||||
too much general GStreamer pipeline API exposed, making it less accessible
|
||||
to application developers.
|
||||
|
||||
Enter GstPlayer. GstPlayer's aim is to provide an even higher-level abstraction
|
||||
of a fully-featured playback API but specialised for its specific use case. It
|
||||
also provides easy integration with and examples for Gtk+, Qt, Android, OS/X,
|
||||
iOS and Windows. Watch Sebastian's [GstPlayer talk at the GStreamer Conference][gstplayer-talk]
|
||||
for more information, or check out the [GstPlayer API reference][gstplayer-api]
|
||||
and [GstPlayer examples][gstplayer-examples].
|
||||
|
||||
[gstplayer-api]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-libs/html/player.html
|
||||
[gstplayer-talk]: https://gstconf.ubicast.tv/videos/gstplayer-a-simple-cross-platform-api-for-all-your-media-playback-needs-part-1/
|
||||
[gstplayer-examples]: https://github.com/sdroege/gst-player/
|
||||
|
||||
### Adaptive streaming: DASH, HLS and MSS improvements
|
||||
|
||||
- dashdemux now supports loading external xml nodes pointed from its MPD.
|
||||
|
||||
- Content protection nodes parsing support for PlayReady WRM in mssdemux.
|
||||
|
||||
- Reverse playback was improved to respect seek start and stop positions.
|
||||
|
||||
- Adaptive demuxers (hlsdemux, dashdemux, mssdemux) now support the SNAP_AFTER
|
||||
and SNAP_BEFORE seek flags which will jump to the nearest fragment boundary
|
||||
when executing a seek, which means playback resumes more quickly after a seek.
|
||||
|
||||
### Audio library improvements
|
||||
|
||||
- audio conversion, quantization and channel up/downmixing functionality
|
||||
has been moved from the audioconvert element into the audio library and
|
||||
is now available as public API in form of [GstAudioConverter][audio-0],
|
||||
[GstAudioQuantize][audio-1] and [GstAudioChannelMixer][audio-2].
|
||||
Audio resampling will follow in future releases.
|
||||
|
||||
- [gst\_audio\_channel\_get\_fallback\_mask()][audio-3] can be used
|
||||
to retrieve a default channel mask for a given number of channels as last
|
||||
resort if the layout is unknown
|
||||
|
||||
- A new [GstAudioClippingMeta][audio-4] meta was added for specifying clipping
|
||||
on encoded audio buffers
|
||||
|
||||
- A new GstAudioVisualizer base class for audio visualisation elements;
|
||||
most of the existing visualisers have been ported over to the new base class.
|
||||
This new base class lives in the pbutils library rather than the audio library,
|
||||
since we'd have had to make libgstaudio depend on libgstvideo otherwise,
|
||||
which was deemed undesirable.
|
||||
|
||||
[audio-0]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-GstAudioConverter.html
|
||||
[audio-1]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-GstAudioQuantize.html
|
||||
[audio-2]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstaudiochannels.html#gst-audio-channel-mix-new
|
||||
[audio-3]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstaudiochannels.html#gst-audio-channel-get-fallback-mask
|
||||
[audio-4]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-base-libs/html/gst-plugins-base-libs-gstaudiometa.html#GstAudioClippingMeta
|
||||
|
||||
### GStreamer OpenGL support improvements
|
||||
|
||||
#### Better OpenGL Shader support
|
||||
|
||||
[GstGLShader][shader] has been revamped to allow more OpenGL shader types
|
||||
by utilizing a new GstGLSLStage object. Each stage holds an OpenGL pipeline
|
||||
stage such as a vertex, fragment or a geometry shader that are all compiled
|
||||
separately into a program that is executed.
|
||||
|
||||
The glshader element has also received a revamp as a result of the changes in
|
||||
the library. It does not take file locations for the vertex and fragment
|
||||
shaders anymore. Instead it takes the strings directly leaving the file
|
||||
management to the application.
|
||||
|
||||
A new [example][liveshader-example] was added utilizing the new shader
|
||||
infrastructure showcasing live shader edits.
|
||||
|
||||
[shader]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-libs/html/gst-plugins-bad-libs-gstglshader.html
|
||||
[liveshader-example]: https://cgit.freedesktop.org/gstreamer/gst-plugins-bad/tree/tests/examples/gtk/glliveshader.c
|
||||
|
||||
#### OpenGL GLMemory rework
|
||||
|
||||
[GstGLMemory] was extensively reworked to support the addition of multiple
|
||||
texture targets required for zero-copy integration with the Android
|
||||
MediaCodec elements. This work was also used to provide IOSurface based
|
||||
GLMemory on OS X for zero-copy with OS X's VideoToolbox decoder (vtdec) and
|
||||
AV Foundation video source (avfvideosrc). There are also patches in bugzilla
|
||||
for GstGLMemoryEGL specifically aimed at improving the decoding performance on
|
||||
the Raspberry Pi.
|
||||
|
||||
[GstGLMemory]: https://gstreamer.freedesktop.org/data/doc/gstreamer/head/gst-plugins-bad-libs/html/gst-plugins-bad-libs-gstglmemory.html
|
||||
|
||||
A texture-target field was added to video/x-raw(memory:GLMemory) caps to signal
|
||||
the texture target contained in the GLMemory. Its values can be 2D, rectangle
|
||||
or external-oes. glcolorconvert can convert between the different formats as
|
||||
required and different elements will accept or produce different targets. e.g.
|
||||
glimagesink can take and render external-oes textures directly as required for
|
||||
effecient zero-copy on android.
|
||||
|
||||
A generic GL allocation framework was also implemented to support the generic
|
||||
allocation of OpenGL buffers and textures which is used extensively by
|
||||
GstGLBufferPool.
|
||||
|
||||
#### OpenGL DMABuf import uploader
|
||||
|
||||
There is now a DMABuf uploader available for automatic selection that will
|
||||
attempt to import the upstream provided DMABuf. The uploader will import into
|
||||
2D textures with the necesarry format. YUV to RGB conversion is still provided
|
||||
by glcolorconvert to avoid the laxer restrictions with external-oes textures.
|
||||
|
||||
#### OpenGL queries
|
||||
|
||||
Queries of various aspects of the OpenGL runtime such as timers, number of
|
||||
samples or the current timestamp are not possible. The GstGLQuery object uses a
|
||||
delayed debug system to delay the debug output to later to avoid expensive calls
|
||||
to the glGet\* family of functions directly after finishing a query. It is
|
||||
currently used to output the time taken to perform various operations of texture
|
||||
uploads and downloads in GstGLMemory.
|
||||
|
||||
#### New OpenGL elements
|
||||
|
||||
glcolorbalance has been created mirroring the videobalance elements.
|
||||
glcolorbalance provides the exact same interface as videobalance so can be used
|
||||
as a GPU accelerated replacement. glcolorbalance has been added to glsinkbin so
|
||||
usage with playsink/playbin will use it automatically instead of videobalance
|
||||
where possible.
|
||||
|
||||
glvideoflip, which is the OpenGL equiavalant of videoflip, implements the exact
|
||||
same interface and functionality as videoflip.
|
||||
|
||||
#### EGL implementation now selects OpenGL 3.x
|
||||
|
||||
The EGL implementation can now select OpenGL 3.x contexts.
|
||||
|
||||
#### OpenGL API removal
|
||||
|
||||
The GstGLDownload library object was removed as it was not used by anything.
|
||||
Everything is performed by GstGLMemory or in the gldownloadelement.
|
||||
|
||||
The GstGLUploadMeta library object was removed as it was not being used and we
|
||||
don't want to promote the use of GstVideoGLTextureUploadMeta.
|
||||
|
||||
#### OpenGL: Other miscellaneous changes
|
||||
|
||||
- The EGL implementation can now select OpenGL 3.x contexts. This brings
|
||||
OpenGL 3.x to e.g. wayland and other EGL systems.
|
||||
|
||||
- glstereomix/glstereosplit are now built and are usable on OpenGL ES systems
|
||||
|
||||
- The UYVY/YUY2 to RGBA and RGBA to UYVY/YUY2 shaders were fixed removing the
|
||||
sawtooth pattern and luma bleeding.
|
||||
|
||||
- We now utilize the GL\_APPLE\_sync extension on iOS devices which improves
|
||||
performance of OpenGL applications, especially with multiple OpenGL
|
||||
contexts.
|
||||
|
||||
- glcolorconvert now uses a bufferpool to avoid costly
|
||||
glGenTextures/glDeleteTextures for every frame.
|
||||
|
||||
- glvideomixer now has full glBlendFunc and glBlendEquation support per input.
|
||||
|
||||
- gltransformation now support navigation events so your weird transformations
|
||||
also work with DVD menus.
|
||||
|
||||
- qmlglsink can now run on iOS, OS X and Android in addition to the already
|
||||
supported Linux platform.
|
||||
|
||||
- glimagesink now posts unhandled keyboard and mouse events (on backends that
|
||||
support user input, current only X11) on the bus for the application.
|
||||
|
||||
### Initial GStreamer Vulkan support
|
||||
|
||||
Some new elements, vulkansink and vulkanupload have been implemented utilizing
|
||||
the new Vulkan API. The implementation is currently limited to X11 platforms
|
||||
(via xcb) and does not perform any scaling of the stream's contents to the size
|
||||
of the available output.
|
||||
|
||||
A lot of infrasctructure work has been undertaken to support using Vulkan in
|
||||
GStreamer in the future. A number of GstMemory subclasses have been created for
|
||||
integrating Vulkan's GPU memory handling along with VkBuffer's and VkImage's
|
||||
that can be passed between elements. Some GStreamer refcounted wrappers for
|
||||
global objects such as VkInstance, VkDevice, VkQueue, etc have also been
|
||||
implemented along with GstContext integration for sharing these objects with the
|
||||
application.
|
||||
|
||||
### GStreamer VAAPI support for hardware-accelerated video decoding and encoding on Intel (and other) platforms
|
||||
|
||||
#### GStreamer VAAPI is now part of upstream GStreamer
|
||||
|
||||
The GStreamer-VAAPI module which provides support for hardware-accelerated
|
||||
video decoding, encoding and post-processing on Intel graphics hardware
|
||||
on Linux has moved from its previous home at the [Intel Open Source Technology Center][iostc]
|
||||
to the upstream GStreamer repositories, where it will in future be maintained
|
||||
as part of the upstream GStreamer project and released in lockstep with the
|
||||
other GStreamer modules. The current maintainers will continue to spearhead
|
||||
the development at the new location:
|
||||
|
||||
[http://cgit.freedesktop.org/gstreamer/gstreamer-vaapi/][gst-vaapi-git]
|
||||
|
||||
[gst-vaapi-git]: http://cgit.freedesktop.org/gstreamer/gstreamer-vaapi/
|
||||
|
||||
GStreamer-VAAPI relies heavily on certain GStreamer infrastructure API that
|
||||
is still in flux such as the OpenGL integration API or the codec parser
|
||||
libraries, and one of the goals of the move was to be able to leverage
|
||||
new developments early and provide tighter integration with the latest
|
||||
developments of those APIs and other graphics-related APIs provided by
|
||||
GStreamer, which should hopefully improve performance even further and in
|
||||
some cases might also provide better stability.
|
||||
|
||||
Thanks to everyone involved in making this move happen!
|
||||
|
||||
#### GStreamer VAAPI: Bug tracking
|
||||
|
||||
Bugs had already been tracked on [GNOME bugzilla](bgo) but will be moved
|
||||
from the gstreamer-vaapi product into a new gstreamer-vaapi component of
|
||||
the GStreamer product in bugzilla. Please file new bugs against the new
|
||||
component in the GStreamer product from now on.
|
||||
|
||||
#### GStreamer VAAPI: Pending patches
|
||||
|
||||
The code base has been re-indented to the GStreamer code style, which
|
||||
affected some files more than others. This means that some of the patches
|
||||
in bugzilla might not apply any longer, so if you have any unmerged patches
|
||||
sitting in bugzilla please consider checking if they still apply cleany and
|
||||
refresh them if not. Sorry for any inconvenience this may cause.
|
||||
|
||||
#### GStreamer VAAPI: New versioning scheme and supported GStreamer versions
|
||||
|
||||
The version numbering has been changed to match the GStreamer version
|
||||
numbering to avoid confusion: there is a new gstreamer-vaapi 1.6.0 release
|
||||
and a 1.6 branch that is roughly equivalent to the previous 0.7.0 version.
|
||||
Future releases 1.7.x and 1.8.x will be made alongside GStreamer releases.
|
||||
|
||||
While it was possible and supported by previous releases to build against
|
||||
a whole range of different GStreamer versions (such as 1.2, 1.4, 1.6 or 1.7/1.8),
|
||||
in the future there will only be one target branch, so that git master will
|
||||
track GStreamer git master, 1.8.x will target GStreamer 1.8, and
|
||||
1.6.x will target the 1.6 series.
|
||||
|
||||
[iostc]: http://01.org
|
||||
[bgo]: http://bugzilla.gnome.og
|
||||
|
||||
#### GStreamer VAAPI: Miscellaneous changes
|
||||
|
||||
All GStreamer-VAAPI functionality is now provided solely by its GStreamer
|
||||
elements. There is no more public library exposing GstVaapi API, this API
|
||||
was only ever meant for private use by the elements. Parts of it may be
|
||||
resurrected again in future if needed, but for now it has all been made
|
||||
private.
|
||||
|
||||
GStreamer-VAAPI now unconditionally uses the codecparser library in
|
||||
gst-plugins-bad instead of shipping its own internal copy. Similarly,
|
||||
it no longer ships its own codec parsers but relies on the upstream
|
||||
codec parser elements.
|
||||
|
||||
The GStreamer-VAAPI encoder elements have been renamed from vaapiencode_foo
|
||||
to vaapifooenc, so encoders are now called vaapih264enc, vaapih265enc,
|
||||
vaapimpeg2enc, vaapijpegenc, and vaapivp8enc. With this change we now follow
|
||||
the standard names in GStreamer, and the plugin documentation is generated
|
||||
correctly.
|
||||
|
||||
In the case of the decoders, only the jpeg decoder has been split from the
|
||||
general decoding element vaapidecode: vaapijpegdec. This is the first step to
|
||||
split per codec each decoding element. The vaapijpegdec has also been given
|
||||
marginal rank for the time being.
|
||||
|
||||
#### GStreamer VAAPI: New features in 1.8: 10-bit H.265/HEVC decoding support
|
||||
|
||||
Support for decoding 10-bit H.265/HEVC has been added. For the time being
|
||||
this only works in combination with vaapisink though, until support for the
|
||||
P010 video format used internally is added to GStreamer and to the
|
||||
vaGetImage()/vaPutimage() API in the vaapi-intel-driver.
|
||||
|
||||
Several fixes for memory leaks, build errors, and in the internal
|
||||
video parsing.
|
||||
|
||||
Finally, vaapisink now posts the unhandled keyboard and mouse events to the
|
||||
application.
|
||||
|
||||
### GStreamer Video 4 Linux Support
|
||||
|
||||
Colorimetry support has been enhanced even more. It will now properly select
|
||||
default values when not specified by the driver. The range of color formats
|
||||
supported by GStreamer has been greatly improved. Notably, support for
|
||||
multi-planar I420 has been added along with all the new and non-ambiguous RGB
|
||||
formats that got added in recent kernels.
|
||||
|
||||
The device provider now exposes a variety of properties as found in the udev
|
||||
database.
|
||||
|
||||
The video decoder is now able to negotiate the downstream format.
|
||||
|
||||
Elements that are dynamically created from /dev/video\* now track changes on
|
||||
these devices to ensure the registry stay up to date.
|
||||
|
||||
All this and various bug fixes that improve both stability and correctness.
|
||||
|
||||
### GStreamer Editing Services
|
||||
|
||||
Added APIs to handle asset proxying support. Proxy creation is not the
|
||||
responsibility of GES itself, but GES provides all the needed features
|
||||
for it to be cleanly handled at a higher level.
|
||||
|
||||
Added support for changing playback rate. This means that now, whenever a
|
||||
user adds a 'pitch' element (as it is the only known element to change playback
|
||||
rate through properties), GES will handle everything internally. This change
|
||||
introduced a new media-duration-factor property in NleObject which will
|
||||
lead to tweaking of seek events so they have the proper playback range to be
|
||||
requested upstream.
|
||||
|
||||
Construction of NLE objects has been reworked making copy/pasting fully
|
||||
functional and allowing users to set properties on effects right after
|
||||
creating them.
|
||||
|
||||
Rework of the title source to add more flexibility in text positioning,
|
||||
and letting the user get feedback about rendered text positioning.
|
||||
|
||||
Report nlecomposition structural issues (coming from user programing mistakes)
|
||||
into ERROR messages on the bus.
|
||||
|
||||
Add GI/pythyon testsuite in GES itself, making sure the API is working as expected
|
||||
in python, and allowing writing tests faster.
|
||||
|
||||
### GstValidate
|
||||
|
||||
Added support to run tests inside gdb.
|
||||
|
||||
Added a 'smart' reporting mode where we give as much information as possible about
|
||||
critical errors.
|
||||
|
||||
Uses GstTracer now instead of a LD\_PRELOAD library.
|
||||
|
||||
## Miscellaneous
|
||||
|
||||
- encodebin now works with "encoder-muxers" such as wavenc
|
||||
|
||||
- gst-play-1.0 acquired a new keyboard shortcut: '0' seeks back to the start
|
||||
|
||||
- gst-play-1.0 supports two new command line switches: -v for verbose output
|
||||
and --flags to configure the playbin flags to use.
|
||||
|
||||
## Build and Dependencies
|
||||
|
||||
- The GLib dependency requirement was bumped to 2.40
|
||||
|
||||
- The -Bsymbolic configure check now works with clang as well
|
||||
|
||||
- ffmpeg is now required as libav provider, incompatible changes were
|
||||
introduced that make it no longer viable to support both FFmpeg and Libav
|
||||
as libav providers. Most major distros have switched to FFmpeg or are in
|
||||
the process of switching to it anyway, so we don't expect this to be a
|
||||
problem, and there is still an internal copy of ffmpeg that can be used
|
||||
as fallback if needed.
|
||||
|
||||
- The internal ffmpeg snapshot is now FFMpeg 3.0, but it should be possible
|
||||
to build against 2.8 as well for the time being.
|
||||
|
||||
## Platform-specific improvements
|
||||
|
||||
### Android
|
||||
|
||||
- Zero-copy video decoding on Android using the hardware-accelerated decoders
|
||||
has been implemented, and is fully integrated with the GStreamer OpenGL stack
|
||||
|
||||
- ahcsrc, a new camera source element, has been merged and can be used to
|
||||
capture video on android devices. It uses the android.hardware.Camera Java
|
||||
API to capture from the system's cameras.
|
||||
|
||||
- The OpenGL-based QML video sink can now also be used on Android
|
||||
|
||||
- New tinyalsasink element, which is mainly useful for Android but can also
|
||||
be used on other platforms.
|
||||
|
||||
### OS/X and iOS
|
||||
|
||||
- The system clock now uses mach\_absolute\_time() on OSX/iOS, which is
|
||||
the preferred high-resolution monotonic clock to be used on Apple platforms
|
||||
|
||||
- The OpenGL-based QML video sink can now also be used on OS X and iOS (with
|
||||
some Qt build system massaging)
|
||||
|
||||
- New IOSurface based memory implementation in avfvideosrc and vtdec on OS X
|
||||
for zerocopy with OpenGL. The previously used OpenGL extension
|
||||
GL_APPLE_ycbcr_422 is not compatible with GL 3.x core contexts.
|
||||
|
||||
- New GstAppleCoreVideoMemory wrapping CVPixelBuffer's
|
||||
|
||||
- avfvideosrc now supports renegotiation.
|
||||
|
||||
### Windows
|
||||
|
||||
- Various bugs with UDP and multicast were fixed on Windows, mostly related to
|
||||
gst-rtsp-server.
|
||||
|
||||
- A few bugs in directsoundsrc and directsoundsink were fixed that could cause
|
||||
the element to lock up. Also the "mute" property on the sink was fixed, and
|
||||
a new "device" property for device selection was added to the source.
|
||||
|
||||
## Known Issues
|
||||
|
||||
- Building GStreamer applications with the Android NDK r11 is currently not
|
||||
supported due to incompatible changes in the NDK. This is expected to be
|
||||
fixed for 1.8.1.
|
||||
[Bugzilla #763999](https://bugzilla.gnome.org/show_bug.cgi?id=763999)
|
||||
|
||||
- vp8enc crashes on 32 bit Windows, but was working fine in 1.6. 64 bit
|
||||
Windows is unaffected.
|
||||
[Bugzilla #763663](https://bugzilla.gnome.org/show_bug.cgi?id=763663)
|
||||
|
||||
## Contributors
|
||||
|
||||
Adam Miartus, Alban Bedel, Aleix Conchillo Flaqué, Aleksander Wabik,
|
||||
Alessandro Decina, Alex Ashley, Alex Dizengof, Alex Henrie, Alistair Buxton,
|
||||
Andreas Cadhalpun, Andreas Frisch, André Draszik, Anthony G. Basile,
|
||||
Antoine Jacoutot, Anton Bondarenko, Antonio Ospite, Arjen Veenhuizen,
|
||||
Arnaud Vrac, Arun Raghavan, Athanasios Oikonomou, Aurélien Zanelli, Ben Iofel,
|
||||
Bob Holcomb, Branko Subasic, Carlos Rafael Giani, Chris Bass, Csaba Toth,
|
||||
Daniel Kamil Kozar, Danilo Cesar Lemes de Paula, Dave Craig, David Fernandez,
|
||||
David Schleef, David Svensson Fors, David Waring, David Wu, Duncan Palmer,
|
||||
Edward Hervey, Egor Zaharov, Etienne Peron, Eunhae Choi, Evan Callaway,
|
||||
Evan Nemerson, Fabian Orccon, Florent Thiéry, Florin Apostol, Frédéric Wang,
|
||||
George Kiagiadakis, George Yunaev, Göran Jönsson, Graham Leggett,
|
||||
Guillaume Desmottes, Guillaume Marquebielle, Haihua Hu, Havard Graff,
|
||||
Heinrich Fink, Holger Kaelberer, HoonHee Lee, Hugues Fruchet, Hyunil Park,
|
||||
Hyunjun Ko, Ilya Konstantinov, James Stevenson, Jan Alexander Steffens (heftig),
|
||||
Jan Schmidt, Jason Litzinger, Jens Georg, Jimmy Ohn, Joan Pau Beltran,
|
||||
Joe Gorse, John Chang, John Slade, Jose Antonio Santos Cadenas, Josep Torra,
|
||||
Julian Bouzas, Julien Isorce, Julien Moutte, Justin Kim, Kazunori Kobayashi,
|
||||
Koop Mast, Lim Siew Hoon, Linus Svensson, Lubosz Sarnecki, Luis de Bethencourt,
|
||||
Lukasz Forynski, Manasa Athreya, Marcel Holtmann, Marcin Kolny, Marcus Prebble,
|
||||
Mark Nauwelaerts, Maroš Ondrášek, Martin Kelly, Matej Knopp, Mathias Hasselmann,
|
||||
Mathieu Duponchelle, Matt Crane, Matthew Marsh, Matthew Waters, Matthieu Bouron,
|
||||
Mersad Jelacic, Michael Olbrich, Miguel París Díaz, Mikhail Fludkov,
|
||||
Mischa Spiegelmock, Nicola Murino, Nicolas Dufresne, Nicolas Huet,
|
||||
Nirbheek Chauhan, Ognyan Tonchev, Olivier Crête, Pablo Anton, Pankaj Darak,
|
||||
Paolo Pettinato, Patricia Muscalu, Paul Arzelier, Pavel Bludov, Perry Hung,
|
||||
Peter Korsgaard, Peter Seiderer, Petr Viktorin, Philippe Normand,
|
||||
Philippe Renon, Philipp Zabel, Philip Van Hoof, Philip Withnall, Piotr Drąg,
|
||||
plamot, Polochon\_street, Prashant Gotarne, Rajat Verma, Ramiro Polla,
|
||||
Ravi Kiran K N, Reynaldo H. Verdejo Pinochet, Robert Swain, Romain Picard,
|
||||
Roman Nowicki, Ross Burton, Ryan Hendrickson, Santiago Carot-Nemesio,
|
||||
Scott D Phillips, Sebastian Dröge, Sebastian Rasmussen, Sergey Borovkov,
|
||||
Seungha Yang, Sjors Gielen, Song Bing, Sreerenj Balachandran, Srimanta Panda,
|
||||
Stavros Vagionitis, Stefan Sauer, Steven Hoving, Stian Selnes, Suhwang Kim,
|
||||
Thiago Santos, Thibault Saunier, Thijs Vermeir, Thomas Bluemel, Thomas Roos,
|
||||
Thomas Vander Stichele, Tim-Philipp Müller, Tim Sheridan, Ting-Wei Lan,
|
||||
Tom Deseyn, Vanessa Chipirrás Navalón, Víctor Manuel Jáquez Leal,
|
||||
Vincent Dehors, Vincent Penquerc'h, Vineeth T M, Vivia Nikolaidou,
|
||||
Wang Xin-yu (王昕宇), William Manley, Wim Taymans, Wonchul Lee, Xavi Artigas,
|
||||
Xavier Claessens, Youness Alaoui,
|
||||
|
||||
... and many others who have contributed bug reports, translations, sent
|
||||
suggestions or helped testing.
|
||||
|
||||
## Bugs fixed in 1.8
|
||||
|
||||
More than [~700 bugs][bugs-fixed-in-1.8] have been fixed during
|
||||
the development of 1.8.
|
||||
|
||||
This list does not include issues that have been cherry-picked into the
|
||||
stable 1.6 branch and fixed there as well, all fixes that ended up in the
|
||||
1.6 branch are also included in 1.8.
|
||||
|
||||
This list also does not include issues that have been fixed without a bug
|
||||
report in bugzilla, so the actual number of fixes is much higher.
|
||||
|
||||
[bugs-fixed-in-1.8]: https://bugzilla.gnome.org/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&classification=Platform&limit=0&list_id=107311&order=bug_id&product=GStreamer&query_format=advanced&resolution=FIXED&target_milestone=1.6.1&target_milestone=1.6.2&target_milestone=1.6.3&target_milestone=1.7.0&target_milestone=1.7.1&target_milestone=1.7.2&target_milestone=1.7.3&target_milestone=1.7.4&target_milestone=1.7.90&target_milestone=1.7.91&target_milestone=1.7.92&target_milestone=1.7.x&target_milestone=1.8.0
|
||||
|
||||
## Stable 1.8 branch
|
||||
|
||||
After the 1.8.0 release there will be several 1.8.x bug-fix releases which
|
||||
will contain bug fixes which have been deemed suitable for a stable branch,
|
||||
but no new features or intrusive changes will be added to a bug-fix release
|
||||
usually. The 1.8.x bug-fix releases will be made from the git 1.8 branch, which
|
||||
is a stable branch.
|
||||
|
||||
### 1.8.0
|
||||
|
||||
1.8.0 was released on 24 March 2016.
|
||||
|
||||
### 1.8.1
|
||||
|
||||
The first 1.8 bug-fix release (1.8.1) is planned for April 2016.
|
||||
|
||||
## Schedule for 1.10
|
||||
|
||||
Our next major feature release will be 1.10, and 1.9 will be the unstable
|
||||
development version leading up to the stable 1.10 release. The development
|
||||
of 1.9/1.10 will happen in the git master branch.
|
||||
|
||||
The plan for the 1.10 development cycle is yet to be confirmed, but it is
|
||||
expected that feature freeze will be around late July or early August,
|
||||
followed by several 1.9 pre-releases and the new 1.10 stable release
|
||||
in September.
|
||||
|
||||
1.10 will be backwards-compatible to the stable 1.8, 1.6, 1.4, 1.2 and 1.0
|
||||
release series.
|
||||
|
||||
- - -
|
||||
|
||||
*These release notes have been prepared by Tim-Philipp Müller with
|
||||
contributions from Sebastian Dröge, Nicolas Dufresne, Edward Hervey, Víctor
|
||||
Manuel Jáquez Leal, Arun Raghavan, Thiago Santos, Thibault Saunier, Jan
|
||||
Schmidt and Matthew Waters.*
|
||||
|
||||
*License: [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)*
|
||||
This is GStreamer 1.9.1
|
||||
|
|
178
RELEASE
178
RELEASE
|
@ -1,15 +1,15 @@
|
|||
|
||||
Release notes for GStreamer Bad Plugins 1.8.0
|
||||
Release notes for GStreamer Bad Plugins 1.9.1
|
||||
|
||||
The GStreamer team is pleased to announce the first release of the new stable
|
||||
1.8 release series. The 1.8 release series is adding new features on top of
|
||||
the 1.0, 1.2, 1.4 and 1.6 series and is part of the API and ABI-stable 1.x
|
||||
release series of the GStreamer multimedia framework.
|
||||
The GStreamer team is pleased to announce the first release of the unstable
|
||||
1.9 release series. 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.
|
||||
|
||||
|
||||
Binaries for Android, iOS, Mac OS X and Windows will be provided shortly after
|
||||
the source release by the GStreamer project during the stable 1.8 release
|
||||
series.
|
||||
Binaries for Android, iOS, Mac OS X and Windows will be provided in the next days.
|
||||
|
||||
|
||||
"That an accusation?"
|
||||
|
@ -60,12 +60,97 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg)
|
|||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 763756 : gl ! textoverlay ! glupload ! glfilter doesn't negotiate
|
||||
* 763793 : h264parse, h265parse: failure to parse downstream force-key-unit event
|
||||
* 763877 : Unable to build vulkan plugin from released tarball
|
||||
* 763974 : mxfdemux: Fix query memory leak
|
||||
* 764066 : vulkan: Build failure on arch not finding VK_API_VERSION
|
||||
* 763262 : mpegtsdemux: accurate seeks are no more accurate (regression)
|
||||
* 765266 : gl: More GLES/GL 3 compatibility fixes
|
||||
* 767087 : ahcsrc: improve error message when camera open fails
|
||||
* 623860 : mpegpsdemux: sends segment and gap events with invalid time after seek
|
||||
* 678207 : lv2: port to GStreamer 1.0 and SLV2 to Lilv
|
||||
* 704222 : gldownload: Support for multi-planar format for GLES
|
||||
* 733233 : chromaprint: notify fingerprint also via property notify
|
||||
* 733872 : codecparsers: mpegvideo: Add more fields to the headers.
|
||||
* 739598 : rfbsrc: incorrectly calculates caps
|
||||
* 746933 : gldisplay: EAGL " Could not create display "
|
||||
* 748651 : DTLS: Use unique names for internal elements to ease debugging
|
||||
* 751540 : gltestsrc: implement missing patterns, port to GL3 / ES3, load shaders with GIO
|
||||
* 751792 : dashdemux: incorrect segment duration for a segment list
|
||||
* 753265 : osxaudio: Add device provider support
|
||||
* 754495 : videoaggregator: No protection from receiving interlaced and non-interlaced content
|
||||
* 756931 : gstglbasemixer: negotiated logic is partly broken
|
||||
* 757022 : pnm: Implementation of GRAY16 handling
|
||||
* 758064 : dashdemux: leading whitespaces in content protection element are not ignored
|
||||
* 759801 : gltestsrc outputs only black frames for pattern 0 and 11
|
||||
* 760916 : gl: implement GstGLMemoryEGL
|
||||
* 761260 : qml: add Windows support
|
||||
* 762142 : dashdemux: tests: use g_object_unref for test data
|
||||
* 762144 : dashdemux: tests: add new dashdemux tests
|
||||
* 762147 : adaptivedemux: use GstSystemClock to all real-time calculations
|
||||
* 763026 : dc1394: port to 1.X
|
||||
* 763044 : Enable qmlglsink on Rasperry PI
|
||||
* 763065 : androidmedia: assorted refactoring
|
||||
* 763081 : bad plugins: use new gst_element_class_add_static_pad_template()
|
||||
* 763099 : ahcsrc: replace with new surfacetexture
|
||||
* 763100 : ahcsrc: remove unused variable
|
||||
* 763126 : player: Add is_live flag to the GstPlayerMediaInfo
|
||||
* 763309 : ahcsrc: add finalize function
|
||||
* 763441 : rfbsrc: leads to - > invalid video buffer received
|
||||
* 763647 : mpegtsmux doesn't keep language code from the incoming audio stream
|
||||
* 763998 : ahc: use g_slice_new instead of g_slice_new0
|
||||
* 764018 : glcontext: try wglCreateContextAttribsARB first even not using GL3 core profile
|
||||
* 764036 : interlace: Allow interlaced sink caps, do passthrough
|
||||
* 764251 : rtmpsrc: Add timeout property
|
||||
* 764361 : gdpdepay: query for buffer allocator
|
||||
* 764370 : codecparser: vp9: Wrong default values in non-intraonly/non-keyframe header fields
|
||||
* 764549 : aggregator: remove duplicated test of flow_return in pad_chain_internal
|
||||
* 764684 : adaptivedemux: Forward upstream buffer offsets
|
||||
* 764873 : gldeinterlace: enable this plugin on OpenGL ES using a simple deinterlace fragment shader
|
||||
* 764957 : dvbsrc: support dvbv5 channels format
|
||||
* 764972 : dvbsrc: needlessly perform delivery system autodetection twice
|
||||
* 765250 : d3dvideosink includes deprecated and unused d3dx9tex.h header
|
||||
* 765292 : gl:cocoa:Fix incompatible type warning
|
||||
* 765315 : player: Add A/V offset property
|
||||
* 765425 : dshowsrcwrapper: Fix include path in CMakeLists.txt
|
||||
* 765426 : dshowsrcwrapper: Fix link error (SAFESEH)
|
||||
* 765427 : dshowsrcwrapper: add support for RGB32, RGB555, RGB565 and RGB8 formats
|
||||
* 765428 : dshowsrcwrapper: Work around bugs in IDS Imaging camera drivers
|
||||
* 765431 : aggregator: Check all pads for data when live
|
||||
* 765581 : pvrbufferpool: gst_meta_register() parameter wrong
|
||||
* 765728 : adaptivedemux: Segfault since " use realtime_clock for waiting for a condition " commit
|
||||
* 765795 : glimagesink: support video frame rotation
|
||||
* 765804 : GstPlayer build error due to not finding GstVideo-1.0.gir
|
||||
* 765989 : videodiff element has useless " FIXME " description
|
||||
* 766053 : uridownloader: should take ownership of its source element
|
||||
* 766062 : player: Provide signalling for when a new URI is started
|
||||
* 766163 : Some header files missing in sys/applemedia/ in gst-plugins-bad-1.8.1.tar.xz
|
||||
* 766343 : mpegtsbase: remove unused variables 'upstream_live' and 'queried_latency'
|
||||
* 766597 : kmssink: doesn't chain up finalize
|
||||
* 766607 : player: problems with unit tests
|
||||
* 766639 : examples: opencv: typo fix
|
||||
* 766650 : adaptivedemux: Set DISCONT on startup and after seeks
|
||||
* 766661 : gltestsrc,glmosaic: fix shader leaks
|
||||
* 766662 : adaptivedemux: fix tag list leak
|
||||
* 766663 : bad: fix leaks in tests
|
||||
* 766679 : ahc: fix typo
|
||||
* 766703 : glvideomixer: Using an invalid, already destroyed context
|
||||
* 766794 : eglimage: Fails to compile because of compiler warning caused by unused function
|
||||
* 766803 : h264parse: add support for config-interval=-1 to re-send SPS/PPS on I/IDR frames
|
||||
* 766818 : [gl] gltransformation's pivot-z property not writable
|
||||
* 766867 : gl: win32: no debug category set in gstglcontext_wgl.c
|
||||
* 766891 : h265parse: codec_data cap field could be mis-populated when vps/sps/pps id's are not used contiguously from zero.
|
||||
* 766973 : Various warningfixes for OSX (10.9.5) compiling with Apple LLVM version 6.0
|
||||
* 766993 : Android decodebin: zero copy between hardware decoder and glimagesink doesn't work (regression in 1.9)
|
||||
* 767104 : applemedia: vtenc: Register a hardware-only vtenc_h264_hw element on OSX
|
||||
* 767159 : templatematch: fix leak in test
|
||||
* 767161 : a2dpsink: unref avdtpsink if state transition failed
|
||||
* 767162 : bad: use MAY_BE_LEAKED flag
|
||||
* 767365 : adaptivedemux: Add custom flow return for allowing subclasses to specify when a fragment is finished
|
||||
* 767402 : OpenJPEG decoder: use new sampling field to determine channel order for j2c and jpc streams
|
||||
* 767501 : curlsmtpsink: Lock and don't send final boundary upon error
|
||||
* 767512 : jpeg2000parse: support j2c and jp2 file formats
|
||||
* 767553 : qmlglsink: Add Wayland support
|
||||
* 767800 : Introduce a WebRTC Audio Processing based echo canceller for GStreamer
|
||||
* 767908 : jpeg2000parse: use enums for colorspace and sampling, rather than strings
|
||||
* 768217 : gl: Raw uploader is broken
|
||||
* 768365 : shmsrc: gst_poll_remove_fd: assertion 'fd- > fd > = 0' failed
|
||||
* 733265 : srtpenc: remove get-rollover-counter signal and add stats property
|
||||
|
||||
==== Download ====
|
||||
|
||||
|
@ -102,9 +187,70 @@ subscribe to the gstreamer-devel list.
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Aleksander Wabik
|
||||
* Jimmy Ohn
|
||||
* Aaron Boxer
|
||||
* Aleix Conchillo Flaqué
|
||||
* Alessandro Decina
|
||||
* Alex Ashley
|
||||
* Alex-P. Natsios
|
||||
* Arjen Veenhuizen
|
||||
* Arun Raghavan
|
||||
* Aurélien Zanelli
|
||||
* Barun Kumar Singh
|
||||
* Carlos Garcia Campos
|
||||
* Carlos Rafael Giani
|
||||
* Christoffer Stengren
|
||||
* Damian Ziobro
|
||||
* Dimitrios Katsaros
|
||||
* Edward Hervey
|
||||
* Florin Apostol
|
||||
* Guillaume Desmottes
|
||||
* Gwang Yoon Hwang
|
||||
* Haihua Hu
|
||||
* Havard Graff
|
||||
* Heinrich Fink
|
||||
* Hyunjun Ko
|
||||
* Jan Alexander Steffens (heftig)
|
||||
* Jan Schmidt
|
||||
* Javier Martinez Canillas
|
||||
* Jerome Laheurte
|
||||
* Joan Pau Beltran
|
||||
* Jonathan Roy
|
||||
* Julien Isorce
|
||||
* Justin Kim
|
||||
* Kouhei Sutou
|
||||
* Luis de Bethencourt
|
||||
* Marcin Kolny
|
||||
* Marcin Lewandowski
|
||||
* Martin Kelly
|
||||
* Mats Lindestam
|
||||
* Matthew Waters
|
||||
* Michael Olbrich
|
||||
* Nicolas Dufresne
|
||||
* Nirbheek Chauhan
|
||||
* Olivier Crête
|
||||
* Patricia Muscalu
|
||||
* Philipp Zabel
|
||||
* Philippe Normand
|
||||
* Raffaele Rossi
|
||||
* Reynaldo H. Verdejo Pinochet
|
||||
* Santiago Carot-Nemesio
|
||||
* Scott D Phillips
|
||||
* Sebastian Dröge
|
||||
* Sebastian Rasmussen
|
||||
* Sergey Borovkov
|
||||
* Song Bing
|
||||
* Sreerenj Balachandran
|
||||
* Stefan Sauer
|
||||
* Thiago Santos
|
||||
* Thibault Saunier
|
||||
* Tim-Philipp Müller
|
||||
* Vanessa Chipirras Navalon
|
||||
* Vincent Penquerc'h
|
||||
* Vineeth TM
|
||||
* Vivia Nikolaidou
|
||||
* Víctor Manuel Jáquez Leal
|
||||
* Wang Xin-yu (王昕宇)
|
||||
* Wim Taymans
|
||||
* Xavier Claessens
|
||||
* Yann Jouanin
|
||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.69])
|
|||
dnl initialize autoconf
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, git and prerelease does Werror too
|
||||
AC_INIT([GStreamer Bad Plug-ins],[1.9.0.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
||||
AC_INIT([GStreamer Bad Plug-ins],[1.9.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
||||
|
||||
AG_GST_INIT
|
||||
|
||||
|
@ -51,11 +51,11 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
|||
dnl - interfaces added -> increment AGE
|
||||
dnl - interfaces removed -> AGE = 0
|
||||
dnl sets GST_LT_LDFLAGS
|
||||
AS_LIBTOOL(GST, 900, 0, 900)
|
||||
AS_LIBTOOL(GST, 901, 0, 901)
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=1.9.0.1
|
||||
GSTPB_REQ=1.9.0.1
|
||||
GST_REQ=1.9.1
|
||||
GSTPB_REQ=1.9.1
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -2013,7 +2013,7 @@
|
|||
<TYPE>guint</TYPE>
|
||||
<RANGE>[1,7]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer enabled</NICK>
|
||||
<NICK>ISDB-T layer enabled</NICK>
|
||||
<BLURB>(ISDB-T) Layer Enabled (7 = All layers).</BLURB>
|
||||
<DEFAULT>7</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2043,7 +2043,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer A segment count</NICK>
|
||||
<NICK>ISDB-T layer A segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer A segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2053,7 +2053,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer A time interleaving </NICK>
|
||||
<NICK>ISDB-T layer A time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer A time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2083,7 +2083,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer B segment count</NICK>
|
||||
<NICK>ISDB-T layer B segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer B segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2093,7 +2093,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer B time interleaving </NICK>
|
||||
<NICK>ISDB-T layer B time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer B time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2123,7 +2123,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer C segment count</NICK>
|
||||
<NICK>ISDB-T layer C segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer C segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2133,7 +2133,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer C time interleaving </NICK>
|
||||
<NICK>ISDB-T layer C time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer C time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2143,7 +2143,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,1]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T partial reception</NICK>
|
||||
<NICK>ISDB-T partial reception</NICK>
|
||||
<BLURB>(ISDB-T) Partial Reception (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2153,7 +2153,7 @@
|
|||
<TYPE>guint</TYPE>
|
||||
<RANGE>[1,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB segment count</NICK>
|
||||
<NICK>ISDB-T SB segment count</NICK>
|
||||
<BLURB>(ISDB-T) SB segment count.</BLURB>
|
||||
<DEFAULT>1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2163,7 +2163,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[0,12]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB segment IDX</NICK>
|
||||
<NICK>ISDB-T SB segment IDX</NICK>
|
||||
<BLURB>(ISDB-T) SB segment IDX.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2173,7 +2173,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,41]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB subchannel ID</NICK>
|
||||
<NICK>ISDB-T SB subchannel ID</NICK>
|
||||
<BLURB>(ISDB-T) SB Subchannel ID (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -2183,7 +2183,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[0,1]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T sound broadcasting</NICK>
|
||||
<NICK>ISDB-T sound broadcasting</NICK>
|
||||
<BLURB>(ISDB-T) Sound Broadcasting.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18243,7 +18243,7 @@
|
|||
<TYPE>guint</TYPE>
|
||||
<RANGE>[1,7]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer enabled</NICK>
|
||||
<NICK>ISDB-T layer enabled</NICK>
|
||||
<BLURB>(ISDB-T) Layer Enabled (7 = All layers).</BLURB>
|
||||
<DEFAULT>7</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18273,7 +18273,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer A segment count</NICK>
|
||||
<NICK>ISDB-T layer A segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer A segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18283,7 +18283,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer A time interleaving </NICK>
|
||||
<NICK>ISDB-T layer A time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer A time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18313,7 +18313,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer B segment count</NICK>
|
||||
<NICK>ISDB-T layer B segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer B segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18323,7 +18323,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer B time interleaving </NICK>
|
||||
<NICK>ISDB-T layer B time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer B time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18353,7 +18353,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer C segment count</NICK>
|
||||
<NICK>ISDB-T layer C segment count</NICK>
|
||||
<BLURB>(ISDB-T) Layer C segment count (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18363,7 +18363,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,8]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T layer C time interleaving </NICK>
|
||||
<NICK>ISDB-T layer C time interleaving</NICK>
|
||||
<BLURB>(ISDB-T) Layer C time interleaving (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18373,7 +18373,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,1]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T partial reception</NICK>
|
||||
<NICK>ISDB-T partial reception</NICK>
|
||||
<BLURB>(ISDB-T) Partial Reception (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18383,7 +18383,7 @@
|
|||
<TYPE>guint</TYPE>
|
||||
<RANGE>[1,13]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB segment count</NICK>
|
||||
<NICK>ISDB-T SB segment count</NICK>
|
||||
<BLURB>(ISDB-T) SB segment count.</BLURB>
|
||||
<DEFAULT>1</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18393,7 +18393,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[0,12]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB segment IDX</NICK>
|
||||
<NICK>ISDB-T SB segment IDX</NICK>
|
||||
<BLURB>(ISDB-T) SB segment IDX.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18403,7 +18403,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[G_MAXULONG,41]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T SB subchannel ID</NICK>
|
||||
<NICK>ISDB-T SB subchannel ID</NICK>
|
||||
<BLURB>(ISDB-T) SB Subchannel ID (-1 = AUTO).</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -18413,7 +18413,7 @@
|
|||
<TYPE>gint</TYPE>
|
||||
<RANGE>[0,1]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISB-T sound broadcasting</NICK>
|
||||
<NICK>ISDB-T sound broadcasting</NICK>
|
||||
<BLURB>(ISDB-T) Sound Broadcasting.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
@ -58965,7 +58965,7 @@
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Eyes profile</NICK>
|
||||
<BLURB>Location of Haar cascade file to use for eye-pair detection.</BLURB>
|
||||
<DEFAULT>"/usr/share/OpenCV/haarcascades/haarcascade_mcs_eyepair_small.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/share/opencv/haarcascades/haarcascade_mcs_eyepair_small.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -59015,7 +59015,7 @@
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Mouth profile</NICK>
|
||||
<BLURB>Location of Haar cascade file to use for mouth detection.</BLURB>
|
||||
<DEFAULT>"/usr/share/OpenCV/haarcascades/haarcascade_mcs_mouth.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/share/opencv/haarcascades/haarcascade_mcs_mouth.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -59025,7 +59025,7 @@
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Nose profile</NICK>
|
||||
<BLURB>Location of Haar cascade file to use for nose detection.</BLURB>
|
||||
<DEFAULT>"/usr/share/OpenCV/haarcascades/haarcascade_mcs_nose.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/share/opencv/haarcascades/haarcascade_mcs_nose.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -59035,7 +59035,7 @@
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Face profile</NICK>
|
||||
<BLURB>Location of Haar cascade file to use for face detection.</BLURB>
|
||||
<DEFAULT>"/usr/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/share/opencv/haarcascades/haarcascade_frontalface_default.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -59075,7 +59075,7 @@
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Profile</NICK>
|
||||
<BLURB>Location of Haar cascade file to use for face blurion.</BLURB>
|
||||
<DEFAULT>"/usr/share/OpenCV/haarcascades/haarcascade_frontalface_default.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/share/opencv/haarcascades/haarcascade_frontalface_default.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -60169,7 +60169,7 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Profile_fist</NICK>
|
||||
<BLURB>Location of HAAR cascade file (fist gesture).</BLURB>
|
||||
<DEFAULT>"/home/nicolas/Sources/prefix/share/gst-plugins-bad/1.0/opencv_haarcascades/fist.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/local/share/gst-plugins-bad/1.0/opencv_haarcascades/fist.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -60179,7 +60179,7 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Profile_palm</NICK>
|
||||
<BLURB>Location of HAAR cascade file (palm gesture).</BLURB>
|
||||
<DEFAULT>"/home/nicolas/Sources/prefix/share/gst-plugins-bad/1.0/opencv_haarcascades/palm.xml"</DEFAULT>
|
||||
<DEFAULT>"/usr/local/share/gst-plugins-bad/1.0/opencv_haarcascades/palm.xml"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -68057,7 +68057,7 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Slice mode</NICK>
|
||||
<BLURB>Slice mode.</BLURB>
|
||||
<DEFAULT>num-slices slices</DEFAULT>
|
||||
<DEFAULT>Fixed number of slices</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
|
@ -68080,6 +68080,16 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<DEFAULT>Medium complexity / medium speed encoding</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstOpenh264Enc::max-bitrate</NAME>
|
||||
<TYPE>guint</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Max Bitrate</NICK>
|
||||
<BLURB>Maximum Bitrate (in bits per second).</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstLibde265Dec::max-threads</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
|
@ -72189,3 +72199,44 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<BLURB>Controls the aggressiveness of the suppression. Increasing the level will reduce the noise level at the expense of a higher speech distortion.</BLURB>
|
||||
<DEFAULT>Moderate Suppression</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDC1394Src::dma</NAME>
|
||||
<TYPE>guint</TYPE>
|
||||
<RANGE>>= 1</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>DMA ring buffer size</NICK>
|
||||
<BLURB>The number of frames in the Direct Memory Access ring buffer.</BLURB>
|
||||
<DEFAULT>10</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDC1394Src::guid</NAME>
|
||||
<TYPE>gchar*</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Camera GUID</NICK>
|
||||
<BLURB>The hexadecimal representation of the GUID of the camera (use first camera available if null).</BLURB>
|
||||
<DEFAULT>NULL</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDC1394Src::iso</NAME>
|
||||
<TYPE>GstDC1394ISOSpeed</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>ISO bandwidth</NICK>
|
||||
<BLURB>The ISO bandwidth in Mbps.</BLURB>
|
||||
<DEFAULT>DC1394 ISO speed 400</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDC1394Src::unit</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= G_MAXULONG</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Camera unit</NICK>
|
||||
<BLURB>The unit number of the camera (-1 if no unit number is used).</BLURB>
|
||||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
|
|
@ -5,7 +5,6 @@ GObject
|
|||
GstAllocatorSysmem
|
||||
GstFdAllocator
|
||||
GstWlShmAllocator
|
||||
GstVdpVideoAllocator
|
||||
GstAudioRingBuffer
|
||||
GstAudioSinkRingBuffer
|
||||
GstAudioSrcRingBuffer
|
||||
|
@ -38,7 +37,6 @@ GObject
|
|||
GstDtsDec
|
||||
GstFaad
|
||||
GstGSMDec
|
||||
GstMpg123AudioDec
|
||||
GstSbcDec
|
||||
GstSirenDec
|
||||
GstAudioEncoder
|
||||
|
@ -95,12 +93,12 @@ GObject
|
|||
GstGtkGLSink
|
||||
GstGtkSink
|
||||
GstInterVideoSink
|
||||
GstKMSSink
|
||||
GstQtSink
|
||||
GstWaylandSink
|
||||
GstBaseSrc
|
||||
GstAvdtpSrc
|
||||
GstDataURISrc
|
||||
GstFliteTestSrc
|
||||
GstInterAudioSrc
|
||||
GstInterSubSrc
|
||||
GstInterVideoSrc
|
||||
|
@ -111,12 +109,12 @@ GObject
|
|||
GstAudioBaseSrc
|
||||
GstAudioSrc
|
||||
GstOpenalSrc
|
||||
GstDC1394Src
|
||||
GstDecklinkAudioSrc
|
||||
GstDecklinkVideoSrc
|
||||
GstDvbSrc
|
||||
GstGLTestSrc
|
||||
GstMMS
|
||||
GstNeonhttpSrc
|
||||
GstRTMPSrc
|
||||
GstRfbSrc
|
||||
GstShmSrc
|
||||
|
@ -140,8 +138,6 @@ GObject
|
|||
ladspa-sine-so-sine-fcaa
|
||||
GstOFA
|
||||
GstStereo
|
||||
GstWebrtcDsp
|
||||
GstWebrtcEchoProbe
|
||||
GstBayer2RGB
|
||||
GstDebugSpy
|
||||
GstDtmfDetect
|
||||
|
@ -307,6 +303,7 @@ GObject
|
|||
GstMpeg2enc
|
||||
GstMpegPSDemux
|
||||
GstMplex
|
||||
GstMusepackDec
|
||||
GstNetSim
|
||||
GstPcapParse
|
||||
GstPitch
|
||||
|
@ -339,8 +336,6 @@ GObject
|
|||
GstRsvgDec
|
||||
GstSchroDec
|
||||
GstVMncDec
|
||||
GstVdpDecoder
|
||||
GstVdpMpegDec
|
||||
GstWebPDec
|
||||
GstVideoEncoder
|
||||
GstOpenJPEGEnc
|
||||
|
@ -385,7 +380,6 @@ GObject
|
|||
GtkWidget
|
||||
GstColorBalanceChannel
|
||||
GstEncodingProfile
|
||||
GstVdpDevice
|
||||
MXFMetadataBase
|
||||
MXFDescriptiveMetadata
|
||||
MXFDMS1
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Computes an AccurateRip CRC</description>
|
||||
<filename>../../gst/accurip/.libs/libgstaccurip.so</filename>
|
||||
<basename>libgstaccurip.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ADPCM decoder</description>
|
||||
<filename>../../gst/adpcmdec/.libs/libgstadpcmdec.so</filename>
|
||||
<basename>libgstadpcmdec.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ADPCM encoder</description>
|
||||
<filename>../../gst/adpcmenc/.libs/libgstadpcmenc.so</filename>
|
||||
<basename>libgstadpcmenc.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Create and parse Audio Interchange File Format (AIFF) files</description>
|
||||
<filename>../../gst/aiff/.libs/libgstaiff.so</filename>
|
||||
<basename>libgstaiff.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ASF Muxer Plugin</description>
|
||||
<filename>../../gst/asfmux/.libs/libgstasfmux.so</filename>
|
||||
<basename>libgstasfmux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ASS/SSA subtitle renderer</description>
|
||||
<filename>../../ext/assrender/.libs/libgstassrender.so</filename>
|
||||
<basename>libgstassrender.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Audio filters from gst-plugins-bad</description>
|
||||
<filename>../../gst/audiofxbad/.libs/libgstaudiofxbad.so</filename>
|
||||
<basename>libgstaudiofxbad.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Mixes multiple audio streams</description>
|
||||
<filename>../../gst/audiomixer/.libs/libgstaudiomixer.so</filename>
|
||||
<basename>libgstaudiomixer.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Creates video visualizations of audio input</description>
|
||||
<filename>../../gst/audiovisualizers/.libs/libgstaudiovisualizers.so</filename>
|
||||
<basename>libgstaudiovisualizers.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Selects convertor element based on caps</description>
|
||||
<filename>../../gst/autoconvert/.libs/libgstautoconvert.so</filename>
|
||||
<basename>libgstautoconvert.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Elements to convert Bayer images</description>
|
||||
<filename>../../gst/bayer/.libs/libgstbayer.so</filename>
|
||||
<basename>libgstbayer.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Bluez-based bluetooth support</description>
|
||||
<filename>../../sys/bluez/.libs/libgstbluez.so</filename>
|
||||
<basename>libgstbluez.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Improve headphone listening of stereo audio recordsusing the bs2b library.</description>
|
||||
<filename>../../ext/bs2b/.libs/libgstbs2b.so</filename>
|
||||
<basename>libgstbs2b.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Compress or decompress streams</description>
|
||||
<filename>../../ext/bz2/.libs/libgstbz2.so</filename>
|
||||
<basename>libgstbz2.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Take image snapshots and record movies from camera</description>
|
||||
<filename>../../gst/camerabin2/.libs/libgstcamerabin2.so</filename>
|
||||
<basename>libgstcamerabin2.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Calculate Chromaprint fingerprint from audio files</description>
|
||||
<filename>../../ext/chromaprint/.libs/libgstchromaprint.so</filename>
|
||||
<basename>libgstchromaprint.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Color Look-up Table filters</description>
|
||||
<filename>../../gst/coloreffects/.libs/libgstcoloreffects.so</filename>
|
||||
<basename>libgstcoloreffects.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Compositor</description>
|
||||
<filename>../../gst/compositor/.libs/libgstcompositor.so</filename>
|
||||
<basename>libgstcompositor.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>libcurl-based elements</description>
|
||||
<filename>../../ext/curl/.libs/libgstcurl.so</filename>
|
||||
<basename>libgstcurl.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>DASH demuxer plugin</description>
|
||||
<filename>../../ext/dash/.libs/libgstdashdemux.so</filename>
|
||||
<basename>libgstdashdemux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>data: URI source</description>
|
||||
<filename>../../gst/dataurisrc/.libs/libgstdataurisrc.so</filename>
|
||||
<basename>libgstdataurisrc.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Collection of elements that may or may not be useful for debugging</description>
|
||||
<filename>../../gst/debugutils/.libs/libgstdebugutilsbad.so</filename>
|
||||
<basename>libgstdebugutilsbad.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Blackmagic Decklink plugin</description>
|
||||
<filename>../../sys/decklink/.libs/libgstdecklink.so</filename>
|
||||
<basename>libgstdecklink.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>DTLS decoder and encoder plugins</description>
|
||||
<filename>../../ext/dtls/.libs/libgstdtls.so</filename>
|
||||
<basename>libgstdtls.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>BSD</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Decodes DTS audio streams</description>
|
||||
<filename>../../ext/dts/.libs/libgstdtsdec.so</filename>
|
||||
<basename>libgstdtsdec.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>DVB elements</description>
|
||||
<filename>../../sys/dvb/.libs/libgstdvb.so</filename>
|
||||
<basename>libgstdvb.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>DVB subtitle renderer</description>
|
||||
<filename>../../gst/dvbsuboverlay/.libs/libgstdvbsuboverlay.so</filename>
|
||||
<basename>libgstdvbsuboverlay.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>DVD Sub-picture Overlay element</description>
|
||||
<filename>../../gst/dvdspu/.libs/libgstdvdspu.so</filename>
|
||||
<basename>libgstdvdspu.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Free AAC Encoder (FAAC)</description>
|
||||
<filename>../../ext/faac/.libs/libgstfaac.so</filename>
|
||||
<basename>libgstfaac.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Free AAC Decoder (FAAD)</description>
|
||||
<filename>../../ext/faad/.libs/libgstfaad.so</filename>
|
||||
<basename>libgstfaad.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Linux framebuffer video sink</description>
|
||||
<filename>../../sys/fbdev/.libs/libgstfbdevsink.so</filename>
|
||||
<basename>libgstfbdevsink.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Synthesizes plain text into audio</description>
|
||||
<filename>../../gst/festival/.libs/libgstfestival.so</filename>
|
||||
<basename>libgstfestival.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Video field analysis</description>
|
||||
<filename>../../gst/fieldanalysis/.libs/libgstfieldanalysis.so</filename>
|
||||
<basename>libgstfieldanalysis.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Flite speech synthesizer plugin</description>
|
||||
<filename>../../ext/flite/.libs/libgstflite.so</filename>
|
||||
<basename>libgstflite.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Fluidsynth MIDI Plugin</description>
|
||||
<filename>../../ext/fluidsynth/.libs/libgstfluidsynthmidi.so</filename>
|
||||
<basename>libgstfluidsynthmidi.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Reverberation/room effect</description>
|
||||
<filename>../../gst/freeverb/.libs/libgstfreeverb.so</filename>
|
||||
<basename>libgstfreeverb.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,7 @@
|
|||
<description>Gaudi video effects.</description>
|
||||
<filename>../../gst/gaudieffects/.libs/libgstgaudieffects.so</filename>
|
||||
<basename>libgstgaudieffects.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Payload/depayload GDP packets</description>
|
||||
<filename>../../gst/gdp/.libs/libgstgdp.so</filename>
|
||||
<basename>libgstgdp.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Various geometric image transform elements</description>
|
||||
<filename>../../gst/geometrictransform/.libs/libgstgeometrictransform.so</filename>
|
||||
<basename>libgstgeometrictransform.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>GME Audio Decoder</description>
|
||||
<filename>../../ext/gme/.libs/libgstgme.so</filename>
|
||||
<basename>libgstgme.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>GSM encoder/decoder</description>
|
||||
<filename>../../ext/gsm/.libs/libgstgsm.so</filename>
|
||||
<basename>libgstgsm.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Gtk+ sink</description>
|
||||
<filename>../../ext/gtk/.libs/libgstgtksink.so</filename>
|
||||
<basename>libgstgtksink.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Siren encoder/decoder/payloader/depayloader plugins</description>
|
||||
<filename>../../gst/siren/.libs/libgstsiren.so</filename>
|
||||
<basename>libgstsiren.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>HTTP Live Streaming (HLS)</description>
|
||||
<filename>../../ext/hls/.libs/libgsthls.so</filename>
|
||||
<basename>libgsthls.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ID3 v1 and v2 muxing plugin</description>
|
||||
<filename>../../gst/id3tag/.libs/libgstid3tag.so</filename>
|
||||
<basename>libgstid3tag.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>plugin for inter-pipeline communication</description>
|
||||
<filename>../../gst/inter/.libs/libgstinter.so</filename>
|
||||
<basename>libgstinter.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Create an interlaced video stream</description>
|
||||
<filename>../../gst/interlace/.libs/libgstinterlace.so</filename>
|
||||
<basename>libgstinterlace.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>IVF parser</description>
|
||||
<filename>../../gst/ivfparse/.libs/libgstivfparse.so</filename>
|
||||
<basename>libgstivfparse.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Inverse Telecine</description>
|
||||
<filename>../../gst/ivtc/.libs/libgstivtc.so</filename>
|
||||
<basename>libgstivtc.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>JPEG2000 decimator</description>
|
||||
<filename>../../gst/jp2kdecimator/.libs/libgstjp2kdecimator.so</filename>
|
||||
<basename>libgstjp2kdecimator.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>JPEG interchange format plugin</description>
|
||||
<filename>../../gst/jpegformat/.libs/libgstjpegformat.so</filename>
|
||||
<basename>libgstjpegformat.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Kate plugin</description>
|
||||
<filename>../../ext/kate/.libs/libgstkate.so</filename>
|
||||
<basename>libgstkate.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,11 +3,209 @@
|
|||
<description>LADSPA plugin</description>
|
||||
<filename>../../ext/ladspa/.libs/libgstladspa.so</filename>
|
||||
<basename>libgstladspa.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
<name>ladspa-amp-so-amp-mono</name>
|
||||
<longname>Mono Amplifier</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Mono Amplifier</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-amp-so-amp-stereo</name>
|
||||
<longname>Stereo Amplifier</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Stereo Amplifier</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)2, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)2, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-delay-so-delay-5s</name>
|
||||
<longname>Simple Delay Line</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Simple Delay Line</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-filter-so-hpf</name>
|
||||
<longname>Simple High Pass Filter</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Simple High Pass Filter</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-filter-so-lpf</name>
|
||||
<longname>Simple Low Pass Filter</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Simple Low Pass Filter</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-sine-so-sine-faaa</name>
|
||||
<longname>Sine Oscillator (Freq:audio, Amp:audio)</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Sine Oscillator (Freq:audio, Amp:audio)</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)2, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-sine-so-sine-faac</name>
|
||||
<longname>Sine Oscillator (Freq:audio, Amp:control)</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Sine Oscillator (Freq:audio, Amp:control)</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspa-sine-so-sine-fcaa</name>
|
||||
<longname>Sine Oscillator (Freq:control, Amp:audio)</longname>
|
||||
<class>Filter/Effect/Audio/LADSPA</class>
|
||||
<description>Sine Oscillator (Freq:control, Amp:audio)</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspasrc-noise-so-noise-white</name>
|
||||
<longname>White Noise Source</longname>
|
||||
<class>Source/Audio/LADSPA</class>
|
||||
<description>White Noise Source</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
<element>
|
||||
<name>ladspasrc-sine-so-sine-fcac</name>
|
||||
<longname>Sine Oscillator (Freq:control, Amp:control)</longname>
|
||||
<class>Source/Audio/LADSPA</class>
|
||||
<description>Sine Oscillator (Freq:control, Amp:control)</description>
|
||||
<author>Richard Furse (LADSPA example plugins), Juan Manuel Borges Caño <juanmabcmail@gmail.com>, Andy Wingo <wingo at pobox.com>, Steve Baker <stevebaker_org@yahoo.co.uk>, Erik Walthinsen <omega@cse.ogi.edu>, Stefan Sauer <ensonic@users.sf.net>, Wim Taymans <wim@fluendo.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>audio/x-raw, format=(string)F32LE, channels=(int)1, rate=(int)[ 1, 2147483647 ], layout=(string)interleaved</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
</elements>
|
||||
</plugin>
|
|
@ -3,10 +3,10 @@
|
|||
<description>Parse MIDI files</description>
|
||||
<filename>../../gst/midi/.libs/libgstmidi.so</filename>
|
||||
<basename>libgstmidi.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Mimic codec</description>
|
||||
<filename>../../ext/mimic/.libs/libgstmimic.so</filename>
|
||||
<basename>libgstmimic.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Microsoft Multi Media Server streaming protocol support</description>
|
||||
<filename>../../ext/libmms/.libs/libgstmms.so</filename>
|
||||
<basename>libgstmms.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>.MOD audio decoding</description>
|
||||
<filename>../../ext/modplug/.libs/libgstmodplug.so</filename>
|
||||
<basename>libgstmodplug.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>High-quality MPEG-1/2 video encoder</description>
|
||||
<filename>../../ext/mpeg2enc/.libs/libgstmpeg2enc.so</filename>
|
||||
<basename>libgstmpeg2enc.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>MPEG-PS demuxer</description>
|
||||
<filename>../../gst/mpegdemux/.libs/libgstmpegpsdemux.so</filename>
|
||||
<basename>libgstmpegpsdemux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>MPEG-PS muxer</description>
|
||||
<filename>../../gst/mpegpsmux/.libs/libgstmpegpsmux.so</filename>
|
||||
<basename>libgstmpegpsmux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>MPEG TS demuxer</description>
|
||||
<filename>../../gst/mpegtsdemux/.libs/libgstmpegtsdemux.so</filename>
|
||||
<basename>libgstmpegtsdemux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>MPEG-TS muxer</description>
|
||||
<filename>../../gst/mpegtsmux/.libs/libgstmpegtsmux.so</filename>
|
||||
<basename>libgstmpegtsmux.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>High-quality MPEG/DVD/SVCD/VCD video/audio multiplexer</description>
|
||||
<filename>../../ext/mplex/.libs/libgstmplex.so</filename>
|
||||
<basename>libgstmplex.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>MXF plugin library</description>
|
||||
<filename>../../gst/mxf/.libs/libgstmxf.so</filename>
|
||||
<basename>libgstmxf.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Network Simulator</description>
|
||||
<filename>../../gst/netsim/.libs/libgstnetsim.so</filename>
|
||||
<basename>libgstnetsim.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Calculate MusicIP fingerprint from audio files</description>
|
||||
<filename>../../ext/ofa/.libs/libgstofa.so</filename>
|
||||
<basename>libgstofa.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>OpenAL plugin library</description>
|
||||
<filename>../../ext/openal/.libs/libgstopenal.so</filename>
|
||||
<basename>libgstopenal.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>GStreamer OpenCV Plugins</description>
|
||||
<filename>../../ext/opencv/.libs/libgstopencv.so</filename>
|
||||
<basename>libgstopencv.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>OpenEXR image plugin</description>
|
||||
<filename>../../ext/openexr/.libs/libgstopenexr.so</filename>
|
||||
<basename>libgstopenexr.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>OpenGL plugin</description>
|
||||
<filename>../../ext/gl/.libs/libgstopengl.so</filename>
|
||||
<basename>libgstopengl.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>OpenJPEG-based JPEG2000 image decoder/encoder</description>
|
||||
<filename>../../ext/openjpeg/.libs/libgstopenjpeg.so</filename>
|
||||
<basename>libgstopenjpeg.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
@ -20,7 +20,7 @@
|
|||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>image/x-j2c, colorspace=(string){ sRGB, sYUV, GRAY }; image/x-jpc, colorspace=(string){ sRGB, sYUV, GRAY }; image/jp2</details>
|
||||
<details>image/x-j2c, sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE, YCbCrA-4:4:4:4 }; image/x-jpc, sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE, YCbCrA-4:4:4:4 }; image/jp2</details>
|
||||
</caps>
|
||||
<caps>
|
||||
<name>src</name>
|
||||
|
@ -47,7 +47,7 @@
|
|||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>image/x-j2c, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], num-components=(int)[ 1, 4 ], sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCrA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE }, colorspace=(string){ sRGB, sYUV, GRAY }; image/x-jpc, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], num-components=(int)[ 1, 4 ], sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCrA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE }, colorspace=(string){ sRGB, sYUV, GRAY }; image/jp2, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ]</details>
|
||||
<details>image/x-j2c, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], num-components=(int)[ 1, 4 ], sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE, YCbCrA-4:4:4:4 }, colorspace=(string){ sRGB, sYUV, GRAY }; image/x-jpc, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], num-components=(int)[ 1, 4 ], sampling=(string){ RGB, BGR, RGBA, BGRA, YCbCr-4:4:4, YCbCr-4:2:2, YCbCr-4:2:0, YCbCr-4:1:1, GRAYSCALE, YCbCrA-4:4:4:4 }, colorspace=(string){ sRGB, sYUV, GRAY }; image/jp2, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ]</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>OPUS parse plugin</description>
|
||||
<filename>../../ext/opus/.libs/libgstopusparse.so</filename>
|
||||
<basename>libgstopusparse.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Element parsing raw pcap streams</description>
|
||||
<filename>../../gst/pcapparse/.libs/libgstpcapparse.so</filename>
|
||||
<basename>libgstpcapparse.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>PNM plugin</description>
|
||||
<filename>../../gst/pnm/.libs/libgstpnm.so</filename>
|
||||
<basename>libgstpnm.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Qt sink</description>
|
||||
<filename>../../ext/qt/.libs/libgstqtsink.so</filename>
|
||||
<basename>libgstqtsink.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Parses byte streams into raw frames</description>
|
||||
<filename>../../gst/rawparse/.libs/libgstrawparse.so</filename>
|
||||
<basename>libgstrawparse.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Removes silence from an audio stream</description>
|
||||
<filename>../../gst/removesilence/.libs/libgstremovesilence.so</filename>
|
||||
<basename>libgstremovesilence.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Resin DVD playback elements</description>
|
||||
<filename>../../ext/resindvd/.libs/libgstresindvd.so</filename>
|
||||
<basename>libgstresindvd.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Connects to a VNC server and decodes RFB stream</description>
|
||||
<filename>../../gst/librfb/.libs/libgstrfbsrc.so</filename>
|
||||
<basename>libgstrfbsrc.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>RSVG plugin library</description>
|
||||
<filename>../../ext/rsvg/.libs/libgstrsvg.so</filename>
|
||||
<basename>libgstrsvg.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>RTMP source and sink</description>
|
||||
<filename>../../ext/rtmp/.libs/libgstrtmp.so</filename>
|
||||
<basename>libgstrtmp.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ONVIF Streaming features</description>
|
||||
<filename>../../gst/onvif/.libs/libgstrtponvif.so</filename>
|
||||
<basename>libgstrtponvif.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Schroedinger plugin</description>
|
||||
<filename>../../ext/schroedinger/.libs/libgstschro.so</filename>
|
||||
<basename>libgstschro.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>configure streaming sessions using SDP</description>
|
||||
<filename>../../gst/sdp/.libs/libgstsdpelem.so</filename>
|
||||
<basename>libgstsdpelem.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Segment clip elements</description>
|
||||
<filename>../../gst/segmentclip/.libs/libgstsegmentclip.so</filename>
|
||||
<basename>libgstsegmentclip.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>shared memory sink source</description>
|
||||
<filename>../../sys/shm/.libs/libgstshm.so</filename>
|
||||
<basename>libgstshm.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Apply a smooth filter to an image</description>
|
||||
<filename>../../gst/smooth/.libs/libgstsmooth.so</filename>
|
||||
<basename>libgstsmooth.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Microsoft's Smooth Streaming format support </description>
|
||||
<filename>../../ext/smoothstreaming/.libs/libgstsmoothstreaming.so</filename>
|
||||
<basename>libgstsmoothstreaming.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>use libsndfile to read and write various audio formats</description>
|
||||
<filename>../../ext/sndfile/.libs/libgstsndfile.so</filename>
|
||||
<basename>libgstsndfile.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Audio Pitch Controller & BPM Detection</description>
|
||||
<filename>../../ext/soundtouch/.libs/libgstsoundtouch.so</filename>
|
||||
<basename>libgstsoundtouch.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>libspandsp plugin</description>
|
||||
<filename>../../ext/spandsp/.libs/libgstspandsp.so</filename>
|
||||
<basename>libgstspandsp.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Set speed/pitch on audio/raw streams (resampler)</description>
|
||||
<filename>../../gst/speed/.libs/libgstspeed.so</filename>
|
||||
<basename>libgstspeed.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GStreamer SRTP</description>
|
||||
<filename>../../ext/srtp/.libs/libgstsrtp.so</filename>
|
||||
<basename>libgstsrtp.so</basename>
|
||||
<version>1.9.0.1</version>
|
||||
<version>1.9.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue