summaryrefslogtreecommitdiffstats
path: root/libvo/vo_gl.c
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-05 15:36:54 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-12-05 15:36:54 +0000
commit0ca415447d33c75469724e16aba6385fd80691db (patch)
treeb022be1f39ce9081657b36d27e7f9463bd569d2b /libvo/vo_gl.c
parent403cf73c9742e574f59e9a2f87b904a4bd4ec3fe (diff)
downloadmpv-0ca415447d33c75469724e16aba6385fd80691db.tar.bz2
mpv-0ca415447d33c75469724e16aba6385fd80691db.tar.xz
Add support for YCBCR MESA texture format to vo_gl.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28093 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_gl.c')
-rw-r--r--libvo/vo_gl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libvo/vo_gl.c b/libvo/vo_gl.c
index fc7951d39f..736d9f6ae7 100644
--- a/libvo/vo_gl.c
+++ b/libvo/vo_gl.c
@@ -71,6 +71,7 @@ static int eosdtexCnt;
static int osd_color;
static int use_aspect;
+static int use_ycbcr;
static int use_yuv;
static int lscale;
static int cscale;
@@ -833,6 +834,8 @@ query_format(uint32_t format)
// ideally MPlayer should be fixed instead not to use Y800 when it has the choice
if (!use_yuv && (format == IMGFMT_Y8 || format == IMGFMT_Y800))
return 0;
+ if (!use_ycbcr && (format == IMGFMT_UYVY || format == IMGFMT_YUY2))
+ return 0;
if (many_fmts &&
glFindFormat(format, NULL, NULL, NULL, NULL))
return caps;
@@ -858,6 +861,7 @@ static opt_t subopts[] = {
{"osd", OPT_ARG_BOOL, &use_osd, NULL},
{"scaled-osd", OPT_ARG_BOOL, &scaled_osd, NULL},
{"aspect", OPT_ARG_BOOL, &use_aspect, NULL},
+ {"ycbcr", OPT_ARG_BOOL, &use_ycbcr, NULL},
{"slice-height", OPT_ARG_INT, &slice_height, (opt_test_f)int_non_neg},
{"rectangle", OPT_ARG_INT, &use_rectangle,(opt_test_f)int_non_neg},
{"yuv", OPT_ARG_INT, &use_yuv, (opt_test_f)int_non_neg},
@@ -883,6 +887,7 @@ static int preinit(const char *arg)
use_osd = 1;
scaled_osd = 0;
use_aspect = 1;
+ use_ycbcr = 0;
use_yuv = 0;
lscale = 0;
cscale = 0;