summaryrefslogtreecommitdiffstats
path: root/video/fmt-conversion.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2020-02-18 18:03:42 +0100
committerwm4 <wm4@nowhere>2020-02-18 18:03:42 +0100
commit0df0a847f40ff64457cb3e44082ac08591738507 (patch)
treee1a8791300c16a85287a79d2c06a184e9500951d /video/fmt-conversion.c
parent36ca0e00305fdc3d5c052c4757b00a33b2eb6b14 (diff)
downloadmpv-0df0a847f40ff64457cb3e44082ac08591738507.tar.bz2
mpv-0df0a847f40ff64457cb3e44082ac08591738507.tar.xz
video: drop NV24 alias
Caused build failures with still supported FFmpeg versions. It's unreferenced, so it's not needed. Fixes: #7471
Diffstat (limited to 'video/fmt-conversion.c')
-rw-r--r--video/fmt-conversion.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/video/fmt-conversion.c b/video/fmt-conversion.c
index e18b6a1f8f..8c9aa40bfa 100644
--- a/video/fmt-conversion.c
+++ b/video/fmt-conversion.c
@@ -36,7 +36,6 @@ static const struct {
{IMGFMT_PAL8, AV_PIX_FMT_PAL8},
{IMGFMT_UYVY, AV_PIX_FMT_UYVY422},
{IMGFMT_NV12, AV_PIX_FMT_NV12},
- {IMGFMT_NV24, AV_PIX_FMT_NV24},
{IMGFMT_Y8, AV_PIX_FMT_GRAY8},
{IMGFMT_Y16, AV_PIX_FMT_GRAY16},
{IMGFMT_420P, AV_PIX_FMT_YUV420P},