Home
last modified time | relevance | path

Searched refs:image_writer_opts (Results 1 – 7 of 7) sorted by relevance

/dports/multimedia/mpv/mpv-0.34.1/video/
H A Dimage_writer.h23 struct image_writer_opts { struct
41 extern const struct image_writer_opts image_writer_opts_defaults; argument
43 extern const struct m_option image_writer_opts[];
46 const char *image_writer_file_ext(const struct image_writer_opts *opts);
49 bool image_writer_high_depth(const struct image_writer_opts *opts);
66 bool write_image(struct mp_image *image, const struct image_writer_opts *opts,
H A Dimage_writer.c44 const struct image_writer_opts image_writer_opts_defaults = {
65 #define OPT_BASE_STRUCT struct image_writer_opts
67 const struct m_option image_writer_opts[] = { variable
83 const struct image_writer_opts *opts;
299 const char *image_writer_file_ext(const struct image_writer_opts *opts) in image_writer_file_ext()
301 struct image_writer_opts defs = image_writer_opts_defaults; in image_writer_file_ext()
309 bool image_writer_high_depth(const struct image_writer_opts *opts) in image_writer_high_depth()
378 bool write_image(struct mp_image *image, const struct image_writer_opts *opts, in write_image()
382 struct image_writer_opts defs = image_writer_opts_defaults; in write_image()
434 struct image_writer_opts opts = image_writer_opts_defaults; in dump_png()
/dports/multimedia/mpv/mpv-0.34.1/video/out/
H A Dvo_image.c45 .opts = image_writer_opts,
46 .size = sizeof(struct image_writer_opts),
51 struct image_writer_opts *opts;
/dports/multimedia/mpv/mpv-0.34.1/player/
H A Dscreenshot.c77 const char *filename, struct image_writer_opts *opts) in write_screenshot()
80 struct image_writer_opts *gopts = mpctx->opts->screenshot_image_opts; in write_screenshot()
81 struct image_writer_opts opts_copy = opts ? *opts : *gopts; in write_screenshot()
436 struct image_writer_opts opts = *mpctx->opts->screenshot_image_opts; in cmd_screenshot_to_file()
481 struct image_writer_opts *opts = mpctx->opts->screenshot_image_opts; in cmd_screenshot()
/dports/multimedia/mpv/mpv-0.34.1/options/
H A Doptions.h283 struct image_writer_opts *screenshot_image_opts;
H A Doptions.c101 .opts = image_writer_opts,
102 .size = sizeof(struct image_writer_opts),
/dports/multimedia/mpv/mpv-0.34.1/test/
H A Dscale_test.c60 struct image_writer_opts opts = image_writer_opts_defaults; in dump_image()