[vlc-devel] commit: Fixed an invalid use of p_input->i_pts_delay. (Laurent Aimar )

git version control git at videolan.org
Fri Jan 16 21:10:37 CET 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Fri Jan 16 20:42:24 2009 +0100| [702063df9d05c72801a21b1e5ceb5c0dd9113248] | committer: Laurent Aimar 

Fixed an invalid use of p_input->i_pts_delay.

The wait STILL frame is handled by dvdnav is not right.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=702063df9d05c72801a21b1e5ceb5c0dd9113248
---

 modules/access/dvdnav.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/access/dvdnav.c b/modules/access/dvdnav.c
index 1261e19..872ab19 100644
--- a/modules/access/dvdnav.c
+++ b/modules/access/dvdnav.c
@@ -649,7 +649,7 @@ static int Demux( demux_t *p_demux )
             else
             {
                 p_sys->p_ev->i_still_end = (int64_t)event->length *
-                    1000000 + mdate() + p_sys->p_input->i_pts_delay;
+                    1000000 + mdate();
             }
         }
         vlc_mutex_unlock( &p_sys->p_ev->lock );




More information about the vlc-devel mailing list