summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin KAY <komadori@users.sourceforge.net>2004-04-27 10:18:45 +0000
committerRobin KAY <komadori@users.sourceforge.net>2004-04-27 10:18:45 +0000
commitcdd6f08240af3c9afa8dc1d3596c0e44c1ad8065 (patch)
treee6661eb13ed3551ab1540a98dda59132f3254c18
parent8c3fea5bc871f32517f6ef19f89cded8a1ebf4d6 (diff)
downloadxine-lib-cdd6f08240af3c9afa8dc1d3596c0e44c1ad8065.tar.gz
xine-lib-cdd6f08240af3c9afa8dc1d3596c0e44c1ad8065.tar.bz2
Must not enable exclusive overlay when using chroma keying.
CVS patchset: 6450 CVS date: 2004/04/27 10:18:45
-rw-r--r--src/video_out/video_out_pgx64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_pgx64.c b/src/video_out/video_out_pgx64.c
index a62253a46..de01f4029 100644
--- a/src/video_out/video_out_pgx64.c
+++ b/src/video_out/video_out_pgx64.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_pgx64.c,v 1.57 2004/04/26 17:50:10 mroi Exp $
+ * $Id: video_out_pgx64.c,v 1.58 2004/04/27 10:18:45 komadori Exp $
*
* video_out_pgx64.c, Sun PGX64/PGX24 output plugin for xine
*
@@ -493,7 +493,7 @@ static void pgx64_display_frame(vo_driver_t *this_gen, vo_frame_t *frame_gen)
}
}
- if (dgavis == DGA_VIS_UNOBSCURED) {
+ if ((dgavis == DGA_VIS_UNOBSCURED) && !this->chromakey_en) {
int horz_start = (this->vo_scale.gui_win_x + this->vo_scale.output_xoffset + 7) / 8;
int horz_end = (this->vo_scale.gui_win_x + this->vo_scale.output_xoffset + this->vo_scale.output_width) / 8;