summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Jager <t.jager@gmx.de>2012-12-23 22:28:46 +0200
committerTorsten Jager <t.jager@gmx.de>2012-12-23 22:28:46 +0200
commit762a69d23a73fa9ec57bae97cac52286e4f159e3 (patch)
treecfa54790a8601069725ff7e28a040926b974a35b
parent4fc26532b8ec97a2699f0307f23c14d5a457fed3 (diff)
downloadxine-lib-762a69d23a73fa9ec57bae97cac52286e4f159e3.tar.gz
xine-lib-762a69d23a73fa9ec57bae97cac52286e4f159e3.tar.bz2
vo_(xcb)xv: show brightness/contrast/saturation changes while paused
-rw-r--r--src/video_out/video_out_xcbxv.c2
-rw-r--r--src/video_out/video_out_xv.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_xcbxv.c b/src/video_out/video_out_xcbxv.c
index 1c31804ef..7ce165eab 100644
--- a/src/video_out/video_out_xcbxv.c
+++ b/src/video_out/video_out_xcbxv.c
@@ -558,7 +558,7 @@ static void xv_flush_recent_frames (xv_driver_t *this) {
static int xv_redraw_needed (vo_driver_t *this_gen) {
xv_driver_t *this = (xv_driver_t *) this_gen;
- int ret = 0;
+ int ret = !this->cm_active;
if( this->cur_frame ) {
diff --git a/src/video_out/video_out_xv.c b/src/video_out/video_out_xv.c
index 145e114d1..75cf12e13 100644
--- a/src/video_out/video_out_xv.c
+++ b/src/video_out/video_out_xv.c
@@ -636,7 +636,7 @@ static void xv_flush_recent_frames (xv_driver_t *this) {
static int xv_redraw_needed (vo_driver_t *this_gen) {
xv_driver_t *this = (xv_driver_t *) this_gen;
- int ret = 0;
+ int ret = !this->cm_active;
if( this->cur_frame ) {