diff options
author | phintuka <phintuka> | 2006-09-16 20:20:47 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2006-09-16 20:20:47 +0000 |
commit | fa65742d148e881f60bf4514b74a3e91db9cac4c (patch) | |
tree | 82cf561474f4295fa28a8721fb2e815be93096b8 | |
parent | 71ef52332b6d020545c289af3c70efcb85a996f4 (diff) | |
download | xineliboutput-fa65742d148e881f60bf4514b74a3e91db9cac4c.tar.gz xineliboutput-fa65742d148e881f60bf4514b74a3e91db9cac4c.tar.bz2 |
1.0.0pre5xineliboutput-1_0_0pre5
-rw-r--r-- | HISTORY | 18 | ||||
-rw-r--r-- | xineliboutput.c | 4 |
2 files changed, 18 insertions, 4 deletions
@@ -1,14 +1,28 @@ VDR Plugin 'xineliboutput' Revision History ------------------------------------------- - +2006-09-17: Version 1.0.0pre5 + +- Allow overriding default no signal image +- Several fixes to post plugin handling +- Fixed --audio=driver:port parsing in vdr plugin +- Fixed overscan when image does not fill whole output window + (bug #1556912) +- Implemented simple MMX/SSE and YUY2 detection routines + to autocrop +- Main menu re-arranged (Thanks to Petri Helin) +- Fixed display blanking aspect ratio (bug #1554070) +- Lirc receiver accepts shorter LIRC commands (bug #1540896) +- Fixed immediate re-configuration when setup entries are + changed with repeated keys (Thanks to Petri Helin) - Implemented audio channel selection as xine post plugin (to select only left or right channel from stereo) +- Several minor fixes / enhancements to autocrop plugin 2006-09-06: Version 1.0.0pre4 - WARNING: updated command-line options ! -- Support for HD (larger buffers wit HD content) +- Support for HD (larger buffers with HD content) - Simple playlist support to media player - Fixed starting replay of new file while old file is still playing - Fixed segfault in OSD downscaling diff --git a/xineliboutput.c b/xineliboutput.c index a394a5c3..f07a9063 100644 --- a/xineliboutput.c +++ b/xineliboutput.c @@ -21,7 +21,7 @@ * * xineliboutput.c: VDR Plugin interface * - * $Id: xineliboutput.c,v 1.10 2006-09-04 13:54:27 phintuka Exp $ + * $Id: xineliboutput.c,v 1.11 2006-09-16 20:20:47 phintuka Exp $ * */ @@ -43,7 +43,7 @@ //---------------------------------plugin------------------------------------- -static const char *VERSION = "1.0.0pre4"; +static const char *VERSION = "1.0.0pre5"; static const char *DESCRIPTION = "X11/xine-lib output plugin"; static const char *MAINMENUENTRY = "Xine-lib"; |