mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
releasing 0.9.7
Original commit message from CVS: releasing 0.9.7
This commit is contained in:
parent
d4413c4277
commit
2c56e69b5a
30 changed files with 201 additions and 77 deletions
|
@ -1,3 +1,10 @@
|
|||
=== release 0.9.7 ===
|
||||
|
||||
2005-12-01 <thomas (at) apestaart (dot) org>
|
||||
|
||||
* configure.ac:
|
||||
releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
|
||||
|
||||
2005-12-01 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* Makefile.am:
|
||||
|
|
19
NEWS
19
NEWS
|
@ -1,4 +1,21 @@
|
|||
This is GStreamer Base Plug-ins 0.9.6, "White Eight".
|
||||
This is GStreamer Base Plug-ins 0.9.7, "Mi Perro No Tiene Ninguna Nariz".
|
||||
|
||||
Changes since 0.9.6:
|
||||
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* ximagesink and xvimagesink updates and interactive test
|
||||
* added pango
|
||||
* rename net to netbuffer library
|
||||
* rtp element renaming
|
||||
* stream selector fixes
|
||||
|
||||
Bugs fixed since 0.9.6:
|
||||
|
||||
* 319618 : [decodebin] some ogg videos don't play
|
||||
* 320644 : RTP packetizer does't set the packet timestamps correctly
|
||||
* 322388 : xvimagesink force-aspect-ratio=True always displays squar...
|
||||
* 322704 : oggdemux typefind list leak
|
||||
|
||||
Changes since 0.9.5:
|
||||
|
||||
|
|
30
RELEASE
30
RELEASE
|
@ -1,5 +1,5 @@
|
|||
|
||||
GStreamer: Release notes for GStreamer Base Plug-ins 0.9.6 "White Eight"
|
||||
GStreamer: Release notes for GStreamer Base Plug-ins 0.9.7 "Mi Perro No Tiene Ninguna Nariz"
|
||||
|
||||
|
||||
The GStreamer team is petrified to announce a new release
|
||||
|
@ -53,23 +53,18 @@ Features of this release
|
|||
|
||||
* Parallel installability with 0.8.x series
|
||||
* Threadsafe design and API
|
||||
* lots of leak fixes
|
||||
* flicker-free and rewritten X sinks
|
||||
* fractional framerates
|
||||
* removed sinesrc, replaced by audiotestsrc
|
||||
* ximagesink and xvimagesink updates and interactive test
|
||||
* added pango
|
||||
* rename net to netbuffer library
|
||||
* rtp element renaming
|
||||
* stream selector fixes
|
||||
|
||||
Bugs fixed in this release
|
||||
|
||||
* 316442 : playbin should use autoaudiosink/autovideosink by default
|
||||
* 318353 : [ffmpegcolorspace] forward-port fixes from 0.8 branch
|
||||
* 320200 : vorbisenc: min-bitrate and max-bitrate are 1/1000 bps rat...
|
||||
* 321164 : gstringbuffer stops working under load
|
||||
* 321426 : ximage plugin should be renamed to ximagesink
|
||||
* 321446 : sinesrc should be dropped in favour of audiotestsrc
|
||||
* 321451 : GstRtpBuffer: no way to create a sub buffer with only the...
|
||||
* 321816 : [API] xoverlay API to post prepare-xwindow-id message
|
||||
* 321894 : vorbisenc doesn't compile
|
||||
* 322117 : Rename libgsttagedit to libgsttag
|
||||
* 319618 : [decodebin] some ogg videos don't play
|
||||
* 320644 : RTP packetizer does't set the packet timestamps correctly
|
||||
* 322388 : xvimagesink force-aspect-ratio=True always displays squar...
|
||||
* 322704 : oggdemux typefind list leak
|
||||
|
||||
Download
|
||||
|
||||
|
@ -99,16 +94,11 @@ Applications
|
|||
|
||||
Contributors to this release
|
||||
|
||||
*
|
||||
* Alessandro Dessina
|
||||
* Andy Wingo
|
||||
* Edward Hervey
|
||||
* Jan Schmidt
|
||||
* Johan Dahlin
|
||||
* Julien Moutte
|
||||
* Luca Ocgibene
|
||||
* Michael Smith
|
||||
* Sebastien Cote
|
||||
* Thomas Vander Stichele
|
||||
* Tim-Philipp Müller
|
||||
* Wim Taymans
|
||||
|
|
|
@ -6,7 +6,7 @@ AC_INIT
|
|||
|
||||
dnl when going to/from release please set the nano (fourth number) right !
|
||||
dnl releases only do Wall, cvs and prerelease does Werror too
|
||||
AS_VERSION(gst-plugins-base, GST_PLUGINS_BASE_VERSION, 0, 9, 6, 1,
|
||||
AS_VERSION(gst-plugins-base, GST_PLUGINS_BASE_VERSION, 0, 9, 7, 0,
|
||||
GST_CVS="no", GST_CVS="yes")
|
||||
|
||||
dnl can autoconf find the source ?
|
||||
|
@ -29,7 +29,7 @@ AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
|
|||
dnl our libraries and install dirs use major.minor as a version
|
||||
GST_MAJORMINOR=$GST_PLUGINS_BASE_VERSION_MAJOR.$GST_PLUGINS_BASE_VERSION_MINOR
|
||||
dnl we override it here if we need to for the release candidate of new series
|
||||
# GST_MAJORMINOR=0.9
|
||||
GST_MAJORMINOR=0.10
|
||||
AC_SUBST(GST_MAJORMINOR)
|
||||
|
||||
dnl CURRENT, REVISION, AGE
|
||||
|
@ -38,7 +38,7 @@ dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
|
|||
dnl - interfaces added -> increment AGE
|
||||
dnl - interfaces removed -> AGE = 0
|
||||
dnl sets GST_LT_LDFLAGS
|
||||
AS_LIBTOOL(GST, 3, 0, 0)
|
||||
AS_LIBTOOL(GST, 0, 0, 0)
|
||||
AS_LIBTOOL_TAGS
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
|
@ -207,7 +207,7 @@ fi
|
|||
|
||||
dnl checks for gstreamer
|
||||
dnl uninstalled is selected preferentially -- see pkg-config(1)
|
||||
GST_REQ=0.9.3
|
||||
GST_REQ=0.9.7
|
||||
GST_CHECK_GST($GST_MAJORMINOR, [$GST_REQ])
|
||||
GST_CHECK_GST_BASE($GST_MAJORMINOR, [$GST_REQ])
|
||||
GST_CHECK_GST_GDP($GST_MAJORMINOR, [$GST_REQ])
|
||||
|
|
|
@ -1128,3 +1128,113 @@
|
|||
<DEFAULT>TRUE</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextRender::font-desc</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>font description</NICK>
|
||||
<BLURB>Pango font description of font to be used for rendering. See documentation of pango_font_description_from_string for syntax.</BLURB>
|
||||
<DEFAULT>""</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::deltax</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>X position modifier</NICK>
|
||||
<BLURB>Shift X position to the left or to the right. Unit is pixels.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::deltay</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>Y position modifier</NICK>
|
||||
<BLURB>Shift Y position up or down. Unit is pixels.</BLURB>
|
||||
<DEFAULT>0</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::font-desc</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>font description</NICK>
|
||||
<BLURB>Pango font description of font to be used for rendering. See documentation of pango_font_description_from_string for syntax.</BLURB>
|
||||
<DEFAULT>""</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::halign</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>horizontal alignment</NICK>
|
||||
<BLURB>Horizontal alignment of the text. Can be either 'left', 'right', or 'center'.</BLURB>
|
||||
<DEFAULT>"center"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::shaded-background</NAME>
|
||||
<TYPE>gboolean</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>shaded background</NICK>
|
||||
<BLURB>Whether to shade the background under the text area.</BLURB>
|
||||
<DEFAULT>FALSE</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::text</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>text</NICK>
|
||||
<BLURB>Text to be display.</BLURB>
|
||||
<DEFAULT>""</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::valign</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>vertical alignment</NICK>
|
||||
<BLURB>Vertical alignment of the text. Can be either 'baseline', 'bottom', or 'top'.</BLURB>
|
||||
<DEFAULT>"baseline"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::wrap-mode</NAME>
|
||||
<TYPE>gchararray</TYPE>
|
||||
<RANGE></RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>wrap mode</NICK>
|
||||
<BLURB>Whether to wrap the text and if so how.Can be either 'none', 'word', 'char' or 'wordchar'.</BLURB>
|
||||
<DEFAULT>"wordchar"</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::xpad</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= 0</RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>horizontal paddding</NICK>
|
||||
<BLURB>Horizontal paddding when using left/right alignment.</BLURB>
|
||||
<DEFAULT>25</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
<ARG>
|
||||
<NAME>GstTextOverlay::ypad</NAME>
|
||||
<TYPE>gint</TYPE>
|
||||
<RANGE>>= 0</RANGE>
|
||||
<FLAGS>w</FLAGS>
|
||||
<NICK>vertical padding</NICK>
|
||||
<BLURB>Vertical padding when using top/bottom alignment.</BLURB>
|
||||
<DEFAULT>25</DEFAULT>
|
||||
</ARG>
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Adds multiple streams</description>
|
||||
<filename>../../gst/adder/.libs/libgstadder.so</filename>
|
||||
<basename>libgstadder.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ALSA plugin library</description>
|
||||
<filename>../../ext/alsa/.libs/libgstalsa.so</filename>
|
||||
<basename>libgstalsa.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Convert audio to different formats</description>
|
||||
<filename>../../gst/audioconvert/.libs/libgstaudioconvert.so</filename>
|
||||
<basename>libgstaudioconvert.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Adjusts audio frames</description>
|
||||
<filename>../../gst/audiorate/.libs/libgstaudiorate.so</filename>
|
||||
<basename>libgstaudiorate.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Resamples audio</description>
|
||||
<filename>../../gst/audioresample/.libs/libgstaudioresample.so</filename>
|
||||
<basename>libgstaudioresample.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Creates audio test signals of given frequency and volume</description>
|
||||
<filename>../../gst/audiotestsrc/.libs/libgstaudiotestsrc.so</filename>
|
||||
<basename>libgstaudiotestsrc.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>decoder bin</description>
|
||||
<filename>../../gst/playback/.libs/libgstdecodebin.so</filename>
|
||||
<basename>libgstdecodebin.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<description>colorspace conversion copied from FFMpeg 0.4.9-pre1</description>
|
||||
<filename>../../gst/ffmpegcolorspace/.libs/libgstffmpegcolorspace.so</filename>
|
||||
<basename>libgstffmpegcolorspace.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>FFMpeg</package>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>elements to read from and write to Gnome-VFS uri's</description>
|
||||
<filename>../../ext/gnomevfs/.libs/libgstgnomevfs.so</filename>
|
||||
<basename>libgstgnomevfs.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>libvisual visualization plugins</description>
|
||||
<filename>../../ext/libvisual/.libs/libgstlibvisual.so</filename>
|
||||
<basename>libgstlibvisual.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>ogg stream manipulation (info about ogg: http://xiph.org)</description>
|
||||
<filename>../../ext/ogg/.libs/libgstogg.so</filename>
|
||||
<basename>libgstogg.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,17 +3,17 @@
|
|||
<description>Pango-based text rendering and overlay</description>
|
||||
<filename>../../ext/pango/.libs/libgstpango.so</filename>
|
||||
<basename>libgstpango.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
<name>clockoverlay</name>
|
||||
<longname>Time Overlay</longname>
|
||||
<longname>Clock Overlay</longname>
|
||||
<class>Filter/Editor/Video</class>
|
||||
<description>Overlays the time on a video stream</description>
|
||||
<description>Overlays the current clock time on a video stream</description>
|
||||
<author>Tim-Philipp Müller <tim@centricular.net></author>
|
||||
</element>
|
||||
<element>
|
||||
|
@ -34,7 +34,7 @@
|
|||
<name>timeoverlay</name>
|
||||
<longname>Time Overlay</longname>
|
||||
<class>Filter/Editor/Video</class>
|
||||
<description>Overlays the time on a video stream</description>
|
||||
<description>Overlays buffer time stamps on a video stream</description>
|
||||
<author>Tim-Philipp Müller <tim@centricular.net></author>
|
||||
</element>
|
||||
</elements>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>player bin</description>
|
||||
<filename>../../gst/playback/.libs/libgstplaybin.so</filename>
|
||||
<basename>libgstplaybin.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Subtitle (.sub) file parsing</description>
|
||||
<filename>../../gst/subparse/.libs/libgstsubparse.so</filename>
|
||||
<basename>libgstsubparse.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>transfer data over the network via TCP</description>
|
||||
<filename>../../gst/tcp/.libs/libgsttcp.so</filename>
|
||||
<basename>libgsttcp.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Theora plugin library</description>
|
||||
<filename>../../ext/theora/.libs/libgsttheora.so</filename>
|
||||
<basename>libgsttheora.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>default typefind functions</description>
|
||||
<filename>../../gst/typefind/.libs/libgsttypefindfunctions.so</filename>
|
||||
<basename>libgsttypefindfunctions.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>elements for Video 4 Linux</description>
|
||||
<filename>../../sys/v4l/.libs/libgstvideo4linux.so</filename>
|
||||
<basename>libgstvideo4linux.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Adjusts video frames</description>
|
||||
<filename>../../gst/videorate/.libs/libgstvideorate.so</filename>
|
||||
<basename>libgstvideorate.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Resizes video</description>
|
||||
<filename>../../gst/videoscale/.libs/libgstvideoscale.so</filename>
|
||||
<basename>libgstvideoscale.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Creates a test video stream</description>
|
||||
<filename>../../gst/videotestsrc/.libs/libgstvideotestsrc.so</filename>
|
||||
<basename>libgstvideotestsrc.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>element for controlling audio volume</description>
|
||||
<filename>../../gst/volume/.libs/libgstvolume.so</filename>
|
||||
<basename>libgstvolume.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>Vorbis plugin library</description>
|
||||
<filename>../../ext/vorbis/.libs/libgstvorbis.so</filename>
|
||||
<basename>libgstvorbis.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>X11 video output element based on standard Xlib calls</description>
|
||||
<filename>../../sys/ximage/.libs/libgstximagesink.so</filename>
|
||||
<basename>libgstximagesink.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
<description>XFree86 video output plugin using Xv extension</description>
|
||||
<filename>../../sys/xvimage/.libs/libgstxvimagesink.so</filename>
|
||||
<basename>libgstxvimagesink.so</basename>
|
||||
<version>0.9.6.1</version>
|
||||
<version>0.9.7</version>
|
||||
<license>LGPL</license>
|
||||
<source>gst-plugins-base</source>
|
||||
<package>GStreamer Base Plug-ins CVS/prerelease</package>
|
||||
<package>GStreamer Base Plug-ins source release</package>
|
||||
<origin>Unknown package origin</origin>
|
||||
<elements>
|
||||
<element>
|
||||
|
|
Loading…
Reference in a new issue