[vlc-devel] commit: Added a comment about seek while paused issue. (Laurent Aimar )
git version control
git at videolan.org
Wed Oct 15 21:30:44 CEST 2008
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed Oct 15 20:09:09 2008 +0200| [96588cbc1429ae8ef78b2d5c1685a856b8a35d0c] | committer: Laurent Aimar
Added a comment about seek while paused issue.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=96588cbc1429ae8ef78b2d5c1685a856b8a35d0c
---
src/input/input.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/input/input.c b/src/input/input.c
index acae8ea..35e4b4c 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -740,6 +740,9 @@ static void MainLoop( input_thread_t *p_input )
/* Demux data */
b_force_update = false;
i_wakeup = 0;
+ /* FIXME if p_input->i_state == PAUSE_S the access/access_demux
+ * is paused -> this may cause problem with some of them
+ * The same problem can be seen when seeking while paused */
b_paused = p_input->i_state == PAUSE_S &&
!input_EsOutIsBuffering( p_input->p->p_es_out );
More information about the vlc-devel
mailing list