summaryrefslogtreecommitdiffstats
path: root/player/screenshot.h
diff options
context:
space:
mode:
Diffstat (limited to 'player/screenshot.h')
-rw-r--r--player/screenshot.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/player/screenshot.h b/player/screenshot.h
index f479fca3f8..1ccee790d6 100644
--- a/player/screenshot.h
+++ b/player/screenshot.h
@@ -21,6 +21,8 @@
#include <stdbool.h>
struct MPContext;
+struct mp_image;
+struct mp_log;
// One time initialization at program start.
void screenshot_init(struct MPContext *mpctx);
@@ -28,6 +30,12 @@ void screenshot_init(struct MPContext *mpctx);
// Called by the playback core code when a new frame is displayed.
void screenshot_flip(struct MPContext *mpctx);
+/* Return the image converted to the given format. If the pixel aspect ratio is
+ * not 1:1, the image is scaled as well. Returns NULL on failure.
+ */
+struct mp_image *convert_image(struct mp_image *image, int destfmt,
+ struct mp_log *log);
+
// Handlers for the user-facing commands.
void cmd_screenshot(void *p);
void cmd_screenshot_to_file(void *p);