Release 0.10.18

This commit is contained in:
Tim-Philipp Müller 2010-02-10 23:18:22 +00:00
parent b40407217d
commit 34c128b66d
77 changed files with 2603 additions and 379 deletions

1978
ChangeLog

File diff suppressed because it is too large Load diff

81
NEWS
View file

@ -1,4 +1,83 @@
This is GStreamer Good Plug-ins 0.10.17, "They used to sparkle" This is GStreamer Good Plug-ins 0.10.18, "Short Circuit"
Changes since 0.10.17:
* v4l2src: implement GstURIHandler interface
* matroskamux: make index size configurable
* matroskademux: support push based mode
* matroskademux: improve stream synchronization
* flacdec: fix possible hanging in pull mode seeking
* flacdec: use a single decoder field for both push and pull mode
* flacenc: optionally add a seek table
* rtp: add BroadcomVoice payloader and depayloader
* rtp: add G.723 payloader and depayloader
* rtph264pay: add option to insert PPS/SPS in streams
* rtph264depay: optionally merge NALUs into Access Units
* rtspsrc: add user-id and user-pw properties; fix major memory leak
* avimux: many fixes, also better compatibility with Windows Media Player
* avidemux: per-stream index parsing (= much faster startup)
* qtdemux: progressive download support / seeking in push mode
* qtdemux: per sample parsing (= much faster start up)
* wavenc: Post warning if file hasn't been finalised properly
* videomixer: MMX optimisations and other improvements; implement basic QoS
* matroska, qtdemux, id3demux: fix language code writing and extraction
Bugs fixed since 0.10.17:
* 609405 : [qtdemux] Issues when seeking with file with lots of tracks and edit lists
* 503582 : [avidemux] Extract date tag (contained in the IDIT chunk)
* 351595 : [flacenc] write seek tables
* 505823 : [matroskademux] language tags have wrong iso code
* 515073 : [goom] Update to goom2k4
* 539858 : not enough NEWSEGMENT events from matroskademux
* 554839 : [rtpbin] Automaticaly remove pads
* 582575 : [rtph263depay] dropping only part of key frames on lost fragmets
* 583367 : gstrtpL16pay ignores max-ptime property
* 583985 : [matroskamux] make index size configurable
* 587323 : rtpmp4vpay does not payload mp4v stream depayloaded with rtpmp4vdepay
* 593354 : rtpjitterbuffer sometimes outputs packets with timestamps in the past
* 595265 : SDES handling in RTPSource
* 597497 : can't play a redirecting .mov file via playbin
* 597823 : Add rtpg723pay plugin
* 599300 : [qtdemux] Doesn't populate video bitrate field
* 601143 : v4l2src: add GstURIHandler interface
* 601242 : [flvmux] ECMA array with file index lacks final 0x09 byte
* 601728 : [rtspsrc] Add username/password properties
* 602231 : Deadlock between rtpjitterbuffer and gstrtpbin
* 602508 : qtdemux: Parse stbl atom per sample instead of all at once
* 602887 : shout2send element won't change from PLAYING state to NULL
* 602940 : jitterbuffer is racy determining basetime
* 603376 : rtpsession : g_type_create_instance performance issue : avoid buffer ref
* 603471 : [flacdec] not timestamping output buffers
* 603547 : shout2send plugin sends data too fast
* 603779 : [ladspa] Remove ladspa plugin code
* 604352 : [rganalysis] miscomputes timestamps
* 604611 : [qtdemux] Provides invalid ALAC codec data
* 604679 : videomixer MMX code doesn't build on fedora12
* 604814 : videomixer make error
* 604872 : [udpsink] Add missing 'gssize len' parameter to g_convert()
* 604913 : rtph264pay/NALU/rtph264depay
* 605222 : Mobile Youtube RTSP streams time out at EOS
* 605269 : [shout2][patch] Setting public flag
* 605447 : Unable to play Real Audio stream for radioBERLIN.
* 605882 : rtpg723pay is incorrect
* 606198 : rtph264pay is causing alignment trap on ARM arch
* 606438 : multiudpsink: warningfixes for windows
* 606692 : Incorrect Center Frequency For Band3
* 606807 : audioamplify: allow negative amplifications
* 607353 : rtph264pay & base: Don't crash if the other side specifies the profile-level-id
* 607440 : [wavenc] should post warning if the file isn't finished properly on pipeline shutting down
* 607718 : [qtdemux] Infinite loop doing negative rate playback for single audio stream
* 607949 : [avidemux] regression in stop position for mp3 streams
* 608209 : [videomixer] blend_mmx.h:173: Error: can't encode register '%ah' in an instruction requiring REX prefix
* 608255 : [speex] speexenc crash and leaks in rtpspeexpay and speexdec
* 608268 : [flvmux] index timestamps should be in seconds, not milliseconds
* 608629 : [pngdec] png_set_gray_1_2_4_to_8() removed in libpng > = 1.4.0
* 608671 : [mkv] issues when seeking
* 608990 : [qtdemux] Segment start timestamps can be broken
* 609107 : [qtdemux] Unknown atoms should also be skipped when looking for moov
* 598610 : [matroskademux] Support push mode operation
* 594381 : audiofirfilter: Implement FFT convolution
Changes since 0.10.16: Changes since 0.10.16:

178
RELEASE
View file

@ -1,5 +1,5 @@
Release notes for GStreamer Good Plug-ins 0.10.17 "They used to sparkle" Release notes for GStreamer Good Plug-ins 0.10.18 "Short Circuit"
@ -54,79 +54,82 @@ contains a set of less supported plug-ins that haven't passed the
Features of this release Features of this release
* RTP improvements * v4l2src: implement GstURIHandler interface
* Support automatic cropping in videobox * matroskamux: make index size configurable
* Add TTL multicast UDP property * matroskademux: support push based mode
* AVI demux push mode fixes and performance improvements * matroskademux: improve stream synchronization
* Support large and unusual chunks sizes in wav * flacdec: fix possible hanging in pull mode seeking
* Quicktime demuxer improvements * flacdec: use a single decoder field for both push and pull mode
* JPEG decode fixes and speedups * flacenc: optionally add a seek table
* Support interlaced Y4M file output * rtp: add BroadcomVoice payloader and depayloader
* DV demuxer improvements * rtp: add G.723 payloader and depayloader
* Pulseaudio fixes and improvements * rtph264pay: add option to insert PPS/SPS in streams
* Support Pulseaudio PLAY/PAUSE requests * rtph264depay: optionally merge NALUs into Access Units
* speexdec improvements * rtspsrc: add user-id and user-pw properties; fix major memory leak
* FLV demuxer improvements * avimux: many fixes, also better compatibility with Windows Media Player
* Fix audio noise in the Equalizer plugin, and other improvements * avidemux: per-stream index parsing (= much faster startup)
* Fix compilation on OS/X Snow Leopard * qtdemux: progressive download support / seeking in push mode
* AVI muxer fixes * qtdemux: per sample parsing (= much faster start up)
* Support MPEG V4L2 devices and improve timestamping * wavenc: Post warning if file hasn't been finalised properly
* Better jpeg2k support * videomixer: MMX optimisations and other improvements; implement basic QoS
* Many other bug fixes and improvements * matroska, qtdemux, id3demux: fix language code writing and extraction
Bugs fixed in this release Bugs fixed in this release
* 597848 : " Media Player Classic " won't play certain files produced by avimux. * 609405 : [qtdemux] Issues when seeking with file with lots of tracks and edit lists
* 588245 : TTL is never applied with udpsink/udpmultisink * 503582 : [avidemux] Extract date tag (contained in the IDIT chunk)
* 368681 : avimux + vbr lame always out of sync * 351595 : [flacenc] write seek tables
* 458629 : [avidemux] high memory usage for many index entries * 505823 : [matroskademux] language tags have wrong iso code
* 561825 : Problem with RTCP thread using freed objects * 515073 : [goom] Update to goom2k4
* 581334 : [qtdemux] Add support for embedded subtitles * 539858 : not enough NEWSEGMENT events from matroskademux
* 582238 : [videobox] Add support for autocrop to caps * 554839 : [rtpbin] Automaticaly remove pads
* 590362 : [v4l2src] x264enc ! qtmux fails because of missing frame duration * 582575 : [rtph263depay] dropping only part of key frames on lost fragmets
* 591713 : [y4menc] interlaced support * 583367 : gstrtpL16pay ignores max-ptime property
* 583985 : [matroskamux] make index size configurable
* 587323 : rtpmp4vpay does not payload mp4v stream depayloaded with rtpmp4vdepay
* 593354 : rtpjitterbuffer sometimes outputs packets with timestamps in the past * 593354 : rtpjitterbuffer sometimes outputs packets with timestamps in the past
* 593391 : [rtpsession] : rtp_session_on_timeout : Invalid read of size 4 * 595265 : SDES handling in RTPSource
* 593688 : effectv can no longer be compiled with gcc 3 * 597497 : can't play a redirecting .mov file via playbin
* 593757 : [qtdemux] Lack of support for QualComm PureVoice * 597823 : Add rtpg723pay plugin
* 593764 : [v4l2src] format ordering: put emulated formats behind native formats * 599300 : [qtdemux] Doesn't populate video bitrate field
* 593955 : rtpjitterbuffer: clock_rate can change between its check and its use * 601143 : v4l2src: add GstURIHandler interface
* 594039 : missing unref in rtpsource / leak * 601242 : [flvmux] ECMA array with file index lacks final 0x09 byte
* 594133 : [rtspsrc] leaks authentication info * 601728 : [rtspsrc] Add username/password properties
* 594247 : missing math.h include in rtpjpegdepay * 602231 : Deadlock between rtpjitterbuffer and gstrtpbin
* 594248 : Use locked-state on internal rtp-bin to avoid shutdown-state-race * 602508 : qtdemux: Parse stbl atom per sample instead of all at once
* 594251 : Avoid throwing out reordered packets with the same timestamp * 602887 : shout2send element won't change from PLAYING state to NULL
* 594253 : jitterbuf: Only post a warning of clock-rate changed if it is changed from something initialized * 602940 : jitterbuffer is racy determining basetime
* 594254 : propagate the pt-type-changed signal * 603376 : rtpsession : g_type_create_instance performance issue : avoid buffer ref
* 594283 : rtpbin: make free_session() remove dangling stream references * 603471 : [flacdec] not timestamping output buffers
* 594298 : Check if libsoup has SSL support before running HTTPS test in souphttpsrc testsuite * 603547 : shout2send plugin sends data too fast
* 594490 : gstrtpbin always uses pt to demux * 603779 : [ladspa] Remove ladspa plugin code
* 594520 : multipartmux: mark data buffer as delta-unit * 604352 : [rganalysis] miscomputes timestamps
* 594599 : videobox: converts AYUV to I420 incorrectly * 604611 : [qtdemux] Provides invalid ALAC codec data
* 594663 : Patch for multifilesink * 604679 : videomixer MMX code doesn't build on fedora12
* 594691 : rtph263pay: leak * 604814 : videomixer make error
* 595029 : pulse elements fail to connect to pulse 0.9.9 * 604872 : [udpsink] Add missing 'gssize len' parameter to g_convert()
* 595220 : gstreamer crashes on pulseaudio latency change * 604913 : rtph264pay/NALU/rtph264depay
* 595231 : [pulsesink] Lowers volume after every new track * 605222 : Mobile Youtube RTSP streams time out at EOS
* 595888 : qtdemux plugin should not return value from void function * 605269 : [shout2][patch] Setting public flag
* 595897 : Problem linking videomixer * 605447 : Unable to play Real Audio stream for radioBERLIN.
* 595942 : [qtdemux] issue with corrupted 3gp file * 605882 : rtpg723pay is incorrect
* 596319 : [qtdemux] fails to parse pixel aspect ratio data * 606198 : rtph264pay is causing alignment trap on ARM arch
* 597091 : [flvdemux] not outputting no-more-pads causes playbin2 to fail badly on streamed single-stream flv * 606438 : multiudpsink: warningfixes for windows
* 597214 : [avidemux] Fix printf formats to avoid warnings in avidemux * 606692 : Incorrect Center Frequency For Band3
* 597348 : [qtdemux] Cast variables passed to printf to avoid warnings about incorrect formats * 606807 : audioamplify: allow negative amplifications
* 597351 : [jpegdec] segfaults on a specific picture * 607353 : rtph264pay & base: Don't crash if the other side specifies the profile-level-id
* 597397 : equalizer is non deterministic * 607440 : [wavenc] should post warning if the file isn't finished properly on pipeline shutting down
* 597463 : [pulsesrc] has no lower bound for fragment size * 607718 : [qtdemux] Infinite loop doing negative rate playback for single audio stream
* 597601 : [pulsesink] needs to take control of minreq value * 607949 : [avidemux] regression in stop position for mp3 streams
* 597730 : osssrc rank should be secondary, just like osssink * 608209 : [videomixer] blend_mmx.h:173: Error: can't encode register '%ah' in an instruction requiring REX prefix
* 597847 : Windows Media Player won't play large files produced by avimux * 608255 : [speex] speexenc crash and leaks in rtpspeexpay and speexdec
* 597867 : Plugins good do not build on Ubuntu Hardy (kernel 2.6.24) * 608268 : [flvmux] index timestamps should be in seconds, not milliseconds
* 598377 : rtpmanager: only forward the lost event to the last seen payloadnumber * 608629 : [pngdec] png_set_gray_1_2_4_to_8() removed in libpng > = 1.4.0
* 598517 : [jpegdec] Regression supporting 4:2:2 jpeg videos * 608671 : [mkv] issues when seeking
* 598810 : wavenc: Fix buffer offset by moving length incrementation * 608990 : [qtdemux] Segment start timestamps can be broken
* 598933 : [pulse] Fix the StreamVolume interface not being advertised * 609107 : [qtdemux] Unknown atoms should also be skipped when looking for moov
* 601381 : v4l2: Make sure to initialize variables before using them * 598610 : [matroskademux] Support push mode operation
* 594381 : audiofirfilter: Implement FFT convolution
Download Download
@ -156,40 +159,31 @@ Applications
Contributors to this release Contributors to this release
* Alessandro Decina * Alessandro Decina
* Andy Wingo
* Arnout Vandecappelle * Arnout Vandecappelle
* Arun Raghavan
* Aurelien Grimaud
* Bastien Nocera * Bastien Nocera
* Brian Cameron * Branko Čibej
* Christian F.K. Schaller * David Hoyt
* David Henningsson
* David Schleef
* Edward Hervey * Edward Hervey
* Gabriel Millaire
* Havard Graff * Havard Graff
* Håvard Graff
* Jan Schmidt * Jan Schmidt
* Jarkko Palviainen * Jan Urbański
* Josep Torra * Jonathan Conder
* Laurent Glayal * Kipp Cannon
* Lennart Poettering * Marco Ballesio
* Marc Leeman
* Marc-André Lureau
* Mark Nauwelaerts * Mark Nauwelaerts
* Marvin Schmidt
* Michael Smith * Michael Smith
* Olivier Crête * Olivier Crête
* Pau Garcia i Quiles * Pascal Buhler
* Peter Kjellerstedt * Peter van Hardenberg
* Priit Laes
* René Stadler
* Robert Swain * Robert Swain
* Robert Weidlich
* Roland Krikava
* Sebastian Dröge * Sebastian Dröge
* Sjoerd Simons
* Stefan Kost * Stefan Kost
* Stephen Jungels
* Stig Sandnes
* Thiago Santos * Thiago Santos
* Tiago Katcipis
* Tim-Philipp Müller * Tim-Philipp Müller
* Wim Taymans * Wim Taymans
* Zaheer Merali
   

View file

@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf dnl initialize autoconf
dnl releases only do -Wall, git and prerelease does -Werror too dnl releases only do -Wall, git and prerelease does -Werror too
dnl use a three digit version number for releases, and four for git/pre dnl use a three digit version number for releases, and four for git/pre
AC_INIT(GStreamer Good Plug-ins, 0.10.17.3, AC_INIT(GStreamer Good Plug-ins, 0.10.18,
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer, http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
gst-plugins-good) gst-plugins-good)
@ -47,8 +47,8 @@ AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL AM_PROG_LIBTOOL
dnl *** required versions of GStreamer stuff *** dnl *** required versions of GStreamer stuff ***
GST_REQ=0.10.25.2 GST_REQ=0.10.26
GSTPB_REQ=0.10.25.2 GSTPB_REQ=0.10.26
dnl *** autotools stuff **** dnl *** autotools stuff ****

View file

