summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/interface-changes.rst1
-rw-r--r--DOCS/man/options.rst6
-rw-r--r--video/image_writer.c3
3 files changed, 5 insertions, 5 deletions
diff --git a/DOCS/interface-changes.rst b/DOCS/interface-changes.rst
index d09e7c7a94..e3982b8d00 100644
--- a/DOCS/interface-changes.rst
+++ b/DOCS/interface-changes.rst
@@ -32,6 +32,7 @@ Interface changes
`--sub-delay`
- add the `--osd-bar-border-size` option
- `--screenshot-avif-pixfmt` no longer defaults to yuv420p
+ - `--screenshot-avif-opts` defaults to lossless screenshot
--- mpv 0.37.0 ---
- `--save-position-on-quit` and its associated commands now store state files
in %LOCALAPPDATA% instead of %APPDATA% directory by default on Windows.
diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst
index 5dd674c184..97bf375c10 100644
--- a/DOCS/man/options.rst
+++ b/DOCS/man/options.rst
@@ -4566,7 +4566,7 @@ Screenshot
Specifies libavcodec options for selected encoder. For more information,
consult the FFmpeg documentation.
- Default: ``usage=allintra,crf=32,cpu-used=8,tune=ssim``
+ Default: ``usage=allintra,crf=0,cpu-used=8``
Note: the default is only guaranteed to work with the libaom-av1 encoder.
Above options may not be valid and or optimal for other encoders.
@@ -4575,8 +4575,8 @@ Screenshot
.. admonition:: Example
- "``--screenshot-avif-opts=crf=32,aq-mode=complexity``"
- sets the crf to 32 and quantization (aq-mode) to complexity based.
+ "``--screenshot-avif-opts=crf=23,aq-mode=complexity``"
+ sets the crf to 23 and quantization (aq-mode) to complexity based.
``--screenshot-sw=<yes|no>``
Whether to use software rendering for screenshots (default: no).
diff --git a/video/image_writer.c b/video/image_writer.c
index a7a2f24be1..38050e395b 100644
--- a/video/image_writer.c
+++ b/video/image_writer.c
@@ -61,9 +61,8 @@ const struct image_writer_opts image_writer_opts_defaults = {
.avif_encoder = "libaom-av1",
.avif_opts = (char*[]){
"usage", "allintra",
- "crf", "32",
+ "crf", "0",
"cpu-used", "8",
- "tune", "ssim",
NULL
},
.tag_csp = true,