diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-02 01:10:10 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-02 01:10:10 +0000 |
commit | a06fea65f528a8c8ebf177c03789aedfa23ade25 (patch) | |
tree | e8863f15b701023c40455dfa0c33347dffab8728 | |
parent | 70e3b2c347fb7371b4780e315d34ec309efa641c (diff) | |
download | xine-lib-a06fea65f528a8c8ebf177c03789aedfa23ade25.tar.gz xine-lib-a06fea65f528a8c8ebf177c03789aedfa23ade25.tar.bz2 |
make sure colour keying is turned off for frame buffer output
CVS patchset: 4747
CVS date: 2003/05/02 01:10:10
-rw-r--r-- | src/video_out/video_out_vidix.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/video_out/video_out_vidix.c b/src/video_out/video_out_vidix.c index 4f4ce43ff..ab4262e5c 100644 --- a/src/video_out/video_out_vidix.c +++ b/src/video_out/video_out_vidix.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_vidix.c,v 1.42 2003/05/02 01:07:15 jstembridge Exp $ + * $Id: video_out_vidix.c,v 1.43 2003/05/02 01:10:10 jstembridge Exp $ * * video_out_vidix.c * @@ -1183,6 +1183,10 @@ static vo_driver_t *vidixfb_open_plugin (video_driver_class_t *class_gen, const this->sc.frame_output_cb = vidixfb_frame_output_cb; this->sc.user_data = this; + + /* Make sure colour keying is turned off */ + this->vidix_grkey.ckey.op = CKEY_FALSE; + vdlSetGrKeys(this->vidix_handler, &this->vidix_grkey); query_fourccs(this); |