Commit c67b22e4 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Put records to download directory

Should we use videos instead?
parent d4db8397
......@@ -271,7 +271,7 @@ static void Trigger (access_t *access)
// and there is an off-by-one in the following sprintf().
return;
char *dir = config_GetUserDir( VLC_HOME_DIR );
char *dir = config_GetUserDir( VLC_DOWNLOAD_DIR );
if( dir == NULL )
return;
......
......@@ -177,7 +177,7 @@ static int Start( stream_t *s, const char *psz_extension )
/* Retreive path */
char *psz_path = var_CreateGetNonEmptyString( s, "input-record-path" );
if( !psz_path )
psz_path = config_GetUserDir( VLC_HOME_DIR );
psz_path = config_GetUserDir( VLC_DOWNLOAD_DIR );
if( !psz_path )
return VLC_ENOMEM;
......
......@@ -466,7 +466,8 @@ static int EsOutSetRecord( es_out_t *out, bool b_record )
{
char *psz_path = var_CreateGetNonEmptyString( p_input, "input-record-path" );
if( !psz_path )
psz_path = config_GetUserDir(VLC_HOME_DIR);
/* TODO: autoselect video or music dir ? */
psz_path = config_GetUserDir(VLC_DOWNLOAD_DIR);
char *psz_sout = NULL; // TODO conf
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment