image_writer: make JPG default and increase quality (for screenshots)

The assumption is that JPG screenshots are more useful in general.
Lossless screenshots made from lossy videos are just a waste of space.

Increase JPEG quality a bit. There's a tradeoff between quality and
size, and since JPEG is the default now, attempt to balance the
JPEG settings to provide sane defaults for general use cases.
This commit is contained in:
wm4 2012-08-15 22:38:43 +02:00
parent 43bd4ab3a2
commit f3bf5ded4a
1 changed files with 2 additions and 2 deletions

View File

@ -46,9 +46,9 @@
#include "m_option.h"
const struct image_writer_opts image_writer_opts_defaults = {
.format = "png",
.format = "jpg",
.png_compression = 7,
.jpeg_quality = 85,
.jpeg_quality = 90,
.jpeg_optimize = 100,
.jpeg_smooth = 0,
.jpeg_dpi = 72,