[vlc-devel] commit: Fixed typo in max pts_delay (60s not 601s) (Laurent Aimar )

git version control git at videolan.org
Thu Apr 30 22:38:43 CEST 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Thu Apr 30 22:38:09 2009 +0200| [59faac26ce1fbfe4f267281668f88650bf66d2c6] | committer: Laurent Aimar 

Fixed typo in max pts_delay (60s not 601s)

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

 src/input/input.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/input/input.c b/src/input/input.c
index 4ff910f..c7afcfe 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -111,7 +111,7 @@ static void SubtitleAdd( input_thread_t *p_input, char *psz_subtitle, bool b_for
 static void input_ChangeState( input_thread_t *p_input, int i_state ); /* TODO fix name */
 
 /* Do not let a pts_delay from access/demux go beyong 60s */
-#define INPUT_PTS_DELAY_MAX INT64_C(601000000)
+#define INPUT_PTS_DELAY_MAX INT64_C(60000000)
 
 /*****************************************************************************
  * This function creates a new input, and returns a pointer




More information about the vlc-devel mailing list