mirror of https://github.com/mpv-player/mpv
video: drop NV24 alias
Caused build failures with still supported FFmpeg versions. It's unreferenced, so it's not needed. Fixes: #7471
This commit is contained in:
parent
36ca0e0030
commit
0df0a847f4
|
@ -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},
|
||||
|
|
|
@ -164,9 +164,6 @@ enum mp_imgfmt {
|
|||
// Like IMGFMT_NV12, but with 10 bits per component (and 6 bits of padding)
|
||||
IMGFMT_P010,
|
||||
|
||||
// Like IMGFMT_NV12, but for 4:4:4
|
||||
IMGFMT_NV24,
|
||||
|
||||
// RGB/BGR Formats
|
||||
|
||||
// Byte accessed (low address to high address)
|
||||
|
|
Loading…
Reference in New Issue