aboutsummaryrefslogtreecommitdiffhomepage
path: root/video/fmt-conversion.c
diff options
context:
space:
mode:
authorGravatar wm4 <wm4@nowhere>2017-06-30 18:01:29 +0200
committerGravatar wm4 <wm4@nowhere>2017-06-30 18:01:29 +0200
commit1ad036a2ef068928640eeda7352e5e70379e2119 (patch)
tree1844cee1f4021c727b8fb2207548f74bbba29382 /video/fmt-conversion.c
parent6eb0bbe312c8422f3180b530126e1dfebb47295e (diff)
video: get rid of swapped packed YUV
Another legacy annoyance. The only place where packed YUV is still important is slightly older Apple hardware or drivers, which require it for efficient hardware decoding.
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 a4dca893cc..d691445146 100644
--- a/video/fmt-conversion.c
+++ b/video/fmt-conversion.c
@@ -33,7 +33,6 @@ static const struct {
{IMGFMT_ABGR, AV_PIX_FMT_ABGR},
{IMGFMT_RGBA, AV_PIX_FMT_RGBA},
{IMGFMT_RGB24, AV_PIX_FMT_RGB24},
- {IMGFMT_YUYV, AV_PIX_FMT_YUYV422},
{IMGFMT_UYVY, AV_PIX_FMT_UYVY422},
{IMGFMT_NV12, AV_PIX_FMT_NV12},
{IMGFMT_Y8, AV_PIX_FMT_GRAY8},