[vlc-commits] input: remove unused variables
Jean-Baptiste Kempf
git at videolan.org
Sat May 23 16:00:56 CEST 2015
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat May 23 15:54:09 2015 +0200| [582377a8fe22c411397bb337d726120762049477] | committer: Jean-Baptiste Kempf
input: remove unused variables
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=582377a8fe22c411397bb337d726120762049477
---
src/input/stream.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/input/stream.c b/src/input/stream.c
index b74a05c..17a4275 100644
--- a/src/input/stream.c
+++ b/src/input/stream.c
@@ -930,11 +930,8 @@ static int AStreamSeekBlock( stream_t *s, uint64_t i_pos )
if( b_seek )
{
- int64_t i_start, i_end;
/* Do the access seek */
- i_start = mdate();
if( ASeek( s, i_pos ) ) return VLC_EGENERIC;
- i_end = mdate();
/* Release data */
block_ChainRelease( p_sys->block.p_first );
More information about the vlc-commits
mailing list