Fri Aug 8 21:28:06 2014 UTC ()
Update to 1.4.0:

This is GStreamer Good Plugins 1.4.0

Changes since 1.2:

New API:
 • GstMessageType has GST_MESSAGE_EXTENDED added. All types before
   that can be used together as a flags type as before, but from
   that message onwards the types are just counted incrementally.
   This was necessary to be able to add more message types.
   In 2.0 GstMessageType will just become an enum and not a flags
   type anymore.
 • GstDeviceMonitor for device probing, e.g. to list all available
   audio or video capture devices. This is the replacement for
   GstPropertyProbe from 0.10.
 • Events accumulate the running-time offset now when travelling
   through pads, as set by the gst_pad_set_offset() function. This
   allows to compensate for this in the QOS event for example.
 • GstBuffer has a new flag "tag-memory" that is set automatically
   when memory is added or removed to a buffer. This allows buffer
   pools to detect if they can recycle a buffer or need to reset
   it first.
 • GstToc has new API to mark GstTocEntries as loops.
 • A not-authorized resource error has been defined to notify
   applications that accessing the resource has failed because
   of missing authorization and to distinguish this case from others.
   This change is actually already in 1.2.4.
 • GstPad has a new flag "accept-intersect", that will let the default
   ACCEPT_CAPS query handler do an intersection instead of subset check.
   This is interesting for parser elements that can handle incomplete
   caps.
 • GstCollectPads has support for flushing and a default handler for
   SEEK events now.
 • New GstFlowAggregator helper object that simplifies handling of
   flow returns in elements with multiple source pads. Additionally
   GstPad now always stores the last flow return and provides an
   API to retrieve it.
 • GstSegment has new API to offset the running time by a specific
   value and this is used in GstPad to allow positive and negative
   offsets in gst_pad_set_offset() in all situations.
 • Support for h265/HEVC and VP8 has been added to the codec utils and codec
   parsers library, and was integrated into various elements.
 • API for adjusting the TLS validation of RTSP connection has been added.
 • The RTSP and SDP library has MIKEY (RFC 3830) support now, and
   there is API to distinguish between the different RTSP profiles.
 • API to access RTP time information and statistics.
 • Support for auxiliary streams was added to rtpbin.
 • Support for tiled, raw video formats has been added.
 • GstVideoDecoder and GstAudioDecoder have API to help aggregating tag
   events and merge custom tags into them consistently.
 • GstBufferPool has support for flushing now.
 • playbin/playsink has support for application provided audio and video
   filters.
 • GstDiscoverer has new and simplified API to get details about missing
   plugins and information to pass to the plugin installer.
 • The GL library was merged from gst-plugins-gl to gst-plugins-bad,
   providing a generic infrastructure for handling GL inside GStreamer
   pipelines and a plugin with some elements using these, especially
   a video sink. Supported platforms currently are Android, Cocoa (OS X),
   DispManX (Raspberry Pi), EAGL (iOS), WGL (Windows) and generic X11,
   Wayland and EGL platforms.
   This replaces eglglessink and also is supposed to replace osxvideosink.
 • New GstAggregator base class in gst-plugins-bad. This is supposed to
   replace GstCollectPads in the future and fix long-known shortcomings
   in its API. Together with the base class some elements are provided
   already, like a videomixer (compositor).

Major changes:
 • New plugins and elements:
   ∘ v4l2videodec element for accessing hardware codecs on
     platforms that make them accessible via V4L2, e.g.
     Samsung Exynos. This comes together with major refactoring
     of the existing V4L2 elements and the corresponding
     infrastructure.
     The v4l2videodec element replaces the mfcdec element.
   ∘ New downloadbuffer element that replaces the download
     buffering feature of queue2. Compared to queue2's code
     it is much simpler and only for this single use case.
     A noteworthy new feature is that it's downloading gaps
     in the already downloaded stream parts when nothing else
     is to be downloaded.
     This is now used by playbin when download buffering is
     enabled.
   ∘ rtpstreampay and rtpstreamdepay elements for transmitting
     RTP packets over a stream API (e.g. TCP) according to
     RFC 4571.
   ∘ rtprtx elements for standard compliant implementation of
     retransmissions, integrated into the rtpmanager plugin.
   ∘ audiomixer element that mixes multiple audio streams together
     into a single one while keeping synchronization. This is
     planned to become the replacement of the adder element.
   ∘ OpenNI2 plugin for 3D cameras like the Kinect camera.
   ∘ OpenEXR plugin for decoding high-dynamic-range EXR images.
   ∘ curlsshsink and curlsftpsink to write files via SSH/SFTP.
   ∘ videosignal, ivfparse and sndfile plugins ported from 0.10.
   ∘ avfvideosrc, vtdec and other elements were ported from 0.10 and
     are available on OS X and iOS now.

 • Other changes:
   ∘ gst-libav now uses libav 10.2, and gained support for H265/HEVC.
   ∘ Support for hardware codecs and special memory types has been
     improved with bugfixes and feature additions in various plugins
     and base classes.
   ∘ Various bugfixes and improvements to buffering in queue2 and
     multiqueue elements.
   ∘ dvbsrc supports more delivery mechanisms and other features
     now, including DVB S2 and T2 support.
   ∘ The MPEGTS library has support for many more descriptors.
   ∘ Major improvements to tsdemux and tsparse, especially time and
     seeking related.
   ∘ souphttpsrc now has support for keep-alive connections,
     compression, configurable number of retries and configuration
     for SSL certificate validation.
   ∘ hlsdemux has undergone major refactoring and works more
     reliable now and supports more HLS features like trick modes.
     Also fragments are pushed downstream while they're downloaded
     now instead of waiting for each fragment to finish.
   ∘ dashdemux and mssdemux are now also pushing fragments downstream
     while they're downloaded instead of waiting for each fragment to
     finish.
   ∘ videoflip can automatically flip based on the orientation tag.
   ∘ openjpeg supports the OpenJPEG2 API.
   ∘ waylandsink was refactored and should be more useful now. It also
     includes a small library which most likely is going to be removed
     in the future and will result in extensions to the GstVideoOverlay
     interface.
   ∘ gst-rtsp-server supports SRTP and MIKEY now.
   ∘ gst-libav encoders are now negotiating any profile/level settings
     with downstream via caps.
   ∘ Lots of fixes for coverity warnings all over the place.
   ∘ Negotiation related performance improvements.
   ∘ 800+ fixed bug reports, and many other bug fixes and other
     improvements everywhere that had no bug report.

