diff options
author | Andreas Auras <yak54@gmx.net> | 2010-08-20 16:34:52 +0200 |
---|---|---|
committer | Andreas Auras <yak54@gmx.net> | 2010-08-20 16:34:52 +0200 |
commit | b0c5d3d751cbc8dda4108c9aa2fba1e39bb29f86 (patch) | |
tree | 525530e3bea65400cad0dd6052b39e8ce7be7163 | |
parent | 8d96f8af2566628aeae6ad2669c669254c7ab13c (diff) | |
download | xine-lib-atmolight-0.6.tar.gz xine-lib-atmolight-0.6.tar.bz2 |
Migrate frame grabing for vdpau-extensions-patch v15 v0.6
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | xine_post_atmo.c | 1 |
4 files changed, 9 insertions, 1 deletions
@@ -2,6 +2,7 @@ Add xine-ui-atmolight-switch patch. Add xineliboutput-atmolight-switch patch. Changed 'analyze_rate' default from 40 to 35 +Migrate to vdpau-extensions-patch v15. Now this version is minimum requirement! --- Version 0.5 @@ -30,7 +30,7 @@ Requirements: ------------- xine-lib-vdpau or xine-lib-1.2 with vdpau support -Both version must have the vdpau extension patches from here: +Both version must have the vdpau extension patches version v15 or greater from here: http://www.vdr-portal.de/board/thread.php?threadid=86804 For compiling the plugin the xine-lib and libusb-1.0 development diff --git a/debian/changelog b/debian/changelog index 3525345..a2fbdd2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libxine-atmo-plugin (0.6-0) karmic; urgency=low + + * New upstream release + + -- Andreas Auras <yak54@gmx.net> Fri, 20 Aug 2010 13:37:11 +0200 + libxine-atmo-plugin (0.5-0) karmic; urgency=low * New upstream release diff --git a/xine_post_atmo.c b/xine_post_atmo.c index 751d8f5..6203acd 100644 --- a/xine_post_atmo.c +++ b/xine_post_atmo.c @@ -792,6 +792,7 @@ static void *atmo_grab_loop (void *this_gen) { /* grab displayed video frame */ frame->timeout = GRAB_TIMEOUT; + frame->continuous = 1; frame->width = analyze_width; frame->height = analyze_height; if (!(rc = xine_port_send_gui_data(video_port, XINE_GUI_SEND_GRAB_FRAME, frame))) { |