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.
This commit is contained in:
Shreesh Adiga 2020-11-16 19:52:12 +05:30 committed by avih
parent 6ad3e2bfbd
commit b48e0b11d9
1 changed files with 1 additions and 1 deletions

View File

@ -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,