COMMENT should not be longer than 70 characters.
COMMENT should not begin with 'A'.
COMMENT should not begin with 'An'.
COMMENT should not begin with 'a'.
COMMENT should not end with a period.
COMMENT should start with a capital letter.
pkglint warnings. Some files also got minor formatting, spelling, and style
corrections.
The libgstshm plugin was building on DragonFly, but it wasn't in the PLIST.
Rather than conditionally add it to the PLIST, instead shm was added to
the disabled list. This now builds cleanly with PKG_DEVELOPER=yes.
It require glib2>=2.25.0, then after glib was updated to 2.26.0,
it also will be iinstalled, PLIST broken.
XXX: exactly depend on glib2>=2.25.0 and install it,
XXX: or create new package for the plugin?
changes:
-new video effects plugins: coloreffects, gaudieffects, geometrictransform
-some new elements
-misc fixes and improvements
-uses orc instead of liboil
changes:
-audioparsers: add bitrate calculation
-camerabin: misc improvements
-added invtelecine and segmentclip
-jpegformat: add xmp reading and writing support
-mpegtsdemux: add support for Blu-Ray style DTS and the two DTS HD stream
types
-mpegtsparse: parse TDT table in mpegts
-mpegvideoparse improvements
-qtmux: add support for the VP8 video codec and XMP tags
-misc fixes and improvements
changes:
-shapewipe: moved from -bad to -good
-aacparse: now based on common baseparser class and merged into
audioparser plugin
-adpcmenc: new adpcm encoder element
-amrparse: use (default) time handling of baseparser class, merged into
audioparser plugin
-dataurisrc: new source element for data:// URIs
-jpegformat: new jifmux element
-misc fixes and improvements
changes:
Fix DVD playback
New elements: DTMF tone source and detector
ASS subtitle support improvements
Fix compilation on OS/X Snow Leopard
Support DVB 3.3 API
Inputselector fixes
changes:
Add barcode scanner plugin using the zbar library
Improvements to camerabin
Support audio-track format switching in DVD
Improve parsing and display of PGS subpictures
Add Cog plugin
Add LV2 plugin support
Improve VDPAU plugin. Add post-processing support
Add videomeasure plugin
Improve Siren codec
Improved Directshow capture element
Add EAC3 mapping in MPEG-TS playback
Improve AAC encoding
Improved MIDI file playback
Improve H-264 parsing
Add MPEG-PS muxer
Add PNM encoder and decoder
Add SVG decoder
Update GLib dependency to GLib 2.16
Various other bug fixes and improvements (see ChangeLog)
Fix various bugs in the 0.10.15 release
Fix a deadlock in starting DVD
Fix compilation problems
Allow libneon versions >= 29.x
changes:
Moved rtpmanager to -good
Moved dirac elements from schroedinger to gst-plugins-bad (new schroedinger release
without the gstreamer elements will follow shortly)
amrwb: Remove AMR-WB parser and decoder and rename encoder plugin from amrwb
to amrwbenc (the removed elements will re-appear in the next -ugly release;
no migration strategy provided in this case because of the 'special' status
of the amrwb plugin)
asfmux, rtpasfpay: add ASF muxer and windows media payloader
basevideo: add experimental video base class library/API
camerabin: lots of fixes and improvements
capssetter: new element for debugging purposes
directdraw: Implement GstNavigation interface
directshow: refactor and improve dshowsrcwrapper, dshowideosrc, dshowaudiosrc
frei0r: wrapper for frei0r video filter plugins
gme: add libgme plugin which supersedes the existing OpenSPC spc plugin
Implement SEEKING query in more demuxers and decoders (notably mpeg-ps/mpeg-ts,
mxf, musepack, rawparse)
kate: add kate subtitle encoder, decoder and overlay
mimic: lots of fixes for mimenc and mimdec; add "paused mode"
mpegpsdemux: added caps for AAC and fixed playback of a clip with LPCM
mpegtsdemux: added VC1, EAC3 and LPCM related to blueray/hdmv
qtmux: handle pixel-aspect-ratio; misc. other fixes and improvements
shapewipe: support ARGB/RGBA for video input/output; fix for still images
vdpau: add experimental vdpau plugin
changes:
New shapewipe video transition plugin
qtmux improvements
camerabin improvements
HDV MPEG-TS private streams support
Output interlacing information in mpegvideoparse
MS-ADPCM decoder
RTP fixes and enhancements
DTS decoder improvements
New ID3 tagging plugin that supports v1, v2.3 and v2.4
Support for PGS (BluRay) subtitles
Many other bug fixes and enhancements
changes:
Presets support in several elements
Support ITV HD MPEG-TS streams
New element: flvmux
New element: osxvideosrc
Fixes in RTP elements
camerabin fixes
Improved QT/mp4 muxing
xdgmime based content type guessing
deinterlace2 moved to the Good plugins (replacing deinterlace)
Support for MXF muxing, and improved MXF demuxing
Greatly improved DVD playback
DirectDraw element moved back from Good plugins
Many other bug fixes and improvements
pkgsrc change: explicitely disable build of libgstreal, should fix
PR pkg/41476 by "U.F.B.".
If needed, this should be put into its own plugin which would be
ONLY_FOR i386/amd64. (Actually, there seem to be realplayer codecs
also for alpha and ppc, so in theory these could also be supported.)
changes:
Add ASS/SSA subtitle handling element assrender
Leak fixes in the QuickTime decoder wrapper
Better DirectShow output on Windows
Extend QT muxing support to include AMR and H.263
mms seeking support
Extended MXF file format handling
camerabin and photography API for digital camera interfacing
Merge elements from Farsight: liveadder, sirendec, sirenenc, valve,
rtpdtmfsrc, rtpdtmdepay, dtmfsrc, rtpdtmfmux, autoconvert, mimdec, mimenc
typefinder based on xdgmime
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.