screenshot: don't write PNG colorspace tags by default

Generates too much discussion and confusion.

Fixes #2051.
This commit is contained in:
wm4 2015-07-18 18:33:54 +02:00
parent 57043d9269
commit 050c529e9a
3 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@ Interface changes
::
--- mpv 0.10.0 will be released ---
- change --screenshot-tag-colorspace default value
- add --stretch-image-subs-to-screen
- add "playlist/N/title" property
- add --video-stereo-mode=no to disable auto-conversions

View File

@ -2620,7 +2620,7 @@ Screenshot
Note that not all formats are supported.
Default: ``yes``.
Default: ``no``.
``--screenshot-high-bit-depth=<yes|no>``
If possible, write screenshots with a bit depth similar to the source

View File

@ -50,7 +50,7 @@ const struct image_writer_opts image_writer_opts_defaults = {
.jpeg_smooth = 0,
.jpeg_baseline = 1,
.jpeg_source_chroma = 1,
.tag_csp = 1,
.tag_csp = 0,
};
#define OPT_BASE_STRUCT struct image_writer_opts