From 90bfed2c4c86e943ad850a023a28df31c558d75f Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Sun, 12 Aug 2007 20:54:03 +0100 Subject: Extend config key translation to allow front ends to provide an additional list. Intent is to allow front ends to rename their old, badly-named, config items. --- ChangeLog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3cc2f4b93..e1a6fe964 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,8 @@ xine-lib (1.1.8) (Unreleased) capable boxes it's probably worse than our own code). * Rename endianness-reading macros so that they don't collide with Solaris system macros. BE_/LE_ are now _X_BE_ and _X_LE_. + * Add an extra function to allow front ends to rename their old, + badly-named configuration items. xine-lib (1.1.7) * Support libdca (new name for libdts) by shuffling around the dts.h file. -- cgit v1.2.3 From db2b02f772d0e0c4e22427b1a1acd806aa88558a Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Sun, 12 Aug 2007 21:41:51 +0100 Subject: Changelog updates. --- ChangeLog | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index e1a6fe964..c73a1131d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,7 +8,14 @@ xine-lib (1.1.8) (Unreleased) system macros. BE_/LE_ are now _X_BE_ and _X_LE_. * Add an extra function to allow front ends to rename their old, badly-named configuration items. - + * Various build fixes and cleanups for Solaris, plugin dependencies etc. + * Fix some memory leaks in the Vorbis decoder and video overlays. + * Fix a problem with the goom plugin which could cause it to stop working. + * Clean up "%" unescaping in MRLs; correctly handle "%" in DVD MRLs. + * Fix a crash with "dvb:/". + * DVB subtitle fixes: deadlock prevention, thread leakage, spec compliance. + * Allow the DVB input plugin to timeout if it is receiving no signal. + xine-lib (1.1.7) * Support libdca (new name for libdts) by shuffling around the dts.h file. * Add support for MDHD version 1 atom in demux_qt. [bug #1679398] -- cgit v1.2.3 From 7047d9e5acf97c91a523c99ccc4b008a35a3e094 Mon Sep 17 00:00:00 2001 From: Darren Salt Date: Wed, 15 Aug 2007 13:42:38 +0100 Subject: Fix an audio resampling problem which was causing regular clicking. The cause was that the resampling code was using only the samples in the buffer but not really handling the transition between two buffers (which it would handle completely independently). The new code remembers the last sample from the previous buffer and uses it in the resampling. We therefore end up one sample behind and without the clicks. --- ChangeLog | 1 + 1 file changed, 1 insertion(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index c73a1131d..680dba142 100644 --- a/ChangeLog +++ b/ChangeLog @@ -15,6 +15,7 @@ xine-lib (1.1.8) (Unreleased) * Fix a crash with "dvb:/". * DVB subtitle fixes: deadlock prevention, thread leakage, spec compliance. * Allow the DVB input plugin to timeout if it is receiving no signal. + * Fix an audio resampling problem which was causing regular clicking. xine-lib (1.1.7) * Support libdca (new name for libdts) by shuffling around the dts.h file. -- cgit v1.2.3