summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-08-03 16:11:47 +0200
committerwm4 <wm4@nowhere>2017-08-03 16:19:56 +0200
commit1479c7bd0dc72de0a608b7c5f1a91fb5afd4397c (patch)
tree0c600e7a481c500f9fc47d13f2231cd5a231085b
parentffe0526064309bda2b24c1503e1b43316b33e6d7 (diff)
downloadmpv-1479c7bd0dc72de0a608b7c5f1a91fb5afd4397c.tar.bz2
mpv-1479c7bd0dc72de0a608b7c5f1a91fb5afd4397c.tar.xz
vo_opengl: give special Apple name a more appropriate name
Or less appropriate, as some would argue. The new name is short for "Apple YUV packed". (This format is needed only for hardware decoding on rather old Apple hardware, and a very annoying special case.)
-rw-r--r--video/out/opengl/formats.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/formats.c b/video/out/opengl/formats.c
index 41b7f459e3..7556bf21e2 100644
--- a/video/out/opengl/formats.c
+++ b/video/out/opengl/formats.c
@@ -88,7 +88,7 @@ const struct gl_format gl_formats[] = {
// Special formats.
{"rgb565", GL_RGB8, GL_RGB,
GL_UNSIGNED_SHORT_5_6_5, F_TF | F_GL2 | F_GL3},
- {"ashit", GL_RGB, GL_RGB_422_APPLE,
+ {"appleyp", GL_RGB, GL_RGB_422_APPLE,
GL_UNSIGNED_SHORT_8_8_APPLE, F_TF | F_APPL},
{0}