@ -33,8 +33,8 @@
<TYPE>gdouble</TYPE> <TYPE>gdouble</TYPE>
<RANGE>[-24,12]</RANGE> <RANGE>[-24,12]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>227 Hz</NICK> <NICK>237 Hz</NICK>
<BLURB>gain for the frequency band 227 Hz, ranging from -24 dB to +12 dB.</BLURB> <BLURB>gain for the frequency band 237 Hz, ranging from -24 dB to +12 dB.</BLURB>
<DEFAULT>0</DEFAULT> <DEFAULT>0</DEFAULT>
</ARG> </ARG>
@ -451,7 +451,7 @@
<ARG> <ARG>
<NAME>GstUDPSrc::sockfd</NAME> <NAME>GstUDPSrc::sockfd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Socket Handle</NICK> <NICK>Socket Handle</NICK>
<BLURB>Socket to use for UDP reception. (-1 == allocate).</BLURB> <BLURB>Socket to use for UDP reception. (-1 == allocate).</BLURB>
@ -501,7 +501,7 @@
<ARG> <ARG>
<NAME>GstUDPSrc::sock</NAME> <NAME>GstUDPSrc::sock</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>Socket Handle</NICK> <NICK>Socket Handle</NICK>
<BLURB>Socket currently in use for UDP reception. (-1 = no socket).</BLURB> <BLURB>Socket currently in use for UDP reception. (-1 = no socket).</BLURB>
@ -698,6 +698,26 @@
<DEFAULT>0</DEFAULT> <DEFAULT>0</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstRTSPSrc::user-id</NAME>
<TYPE>gchar*</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>user-id</NICK>
<BLURB>RTSP location URI user id for authentication.</BLURB>
<DEFAULT>NULL</DEFAULT>
</ARG>
<ARG>
<NAME>GstRTSPSrc::user-pw</NAME>
<TYPE>gchar*</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>user-pw</NICK>
<BLURB>RTSP location URI user password for authentication.</BLURB>
<DEFAULT>NULL</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstRTPDec::skip</NAME> <NAME>GstRTPDec::skip</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
@ -733,7 +753,7 @@
<TYPE>gboolean</TYPE> <TYPE>gboolean</TYPE>
<RANGE></RANGE> <RANGE></RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>mesage</NICK> <NICK>message</NICK>
<BLURB>Post a level message for each passed interval.</BLURB> <BLURB>Post a level message for each passed interval.</BLURB>
<DEFAULT>TRUE</DEFAULT> <DEFAULT>TRUE</DEFAULT>
</ARG> </ARG>
@ -1038,6 +1058,16 @@
<DEFAULT>"source"</DEFAULT> <DEFAULT>"source"</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstShout2send::public</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>public</NICK>
<BLURB>If the stream should be listed on the server's stream directory.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstSpeexDec::enh</NAME> <NAME>GstSpeexDec::enh</NAME>
<TYPE>gboolean</TYPE> <TYPE>gboolean</TYPE>
@ -1551,7 +1581,7 @@
<ARG> <ARG>
<NAME>GstDV1394Src::port</NAME> <NAME>GstDV1394Src::port</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[-1,16]</RANGE> <RANGE>[G_MAXULONG,16]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Port</NICK> <NICK>Port</NICK>
<BLURB>Port number (-1 automatic).</BLURB> <BLURB>Port number (-1 automatic).</BLURB>
@ -1728,6 +1758,16 @@
<DEFAULT>0</DEFAULT> <DEFAULT>0</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstFlacEnc::seekpoints</NAME>
<TYPE>gint</TYPE>
<RANGE>>= -2147483647</RANGE>
<FLAGS>rwx</FLAGS>
<NICK>Seekpoints</NICK>
<BLURB>Add SEEKTABLE metadata (if > 0, number of entries, if < 0, interval in sec).</BLURB>
<DEFAULT>0</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstOssSink::device</NAME> <NAME>GstOssSink::device</NAME>
<TYPE>gchar*</TYPE> <TYPE>gchar*</TYPE>
@ -1768,10 +1808,20 @@
<DEFAULT>1</DEFAULT> <DEFAULT>1</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstMatroskaMux::min-index-interval</NAME>
<TYPE>gint64</TYPE>
<RANGE>>= 0</RANGE>
<FLAGS>rw</FLAGS>
<NICK>Minimum time between index entries</NICK>
<BLURB>An index entry is created every so many nanoseconds.</BLURB>
<DEFAULT>0</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstTest::allowed-timestamp-deviation</NAME> <NAME>GstTest::allowed-timestamp-deviation</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>allowed timestamp deviation</NICK> <NICK>allowed timestamp deviation</NICK>
<BLURB>allowed average difference in usec between timestamp of next buffer and expected timestamp from analyzing last buffer.</BLURB> <BLURB>allowed average difference in usec between timestamp of next buffer and expected timestamp from analyzing last buffer.</BLURB>
@ -1781,7 +1831,7 @@
<ARG> <ARG>
<NAME>GstTest::buffer-count</NAME> <NAME>GstTest::buffer-count</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>buffer count</NICK> <NICK>buffer count</NICK>
<BLURB>number of buffers in stream.</BLURB> <BLURB>number of buffers in stream.</BLURB>
@ -1791,7 +1841,7 @@
<ARG> <ARG>
<NAME>GstTest::expected-buffer-count</NAME> <NAME>GstTest::expected-buffer-count</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>expected buffer count</NICK> <NICK>expected buffer count</NICK>
<BLURB>expected number of buffers in stream.</BLURB> <BLURB>expected number of buffers in stream.</BLURB>
@ -1801,7 +1851,7 @@
<ARG> <ARG>
<NAME>GstTest::expected-length</NAME> <NAME>GstTest::expected-length</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>expected length</NICK> <NICK>expected length</NICK>
<BLURB>expected length of stream.</BLURB> <BLURB>expected length of stream.</BLURB>
@ -1821,7 +1871,7 @@
<ARG> <ARG>
<NAME>GstTest::length</NAME> <NAME>GstTest::length</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>length</NICK> <NICK>length</NICK>
<BLURB>length of stream.</BLURB> <BLURB>length of stream.</BLURB>
@ -1841,7 +1891,7 @@
<ARG> <ARG>
<NAME>GstTest::timestamp-deviation</NAME> <NAME>GstTest::timestamp-deviation</NAME>
<TYPE>gint64</TYPE> <TYPE>gint64</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>timestamp deviation</NICK> <NICK>timestamp deviation</NICK>
<BLURB>average difference in usec between timestamp of next buffer and expected timestamp from analyzing last buffer.</BLURB> <BLURB>average difference in usec between timestamp of next buffer and expected timestamp from analyzing last buffer.</BLURB>
@ -1911,7 +1961,7 @@
<ARG> <ARG>
<NAME>GstBreakMyData::set-to</NAME> <NAME>GstBreakMyData::set-to</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[-1,255]</RANGE> <RANGE>[G_MAXULONG,255]</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>set-to</NICK> <NICK>set-to</NICK>
<BLURB>set changed bytes to this value (-1 means random value.</BLURB> <BLURB>set changed bytes to this value (-1 means random value.</BLURB>
@ -2241,7 +2291,7 @@
<ARG> <ARG>
<NAME>GstDynUDPSink::sockfd</NAME> <NAME>GstDynUDPSink::sockfd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[-1,32767]</RANGE> <RANGE>[G_MAXULONG,32767]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>socket handle</NICK> <NICK>socket handle</NICK>
<BLURB>Socket to use for UDP sending. (-1 == allocate).</BLURB> <BLURB>Socket to use for UDP sending. (-1 == allocate).</BLURB>
@ -2311,7 +2361,7 @@
<ARG> <ARG>
<NAME>GstMultiUDPSink::sock</NAME> <NAME>GstMultiUDPSink::sock</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>Socket Handle</NICK> <NICK>Socket Handle</NICK>
<BLURB>Socket currently in use for UDP sending. (-1 == no socket).</BLURB> <BLURB>Socket currently in use for UDP sending. (-1 == no socket).</BLURB>
@ -2321,7 +2371,7 @@
<ARG> <ARG>
<NAME>GstMultiUDPSink::sockfd</NAME> <NAME>GstMultiUDPSink::sockfd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Socket Handle</NICK> <NICK>Socket Handle</NICK>
<BLURB>Socket to use for UDP sending. (-1 == allocate).</BLURB> <BLURB>Socket to use for UDP sending. (-1 == allocate).</BLURB>
@ -2351,7 +2401,7 @@
<ARG> <ARG>
<NAME>GstMultiUDPSink::qos-dscp</NAME> <NAME>GstMultiUDPSink::qos-dscp</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[-1,63]</RANGE> <RANGE>[G_MAXULONG,63]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>QoS diff srv code point</NICK> <NICK>QoS diff srv code point</NICK>
<BLURB>Quality of Service, differentiated services code point (-1 default).</BLURB> <BLURB>Quality of Service, differentiated services code point (-1 default).</BLURB>
@ -2671,7 +2721,7 @@
<ARG> <ARG>
<NAME>GstAudioAmplify::amplification</NAME> <NAME>GstAudioAmplify::amplification</NAME>
<TYPE>gfloat</TYPE> <TYPE>gfloat</TYPE>
<RANGE>>= 0</RANGE> <RANGE></RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Amplification</NICK> <NICK>Amplification</NICK>
<BLURB>Factor of amplification.</BLURB> <BLURB>Factor of amplification.</BLURB>
@ -2931,7 +2981,7 @@
<ARG> <ARG>
<NAME>GstV4l2Src::device-fd</NAME> <NAME>GstV4l2Src::device-fd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>File descriptor</NICK> <NICK>File descriptor</NICK>
<BLURB>File descriptor of the device.</BLURB> <BLURB>File descriptor of the device.</BLURB>
@ -3091,7 +3141,7 @@
<ARG> <ARG>
<NAME>GstAudioWSincBand::length</NAME> <NAME>GstAudioWSincBand::length</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[3,50000]</RANGE> <RANGE>[3,256000]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Length</NICK> <NICK>Length</NICK>
<BLURB>Filter kernel length, will be rounded to the next odd number.</BLURB> <BLURB>Filter kernel length, will be rounded to the next odd number.</BLURB>
@ -3111,7 +3161,7 @@
<ARG> <ARG>
<NAME>GstAudioWSincLimit::length</NAME> <NAME>GstAudioWSincLimit::length</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[3,50000]</RANGE> <RANGE>[3,256000]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Length</NICK> <NICK>Length</NICK>
<BLURB>Filter kernel length, will be rounded to the next odd number.</BLURB> <BLURB>Filter kernel length, will be rounded to the next odd number.</BLURB>
@ -3151,7 +3201,7 @@
<ARG> <ARG>
<NAME>GstRndBufferSize::max</NAME> <NAME>GstRndBufferSize::max</NAME>
<TYPE>glong</TYPE> <TYPE>glong</TYPE>
<RANGE>>= 1</RANGE> <RANGE>[1,G_MAXINT]</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>maximum</NICK> <NICK>maximum</NICK>
<BLURB>maximum buffer size.</BLURB> <BLURB>maximum buffer size.</BLURB>
@ -3161,7 +3211,7 @@
<ARG> <ARG>
<NAME>GstRndBufferSize::min</NAME> <NAME>GstRndBufferSize::min</NAME>
<TYPE>glong</TYPE> <TYPE>glong</TYPE>
<RANGE>>= 0</RANGE> <RANGE>[0,G_MAXINT]</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>mininum</NICK> <NICK>mininum</NICK>
<BLURB>mininum buffer size.</BLURB> <BLURB>mininum buffer size.</BLURB>
@ -3171,7 +3221,7 @@
<ARG> <ARG>
<NAME>GstRndBufferSize::seed</NAME> <NAME>GstRndBufferSize::seed</NAME>
<TYPE>gulong</TYPE> <TYPE>gulong</TYPE>
<RANGE></RANGE> <RANGE><= G_MAXUINT</RANGE>
<FLAGS>rwx</FLAGS> <FLAGS>rwx</FLAGS>
<NICK>random number seed</NICK> <NICK>random number seed</NICK>
<BLURB>seed for randomness (initialized when going from READY to PAUSED).</BLURB> <BLURB>seed for randomness (initialized when going from READY to PAUSED).</BLURB>
@ -3454,7 +3504,7 @@
<RANGE></RANGE> <RANGE></RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>profile-level-id</NICK> <NICK>profile-level-id</NICK>
<BLURB>The base64 profile-level-id to set in out caps (set to NULL to extract from stream).</BLURB> <BLURB>The base64 profile-level-id to set in the sink caps (deprecated).</BLURB>
<DEFAULT>NULL</DEFAULT> <DEFAULT>NULL</DEFAULT>
</ARG> </ARG>
@ -3488,6 +3538,16 @@
<DEFAULT>FALSE</DEFAULT> <DEFAULT>FALSE</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstRtpH264Pay::config-interval</NAME>
<TYPE>guint</TYPE>
<RANGE><= 3600</RANGE>
<FLAGS>rw</FLAGS>
<NICK>SPS PPS Send Interval</NICK>
<BLURB>Send SPS and PPS Insertion Interval in seconds (sprop parameter sets will be multiplexed in the data stream when detected.) (0 = disabled).</BLURB>
<DEFAULT>0</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>ladspa-hardLimiter::Residue-level</NAME> <NAME>ladspa-hardLimiter::Residue-level</NAME>
<TYPE>gfloat</TYPE> <TYPE>gfloat</TYPE>
@ -19468,6 +19528,16 @@
<DEFAULT>TRUE</DEFAULT> <DEFAULT>TRUE</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstRtpH264Depay::access-unit</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Access Unit</NICK>
<BLURB>Merge NALU into AU (picture).</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstAudioKaraoke::filter-band</NAME> <NAME>GstAudioKaraoke::filter-band</NAME>
<TYPE>gfloat</TYPE> <TYPE>gfloat</TYPE>
@ -19801,7 +19871,7 @@
<ARG> <ARG>
<NAME>GstHDV1394Src::port</NAME> <NAME>GstHDV1394Src::port</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>[-1,16]</RANGE> <RANGE>[G_MAXULONG,16]</RANGE>
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Port</NICK> <NICK>Port</NICK>
<BLURB>Port number (-1 automatic).</BLURB> <BLURB>Port number (-1 automatic).</BLURB>
@ -20075,7 +20145,7 @@
<FLAGS>rw</FLAGS> <FLAGS>rw</FLAGS>
<NICK>Mode</NICK> <NICK>Mode</NICK>
<BLURB>Deinterlace Mode.</BLURB> <BLURB>Deinterlace Mode.</BLURB>
<DEFAULT>Enfore deinterlacing</DEFAULT> <DEFAULT>Force deinterlacing</DEFAULT>
</ARG> </ARG>
<ARG> <ARG>
@ -20268,6 +20338,16 @@
<DEFAULT>FALSE</DEFAULT> <DEFAULT>FALSE</DEFAULT>
</ARG> </ARG>
<ARG>
<NAME>GstRtpBin::autoremove</NAME>
<TYPE>gboolean</TYPE>
<RANGE></RANGE>
<FLAGS>rw</FLAGS>
<NICK>Auto Remove</NICK>
<BLURB>Automatically removed timed out sources.</BLURB>
<DEFAULT>FALSE</DEFAULT>
</ARG>
<ARG> <ARG>
<NAME>GstRtpJitterBuffer::do-lost</NAME> <NAME>GstRtpJitterBuffer::do-lost</NAME>
<TYPE>gboolean</TYPE> <TYPE>gboolean</TYPE>
@ -20391,7 +20471,7 @@
<ARG> <ARG>
<NAME>GstV4l2Sink::device-fd</NAME> <NAME>GstV4l2Sink::device-fd</NAME>
<TYPE>gint</TYPE> <TYPE>gint</TYPE>
<RANGE>>= -1</RANGE> <RANGE>>= G_MAXULONG</RANGE>
<FLAGS>r</FLAGS> <FLAGS>r</FLAGS>
<NICK>File descriptor</NICK> <NICK>File descriptor</NICK>
<BLURB>File descriptor of the device.</BLURB> <BLURB>File descriptor of the device.</BLURB>

View file

@ -11,68 +11,69 @@ GObject
GstElement GstElement
GstBin GstBin
GstPipeline GstPipeline
GstHalAudioSink
GstHalAudioSrc
GstGConfVideoSink GstGConfVideoSink
GstGConfVideoSrc GstGConfVideoSrc
GstSwitchSink GstSwitchSink
GstGConfAudioSink GstGConfAudioSink
GstGConfAudioSrc GstGConfAudioSrc
GstHalAudioSink
GstHalAudioSrc
GstRtpBin
GstAutoVideoSink GstAutoVideoSink
GstAutoVideoSrc GstAutoVideoSrc
GstAutoAudioSink GstAutoAudioSink
GstAutoAudioSrc GstAutoAudioSrc
GstRgVolume
GstRtpBin
GstRTSPSrc
GstPushFileSrc GstPushFileSrc
GstRTSPSrc
GstRgVolume
GstAspectRatioCrop GstAspectRatioCrop
GstCmmlEnc
GstCmmlDec
GstBaseSink GstBaseSink
GstAASink
GstBaseAudioSink GstBaseAudioSink
GstPulseSink
GstAudioSink GstAudioSink
GstEsdSink GstEsdSink
GstOssSink GstOssSink
GstPulseSink
GstShout2send
GstCACASink GstCACASink
GstVideoSink GstVideoSink
GstGdkPixbufSink GstGdkPixbufSink
GstV4l2Sink GstV4l2Sink
GstAASink GstShout2send
GstTest
GstMultiFileSink
GstMultiUDPSink GstMultiUDPSink
GstUDPSink GstUDPSink
GstDynUDPSink GstDynUDPSink
GstMultiFileSink
GstTest
GstJpegEnc
GstJpegDec
GstSmokeEnc
GstSmokeDec
GstBaseSrc GstBaseSrc
GstPushSrc GstPushSrc
GstDV1394Src
GstHDV1394Src
GstSoupHTTPSrc
GstBaseAudioSrc GstBaseAudioSrc
GstAudioSrc GstAudioSrc
GstPulseSrc GstPulseSrc
GstOssSrc GstOssSrc
GstSoupHTTPSrc
GstDV1394Src
GstHDV1394Src
GstV4l2Src GstV4l2Src
GstXImageSrc GstXImageSrc
GstUDPSrc
GstMultiFileSrc GstMultiFileSrc
GstPulseMixer GstUDPSrc
GstFlacEnc GstWavpackParse
GstFlacDec GstWavpackDec
GstFlacTag GstWavpackEnc
GstDVDemux
GstDVDec
GstTagLibMux GstTagLibMux
GstId3v2Mux GstId3v2Mux
GstApev2Mux GstApev2Mux
GstFlacEnc
GstFlacDec
GstFlacTag
GstCairoTextOverlay GstCairoTextOverlay
GstBaseTransform GstBaseTransform
GstCairoTimeOverlay GstCairoTimeOverlay
GstPixbufScale GstPixbufScale
GstLevel
GstVideoFilter GstVideoFilter
GstEdgeTV GstEdgeTV
GstAgingTV GstAgingTV
@ -86,19 +87,25 @@ GObject
GstRadioacTV GstRadioacTV
GstStreakTV GstStreakTV
GstRippleTV GstRippleTV
GstVideoBalance GstNavigationtest
GstVideoFlip GstVideoFlip
GstVideoBalance
GstGamma GstGamma
GstSMPTEAlpha GstSMPTEAlpha
GstNavigationtest GstVideoBox
GstRgAnalysis GstBreakMyData
GstRgLimiter GstNavSeek
GstProgressReport
GstTagInject
GstLevel
GstAlpha
GstAlphaColor
GstAudioFilter GstAudioFilter
GstSpectrum
GstIirEqualizer GstIirEqualizer
GstIirEqualizerNBands GstIirEqualizerNBands
GstIirEqualizer3Bands GstIirEqualizer3Bands
GstIirEqualizer10Bands GstIirEqualizer10Bands
GstSpectrum
GstAudioInvert GstAudioInvert
GstAudioKaraoke GstAudioKaraoke
GstAudioAmplify GstAudioAmplify
@ -112,36 +119,33 @@ GObject
GstAudioWSincBand GstAudioWSincBand
GstAudioFIRFilter GstAudioFIRFilter
GstAudioEcho GstAudioEcho
GstAlpha GstRgAnalysis
GstAlphaColor GstRgLimiter
GstAudioPanorama
GstVideoBox
GstBreakMyData
GstNavSeek
GstProgressReport
GstTagInject
GstVideoCrop GstVideoCrop
GstAudioPanorama
GstCairoRender GstCairoRender
GstPngDec GstPulseMixer
GstPngEnc
GstWavpackParse
GstWavpackDec
GstWavpackEnc
GstGdkPixbuf
GstCmmlEnc
GstCmmlDec
GstSpeexEnc GstSpeexEnc
GstSpeexDec GstSpeexDec
GstDVDemux GstJpegEnc
GstDVDec GstJpegDec
GstSmokeEnc
GstSmokeDec
GstPngDec
GstPngEnc
GstGdkPixbuf
GstOssMixerElement GstOssMixerElement
GstWavEnc GstAviDemux
GstAviMux
GstAviSubtitle
GstRTPDepay GstRTPDepay
GstBaseRTPDepayload GstBaseRTPDepayload
GstRtpAC3Depay GstRtpAC3Depay
GstRTPBVDepay
GstRtpCELTDepay GstRtpCELTDepay
GstRTPDVDepay GstRTPDVDepay
GstRTPiLBCDepay GstRTPiLBCDepay
GstRtpG723Depay
GstRtpG726Depay GstRtpG726Depay
GstRtpG729Depay GstRtpG729Depay
GstRTPGSMDepay GstRTPGSMDepay
@ -170,15 +174,18 @@ GObject
GstRtpVRawDepay GstRtpVRawDepay
GstRtpXQTDepay GstRtpXQTDepay
GstBaseRTPPayload GstBaseRTPPayload
GstRtpCELTPay
GstRTPDVPay
GstBaseRTPAudioPayload GstBaseRTPAudioPayload
GstRTPBVPay
GstRTPILBCPay GstRTPILBCPay
GstRtpG726Pay GstRtpG726Pay
GstRTPG729Pay GstRTPG729Pay
GstRtpPcmuPay GstRtpPcmuPay
GstRtpPmcaPay GstRtpPmcaPay
GstRtpL16Pay
GstRTPSirenPay GstRTPSirenPay
GstRtpCELTPay
GstRTPDVPay
GstRTPG723Pay
GstRTPGSMPay GstRTPGSMPay
GstRtpAMRPay GstRtpAMRPay
GstRtpMPAPay GstRtpMPAPay
@ -188,7 +195,6 @@ GObject
GstRtpH264Pay GstRtpH264Pay
GstRtpJ2KPay GstRtpJ2KPay
GstRtpJPEGPay GstRtpJPEGPay
GstRtpL16Pay
GstRTPMP2TPay GstRTPMP2TPay
GstRtpMP4VPay GstRtpMP4VPay
GstRtpMP4APay GstRtpMP4APay
@ -198,45 +204,43 @@ GObject
GstRtpVorbisPay GstRtpVorbisPay
GstRtpVRawPay GstRtpVRawPay
GstAsteriskh263 GstAsteriskh263
GstTagDemux GstGoom
GstID3Demux GstGoom2k1
GstApeDemux GstWavEnc
GstICYDemux
GstALawEnc
GstALawDec
GstMuLawEnc
GstMuLawDec
GstRtpJitterBuffer GstRtpJitterBuffer
GstRtpPtDemux GstRtpPtDemux
GstRtpSession GstRtpSession
GstRtpSsrcDemux GstRtpSsrcDemux
GstQTDemux
GstWavParse
GstCutter
GstMultipartDemux
GstMultipartMux
GstGoom
GstY4mEncode
GstSMPTE
GstRTPDec
GstDeinterlace
GstInterleave
GstDeinterleave
GstEFence
GstRndBufferSize GstRndBufferSize
GstVideoMixer GstEFence
GstAuParse GstCutter
GstMonoscope
GstFlxDec
GstEbmlRead GstEbmlRead
GstMatroskaDemux GstMatroskaDemux
GstMatroskaMux GstMatroskaMux
GstGoom2k1 GstRTPDec
GstQTDemux
GstSMPTE
GstAuParse
GstMultipartDemux
GstMultipartMux
GstALawEnc
GstALawDec
GstMuLawEnc
GstMuLawDec
GstTagDemux
GstApeDemux
GstID3Demux
GstFlxDec
GstDeinterlace
GstY4mEncode
GstInterleave
GstDeinterleave
GstWavParse
GstFLVDemux GstFLVDemux
GstFlvMux GstFlvMux
GstAviDemux GstMonoscope
GstAviMux GstICYDemux
GstAviSubtitle GstVideoMixer
GstBus GstBus
GstTask GstTask
GstTaskPool GstTaskPool
@ -246,8 +250,8 @@ GObject
GstPlugin GstPlugin
GstRegistry GstRegistry
GstRingBuffer GstRingBuffer
GstAudioSrcRingBuffer
GstAudioSinkRingBuffer GstAudioSinkRingBuffer
GstAudioSrcRingBuffer
GstSignalObject GstSignalObject
GstCmmlTagStream GstCmmlTagStream
GstCmmlTagHead GstCmmlTagHead
@ -263,12 +267,12 @@ GInterface
GTypePlugin GTypePlugin
GstChildProxy GstChildProxy
GstURIHandler GstURIHandler
GstPropertyProbe
GstPreset
GstTagSetter
GstStreamVolume GstStreamVolume
GstImplementsInterface GstImplementsInterface
GstPropertyProbe
GstMixer GstMixer
GstTagSetter
GstPreset
GstTuner GstTuner
GstColorBalance GstColorBalance
GstVideoOrientation GstVideoOrientation

View file

@ -1,48 +1,48 @@
GstBin GstChildProxy GstBin GstChildProxy
GstPipeline GstChildProxy GstPipeline GstChildProxy
GstHalAudioSink GstChildProxy
GstHalAudioSrc GstChildProxy
GstGConfVideoSink GstChildProxy GstGConfVideoSink GstChildProxy
GstGConfVideoSrc GstChildProxy GstGConfVideoSrc GstChildProxy
GstSwitchSink GstChildProxy GstSwitchSink GstChildProxy
GstGConfAudioSink GstChildProxy GstGConfAudioSink GstChildProxy
GstGConfAudioSrc GstChildProxy GstGConfAudioSrc GstChildProxy
GstHalAudioSink GstChildProxy
GstHalAudioSrc GstChildProxy
GstRtpBin GstChildProxy
GstAutoVideoSink GstChildProxy GstAutoVideoSink GstChildProxy
GstAutoVideoSrc GstChildProxy GstAutoVideoSrc GstChildProxy
GstAutoAudioSink GstChildProxy GstAutoAudioSink GstChildProxy
GstAutoAudioSrc GstChildProxy GstAutoAudioSrc GstChildProxy
GstPushFileSrc GstChildProxy GstURIHandler
GstRTSPSrc GstChildProxy GstURIHandler
GstRgVolume GstChildProxy GstRgVolume GstChildProxy
GstRtpBin GstChildProxy
GstRTSPSrc GstURIHandler GstChildProxy
GstPushFileSrc GstURIHandler GstChildProxy
GstAspectRatioCrop GstChildProxy GstAspectRatioCrop GstChildProxy
GstPulseSink GstStreamVolume GstImplementsInterface GstPropertyProbe GstPulseSink GstStreamVolume GstImplementsInterface GstPropertyProbe
GstV4l2Sink GstImplementsInterface GstColorBalance GstVideoOrientation GstPropertyProbe
GstShout2send GstTagSetter GstShout2send GstTagSetter
GstV4l2Sink GstImplementsInterface GstPropertyProbe GstColorBalance GstVideoOrientation
GstUDPSink GstURIHandler GstUDPSink GstURIHandler
GstPulseSrc GstImplementsInterface GstPropertyProbe GstMixer
GstOssSrc GstImplementsInterface GstMixer
GstSoupHTTPSrc GstURIHandler
GstDV1394Src GstURIHandler GstPropertyProbe GstDV1394Src GstURIHandler GstPropertyProbe
GstHDV1394Src GstURIHandler GstPropertyProbe GstHDV1394Src GstURIHandler GstPropertyProbe
GstV4l2Src GstImplementsInterface GstPropertyProbe GstTuner GstColorBalance GstVideoOrientation GstSoupHTTPSrc GstURIHandler
GstPulseSrc GstImplementsInterface GstMixer GstPropertyProbe
GstOssSrc GstImplementsInterface GstMixer
GstV4l2Src GstURIHandler GstImplementsInterface GstTuner GstColorBalance GstVideoOrientation GstPropertyProbe
GstUDPSrc GstURIHandler GstUDPSrc GstURIHandler
GstPulseMixer GstImplementsInterface GstPropertyProbe GstMixer GstWavpackEnc GstPreset
GstFlacEnc GstTagSetter GstPreset
GstFlacTag GstTagSetter
GstTagLibMux GstTagSetter GstTagLibMux GstTagSetter
GstId3v2Mux GstTagSetter GstId3v2Mux GstTagSetter
GstApev2Mux GstTagSetter GstApev2Mux GstTagSetter
GstFlacEnc GstTagSetter GstPreset
GstFlacTag GstTagSetter
GstVideoBalance GstImplementsInterface GstColorBalance GstVideoBalance GstImplementsInterface GstColorBalance
GstIirEqualizer GstChildProxy GstIirEqualizer GstChildProxy
GstIirEqualizerNBands GstChildProxy GstIirEqualizerNBands GstChildProxy
GstIirEqualizer3Bands GstChildProxy GstPreset GstIirEqualizer3Bands GstChildProxy GstPreset
GstIirEqualizer10Bands GstChildProxy GstPreset GstIirEqualizer10Bands GstChildProxy GstPreset
GstWavpackEnc GstPreset GstPulseMixer GstImplementsInterface GstMixer GstPropertyProbe
GstSpeexEnc GstTagSetter GstPreset GstSpeexEnc GstTagSetter GstPreset
GstOssMixerElement GstImplementsInterface GstMixer GstOssMixerElement GstImplementsInterface GstMixer
GstDeinterlace GstChildProxy
GstVideoMixer GstChildProxy
GstMatroskaMux GstTagSetter
GstFlvMux GstTagSetter
GstAviMux GstTagSetter GstAviMux GstTagSetter
GstMatroskaMux GstTagSetter
GstDeinterlace GstChildProxy
GstFlvMux GstTagSetter
GstVideoMixer GstChildProxy

View file

@ -1,8 +1,8 @@
GstChildProxy GstObject GstChildProxy GstObject
GstTagSetter GstObject GstElement
GstStreamVolume GObject GstStreamVolume GObject
GstImplementsInterface GstElement GstImplementsInterface GstObject GstElement
GstMixer GstImplementsInterface GstElement GstMixer GstObject GstImplementsInterface GstElement
GstTagSetter GstElement GstTuner GstObject GstImplementsInterface GstElement
GstTuner GstImplementsInterface GstElement GstColorBalance GstObject GstImplementsInterface GstElement
GstColorBalance GstImplementsInterface GstElement GstVideoOrientation GstObject GstImplementsInterface GstElement
GstVideoOrientation GstImplementsInterface GstElement

View file

@ -3,10 +3,10 @@
<description>Source for video data via IEEE1394 interface</description> <description>Source for video data via IEEE1394 interface</description>
<filename>../../ext/raw1394/.libs/libgst1394.so</filename> <filename>../../ext/raw1394/.libs/libgst1394.so</filename>
<basename>libgst1394.so</basename> <basename>libgst1394.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>ASCII Art video sink</description> <description>ASCII Art video sink</description>
<filename>../../ext/aalib/.libs/libgstaasink.so</filename> <filename>../../ext/aalib/.libs/libgstaasink.so</filename>
<basename>libgstaasink.so</basename> <basename>libgstaasink.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>ALaw audio conversion routines</description> <description>ALaw audio conversion routines</description>
<filename>../../gst/law/.libs/libgstalaw.so</filename> <filename>../../gst/law/.libs/libgstalaw.so</filename>
<basename>libgstalaw.so</basename> <basename>libgstalaw.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>adds an alpha channel to video - constant or via chroma-keying</description> <description>adds an alpha channel to video - constant or via chroma-keying</description>
<filename>../../gst/alpha/.libs/libgstalpha.so</filename> <filename>../../gst/alpha/.libs/libgstalpha.so</filename>
<basename>libgstalpha.so</basename> <basename>libgstalpha.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>RGBA to AYUV colorspace conversion preserving the alpha channel</description> <description>RGBA to AYUV colorspace conversion preserving the alpha channel</description>
<filename>../../gst/alpha/.libs/libgstalphacolor.so</filename> <filename>../../gst/alpha/.libs/libgstalphacolor.so</filename>
<basename>libgstalphacolor.so</basename> <basename>libgstalphacolor.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>annodex stream manipulation (info about annodex: http://www.annodex.net)</description> <description>annodex stream manipulation (info about annodex: http://www.annodex.net)</description>
<filename>../../ext/annodex/.libs/libgstannodex.so</filename> <filename>../../ext/annodex/.libs/libgstannodex.so</filename>
<basename>libgstannodex.so</basename> <basename>libgstannodex.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>APEv1/2 tag reader</description> <description>APEv1/2 tag reader</description>
<filename>../../gst/apetag/.libs/libgstapetag.so</filename> <filename>../../gst/apetag/.libs/libgstapetag.so</filename>
<basename>libgstapetag.so</basename> <basename>libgstapetag.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Audio effects plugin</description> <description>Audio effects plugin</description>
<filename>../../gst/audiofx/.libs/libgstaudiofx.so</filename> <filename>../../gst/audiofx/.libs/libgstaudiofx.so</filename>
<basename>libgstaudiofx.so</basename> <basename>libgstaudiofx.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>parses au streams</description> <description>parses au streams</description>
<filename>../../gst/auparse/.libs/libgstauparse.so</filename> <filename>../../gst/auparse/.libs/libgstauparse.so</filename>
<basename>libgstauparse.so</basename> <basename>libgstauparse.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Plugin contains auto-detection plugins for video/audio in- and outputs</description> <description>Plugin contains auto-detection plugins for video/audio in- and outputs</description>
<filename>../../gst/autodetect/.libs/libgstautodetect.so</filename> <filename>../../gst/autodetect/.libs/libgstautodetect.so</filename>
<basename>libgstautodetect.so</basename> <basename>libgstautodetect.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

File diff suppressed because one or more lines are too long

View file

@ -3,10 +3,10 @@
<description>Colored ASCII Art video sink</description> <description>Colored ASCII Art video sink</description>
<filename>../../ext/libcaca/.libs/libgstcacasink.so</filename> <filename>../../ext/libcaca/.libs/libgstcacasink.so</filename>
<basename>libgstcacasink.so</basename> <basename>libgstcacasink.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Cairo-based elements</description> <description>Cairo-based elements</description>
<filename>../../ext/cairo/.libs/libgstcairo.so</filename> <filename>../../ext/cairo/.libs/libgstcairo.so</filename>
<basename>libgstcairo.so</basename> <basename>libgstcairo.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Audio Cutter to split audio into non-silent bits</description> <description>Audio Cutter to split audio into non-silent bits</description>
<filename>../../gst/cutter/.libs/libgstcutter.so</filename> <filename>../../gst/cutter/.libs/libgstcutter.so</filename>
<basename>libgstcutter.so</basename> <basename>libgstcutter.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>elements for testing and debugging</description> <description>elements for testing and debugging</description>
<filename>../../gst/debugutils/.libs/libgstdebug.so</filename> <filename>../../gst/debugutils/.libs/libgstdebug.so</filename>
<basename>libgstdebug.so</basename> <basename>libgstdebug.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Deinterlacer</description> <description>Deinterlacer</description>
<filename>../../gst/deinterlace/.libs/libgstdeinterlace.so</filename> <filename>../../gst/deinterlace/.libs/libgstdeinterlace.so</filename>
<basename>libgstdeinterlace.so</basename> <basename>libgstdeinterlace.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>DV demuxer and decoder based on libdv (libdv.sf.net)</description> <description>DV demuxer and decoder based on libdv (libdv.sf.net)</description>
<filename>../../ext/dv/.libs/libgstdv.so</filename> <filename>../../ext/dv/.libs/libgstdv.so</filename>
<basename>libgstdv.so</basename> <basename>libgstdv.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>This element converts a stream of normal GStreamer buffers into a stream of buffers that are allocated in such a way that out-of-bounds access to data in the buffer is more likely to cause segmentation faults. This allocation method is very similar to the debugging tool "Electric Fence".</description> <description>This element converts a stream of normal GStreamer buffers into a stream of buffers that are allocated in such a way that out-of-bounds access to data in the buffer is more likely to cause segmentation faults. This allocation method is very similar to the debugging tool "Electric Fence".</description>
<filename>../../gst/debugutils/.libs/libgstefence.so</filename> <filename>../../gst/debugutils/.libs/libgstefence.so</filename>
<basename>libgstefence.so</basename> <basename>libgstefence.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>effect plugins from the effectv project</description> <description>effect plugins from the effectv project</description>
<filename>../../gst/effectv/.libs/libgsteffectv.so</filename> <filename>../../gst/effectv/.libs/libgsteffectv.so</filename>
<basename>libgsteffectv.so</basename> <basename>libgsteffectv.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>GStreamer audio equalizers</description> <description>GStreamer audio equalizers</description>
<filename>../../gst/equalizer/.libs/libgstequalizer.so</filename> <filename>../../gst/equalizer/.libs/libgstequalizer.so</filename>
<basename>libgstequalizer.so</basename> <basename>libgstequalizer.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>ESD Element Plugins</description> <description>ESD Element Plugins</description>
<filename>../../ext/esd/.libs/libgstesd.so</filename> <filename>../../ext/esd/.libs/libgstesd.so</filename>
<basename>libgstesd.so</basename> <basename>libgstesd.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>The FLAC Lossless compressor Codec</description> <description>The FLAC Lossless compressor Codec</description>
<filename>../../ext/flac/.libs/libgstflac.so</filename> <filename>../../ext/flac/.libs/libgstflac.so</filename>
<basename>libgstflac.so</basename> <basename>libgstflac.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>FLV muxing and demuxing plugin</description> <description>FLV muxing and demuxing plugin</description>
<filename>../../gst/flv/.libs/libgstflv.so</filename> <filename>../../gst/flv/.libs/libgstflv.so</filename>
<basename>libgstflv.so</basename> <basename>libgstflv.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>FLC/FLI/FLX video decoder</description> <description>FLC/FLI/FLX video decoder</description>
<filename>../../gst/flx/.libs/libgstflxdec.so</filename> <filename>../../gst/flx/.libs/libgstflxdec.so</filename>
<basename>libgstflxdec.so</basename> <basename>libgstflxdec.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Changes gamma on video images</description> <description>Changes gamma on video images</description>
<filename>../../gst/videofilter/.libs/libgstgamma.so</filename> <filename>../../gst/videofilter/.libs/libgstgamma.so</filename>
<basename>libgstgamma.so</basename> <basename>libgstgamma.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>elements wrapping the GStreamer/GConf audio/video output settings</description> <description>elements wrapping the GStreamer/GConf audio/video output settings</description>
<filename>../../ext/gconf/.libs/libgstgconfelements.so</filename> <filename>../../ext/gconf/.libs/libgstgconfelements.so</filename>
<basename>libgstgconfelements.so</basename> <basename>libgstgconfelements.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>GdkPixbuf-based image decoder, scaler and sink</description> <description>GdkPixbuf-based image decoder, scaler and sink</description>
<filename>../../ext/gdk_pixbuf/.libs/libgstgdkpixbuf.so</filename> <filename>../../ext/gdk_pixbuf/.libs/libgstgdkpixbuf.so</filename>
<basename>libgstgdkpixbuf.so</basename> <basename>libgstgdkpixbuf.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>GOOM visualization filter</description> <description>GOOM visualization filter</description>
<filename>../../gst/goom/.libs/libgstgoom.so</filename> <filename>../../gst/goom/.libs/libgstgoom.so</filename>
<basename>libgstgoom.so</basename> <basename>libgstgoom.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>GOOM 2k1 visualization filter</description> <description>GOOM 2k1 visualization filter</description>
<filename>../../gst/goom2k1/.libs/libgstgoom2k1.so</filename> <filename>../../gst/goom2k1/.libs/libgstgoom2k1.so</filename>
<basename>libgstgoom2k1.so</basename> <basename>libgstgoom2k1.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,17 +3,17 @@
<description>RTP session management plugin library</description> <description>RTP session management plugin library</description>
<filename>../../gst/rtpmanager/.libs/libgstrtpmanager.so</filename> <filename>../../gst/rtpmanager/.libs/libgstrtpmanager.so</filename>
<basename>libgstrtpmanager.so</basename> <basename>libgstrtpmanager.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>
<name>gstrtpbin</name> <name>gstrtpbin</name>
<longname>RTP Bin</longname> <longname>RTP Bin</longname>
<class>Filter/Network/RTP</class> <class>Filter/Network/RTP</class>
<description>Implement an RTP bin</description> <description>Real-Time Transport Protocol bin</description>
<author>Wim Taymans &lt;wim.taymans@gmail.com&gt;</author> <author>Wim Taymans &lt;wim.taymans@gmail.com&gt;</author>
<pads> <pads>
<caps> <caps>

View file

@ -3,10 +3,10 @@
<description>elements wrapping the GStreamer/HAL audio input/output devices</description> <description>elements wrapping the GStreamer/HAL audio input/output devices</description>
<filename>../../ext/hal/.libs/libgsthalelements.so</filename> <filename>../../ext/hal/.libs/libgsthalelements.so</filename>
<basename>libgsthalelements.so</basename> <basename>libgsthalelements.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Demux ICY tags from a stream</description> <description>Demux ICY tags from a stream</description>
<filename>../../gst/icydemux/.libs/libgsticydemux.so</filename> <filename>../../gst/icydemux/.libs/libgsticydemux.so</filename>
<basename>libgsticydemux.so</basename> <basename>libgsticydemux.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Demux ID3v1 and ID3v2 tags from a file</description> <description>Demux ID3v1 and ID3v2 tags from a file</description>
<filename>../../gst/id3demux/.libs/libgstid3demux.so</filename> <filename>../../gst/id3demux/.libs/libgstid3demux.so</filename>
<basename>libgstid3demux.so</basename> <basename>libgstid3demux.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Audio interleaver/deinterleaver</description> <description>Audio interleaver/deinterleaver</description>
<filename>../../gst/interleave/.libs/libgstinterleave.so</filename> <filename>../../gst/interleave/.libs/libgstinterleave.so</filename>
<basename>libgstinterleave.so</basename> <basename>libgstinterleave.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>JPeg plugin library</description> <description>JPeg plugin library</description>
<filename>../../ext/jpeg/.libs/libgstjpeg.so</filename> <filename>../../ext/jpeg/.libs/libgstjpeg.so</filename>
<basename>libgstjpeg.so</basename> <basename>libgstjpeg.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Audio level plugin</description> <description>Audio level plugin</description>
<filename>../../gst/level/.libs/libgstlevel.so</filename> <filename>../../gst/level/.libs/libgstlevel.so</filename>
<basename>libgstlevel.so</basename> <basename>libgstlevel.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Matroska stream handling</description> <description>Matroska stream handling</description>
<filename>../../gst/matroska/.libs/libgstmatroska.so</filename> <filename>../../gst/matroska/.libs/libgstmatroska.so</filename>
<basename>libgstmatroska.so</basename> <basename>libgstmatroska.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>
@ -65,7 +65,7 @@
<name>audio_%d</name> <name>audio_%d</name>
<direction>sink</direction> <direction>sink</direction>
<presence>request</presence> <presence>request</presence>
<details>audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/mpeg, mpegversion=(int){ 2, 4 }, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-ac3, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-vorbis, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-flac, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-speex, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)8, depth=(int)8, signed=(boolean)false, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)16, depth=(int)16, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)24, depth=(int)24, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)32, depth=(int)32, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-float, width=(int)[ 32, 64 ], endianness=(int)1234, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-tta, width=(int){ 8, 16, 24 }, channels=(int){ 1, 2 }, rate=(int)[ 8000, 96000 ]; audio/x-pn-realaudio, raversion=(int){ 1, 2, 8 }, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-wma, wmaversion=(int)[ 1, 3 ], block_align=(int)[ 0, 65535 ], bitrate=(int)[ 0, 524288 ], channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]</details> <details>audio/mpeg, mpegversion=(int)1, layer=(int)[ 1, 3 ], stream-format=(string){ raw }, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/mpeg, mpegversion=(int){ 2, 4 }, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-ac3, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-vorbis, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-flac, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-speex, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)8, depth=(int)8, signed=(boolean)false, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)16, depth=(int)16, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)24, depth=(int)24, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-int, width=(int)32, depth=(int)32, endianness=(int){ 4321, 1234 }, signed=(boolean)true, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-raw-float, width=(int)[ 32, 64 ], endianness=(int)1234, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-tta, width=(int){ 8, 16, 24 }, channels=(int){ 1, 2 }, rate=(int)[ 8000, 96000 ]; audio/x-pn-realaudio, raversion=(int){ 1, 2, 8 }, channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]; audio/x-wma, wmaversion=(int)[ 1, 3 ], block_align=(int)[ 0, 65535 ], bitrate=(int)[ 0, 524288 ], channels=(int)[ 1, 2147483647 ], rate=(int)[ 1, 2147483647 ]</details>
</caps> </caps>
<caps> <caps>
<name>video_%d</name> <name>video_%d</name>

