From 595427c20f088980243e1282f9259b776afe8841 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Wed, 26 Aug 2009 00:57:46 +0300 Subject: [PATCH] Put snapshots to pictures directory --- modules/video_filter/scene.c | 2 +- src/video_output/snapshot.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/video_filter/scene.c b/modules/video_filter/scene.c index 6a0d6581bd..ac9334a18c 100644 --- a/modules/video_filter/scene.c +++ b/modules/video_filter/scene.c @@ -193,7 +193,7 @@ static int Create( vlc_object_t *p_this ) p_sys->psz_prefix = var_CreateGetString( p_this, CFG_PREFIX "prefix" ); p_sys->psz_path = var_GetNonEmptyString( p_this, CFG_PREFIX "path" ); if( p_sys->psz_path == NULL ) - p_sys->psz_path = config_GetUserDir( VLC_HOME_DIR ); + p_sys->psz_path = config_GetUserDir( VLC_PICTURES_DIR ); p_filter->pf_video_filter = Filter; diff --git a/src/video_output/snapshot.c b/src/video_output/snapshot.c index 1866cfd7ae..6b666c3fcc 100644 --- a/src/video_output/snapshot.c +++ b/src/video_output/snapshot.c @@ -131,7 +131,7 @@ void vout_snapshot_Set(vout_snapshot_t *snap, /* */ char *vout_snapshot_GetDirectory(void) { - return config_GetUserDir(VLC_HOME_DIR); + return config_GetUserDir(VLC_PICTURES_DIR); } /* */ int vout_snapshot_SaveImage(char **name, int *sequential, -- GitLab