summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Dahl <matt2000@users.sourceforge.net>2001-11-06 13:20:57 +0000
committerMatthias Dahl <matt2000@users.sourceforge.net>2001-11-06 13:20:57 +0000
commit192461ead38a740fa42558e35c52c14b10e319fa (patch)
tree44db4bc369aea51ec1b031c2e425fb503d8b9d2e /src
parent91ff5fd71b760b1b1d8cdfccf536ec7d73436ca2 (diff)
downloadxine-lib-192461ead38a740fa42558e35c52c14b10e319fa.tar.gz
xine-lib-192461ead38a740fa42558e35c52c14b10e319fa.tar.bz2
forgot to remove RGB from our capabilities list (until it is supported)
CVS patchset: 969 CVS date: 2001/11/06 13:20:57
Diffstat (limited to 'src')
-rw-r--r--src/video_out/video_out_syncfb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/video_out/video_out_syncfb.c b/src/video_out/video_out_syncfb.c
index d7aa278dd..c200feaa8 100644
--- a/src/video_out/video_out_syncfb.c
+++ b/src/video_out/video_out_syncfb.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_syncfb.c,v 1.36 2001/11/06 13:16:47 matt2000 Exp $
+ * $Id: video_out_syncfb.c,v 1.37 2001/11/06 13:20:57 matt2000 Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -916,7 +916,8 @@ vo_driver_t *init_video_out_plugin (config_values_t *config, void *visual_gen)
printf("video_out_syncfb: SyncFB module supports YUY2.\n");
}
if(this->capabilities.palettes & (1<<VIDEO_PALETTE_RGB565)) {
- this->supported_capabilities |= VO_CAP_RGB;
+// FIXME: no RGB support yet
+// this->supported_capabilities |= VO_CAP_RGB;
printf("video_out_syncfb: SyncFB module supports RGB565.\n");
}