summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-01-12 14:22:46 +0100
committerwm4 <wm4@nowhere>2017-01-12 14:22:46 +0100
commite552f5342ea9142d1d9ac2623caf4acb120a25c5 (patch)
tree1fcddc44a5fcb7e54e6d45cf99f6ccca355824e5 /video
parentaecedd9250cd7dee2b47657a5f89a6382f2319ef (diff)
downloadmpv-e552f5342ea9142d1d9ac2623caf4acb120a25c5.tar.bz2
mpv-e552f5342ea9142d1d9ac2623caf4acb120a25c5.tar.xz
vaapi: fix typo
Diffstat (limited to 'video')
-rw-r--r--video/decode/vaapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/decode/vaapi.c b/video/decode/vaapi.c
index e657663bbb..604f4807cd 100644
--- a/video/decode/vaapi.c
+++ b/video/decode/vaapi.c
@@ -58,7 +58,7 @@ static int init_decoder(struct lavc_ctx *ctx, int w, int h)
// If we use direct rendering, disallow 10 bit - it's probably not
// implemented yet, and our downstream components can't deal with it.
if (!p->own_ctx && required_sw_format != AV_PIX_FMT_NV12) {
- MP_WARN(ctx, "10 bit surfaces are currently supported.\n");
+ MP_WARN(ctx, "10 bit surfaces are currently unsupported.\n");
return -1;
}