summaryrefslogtreecommitdiffstats
path: root/libvo/mga_common.c
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-10 00:09:34 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-10-10 00:09:34 +0000
commit6a2c0db5e5b583543fc207bcacb0f194ddd2e90f (patch)
treef78a1a1612e453199af494f62dbc26e2629c973b /libvo/mga_common.c
parentf5dd264b514b50d3b079c45ff2add42dee7b3ba2 (diff)
downloadmpv-6a2c0db5e5b583543fc207bcacb0f194ddd2e90f.tar.bz2
mpv-6a2c0db5e5b583543fc207bcacb0f194ddd2e90f.tar.xz
also set VFCAP_ACCEPT_STRIDE when draw_image() is implemented
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7695 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/mga_common.c')
-rw-r--r--libvo/mga_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libvo/mga_common.c b/libvo/mga_common.c
index ecbafdb052..2477e4bf8c 100644
--- a/libvo/mga_common.c
+++ b/libvo/mga_common.c
@@ -189,7 +189,7 @@ query_format(uint32_t format)
case IMGFMT_IYUV:
case IMGFMT_YUY2:
case IMGFMT_UYVY:
- return 3 | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN;
+ return 3 | VFCAP_OSD|VFCAP_HWSCALE_UP|VFCAP_HWSCALE_DOWN|VFCAP_ACCEPT_STRIDE;
}
return 0;
}