summaryrefslogtreecommitdiffstats
path: root/libvo/vo_fbdev.c
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-27 17:56:52 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-27 17:56:52 +0000
commitbb314fce939272cb9bdaba59d23ef74bbb408a62 (patch)
tree8894a3543c4ed207191511dc81792b1ae031c4cb /libvo/vo_fbdev.c
parente290b551980c39cbe4358b996c97cbff582174d7 (diff)
downloadmpv-bb314fce939272cb9bdaba59d23ef74bbb408a62.tar.bz2
mpv-bb314fce939272cb9bdaba59d23ef74bbb408a62.tar.xz
query_format revised
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6213 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_fbdev.c')
-rw-r--r--libvo/vo_fbdev.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libvo/vo_fbdev.c b/libvo/vo_fbdev.c
index a4b3646837..aafe42ff41 100644
--- a/libvo/vo_fbdev.c
+++ b/libvo/vo_fbdev.c
@@ -1168,7 +1168,7 @@ static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width,
static uint32_t query_format(uint32_t format)
{
- int ret = 0x4; /* osd/sub is supported on every bpp */
+ int ret = VFCAP_OSD|VFCAP_CSP_SUPPORTED; /* osd/sub is supported on every bpp */
if (!fb_preinit())
return 0;
@@ -1176,14 +1176,14 @@ static uint32_t query_format(uint32_t format)
int bpp = format & 0xff;
if (bpp == fb_bpp)
- return ret|0x2;
+ return ret|VFCAP_CSP_SUPPORTED_BY_HW;
else if (bpp == 15 && fb_bpp == 16)
- return ret|0x1;
+ return ret;
else if (bpp == 24 && fb_bpp == 32)
- return ret|0x1;
+ return ret;
}
if (format == IMGFMT_YV12)
- return ret|0x1;
+ return ret;
return 0;
}