From 76f0fb31b6abb41da5bba4dff96dca282c66cda6 Mon Sep 17 00:00:00 2001 From: alex Date: Thu, 11 Aug 2005 11:02:30 +0000 Subject: [PATCH] 10l, patch found in geexbox git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16197 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/vo_vesa.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libvo/vo_vesa.c b/libvo/vo_vesa.c index ef54d45eda..fb06bae8b0 100644 --- a/libvo/vo_vesa.c +++ b/libvo/vo_vesa.c @@ -468,6 +468,9 @@ static int query_format(uint32_t format) #ifdef CONFIG_VIDIX if(vidix_name)return(vidix_query_fourcc(format)); #endif + if (format == IMGFMT_MPEGPES) + return 0; + // FIXME: this is just broken... return VFCAP_CSP_SUPPORTED | VFCAP_OSD | VFCAP_SWSCALE | VFCAP_ACCEPT_STRIDE; /* due new SwScale code */ }