Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
a2b79dee
Commit
a2b79dee
authored
Apr 16, 2009
by
Jean-Baptiste Kempf
Browse files
Debug the timeshift granularity in MB, not Bytes...
parent
4b26e4b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/es_out_timeshift.c
View file @
a2b79dee
...
...
@@ -331,8 +331,8 @@ es_out_t *input_EsOutTimeshiftNew( input_thread_t *p_input, es_out_t *p_next_out
p_sys
->
i_tmp_size_max
=
50
*
1024
*
1024
;
else
p_sys
->
i_tmp_size_max
=
__MAX
(
i_tmp_size_max
,
1
*
1024
*
1024
);
msg_Dbg
(
p_input
,
"using timeshift granularity of %d
b
ytes"
,
(
int
)
p_sys
->
i_tmp_size_max
);
msg_Dbg
(
p_input
,
"using timeshift granularity of %d
MB
ytes"
,
(
int
)
p_sys
->
i_tmp_size_max
/
(
1024
*
1024
)
);
char
*
psz_tmp_path
=
var_CreateGetNonEmptyString
(
p_input
,
"input-timeshift-path"
);
p_sys
->
psz_tmp_path
=
GetTmpPath
(
psz_tmp_path
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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