summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/vo.rst6
-rw-r--r--video/out/vo_sixel.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/DOCS/man/vo.rst b/DOCS/man/vo.rst
index 2802ce914c..265787e73a 100644
--- a/DOCS/man/vo.rst
+++ b/DOCS/man/vo.rst
@@ -423,12 +423,12 @@ Available video output drivers are:
Selects the dither algorithm which libsixel should apply.
Can be one of the below list as per libsixel's documentation.
- auto
- Choose diffuse type automatically
+ auto (Default)
+ Let libsixel choose the dithering method.
none
Don't diffuse
atkinson
- Diffuse with Bill Atkinson's method. (Default)
+ Diffuse with Bill Atkinson's method.
fs
Diffuse with Floyd-Steinberg method
jajuni
diff --git a/video/out/vo_sixel.c b/video/out/vo_sixel.c
index dff20f716d..df0c05e139 100644
--- a/video/out/vo_sixel.c
+++ b/video/out/vo_sixel.c
@@ -470,7 +470,7 @@ const struct vo_driver video_out_sixel = {
.uninit = uninit,
.priv_size = sizeof(struct priv),
.priv_defaults = &(const struct priv) {
- .opt_diffuse = DIFFUSE_ATKINSON,
+ .opt_diffuse = DIFFUSE_AUTO,
.opt_width = 0,
.opt_height = 0,
.opt_reqcolors = 256,