mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-15 12:34:15 +00:00
Release 1.3.3
This commit is contained in:
parent
39071b0a8c
commit
6d3d06c91f
85 changed files with 3064 additions and 130 deletions
25
NEWS
25
NEWS
|
@ -1,4 +1,4 @@
|
|||
This is GStreamer Bad Plugins 1.3.2
|
||||
This is GStreamer Bad Plugins 1.3.3
|
||||
|
||||
Changes since 1.2:
|
||||
|
||||
|
@ -30,6 +30,10 @@ New API:
|
|||
caps.
|
||||
• GstCollectPads has support for flushing and a default handler for
|
||||
SEEK events now.
|
||||
• New GstFlowAggregator helper object that simplifies handling of
|
||||
flow returns in elements with multiple source pads. Additionally
|
||||
GstPad now always stores the last flow return and provides an
|
||||
API to retrieve it.
|
||||
• GstSegment has new API to offset the running time by a specific
|
||||
value and this is used in GstPad to allow positive and negative
|
||||
offsets in gst_pad_set_offset() in all situations.
|
||||
|
@ -43,6 +47,7 @@ New API:
|
|||
• Support for tiled, raw video formats has been added.
|
||||
• GstVideoDecoder and GstAudioDecoder have API to help aggregating tag
|
||||
events and merge custom tags into them consistently.
|
||||
• GstBufferPool has support for flushing now.
|
||||
• playbin/playsink has support for application provided audio and video
|
||||
filters.
|
||||
• GstDiscoverer has new and simplified API to get details about missing
|
||||
|
@ -54,6 +59,10 @@ New API:
|
|||
DispManX (Raspberry Pi), EAGL (iOS), WGL (Windows) and generic X11,
|
||||
Wayland and EGL platforms.
|
||||
This replaces eglglessink and also is supposed to replace osxvideosink.
|
||||
• New GstAggregator base class in gst-plugins-bad. This is supposed to
|
||||
replace GstCollectPads in the future and fix long-known shortcomings
|
||||
in its API. Together with the base class some elements are provided
|
||||
already, like a videomixer (compositor).
|
||||
|
||||
|
||||
Major changes:
|
||||
|
@ -97,7 +106,8 @@ Major changes:
|
|||
∘ dvbsrc supports more delivery mechanisms and other features
|
||||
now, including DVB S2 and T2 support.
|
||||
∘ The MPEGTS library has support for many more descriptors.
|
||||
∘ Major improvements to tsdemux, especially time related.
|
||||
∘ Major improvements to tsdemux and tsparse, especially time and
|
||||
seeking related.
|
||||
∘ souphttpsrc now has support for keep-alive connections,
|
||||
compression, configurable number of retries and configuration
|
||||
for SSL certificate validation.
|
||||
|
@ -110,9 +120,16 @@ Major changes:
|
|||
finish.
|
||||
∘ videoflip can automatically flip based on the orientation tag.
|
||||
∘ openjpeg supports the OpenJPEG2 API.
|
||||
∘ waylandsink was refactored and should be more useful now. It also
|
||||
includes a small library which most likely is going to be removed
|
||||
in the future and will result in extensions to the GstVideoOverlay
|
||||
interface.
|
||||
∘ gst-rtsp-server supports SRTP and MIKEY now.
|
||||
∘ gst-libav encoders are now negotiating any profile/level settings
|
||||
with downstream via caps.
|
||||
∘ Lots of fixes for coverity warnings all over the place.
|
||||
∘ 400+ fixed bug reports, and many other bug fixes and other
|
||||
∘ Negotiation related performance improvements.
|
||||
∘ 500+ fixed bug reports, and many other bug fixes and other
|
||||
improvements everywhere that had no bug report.
|
||||
|
||||
Things to look out for:
|
||||
|
@ -120,3 +137,5 @@ Things to look out for:
|
|||
element.
|
||||
• The mfcdec element was removed and replaced by v4l2videodec.
|
||||
• osxvideosink is only available in OS X 10.6 or newer.
|
||||
• The GstDeviceMonitor API will likely change slightly before the
|
||||
1.4.0 release.
|
||||
|
|
119
RELEASE
119
RELEASE
|
@ -1,8 +1,8 @@
|
|||
|
||||
Release notes for GStreamer Bad Plugins 1.3.2
|
||||
Release notes for GStreamer Bad Plugins 1.3.3
|
||||
|
||||
|
||||
The GStreamer team is pleased to announce the second release of the unstable
|
||||
The GStreamer team is pleased to announce the third release of the unstable
|
||||
1.3 release series. The 1.3 release series is adding new features on top of
|
||||
the 1.0 and 1.2 series and is part of the API and ABI-stable 1.x release
|
||||
series of the GStreamer multimedia framework. The unstable 1.3 release series
|
||||
|
@ -10,23 +10,16 @@ will lead to the stable 1.4 release series in the next weeks, and newly added
|
|||
API can still change until that point.
|
||||
|
||||
|
||||
This is hopefully the last 1.3 development release and will be followed by
|
||||
the first 1.4.0 release candidate (1.3.90) in 1-2 weeks. Which then hopefully
|
||||
is followed by 1.4.0 soonish in early July.
|
||||
|
||||
|
||||
Binaries for Android, iOS, Mac OS X and Windows will be provided separately
|
||||
during the unstable 1.3 release series.
|
||||
|
||||
|
||||
|
||||
The versioning scheme that is used in general is that 1.x.y is API and
|
||||
ABI backwards compatible with previous 1.x.y releases. If x is an even
|
||||
number it is a stable release series and all releases in this series
|
||||
will only contain important bugfixes, e.g. the 1.0 series with 1.0.7. If
|
||||
x is odd it is a development release series that will lead to the next
|
||||
stable release series 1.x+1 and contains new features and bigger
|
||||
changes. During the development release series, new API can still
|
||||
change.
|
||||
|
||||
|
||||
|
||||
"That an accusation?"
|
||||
|
||||
|
||||
|
@ -75,22 +68,70 @@ contains a set of codecs plugins based on libav (formerly gst-ffmpeg)
|
|||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 721685 : mpegtsmux: Remove unused data in TsMuxSection
|
||||
* 723167 : curlsftpsink: allow remote host authentication by public key fingerprint
|
||||
* 726666 : gl: error: redundant redeclaration of numerous GL functions
|
||||
* 728234 : gl: Don't unconditonally use EGL extensions
|
||||
* 729542 : glimagesink: pool may never be activated, which leads to crash
|
||||
* 729588 : glimagesink: cannot play 1080p on RPI
|
||||
* 729614 : PNM Encoder is Encoding 0 x 0 images
|
||||
* 729658 : gl: wrong negotiated caps when using eglimage
|
||||
* 729742 : glcolorconvert: Should set alpha to 1 if source is opaque
|
||||
* 729743 : glcolorconvert: Should preserve alpha channel when doing AYUV - > ARGB
|
||||
* 731918 : videoaggregator: Add a new base class that aggregates video streams
|
||||
* 731921 : gl: Port glmixer to the GstVideoAggregator baseclass
|
||||
* 723352 : codecparsers_h264: Framerate estimation enhancement
|
||||
* 675132 : tsdemux: implement proper seeking with binary search and keyframe detection
|
||||
* 674536 : tsdemux: Freeze on pts-wrap with streaming sources
|
||||
* 704507 : glimagesink: Replace pointer properties with signals
|
||||
* 705129 : androidmedia: add support for video encoding
|
||||
* 709414 : dvbsrc: Uses deprecated field frontend type and add DVB S2/T2 support
|
||||
* 721035 : tsdemux: fails to seek on the attached file (regression)
|
||||
* 721869 : dvbsrc needs to conditionally build for older dvb headers
|
||||
* 722397 : liveadder: handle gap buffer flag
|
||||
* 723529 : glimagesink: only draws on buffer push
|
||||
* 726193 : waylandsink: subsurface & scaling support, plus many other improvements
|
||||
* 726861 : srtp: add support for rollover counter
|
||||
* 728364 : mpegts: add service list, stuffing and bouquet name descriptors
|
||||
* 728429 : mpegts: add multilingual descriptors
|
||||
* 728514 : glimagesink fails with gst-sdk android tutorial-5 / tutorial-4
|
||||
* 728890 : GstGLUpload: wrong colors for YUY2 and UYVY on GLES
|
||||
* 729054 : schroenc: Does not handle variable framerate streams
|
||||
* 729245 : gl: rename platform cocoa to cgl to be more consistent with context type
|
||||
* 729257 : glvideomixer: segfault in gst_gl_video_mixer_callback when accessing frame info
|
||||
* 729278 : gl: avoid using an extra FBO pass in some basic cases
|
||||
* 729750 : gl: GL_FRAMEBUFFER_UNSUPPORTED with GST_VIDEO_GL_TEXTURE_TYPE_LUMINANCE_ALPHA
|
||||
* 729798 : glvideomixer: Does not support positioning of input streams
|
||||
* 729861 : glfilter: lose some caps informations like the framerate
|
||||
* 729896 : glupload: Ignores stride when uploading raw data
|
||||
* 730069 : gl: Crash when setting invalid GST_GL_PLATFORM
|
||||
* 730133 : motioncells:fix memleak
|
||||
* 730459 : curlsshsink: post error on bus in element, not transfer thread
|
||||
* 729551 : GstGLDisplay: mix platform and window
|
||||
* 729882 : opusenc: use aux vars to minimize critical region
|
||||
* 730141 : motioncells improvements
|
||||
* 730231 : gl*: No libGLU with NVIDIA binary drivers
|
||||
* 730363 : h264parse: set field_pic_flag when parsing a slice header
|
||||
* 730435 : mpegts: add support for ATSC tables MGT / ETT / EIT / STT
|
||||
* 730523 : pnmdec: PBM (Bitmap) decoding support is not present
|
||||
* 730570 : dvbsrc: fix building with newer kernel headers
|
||||
* 730574 : hlsdemux: Saving IV from media sequence number is done out of file- > iv structure
|
||||
* 730635 : androidmedia: Add a new QCOM color format
|
||||
* 730641 : dvbbasebin: criticals/crash if tsparse is missing
|
||||
* 730642 : mpegts: atsc: rename TVCT to VCT as it is the same as CVCT
|
||||
* 730666 : gl: YUY2 conversion broken in GLES2
|
||||
* 730692 : dvbsrc: Add missing tone ioctl
|
||||
* 730703 : gl: Freshly allocated memory is twice the expected size
|
||||
* 730782 : glimagesink: cannot create window and stalls
|
||||
* 730802 : glimagesink: should honor " show-preroll-frame " property inherited from GstVideoSink
|
||||
* 730830 : hlsdemux: Remove \ " sign from decryption KEY url does not always work
|
||||
* 730847 : example: ts-parser: add terrestrial delivery system descriptor
|
||||
* 730854 : example: ts-parser: add component, content, stream id, ca id, parential rating descriptors
|
||||
* 730901 : example: ts-parser: add linkage descriptor
|
||||
* 730944 : glvideomixer: Got data flow before stream-start event
|
||||
* 731088 : tsdemux: missing audio after seeking in mpeg transport stream (regression)
|
||||
* 731107 : glimagesink: Failed to create window surface: EGL_BAD_ALLOC
|
||||
* 731164 : hlsdemux: Attempt to reload variant playlist if refreshing playlist or downloading fragments failed
|
||||
* 731250 : dvbsrc: tuning/locking logic improvements
|
||||
* 731400 : pnmdec: PNMDecoder gives sticky event warning
|
||||
* 731522 : codecparsers: add C++ guards for MPEG-4 and VP8 parsers
|
||||
* 731524 : codecparsers: h264: fix quantization matrix conversion routine names
|
||||
* 731555 : gst-plugins-bad requires glib > = 2.34.0
|
||||
* 731698 : tsdemux : latest patch for accurate seeking of h264 streams has been incorrectly merged.
|
||||
* 731707 : tsdemux: remove unused const variables
|
||||
* 731714 : gstsrtpenc: add allow-repeat-tx property
|
||||
* 731722 : OpenGL: Add an element for transforming video geometry
|
||||
* 731768 : gstsrtpenc: unref event when needed
|
||||
* 731899 : rawparser doesn't forward custom query
|
||||
* 731917 : aggregator: Add a new base class for mixers and muxers
|
||||
* 731919 : compositor: Add a new compositor based on the new GstVideoAggregator base class
|
||||
* 731968 : hlsdemux: Fix decrypting fragments
|
||||
* 641204 : dvbsrc: Faster tuning logic: Use poll instead of artificial usleep
|
||||
|
||||
==== Download ====
|
||||
|
||||
|
@ -127,20 +168,36 @@ subscribe to the gstreamer-devel list.
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Aleix Conchillo Flaqué
|
||||
* Arnaud Vrac
|
||||
* Aurélien Zanelli
|
||||
* Chen Jie
|
||||
* Christian Fredrik Kalager Schaller
|
||||
* Damian Ziobro
|
||||
* Edward Hervey
|
||||
* Jesper Larsen
|
||||
* George Kiagiadakis
|
||||
* Gwenole Beauchesne
|
||||
* Jan Schmidt
|
||||
* Jorge Zapata
|
||||
* Julien Isorce
|
||||
* L. Sorin
|
||||
* Luis de Bethencourt
|
||||
* Justin Joy
|
||||
* Lubosz Sarnecki
|
||||
* Mathieu Duponchelle
|
||||
* Matthew Waters
|
||||
* Matthieu Bouron
|
||||
* Michael Olbrich
|
||||
* Miguel París Díaz
|
||||
* Nicola Murino
|
||||
* Nicolas Dufresne
|
||||
* Olivier Crête
|
||||
* Reynaldo H. Verdejo Pinochet
|
||||
* Sanjay NM
|
||||
* Sebastian Dröge
|
||||
* Stefan Ringel
|
||||
* Thiago Santos
|
||||
* Thibault Saunier
|
||||
* Thomas Bluemel
|
||||
* Tim-Philipp Müller
|
||||
* Vincent Penquerc'h
|
||||
* Wim Taymans
|
||||
|
|
@ -3,7 +3,7 @@ AC_PREREQ([2.68])
|
|||
dnl initialize autoconf
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AC_INIT([GStreamer Bad Plug-ins],[1.3.2.1],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
||||
AC_INIT([GStreamer Bad Plug-ins],[1.3.3],[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer],[gst-plugins-bad])
|
||||
|
||||
AG_GST_INIT
|
||||
|
||||
|
@ -48,11 +48,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, 302, 0, 302)
|
||||
AS_LIBTOOL(GST, 303, 0, 303)
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=1.3.2.1
|
||||
GSTPB_REQ=1.3.2.1
|
||||
GST_REQ=1.3.3
|
||||
GSTPB_REQ=1.3.3
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -731,7 +731,7 @@
|
|||
<ARG>
|
||||
<NAME>GstMpeg2enc::bitrate</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>[0,10000]</RANGE>
|
||||
<RANGE>[0,40000]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Bitrate</NICK>
|
||||
<BLURB>Compressed video bitrate (kbps).</BLURB>
|
||||
|
@ -1928,6 +1928,16 @@
|
|||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstDvbSrc::tuning-timeout</NAME>
|
||||
<TYPE>guint64</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Tuning Timeout</NICK>
|
||||
<BLURB>Milliseconds to wait before giving up tuning/locking on a signal.</BLURB>
|
||||
<DEFAULT>10000000000</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstRfbSrc::host</NAME>
|
||||
<TYPE>gchar*</TYPE>
|
||||
|
@ -18128,6 +18138,16 @@
|
|||
<DEFAULT>-1</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>DvbBaseBin::tuning-timeout</NAME>
|
||||
<TYPE>guint64</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Tuning Timeout</NICK>
|
||||
<BLURB>Milliseconds to wait before giving up tuning/locking on a signal.</BLURB>
|
||||
<DEFAULT>10000000000</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstSDPDemux::debug</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
|
@ -59093,6 +59113,16 @@
|
|||
<DEFAULT></DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstWaylandSink::display</NAME>
|
||||
<TYPE>gchar*</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Wayland Display name</NICK>
|
||||
<BLURB>Wayland display name to connect to, if not supplied via the GstContext.</BLURB>
|
||||
<DEFAULT>NULL</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstPyramidSegment::level</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
|
@ -67077,6 +67107,16 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<DEFAULT>128</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstSrtpEnc::allow-repeat-tx</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Allow repeat packets transmission</NICK>
|
||||
<BLURB>Whether retransmissions of packets with the same sequence number are allowed(Note that such repeated transmissions must have the same RTP payload, or a severe security weakness is introduced!).</BLURB>
|
||||
<DEFAULT>FALSE</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstSegmentation::learning-rate</NAME>
|
||||
<TYPE>gfloat</TYPE>
|
||||
|
@ -67825,3 +67865,13 @@ Gestures in the defined region of interest will emit messages.</BLURB>
|
|||
<DEFAULT>NULL</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstCompositor::background</NAME>
|
||||
<TYPE>GstCompositorBackground</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Background</NICK>
|
||||
<BLURB>Background type.</BLURB>
|
||||
<DEFAULT>Checker pattern</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
|
|
@ -14,6 +14,12 @@ GObject
|
|||
GstControlBinding
|
||||
GstControlSource
|
||||
GstElement
|
||||
GstAggregator
|
||||
GstVideoAggregator
|
||||
GstCompositor
|
||||
GstGLMixer
|
||||
GstGLMosaic
|
||||
GstGLVideoMixer
|
||||
GstAiffMux
|
||||
GstAiffParse
|
||||
GstAsfMux
|
||||
|
@ -226,9 +232,6 @@ GObject
|
|||
GstFluidDec
|
||||
GstGDPDepay
|
||||
GstGDPPay
|
||||
GstGLMixer
|
||||
GstGLMosaic
|
||||
GstGLVideoMixer
|
||||
GstGmeDec
|
||||
GstInterlace
|
||||
GstJP2kDecimator
|
||||
|
@ -251,7 +254,6 @@ GObject
|
|||
GstOpencvTextOverlay
|
||||
GstPcapParse
|
||||
GstPitch
|
||||
GstPnmdec
|
||||
GstPnmenc
|
||||
GstPyramidSegment
|
||||
GstRTPBaseDepayload
|
||||
|
@ -279,6 +281,7 @@ GObject
|
|||
GstVideoDecoder
|
||||
GstOpenEXRDec
|
||||
GstOpenJPEGDec
|
||||
GstPnmdec
|
||||
GstRsvgDec
|
||||
GstSchroDec
|
||||
GstVMncDec
|
||||
|
@ -298,7 +301,11 @@ GObject
|
|||
MpegTsMux
|
||||
GstGLContext
|
||||
GstPad
|
||||
GstGLMixerPad
|
||||
GstAggregatorPad
|
||||
GstVideoAggregatorPad
|
||||
GstCompositorPad
|
||||
GstGLMixerPad
|
||||
GstGLVideoMixerPad
|
||||
GstPadTemplate
|
||||
GstPlugin
|
||||
GstPluginFeature
|
||||
|
@ -395,4 +402,5 @@ GInterface
|
|||
GstTagXmpWriter
|
||||
GstURIHandler
|
||||
GstVideoOverlay
|
||||
GstWaylandVideo
|
||||
MXFDescriptiveMetadataFrameworkInterface
|
||||
|
|
|
@ -15,6 +15,7 @@ GstCameraBin GstChildProxy GstImplementsInterface GstColorBalance GstTagSetter
|
|||
GstCameraBin GstChildProxy GstTagSetter
|
||||
GstCameraBin2 GstChildProxy GstTagSetter
|
||||
GstCeltEnc GstPreset GstTagSetter
|
||||
GstCompositor GstChildProxy
|
||||
GstDaalaEnc GstPreset
|
||||
GstDashDemux GstChildProxy
|
||||
GstDataURISrc GstURIHandler
|
||||
|
@ -65,10 +66,12 @@ GstUvcH264Src GstChildProxy
|
|||
GstVCDSrc GstURIHandler
|
||||
GstVP8Enc GstPreset GstTagSetter
|
||||
GstVP8Enc GstTagSetter GstPreset
|
||||
GstVideoAggregator GstChildProxy
|
||||
GstVideoEncoder GstPreset
|
||||
GstViewfinderBin GstChildProxy
|
||||
GstVoAacEnc GstPreset
|
||||
GstVoAmrWbEnc GstPreset
|
||||
GstWaylandSink GstVideoOverlay GstWaylandVideo
|
||||
GstWrapperCameraBinSrc GstChildProxy
|
||||
GstXvidEnc GstPreset
|
||||
MXFDMS1ClipFramework MXFDescriptiveMetadataFrameworkInterface
|
||||
|
|
|
@ -6,5 +6,6 @@ GstMixer GstImplementsInterface GstElement
|
|||
GstPhotography GstImplementsInterface GstElement
|
||||
GstTagSetter GstElement
|
||||
GstTagXmpWriter GstElement
|
||||
GstWaylandVideo GstVideoOverlay
|
||||
GstXOverlay GstImplementsInterface GstElement
|
||||
MXFDescriptiveMetadataFrameworkInterface MXFDescriptiveMetadata
|
||||
|
|
|
@ -550,6 +550,14 @@ gpointer arg4
|
|||
GstSrtpEnc *gstsrtpenc
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstSrtpEnc::get-rollover-counter</NAME>
|
||||
<RETURNS>guint</RETURNS>
|
||||
<FLAGS>la</FLAGS>
|
||||
GstSrtpEnc *gstsrtpenc
|
||||
guint arg1
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstSrtpDec::clear-keys</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
|
@ -589,3 +597,74 @@ GstSrtpDec *gstsrtpdec
|
|||
guint arg1
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstDvbSrc::tuning-done</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstDvbSrc *gstdvbsrc
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstDvbSrc::tuning-fail</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstDvbSrc *gstdvbsrc
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstDvbSrc::tuning-start</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstDvbSrc *gstdvbsrc
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>DvbBaseBin::tuning-done</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
DvbBaseBin *dvbbasebin
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>DvbBaseBin::tuning-fail</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
DvbBaseBin *dvbbasebin
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>DvbBaseBin::tuning-start</NAME>
|
||||
<RETURNS>void</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
DvbBaseBin *dvbbasebin
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstGLImageSink::client-draw</NAME>
|
||||
<RETURNS>gboolean</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstGLImageSink *gstglimagesink
|
||||
guint arg1
|
||||
guint arg2
|
||||
guint arg3
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstGLImageSink::client-reshape</NAME>
|
||||
<RETURNS>gboolean</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstGLImageSink *gstglimagesink
|
||||
guint arg1
|
||||
guint arg2
|
||||
</SIGNAL>
|
||||
|
||||
<SIGNAL>
|
||||
<NAME>GstGLFilterApp::client-draw</NAME>
|
||||
<RETURNS>gboolean</RETURNS>
|
||||
<FLAGS>l</FLAGS>
|
||||
GstGLFilterApp *gstglfilterapp
|
||||
guint arg1
|
||||
guint arg2
|
||||
guint arg3
|
||||
</SIGNAL>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Computes an AccurateRip CRC</description>
|
||||
<filename>../../gst/accurip/.libs/libgstaccurip.so</filename>
|
||||
<basename>libgstaccurip.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ADPCM decoder</description>
|
||||
<filename>../../gst/adpcmdec/.libs/libgstadpcmdec.so</filename>
|
||||
<basename>libgstadpcmdec.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ADPCM encoder</description>
|
||||
<filename>../../gst/adpcmenc/.libs/libgstadpcmenc.so</filename>
|
||||
<basename>libgstadpcmenc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ASF Muxer Plugin</description>
|
||||
<filename>../../gst/asfmux/.libs/libgstasfmux.so</filename>
|
||||
<basename>libgstasfmux.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ASS/SSA subtitle renderer</description>
|
||||
<filename>../../ext/assrender/.libs/libgstassrender.so</filename>
|
||||
<basename>libgstassrender.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Creates video visualizations of audio input</description>
|
||||
<filename>../../gst/audiovisualizers/.libs/libgstaudiovisualizers.so</filename>
|
||||
<basename>libgstaudiovisualizers.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Selects convertor element based on caps</description>
|
||||
<filename>../../gst/autoconvert/.libs/libgstautoconvert.so</filename>
|
||||
<basename>libgstautoconvert.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Elements to convert Bayer images</description>
|
||||
<filename>../../gst/bayer/.libs/libgstbayer.so</filename>
|
||||
<basename>libgstbayer.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Compress or decompress streams</description>
|
||||
<filename>../../ext/bz2/.libs/libgstbz2.so</filename>
|
||||
<basename>libgstbz2.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Take image snapshots and record movies from camera</description>
|
||||
<filename>../../gst/camerabin2/.libs/libgstcamerabin2.so</filename>
|
||||
<basename>libgstcamerabin2.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Calculate Chromaprint fingerprint from audio files</description>
|
||||
<filename>../../ext/chromaprint/.libs/libgstchromaprint.so</filename>
|
||||
<basename>libgstchromaprint.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Color Look-up Table filters</description>
|
||||
<filename>../../gst/coloreffects/.libs/libgstcoloreffects.so</filename>
|
||||
<basename>libgstcoloreffects.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>libcurl-based elements</description>
|
||||
<filename>../../ext/curl/.libs/libgstcurl.so</filename>
|
||||
<basename>libgstcurl.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>data: URI source</description>
|
||||
<filename>../../gst/dataurisrc/.libs/libgstdataurisrc.so</filename>
|
||||
<basename>libgstdataurisrc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<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.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Decodes DTS audio streams</description>
|
||||
<filename>../../ext/dts/.libs/libgstdtsdec.so</filename>
|
||||
<basename>libgstdtsdec.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>DVB elements</description>
|
||||
<filename>../../sys/dvb/.libs/libgstdvb.so</filename>
|
||||
<basename>libgstdvb.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>DVB subtitle renderer</description>
|
||||
<filename>../../gst/dvbsuboverlay/.libs/libgstdvbsuboverlay.so</filename>
|
||||
<basename>libgstdvbsuboverlay.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>DVD Sub-picture Overlay element</description>
|
||||
<filename>../../gst/dvdspu/.libs/libgstdvdspu.so</filename>
|
||||
<basename>libgstdvdspu.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Free AAC Encoder (FAAC)</description>
|
||||
<filename>../../ext/faac/.libs/libgstfaac.so</filename>
|
||||
<basename>libgstfaac.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Free AAC Decoder (FAAD)</description>
|
||||
<filename>../../ext/faad/.libs/libgstfaad.so</filename>
|
||||
<basename>libgstfaad.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Synthesizes plain text into audio</description>
|
||||
<filename>../../gst/festival/.libs/libgstfestival.so</filename>
|
||||
<basename>libgstfestival.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Video field analysis</description>
|
||||
<filename>../../gst/fieldanalysis/.libs/libgstfieldanalysis.so</filename>
|
||||
<basename>libgstfieldanalysis.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Flite speech synthesizer plugin</description>
|
||||
<filename>../../ext/flite/.libs/libgstflite.so</filename>
|
||||
<basename>libgstflite.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Fragmented streaming plugins</description>
|
||||
<filename>../../ext/hls/.libs/libgstfragmented.so</filename>
|
||||
<basename>libgstfragmented.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>frei0r plugin library</description>
|
||||
<filename>../../gst/frei0r/.libs/libgstfrei0r.so</filename>
|
||||
<basename>libgstfrei0r.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Gaudi video effects.</description>
|
||||
<filename>../../gst/gaudieffects/.libs/libgstgaudieffects.so</filename>
|
||||
<basename>libgstgaudieffects.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Payload/depayload GDP packets</description>
|
||||
<filename>../../gst/gdp/.libs/libgstgdp.so</filename>
|
||||
<basename>libgstgdp.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Various geometric image transform elements</description>
|
||||
<filename>../../gst/geometrictransform/.libs/libgstgeometrictransform.so</filename>
|
||||
<basename>libgstgeometrictransform.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GME Audio Decoder</description>
|
||||
<filename>../../ext/gme/.libs/libgstgme.so</filename>
|
||||
<basename>libgstgme.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GSM encoder/decoder</description>
|
||||
<filename>../../ext/gsm/.libs/libgstgsm.so</filename>
|
||||
<basename>libgstgsm.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Siren encoder/decoder/payloader/depayloader plugins</description>
|
||||
<filename>../../gst/siren/.libs/libgstsiren.so</filename>
|
||||
<basename>libgstsiren.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>ID3 v1 and v2 muxing plugin</description>
|
||||
<filename>../../gst/id3tag/.libs/libgstid3tag.so</filename>
|
||||
<basename>libgstid3tag.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>plugin for inter-pipeline communication</description>
|
||||
<filename>../../gst/inter/.libs/libgstinter.so</filename>
|
||||
<basename>libgstinter.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Create an interlaced video stream</description>
|
||||
<filename>../../gst/interlace/.libs/libgstinterlace.so</filename>
|
||||
<basename>libgstinterlace.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>JPEG interchange format plugin</description>
|
||||
<filename>../../gst/jpegformat/.libs/libgstjpegformat.so</filename>
|
||||
<basename>libgstjpegformat.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adds multiple live discontinuous streams</description>
|
||||
<filename>../../gst/liveadder/.libs/libgstliveadder.so</filename>
|
||||
<basename>libgstliveadder.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Mimic codec</description>
|
||||
<filename>../../ext/mimic/.libs/libgstmimic.so</filename>
|
||||
<basename>libgstmimic.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Microsoft Multi Media Server streaming protocol support</description>
|
||||
<filename>../../ext/libmms/.libs/libgstmms.so</filename>
|
||||
<basename>libgstmms.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>.MOD audio decoding</description>
|
||||
<filename>../../ext/modplug/.libs/libgstmodplug.so</filename>
|
||||
<basename>libgstmodplug.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>High-quality MPEG-1/2 video encoder</description>
|
||||
<filename>../../ext/mpeg2enc/.libs/libgstmpeg2enc.so</filename>
|
||||
<basename>libgstmpeg2enc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>MPEG-PS demuxer</description>
|
||||
<filename>../../gst/mpegdemux/.libs/libgstmpegpsdemux.so</filename>
|
||||
<basename>libgstmpegpsdemux.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>MPEG TS demuxer</description>
|
||||
<filename>../../gst/mpegtsdemux/.libs/libgstmpegtsdemux.so</filename>
|
||||
<basename>libgstmpegtsdemux.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>MPEG-TS muxer</description>
|
||||
<filename>../../gst/mpegtsmux/.libs/libgstmpegtsmux.so</filename>
|
||||
<basename>libgstmpegtsmux.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>mp3 decoding based on the mpg123 library</description>
|
||||
<filename>../../ext/mpg123/.libs/libgstmpg123.so</filename>
|
||||
<basename>libgstmpg123.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>High-quality MPEG/DVD/SVCD/VCD video/audio multiplexer</description>
|
||||
<filename>../../ext/mplex/.libs/libgstmplex.so</filename>
|
||||
<basename>libgstmplex.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>lib neon http client src</description>
|
||||
<filename>../../ext/neon/.libs/libgstneonhttpsrc.so</filename>
|
||||
<basename>libgstneonhttpsrc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.2.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
<package>GStreamer Bad Plug-ins git</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Calculate MusicIP fingerprint from audio files</description>
|
||||
<filename>../../ext/ofa/.libs/libgstofa.so</filename>
|
||||
<basename>libgstofa.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>OpenAL plugin library</description>
|
||||
<filename>../../ext/openal/.libs/libgstopenal.so</filename>
|
||||
<basename>libgstopenal.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>GStreamer OpenCV Plugins</description>
|
||||
<filename>../../ext/opencv/.libs/libgstopencv.so</filename>
|
||||
<basename>libgstopencv.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>OPUS plugin library</description>
|
||||
<filename>../../ext/opus/.libs/libgstopus.so</filename>
|
||||
<basename>libgstopus.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Element parsing raw pcap streams</description>
|
||||
<filename>../../gst/pcapparse/.libs/libgstpcapparse.so</filename>
|
||||
<basename>libgstpcapparse.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>PNM plugin</description>
|
||||
<filename>../../gst/pnm/.libs/libgstpnm.so</filename>
|
||||
<basename>libgstpnm.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Parses byte streams into raw frames</description>
|
||||
<filename>../../gst/rawparse/.libs/libgstrawparse.so</filename>
|
||||
<basename>libgstrawparse.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Removes silence from an audio stream</description>
|
||||
<filename>../../gst/removesilence/.libs/libgstremovesilence.so</filename>
|
||||
<basename>libgstremovesilence.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Resin DVD playback elements</description>
|
||||
<filename>../../ext/resindvd/.libs/libgstresindvd.so</filename>
|
||||
<basename>libgstresindvd.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Connects to a VNC server and decodes RFB stream</description>
|
||||
<filename>../../gst/librfb/.libs/libgstrfbsrc.so</filename>
|
||||
<basename>libgstrfbsrc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Schroedinger plugin</description>
|
||||
<filename>../../ext/schroedinger/.libs/libgstschro.so</filename>
|
||||
<basename>libgstschro.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>configure streaming sessions using SDP</description>
|
||||
<filename>../../gst/sdp/.libs/libgstsdpelem.so</filename>
|
||||
<basename>libgstsdpelem.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Segment clip elements</description>
|
||||
<filename>../../gst/segmentclip/.libs/libgstsegmentclip.so</filename>
|
||||
<basename>libgstsegmentclip.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>shared memory sink source</description>
|
||||
<filename>../../sys/shm/.libs/libgstshm.so</filename>
|
||||
<basename>libgstshm.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Apply a smooth filter to an image</description>
|
||||
<filename>../../gst/smooth/.libs/libgstsmooth.so</filename>
|
||||
<basename>libgstsmooth.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Audio Pitch Controller & BPM Detection</description>
|
||||
<filename>../../ext/soundtouch/.libs/libgstsoundtouch.so</filename>
|
||||
<basename>libgstsoundtouch.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>libspandsp plugin</description>
|
||||
<filename>../../ext/spandsp/.libs/libgstspandsp.so</filename>
|
||||
<basename>libgstspandsp.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Set speed/pitch on audio/raw streams (resampler)</description>
|
||||
<filename>../../gst/speed/.libs/libgstspeed.so</filename>
|
||||
<basename>libgstspeed.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>subtitle encoders</description>
|
||||
<filename>../../gst/subenc/.libs/libgstsubenc.so</filename>
|
||||
<basename>libgstsubenc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>videoparsers</description>
|
||||
<filename>../../gst/videoparsers/.libs/libgstvideoparsersbad.so</filename>
|
||||
<basename>libgstvideoparsersbad.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>AAC audio encoder</description>
|
||||
<filename>../../ext/voaacenc/.libs/libgstvoaacenc.so</filename>
|
||||
<basename>libgstvoaacenc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adaptive Multi-Rate Wide-Band Encoder</description>
|
||||
<filename>../../ext/voamrwbenc/.libs/libgstvoamrwbenc.so</filename>
|
||||
<basename>libgstvoamrwbenc.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Wayland Video Sink</description>
|
||||
<filename>../../ext/wayland/.libs/libgstwaylandsink.so</filename>
|
||||
<basename>libgstwaylandsink.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
@ -14,13 +14,13 @@
|
|||
<longname>wayland video sink</longname>
|
||||
<class>Sink/Video</class>
|
||||
<description>Output to wayland surface</description>
|
||||
<author>Sreerenj Balachandran <sreerenj.balachandran@intel.com></author>
|
||||
<author>Sreerenj Balachandran <sreerenj.balachandran@intel.com>, George Kiagiadakis <george.kiagiadakis@collabora.com></author>
|
||||
<pads>
|
||||
<caps>
|
||||
<name>sink</name>
|
||||
<direction>sink</direction>
|
||||
<presence>always</presence>
|
||||
<details>video/x-raw, format=(string){ BGRx, BGRA }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]</details>
|
||||
<details>video/x-raw, format=(string){ BGRx, BGRA, RGBx, xBGR, xRGB, RGBA, ABGR, ARGB, RGB, BGR, RGB16, BGR16, YUY2, YVYU, UYVY, AYUV, NV12, NV21, NV16, YUV9, YVU9, Y41B, I420, YV12, Y42B, v308 }, width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], framerate=(fraction)[ 0/1, 2147483647/1 ]</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Demuxes/decodes YUV4MPEG streams</description>
|
||||
<filename>../../gst/y4m/.libs/libgsty4mdec.so</filename>
|
||||
<basename>libgsty4mdec.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>zbar barcode scanner</description>
|
||||
<filename>../../ext/zbar/.libs/libgstzbar.so</filename>
|
||||
<basename>libgstzbar.so</basename>
|
||||
<version>1.3.2</version>
|
||||
<version>1.3.3</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-bad</source>
|
||||
<package>GStreamer Bad Plug-ins source release</package>
|
||||
|
|
|
@ -237,8 +237,8 @@ void video_convert_orc_convert_I420_BGRA (guint8 * ORC_RESTRICT d1,
|
|||
#define ORC_CLAMP_UW(x) ORC_CLAMP(x,ORC_UW_MIN,ORC_UW_MAX)
|
||||
#define ORC_CLAMP_SL(x) ORC_CLAMP(x,ORC_SL_MIN,ORC_SL_MAX)
|
||||
#define ORC_CLAMP_UL(x) ORC_CLAMP(x,ORC_UL_MIN,ORC_UL_MAX)
|
||||
#define ORC_SWAP_W(x) ((((x)&0xff)<<8) | (((x)&0xff00)>>8))
|
||||
#define ORC_SWAP_L(x) ((((x)&0xff)<<24) | (((x)&0xff00)<<8) | (((x)&0xff0000)>>8) | (((x)&0xff000000)>>24))
|
||||
#define ORC_SWAP_W(x) ((((x)&0xffU)<<8) | (((x)&0xff00U)>>8))
|
||||
#define ORC_SWAP_L(x) ((((x)&0xffU)<<24) | (((x)&0xff00U)<<8) | (((x)&0xff0000U)>>8) | (((x)&0xff000000U)>>24))
|
||||
#define ORC_SWAP_Q(x) ((((x)&ORC_UINT64_C(0xff))<<56) | (((x)&ORC_UINT64_C(0xff00))<<40) | (((x)&ORC_UINT64_C(0xff0000))<<24) | (((x)&ORC_UINT64_C(0xff000000))<<8) | (((x)&ORC_UINT64_C(0xff00000000))>>8) | (((x)&ORC_UINT64_C(0xff0000000000))>>24) | (((x)&ORC_UINT64_C(0xff000000000000))>>40) | (((x)&ORC_UINT64_C(0xff00000000000000))>>56))
|
||||
#define ORC_PTR_OFFSET(ptr,offset) ((void *)(((unsigned char *)(ptr)) + (offset)))
|
||||
#define ORC_DENORMAL(x) ((x) & ((((x)&0x7f800000) == 0) ? 0xff800000 : 0xffffffff))
|
||||
|
|
|
@ -33,6 +33,16 @@ real live maintainer, or some actual wide use.
|
|||
</GitRepository>
|
||||
</repository>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.3.3</revision>
|
||||
<branch>1.3</branch>
|
||||
<name></name>
|
||||
<created>2014-06-22</created>
|
||||
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.3.3.tar.xz" />
|
||||
</Version>
|
||||
</release>
|
||||
|
||||
<release>
|
||||
<Version>
|
||||
<revision>1.3.2</revision>
|
||||
|
|
|
@ -133,8 +133,8 @@ void compositor_orc_overlay_bgra (guint8 * ORC_RESTRICT d1, int d1_stride,
|
|||
#define ORC_CLAMP_UW(x) ORC_CLAMP(x,ORC_UW_MIN,ORC_UW_MAX)
|
||||
#define ORC_CLAMP_SL(x) ORC_CLAMP(x,ORC_SL_MIN,ORC_SL_MAX)
|
||||
#define ORC_CLAMP_UL(x) ORC_CLAMP(x,ORC_UL_MIN,ORC_UL_MAX)
|
||||
#define ORC_SWAP_W(x) ((((x)&0xff)<<8) | (((x)&0xff00)>>8))
|
||||
#define ORC_SWAP_L(x) ((((x)&0xff)<<24) | (((x)&0xff00)<<8) | (((x)&0xff0000)>>8) | (((x)&0xff000000)>>24))
|
||||
#define ORC_SWAP_W(x) ((((x)&0xffU)<<8) | (((x)&0xff00U)>>8))
|
||||
#define ORC_SWAP_L(x) ((((x)&0xffU)<<24) | (((x)&0xff00U)<<8) | (((x)&0xff0000U)>>8) | (((x)&0xff000000U)>>24))
|
||||
#define ORC_SWAP_Q(x) ((((x)&ORC_UINT64_C(0xff))<<56) | (((x)&ORC_UINT64_C(0xff00))<<40) | (((x)&ORC_UINT64_C(0xff0000))<<24) | (((x)&ORC_UINT64_C(0xff000000))<<8) | (((x)&ORC_UINT64_C(0xff00000000))>>8) | (((x)&ORC_UINT64_C(0xff0000000000))>>24) | (((x)&ORC_UINT64_C(0xff000000000000))>>40) | (((x)&ORC_UINT64_C(0xff00000000000000))>>56))
|
||||
#define ORC_PTR_OFFSET(ptr,offset) ((void *)(((unsigned char *)(ptr)) + (offset)))
|
||||
#define ORC_DENORMAL(x) ((x) & ((((x)&0x7f800000) == 0) ? 0xff800000 : 0xffffffff))
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2014-05-21"
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2014-06-22"
|
||||
|
||||
/* Define if static plugins should be built */
|
||||
#undef GST_PLUGIN_BUILD_STATIC
|
||||
|
@ -271,6 +271,9 @@
|
|||
/* Define to 1 if you have the `gmtime_r' function. */
|
||||
#undef HAVE_GMTIME_R
|
||||
|
||||
/* Use graphene */
|
||||
#undef HAVE_GRAPHENE
|
||||
|
||||
/* Define to enable GSettings plugin (used by gsettings). */
|
||||
#undef HAVE_GSETTINGS
|
||||
|
||||
|
@ -631,7 +634,7 @@
|
|||
#define PACKAGE_NAME "GStreamer Bad Plug-ins"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "GStreamer Bad Plug-ins 1.3.2"
|
||||
#define PACKAGE_STRING "GStreamer Bad Plug-ins 1.3.3"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gst-plugins-bad"
|
||||
|
@ -640,7 +643,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "1.3.2"
|
||||
#define PACKAGE_VERSION "1.3.3"
|
||||
|
||||
/* directory where plugins are located */
|
||||
#ifdef _DEBUG
|
||||
|
@ -680,7 +683,7 @@
|
|||
#undef USE_EGL_RPI
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "1.3.2"
|
||||
#define VERSION "1.3.3"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
|
|
Loading…
Reference in a new issue