Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
c67b22e4
Commit
c67b22e4
authored
Aug 26, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Put records to download directory
Should we use videos instead?
parent
d4db8397
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
modules/access_filter/dump.c
modules/access_filter/dump.c
+1
-1
modules/stream_filter/record.c
modules/stream_filter/record.c
+1
-1
src/input/es_out.c
src/input/es_out.c
+2
-1
No files found.
modules/access_filter/dump.c
View file @
c67b22e4
...
...
@@ -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
;
...
...
modules/stream_filter/record.c
View file @
c67b22e4
...
...
@@ -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
;
...
...
src/input/es_out.c
View file @
c67b22e4
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment