gstreamer plugin ugly
Paulo Cavalcanti
promac at gmail.com
Sun Nov 26 12:14:40 CET 2006
Skipped content of type multipart/alternative-------------- next part --------------
diff -Naur gst-plugins-ugly-0.10.4/ext/a52dec/gsta52dec.c gst-plugins-ugly-0.10.4-new/ext/a52dec/gsta52dec.c
--- gst-plugins-ugly-0.10.4/ext/a52dec/gsta52dec.c 2006-08-14 06:52:25.000000000 -0300
+++ gst-plugins-ugly-0.10.4-new/ext/a52dec/gsta52dec.c 2006-11-26 08:50:21.000000000 -0200
@@ -58,7 +58,9 @@
enum
{
ARG_0,
- ARG_DRC
+ ARG_DRC,
+ ARG_MODE,
+ ARG_LFE,
};
static GstStaticPadTemplate sink_factory = GST_STATIC_PAD_TEMPLATE ("sink",
@@ -94,6 +96,30 @@
static GstElementClass *parent_class = NULL;
+#define GST_TYPE_A52DEC_MODE (gst_a52dec_mode_get_type())
+static GType
+gst_a52dec_mode_get_type (void)
+{
+ static GType a52dec_mode_type = 0;
+ static const GEnumValue a52dec_modes[] = {
+ {A52_MONO, "Mono", "mono"},
+ {A52_STEREO, "Stereo", "stereo"},
+ {A52_3F, "3 Front", "3f"},
+ {A52_2F1R, "2 Front, 1 Rear", "2f1r"},
+ {A52_3F1R, "3 Front, 1 Rear", "3f1r"},
+ {A52_2F2R, "2 Front, 2 Rear", "2f2r"},
+ {A52_3F2R, "3 Front, 2 Rear", "3f2r"},
+ {A52_DOLBY, "Dolby", "dolby"},
+ {0, NULL, NULL},
+ };
+
+ if (!a52dec_mode_type) {
+ a52dec_mode_type = g_enum_register_static ("GstA52DecMode", a52dec_modes);
+ }
+ return a52dec_mode_type;
+}
+
+
GType
gst_a52dec_get_type (void)
{
@@ -153,6 +179,11 @@
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_DRC,
g_param_spec_boolean ("drc", "Dynamic Range Compression",
"Use Dynamic Range Compression", FALSE, G_PARAM_READWRITE));
+ g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_MODE,
+ g_param_spec_enum ("mode", "Decoder Mode", "Decoding Mode (default 3f2r)",
+ GST_TYPE_A52DEC_MODE, A52_3F2R, G_PARAM_READWRITE));
+ g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_LFE,
+ g_param_spec_boolean ("lfe", "LFE", "LFE", TRUE, G_PARAM_READWRITE));
oil_init ();
@@ -191,6 +222,7 @@
gst_pad_use_fixed_caps (a52dec->srcpad);
gst_element_add_pad (GST_ELEMENT (a52dec), a52dec->srcpad);
+ a52dec->request_channels = A52_CHANNEL;
a52dec->dynamic_range_compression = FALSE;
a52dec->cache = NULL;
}
@@ -268,6 +300,12 @@
}
chans += 2;
break;
+ case A52_MONO:
+ if (pos) {
+ pos[0 + chans] = GST_AUDIO_CHANNEL_POSITION_FRONT_MONO;
+ }
+ chans += 1;
+ break;
default:
/* error, caller should post error message */
g_free (pos);
@@ -441,6 +479,49 @@
gst_a52dec_update_streaminfo (a52dec);
}
+ /* If we haven't had an explicit number of channels chosen through properties
+ * at this point, choose what to downmix to now, based on what the peer will
+ * accept - this allows a52dec to do downmixing in preference to a
+ * downstream element such as audioconvert.
+ */
+ if (a52dec->request_channels == A52_CHANNEL) {
+ GstCaps *caps;
+
+ caps = gst_pad_get_allowed_caps (a52dec->srcpad);
+ if (caps && gst_caps_get_size (caps) > 0) {
+ GstCaps *copy = gst_caps_copy_nth (caps, 0);
+ GstStructure *structure = gst_caps_get_structure (copy, 0);
+ gint channels;
+ const int a52_channels[6] = {
+ A52_MONO,
+ A52_STEREO,
+ A52_STEREO | A52_LFE,
+ A52_2F2R,
+ A52_2F2R | A52_LFE,
+ A52_3F2R | A52_LFE,
+ };
+
+ /* Prefer the original number of channels, but fixate to something
+ * preferred (first in the caps) downstream if possible.
+ */
+ gst_structure_fixate_field_nearest_int (structure, "channels",
+ flags ? gst_a52dec_channels (flags, NULL) : 6);
+ gst_structure_get_int (structure, "channels", &channels);
+ if (channels <= 6)
+ a52dec->request_channels = a52_channels[channels - 1];
+ else
+ a52dec->request_channels = a52_channels[5];
+
+ gst_caps_unref (copy);
+ } else if (flags)
+ a52dec->request_channels = a52dec->stream_channels;
+ else
+ a52dec->request_channels = A52_3F2R | A52_LFE;
+
+ if (caps)
+ gst_caps_unref (caps);
+ }
+
/* process */
flags = a52dec->request_channels; /* | A52_ADJUST_LEVEL; */
a52dec->level = 1;
@@ -681,7 +762,6 @@
a52dec->bit_rate = -1;
a52dec->sample_rate = -1;
a52dec->stream_channels = A52_CHANNEL;
- a52dec->request_channels = A52_3F2R | A52_LFE;
a52dec->using_channels = A52_CHANNEL;
a52dec->level = 1;
a52dec->bias = 0;
@@ -729,6 +809,18 @@
src->dynamic_range_compression = g_value_get_boolean (value);
GST_OBJECT_UNLOCK (src);
break;
+ case ARG_MODE:
+ GST_OBJECT_LOCK (src);
+ src->request_channels &= ~A52_CHANNEL_MASK;
+ src->request_channels |= g_value_get_enum (value);
+ GST_OBJECT_UNLOCK (src);
+ break;
+ case ARG_LFE:
+ GST_OBJECT_LOCK (src);
+ src->request_channels &= ~A52_LFE;
+ src->request_channels |= g_value_get_boolean (value) ? A52_LFE : 0;
+ GST_OBJECT_UNLOCK (src);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -747,6 +839,16 @@
g_value_set_boolean (value, src->dynamic_range_compression);
GST_OBJECT_UNLOCK (src);
break;
+ case ARG_MODE:
+ GST_OBJECT_LOCK (src);
+ g_value_set_enum (value, src->request_channels & A52_CHANNEL_MASK);
+ GST_OBJECT_UNLOCK (src);
+ break;
+ case ARG_LFE:
+ GST_OBJECT_LOCK (src);
+ g_value_set_boolean (value, src->request_channels & A52_LFE);
+ GST_OBJECT_UNLOCK (src);
+ break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
diff -Naur gst-plugins-ugly-0.10.4/ext/a52dec/gsta52dec.h gst-plugins-ugly-0.10.4-new/ext/a52dec/gsta52dec.h
--- gst-plugins-ugly-0.10.4/ext/a52dec/gsta52dec.h 2006-08-08 07:43:51.000000000 -0300
+++ gst-plugins-ugly-0.10.4-new/ext/a52dec/gsta52dec.h 2006-11-26 08:50:26.000000000 -0200
@@ -73,6 +73,31 @@
GType gst_a52dec_get_type (void);
+#ifndef A52_MONO
+#define A52_MONO 1
+#endif
+#ifndef A52_STEREO
+#define A52_STEREO 2
+#endif
+#ifndef A52_3F
+#define A52_3F 3
+#endif
+#ifndef A52_2F1R
+#define A52_2F1R 4
+#endif
+#ifndef A52_3F1R
+#define A52_3F1R 5
+#endif
+#ifndef A52_2F2R
+#define A52_2F2R 6
+#endif
+#ifndef A52_3F2R
+#define A52_3F2R 7
+#endif
+#ifndef A52_DOLBY
+#define A52_DOLBY 10
+#endif
+
G_END_DECLS
#endif /* __GST_A52DEC_H__ */
-------------- next part --------------
# $Id: gstreamer-plugins-ugly.spec 4828 2006-10-17 10:52:55Z thias $
# Authority: matthias
# ExclusiveDist: fc5 fc6
%define desktop_vendor rpmforge
%define majorminor 0.10
%define gstreamer gstreamer
%define gst_minver 0.10.2
%define gstpb_minver 0.10.2
Summary: GStreamer streaming media framework "ugly" plug-ins
Name: %{gstreamer}-plugins-ugly
Version: 0.10.4
Release: 3%{?dist}
License: LGPL
Group: Applications/Multimedia
URL: http://gstreamer.freedesktop.org/
Source: http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-%{version}.tar.bz2
Patch0: ac3.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
Requires: %{gstreamer} >= %{gst_minver}
BuildRequires: %{gstreamer}-devel >= %{gst_minver}
BuildRequires: %{gstreamer}-plugins-base-devel >= %{gstpb_minver}
BuildRequires: gcc-c++
BuildRequires: gtk-doc
BuildRequires: gettext-devel
BuildRequires: libsidplay-devel >= 1.36.0
BuildRequires: a52dec-devel >= 0.7.3
#BuildRequires: libdvdnav-devel >= 0.1.3
BuildRequires: libdvdread-devel >= 0.9.0
BuildRequires: lame-devel >= 3.89
BuildRequires: libid3tag-devel >= 0.15.0
BuildRequires: libmad-devel >= 0.15.0
BuildRequires: mpeg2dec-devel >= 0.4.0
BuildRequires: amrnb-devel
BuildRequires: liboil-devel
BuildRequires: PyXML
Provides: gstreamer-sid = %{version}-%{release}
Provides: gstreamer-lame = %{version}-%{release}
Provides: gstreamer-mad = %{version}-%{release}
Provides: gstreamer-a52dec = %{version}-%{release}
#Provides: gstreamer-dvdnav = %{version}-%{release}
Provides: gstreamer-dvdread = %{version}-%{release}
Provides: gstreamer-mpeg2dec = %{version}-%{release}
%description
GStreamer is a streaming media framework, based on graphs of elements which
operate on media data.
This package contains well-written plug-ins that can't be shipped in
gstreamer-plugins-good because:
- the license is not LGPL
- the license of the library is not LGPL
- there are possible licensing issues with the code.
%package devel
Summary: Development files for the GStreamer "ugly" plug-ins
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
GStreamer is a streaming media framework, based on graphs of elements which
operate on media data.
This package contains well-written plug-ins that can't be shipped in
gstreamer-plugins-good because:
- the license is not LGPL
- the license of the library is not LGPL
- there are possible licensing issues with the code.
This package contains development files and documentation.
%prep
%setup -n gst-plugins-ugly-%{version}
%patch0 -p1 -b .ac3
%build
%configure \
--with-package-name='gst-plugins-ugly %{desktop_vendor} rpm' \
--with-package-origin='http://www.rpmforge.net/' \
--enable-debug \
--disable-gtk-doc
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%makeinstall
%find_lang gst-plugins-ugly-%{majorminor}
# Clean out files that should not be part of the rpm.
%{__rm} -f %{buildroot}%{_libdir}/gstreamer-%{majorminor}/*.{a,la}
%{__rm} -f %{buildroot}%{_libdir}/*.{a,la}
%clean
%{__rm} -rf %{buildroot}
%files -f gst-plugins-ugly-%{majorminor}.lang
%defattr(-, root, root, 0755)
%doc AUTHORS COPYING README REQUIREMENTS
# Plugins without external dependencies
%{_libdir}/gstreamer-%{majorminor}/libgstasf.so
%{_libdir}/gstreamer-%{majorminor}/libgstdvdlpcmdec.so
%{_libdir}/gstreamer-%{majorminor}/libgstdvdsub.so
%{_libdir}/gstreamer-%{majorminor}/libgstiec958.so
%{_libdir}/gstreamer-%{majorminor}/libgstmpegaudioparse.so
%{_libdir}/gstreamer-%{majorminor}/libgstmpegstream.so
%{_libdir}/gstreamer-%{majorminor}/libgstrmdemux.so
# Plugins with external dependencies
%{_libdir}/gstreamer-%{majorminor}/libgsta52dec.so
%{_libdir}/gstreamer-%{majorminor}/libgstamrnb.so
#%{_libdir}/gstreamer-%{majorminor}/libgstdvdnav.so
%{_libdir}/gstreamer-%{majorminor}/libgstdvdread.so
%{_libdir}/gstreamer-%{majorminor}/libgstlame.so
%{_libdir}/gstreamer-%{majorminor}/libgstmad.so
%{_libdir}/gstreamer-%{majorminor}/libgstmpeg2dec.so
%{_libdir}/gstreamer-%{majorminor}/libgstsid.so
%files devel
%defattr(-, root, root, 0755)
#doc %{_datadir}/gtk-doc/html/gst-plugins-ugly-plugins-%{majorminor}/
%changelog
* Sun Nov 26 2006 Paulo Roma <roma at lcg.ufrj.br> 0.10.4-3
- Patched to fix AC3 sound.
* Tue Oct 17 2006 Matthias Saou <http://freshrpms.net/> 0.10.4-2
- Include translations which are now built.
* Sun Sep 17 2006 Matthias Saou <http://freshrpms.net/> 0.10.4-1
- Update to 0.10.4.
* Wed Apr 19 2006 Matthias Saou <http://freshrpms.net/> 0.10.3-1
- Update to 0.10.3.
- Remove no longer needed asfdemux fixes patch.
- Include new dvdsub plugin.
- Still don't add and include dvdnav plugin, "not stable yet".
* Tue Mar 28 2006 Matthias Saou <http://freshrpms.net/> 0.10.2-2
- Include backported asfdemux fixes patch from Daniel S. Rogers.
* Wed Feb 22 2006 Matthias Saou <http://freshrpms.net/> 0.10.2-1
- Update to 0.10.2.
- Add libgstasf.so.
- Enable re-added libgstdvdread.so.
* Thu Jan 19 2006 Matthias Saou <http://freshrpms.net/> 0.10.1-1
- Update to 0.10.1.
* Fri Dec 16 2005 Matthias Saou <http://freshrpms.net/> 0.10.0.1-1
- Update to CVS snapshot.
- Enable amrnb support.
* Mon Dec 05 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- 0.10.0-0.gst.1
- new release
* Thu Dec 01 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- 0.9.7-0.gst.1
- new release with 0.10 major/minor
- added mpegstream
* Sat Nov 12 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- new release
* Tue Oct 25 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- 0.9.4-0.gst.1
- added a52dec plugin
- new release
* Mon Oct 03 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- 0.9.3-0.gst.1
- new release
- add -devel and -docs
* Fri Sep 02 2005 Thomas Vander Stichele <thomas at apestaart dot org>
- clean out for split into ugly
* Mon Feb 14 2005 Christian Schaller <christian at fluendo dot com>
- Add vnc plugin
* Wed Jan 19 2005 Christian Schaller <christian at fluendo dot com>
- add dv1394 plugin
* Wed Dec 22 2004 Christian Schaller <christian at fluendo dot com>
- Add -plugins- to plugin names
* Thu Dec 9 2004 Christian Schaller <christian a fluendo dot com>
- Add the mms plugin
* Wed Oct 06 2004 Christian Schaller <christian at fluendo dot com>
- Add Wim's new mng decoder plugin
- add shout2 plugin for Zaheer, hope it is correctly done :)
* Wed Sep 29 2004 Christian Schaller <uraeus at gnome dot org>
- Fix USE statement for V4L2
* Thu Sep 28 2004 Christian Schaller <uraeus at gnome dot org>
- Remove kio plugin (as it was broken)
* Wed Sep 21 2004 Christian Schaller <uraeus at gnome dot org>
- Reorganize SPEC to fit better with fedora.us and freshrpms.net packages
- Make sure gstinterfaces.so is in the package
- Add all new plugins
* Mon Mar 15 2004 Thomas Vander Stichele <thomas at apestaart dot org>
- put back media-info
- add ffmpegcolorspace plugin
* Sun Mar 07 2004 Christian Schaller <Uraeus at gnome.org>
- Remove rm commands for media-info stuff
- Add libdir/*
* Thu Mar 04 2004 Christian Schaller <Uraeus at gnome.org>
- Add missing gconf schema install in %post
* Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
- Libraries/Multimedia doesn't exist, remove it
* Tue Mar 02 2004 Thomas Vander Stichele <thomas at apestaart dot org>
- added speex plugin.
* Mon Mar 01 2004 Thomas Vander Stichele <thomas at apestaart dot org>
- Cleaned up the mess. Could we PLEASE keep this sort of organized and
- alphabetic for easy lookup ?
* Fri Feb 13 2004 Christian Schaller <Uraeus at gnome.org>
- Added latest new headers
* Wed Jan 21 2004 Christian Schaller <Uraeus at gnome.org>
- added NAS plugin
- added i18n locale dir
* Fri Jan 16 2004 Christian Schaller <uraeus at gnome.org>
- added libcaca plugin
- added libgstcolorspace - fixed name of libgsthermescolorspace
* Wed Jan 14 2004 Christian Schaller <uraeus at gnome.org>
- Add gamma plugin
- Have the pixbuf plugin deleted for now
* Wed Dec 18 2003 Christian Schaller <Uraeus at gnome.org>
- remove gsttagediting.h as it is gone
- replace it with gst/tag/tag.h
* Sun Nov 23 2003 Christian Schaller <Uraeus at gnome.org>
- Update spec file for latest changes
- add faad plugin
* Thu Oct 16 2003 Christian Schaller <Uraeus at gnome.org>
- Add new colorbalance and tuner and xoverlay stuff
- Change name of kde-audio-devel to arts-devel
* Sat Sep 27 2003 Christian Schaller <Uraeus at gnome.org>
- Add majorminor to man page names
- add navigation lib to package
* Tue Sep 11 2003 Christian Schaller <Uraeus at gnome.org>
- Add -%{majorminor} to each instance of gst-register
* Tue Aug 19 2003 Christian Schaller <Uraeus at Gnome.org>
- Add new plugins
* Sat Jul 12 2003 Thomas Vander Stichele <thomas at apestaart dot org>
- move gst/ mpeg plugins to base package
- remove hermes conditional from snapshot
- remove one instance of resample plugin
- fix up silly versioned plugins efence and rmdemux
* Sat Jul 05 2003 Christian Schaller <Uraeus at gnome.org>
- Major overhaul of SPEC file to make it compatible with what Red Hat ships
as default
- Probably a little less sexy, but cross-distro SPEC files are a myth anyway
so making it convenient for RH users wins out
- Keeping conditionals even with new re-org so that developers building the
RPMS don't need everything installed
- Add bunch of obsoletes to ease migration from earlier official GStreamer RPMS
- Remove plugins that doesn't exist anymore
* Sun Mar 02 2003 Christian Schaller <Uraeus at gnome.org>
- Remove USE_RTP statement from RTP plugin
- Move RTP plugin to no-deps section
* Sat Mar 01 2003 Christian Schaller <Uraeus at gnome.org>
- Remove videosink from SPEC
* Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
- various fixes
- make video output packages provide gstreamer-videosink
* Thu Jan 23 2003 Thomas Vander Stichele <thomas at apestaart dot org>
- split out ffmpeg stuff to separate plugin
* Fri Dec 27 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- add virtual provides for audio sources and sinks
* Sun Dec 15 2002 Christian Schaller <Uraeus at linuxrising.org>
- Update mpeg2dec REQ to be 0.3.1
* Tue Dec 10 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- only install schema once
- move out devel lib stuff to -devel package
* Sun Dec 08 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- fix location of libgstpng
- changes for parallel installability
* Thu Nov 28 2002 Christian Schaller <Uraeus at linuxrising.org>
- Put in libgstpng plugin
- rm the libgstmedia-info stuff until thomas think they are ready
* Fri Nov 01 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- don't use compprep until ABI issues can be fixed
* Wed Oct 30 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- added smpte plugin
- split out dvdnavread package
- fixed snapshot deps and added hermes conditionals
* Tue Oct 29 2002 Thomas Vander Stichele <thomas at apestaart dot org>
- added -play package, libs, and .pc files
* Thu Oct 24 2002 Christian Schaller <Uraeus at linuxrising.org>
- Added wavenc to audio formats package
* Sat Oct 20 2002 Christian Scchaller <Uraeus at linuxrising.org>
- Removed all .la files
- added separate non-openquicktime demuxer plugin
- added snapshot plugin
- added videotest plugin
- Split avi plugin out to avi and windec plugins since aviplugin do not depend on avifile
- Added cdplayer plugin
* Fri Sep 20 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added gst-compprep calls
* Wed Sep 18 2002 Thomas Vander Stichele <thomas at apestaart.org>
- add gst-register-%{majorminor} calls everywhere again since auto-reregister doesn't work
- added gstreamer-audio-formats to mad's requires since it needs the typefind
to work properly
* Mon Sep 9 2002 Christian Schaller <Uraeus at linuxrising.org>
- Added v4l2 plugin
* Thu Aug 27 2002 Christian Schaller <Uraeus at linuxrising.org>
- Fixed USE_DV_TRUE to USE_LIBDV_TRUE
- Added Gconf and floatcast headers to gstreamer-plugins-devel package
- Added mixmatrix plugin to audio-effects package
* Thu Jul 11 2002 Thomas Vander Stichele <thomas at apestaart.org>
- fixed oss package to buildrequire instead of require glibc headers
* Mon Jul 08 2002 Thomas Vander Stichele <thomas at apestaart.org>
- fixed -devel package group
* Fri Jul 05 2002 Thomas Vander Stichele <thomas at apestaart.org>
- release 0.4.0 !
- added gstreamer-libs.pc
- removed all gst-register-%{majorminor} calls since this should be done automatically now
* Thu Jul 04 2002 Thomas Vander Stichele <thomas at apestaart.org>
- fix issue with SDL package
- make all packages STRICTLY require the right version to avoid
ABI issues
- make gst-plugins obsolete gst-plugin-libs
- also send output of gst-register-%{majorminor} to /dev/null to lower the noise
* Wed Jul 03 2002 Thomas Vander Stichele <thomas at apestaart.org>
- require glibc-devel instead of glibc-kernheaders since the latter is only
since 7.3 and glibc-devel pulls in the right package anyway
* Sun Jun 23 2002 Thomas Vander Stichele <thomas at apestaart.org>
- changed header location of plug-in libs
* Mon Jun 17 2002 Thomas Vander Stichele <thomas at apestaart.org>
- major cleanups
- adding gst-register-%{majorminor} on postun everywhere
- remove ldconfig since we don't actually install libs in system dirs
- removed misc package
- added video-effects
- dot every Summary
- uniformify all descriptions a little
* Thu Jun 06 2002 Thomas Vander Stichele <thomas at apestaart.org>
- various BuildRequires: additions
* Tue Jun 04 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added USE_LIBADSPA_TRUE bits to ladspa package
* Mon Jun 03 2002 Thomas Vander Stichele <thomas at apestaart.org>
- Added libfame package
* Mon May 12 2002 Christian Fredrik Kalager Schaller <Uraeus at linuxrising.org>
- Added jack, dxr3, http packages
- Added visualisation plug-ins, effecttv and synaesthesia
- Created devel package
- Removed gstreamer-plugins-libs package (moved it into gstreamer-plugins)
- Replaced prefix/dirname with _macros
* Mon May 06 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added gstreamer-GConf package
* Wed Mar 13 2002 Thomas Vander Stichele <thomas at apestaart.org>
- added more BuildRequires and Requires
- rearranged some plug-ins
- added changelog ;)
More information about the freshrpms-list
mailing list