summaryrefslogtreecommitdiffstats
path: root/video/out/vo_direct3d.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-06-29 20:56:29 +0200
committerwm4 <wm4@nowhere>2017-06-29 20:56:29 +0200
commitaf5a71f52ec9191aa20b602e3764d225b5d5029d (patch)
treeb532559a9d6204a9f7d4ad96331f0601b6baf29a /video/out/vo_direct3d.c
parent1dffcb01678c20294fa60a0402b02acaeab65606 (diff)
downloadmpv-af5a71f52ec9191aa20b602e3764d225b5d5029d.tar.bz2
mpv-af5a71f52ec9191aa20b602e3764d225b5d5029d.tar.xz
video: drop some unused IMGFMT aliases
These formats are supported in a generic way. To get rid of IMGFMT_NV21, remove support from vo_direct3d.c completely.
Diffstat (limited to 'video/out/vo_direct3d.c')
-rw-r--r--video/out/vo_direct3d.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/out/vo_direct3d.c b/video/out/vo_direct3d.c
index 63de6fee4a..5be8757a5f 100644
--- a/video/out/vo_direct3d.c
+++ b/video/out/vo_direct3d.c
@@ -207,7 +207,6 @@ static const struct fmt_entry fmt_table[] = {
{IMGFMT_420P, MAKEFOURCC('I','Y','U','V')},
{IMGFMT_410P, MAKEFOURCC('Y','V','U','9')},
{IMGFMT_NV12, MAKEFOURCC('N','V','1','2')},
- {IMGFMT_NV21, MAKEFOURCC('N','V','2','1')},
// packed YUV
{IMGFMT_YUYV, D3DFMT_YUY2},
{IMGFMT_UYVY, D3DFMT_UYVY},