diff options
author | Darren Salt <devspam@moreofthesa.me.uk> | 2013-09-18 12:55:06 +0100 |
---|---|---|
committer | Darren Salt <devspam@moreofthesa.me.uk> | 2013-09-18 12:55:06 +0100 |
commit | 6ae7122ab3014b296f066aefbbc7aab2051fcf53 (patch) | |
tree | c38d53d917f29b7d1454c3525c1f5b84de128413 | |
parent | b0fa6cab5e64886d3f47156a049c5d1b85dcabd9 (diff) | |
download | xine-lib-6ae7122ab3014b296f066aefbbc7aab2051fcf53.tar.gz xine-lib-6ae7122ab3014b296f066aefbbc7aab2051fcf53.tar.bz2 |
Update changelog; bump version.
-rw-r--r-- | ChangeLog | 26 | ||||
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | version.sh | 4 |
3 files changed, 28 insertions, 6 deletions
@@ -1,5 +1,27 @@ -xine-lib (1.2.3.1) 2013-??-?? - * Distribute one missing header file. No VAAPI plugin without this. +xine-lib (1.2.4) 2013-??-?? + * Some VAAPI plugin fixes (build, image size changes). + * ffmpeg multi-channel playback fixes: + - Handle channel configuration changes sooner. + - Generic layout if none provided; follow user changes. + - Defer opening output if nothing to play. + - Don't re-open with identical settings. + - Don't use the bits-per-sample value (may not match decoder output). + * ffmpeg video fixes: + - Default to square pixels, avoiding black bars & unnecessary scaling. + - Avoid CODEC_FLAG_EMU_EDGE (and some possible segfaults). + - Use MPEG2VIDEO. + * OpenGL2 output: don't render into invalid drawable. + * Fix a possible xine_play() hang related to display locking. + * FLV demuxer rewrite: + - Improved metadata parsing. + - PTS/DTS fixes. + - Large file support on 32-bit. + - Much improved seeking. + - Much optimisation. + - More codecs supported. + * audio_out speed control fixes. + * Optimised RGB→YUY2 conversion. + * Avoid a possible performance penalty where AVX-optimised memcpy is used. xine-lib (1.2.3) 2013-05-29 * Add VAAPI HW decoding support diff --git a/debian/changelog b/debian/changelog index 6e1bc3a59..f4dd6dc0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ -xine-lib-1.2 (1.2.3+hg-0) experimental; urgency=low +xine-lib-1.2 (1.2.4+hg-0) experimental; urgency=low * Hg snapshot. * Adjust for libxine2. * libxine-dev → libxine2-dev. - -- Darren Salt <linux@youmustbejoking.demon.co.uk> Sun, 30 Jun 2013 17:30:14 +0100 + -- Darren Salt <linux@youmustbejoking.demon.co.uk> Wed, 18 Sep 2013 12:54:48 +0100 xine-lib (1.1.21~hg-0) unstable; urgency=low diff --git a/version.sh b/version.sh index e8d5f2ffb..bcf1c068d 100755 --- a/version.sh +++ b/version.sh @@ -30,13 +30,13 @@ XINE_VERSION_MAJOR=1 XINE_VERSION_MINOR=2 -XINE_VERSION_SUB=3 +XINE_VERSION_SUB=4 XINE_VERSION_PATCH= # Release series number (usually $XINE_MAJOR.$XINE_MINOR) XINE_VERSION_SERIES=1.2 XINE_LT_CURRENT=5 -XINE_LT_REVISION=0 +XINE_LT_REVISION=1 XINE_LT_AGE=3 test -f "`dirname $0`/.cvsversion" && XINE_VERSION_SUFFIX="hg" |