Things to look out for:
 • The eglglessink element was removed and replaced by the glimagesink
   element.
 • The mfcdec element was removed and replaced by v4l2videodec.
 • osxvideosink is only available in OS X 10.6 or newer.
 • On Android the namespace of the automatically generated Java class
   for initialization of GStreamer has changed from com.gstreamer to
   org.freedesktop.gstreamer to prevent namespace pollution.
 • On iOS you have to update your gst_ios_init.h and gst_ios_init.m in
   your projects from the one included in the binaries if you used the
   GnuTLS GIO module before. The loading mechanism has slightly changed.


(wiz)
diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/Makefile
diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/PLIST
diff -r1.8 -r1.9 pkgsrc/multimedia/gst-plugins1-good/Makefile.common
diff -r1.7 -r1.8 pkgsrc/multimedia/gst-plugins1-good/distinfo
diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/patch-ab
diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/patch-ba
diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/patch-sys_v4l2_gstv4l2object.c
diff -r1.1 -r1.2 pkgsrc/multimedia/gst-plugins1-good/patches/patch-bb

cvs diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/Makefile (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/Makefile 2013/04/06 03:45:20 1.2
+++ pkgsrc/multimedia/gst-plugins1-good/Makefile 2014/08/08 21:28:06 1.3
@@ -1,15 +1,14 @@ @@ -1,15 +1,14 @@
1# $NetBSD: Makefile,v 1.2 2013/04/06 03:45:20 rodent Exp $ 1# $NetBSD: Makefile,v 1.3 2014/08/08 21:28:06 wiz Exp $
2# 
3 2
4.include "Makefile.common" 3.include "Makefile.common"
5 4
6COMMENT+= Good plugins 5COMMENT+= Good plugins
7 6
8CONFIGURE_ARGS+= --enable-zlib 7CONFIGURE_ARGS+= --enable-zlib
9 8
10PKGCONFIG_OVERRIDE+= pkgconfig/*.pc.in 9PKGCONFIG_OVERRIDE+= pkgconfig/*.pc.in
11 10
12# only useful if gstreamer was built with the "gstcheck" option 11# only useful if gstreamer was built with the "gstcheck" option
13TEST_TARGET= check-torture 12TEST_TARGET= check-torture
14 13
15.include "../../archivers/bzip2/buildlink3.mk" 14.include "../../archivers/bzip2/buildlink3.mk"

cvs diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/PLIST (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/PLIST 2013/03/15 18:34:47 1.2
+++ pkgsrc/multimedia/gst-plugins1-good/PLIST 2014/08/08 21:28:06 1.3
@@ -1,26 +1,27 @@ @@ -1,26 +1,27 @@
1@comment $NetBSD: PLIST,v 1.2 2013/03/15 18:34:47 drochner Exp $ 1@comment $NetBSD: PLIST,v 1.3 2014/08/08 21:28:06 wiz Exp $
2lib/gstreamer-1.0/libgstalaw.la 2lib/gstreamer-1.0/libgstalaw.la
3lib/gstreamer-1.0/libgstalpha.la 3lib/gstreamer-1.0/libgstalpha.la
4lib/gstreamer-1.0/libgstalphacolor.la 4lib/gstreamer-1.0/libgstalphacolor.la
5lib/gstreamer-1.0/libgstapetag.la 5lib/gstreamer-1.0/libgstapetag.la
6lib/gstreamer-1.0/libgstaudiofx.la 6lib/gstreamer-1.0/libgstaudiofx.la
7lib/gstreamer-1.0/libgstaudioparsers.la 7lib/gstreamer-1.0/libgstaudioparsers.la
8lib/gstreamer-1.0/libgstauparse.la 8lib/gstreamer-1.0/libgstauparse.la
9lib/gstreamer-1.0/libgstautodetect.la 9lib/gstreamer-1.0/libgstautodetect.la
10lib/gstreamer-1.0/libgstavi.la 10lib/gstreamer-1.0/libgstavi.la
11lib/gstreamer-1.0/libgstcutter.la 11lib/gstreamer-1.0/libgstcutter.la
12lib/gstreamer-1.0/libgstdebug.la 12lib/gstreamer-1.0/libgstdebug.la
13lib/gstreamer-1.0/libgstdeinterlace.la 13lib/gstreamer-1.0/libgstdeinterlace.la
 14lib/gstreamer-1.0/libgstdtmf.la
14lib/gstreamer-1.0/libgsteffectv.la 15lib/gstreamer-1.0/libgsteffectv.la
15lib/gstreamer-1.0/libgstequalizer.la 16lib/gstreamer-1.0/libgstequalizer.la
16lib/gstreamer-1.0/libgstflv.la 17lib/gstreamer-1.0/libgstflv.la
17lib/gstreamer-1.0/libgstflxdec.la 18lib/gstreamer-1.0/libgstflxdec.la
18lib/gstreamer-1.0/libgstgoom.la 19lib/gstreamer-1.0/libgstgoom.la
19lib/gstreamer-1.0/libgstgoom2k1.la 20lib/gstreamer-1.0/libgstgoom2k1.la
20lib/gstreamer-1.0/libgsticydemux.la 21lib/gstreamer-1.0/libgsticydemux.la
21lib/gstreamer-1.0/libgstid3demux.la 22lib/gstreamer-1.0/libgstid3demux.la
22lib/gstreamer-1.0/libgstimagefreeze.la 23lib/gstreamer-1.0/libgstimagefreeze.la
23lib/gstreamer-1.0/libgstinterleave.la 24lib/gstreamer-1.0/libgstinterleave.la
24lib/gstreamer-1.0/libgstisomp4.la 25lib/gstreamer-1.0/libgstisomp4.la
25lib/gstreamer-1.0/libgstlevel.la 26lib/gstreamer-1.0/libgstlevel.la
26lib/gstreamer-1.0/libgstmatroska.la 27lib/gstreamer-1.0/libgstmatroska.la
@@ -33,26 +34,281 @@ lib/gstreamer-1.0/libgstrtp.la @@ -33,26 +34,281 @@ lib/gstreamer-1.0/libgstrtp.la
33lib/gstreamer-1.0/libgstrtpmanager.la 34lib/gstreamer-1.0/libgstrtpmanager.la
34lib/gstreamer-1.0/libgstrtsp.la 35lib/gstreamer-1.0/libgstrtsp.la
35lib/gstreamer-1.0/libgstshapewipe.la 36lib/gstreamer-1.0/libgstshapewipe.la
36lib/gstreamer-1.0/libgstsmpte.la 37lib/gstreamer-1.0/libgstsmpte.la
37lib/gstreamer-1.0/libgstspectrum.la 38lib/gstreamer-1.0/libgstspectrum.la
38lib/gstreamer-1.0/libgstudp.la 39lib/gstreamer-1.0/libgstudp.la
39lib/gstreamer-1.0/libgstvideobox.la 40lib/gstreamer-1.0/libgstvideobox.la
40lib/gstreamer-1.0/libgstvideocrop.la 41lib/gstreamer-1.0/libgstvideocrop.la
41lib/gstreamer-1.0/libgstvideofilter.la 42lib/gstreamer-1.0/libgstvideofilter.la
42lib/gstreamer-1.0/libgstvideomixer.la 43lib/gstreamer-1.0/libgstvideomixer.la
43lib/gstreamer-1.0/libgstwavenc.la 44lib/gstreamer-1.0/libgstwavenc.la
44lib/gstreamer-1.0/libgstwavparse.la 45lib/gstreamer-1.0/libgstwavparse.la
45lib/gstreamer-1.0/libgsty4menc.la 46lib/gstreamer-1.0/libgsty4menc.la
 47share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/GstIirEqualizer.html
 48share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/ch01.html
 49share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/ch02.html
 50share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/ch03.html
 51share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-1.0.devhelp2
 52share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-3gppmux.html
 53share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-GstVideoMixerPad.html
 54share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-aacparse.html
 55share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-aasink.html
 56share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-ac3parse.html
 57share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-agingtv.html
 58share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-alawdec.html
 59share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-alawenc.html
 60share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-alpha.html
 61share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-alphacolor.html
 62share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-amrparse.html
 63share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-apedemux.html
 64share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-apev2mux.html
 65share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-aspectratiocrop.html
 66share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audioamplify.html
 67share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiochebband.html
 68share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiocheblimit.html
 69share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiodynamic.html
 70share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audioecho.html
 71share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiofirfilter.html
 72share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audioiirfilter.html
 73share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audioinvert.html
 74share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiokaraoke.html
 75share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiopanorama.html
 76share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiowsincband.html
 77share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-audiowsinclimit.html
 78share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-auparse.html
 79share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-autoaudiosink.html
 80share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-autoaudiosrc.html
 81share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-autovideosink.html
 82share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-autovideosrc.html
 83share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-avidemux.html
 84share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-avimux.html
 85share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-avisubtitle.html
 86share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-cacasink.html
 87share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-cairooverlay.html
 88share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-capssetter.html
 89share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-cutter.html
 90share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dcaparse.html
 91share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-deinterlace.html
 92share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-deinterleave.html
 93share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dicetv.html
 94share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-directsoundsink.html
 95share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dtmfsrc.html
 96share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dv1394src.html
 97share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dvdec.html
 98share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-dvdemux.html
 99share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-edgetv.html
 100share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-equalizer-10bands.html
 101share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-equalizer-3bands.html
 102share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-equalizer-nbands.html
 103share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flacdec.html
 104share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flacenc.html
 105share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flacparse.html
 106share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flactag.html
 107share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flvdemux.html
 108share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flvmux.html
 109share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-flxdec.html
 110share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-gamma.html
 111share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-gdkpixbufsink.html
 112share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-goom.html
 113share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-goom2k1.html
 114share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-hdv1394src.html
 115share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-icydemux.html
 116share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-id3demux.html
 117share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-id3v2mux.html
 118share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-imagefreeze.html
 119share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-interleave.html
 120share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-ismlmux.html
 121share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-jackaudiosink.html
 122share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-jackaudiosrc.html
 123share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-jpegdec.html
 124share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-jpegenc.html
 125share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-level.html
 126share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-matroskademux.html
 127share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-matroskamux.html
 128share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-mj2mux.html
 129share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-monoscope.html
 130share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-mp4mux.html
 131share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-mpegaudioparse.html
 132share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-mulawdec.html
 133share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-mulawenc.html
 134share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-multifilesink.html
 135share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-multifilesrc.html
 136share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-multipartdemux.html
 137share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-multipartmux.html
 138share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-multiudpsink.html
 139share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-optv.html
 140share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-oss4sink.html
 141share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-oss4src.html
 142share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-osssink.html
 143share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-osssrc.html
 144share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-osxaudiosink.html
 145share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-osxaudiosrc.html
 146share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-osxvideosink.html
 147share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-1394.html
 148share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-aasink.html
 149share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-alaw.html
 150share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-alpha.html
 151share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-alphacolor.html
 152share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-apetag.html
 153share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-audiofx.html
 154share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-auparse.html
 155share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-autodetect.html
 156share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-avi.html
 157share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-cacasink.html
 158share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-cairo.html
 159share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-cutter.html
 160share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-debug.html
 161share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-deinterlace.html
 162share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-directsound.html
 163share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-dtmf.html
 164share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-dv.html
 165share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-effectv.html
 166share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-equalizer.html
 167share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-flac.html
 168share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-flv.html
 169share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-flxdec.html
 170share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-gdkpixbuf.html
 171share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-goom.html
 172share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-goom2k1.html
 173share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-icydemux.html
 174share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-id3demux.html
 175share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-imagefreeze.html
 176share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-interleave.html
 177share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-isomp4.html
 178share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-jack.html
 179share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-jpeg.html
 180share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-level.html
 181share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-matroska.html
 182share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-monoscope.html
 183share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-mulaw.html
 184share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-multifile.html
 185share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-multipart.html
 186share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-navigationtest.html
 187share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-oss4.html
 188share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-ossaudio.html
 189share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-osxaudio.html
 190share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-osxvideo.html
 191share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-png.html
 192share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-pulseaudio.html
 193share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-replaygain.html
 194share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-rtp.html
 195share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-rtpmanager.html
 196share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-rtsp.html
 197share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-shapewipe.html
 198share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-shout2send.html
 199share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-smpte.html
 200share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-soup.html
 201share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-spectrum.html
 202share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-speex.html
 203share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-taglib.html
 204share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-udp.html
 205share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-video4linux2.html
 206share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-videobox.html
 207share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-videocrop.html
 208share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-videofilter.html
 209share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-videomixer.html
 210share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-vpx.html
 211share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-waveform.html
 212share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-wavenc.html
 213share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-wavpack.html
 214share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-wavparse.html
 215share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-ximagesrc.html
 216share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-plugin-y4menc.html
 217share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-pngdec.html
 218share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-pngenc.html
 219share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-progressreport.html
 220share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-pulsesink.html
 221share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-pulsesrc.html
 222share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-qtdemux.html
 223share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-qtmoovrecover.html
 224share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-qtmux.html
 225share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-quarktv.html
 226share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-radioactv.html
 227share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-revtv.html
 228share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rganalysis.html
 229share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rglimiter.html
 230share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rgvolume.html
 231share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rippletv.html
 232share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpL16depay.html
 233share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpL16pay.html
 234share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpac3depay.html
 235share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpac3pay.html
 236share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpamrdepay.html
 237share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpamrpay.html
 238share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpbin.html
 239share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpbvdepay.html
 240share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpbvpay.html
 241share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpdec.html
 242share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpdtmfmux.html
 243share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpdtmfsrc.html
 244share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpj2kpay.html
 245share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpjitterbuffer.html
 246share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpjpegpay.html
 247share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpmux.html
 248share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpptdemux.html
 249share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtprtxreceive.html
 250share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtprtxsend.html
 251share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpsbcpay.html
 252share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpsession.html
 253share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtpssrcdemux.html
 254share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-rtspsrc.html
 255share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-sbcparse.html
 256share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-scaletempo.html
 257share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-shagadelictv.html
 258share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-shapewipe.html
 259share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-shout2send.html
 260share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-smpte.html
 261share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-smptealpha.html
 262share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-souphttpsrc.html
 263share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-spectrum.html
 264share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-speexdec.html
 265share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-speexenc.html
 266share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-splitfilesrc.html
 267share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-streaktv.html
 268share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-taginject.html
 269share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-udpsink.html
 270share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-udpsrc.html
 271share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-v4l2radio.html
 272share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-v4l2sink.html
 273share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-v4l2src.html
 274share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-vertigotv.html
 275share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-videobalance.html
 276share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-videobox.html
 277share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-videocrop.html
 278share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-videoflip.html
 279share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-videomixer.html
 280share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-vp8dec.html
 281share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-vp8enc.html
 282share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-warptv.html
 283share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-waveformsink.html
 284share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-wavenc.html
 285share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-wavpackdec.html
 286share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-wavpackenc.html
 287share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-wavpackparse.html
 288share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-wavparse.html
 289share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-webmmux.html
 290share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-ximagesrc.html
 291share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/gst-plugins-good-plugins-y4menc.html
 292share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/home.png
 293share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/index.html
 294share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/index.sgml
 295share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/left-insensitive.png
 296share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/left.png
 297share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/right-insensitive.png
 298share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/right.png
 299share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/style.css
 300share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/up-insensitive.png
 301share/doc/gst-plugins-0.10/gst-plugins-good-plugins-1.0/up.png
46share/gstreamer-1.0/presets/GstIirEqualizer10Bands.prs 302share/gstreamer-1.0/presets/GstIirEqualizer10Bands.prs
47share/gstreamer-1.0/presets/GstIirEqualizer3Bands.prs 303share/gstreamer-1.0/presets/GstIirEqualizer3Bands.prs
48share/locale/af/LC_MESSAGES/gst-plugins-good-1.0.mo 304share/locale/af/LC_MESSAGES/gst-plugins-good-1.0.mo
49share/locale/az/LC_MESSAGES/gst-plugins-good-1.0.mo 305share/locale/az/LC_MESSAGES/gst-plugins-good-1.0.mo
50share/locale/bg/LC_MESSAGES/gst-plugins-good-1.0.mo 306share/locale/bg/LC_MESSAGES/gst-plugins-good-1.0.mo
51share/locale/ca/LC_MESSAGES/gst-plugins-good-1.0.mo 307share/locale/ca/LC_MESSAGES/gst-plugins-good-1.0.mo
52share/locale/cs/LC_MESSAGES/gst-plugins-good-1.0.mo 308share/locale/cs/LC_MESSAGES/gst-plugins-good-1.0.mo
53share/locale/da/LC_MESSAGES/gst-plugins-good-1.0.mo 309share/locale/da/LC_MESSAGES/gst-plugins-good-1.0.mo
54share/locale/de/LC_MESSAGES/gst-plugins-good-1.0.mo 310share/locale/de/LC_MESSAGES/gst-plugins-good-1.0.mo
55share/locale/el/LC_MESSAGES/gst-plugins-good-1.0.mo 311share/locale/el/LC_MESSAGES/gst-plugins-good-1.0.mo
56share/locale/en_GB/LC_MESSAGES/gst-plugins-good-1.0.mo 312share/locale/en_GB/LC_MESSAGES/gst-plugins-good-1.0.mo
57share/locale/eo/LC_MESSAGES/gst-plugins-good-1.0.mo 313share/locale/eo/LC_MESSAGES/gst-plugins-good-1.0.mo
58share/locale/es/LC_MESSAGES/gst-plugins-good-1.0.mo 314share/locale/es/LC_MESSAGES/gst-plugins-good-1.0.mo

cvs diff -r1.8 -r1.9 pkgsrc/multimedia/gst-plugins1-good/Makefile.common (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/Makefile.common 2013/12/04 11:35:56 1.8
+++ pkgsrc/multimedia/gst-plugins1-good/Makefile.common 2014/08/08 21:28:06 1.9
@@ -1,31 +1,31 @@ @@ -1,31 +1,31 @@
1# $NetBSD: Makefile.common,v 1.8 2013/12/04 11:35:56 drochner Exp $ 1# $NetBSD: Makefile.common,v 1.9 2014/08/08 21:28:06 wiz Exp $
2# 2#
3# used by audio/gst-plugins1-flac/Makefile 3# used by audio/gst-plugins1-flac/Makefile
4# used by multimedia/gst-plugins1-v4l2/Makefile 4# used by multimedia/gst-plugins1-v4l2/Makefile
5# used by audio/gst-plugins1-jack/Makefile 5# used by audio/gst-plugins1-jack/Makefile
6# used by graphics/gst-plugins1-cairo/Makefile 6# used by graphics/gst-plugins1-cairo/Makefile
7# used by graphics/gst-plugins1-jpeg/Makefile 7# used by graphics/gst-plugins1-jpeg/Makefile
8# used by graphics/gst-plugins1-png/Makefile 8# used by graphics/gst-plugins1-png/Makefile
9# used by audio/gst-plugins1-oss/Makefile 9# used by audio/gst-plugins1-oss/Makefile
10# used by audio/gst-plugins1-pulse/Makefile 10# used by audio/gst-plugins1-pulse/Makefile
11# used by audio/gst-plugins1-speex/Makefile 11# used by audio/gst-plugins1-speex/Makefile
12# used by multimedia/gst-plugins1-vpx/Makefile 12# used by multimedia/gst-plugins1-vpx/Makefile
13# used by x11/gst-plugins1-x11/Makefile 13# used by x11/gst-plugins1-x11/Makefile
14# used by audio/gst-plugins1-wavpack/Makefile 14# used by audio/gst-plugins1-wavpack/Makefile
15# 15#
16 16
17GST_PLUGINS1_TYPE= good 17GST_PLUGINS1_TYPE= good
18GST_PLUGINS1_VER= 1.0.10 18GST_PLUGINS1_VER= 1.4.0
19 19
20# Disable all drivers and features by default. 20# Disable all drivers and features by default.
21.for driver in aalib \ 21.for driver in aalib \
22 aalibtest \ 22 aalibtest \
23 cairo \ 23 cairo \
24 dv1394 \ 24 dv1394 \
25 flac \ 25 flac \
26 gst_v4l2 \ 26 gst_v4l2 \
27 jack \ 27 jack \
28 jpeg \ 28 jpeg \
29 libcaca \ 29 libcaca \
30 libdv \ 30 libdv \
31 libpng \ 31 libpng \
@@ -36,17 +36,17 @@ GST_PLUGINS1_VER= 1.0.10 @@ -36,17 +36,17 @@ GST_PLUGINS1_VER= 1.0.10
36 speex \ 36 speex \
37 sunaudio \ 37 sunaudio \
38 vpx \ 38 vpx \
39 x \ 39 x \
40 xshm \ 40 xshm \
41 xvideo \ 41 xvideo \
42 zlib 42 zlib
43CONFIGURE_ARGS+= --disable-${driver} 43CONFIGURE_ARGS+= --disable-${driver}
44.endfor 44.endfor
45 45
46.include "../../multimedia/gst-plugins1-base/plugins.mk" 46.include "../../multimedia/gst-plugins1-base/plugins.mk"
47.include "../../devel/orc/buildlink3.mk" 47.include "../../devel/orc/buildlink3.mk"
48.include "../../devel/glib2/buildlink3.mk" 48.include "../../devel/glib2/buildlink3.mk"
49BUILDLINK_API_DEPENDS.gst-plugins1-base+= gst-plugins1-base>=1.0.3 49BUILDLINK_API_DEPENDS.gst-plugins1-base+= gst-plugins1-base>=1.4.0
50.include "../../multimedia/gst-plugins1-base/buildlink3.mk" 50.include "../../multimedia/gst-plugins1-base/buildlink3.mk"
51BUILDLINK_API_DEPENDS.gstreamer1+= gstreamer1>=1.0.3 51BUILDLINK_API_DEPENDS.gstreamer1+= gstreamer1>=1.4.0
52.include "../../multimedia/gstreamer1/buildlink3.mk" 52.include "../../multimedia/gstreamer1/buildlink3.mk"

cvs diff -r1.7 -r1.8 pkgsrc/multimedia/gst-plugins1-good/distinfo (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/distinfo 2013/12/04 11:35:56 1.7
+++ pkgsrc/multimedia/gst-plugins1-good/distinfo 2014/08/08 21:28:06 1.8
@@ -1,9 +1,9 @@ @@ -1,9 +1,9 @@
1$NetBSD: distinfo,v 1.7 2013/12/04 11:35:56 drochner Exp $ 1$NetBSD: distinfo,v 1.8 2014/08/08 21:28:06 wiz Exp $
2 2
3SHA1 (gst-plugins-good-1.0.10.tar.xz) = 0d171e1f0c4db8b8f16e4d917a621277519923ea 3SHA1 (gst-plugins-good-1.4.0.tar.xz) = d9612d0d91acac8b96bbbca77942f82af30c1535
4RMD160 (gst-plugins-good-1.0.10.tar.xz) = 21379d7cf303c8a605f960e16d0977e90d997ee0 4RMD160 (gst-plugins-good-1.4.0.tar.xz) = 356d160ca5b6a415dddfc561c0a7401937aa53c9
5Size (gst-plugins-good-1.0.10.tar.xz) = 2732272 bytes 5Size (gst-plugins-good-1.4.0.tar.xz) = 3023440 bytes
6SHA1 (patch-ab) = 69fbd1268ee0c448341bfbd2590769785cd27604 6SHA1 (patch-ab) = 9029ec3e48740ca4101f986271348c92e6dd2ef0
7SHA1 (patch-ba) = b9a4b1f6ef0df2c1c286218edcf8b592a9839b24 7SHA1 (patch-ba) = 6b446f94a6404a9e485efd0fe4a179cbd2129c50
8SHA1 (patch-bb) = 2b448778acd9ce6c4cd6a22a894bcee457cd0360 8SHA1 (patch-bb) = 8b4135de33450250d53395cfc5fb9d4661591fc0
9SHA1 (patch-sys_v4l2_gstv4l2object.c) = 9ea3ce3b49c13af27aeded8358ec34d244c646b6 9SHA1 (patch-sys_v4l2_gstv4l2object.c) = e7aa3fc13d03a2f1ee4e81e67aa8e503a2c93f0f

cvs diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ab (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ab 2013/03/15 18:34:47 1.2
+++ pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ab 2014/08/08 21:28:06 1.3
@@ -1,32 +1,32 @@ @@ -1,32 +1,32 @@
1$NetBSD: patch-ab,v 1.2 2013/03/15 18:34:47 drochner Exp $ 1$NetBSD: patch-ab,v 1.3 2014/08/08 21:28:06 wiz Exp $
2 2
3--- configure.orig 2013-01-04 13:27:01.000000000 +0000 3--- configure.orig 2014-07-19 13:47:10.000000000 +0000
4+++ configure 4+++ configure
5@@ -23413,6 +23413,9 @@ main () 5@@ -23734,6 +23734,9 @@ main ()
6 #error GCC before 3.4 has critical bugs compiling inline assembly 6 #error GCC before 3.4 has critical bugs compiling inline assembly
7 #endif 7 #endif
8 #endif 8 #endif
9+#ifdef __SUNPRO_C 9+#ifdef __SUNPRO_C
10+#error Sun Studio cannot handle assembly in this package 10+#error Sun Studio cannot handle assembly in this package
11+#endif 11+#endif
12 __asm__ (""::) 12 __asm__ (""::)
13 ; 13 ;
14 return 0; 14 return 0;
15@@ -29384,6 +29387,8 @@ $as_echo_n "checking Checking for up to  15@@ -29705,6 +29708,8 @@ int
16 #include <sys/videodev2.h> 16 main ()
17 #elif __FreeBSD__ 17 {
18 #include <linux/videodev2.h> 18 return 0;
19+#elif defined(__NetBSD__) 19+#elif defined(__NetBSD__)
20+#include <sys/videoio.h> 20+#include <sys/videoio.h>
21 #else /* Linux */ 21 ;
22 #include <linux/types.h> 22 return 0;
23 #define _LINUX_TIME_H 23 }
24@@ -29459,6 +29464,8 @@ $as_echo_n "checking struct v4l2_buffer  24@@ -29780,6 +29785,8 @@ else
25 #include <sys/videodev2.h> 25 USE_GST_V4L2=yes
26 #elif __FreeBSD__ 26 fi
27 #include <linux/videodev2.h> 27
28+#elif defined(__NetBSD__) 28+#elif defined(__NetBSD__)
29+#include <sys/videoio.h> 29+#include <sys/videoio.h>
30 #else /* Linux */ 30 if test "x$NOUSE" = "xyes"; then
31 #include <linux/types.h> 31 USE_GST_V4L2="no"
32 #define _LINUX_TIME_H 32 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: *** video4linux2 pre-configured not to be built" >&5

cvs diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ba (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ba 2013/03/15 18:34:47 1.2
+++ pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-ba 2014/08/08 21:28:06 1.3
@@ -1,13 +1,13 @@ @@ -1,13 +1,13 @@
1$NetBSD: patch-ba,v 1.2 2013/03/15 18:34:47 drochner Exp $ 1$NetBSD: patch-ba,v 1.3 2014/08/08 21:28:06 wiz Exp $
2 2
3--- sys/v4l2/gstv4l2object.h.orig 2012-12-18 00:07:47.000000000 +0000 3--- sys/v4l2/gstv4l2object.h.orig 2014-05-27 06:57:19.000000000 +0000
4+++ sys/v4l2/gstv4l2object.h 4+++ sys/v4l2/gstv4l2object.h
5@@ -42,6 +42,8 @@ 5@@ -42,6 +42,8 @@ typedef struct _GstV4l2Xv GstV4l2Xv;
6 #include <sys/videodev2.h> 6
7 #elif defined(__FreeBSD__) 7 /* max frame width/height */
8 #include <linux/videodev2.h> 8 #define GST_V4L2_MAX_SIZE (1<<15) /* 2^15 == 32768 */
9+#elif defined(__NetBSD__) 9+#elif defined(__NetBSD__)
10+#include <sys/videoio.h> 10+#include <sys/videoio.h>
11 #else /* linux */ 11
12 #include <linux/types.h> 12 G_BEGIN_DECLS
13 #define _LINUX_TIME_H 13

cvs diff -r1.2 -r1.3 pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-sys_v4l2_gstv4l2object.c (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-sys_v4l2_gstv4l2object.c 2013/08/03 08:29:22 1.2
+++ pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-sys_v4l2_gstv4l2object.c 2014/08/08 21:28:06 1.3
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1$NetBSD: patch-sys_v4l2_gstv4l2object.c,v 1.2 2013/08/03 08:29:22 ryoon Exp $ 1$NetBSD: patch-sys_v4l2_gstv4l2object.c,v 1.3 2014/08/08 21:28:06 wiz Exp $
2 2
3* take care some video standard macros added by V4L2 3* take care some video standard macros added by V4L2
4 4
5--- sys/v4l2/gstv4l2object.c.orig 2013-04-26 09:30:32.000000000 +0000 5--- sys/v4l2/gstv4l2object.c.orig 2013-04-26 09:30:32.000000000 +0000
6+++ sys/v4l2/gstv4l2object.c 6+++ sys/v4l2/gstv4l2object.c
7@@ -338,8 +338,12 @@ gst_v4l2_tv_norm_get_type (void) 7@@ -338,8 +338,12 @@ gst_v4l2_tv_norm_get_type (void)
8 {V4L2_STD_NTSC, "NTSC", "NTSC"}, 8 {V4L2_STD_NTSC, "NTSC", "NTSC"},
9 {V4L2_STD_NTSC_M, "NTSC-M", "NTSC-M"}, 9 {V4L2_STD_NTSC_M, "NTSC-M", "NTSC-M"},
10 {V4L2_STD_NTSC_M_JP, "NTSC-M-JP", "NTSC-M-JP"}, 10 {V4L2_STD_NTSC_M_JP, "NTSC-M-JP", "NTSC-M-JP"},
11+#ifdef V4L2_STD_NTSC_M_KR 11+#ifdef V4L2_STD_NTSC_M_KR
12 {V4L2_STD_NTSC_M_KR, "NTSC-M-KR", "NTSC-M-KR"}, 12 {V4L2_STD_NTSC_M_KR, "NTSC-M-KR", "NTSC-M-KR"},
13+#endif 13+#endif
14+#ifdef V4L2_STD_NTSC_443 14+#ifdef V4L2_STD_NTSC_443
@@ -24,23 +24,13 @@ $NetBSD: patch-sys_v4l2_gstv4l2object.c, @@ -24,23 +24,13 @@ $NetBSD: patch-sys_v4l2_gstv4l2object.c,
24+#ifdef V4L2_STD_SECAM_DK 24+#ifdef V4L2_STD_SECAM_DK
25 {V4L2_STD_SECAM_DK, "SECAM-DK", "SECAM-DK"}, 25 {V4L2_STD_SECAM_DK, "SECAM-DK", "SECAM-DK"},
26+#endif 26+#endif
27 {V4L2_STD_SECAM_D, "SECAM-D", "SECAM-D"}, 27 {V4L2_STD_SECAM_D, "SECAM-D", "SECAM-D"},
28 {V4L2_STD_SECAM_K, "SECAM-K", "SECAM-K"}, 28 {V4L2_STD_SECAM_K, "SECAM-K", "SECAM-K"},
29 {V4L2_STD_SECAM_K1, "SECAM-K1", "SECAM-K1"}, 29 {V4L2_STD_SECAM_K1, "SECAM-K1", "SECAM-K1"},
30 {V4L2_STD_SECAM_L, "SECAM-L", "SECAM-L"}, 30 {V4L2_STD_SECAM_L, "SECAM-L", "SECAM-L"},
31+#ifdef V4L2_STD_SECAM_LC 31+#ifdef V4L2_STD_SECAM_LC
32 {V4L2_STD_SECAM_LC, "SECAM-Lc", "SECAM-Lc"}, 32 {V4L2_STD_SECAM_LC, "SECAM-Lc", "SECAM-Lc"},
33+#endif 33+#endif
34  34
35 {0, NULL, NULL} 35 {0, NULL, NULL}
36 }; 36 };
37@@ -1500,8 +1508,8 @@ gst_v4l2_object_get_caps_info (GstV4l2Ob 
38 #ifdef V4L2_PIX_FMT_PWC2 
39 } else if (g_str_equal (mimetype, "video/x-pwc2")) { 
40 fourcc = V4L2_PIX_FMT_PWC2; 
41- } 
42 #endif 
43+ } 
44  
45 if (dimensions) { 
46 const gchar *interlace_mode; 

cvs diff -r1.1 -r1.2 pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-bb (expand / switch to unified diff)

--- pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-bb 2012/11/29 08:24:42 1.1
+++ pkgsrc/multimedia/gst-plugins1-good/patches/Attic/patch-bb 2014/08/08 21:28:06 1.2
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: patch-bb,v 1.1 2012/11/29 08:24:42 ryoon Exp $ 1$NetBSD: patch-bb,v 1.2 2014/08/08 21:28:06 wiz Exp $
2 2
3--- sys/v4l2/v4l2_calls.h.orig 2012-10-25 10:55:59.000000000 +0000 3--- sys/v4l2/v4l2_calls.h.orig 2014-05-10 07:30:15.000000000 +0000
4+++ sys/v4l2/v4l2_calls.h 4+++ sys/v4l2/v4l2_calls.h
5@@ -30,7 +30,11 @@ 5@@ -29,7 +29,11 @@
 6 #ifdef HAVE_LIBV4L2
6 # include <libv4l2.h> 7 # include <libv4l2.h>
7 #else 8 #else
8 # include <sys/ioctl.h> 
9+#ifdef __NetBSD__ 9+#ifdef __NetBSD__
10+#include <sys/videoio.h> 10+#include <sys/videoio.h>
11+#else 11+#else
12 # include <linux/videodev2.h> 12 # include <linux/videodev2.h>
13+#endif 13+#endif
14 # define v4l2_fd_open(fd, flags) (fd) 14 # include <sys/ioctl.h>
15 # define v4l2_close close 15 # include <sys/mman.h>
16 # define v4l2_dup dup 16 # include <unistd.h>