summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dahl <matt2000@users.sourceforge.net>2001-11-05 15:57:14 +0000
committerMatthias Dahl <matt2000@users.sourceforge.net>2001-11-05 15:57:14 +0000
commitdbaa826f8ace42b926468e40c0a87f68330d49fd (patch)
tree28bac14e38149a9b439da0577f0bbaa6a7dc4cda
parentcfa90b16c86c79c8f28daf3079afe9df65838ae7 (diff)
downloadxine-lib-dbaa826f8ace42b926468e40c0a87f68330d49fd.tar.gz
xine-lib-dbaa826f8ace42b926468e40c0a87f68330d49fd.tar.bz2
only offering YV12 to XINE for now until rest is added.
CVS patchset: 959 CVS date: 2001/11/05 15:57:14
-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 8c48017cb..0ae6cb9b8 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.29 2001/11/05 10:50:19 matt2000 Exp $
+ * $Id: video_out_syncfb.c,v 1.30 2001/11/05 15:57:14 matt2000 Exp $
*
* video_out_syncfb.c, SyncFB (for Matrox G200/G400 cards) interface for xine
*
@@ -553,7 +553,8 @@ static void x11_DeInstallXErrorHandler(syncfb_driver_t* this)
static uint32_t syncfb_get_capabilities(vo_driver_t* this_gen) {
// FIXME: VO_CAP_CONTRAST and VO_CAP_BRIGHTNESS unsupported at the moment,
// because they seem to be disabled in the syncfb module anyway. :(
- return VO_CAP_YV12 | VO_CAP_YUY2;
+ // FIXME: currently we only support YV12
+ return VO_CAP_YV12; // | VO_CAP_YUY2;
}
static void syncfb_frame_field (vo_frame_t *vo_img, int which_field) {