summaryrefslogtreecommitdiffstats
path: root/video/out/vo_kitty.c
Commit message (Collapse)AuthorAgeFilesLines
* options: transition options from OPT_FLAG to OPT_BOOLChristoph Heinrich2023-02-211-7/+7
| | | | | | c78482045444c488bb7948305d583a55d17cd236 introduced a bool option type as a replacement for the flag type, but didn't actually transition and remove the flag type because it would have been too much mundane work.
* build: add configure test for POSIX shm for the sake of vo_kittysfan52022-12-261-4/+5
| | | | Android's POSIX coverage is pretty sketchy but not like we have a choice.
* vo_kitty: Introduce modern sixel alternativeMia Herkt2022-12-211-0/+432
See https://sw.kovidgoyal.net/kitty/graphics-protocol/ This makes no attempt at querying terminal features or handling terminal errors, as it would require mpv to pass the response codes from the terminal to the vo instead of interpreting them as keystrokes made by the user and acting very unpredictably. Tested with kitty and konsole. Fixes #9605