[vlc-devel] commit: live555: Fix #2676 show proper time when pausing iso 00:00:00 ( Jean-Paul Saman )
git version control
git at videolan.org
Tue May 5 11:48:48 CEST 2009
vlc | branch: master | Jean-Paul Saman <jpsaman at videolan.org> | Fri May 1 15:26:24 2009 +0200| [0aa802a973f02c361fd12dd36a2c35c9da6ace4c] | committer: Jean-Paul Saman
live555: Fix #2676 show proper time when pausing iso 00:00:00
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0aa802a973f02c361fd12dd36a2c35c9da6ace4c
---
modules/demux/live555.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index f8c9fe5..57c76ed 100644
--- a/modules/demux/live555.cpp
+++ b/modules/demux/live555.cpp
@@ -1427,7 +1427,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
}
/* Retrieve the starttime if possible */
- p_sys->i_npt = p_sys->i_npt_start = p_sys->ms->playStartTime();
+ p_sys->i_npt_start = p_sys->ms->playStartTime();
/* Retrieve the duration if possible */
p_sys->i_npt_length = p_sys->ms->playEndTime();
More information about the vlc-devel
mailing list