[vlc-devel] commit: Cosmetics. (Laurent Aimar )
git version control
git at videolan.org
Mon Aug 24 22:43:23 CEST 2009
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Aug 24 22:03:16 2009 +0200| [b0c176cf226f4899b688397203038b150b3eb665] | committer: Laurent Aimar
Cosmetics.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b0c176cf226f4899b688397203038b150b3eb665
---
modules/demux/avi/avi.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/modules/demux/avi/avi.c b/modules/demux/avi/avi.c
index 683070d..4222d10 100644
--- a/modules/demux/avi/avi.c
+++ b/modules/demux/avi/avi.c
@@ -2371,9 +2371,9 @@ static void AVI_IndexCreate( demux_t *p_demux )
if( dialog_ProgressCancelled( p_dialog ) )
break;
- double current = stream_Tell( p_demux->s );
- double size = stream_Size( p_demux->s );
- double f_pos = current / size;
+ double f_current = stream_Tell( p_demux->s );
+ double f_size = stream_Size( p_demux->s );
+ double f_pos = f_current / f_size;
dialog_ProgressSet( p_dialog, NULL, f_pos );
i_dialog_update = mdate();
More information about the vlc-devel
mailing list