mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
Bump version after release
This commit is contained in:
parent
02f5d72a05
commit
73dfd99c95
25 changed files with 120 additions and 87 deletions
34
NEWS
34
NEWS
|
@ -1,4 +1,36 @@
|
|||
This is GStreamer Ugly Plug-ins 0.10.18 "Extra Life"
|
||||
This is GStreamer Ugly Plug-ins 0.10.19 "Stronger"
|
||||
|
||||
Changes since 0.10.18:
|
||||
|
||||
* a52dec: don't claim to support upstream renegotiation
|
||||
* dvddemux: tweak subtitle stream setup based on dvd language codes event
|
||||
* dvdreadsrc: fix off by one in cell calculation for the last chapter
|
||||
* dvdreadsrc: fix sector search for packed titles; fix sector seeking
|
||||
* dvdreadsrc: map subtitle language tag to stream indicated in PGC data
|
||||
* dvdreadsrc: take into account first sector of the current title
|
||||
* lame, lamemp3enc: ensure parsed output (most muxers need framed mp3 as input)
|
||||
* lame, lamemp3enc: post CODEC and BITRATE tags
|
||||
* mad: remove id3tag dependency used by in practice unreachable legacy code
|
||||
* mpeg2dec: don't treat non-fatal errors as fatal and fix spurious failure to decode some files
|
||||
* mpeg2dec: post QoS messages when dropping a frame due to QoS
|
||||
* rtpasfdepay: avoid re-sending header; fix fragmented packet handling and packet padding
|
||||
* twolame: improve output framing and timestamping
|
||||
* x264enc: allow renegotiation but prefer current caps
|
||||
* x264enc: negotiate profile, level and output stream-format from downstream caps where appropriate
|
||||
|
||||
Bugs fixed since 0.10.18:
|
||||
|
||||
* 644233 : Set the H.264 level from the caps for encoding
|
||||
* 391543 : lame should add a tag with the chosen bitrate
|
||||
* 429476 : [mpeg2dec] can't play auge.mpg
|
||||
* 653473 : x264enc: " subme " property value can go up to 10
|
||||
* 655223 : [x264enc] properly handle stream-format from caps
|
||||
* 658297 : rmdemux: tags get lost when transcoding
|
||||
* 659252 : dvdreadsrc: various fixes for titles not starting on a new file
|
||||
* 660562 : mpeg2dec: post QoS messages when dropping a frame due to QoS
|
||||
* 662964 : asfdemux memleak
|
||||
* 664175 : x264enc ! avimux results in not-negotiated flow error
|
||||
* 665101 : Wrong format string in gst_dvd_read_src_do_seek
|
||||
|
||||
Changes since 0.10.17:
|
||||
|
||||
|
|
65
RELEASE
65
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
Release notes for GStreamer Ugly Plug-ins 0.10.18 "Extra Life"
|
||||
Release notes for GStreamer Ugly Plug-ins 0.10.19 "Stronger"
|
||||
|
||||
|
||||
The GStreamer team is proud to announce a new release
|
||||
|
@ -55,34 +55,35 @@ contains a set of less supported plug-ins that haven't passed the
|
|||
|
||||
Features of this release
|
||||
|
||||
* amrwbdec: avoid stalling on invalid frame
|
||||
* asfpacket: don't rely on data from duration extension
|
||||
* dvdsubdec: Implement clipping if the video size is smaller than the subpicture size
|
||||
* dvdsubdec: Output only a single buffer per subpicture and set the correct duration
|
||||
* lamemp3enc: implement sinkpad get_caps() function to proxy rate and channels restrictions from downstream
|
||||
* mad: build the mad plugin even if libid3tag is not available
|
||||
* mpeg2dec: do not fail fatally when downstream is unlinked (let upstream handle that)
|
||||
* mpeg2dec: don't deadlock when setting an index
|
||||
* mpegstream: increase allowable gap between streams
|
||||
* x264enc: allow changing the bitrate and quantitizers dynamically
|
||||
* x264enc: don't register flags with a value of 0
|
||||
* x264enc: implement getcaps function to proxy downstream caps restrictions upstream
|
||||
* x264enc: make tag event writable before modifying tag list in place
|
||||
* x264enc: set max bitrate in quality mode
|
||||
* a52dec: don't claim to support upstream renegotiation
|
||||
* dvddemux: tweak subtitle stream setup based on dvd language codes event
|
||||
* dvdreadsrc: fix off by one in cell calculation for the last chapter
|
||||
* dvdreadsrc: fix sector search for packed titles; fix sector seeking
|
||||
* dvdreadsrc: map subtitle language tag to stream indicated in PGC data
|
||||
* dvdreadsrc: take into account first sector of the current title
|
||||
* lame, lamemp3enc: ensure parsed output (most muxers need framed mp3 as input)
|
||||
* lame, lamemp3enc: post CODEC and BITRATE tags
|
||||
* mad: remove id3tag dependency used by in practice unreachable legacy code
|
||||
* mpeg2dec: don't treat non-fatal errors as fatal and fix spurious failure to decode some files
|
||||
* mpeg2dec: post QoS messages when dropping a frame due to QoS
|
||||
* rtpasfdepay: avoid re-sending header; fix fragmented packet handling and packet padding
|
||||
* twolame: improve output framing and timestamping
|
||||
* x264enc: allow renegotiation but prefer current caps
|
||||
* x264enc: negotiate profile, level and output stream-format from downstream caps where appropriate
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 539708 : [mpegstream] Increase allowable gap between streams
|
||||
* 607698 : asfdemux: fix parsing of packets with padding
|
||||
* 619136 : [dvdsubdec] spits out buffers at video framerate
|
||||
* 621663 : x264enc: support changing bitrate property on the fly
|
||||
* 639291 : [xingmux] Return NULL instead of 0 for a function returning gboolean
|
||||
* 639715 : amrparse: seek error with EOS
|
||||
* 640272 : x264enc: make tag event writable before modifying tag list in place
|
||||
* 641151 : lame: doesn't negotiate sample rate properly
|
||||
* 642360 : x264enc: Don't register flags which have 0 as a value
|
||||
* 644704 : [dvdsubedc] no SPU clipping implemented
|
||||
* 647709 : mpeg2dec: errors out on not-linked flow return
|
||||
* 644233 : Set the H.264 level from the caps for encoding
|
||||
* 391543 : lame should add a tag with the chosen bitrate
|
||||
* 429476 : [mpeg2dec] can't play auge.mpg
|
||||
* 653473 : x264enc: " subme " property value can go up to 10
|
||||
* 655223 : [x264enc] properly handle stream-format from caps
|
||||
* 658297 : rmdemux: tags get lost when transcoding
|
||||
* 659252 : dvdreadsrc: various fixes for titles not starting on a new file
|
||||
* 660562 : mpeg2dec: post QoS messages when dropping a frame due to QoS
|
||||
* 662964 : asfdemux memleak
|
||||
* 664175 : x264enc ! avimux results in not-negotiated flow error
|
||||
* 665101 : Wrong format string in gst_dvd_read_src_do_seek
|
||||
|
||||
Download
|
||||
|
||||
|
@ -111,17 +112,17 @@ Applications
|
|||
|
||||
Contributors to this release
|
||||
|
||||
* Brendan Le Foll
|
||||
* Brian Gitonga Marete
|
||||
* David Schleef
|
||||
* Edward Hervey
|
||||
* Luis de Bethencourt
|
||||
* Julien Isorce
|
||||
* Mark Nauwelaerts
|
||||
* Miguel Angel Cabrera Moya
|
||||
* Olivier Crête
|
||||
* Sebastian Dröge
|
||||
* Sjoerd Simons
|
||||
* Stefan Kost
|
||||
* Thibault Saunier
|
||||
* Stefan Sauer
|
||||
* Thiago Santos
|
||||
* Tim-Philipp Müller
|
||||
* Vincent Penquerc'h
|
||||
* Yang Xichuan
|
||||
* Руслан Ижбулатов
|
||||
|
|
@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
|
|||
dnl initialize autoconf
|
||||
dnl releases only do -Wall, cvs and prerelease does -Werror too
|
||||
dnl use a three digit version number for releases, and four for cvs/prerelease
|
||||
AC_INIT(GStreamer Ugly Plug-ins, 0.10.18.1,
|
||||
AC_INIT(GStreamer Ugly Plug-ins, 0.10.19.1,
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer,
|
||||
gst-plugins-ugly)
|
||||
|
||||
|
@ -52,8 +52,8 @@ AC_LIBTOOL_WIN32_DLL
|
|||
AM_PROG_LIBTOOL
|
||||
|
||||
dnl *** required versions of GStreamer stuff ***
|
||||
GST_REQ=0.10.26
|
||||
GSTPB_REQ=0.10.26
|
||||
GST_REQ=0.10.36
|
||||
GSTPB_REQ=0.10.36
|
||||
|
||||
dnl *** autotools stuff ****
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<ARG>
|
||||
<NAME>GstMPEGParse::max-scr-gap</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= -1</RANGE>
|
||||
<RANGE>>= G_MAXULONG</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Max SCR gap</NICK>
|
||||
<BLURB>Maximum allowed gap between expected and actual SCR values. -1 means never adjust.</BLURB>
|
||||
|
@ -81,7 +81,7 @@
|
|||
<ARG>
|
||||
<NAME>GstCdioCddaSrc::read-speed</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>[-1,100]</RANGE>
|
||||
<RANGE>[G_MAXULONG,100]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Read speed</NICK>
|
||||
<BLURB>Read from device at the specified speed (-1 = default).</BLURB>
|
||||
|
@ -291,7 +291,7 @@
|
|||
<ARG>
|
||||
<NAME>GstLame::highpass-width</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= -1</RANGE>
|
||||
<RANGE>>= G_MAXULONG</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Highpass width</NICK>
|
||||
<BLURB>frequency(kHz) - default 15% of highpass freq.</BLURB>
|
||||
|
@ -311,7 +311,7 @@
|
|||
<ARG>
|
||||
<NAME>GstLame::lowpass-width</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= -1</RANGE>
|
||||
<RANGE>>= G_MAXULONG</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Lowpass width</NICK>
|
||||
<BLURB>frequency(kHz) - default 15% of lowpass freq.</BLURB>
|
||||
|
@ -472,7 +472,7 @@
|
|||
<NAME>GstLameMP3Enc::bitrate</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>[8,320]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>Bitrate (kb/s)</NICK>
|
||||
<BLURB>Bitrate in kbit/sec (Only valid if target is bitrate, for CBR one of 8, 16, 24, 32, 40, 48, 56, 64, 80, 96, 112, 128, 160, 192, 224, 256 or 320).</BLURB>
|
||||
<DEFAULT>128</DEFAULT>
|
||||
|
@ -482,7 +482,7 @@
|
|||
<NAME>GstLameMP3Enc::cbr</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>CBR</NICK>
|
||||
<BLURB>Enforce constant bitrate encoding (Only valid if target is bitrate).</BLURB>
|
||||
<DEFAULT>FALSE</DEFAULT>
|
||||
|
@ -492,7 +492,7 @@
|
|||
<NAME>GstLameMP3Enc::encoding-engine-quality</NAME>
|
||||
<TYPE>GstLameMP3EncEncodingEngineQuality</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>Encoding Engine Quality</NICK>
|
||||
<BLURB>Quality/speed of the encoding engine, this does not affect the bitrate!.</BLURB>
|
||||
<DEFAULT>Standard</DEFAULT>
|
||||
|
@ -502,7 +502,7 @@
|
|||
<NAME>GstLameMP3Enc::mono</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>Mono</NICK>
|
||||
<BLURB>Enforce mono encoding.</BLURB>
|
||||
<DEFAULT>FALSE</DEFAULT>
|
||||
|
@ -512,7 +512,7 @@
|
|||
<NAME>GstLameMP3Enc::quality</NAME>
|
||||
<TYPE>gfloat</TYPE>
|
||||
<RANGE>[0,9.999]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>Quality</NICK>
|
||||
<BLURB>VBR Quality from 0 to 10, 0 being the best (Only valid if target is quality).</BLURB>
|
||||
<DEFAULT>4</DEFAULT>
|
||||
|
@ -522,7 +522,7 @@
|
|||
<NAME>GstLameMP3Enc::target</NAME>
|
||||
<TYPE>GstLameMP3EncTarget</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<FLAGS>rwx</FLAGS>
|
||||
<NICK>Target</NICK>
|
||||
<BLURB>Optimize for quality or bitrate.</BLURB>
|
||||
<DEFAULT>Quality</DEFAULT>
|
||||
|
@ -711,7 +711,7 @@
|
|||
<ARG>
|
||||
<NAME>GstTwoLame::psymodel</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>[-1,4]</RANGE>
|
||||
<RANGE>[G_MAXULONG,4]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Psychoacoustic Model</NICK>
|
||||
<BLURB>Psychoacoustic model used to encode the audio.</BLURB>
|
||||
|
@ -881,7 +881,7 @@
|
|||
<ARG>
|
||||
<NAME>GstX264Enc::key-int-max</NAME>
|
||||
<TYPE>guint</TYPE>
|
||||
<RANGE><= G_MAXLONG</RANGE>
|
||||
<RANGE><= G_MAXINT</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Key-frame maximal interval</NICK>
|
||||
<BLURB>Maximal distance between two key-frames (0 for automatic).</BLURB>
|
||||
|
@ -1011,10 +1011,10 @@
|
|||
<ARG>
|
||||
<NAME>GstX264Enc::subme</NAME>
|
||||
<TYPE>guint</TYPE>
|
||||
<RANGE>[1,6]</RANGE>
|
||||
<RANGE>[1,10]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Subpixel Motion Estimation</NICK>
|
||||
<BLURB>Subpixel motion estimation and partition decision quality: 1=fast, 6=best.</BLURB>
|
||||
<BLURB>Subpixel motion estimation and partition decision quality: 1=fast, 10=best.</BLURB>
|
||||
<DEFAULT>1</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
@ -1101,7 +1101,7 @@
|
|||
<ARG>
|
||||
<NAME>GstX264Enc::sync-lookahead</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>[-1,250]</RANGE>
|
||||
<RANGE>[G_MAXULONG,250]</RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>Sync Lookahead</NICK>
|
||||
<BLURB>Number of buffer frames for threaded lookahead (-1 for automatic).</BLURB>
|
||||
|
@ -1124,7 +1124,7 @@
|
|||
<RANGE></RANGE>
|
||||
<FLAGS>rw</FLAGS>
|
||||
<NICK>H.264 profile</NICK>
|
||||
<BLURB>Apply restrictions to meet H.264 Profile constraints. This will override other properties if necessary.</BLURB>
|
||||
<BLURB>Apply restrictions to meet H.264 Profile constraints. This will override other properties if necessary. This will only be used if downstream elements do not specify a profile in their caps (DEPRECATED).</BLURB>
|
||||
<DEFAULT>main</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
|
|
@ -4,11 +4,17 @@ GObject
|
|||
GstClock
|
||||
GstElement
|
||||
AC3IEC
|
||||
GstA52Dec
|
||||
GstASFDemux
|
||||
GstAmrnbDec
|
||||
GstAmrnbEnc
|
||||
GstAmrwbDec
|
||||
GstAudioDecoder
|
||||
GstA52Dec
|
||||
GstAmrnbDec
|
||||
GstAmrwbDec
|
||||
GstMad
|
||||
GstAudioEncoder
|
||||
GstAmrnbEnc
|
||||
GstLame
|
||||
GstLameMP3Enc
|
||||
GstTwoLame
|
||||
GstBaseRTPDepayload
|
||||
GstRtpAsfDepay
|
||||
GstBaseSrc
|
||||
|
@ -22,13 +28,10 @@ GObject
|
|||
GstDvdLpcmDec
|
||||
GstDvdSubDec
|
||||
GstDvdSubParse
|
||||
GstLame
|
||||
GstLameMP3Enc
|
||||
GstMPEGAudioParse
|
||||
GstMPEGParse
|
||||
GstMPEGDemux
|
||||
GstDVDDemux
|
||||
GstMad
|
||||
GstMpeg2dec
|
||||
GstRDTDepay
|
||||
GstRDTManager
|
||||
|
@ -37,8 +40,6 @@ GObject
|
|||
GstRTSPWMS
|
||||
GstRealAudioDemux
|
||||
GstSidDec
|
||||
GstSynaesthesia
|
||||
GstTwoLame
|
||||
GstX264Enc
|
||||
GstXingMux
|
||||
GstPad
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
GstAmrnbEnc GstPreset
|
||||
GstAudioEncoder GstPreset
|
||||
GstBin GstChildProxy
|
||||
GstCddaBaseSrc GstURIHandler
|
||||
GstCdioCddaSrc GstURIHandler
|
||||
GstDvdReadSrc GstURIHandler
|
||||
GstLame GstPreset GstTagSetter
|
||||
GstLame GstTagSetter GstPreset
|
||||
GstLameMP3Enc GstPreset
|
||||
GstPNMSrc GstURIHandler
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Decodes ATSC A/52 encoded audio streams</description>
|
||||
<filename>../../ext/a52dec/.libs/libgsta52dec.so</filename>
|
||||
<basename>libgsta52dec.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adaptive Multi-Rate Narrow-Band</description>
|
||||
<filename>../../ext/amrnb/.libs/libgstamrnb.so</filename>
|
||||
<basename>libgstamrnb.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Adaptive Multi-Rate Wide-Band Decoder</description>
|
||||
<filename>../../ext/amrwbdec/.libs/libgstamrwbdec.so</filename>
|
||||
<basename>libgstamrwbdec.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>unknown</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Demuxes and muxes audio and video in Microsofts ASF format</description>
|
||||
<filename>../../gst/asfdemux/.libs/libgstasf.so</filename>
|
||||
<basename>libgstasf.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Read audio from audio CDs</description>
|
||||
<filename>../../ext/cdio/.libs/libgstcdio.so</filename>
|
||||
<basename>libgstcdio.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Decode DVD LPCM frames into standard PCM</description>
|
||||
<filename>../../gst/dvdlpcmdec/.libs/libgstdvdlpcmdec.so</filename>
|
||||
<basename>libgstdvdlpcmdec.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Access a DVD with dvdread</description>
|
||||
<filename>../../ext/dvdread/.libs/libgstdvdread.so</filename>
|
||||
<basename>libgstdvdread.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>DVD subtitle parser and decoder</description>
|
||||
<filename>../../gst/dvdsub/.libs/libgstdvdsub.so</filename>
|
||||
<basename>libgstdvdsub.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Convert raw AC3 into IEC958 (S/PDIF) frames</description>
|
||||
<filename>../../gst/iec958/.libs/libgstiec958.so</filename>
|
||||
<basename>libgstiec958.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Encode MP3s with LAME</description>
|
||||
<filename>../../ext/lame/.libs/libgstlame.so</filename>
|
||||
<basename>libgstlame.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>mp3 decoding based on the mad library</description>
|
||||
<filename>../../ext/mad/.libs/libgstmad.so</filename>
|
||||
<basename>libgstmad.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>LibMpeg2 decoder</description>
|
||||
<filename>../../ext/mpeg2dec/.libs/libgstmpeg2dec.so</filename>
|
||||
<basename>libgstmpeg2dec.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>MPEG-1 layer 1/2/3 audio stream elements</description>
|
||||
<filename>../../gst/mpegaudioparse/.libs/libgstmpegaudioparse.so</filename>
|
||||
<basename>libgstmpegaudioparse.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>MPEG system stream parser</description>
|
||||
<filename>../../gst/mpegstream/.libs/libgstmpegstream.so</filename>
|
||||
<basename>libgstmpegstream.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>RealMedia support plugins</description>
|
||||
<filename>../../gst/realmedia/.libs/libgstrmdemux.so</filename>
|
||||
<basename>libgstrmdemux.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Uses libsidplay to decode .sid files</description>
|
||||
<filename>../../ext/sidplay/.libs/libgstsid.so</filename>
|
||||
<basename>libgstsid.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>Encode MP2s with TwoLAME</description>
|
||||
<filename>../../ext/twolame/.libs/libgsttwolame.so</filename>
|
||||
<basename>libgsttwolame.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>libx264-based H264 plugins</description>
|
||||
<filename>../../ext/x264/.libs/libgstx264.so</filename>
|
||||
<basename>libgstx264.so</basename>
|
||||
<version>0.10.18.1</version>
|
||||
<version>0.10.19.1</version>
|
||||
<license>GPL</license>
|
||||
<source>gst-plugins-ugly</source>
|
||||
<package>GStreamer Ugly Plug-ins git</package>
|
||||
|
@ -26,7 +26,7 @@
|
|||
<name>src</name>
|
||||
<direction>source</direction>
|
||||
<presence>always</presence>
|
||||
<details>video/x-h264, framerate=(fraction)[ 0/1, 2147483647/1 ], width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], stream-format=(string){ byte-stream, avc }, alignment=(string){ au }</details>
|
||||
<details>video/x-h264, framerate=(fraction)[ 0/1, 2147483647/1 ], width=(int)[ 1, 2147483647 ], height=(int)[ 1, 2147483647 ], stream-format=(string){ byte-stream, avc }, alignment=(string){ au }, profile=(string){ high-10, high, main, baseline, constrained-baseline, high-10-intra }</details>
|
||||
</caps>
|
||||
</pads>
|
||||
</element>
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
#define GST_PACKAGE_ORIGIN "Unknown package origin"
|
||||
|
||||
/* GStreamer package release date/time for plugins as YYYY-MM-DD */
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2011-05-14T09:08Z"
|
||||
#define GST_PACKAGE_RELEASE_DATETIME "2012-02-23T11:17Z"
|
||||
|
||||
/* Define to enable a52dec (used by a52dec). */
|
||||
#undef HAVE_A52DEC
|
||||
|
@ -147,9 +147,6 @@
|
|||
/* Define if you have the iconv() function and it works. */
|
||||
#undef HAVE_ICONV
|
||||
|
||||
/* defined if libid3tag is available */
|
||||
#undef HAVE_ID3TAG
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
|
@ -236,7 +233,7 @@
|
|||
#define PACKAGE_NAME "GStreamer Ugly Plug-ins"
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#define PACKAGE_STRING "GStreamer Ugly Plug-ins 0.10.18.1"
|
||||
#define PACKAGE_STRING "GStreamer Ugly Plug-ins 0.10.19.1"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "gst-plugins-ugly"
|
||||
|
@ -245,7 +242,7 @@
|
|||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#define PACKAGE_VERSION "0.10.18.1"
|
||||
#define PACKAGE_VERSION "0.10.19.1"
|
||||
|
||||
/* directory where plugins are located */
|
||||
#ifdef _DEBUG
|
||||
|
@ -273,7 +270,7 @@
|
|||
#undef STDC_HEADERS
|
||||
|
||||
/* Version number of package */
|
||||
#define VERSION "0.10.18.1"
|
||||
#define VERSION "0.10.19.1"
|
||||
|
||||
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
||||
significant byte first (like Motorola and SPARC, unlike Intel). */
|
||||
|
|
Loading…
Reference in a new issue