diff options
author | wm4 <wm4@nowhere> | 2017-08-03 16:11:47 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2017-08-03 16:19:56 +0200 |
commit | 1479c7bd0dc72de0a608b7c5f1a91fb5afd4397c (patch) | |
tree | 0c600e7a481c500f9fc47d13f2231cd5a231085b /video/out | |
parent | ffe0526064309bda2b24c1503e1b43316b33e6d7 (diff) | |
download | mpv-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.)
Diffstat (limited to 'video/out')
-rw-r--r-- | video/out/opengl/formats.c | 2 |
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} |