aboutsummaryrefslogtreecommitdiffhomepage
path: root/image_writer.c
Commit message (Collapse)AuthorAge
* image_writer: make JPG default and increase quality (for screenshots)Gravatar wm42012-08-16
| | | | | | | | | 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.
* image_writer: rename "filetype" option to "format"Gravatar wm42012-08-06
| | | | | | | Although slightly less precise, this sounds less clunky. This change also causes the --screenshot-filetype option to be renamed to --screenshot-format.
* image_writer: support all JPEG specific options vo_jpeg supportsGravatar wm42012-08-06
| | | | | | Most of these are useless or probably even dangerous. Support them anyway, because it's easy, and we want to replace vo_jpeg without any disadvantages.
* image_writer: add TGA image formatGravatar wm42012-08-06
| | | | | | For getting rid of vo_tga. This makes use of the libavcodec TGA encoder.
* image_writer: add some PNM family image formatsGravatar wm42012-08-06
| | | | | | | | | | While the PNM formats are not that useful, supporting them helps getting rid of vo_pnm. This makes use of the libavcodec PNM encoder. Compared to vo_pnm, at least PNM ASCII mode is not supported. It doesn't look like libavcodec supports this mode for encoding.
* image_writer: add option parsingGravatar wm42012-08-06
| | | | | image_writer now provides its own option parsing, and screenshot.c and the mplayer frontend use it.
* image_writer: allow specifying pixel formats for image writersGravatar wm42012-08-06
|
* image_writer: never pass anamorphic images to image writerGravatar wm42012-08-06
|
* screenshot: move image writer code into new file image_writer.cGravatar wm42012-08-06