summaryrefslogtreecommitdiffstats
path: root/player/screenshot.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/screenshot.c')
-rw-r--r--player/screenshot.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/player/screenshot.c b/player/screenshot.c
index a47de292d5..1db1d95996 100644
--- a/player/screenshot.c
+++ b/player/screenshot.c
@@ -280,6 +280,14 @@ static char *gen_fname(screenshot_ctx *ctx, const char *file_ext)
return NULL;
}
+ char *dir = ctx->mpctx->opts->screenshot_direcrory;
+ if (dir && dir[0]) {
+ void *t = fname;
+ dir = mp_get_user_path(t, ctx->mpctx->global, dir);
+ fname = mp_path_join(NULL, bstr0(dir), bstr0(fname));
+ talloc_free(t);
+ }
+
if (!mp_path_exists(fname))
return fname;