]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugins-ugly0-10.git/blob - gst-plugins-ugly.spec.in
moved jpeg to it's own package since it depends on libjpeg
[glsdk/gst-plugins-ugly0-10.git] / gst-plugins-ugly.spec.in
1 %define name    gstreamer-plugins  
2 %define ver     @VERSION@
3 %define rel     @GST_PLUGINS_RELEASE@
4 %define prefix  /usr
5 %define sysconfdir /etc
7 Summary: GStreamer Streaming-media framework plugins
8 Name: %name
9 Version: %ver
10 Release: %rel
11 Copyright: LGPL
12 Group: Libraries/Multimedia
13 Source: gst-plugins-%{ver}.tar.gz
14 BuildRoot: /var/tmp/%{name}-%{ver}-root
15 Docdir: %{prefix}/doc
16 Prefix: %prefix
17 Requires: libxml2 >= 2.4.0
18 Requires: gstreamer >= %{ver}
19 BuildRequires: nasm => 0.90
20 BuildRequires: gstreamer-devel >= %{ver} 
22 %description
23 GStreamer is a streaming-media framework, based on graphs of filters which
24 operate on media data. Applications using this library can do anything
25 from real-time sound processing to playing videos, and just about anything
26 else media-related.  Its plugin-based architecture means that new data
27 types or processing capabilities can be added simply by installing new
28 plugins.
30 %files
31 %defattr(-, root, root)
32 %doc AUTHORS COPYING README  
33 %{_bindir}/gst-launch-ext
34 %{_mandir}/man1/gst-launch-ext.*
36 %prep
37 %setup -n gst-plugins-%{ver}
38 %build
39 CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} --sysconfdir=%{sysconfdir} --mandir=$RPM_BUILD_ROOT%{prefix}/share/man --enable-DEBUG 
41 if [ "$SMP" != "" ]; then
42   (make "MAKE=make -k -j $SMP"; exit 0)
43   make 2>&1 | tee make.log
44 else
45   make 2>&1 | tee make.log
46 fi
48 %install
49 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
51 make prefix=$RPM_BUILD_ROOT%{prefix} install
53 %clean
54 [ -n "$RPM_BUILD_ROOT" -a "$RPM_BUILD_ROOT" != / ] && rm -rf $RPM_BUILD_ROOT
56 ### ESD ###
57 @USE_ESD_TRUE@%package -n gstreamer-esd
58 @USE_ESD_TRUE@Summary: Gstreamer plugin for ESD sound output
59 @USE_ESD_TRUE@Group: Libraries/Multimedia
60 @USE_ESD_TRUE@Requires: esound >= 0.2.8
61 @USE_ESD_TRUE@Requires: gstreamer-plugins >= %{ver}
62 @USE_ESD_TRUE@
63 @USE_ESD_TRUE@%description -n gstreamer-esd
64 @USE_ESD_TRUE@Output plugin for GStreamer for use with the esound package
65 @USE_ESD_TRUE@
66 @USE_ESD_TRUE@%files -n gstreamer-esd
67 @USE_ESD_TRUE@%defattr(-, root, root)
68 @USE_ESD_TRUE@%{prefix}/lib/gst/libesd*
69 @USE_ESD_TRUE@
70 @USE_ESD_TRUE@%post -n gstreamer-esd
71 @USE_ESD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
72 @USE_ESD_TRUE@
73 @USE_ESD_TRUE@%postun -n gstreamer-esd
74 @USE_ESD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
75 @USE_ESD_TRUE@/sbin/ldconfig
77 ### FESTIVAL ###
78 @USE_FESTIVAL_TRUE@%package -n gstreamer-festival
79 @USE_FESTIVAL_TRUE@Summary: GStreamer plugin for text-to-speech support using Festival
80 @USE_FESTIVAL_TRUE@Group: Libraries/Multimedia
81 @USE_FESTIVAL_TRUE@Requires: gstreamer-plugins >= %{ver}
82 @USE_FESTIVAL_TRUE@Requires: festival >= 1.4.1
83 @USE_FESTIVAL_TRUE@
84 @USE_FESTIVAL_TRUE@%description -n gstreamer-festival
85 @USE_FESTIVAL_TRUE@Element for text-to-speech using the festival server.
86 @USE_FESTIVAL_TRUE@
87 @USE_FESTIVAL_TRUE@%files -n gstreamer-festival
88 @USE_FESTIVAL_TRUE@%defattr(-, root, root)
89 @USE_FESTIVAL_TRUE@%{prefix}/lib/gst/libgstfestival*
90 @USE_FESTIVAL_TRUE@
91 @USE_FESTIVAL_TRUE@%post -n gstreamer-festival
92 @USE_FESTIVAL_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
94 ### HERMES ###
95 @USE_HERMES_TRUE@%package -n gstreamer-xvideosink
96 @USE_HERMES_TRUE@Summary: Gstreamer XFree output plugin
97 @USE_HERMES_TRUE@Group: Libraries/Multimedia
98 @USE_HERMES_TRUE@Requires: gstreamer-plugins >= %{ver}
99 @USE_HERMES_TRUE@Requires: Hermes => 1.3.0
100 @USE_HERMES_TRUE@%description -n gstreamer-xvideosink
101 @USE_HERMES_TRUE@Xfree86 video sink
102 @USE_HERMES_TRUE@
103 @USE_HERMES_TRUE@%files -n gstreamer-xvideosink
104 @USE_HERMES_TRUE@%defattr(-, root, root)
105 @USE_HERMES_TRUE@%{prefix}/lib/gst/libxvideosink*
106 @USE_HERMES_TRUE@
107 @USE_HERMES_TRUE@%post -n gstreamer-xvideosink
108 @USE_HERMES_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
110 @USE_HERMES_TRUE@%package -n gstreamer-colorspace
111 @USE_HERMES_TRUE@Summary: Gstreamer colorspace conversion plugin
112 @USE_HERMES_TRUE@Group: Libraries/Multimedia
113 @USE_HERMES_TRUE@Requires: gstreamer-plugins >= %{ver}
114 @USE_HERMES_TRUE@Requires: Hermes => 1.3.0
115 @USE_HERMES_TRUE@%description -n gstreamer-colorspace
116 @USE_HERMES_TRUE@Colorspace plugin based on Hermes library
117 @USE_HERMES_TRUE@
118 @USE_HERMES_TRUE@%files -n gstreamer-colorspace
119 @USE_HERMES_TRUE@%defattr(-, root, root)
120 @USE_HERMES_TRUE@%{prefix}/lib/gst/libgstcolorspace*
121 @USE_HERMES_TRUE@
122 @USE_HERMES_TRUE@%post -n gstreamer-colorspace
123 @USE_HERMES_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
126 ### LAME ###
127 @USE_LAME_TRUE@%package -n gstreamer-lame
128 @USE_LAME_TRUE@Summary: GStreamer plugin encoding mp3 songs
129 @USE_LAME_TRUE@Group: Libraries/Multimedia
130 @USE_LAME_TRUE@Requires: gstreamer-plugins >= %{ver}
131 @USE_LAME_TRUE@
132 @USE_LAME_TRUE@%description -n gstreamer-lame
133 @USE_LAME_TRUE@Plugin for encoding mp3 with lame
134 @USE_LAME_TRUE@
135 @USE_LAME_TRUE@%files -n gstreamer-lame
136 @USE_LAME_TRUE@%defattr(-, root, root)
137 @USE_LAME_TRUE@%{prefix}/lib/gst/libgstlame*
138 @USE_LAME_TRUE@
139 @USE_LAME_TRUE@%post -n gstreamer-lame
140 @USE_LAME_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
142 ### MAD ###
143 @USE_MAD_TRUE@%package -n gstreamer-mad  
144 @USE_MAD_TRUE@Summary: Plugin using MAD for mp3 decoding
145 @USE_MAD_TRUE@Group: Libraries/Multimedia
146 @USE_MAD_TRUE@Requires: gstreamer-plugins >= %{ver}
147 @USE_MAD_TRUE@Requires: gstreamer-plugin-libs = %{ver}
148 @USE_MAD_TRUE@Requires: mad >= 0.13.0
149 @USE_MAD_TRUE@
150 @USE_MAD_TRUE@%description -n gstreamer-mad
151 @USE_MAD_TRUE@Plugin for playback of mp3 songs using the very good MAD library
152 @USE_MAD_TRUE@
153 @USE_MAD_TRUE@%files -n gstreamer-mad
154 @USE_MAD_TRUE@%defattr(-, root, root)  
155 @USE_MAD_TRUE@%{prefix}/lib/gst/libgstmad*
156 @USE_MAD_TRUE@
157 @USE_MAD_TRUE@%post -n gstreamer-mad
158 @USE_MAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
159 @USE_MAD_TRUE@
160 @USE_MAD_TRUE@%postun -n gstreamer-mad
161 @USE_MAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
162 @USE_MAD_TRUE@/sbin/ldconfig
164 ### OSS ###
165 @USE_OSS_TRUE@%package -n gstreamer-oss
166 @USE_OSS_TRUE@Summary: Gstreamer plugins for input and output using OSS
167 @USE_OSS_TRUE@Group: Libraries/Multimedia
168 @USE_OSS_TRUE@Requires: gstreamer-plugins >= %{ver}
169 @USE_OSS_TRUE@
170 @USE_OSS_TRUE@%description -n gstreamer-oss 
171 @USE_OSS_TRUE@Plugins for output and input to the OpenSoundSytem audio
172 @USE_OSS_TRUE@drivers found in the Linux kernels or commercially available
173 @USE_OSS_TRUE@from OpenSound.
174 @USE_OSS_TRUE@
175 @USE_OSS_TRUE@%files -n gstreamer-oss
176 @USE_OSS_TRUE@%defattr(-, root, root)
177 @USE_OSS_TRUE@%{prefix}/lib/gst/libgstoss*
178 @USE_OSS_TRUE@
179 @USE_OSS_TRUE@%post -n gstreamer-oss
180 @USE_OSS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
181 @USE_OSS_TRUE@
182 @USE_OSS_TRUE@%postun -n gstreamer-oss
183 @USE_OSS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
184 @USE_OSS_TRUE@/sbin/ldconfig
186 ### Vorbis ###
187 @USE_VORBIS_TRUE@%package -n gstreamer-vorbis
188 @USE_VORBIS_TRUE@Summary: Gstreamer plugin for encoding and decoding Ogg Vorbis audio files
189 @USE_VORBIS_TRUE@Group: Libraries/Multimedia
190 @USE_VORBIS_TRUE@Requires: libogg >= 1.0beta4
191 @USE_VORBIS_TRUE@Requires: libvorbis >= 1.0beta4
192 @USE_VORBIS_TRUE@Requires: gstreamer-plugins >= %{ver}
193 @USE_VORBIS_TRUE@
194 @USE_VORBIS_TRUE@%description -n gstreamer-vorbis
195 @USE_VORBIS_TRUE@Plugins for creating and playing Ogg Vorbis audio files.
196 @USE_VORBIS_TRUE@
197 @USE_VORBIS_TRUE@%files -n gstreamer-vorbis  
198 @USE_VORBIS_TRUE@%defattr(-, root, root)
199 @USE_VORBIS_TRUE@%{prefix}/lib/gst/libgstvorbis*
200 @USE_VORBIS_TRUE@
201 @USE_VORBIS_TRUE@%post -n gstreamer-vorbis
202 @USE_VORBIS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
203 @USE_VORBIS_TRUE@
204 @USE_VORBIS_TRUE@%postun -n gstreamer-vorbis
205 @USE_VORBIS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
206 @USE_VORBIS_TRUE@/sbin/ldconfig
208 @USE_AALIB_TRUE@%package -n gstreamer-aalib
209 @USE_AALIB_TRUE@Summary: Gstreamer plugin for Ascii-art output
210 @USE_AALIB_TRUE@Group: Libraries/Multimedia
211 @USE_AALIB_TRUE@Requires: aalib >= 1.3
212 @USE_AALIB_TRUE@BuildRequires: aalib-devel >= 1.3
213 @USE_AALIB_TRUE@Requires: gstreamer-plugins >= %{ver}
214 @USE_AALIB_TRUE@
215 @USE_AALIB_TRUE@%description -n gstreamer-aalib
216 @USE_AALIB_TRUE@Plugin for viewing movies in Ascii-art using aalib library.
217 @USE_AALIB_TRUE@
218 @USE_AALIB_TRUE@%files -n gstreamer-aalib
219 @USE_AALIB_TRUE@%defattr(-, root, root)
220 @USE_AALIB_TRUE@%{prefix}/lib/gst/libgstaa*
221 @USE_AALIB_TRUE@
222 @USE_AALIB_TRUE@%post -n gstreamer-aalib
223 @USE_AALIB_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
225 @USE_AUDIOFILE_TRUE@%package -n gstreamer-audiofile
226 @USE_AUDIOFILE_TRUE@Summary: GStreamer plugin audiofile support
227 @USE_AUDIOFILE_TRUE@Group: Libraries/Multimedia
228 @USE_AUDIOFILE_TRUE@Requires: gstreamer-plugins >= %{ver}
229 @USE_AUDIOFILE_TRUE@Requires: audiofile >= 0.2.1
230 @USE_AUDIOFILE_TRUE@Requires: gstreamer-plugin-libs = %{ver}
231 @USE_AUDIOFILE_TRUE@
232 @USE_AUDIOFILE_TRUE@%description -n gstreamer-audiofile
233 @USE_AUDIOFILE_TRUE@Plugin for supporting reading and writing all files audiofile support
234 @USE_AUDIOFILE_TRUE@
235 @USE_AUDIOFILE_TRUE@%files -n gstreamer-audiofile
236 @USE_AUDIOFILE_TRUE@%defattr(-, root, root)
237 @USE_AUDIOFILE_TRUE@%{prefix}/lib/gst/libafs*
238 @USE_AUDIOFILE_TRUE@
239 @USE_AUDIOFILE_TRUE@%post -n  gstreamer-audiofile
240 @USE_AUDIOFILE_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
242 @USE_AVIFILE_TRUE@%package -n gstreamer-avi
243 @USE_AVIFILE_TRUE@Summary: Gstreamer plugin for AVI format movie playback
244 @USE_AVIFILE_TRUE@Group: Libraries/Multimedia
245 @USE_AVIFILE_TRUE@Requires: gstreamer-plugins >= %{ver}
246 @USE_AVIFILE_TRUE@Requires: gstreamer-plugin-libs = %{ver}
247 @USE_AVIFILE_TRUE@Requires: avifile = 0.6.20011111DD
248 @USE_AVIFILE_TRUE@Requires: gstreamer-colorspace >= %{ver}
249 @USE_AVIFILE_TRUE@
250 @USE_AVIFILE_TRUE@%description -n gstreamer-avi
251 @USE_AVIFILE_TRUE@Plugins for playback of AVI format media files.
252 @USE_AVIFILE_TRUE@
253 @USE_AVIFILE_TRUE@%files -n gstreamer-avi
254 @USE_AVIFILE_TRUE@%defattr(-, root, root)
255 @USE_AVIFILE_TRUE@%{prefix}/lib/gst/libgstavi*
256 @USE_AVIFILE_TRUE@%{prefix}/lib/gst/libwin*
257 @USE_AVIFILE_TRUE@
258 @USE_AVIFILE_TRUE@%post -n gstreamer-avi
259 @USE_AVIFILE_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
261 @USE_CDPARANOIA_TRUE@%package -n gstreamer-cdparanoia
262 @USE_CDPARANOIA_TRUE@Summary: Gstreamer plugin for CD audio input using CDParanoia IV
263 @USE_CDPARANOIA_TRUE@Group: Libraries/Multimedia
264 @USE_CDPARANOIA_TRUE@Requires: cdparanoia >= alpha9.7
265 @USE_CDPARANOIA_TRUE@Requires: gstreamer-plugins >= %{ver}
266 @USE_CDPARANOIA_TRUE@BuildRequires: cdparanoia-devel >= alpha9.7
267 @USE_CDPARANOIA_TRUE@
268 @USE_CDPARANOIA_TRUE@%description -n gstreamer-cdparanoia
269 @USE_CDPARANOIA_TRUE@Plugin for ripping audio tracks using cdparanoia under GStreamer
270 @USE_CDPARANOIA_TRUE@
271 @USE_CDPARANOIA_TRUE@%files -n gstreamer-cdparanoia
272 @USE_CDPARANOIA_TRUE@%defattr(-, root, root)
273 @USE_CDPARANOIA_TRUE@%{prefix}/lib/gst/libgstcdparanoia*
274 @USE_CDPARANOIA_TRUE@
275 @USE_CDPARANOIA_TRUE@%post -n gstreamer-cdparanoia
276 @USE_CDPARANOIA_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
278 @USE_FLAC_TRUE@%package -n gstreamer-flac
279 @USE_FLAC_TRUE@Summary: Gstreamer plugin for FLAC lossless audio format
280 @USE_FLAC_TRUE@Group: Libraries/Multimedia
281 @USE_FLAC_TRUE@Requires: gstreamer-plugins >= %{ver}
282 @USE_FLAC_TRUE@
283 @USE_FLAC_TRUE@%description -n gstreamer-flac
284 @USE_FLAC_TRUE@Plugin for the free FLAC lossless audio format.
285 @USE_FLAC_TRUE@
286 @USE_FLAC_TRUE@%files -n gstreamer-flac
287 @USE_FLAC_TRUE@%defattr(-, root, root)
288 @USE_FLAC_TRUE@%{prefix}/lib/gst/libgstflac*
289 @USE_FLAC_TRUE@
290 @USE_FLAC_TRUE@%post -n gstreamer-flac
291 @USE_FLAC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
293 @USE_GNOME_VFS_TRUE@%package -n gstreamer-gnomevfs
294 @USE_GNOME_VFS_TRUE@Summary: GStreamer plugins for GNOME VFS input and output
295 @USE_GNOME_VFS_TRUE@Group: Libraries/Multimedia
296 @USE_GNOME_VFS_TRUE@Requires: gnome-vfs2 > 1.9.4.00
297 @USE_GNOME_VFS_TRUE@Requires: gstreamer-plugins >= %{ver}
298 @USE_GNOME_VFS_TRUE@BuildRequires: gnome-vfs2-devel > 1.9.4.00
299 @USE_GNOME_VFS_TRUE@
300 @USE_GNOME_VFS_TRUE@%description -n gstreamer-gnomevfs
301 @USE_GNOME_VFS_TRUE@Plugins for reading and writing through GNOME VFS.
302 @USE_GNOME_VFS_TRUE@
303 @USE_GNOME_VFS_TRUE@%files -n gstreamer-gnomevfs
304 @USE_GNOME_VFS_TRUE@%defattr(-, root, root)
305 @USE_GNOME_VFS_TRUE@%{prefix}/lib/gst/libgstgnomevfs*
306 @USE_GNOME_VFS_TRUE@
307 @USE_GNOME_VFS_TRUE@%post -n gstreamer-gnomevfs
308 @USE_GNOME_VFS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
310 @USE_GSM_TRUE@%package -n gstreamer-gsm
311 @USE_GSM_TRUE@Summary: GStreamer plugin for GSM lossy audio format
312 @USE_GSM_TRUE@Group: Libraries/Multimedia
313 @USE_GSM_TRUE@Requires: gsm >= 1.0.10
314 @USE_GSM_TRUE@Requires: gstreamer-plugins >= %{ver}
315 @USE_GSM_TRUE@
316 @USE_GSM_TRUE@%description -n gstreamer-gsm
317 @USE_GSM_TRUE@Output plugin for GStreamer to convert to GSM lossy audio format.
318 @USE_GSM_TRUE@
319 @USE_GSM_TRUE@%files -n gstreamer-gsm
320 @USE_GSM_TRUE@%defattr(-, root, root)
321 @USE_GSM_TRUE@%{prefix}/lib/gst/libgstgsm*
322 @USE_GSM_TRUE@
323 @USE_GSM_TRUE@%post -n gstreamer-gsm
324 @USE_GSM_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
326 @USE_JPEG_TRUE@%package -n gstreamer-jpeg
327 @USE_JPEG_TRUE@Summary: Gstreamer plugin for jpeg images
328 @USE_JPEG_TRUE@Group: Libraries/Multimedia
329 @USE_JPEG_TRUE@Requires: libjpeg
330 @USE_JPEG_TRUE@Requires: gstreamer-plugins >= %{ver}
331 @USE_JPEG_TRUE@
332 @USE_JPEG_TRUE@%description -n gstreamer-jpeg
333 @USE_JPEG_TRUE@Output plugin for GStreamer using libjpeg
334 @USE_JPEG_TRUE@
335 @USE_JPEG_TRUE@%files -n gstreamer-jpeg
336 @USE_JPEG_TRUE@%defattr(-, root, root)
337 @USE_JPEG_TRUE@%{prefix}/lib/gst/libgstjpeg*
338 @USE_JPEG_TRUE@
339 @USE_JPEG_TRUE@%post -n gstreamer-jpeg
340 @USE_JPEG_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
342 @USE_MJPEGTOOLS_TRUE@%package -n gstreamer-jpegmmx
343 @USE_MJPEGTOOLS_TRUE@Summary: Gstreamer mjpegtools
344 @USE_MJPEGTOOLS_TRUE@Group: Libraries/Multimedia
345 @USE_MJPEGTOOLS_TRUE@Requires: gstreamer-plugins >= %{ver}
346 @USE_MJPEGTOOLS_TRUE@
347 @USE_MJPEGTOOLS_TRUE@%description -n gstreamer-jpegmmx
348 @USE_MJPEGTOOLS_TRUE@Mgpegtools based encoding and decoding plugin
349 @USE_MJPEGTOOLS_TRUE@
350 @USE_MJPEGTOOLS_TRUE@%files -n gstreamer-jpegmmx
351 @USE_MJPEGTOOLS_TRUE@%defattr(-, root, root)
352 @USE_MJPEGTOOLS_TRUE@%{prefix}/lib/gst/libgstjpegmmx*
353 @USE_MJPEGTOOLS_TRUE@
354 @USE_MJPEGTOOLS_TRUE@%post -n gstreamer-jpegmmx
355 @USE_MJPEGTOOLS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
357 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg
358 @USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for MPEG video playback and encoding
359 @USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
360 @USE_MPEG2DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
361 @USE_MPEG2DEC_TRUE@Requires: mpeg2dec => 0.2.0
362 @USE_MPEG2DEC_TRUE@Requires: gstreamer-plugin-libs => %{ver}
363 @USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg1
364 @USE_MPEG2DEC_TRUE@Obsoletes: gstreamer-mpeg2
365 @USE_MPEG2DEC_TRUE@
366 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg
367 @USE_MPEG2DEC_TRUE@Plugins for playing and encoding MPEG video
368 @USE_MPEG2DEC_TRUE@
369 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg
370 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
371 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1types*
372 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg1encoder*
373 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegaudio*
374 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp1*
375 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpegstream*
376 # @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2play*
377 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2enc*
378 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2subt*
379 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2types*
380 # @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmp2videoparse*
381 @USE_MPEG2DEC_TRUE@
382 @USE_MPEG2DEC_TRUE@%post -n  gstreamer-mpeg
383 @USE_MPEG2DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
385 @USE_MPEG2DEC_TRUE@%package -n gstreamer-mpeg2dec
386 @USE_MPEG2DEC_TRUE@Summary: GStreamer plugins for Mpeg level 2 playback
387 @USE_MPEG2DEC_TRUE@Group: Libraries/Multimedia
388 @USE_MPEG2DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
389 @USE_MPEG2DEC_TRUE@Requires: mpeg2dec >= 0.2.0
390 @USE_MPEG2DEC_TRUE@
391 @USE_MPEG2DEC_TRUE@%description -n gstreamer-mpeg2dec
392 @USE_MPEG2DEC_TRUE@Plugins for playing mpeg level 2 encoded movies
393 @USE_MPEG2DEC_TRUE@
394 @USE_MPEG2DEC_TRUE@%files -n gstreamer-mpeg2dec
395 @USE_MPEG2DEC_TRUE@%defattr(-, root, root)
396 @USE_MPEG2DEC_TRUE@%{prefix}/lib/gst/libgstmpeg2dec*
397 @USE_MPEG2DEC_TRUE@
398 @USE_MPEG2DEC_TRUE@%post -n  gstreamer-mpeg2dec
399 @USE_MPEG2DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
401 @USE_SDL_TRUE@%package -n gstreamer-sdl
402 @USE_SDL_TRUE@Summary: Gstreamer plugin for outputing to SDL
403 @USE_SDL_TRUE@Group: Libraries/Multimedia
404 @USE_SDL_TRUE@Requires: SDL >= 1.2.0
405 @USE_SDL_TRUE@Requires: gstreamer-plugins >= %{ver}
406 @USE_SDL_TRUE@BuildRequires: SDL-devel >= 1.2.0
407 @USE_SDL_TRUE@
408 @USE_SDL_TRUE@%description -n gstreamer-sdl
409 @USE_SDL_TRUE@Plugin for sending output to the Simple Direct Media architecture.
410 @USE_SDL_TRUE@(http://www.libsdl.org). Usefull for fullscreen playback.
411 @USE_SDL_TRUE@
412 @USE_SDL_TRUE@%files -n gstreamer-sdl
413 @USE_SDL_TRUE@%defattr(-, root, root)
414 @USE_SDL_TRUE@%{prefix}/lib/gst/libsdl*
415 @USE_SDL_TRUE@
416 @USE_SDL_TRUE@%post -n gstreamer-sdl
417 @USE_SDL_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
419 @USE_OPENQUICKTIME_TRUE@%package -n gstreamer-openquicktime
420 @USE_OPENQUICKTIME_TRUE@Summary: GStreamer OpenQuicktime video Plugin
421 @USE_OPENQUICKTIME_TRUE@Group: Libraries/Multimedia
422 @USE_OPENQUICKTIME_TRUE@Requires: gstreamer-plugins >= %{ver}
423 @USE_OPENQUICKTIME_TRUE@Requires: openquicktime => 0.9
424 @USE_OPENQUICKTIME_TRUE@
425 @USE_OPENQUICKTIME_TRUE@%description -n gstreamer-openquicktime
426 @USE_OPENQUICKTIME_TRUE@Plugin which uses the OpenQuicktime library
427 @USE_OPENQUICKTIME_TRUE@from 3ivx to play Quicktime movies.
428 @USE_OPENQUICKTIME_TRUE@(http://openquicktime.sourceforge.net/)
429 @USE_OPENQUICKTIME_TRUE@
430 @USE_OPENQUICKTIME_TRUE@%files -n gstreamer-openquicktime
431 @USE_OPENQUICKTIME_TRUE@%defattr(-, root, root)
432 @USE_OPENQUICKTIME_TRUE@%{prefix}/lib/gst/libgstopenquicktime*
433 @USE_OPENQUICKTIME_TRUE@
434 @USE_OPENQUICKTIME_TRUE@%post -n gstreamer-openquicktime
435 @USE_OPENQUICKTIME_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
437 # Video 4 Linux
438 @USE_V4L_TRUE@%package -n gstreamer-v4l
439 @USE_V4L_TRUE@Summary: GStreamer video for linux input plugin
440 @USE_V4L_TRUE@Group: Libraries/Multimedia
441 @USE_V4L_TRUE@Requires: gstreamer-plugins >= %{ver}
442 @USE_V4L_TRUE@
443 @USE_V4L_TRUE@%description -n gstreamer-v4l
444 @USE_V4L_TRUE@Plugin for accessing video for Linux streams.
445 @USE_V4L_TRUE@
446 @USE_V4L_TRUE@%files -n gstreamer-v4l
447 @USE_V4L_TRUE@%defattr(-, root, root)
448 @USE_V4L_TRUE@%{prefix}/lib/gst/libv4l*
449 @USE_V4L_TRUE@
450 @USE_V4L_TRUE@%post -n gstreamer-v4l
451 @USE_V4L_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
453 # ALSA Audio plugin
454 @USE_ALSA_TRUE@%package -n gstreamer-alsa
455 @USE_ALSA_TRUE@Summary: GStreamer plugins for the ALSA sound architecture
456 @USE_ALSA_TRUE@Group: Libraries/Multimedia
457 @USE_ALSA_TRUE@Requires: gstreamer-plugins >= %{ver}
458 @USE_ALSA_TRUE@
459 @USE_ALSA_TRUE@%description -n gstreamer-alsa
460 @USE_ALSA_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
461 @USE_ALSA_TRUE@
462 @USE_ALSA_TRUE@%files -n gstreamer-alsa
463 @USE_ALSA_TRUE@%defattr(-, root, root)
464 @USE_ALSA_TRUE@%{prefix}/lib/gst/libgstalsa*
465 @USE_ALSA_TRUE@
466 @USE_ALSA_TRUE@%post -n gstreamer-alsa
467 @USE_ALSA_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
469 @USE_DVDREAD_TRUE@%package -n gstreamer-libdvd
470 @USE_DVDREAD_TRUE@Summary: GStreamer plugins for DVD playback
471 @USE_DVDREAD_TRUE@Group: Libraries/Multimedia
472 @USE_DVDREAD_TRUE@Requires: gstreamer-plugins >= %{ver}
473 @USE_DVDREAD_TRUE@
474 @USE_DVDREAD_TRUE@%description -n gstreamer-libdvd
475 @USE_DVDREAD_TRUE@Input and output plugin for the ALSA soundcard driver architecture.
476 @USE_DVDREAD_TRUE@
477 @USE_DVDREAD_TRUE@%files -n gstreamer-libdvd
478 @USE_DVDREAD_TRUE@%defattr(-, root, root)
479 @USE_DVDREAD_TRUE@%{prefix}/lib/gst/libdvd*
480 @USE_DVDREAD_TRUE@
481 @USE_DVDREAD_TRUE@%post -n gstreamer-libdvd
482 @USE_DVDREAD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
484 @USE_A52DEC_TRUE@%package -n gstreamer-a52dec
485 @USE_A52DEC_TRUE@Summary: GStreamer VOB decoder plugin
486 @USE_A52DEC_TRUE@Group: Libraries/Multimedia
487 @USE_A52DEC_TRUE@Requires: gstreamer-plugins >= %{ver}
488 @USE_A52DEC_TRUE@Requires: a52dec >= 0.7.0
489 @USE_A52DEC_TRUE@
490 @USE_A52DEC_TRUE@%description -n gstreamer-a52dec
491 @USE_A52DEC_TRUE@Plugin for decoding of VOB files
492 @USE_A52DEC_TRUE@
493 @USE_A52DEC_TRUE@%files -n gstreamer-a52dec
494 @USE_A52DEC_TRUE@%defattr(-, root, root)
495 @USE_A52DEC_TRUE@%{prefix}/lib/gst/libgsta52dec*
496 @USE_A52DEC_TRUE@
497 @USE_A52DEC_TRUE@%post -n gstreamer-a52dec
498 @USE_A52DEC_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
500 @USE_MIKMOD_TRUE@%package -n gstreamer-mikmod
501 @USE_MIKMOD_TRUE@Summary: GStreamer Mikmod plugin
502 @USE_MIKMOD_TRUE@Group: Libraries/Multimedia
503 @USE_MIKMOD_TRUE@Requires: gstreamer-plugins >= %{ver}
504 @USE_MIKMOD_TRUE@
505 @USE_MIKMOD_TRUE@%description -n gstreamer-mikmod
506 @USE_MIKMOD_TRUE@Plugin for playback of module files supported by mikmod under GStreamer
507 @USE_MIKMOD_TRUE@
508 @USE_MIKMOD_TRUE@%files -n gstreamer-mikmod
509 @USE_MIKMOD_TRUE@%defattr(-, root, root)
510 @USE_MIKMOD_TRUE@%{prefix}/lib/gst/libgstmikmod*
511 @USE_MIKMOD_TRUE@
512 @USE_MIKMOD_TRUE@%post -n gstreamer-mikmod
513 @USE_MIKMOD_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
515 @USE_SIDPLAY_TRUE@%package -n gstreamer-sid
516 @USE_SIDPLAY_TRUE@Summary: GStreamer Sid C64 music plugin
517 @USE_SIDPLAY_TRUE@Group: Libraries/Multimedia
518 @USE_SIDPLAY_TRUE@Requires: gstreamer-plugins >= %{ver}
519 @USE_SIDPLAY_TRUE@Requires: libsidplay => 1.36.0
520 @USE_SIDPLAY_TRUE@%description -n gstreamer-sid
521 @USE_SIDPLAY_TRUE@Plugin for playback of C64 SID format music files
522 @USE_SIDPLAY_TRUE@
523 @USE_SIDPLAY_TRUE@%files -n gstreamer-sid
524 @USE_SIDPLAY_TRUE@%defattr(-, root, root)
525 @USE_SIDPLAY_TRUE@%{prefix}/lib/gst/libgstsid*
526 @USE_SIDPLAY_TRUE@
527 @USE_SIDPLAY_TRUE@%post -n gstreamer-sid
528 @USE_SIDPLAY_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
530 @USE_RTP_TRUE@%package -n gstreamer-rtp
531 @USE_RTP_TRUE@Summary: GStreamer RTP plugin
532 @USE_RTP_TRUE@Group: Libraries/Multimedia
533 @USE_RTP_TRUE@Requires: gstreamer-plugins >= %{ver}
534 @USE_RTP_TRUE@Requires: librtp >= 0.99
535 @USE_RTP_TRUE@
536 @USE_RTP_TRUE@%description -n gstreamer-rtp
537 @USE_RTP_TRUE@Library for transfering data with the RTP protocol
538 @USE_RTP_TRUE@
539 @USE_RTP_TRUE@%files -n gstreamer-rtp
540 @USE_RTP_TRUE@%defattr(-, root, root)
541 @USE_RTP_TRUE@%{prefix}/lib/gst/libgstrtp*
542 @USE_RTP_TRUE@
543 @USE_RTP_TRUE@%post -n gstreamer-rtp
544 @USE_RTP_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
546 @USE_ARTS_TRUE@%package -n gstreamer-artsd
547 @USE_ARTS_TRUE@Summary: GStreamer artsd output plugin
548 @USE_ARTS_TRUE@Group: Libraries/Multimedia
549 @USE_ARTS_TRUE@Requires: gstreamer-plugins >= %{ver}
550 @USE_ARTS_TRUE@
551 @USE_ARTS_TRUE@%description -n gstreamer-artsd
552 @USE_ARTS_TRUE@Plugin for outputing to artsd sound server
553 @USE_ARTS_TRUE@
554 @USE_ARTS_TRUE@%files -n gstreamer-artsd
555 @USE_ARTS_TRUE@%defattr(-, root, root)
556 @USE_ARTS_TRUE@%{prefix}/lib/gst/libartsd*
557 @USE_ARTS_TRUE@
558 @USE_ARTS_TRUE@%post -n gstreamer-artsd
559 @USE_ARTS_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
561 @USE_RAW1394_TRUE@%package -n gstreamer-dv
562 @USE_RAW1394_TRUE@Summary: GStreamer dv plugin
563 @USE_RAW1394_TRUE@Group: Libraries/Multimedia
564 @USE_RAW1394_TRUE@Requires: gstreamer-plugins >= %{ver}
565 @USE_RAW1394_TRUE@
566 @USE_RAW1394_TRUE@%description -n gstreamer-dv
567 @USE_RAW1394_TRUE@Plugin for digital video support
568 @USE_RAW1394_TRUE@
569 @USE_RAW1394_TRUE@%files -n gstreamer-dv
570 @USE_RAW1394_TRUE@%defattr(-, root, root)
571 @USE_RAW1394_TRUE@%{prefix}/lib/gst/gstdv*
572 @USE_RAW1394_TRUE@
573 @USE_RAW1394_TRUE@%post -n gstreamer-dv
574 @USE_RAW1394_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
576 ### Icecast ###
577 @USE_SHOUT_TRUE@%package -n gstreamer-icecast
578 @USE_SHOUT_TRUE@Summary: GStreamer Icecast broadcasting plugin
579 @USE_SHOUT_TRUE@Group: Libraries/Multimedia
580 @USE_SHOUT_TRUE@Requires: gstreamer-plugins >= %{ver}
581 @USE_SHOUT_TRUE@Requires: gstreamer-plugin-libs = %{ver}
582 @USE_SHOUT_TRUE@Requires: libshout >= 1.0.5
583 @USE_SHOUT_TRUE@%description -n gstreamer-icecast
584 @USE_SHOUT_TRUE@Plugin for broadcasting audio with the Icecast server
586 @USE_SHOUT_TRUE@%files -n gstreamer-icecast
587 @USE_SHOUT_TRUE@%defattr(-, root, root)
588 @USE_SHOUT_TRUE@%{prefix}/lib/gst/libgstshout*
590 @USE_SHOUT_TRUE@%post -n gstreamer-icecast
591 @USE_SHOUT_TRUE@%{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
594 %package -n gstreamer-audio-effects
595 Summary: GStreamer audio effects plugin
596 Group: Libraries/Multimedia
597 Requires: gstreamer-plugins >= %{ver}
599 %description -n gstreamer-audio-effects
600 Plugin with various audio effects including resampling, 
601 sine waves generation, silence generation plugin
603 %files -n gstreamer-audio-effects
604 %defattr(-, root, root)
605 %{prefix}/lib/gst/libgstresample*
606 %{prefix}/lib/gst/libgstsine*
607 %{prefix}/lib/gst/libgstsilence*
608 %{prefix}/lib/gst/libgststereo*
609 %{prefix}/lib/gst/libgstvol*
610 %{prefix}/lib/gst/libgstplayondemand*
611 %{prefix}/lib/gst/libgstspeed*
613 %post -n gstreamer-audio-effects
614 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
616 %package -n gstreamer-lavencode
617 Summary: GStreamer YUV to LAV converter
618 Group: Libraries/Multimedia
619 Requires: gstreamer-plugins >= %{ver}
621 %description -n gstreamer-lavencode
622 It takes YUV video frames and adds a header in front of it so it can be processed with the lavtools from mjpeg
624 %files -n gstreamer-lavencode
625 %defattr(-, root, root)
626 %{prefix}/lib/gst/libgsty4m*
628 %post -n gstreamer-lavencode
629 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
631 %package -n gstreamer-qcam
632 Summary: GStreamer QuickCam plugin
633 Group: Libraries/Multimedia
634 Requires: gstreamer-plugins >= %{ver}
636 %description -n gstreamer-qcam
637 Plugin for accessing a Quickcam source
639 %files -n gstreamer-qcam
640 %defattr(-, root, root)
641 %{prefix}/lib/gst/libgstqcam*
643 %post -n gstreamer-qcam
644 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
646 %package -n gstreamer-vcd
647 Summary: GStreamer Video CD plugin
648 Group: Libraries/Multimedia
649 Requires: gstreamer-plugins >= %{ver}
651 %description -n gstreamer-vcd
652 Video CD parsing and playback
654 %files -n gstreamer-vcd
655 %defattr(-, root, root)
656 %{prefix}/lib/gst/libvcd*
657 %{prefix}/lib/gst/libgstcdxa*
659 %package -n gstreamer-ladspa
660 Summary: Gstreamer wrapper for LADSPA plugins
661 Group: Libraries/Multimedia
662 Requires: gstreamer-plugins >= %{ver}
664 %files -n gstreamer-ladspa
665 %defattr(-, root, root)
666 %{prefix}/lib/gst/libgstladspa*
668 %description -n gstreamer-ladspa
669 Plugin which wraps LADSPA plugins for use by GStreamer applications.
671 %post -n gstreamer-ladspa
672 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
674 %package -n gstreamer-udp
675 Summary: GStreamer plugins for UDP tranport
676 Group: Libraries/Multimedia
677 Requires: gstreamer-plugins >= %{ver}
679 %description -n gstreamer-udp
680 Plugins for UDP transport
682 %files -n gstreamer-udp
683 %defattr(-, root, root)
684 %{prefix}/lib/gst/libgstudp*
686 %post -n gstreamer-udp
687 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
689 %package -n gstreamer-flx
690 Summary: GStreamer plugin for FLI/FLX animation format
691 Group: Libraries/Multimedia
692 Requires: gstreamer-plugins >= %{ver}
693 Requires: gstreamer-plugin-libs = %{ver}
694 Requires: gstreamer-colorspace >= %{ver}
695 %description -n gstreamer-flx
696 Plugin for playing FLI/FLX animations under GStreamer
698 %files -n gstreamer-flx
699 %defattr(-, root, root)
700 %{prefix}/lib/gst/libgstflx*
702 %post -n gstreamer-flx
703 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
705 %package -n gstreamer-deinterlace
706 Summary: GStreamer Video deinterlacer
707 Group: Libraries/Multimedia
708 Requires: gstreamer-plugins >= %{ver}
710 %description -n gstreamer-deinterlace
711 Video deinterlace plugin
713 %files -n gstreamer-deinterlace
714 %defattr(-, root, root)
715 %{prefix}/lib/gst/libgstdeinterlace*
717 %post -n gstreamer-deinterlace
718 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
720 %package -n gstreamer-visualisation
721 Summary: GStreamer visualisations plugins
722 Group: Libraries/Multimedia
723 Requires: gstreamer-plugins >= %{ver}
725 %description -n gstreamer-visualisation
726 Various plugins for visual effects to use with audio. Included are Smoothwave, Spectrum, Goom, Chart and vumeter
728 %files -n gstreamer-visualisation
729 %defattr(-, root, root)
730 %{prefix}/lib/gst/libgstsmooth*
731 %{prefix}/lib/gst/libgstspectrum*
732 %{prefix}/lib/gst/libgstvu*
733 %{prefix}/lib/gst/libgstgoom*
734 %{prefix}/lib/gst/libchart*
735 %{prefix}/lib/gst/libgstmonoscope*
737 %post -n gstreamer-visualisation
738 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
740 %package -n gstreamer-plugin-libs
741 Summary: GStreamer support libraries
742 Group: Libraries/Multimedia
743 Requires: gstreamer-plugins >= %{ver}
745 %description -n gstreamer-plugin-libs
746 GStreamer support libraries
748 %files -n gstreamer-plugin-libs
749 %defattr(-, root, root)
750 %{prefix}/lib/gst/libgstaudio*
751 %{prefix}/lib/gst/libgstidct*
752 %{prefix}/lib/gst/libgstriff*
753 %{prefix}/lib/gst/libgstresample*
755 %package -n gstreamer-misc
756 Summary: GStreamer plugins for various effects
757 Group: Libraries/Multimedia
758 Requires: gstreamer-plugins >= %{ver}
760 %description -n gstreamer-misc
761 Plugins for various codecs, effects 
762 and so on.
764 %files -n gstreamer-misc
765 %defattr(-, root, root)
766 %{prefix}/lib/gst/libgstadder*
767 %{prefix}/lib/gst/libgstalaw*
768 %{prefix}/lib/gst/libgstintfloat*
769 %{prefix}/lib/gst/libgstlevel*
770 %{prefix}/lib/gst/libgstmedian*
771 %{prefix}/lib/gst/libgstmono2stereo*
772 %{prefix}/lib/gst/libgstmulaw*
773 %{prefix}/lib/gst/libgstpassthrough*
774 %{prefix}/lib/gst/libgstrtjpe*
776 %post -n gstreamer-misc
777 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
779 %package -n gstreamer-audio-formats
780 Summary: GStreamer audio format plugin
781 Group: Libraries/Multimedia
782 Requires: gstreamer-plugins >= %{ver}
783 Requires: gstreamer-plugin-libs = %{ver}
785 %description -n gstreamer-audio-formats
786 Plugin for playback of wav, au and mp3 audio files
788 %files -n gstreamer-audio-formats
789 %defattr(-, root, root)
790 %{prefix}/lib/gst/libgstwavparse*
791 %{prefix}/lib/gst/libgstauparse*
792 %{prefix}/lib/gst/libgstmp3types*
793 %{prefix}/lib/gst/libgstmodplug*
795 %post -n gstreamer-audio-formats
796 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null
798 %package -n gstreamer-videosink
799 Summary: GStreamer Video Sink
800 Group: Libraries/Multimedia
801 Requires: gstreamer-plugins >= %{ver}
802 Requires: gstreamer-plugin-libs = %{ver}
804 %description -n gstreamer-videosink
805 Plugin for playback of wav, au and mp3 audio files
807 %files -n gstreamer-videosink
808 %defattr(-, root, root)
809 %{prefix}/lib/gst/libvideosink*
811 %post -n gstreamer-videosink
812 %{prefix}/bin/gst-register --gst-mask=0 2> /dev/null