0.6.1:
Fixing packaging bugs in 0.6.0 (wrong version numbers were used).
0.6.0:
General:
Improved very high resolutions, high framerate, and high colorspace (10 bits) playback support.
HEVC top-notch support.
Improved video playback through OpenGL and OpenGL ES.
Video 360 navigation support on all platforms.
Many adaptive streaming improvement (HLS and DASH), see specific section below.
MP42TS (MPEG2-TS multiplexer) is production grade for adaptive streaming and reference vector streams.
TEMI extension for fine synchronization and hybrid delivery (mandated by HbbTV 2.0).
Better language tagging support.
UTF16 name handling.
Better multi-channel audio support.
Improved support for encryption (CENC/PIFF - both AES CTR and CBC are supported).
Improved generic support for subtitles (METX/METT, STPP TTML, WebVTT, SBTT, STXT, etc.).
Parallel execution of GPAC tools.
Better network support for TTL and multi-interface.
SHVC (scalable) experimental (based on SHM4.1 and old ISOBMFF spec)
Changes unknown. Previous version couldn't import VTT subtitles,
this version can.
While here switch from ffmpeg1 to ffmpeg2 and drop MAKE_JOBS_SAFE=no.
to address issues with NetBSD-6(and earlier)'s fontconfig not being
new enough for pango.
While doing that, also bump freetype2 dependency to current pkgsrc
version.
Suggested by tron in PR 47882
Changelog:
25/05/2012: GPAC 0.5.0
- MPEG-DASH and Apple HLS support in GPAC Clients
- MPEG-DASH segmenter for ISO files and MPEG-2 TS in MP4Box
- MP42TS generator now supports HLS output
- Support for MPEG-U and W3C widgets
- UPnP and DLNA support in the player through Platinum libraries, interfaced in JavaScript
- Better support for AVC and SVC muxing in MP4
- Support for OpenSVC decoder
- Stereo and Multi-view renderer for auto-stereoscopic screens
- iOS and Android support (but Symbian support has been dropped)
- Camera input through "camera://default" URLs on Windows, OSX 32bit, Linux V4L v1 and Android
- experimental audio filters
- Better T-DMB support
- experimental DVB-MPE and DSM-CC support
- BIFS ExtendedCore2D profile support
- more work on GUI
- and many many fixes and improvements in players and MP4Box
GCC 4.6+ does not tolerate flags starting with "--" like older versions
do. These flags were meant to fall to the linker, but starting with
GCC 4.6, they have to be explicitly prefixed with "-Wl,".
Fix the gcc 4.7 breakage on "--warn-common".
alternative from mk/jpeg.buildlink3.mk
This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).
The mechanical edits were applied via the following script:
#!/bin/sh
for d in */*; do
[ -d "$d" ] || continue
for i in "$d/"Makefile* "$d/"*.mk; do
case "$i" in *.orig|*"*"*) continue;; esac
out="$d/x"
sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
-e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
< "$i" > "$out"
if cmp -s "$i" "$out"; then
rm -f "$out"
else
echo "Edited $i"
mv -f "$i" "$i.orig" && mv "$out" "$i"
fi
done
done