From b48e0b11d915e1ba231bf8f1cc2d8865aad4f346 Mon Sep 17 00:00:00 2001 From: Shreesh Adiga <16567adigashreesh@gmail.com> Date: Mon, 16 Nov 2020 19:52:12 +0530 Subject: 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. --- video/out/vo_sixel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out') 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, -- cgit v1.2.3