git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
PS: fix duration computation on some files
[vlc.git]
/
modules
/
demux
/
ps.c
diff --git
a/modules/demux/ps.c
b/modules/demux/ps.c
index
b74d07d
..
a7d96b5
100644
(file)
--- a/
modules/demux/ps.c
+++ b/
modules/demux/ps.c
@@
-255,7
+255,7
@@
static void FindLength( demux_t *p_demux )
/* Check end */
i_size = stream_Size( p_demux->s );
- i_end = VLC_CLIP( i_size, 0, 20000
0
);
+ i_end = VLC_CLIP( i_size, 0, 20000 );
stream_Seek( p_demux->s, i_size - i_end );
i = 0;