View file

@ -3,10 +3,10 @@
<description>Monoscope visualization</description> <description>Monoscope visualization</description>
<filename>../../gst/monoscope/.libs/libgstmonoscope.so</filename> <filename>../../gst/monoscope/.libs/libgstmonoscope.so</filename>
<basename>libgstmonoscope.so</basename> <basename>libgstmonoscope.so</basename>
<version>0.10.17</version> <version>0.10.16.1</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins git/prerelease</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>MuLaw audio conversion routines</description> <description>MuLaw audio conversion routines</description>
<filename>../../gst/law/.libs/libgstmulaw.so</filename> <filename>../../gst/law/.libs/libgstmulaw.so</filename>
<basename>libgstmulaw.so</basename> <basename>libgstmulaw.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Reads/Writes buffers from/to sequentially named files</description> <description>Reads/Writes buffers from/to sequentially named files</description>
<filename>../../gst/multifile/.libs/libgstmultifile.so</filename> <filename>../../gst/multifile/.libs/libgstmultifile.so</filename>
<basename>libgstmultifile.so</basename> <basename>libgstmultifile.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>multipart stream manipulation</description> <description>multipart stream manipulation</description>
<filename>../../gst/multipart/.libs/libgstmultipart.so</filename> <filename>../../gst/multipart/.libs/libgstmultipart.so</filename>
<basename>libgstmultipart.so</basename> <basename>libgstmultipart.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Template for a video filter</description> <description>Template for a video filter</description>
<filename>../../gst/debugutils/.libs/libgstnavigationtest.so</filename> <filename>../../gst/debugutils/.libs/libgstnavigationtest.so</filename>
<basename>libgstnavigationtest.so</basename> <basename>libgstnavigationtest.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>OSS (Open Sound System) support for GStreamer</description> <description>OSS (Open Sound System) support for GStreamer</description>
<filename>../../sys/oss/.libs/libgstossaudio.so</filename> <filename>../../sys/oss/.libs/libgstossaudio.so</filename>
<basename>libgstossaudio.so</basename> <basename>libgstossaudio.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>PNG plugin library</description> <description>PNG plugin library</description>
<filename>../../ext/libpng/.libs/libgstpng.so</filename> <filename>../../ext/libpng/.libs/libgstpng.so</filename>
<basename>libgstpng.so</basename> <basename>libgstpng.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>PulseAudio plugin library</description> <description>PulseAudio plugin library</description>
<filename>../../ext/pulse/.libs/libgstpulse.so</filename> <filename>../../ext/pulse/.libs/libgstpulse.so</filename>
<basename>libgstpulse.so</basename> <basename>libgstpulse.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Quicktime support</description> <description>Quicktime support</description>
<filename>../../gst/qtdemux/.libs/libgstqtdemux.so</filename> <filename>../../gst/qtdemux/.libs/libgstqtdemux.so</filename>
<basename>libgstqtdemux.so</basename> <basename>libgstqtdemux.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>ReplayGain volume normalization</description> <description>ReplayGain volume normalization</description>
<filename>../../gst/replaygain/.libs/libgstreplaygain.so</filename> <filename>../../gst/replaygain/.libs/libgstreplaygain.so</filename>
<basename>libgstreplaygain.so</basename> <basename>libgstreplaygain.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Real-time protocol plugins</description> <description>Real-time protocol plugins</description>
<filename>../../gst/rtp/.libs/libgstrtp.so</filename> <filename>../../gst/rtp/.libs/libgstrtp.so</filename>
<basename>libgstrtp.so</basename> <basename>libgstrtp.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>
@ -135,6 +135,48 @@
</caps> </caps>
</pads> </pads>
</element> </element>
<element>
<name>rtpbvdepay</name>
<longname>RTP BroadcomVoice depayloader</longname>
<class>Codec/Depayloader/Network</class>
<description>Extracts BroadcomVoice audio from RTP packets (RFC 4298)</description>
<author>Wim Taymans &lt;wim.taymans@collabora.co.uk&gt;</author>
<pads>
<caps>
<name>sink</name>
<direction>sink</direction>
<presence>always</presence>
<details>application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)8000, encoding-name=(string)BV16; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)16000, encoding-name=(string)BV32</details>
</caps>
<caps>
<name>src</name>
<direction>source</direction>
<presence>always</presence>
<details>audio/x-bv, mode=(int){ 16, 32 }</details>
</caps>
</pads>
</element>
<element>
<name>rtpbvpay</name>
<longname>RTP BV Payloader</longname>
<class>Codec/Payloader/Network</class>
<description>Packetize BroadcomVoice audio streams into RTP packets (RFC 4298)</description>
<author>Wim Taymans &lt;wim.taymans@collabora.co.uk&gt;</author>
<pads>
<caps>
<name>src</name>
<direction>source</direction>
<presence>always</presence>
<details>application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)8000, encoding-name=(string)BV16; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)16000, encoding-name=(string)BV32</details>
</caps>
<caps>
<name>sink</name>
<direction>sink</direction>
<presence>always</presence>
<details>audio/x-bv, mode=(int){ 16, 32 }</details>
</caps>
</pads>
</element>
<element> <element>
<name>rtpceltdepay</name> <name>rtpceltdepay</name>
<longname>RTP CELT depayloader</longname> <longname>RTP CELT depayloader</longname>
@ -252,6 +294,48 @@
</caps> </caps>
</pads> </pads>
</element> </element>
<element>
<name>rtpg723depay</name>
<longname>RTP G.723 depayloader</longname>
<class>Codec/Depayloader/Network</class>
<description>Extracts G.723 audio from RTP packets (RFC 3551)</description>
<author>Wim Taymans &lt;wim.taymans@gmail.com&gt;</author>
<pads>
<caps>
<name>sink</name>
<direction>sink</direction>
<presence>always</presence>
<details>application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)8000, encoding-name=(string)G723; application/x-rtp, media=(string)audio, payload=(int)4, clock-rate=(int)8000</details>
</caps>
<caps>
<name>src</name>
<direction>source</direction>
<presence>always</presence>
<details>audio/G723, channels=(int)1, rate=(int)8000</details>
</caps>
</pads>
</element>
<element>
<name>rtpg723pay</name>
<longname>RTP G.723 payloader</longname>
<class>Codec/Payloader/Network</class>
<description>Packetize G.723 audio into RTP packets</description>
<author>Wim Taymans &lt;wim.taymans@gmail.com&gt;</author>
<pads>
<caps>
<name>src</name>
<direction>source</direction>
<presence>always</presence>
<details>application/x-rtp, media=(string)audio, payload=(int)4, clock-rate=(int)8000, encoding-name=(string)G723; application/x-rtp, media=(string)audio, payload=(int)[ 96, 127 ], clock-rate=(int)8000, encoding-name=(string)G723</details>
</caps>
<caps>
<name>sink</name>
<direction>sink</direction>
<presence>always</presence>
<details>audio/G723, channels=(int)1, rate=(int)8000</details>
</caps>
</pads>
</element>
<element> <element>
<name>rtpg726depay</name> <name>rtpg726depay</name>
<longname>RTP G.726 depayloader</longname> <longname>RTP G.726 depayloader</longname>
@ -711,7 +795,7 @@
<name>src</name> <name>src</name>
<direction>source</direction> <direction>source</direction>
<presence>always</presence> <presence>always</presence>
<details>audio/mpeg, mpegversion=(int)4, framed=(boolean)true</details> <details>audio/mpeg, mpegversion=(int)4, framed=(boolean)true, stream-format=(string)raw</details>
</caps> </caps>
</pads> </pads>
</element> </element>
@ -726,7 +810,7 @@
<name>sink</name> <name>sink</name>
<direction>sink</direction> <direction>sink</direction>
<presence>always</presence> <presence>always</presence>
<details>audio/mpeg, mpegversion=(int)4</details> <details>audio/mpeg, mpegversion=(int)4, stream-format=(string)raw</details>
</caps> </caps>
<caps> <caps>
<name>src</name> <name>src</name>
@ -753,7 +837,7 @@
<name>src</name> <name>src</name>
<direction>source</direction> <direction>source</direction>
<presence>always</presence> <presence>always</presence>
<details>video/mpeg, mpegversion=(int)4, systemstream=(boolean)false; audio/mpeg, mpegversion=(int)4</details> <details>video/mpeg, mpegversion=(int)4, systemstream=(boolean)false; audio/mpeg, mpegversion=(int)4, stream-format=(string)raw</details>
</caps> </caps>
</pads> </pads>
</element> </element>
@ -768,7 +852,7 @@
<name>sink</name> <name>sink</name>
<direction>sink</direction> <direction>sink</direction>
<presence>always</presence> <presence>always</presence>
<details>video/mpeg, mpegversion=(int)4, systemstream=(boolean)false; audio/mpeg, mpegversion=(int)4</details> <details>video/mpeg, mpegversion=(int)4, systemstream=(boolean)false; audio/mpeg, mpegversion=(int)4, stream-format=(string)raw</details>
</caps> </caps>
<caps> <caps>
<name>src</name> <name>src</name>

