summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShreesh Adiga <16567adigashreesh@gmail.com>2020-11-16 19:52:12 +0530
committeravih <avih@users.noreply.github.com>2020-11-22 13:34:25 +0200
commitb48e0b11d915e1ba231bf8f1cc2d8865aad4f346 (patch)
treee9743272cb33c08740139291cb648969520f8806
parent6ad3e2bfbdc5fbf729c59ce61aa57eca27163d7f (diff)
downloadmpv-b48e0b11d915e1ba231bf8f1cc2d8865aad4f346.tar.bz2
mpv-b48e0b11d915e1ba231bf8f1cc2d8865aad4f346.tar.xz
vo_sixel: set --vo-sixel-fixedpalette=yes by default
fixedpalette seems to be slightly faster than dynamic palette, and also in mlterm it avoids corruption of too bright values overflowing to black. Hence setting it to be default choice instead of dynamic palette.
-rw-r--r--video/out/vo_sixel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/vo_sixel.c b/video/out/vo_sixel.c
index 10bececa37..3a08686118 100644
--- a/video/out/vo_sixel.c
+++ b/video/out/vo_sixel.c
@@ -441,8 +441,8 @@ const struct vo_driver video_out_sixel = {
.opt_width = 0,
.opt_height = 0,
.opt_reqcolors = 256,
- .opt_fixedpal = 0,
.opt_threshold = -1,
+ .opt_fixedpal = 1,
.opt_top = 0,
.opt_left = 0,
.opt_pad_y = -1,