[vlc-commits] Factorize some msg_Dbg about timeshift
Jean-Baptiste Kempf
git at videolan.org
Fri Mar 11 23:23:51 CET 2011
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Mar 11 19:13:16 2011 +0100| [b882858fa15c8a7033d25fd3442f9c819f861eda] | committer: Jean-Baptiste Kempf
Factorize some msg_Dbg about timeshift
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b882858fa15c8a7033d25fd3442f9c819f861eda
---
src/input/es_out_timeshift.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/input/es_out_timeshift.c b/src/input/es_out_timeshift.c
index b83d720..722faa5 100644
--- a/src/input/es_out_timeshift.c
+++ b/src/input/es_out_timeshift.c
@@ -332,12 +332,12 @@ 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 MiB",
- (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 );
- msg_Dbg( p_input, "using timeshift path '%s'", p_sys->psz_tmp_path );
+
+ msg_Dbg( p_input, "using timeshift granularity of %d MiB, in path '%s'",
+ (int)p_sys->i_tmp_size_max/(1024*1024), p_sys->psz_tmp_path );
#if 0
#define S(t) msg_Err( p_input, "SIZEOF("#t")=%d", sizeof(t) )
More information about the vlc-commits
mailing list