View file

@ -3,10 +3,10 @@
<description>transfer data via RTSP</description> <description>transfer data via RTSP</description>
<filename>../../gst/rtsp/.libs/libgstrtsp.so</filename> <filename>../../gst/rtsp/.libs/libgstrtsp.so</filename>
<basename>libgstrtsp.so</basename> <basename>libgstrtsp.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,7 +3,7 @@
<description>Sends data to an icecast server using libshout2</description> <description>Sends data to an icecast server using libshout2</description>
<filename>../../ext/shout2/.libs/libgstshout2.so</filename> <filename>../../ext/shout2/.libs/libgstshout2.so</filename>
<basename>libgstshout2.so</basename> <basename>libgstshout2.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>libshout2</package> <package>libshout2</package>

View file

@ -3,10 +3,10 @@
<description>Apply the standard SMPTE transitions on video images</description> <description>Apply the standard SMPTE transitions on video images</description>
<filename>../../gst/smpte/.libs/libgstsmpte.so</filename> <filename>../../gst/smpte/.libs/libgstsmpte.so</filename>
<basename>libgstsmpte.so</basename> <basename>libgstsmpte.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>libsoup HTTP client src</description> <description>libsoup HTTP client src</description>
<filename>../../ext/soup/.libs/libgstsouphttpsrc.so</filename> <filename>../../ext/soup/.libs/libgstsouphttpsrc.so</filename>
<basename>libgstsouphttpsrc.so</basename> <basename>libgstsouphttpsrc.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Run an FFT on the audio signal, output spectrum data</description> <description>Run an FFT on the audio signal, output spectrum data</description>
<filename>../../gst/spectrum/.libs/libgstspectrum.so</filename> <filename>../../gst/spectrum/.libs/libgstspectrum.so</filename>
<basename>libgstspectrum.so</basename> <basename>libgstspectrum.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Speex plugin library</description> <description>Speex plugin library</description>
<filename>../../ext/speex/.libs/libgstspeex.so</filename> <filename>../../ext/speex/.libs/libgstspeex.so</filename>
<basename>libgstspeex.so</basename> <basename>libgstspeex.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Tag writing plug-in based on taglib</description> <description>Tag writing plug-in based on taglib</description>
<filename>../../ext/taglib/.libs/libgsttaglib.so</filename> <filename>../../ext/taglib/.libs/libgsttaglib.so</filename>
<basename>libgsttaglib.so</basename> <basename>libgsttaglib.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>transfer data via UDP</description> <description>transfer data via UDP</description>
<filename>../../gst/udp/.libs/libgstudp.so</filename> <filename>../../gst/udp/.libs/libgstudp.so</filename>
<basename>libgstudp.so</basename> <basename>libgstudp.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>elements for Video 4 Linux</description> <description>elements for Video 4 Linux</description>
<filename>../../sys/v4l2/.libs/libgstvideo4linux2.so</filename> <filename>../../sys/v4l2/.libs/libgstvideo4linux2.so</filename>
<basename>libgstvideo4linux2.so</basename> <basename>libgstvideo4linux2.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Changes hue, saturation, brightness etc. on video images</description> <description>Changes hue, saturation, brightness etc. on video images</description>
<filename>../../gst/videofilter/.libs/libgstvideobalance.so</filename> <filename>../../gst/videofilter/.libs/libgstvideobalance.so</filename>
<basename>libgstvideobalance.so</basename> <basename>libgstvideobalance.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>resizes a video by adding borders or cropping</description> <description>resizes a video by adding borders or cropping</description>
<filename>../../gst/videobox/.libs/libgstvideobox.so</filename> <filename>../../gst/videobox/.libs/libgstvideobox.so</filename>
<basename>libgstvideobox.so</basename> <basename>libgstvideobox.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Crops video into a user-defined region</description> <description>Crops video into a user-defined region</description>
<filename>../../gst/videocrop/.libs/libgstvideocrop.so</filename> <filename>../../gst/videocrop/.libs/libgstvideocrop.so</filename>
<basename>libgstvideocrop.so</basename> <basename>libgstvideocrop.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Flips and rotates video</description> <description>Flips and rotates video</description>
<filename>../../gst/videofilter/.libs/libgstvideoflip.so</filename> <filename>../../gst/videofilter/.libs/libgstvideoflip.so</filename>
<basename>libgstvideoflip.so</basename> <basename>libgstvideoflip.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Video mixer</description> <description>Video mixer</description>
<filename>../../gst/videomixer/.libs/libgstvideomixer.so</filename> <filename>../../gst/videomixer/.libs/libgstvideomixer.so</filename>
<basename>libgstvideomixer.so</basename> <basename>libgstvideomixer.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Encode raw audio into WAV</description> <description>Encode raw audio into WAV</description>
<filename>../../gst/wavenc/.libs/libgstwavenc.so</filename> <filename>../../gst/wavenc/.libs/libgstwavenc.so</filename>
<basename>libgstwavenc.so</basename> <basename>libgstwavenc.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Wavpack lossless/lossy audio format handling</description> <description>Wavpack lossless/lossy audio format handling</description>
<filename>../../ext/wavpack/.libs/libgstwavpack.so</filename> <filename>../../ext/wavpack/.libs/libgstwavpack.so</filename>
<basename>libgstwavpack.so</basename> <basename>libgstwavpack.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Parse a .wav file into raw audio</description> <description>Parse a .wav file into raw audio</description>
<filename>../../gst/wavparse/.libs/libgstwavparse.so</filename> <filename>../../gst/wavparse/.libs/libgstwavparse.so</filename>
<basename>libgstwavparse.so</basename> <basename>libgstwavparse.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>X11 video input plugin using standard Xlib calls</description> <description>X11 video input plugin using standard Xlib calls</description>
<filename>../../sys/ximage/.libs/libgstximagesrc.so</filename> <filename>../../sys/ximage/.libs/libgstximagesrc.so</filename>
<basename>libgstximagesrc.so</basename> <basename>libgstximagesrc.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -3,10 +3,10 @@
<description>Encodes a YUV frame into the yuv4mpeg format (mjpegtools)</description> <description>Encodes a YUV frame into the yuv4mpeg format (mjpegtools)</description>
<filename>../../gst/y4m/.libs/libgsty4menc.so</filename> <filename>../../gst/y4m/.libs/libgsty4menc.so</filename>
<basename>libgsty4menc.so</basename> <basename>libgsty4menc.so</basename>
<version>0.10.17</version> <version>0.10.18</version>
<license>LGPL</license> <license>LGPL</license>
<source>gst-plugins-good</source> <source>gst-plugins-good</source>
<package>GStreamer Good Plug-ins prerelease</package> <package>GStreamer Good Plug-ins source release</package>
<origin>Unknown package origin</origin> <origin>Unknown package origin</origin>
<elements> <elements>
<element> <element>

View file

@ -33,6 +33,17 @@ the plug-in code, LGPL or LGPL-compatible for the supporting library).
</CVSRepository> </CVSRepository>
</repository> </repository>
<release>
<Version>
<revision>0.10.18</revision>
<branch>0.10</branch>
<name>Short Circuit</name>
<created>2010-02-10</created>
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.18.tar.bz2" />
<file-release rdf:resource="http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.18.tar.gz" />
</Version>
</release>
<release> <release>
<Version> <Version>
<revision>0.10.17</revision> <revision>0.10.17</revision>

View file

@ -40,7 +40,7 @@
#define GST_LICENSE "LGPL" #define GST_LICENSE "LGPL"
/* package name in plugins */ /* package name in plugins */
#define GST_PACKAGE_NAME "GStreamer Good Plug-ins prerelease" #define GST_PACKAGE_NAME "GStreamer Good Plug-ins source release"
/* package origin */ /* package origin */
#define GST_PACKAGE_ORIGIN "Unknown package origin" #define GST_PACKAGE_ORIGIN "Unknown package origin"
@ -359,7 +359,7 @@
#define PACKAGE_NAME "GStreamer Good Plug-ins" #define PACKAGE_NAME "GStreamer Good Plug-ins"
/* Define to the full name and version of this package. */ /* Define to the full name and version of this package. */
#define PACKAGE_STRING "GStreamer Good Plug-ins 0.10.17.3" #define PACKAGE_STRING "GStreamer Good Plug-ins 0.10.18"
/* Define to the one symbol short name of this package. */ /* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "gst-plugins-good" #define PACKAGE_TARNAME "gst-plugins-good"
@ -368,7 +368,7 @@
#undef PACKAGE_URL #undef PACKAGE_URL
/* Define to the version of this package. */ /* Define to the version of this package. */
#define PACKAGE_VERSION "0.10.17.3" #define PACKAGE_VERSION "0.10.18"
/* directory where plugins are located */ /* directory where plugins are located */
#ifdef _DEBUG #ifdef _DEBUG
@ -399,7 +399,7 @@
#undef STDC_HEADERS #undef STDC_HEADERS
/* Version number of package */ /* Version number of package */
#define VERSION "0.10.17.3" #define VERSION "0.10.18"
/* old wavpack API */ /* old wavpack API */
#undef WAVPACK_OLD_API #undef WAVPACK_OLD_API